).\n if (!shouldInclude(selection, variables))\n return;\n if (isField(selection)) {\n var fieldValue = policies.readField({\n fieldName: selection.name.value,\n field: selection,\n variables: context.variables,\n from: objectOrReference,\n }, context);\n var resultName = resultKeyNameFromField(selection);\n if (fieldValue === void 0) {\n if (!addTypenameToDocument.added(selection)) {\n missing = missingMerger.merge(missing, (_a = {},\n _a[resultName] = \"Can't find field '\".concat(selection.name.value, \"' on \").concat(isReference(objectOrReference) ?\n objectOrReference.__ref + \" object\"\n : \"object \" + JSON.stringify(objectOrReference, null, 2)),\n _a));\n }\n }\n else if (isArray(fieldValue)) {\n if (fieldValue.length > 0) {\n fieldValue = handleMissing(_this.executeSubSelectedArray({\n field: selection,\n array: fieldValue,\n enclosingRef: enclosingRef,\n context: context,\n }), resultName);\n }\n }\n else if (!selection.selectionSet) {\n // If the field does not have a selection set, then we handle it\n // as a scalar value. To keep this.canon from canonicalizing\n // this value, we use this.canon.pass to wrap fieldValue in a\n // Pass object that this.canon.admit will later unwrap as-is.\n if (context.canonizeResults) {\n fieldValue = _this.canon.pass(fieldValue);\n }\n }\n else if (fieldValue != null) {\n // In this case, because we know the field has a selection set,\n // it must be trying to query a GraphQLObjectType, which is why\n // fieldValue must be != null.\n fieldValue = handleMissing(_this.executeSelectionSet({\n selectionSet: selection.selectionSet,\n objectOrReference: fieldValue,\n enclosingRef: isReference(fieldValue) ? fieldValue : enclosingRef,\n context: context,\n }), resultName);\n }\n if (fieldValue !== void 0) {\n objectsToMerge.push((_b = {}, _b[resultName] = fieldValue, _b));\n }\n }\n else {\n var fragment = getFragmentFromSelection(selection, context.lookupFragment);\n if (!fragment && selection.kind === Kind.FRAGMENT_SPREAD) {\n throw newInvariantError(9, selection.name.value);\n }\n if (fragment && policies.fragmentMatches(fragment, typename)) {\n fragment.selectionSet.selections.forEach(workSet.add, workSet);\n }\n }\n });\n var result = mergeDeepArray(objectsToMerge);\n var finalResult = { result: result, missing: missing };\n var frozen = context.canonizeResults ?\n this.canon.admit(finalResult)\n // Since this.canon is normally responsible for freezing results (only in\n // development), freeze them manually if canonization is disabled.\n : maybeDeepFreeze(finalResult);\n // Store this result with its selection set so that we can quickly\n // recognize it again in the StoreReader#isFresh method.\n if (frozen.result) {\n this.knownResults.set(frozen.result, selectionSet);\n }\n return frozen;\n };\n // Uncached version of executeSubSelectedArray.\n StoreReader.prototype.execSubSelectedArrayImpl = function (_a) {\n var _this = this;\n var field = _a.field, array = _a.array, enclosingRef = _a.enclosingRef, context = _a.context;\n var missing;\n var missingMerger = new DeepMerger();\n function handleMissing(childResult, i) {\n var _a;\n if (childResult.missing) {\n missing = missingMerger.merge(missing, (_a = {}, _a[i] = childResult.missing, _a));\n }\n return childResult.result;\n }\n if (field.selectionSet) {\n array = array.filter(context.store.canRead);\n }\n array = array.map(function (item, i) {\n // null value in array\n if (item === null) {\n return null;\n }\n // This is a nested array, recurse\n if (isArray(item)) {\n return handleMissing(_this.executeSubSelectedArray({\n field: field,\n array: item,\n enclosingRef: enclosingRef,\n context: context,\n }), i);\n }\n // This is an object, run the selection set on it\n if (field.selectionSet) {\n return handleMissing(_this.executeSelectionSet({\n selectionSet: field.selectionSet,\n objectOrReference: item,\n enclosingRef: isReference(item) ? item : enclosingRef,\n context: context,\n }), i);\n }\n if (globalThis.__DEV__ !== false) {\n assertSelectionSetForIdValue(context.store, field, item);\n }\n return item;\n });\n return {\n result: context.canonizeResults ? this.canon.admit(array) : array,\n missing: missing,\n };\n };\n return StoreReader;\n}());\nexport { StoreReader };\nfunction firstMissing(tree) {\n try {\n JSON.stringify(tree, function (_, value) {\n if (typeof value === \"string\")\n throw value;\n return value;\n });\n }\n catch (result) {\n return result;\n }\n}\nfunction assertSelectionSetForIdValue(store, field, fieldValue) {\n if (!field.selectionSet) {\n var workSet_1 = new Set([fieldValue]);\n workSet_1.forEach(function (value) {\n if (isNonNullObject(value)) {\n invariant(\n !isReference(value),\n 10,\n getTypenameFromStoreObject(store, value),\n field.name.value\n );\n Object.values(value).forEach(workSet_1.add, workSet_1);\n }\n });\n }\n}\n//# sourceMappingURL=readFromStore.js.map","import { invariant } from \"../../utilities/globals/index.js\";\nimport { argumentsObjectFromField, DeepMerger, isNonEmptyArray, isNonNullObject, } from \"../../utilities/index.js\";\nimport { hasOwn, isArray } from \"./helpers.js\";\n// Mapping from JSON-encoded KeySpecifier strings to associated information.\nvar specifierInfoCache = Object.create(null);\nfunction lookupSpecifierInfo(spec) {\n // It's safe to encode KeySpecifier arrays with JSON.stringify, since they're\n // just arrays of strings or nested KeySpecifier arrays, and the order of the\n // array elements is important (and suitably preserved by JSON.stringify).\n var cacheKey = JSON.stringify(spec);\n return (specifierInfoCache[cacheKey] ||\n (specifierInfoCache[cacheKey] = Object.create(null)));\n}\nexport function keyFieldsFnFromSpecifier(specifier) {\n var info = lookupSpecifierInfo(specifier);\n return (info.keyFieldsFn || (info.keyFieldsFn = function (object, context) {\n var extract = function (from, key) {\n return context.readField(key, from);\n };\n var keyObject = (context.keyObject = collectSpecifierPaths(specifier, function (schemaKeyPath) {\n var extracted = extractKeyPath(context.storeObject, schemaKeyPath, \n // Using context.readField to extract paths from context.storeObject\n // allows the extraction to see through Reference objects and respect\n // custom read functions.\n extract);\n if (extracted === void 0 &&\n object !== context.storeObject &&\n hasOwn.call(object, schemaKeyPath[0])) {\n // If context.storeObject fails to provide a value for the requested\n // path, fall back to the raw result object, if it has a top-level key\n // matching the first key in the path (schemaKeyPath[0]). This allows\n // key fields included in the written data to be saved in the cache\n // even if they are not selected explicitly in context.selectionSet.\n // Not being mentioned by context.selectionSet is convenient here,\n // since it means these extra fields cannot be affected by field\n // aliasing, which is why we can use extractKey instead of\n // context.readField for this extraction.\n extracted = extractKeyPath(object, schemaKeyPath, extractKey);\n }\n invariant(extracted !== void 0, 4, schemaKeyPath.join(\".\"), object);\n return extracted;\n }));\n return \"\".concat(context.typename, \":\").concat(JSON.stringify(keyObject));\n }));\n}\n// The keyArgs extraction process is roughly analogous to keyFields extraction,\n// but there are no aliases involved, missing fields are tolerated (by merely\n// omitting them from the key), and drawing from field.directives or variables\n// is allowed (in addition to drawing from the field's arguments object).\n// Concretely, these differences mean passing a different key path extractor\n// function to collectSpecifierPaths, reusing the shared extractKeyPath helper\n// wherever possible.\nexport function keyArgsFnFromSpecifier(specifier) {\n var info = lookupSpecifierInfo(specifier);\n return (info.keyArgsFn ||\n (info.keyArgsFn = function (args, _a) {\n var field = _a.field, variables = _a.variables, fieldName = _a.fieldName;\n var collected = collectSpecifierPaths(specifier, function (keyPath) {\n var firstKey = keyPath[0];\n var firstChar = firstKey.charAt(0);\n if (firstChar === \"@\") {\n if (field && isNonEmptyArray(field.directives)) {\n var directiveName_1 = firstKey.slice(1);\n // If the directive appears multiple times, only the first\n // occurrence's arguments will be used. TODO Allow repetition?\n // TODO Cache this work somehow, a la aliasMap?\n var d = field.directives.find(function (d) { return d.name.value === directiveName_1; });\n // Fortunately argumentsObjectFromField works for DirectiveNode!\n var directiveArgs = d && argumentsObjectFromField(d, variables);\n // For directives without arguments (d defined, but directiveArgs ===\n // null), the presence or absence of the directive still counts as\n // part of the field key, so we return null in those cases. If no\n // directive with this name was found for this field (d undefined and\n // thus directiveArgs undefined), we return undefined, which causes\n // this value to be omitted from the key object returned by\n // collectSpecifierPaths.\n return (directiveArgs &&\n extractKeyPath(directiveArgs, \n // If keyPath.length === 1, this code calls extractKeyPath with an\n // empty path, which works because it uses directiveArgs as the\n // extracted value.\n keyPath.slice(1)));\n }\n // If the key started with @ but there was no corresponding directive,\n // we want to omit this value from the key object, not fall through to\n // treating @whatever as a normal argument name.\n return;\n }\n if (firstChar === \"$\") {\n var variableName = firstKey.slice(1);\n if (variables && hasOwn.call(variables, variableName)) {\n var varKeyPath = keyPath.slice(0);\n varKeyPath[0] = variableName;\n return extractKeyPath(variables, varKeyPath);\n }\n // If the key started with $ but there was no corresponding variable, we\n // want to omit this value from the key object, not fall through to\n // treating $whatever as a normal argument name.\n return;\n }\n if (args) {\n return extractKeyPath(args, keyPath);\n }\n });\n var suffix = JSON.stringify(collected);\n // If no arguments were passed to this field, and it didn't have any other\n // field key contributions from directives or variables, hide the empty\n // :{} suffix from the field key. However, a field passed no arguments can\n // still end up with a non-empty :{...} suffix if its key configuration\n // refers to directives or variables.\n if (args || suffix !== \"{}\") {\n fieldName += \":\" + suffix;\n }\n return fieldName;\n }));\n}\nexport function collectSpecifierPaths(specifier, extractor) {\n // For each path specified by specifier, invoke the extractor, and repeatedly\n // merge the results together, with appropriate ancestor context.\n var merger = new DeepMerger();\n return getSpecifierPaths(specifier).reduce(function (collected, path) {\n var _a;\n var toMerge = extractor(path);\n if (toMerge !== void 0) {\n // This path is not expected to contain array indexes, so the toMerge\n // reconstruction will not contain arrays. TODO Fix this?\n for (var i = path.length - 1; i >= 0; --i) {\n toMerge = (_a = {}, _a[path[i]] = toMerge, _a);\n }\n collected = merger.merge(collected, toMerge);\n }\n return collected;\n }, Object.create(null));\n}\nexport function getSpecifierPaths(spec) {\n var info = lookupSpecifierInfo(spec);\n if (!info.paths) {\n var paths_1 = (info.paths = []);\n var currentPath_1 = [];\n spec.forEach(function (s, i) {\n if (isArray(s)) {\n getSpecifierPaths(s).forEach(function (p) { return paths_1.push(currentPath_1.concat(p)); });\n currentPath_1.length = 0;\n }\n else {\n currentPath_1.push(s);\n if (!isArray(spec[i + 1])) {\n paths_1.push(currentPath_1.slice(0));\n currentPath_1.length = 0;\n }\n }\n });\n }\n return info.paths;\n}\nfunction extractKey(object, key) {\n return object[key];\n}\nexport function extractKeyPath(object, path, extract) {\n // For each key in path, extract the corresponding child property from obj,\n // flattening arrays if encountered (uncommon for keyFields and keyArgs, but\n // possible). The final result of path.reduce is normalized so unexpected leaf\n // objects have their keys safely sorted. That final result is difficult to\n // type as anything other than any. You're welcome to try to improve the\n // return type, but keep in mind extractKeyPath is not a public function\n // (exported only for testing), so the effort may not be worthwhile unless the\n // limited set of actual callers (see above) pass arguments that TypeScript\n // can statically type. If we know only that path is some array of strings\n // (and not, say, a specific tuple of statically known strings), any (or\n // possibly unknown) is the honest answer.\n extract = extract || extractKey;\n return normalize(path.reduce(function reducer(obj, key) {\n return isArray(obj) ?\n obj.map(function (child) { return reducer(child, key); })\n : obj && extract(obj, key);\n }, object));\n}\nfunction normalize(value) {\n // Usually the extracted value will be a scalar value, since most primary\n // key fields are scalar, but just in case we get an object or an array, we\n // need to do some normalization of the order of (nested) keys.\n if (isNonNullObject(value)) {\n if (isArray(value)) {\n return value.map(normalize);\n }\n return collectSpecifierPaths(Object.keys(value).sort(), function (path) {\n return extractKeyPath(value, path);\n });\n }\n return value;\n}\n//# sourceMappingURL=key-extractor.js.map","import { __assign, __rest } from \"tslib\";\nimport { invariant, newInvariantError } from \"../../utilities/globals/index.js\";\nimport { storeKeyNameFromField, argumentsObjectFromField, isReference, getStoreKeyName, isNonNullObject, stringifyForDisplay, } from \"../../utilities/index.js\";\nimport { hasOwn, fieldNameFromStoreName, storeValueIsStoreObject, selectionSetMatchesResult, TypeOrFieldNameRegExp, defaultDataIdFromObject, isArray, } from \"./helpers.js\";\nimport { cacheSlot } from \"./reactiveVars.js\";\nimport { keyArgsFnFromSpecifier, keyFieldsFnFromSpecifier, } from \"./key-extractor.js\";\nfunction argsFromFieldSpecifier(spec) {\n return (spec.args !== void 0 ? spec.args\n : spec.field ? argumentsObjectFromField(spec.field, spec.variables)\n : null);\n}\nvar nullKeyFieldsFn = function () { return void 0; };\nvar simpleKeyArgsFn = function (_args, context) { return context.fieldName; };\n// These merge functions can be selected by specifying merge:true or\n// merge:false in a field policy.\nvar mergeTrueFn = function (existing, incoming, _a) {\n var mergeObjects = _a.mergeObjects;\n return mergeObjects(existing, incoming);\n};\nvar mergeFalseFn = function (_, incoming) { return incoming; };\nvar Policies = /** @class */ (function () {\n function Policies(config) {\n this.config = config;\n this.typePolicies = Object.create(null);\n this.toBeAdded = Object.create(null);\n // Map from subtype names to sets of supertype names. Note that this\n // representation inverts the structure of possibleTypes (whose keys are\n // supertypes and whose values are arrays of subtypes) because it tends\n // to be much more efficient to search upwards than downwards.\n this.supertypeMap = new Map();\n // Any fuzzy subtypes specified by possibleTypes will be converted to\n // RegExp objects and recorded here. Every key of this map can also be\n // found in supertypeMap. In many cases this Map will be empty, which\n // means no fuzzy subtype checking will happen in fragmentMatches.\n this.fuzzySubtypes = new Map();\n this.rootIdsByTypename = Object.create(null);\n this.rootTypenamesById = Object.create(null);\n this.usingPossibleTypes = false;\n this.config = __assign({ dataIdFromObject: defaultDataIdFromObject }, config);\n this.cache = this.config.cache;\n this.setRootTypename(\"Query\");\n this.setRootTypename(\"Mutation\");\n this.setRootTypename(\"Subscription\");\n if (config.possibleTypes) {\n this.addPossibleTypes(config.possibleTypes);\n }\n if (config.typePolicies) {\n this.addTypePolicies(config.typePolicies);\n }\n }\n Policies.prototype.identify = function (object, partialContext) {\n var _a;\n var policies = this;\n var typename = (partialContext &&\n (partialContext.typename || ((_a = partialContext.storeObject) === null || _a === void 0 ? void 0 : _a.__typename))) ||\n object.__typename;\n // It should be possible to write root Query fields with writeFragment,\n // using { __typename: \"Query\", ... } as the data, but it does not make\n // sense to allow the same identification behavior for the Mutation and\n // Subscription types, since application code should never be writing\n // directly to (or reading directly from) those root objects.\n if (typename === this.rootTypenamesById.ROOT_QUERY) {\n return [\"ROOT_QUERY\"];\n }\n // Default context.storeObject to object if not otherwise provided.\n var storeObject = (partialContext && partialContext.storeObject) || object;\n var context = __assign(__assign({}, partialContext), { typename: typename, storeObject: storeObject, readField: (partialContext && partialContext.readField) ||\n function () {\n var options = normalizeReadFieldOptions(arguments, storeObject);\n return policies.readField(options, {\n store: policies.cache[\"data\"],\n variables: options.variables,\n });\n } });\n var id;\n var policy = typename && this.getTypePolicy(typename);\n var keyFn = (policy && policy.keyFn) || this.config.dataIdFromObject;\n while (keyFn) {\n var specifierOrId = keyFn(__assign(__assign({}, object), storeObject), context);\n if (isArray(specifierOrId)) {\n keyFn = keyFieldsFnFromSpecifier(specifierOrId);\n }\n else {\n id = specifierOrId;\n break;\n }\n }\n id = id ? String(id) : void 0;\n return context.keyObject ? [id, context.keyObject] : [id];\n };\n Policies.prototype.addTypePolicies = function (typePolicies) {\n var _this = this;\n Object.keys(typePolicies).forEach(function (typename) {\n var _a = typePolicies[typename], queryType = _a.queryType, mutationType = _a.mutationType, subscriptionType = _a.subscriptionType, incoming = __rest(_a, [\"queryType\", \"mutationType\", \"subscriptionType\"]);\n // Though {query,mutation,subscription}Type configurations are rare,\n // it's important to call setRootTypename as early as possible,\n // since these configurations should apply consistently for the\n // entire lifetime of the cache. Also, since only one __typename can\n // qualify as one of these root types, these three properties cannot\n // be inherited, unlike the rest of the incoming properties. That\n // restriction is convenient, because the purpose of this.toBeAdded\n // is to delay the processing of type/field policies until the first\n // time they're used, allowing policies to be added in any order as\n // long as all relevant policies (including policies for supertypes)\n // have been added by the time a given policy is used for the first\n // time. In other words, since inheritance doesn't matter for these\n // properties, there's also no need to delay their processing using\n // the this.toBeAdded queue.\n if (queryType)\n _this.setRootTypename(\"Query\", typename);\n if (mutationType)\n _this.setRootTypename(\"Mutation\", typename);\n if (subscriptionType)\n _this.setRootTypename(\"Subscription\", typename);\n if (hasOwn.call(_this.toBeAdded, typename)) {\n _this.toBeAdded[typename].push(incoming);\n }\n else {\n _this.toBeAdded[typename] = [incoming];\n }\n });\n };\n Policies.prototype.updateTypePolicy = function (typename, incoming) {\n var _this = this;\n var existing = this.getTypePolicy(typename);\n var keyFields = incoming.keyFields, fields = incoming.fields;\n function setMerge(existing, merge) {\n existing.merge =\n typeof merge === \"function\" ? merge\n // Pass merge:true as a shorthand for a merge implementation\n // that returns options.mergeObjects(existing, incoming).\n : merge === true ? mergeTrueFn\n // Pass merge:false to make incoming always replace existing\n // without any warnings about data clobbering.\n : merge === false ? mergeFalseFn\n : existing.merge;\n }\n // Type policies can define merge functions, as an alternative to\n // using field policies to merge child objects.\n setMerge(existing, incoming.merge);\n existing.keyFn =\n // Pass false to disable normalization for this typename.\n keyFields === false ? nullKeyFieldsFn\n // Pass an array of strings to use those fields to compute a\n // composite ID for objects of this typename.\n : isArray(keyFields) ? keyFieldsFnFromSpecifier(keyFields)\n // Pass a function to take full control over identification.\n : typeof keyFields === \"function\" ? keyFields\n // Leave existing.keyFn unchanged if above cases fail.\n : existing.keyFn;\n if (fields) {\n Object.keys(fields).forEach(function (fieldName) {\n var existing = _this.getFieldPolicy(typename, fieldName, true);\n var incoming = fields[fieldName];\n if (typeof incoming === \"function\") {\n existing.read = incoming;\n }\n else {\n var keyArgs = incoming.keyArgs, read = incoming.read, merge = incoming.merge;\n existing.keyFn =\n // Pass false to disable argument-based differentiation of\n // field identities.\n keyArgs === false ? simpleKeyArgsFn\n // Pass an array of strings to use named arguments to\n // compute a composite identity for the field.\n : isArray(keyArgs) ? keyArgsFnFromSpecifier(keyArgs)\n // Pass a function to take full control over field identity.\n : typeof keyArgs === \"function\" ? keyArgs\n // Leave existing.keyFn unchanged if above cases fail.\n : existing.keyFn;\n if (typeof read === \"function\") {\n existing.read = read;\n }\n setMerge(existing, merge);\n }\n if (existing.read && existing.merge) {\n // If we have both a read and a merge function, assume\n // keyArgs:false, because read and merge together can take\n // responsibility for interpreting arguments in and out. This\n // default assumption can always be overridden by specifying\n // keyArgs explicitly in the FieldPolicy.\n existing.keyFn = existing.keyFn || simpleKeyArgsFn;\n }\n });\n }\n };\n Policies.prototype.setRootTypename = function (which, typename) {\n if (typename === void 0) { typename = which; }\n var rootId = \"ROOT_\" + which.toUpperCase();\n var old = this.rootTypenamesById[rootId];\n if (typename !== old) {\n invariant(!old || old === which, 5, which);\n // First, delete any old __typename associated with this rootId from\n // rootIdsByTypename.\n if (old)\n delete this.rootIdsByTypename[old];\n // Now make this the only __typename that maps to this rootId.\n this.rootIdsByTypename[typename] = rootId;\n // Finally, update the __typename associated with this rootId.\n this.rootTypenamesById[rootId] = typename;\n }\n };\n Policies.prototype.addPossibleTypes = function (possibleTypes) {\n var _this = this;\n this.usingPossibleTypes = true;\n Object.keys(possibleTypes).forEach(function (supertype) {\n // Make sure all types have an entry in this.supertypeMap, even if\n // their supertype set is empty, so we can return false immediately\n // from policies.fragmentMatches for unknown supertypes.\n _this.getSupertypeSet(supertype, true);\n possibleTypes[supertype].forEach(function (subtype) {\n _this.getSupertypeSet(subtype, true).add(supertype);\n var match = subtype.match(TypeOrFieldNameRegExp);\n if (!match || match[0] !== subtype) {\n // TODO Don't interpret just any invalid typename as a RegExp.\n _this.fuzzySubtypes.set(subtype, new RegExp(subtype));\n }\n });\n });\n };\n Policies.prototype.getTypePolicy = function (typename) {\n var _this = this;\n if (!hasOwn.call(this.typePolicies, typename)) {\n var policy_1 = (this.typePolicies[typename] = Object.create(null));\n policy_1.fields = Object.create(null);\n // When the TypePolicy for typename is first accessed, instead of\n // starting with an empty policy object, inherit any properties or\n // fields from the type policies of the supertypes of typename.\n //\n // Any properties or fields defined explicitly within the TypePolicy\n // for typename will take precedence, and if there are multiple\n // supertypes, the properties of policies whose types were added\n // later via addPossibleTypes will take precedence over those of\n // earlier supertypes. TODO Perhaps we should warn about these\n // conflicts in development, and recommend defining the property\n // explicitly in the subtype policy?\n //\n // Field policy inheritance is atomic/shallow: you can't inherit a\n // field policy and then override just its read function, since read\n // and merge functions often need to cooperate, so changing only one\n // of them would be a recipe for inconsistency.\n //\n // Once the TypePolicy for typename has been accessed, its properties can\n // still be updated directly using addTypePolicies, but future changes to\n // inherited supertype policies will not be reflected in this subtype\n // policy, because this code runs at most once per typename.\n var supertypes_1 = this.supertypeMap.get(typename);\n if (!supertypes_1 && this.fuzzySubtypes.size) {\n // To make the inheritance logic work for unknown typename strings that\n // may have fuzzy supertypes, we give this typename an empty supertype\n // set and then populate it with any fuzzy supertypes that match.\n supertypes_1 = this.getSupertypeSet(typename, true);\n // This only works for typenames that are directly matched by a fuzzy\n // supertype. What if there is an intermediate chain of supertypes?\n // While possible, that situation can only be solved effectively by\n // specifying the intermediate relationships via possibleTypes, manually\n // and in a non-fuzzy way.\n this.fuzzySubtypes.forEach(function (regExp, fuzzy) {\n if (regExp.test(typename)) {\n // The fuzzy parameter is just the original string version of regExp\n // (not a valid __typename string), but we can look up the\n // associated supertype(s) in this.supertypeMap.\n var fuzzySupertypes = _this.supertypeMap.get(fuzzy);\n if (fuzzySupertypes) {\n fuzzySupertypes.forEach(function (supertype) {\n return supertypes_1.add(supertype);\n });\n }\n }\n });\n }\n if (supertypes_1 && supertypes_1.size) {\n supertypes_1.forEach(function (supertype) {\n var _a = _this.getTypePolicy(supertype), fields = _a.fields, rest = __rest(_a, [\"fields\"]);\n Object.assign(policy_1, rest);\n Object.assign(policy_1.fields, fields);\n });\n }\n }\n var inbox = this.toBeAdded[typename];\n if (inbox && inbox.length) {\n // Merge the pending policies into this.typePolicies, in the order they\n // were originally passed to addTypePolicy.\n inbox.splice(0).forEach(function (policy) {\n _this.updateTypePolicy(typename, policy);\n });\n }\n return this.typePolicies[typename];\n };\n Policies.prototype.getFieldPolicy = function (typename, fieldName, createIfMissing) {\n if (typename) {\n var fieldPolicies = this.getTypePolicy(typename).fields;\n return (fieldPolicies[fieldName] ||\n (createIfMissing && (fieldPolicies[fieldName] = Object.create(null))));\n }\n };\n Policies.prototype.getSupertypeSet = function (subtype, createIfMissing) {\n var supertypeSet = this.supertypeMap.get(subtype);\n if (!supertypeSet && createIfMissing) {\n this.supertypeMap.set(subtype, (supertypeSet = new Set()));\n }\n return supertypeSet;\n };\n Policies.prototype.fragmentMatches = function (fragment, typename, result, variables) {\n var _this = this;\n if (!fragment.typeCondition)\n return true;\n // If the fragment has a type condition but the object we're matching\n // against does not have a __typename, the fragment cannot match.\n if (!typename)\n return false;\n var supertype = fragment.typeCondition.name.value;\n // Common case: fragment type condition and __typename are the same.\n if (typename === supertype)\n return true;\n if (this.usingPossibleTypes && this.supertypeMap.has(supertype)) {\n var typenameSupertypeSet = this.getSupertypeSet(typename, true);\n var workQueue_1 = [typenameSupertypeSet];\n var maybeEnqueue_1 = function (subtype) {\n var supertypeSet = _this.getSupertypeSet(subtype, false);\n if (supertypeSet &&\n supertypeSet.size &&\n workQueue_1.indexOf(supertypeSet) < 0) {\n workQueue_1.push(supertypeSet);\n }\n };\n // We need to check fuzzy subtypes only if we encountered fuzzy\n // subtype strings in addPossibleTypes, and only while writing to\n // the cache, since that's when selectionSetMatchesResult gives a\n // strong signal of fragment matching. The StoreReader class calls\n // policies.fragmentMatches without passing a result object, so\n // needToCheckFuzzySubtypes is always false while reading.\n var needToCheckFuzzySubtypes = !!(result && this.fuzzySubtypes.size);\n var checkingFuzzySubtypes = false;\n // It's important to keep evaluating workQueue.length each time through\n // the loop, because the queue can grow while we're iterating over it.\n for (var i = 0; i < workQueue_1.length; ++i) {\n var supertypeSet = workQueue_1[i];\n if (supertypeSet.has(supertype)) {\n if (!typenameSupertypeSet.has(supertype)) {\n if (checkingFuzzySubtypes) {\n globalThis.__DEV__ !== false && invariant.warn(6, typename, supertype);\n }\n // Record positive results for faster future lookup.\n // Unfortunately, we cannot safely cache negative results,\n // because new possibleTypes data could always be added to the\n // Policies class.\n typenameSupertypeSet.add(supertype);\n }\n return true;\n }\n supertypeSet.forEach(maybeEnqueue_1);\n if (needToCheckFuzzySubtypes &&\n // Start checking fuzzy subtypes only after exhausting all\n // non-fuzzy subtypes (after the final iteration of the loop).\n i === workQueue_1.length - 1 &&\n // We could wait to compare fragment.selectionSet to result\n // after we verify the supertype, but this check is often less\n // expensive than that search, and we will have to do the\n // comparison anyway whenever we find a potential match.\n selectionSetMatchesResult(fragment.selectionSet, result, variables)) {\n // We don't always need to check fuzzy subtypes (if no result\n // was provided, or !this.fuzzySubtypes.size), but, when we do,\n // we only want to check them once.\n needToCheckFuzzySubtypes = false;\n checkingFuzzySubtypes = true;\n // If we find any fuzzy subtypes that match typename, extend the\n // workQueue to search through the supertypes of those fuzzy\n // subtypes. Otherwise the for-loop will terminate and we'll\n // return false below.\n this.fuzzySubtypes.forEach(function (regExp, fuzzyString) {\n var match = typename.match(regExp);\n if (match && match[0] === typename) {\n maybeEnqueue_1(fuzzyString);\n }\n });\n }\n }\n }\n return false;\n };\n Policies.prototype.hasKeyArgs = function (typename, fieldName) {\n var policy = this.getFieldPolicy(typename, fieldName, false);\n return !!(policy && policy.keyFn);\n };\n Policies.prototype.getStoreFieldName = function (fieldSpec) {\n var typename = fieldSpec.typename, fieldName = fieldSpec.fieldName;\n var policy = this.getFieldPolicy(typename, fieldName, false);\n var storeFieldName;\n var keyFn = policy && policy.keyFn;\n if (keyFn && typename) {\n var context = {\n typename: typename,\n fieldName: fieldName,\n field: fieldSpec.field || null,\n variables: fieldSpec.variables,\n };\n var args = argsFromFieldSpecifier(fieldSpec);\n while (keyFn) {\n var specifierOrString = keyFn(args, context);\n if (isArray(specifierOrString)) {\n keyFn = keyArgsFnFromSpecifier(specifierOrString);\n }\n else {\n // If the custom keyFn returns a falsy value, fall back to\n // fieldName instead.\n storeFieldName = specifierOrString || fieldName;\n break;\n }\n }\n }\n if (storeFieldName === void 0) {\n storeFieldName =\n fieldSpec.field ?\n storeKeyNameFromField(fieldSpec.field, fieldSpec.variables)\n : getStoreKeyName(fieldName, argsFromFieldSpecifier(fieldSpec));\n }\n // Returning false from a keyArgs function is like configuring\n // keyArgs: false, but more dynamic.\n if (storeFieldName === false) {\n return fieldName;\n }\n // Make sure custom field names start with the actual field.name.value\n // of the field, so we can always figure out which properties of a\n // StoreObject correspond to which original field names.\n return fieldName === fieldNameFromStoreName(storeFieldName) ? storeFieldName\n : fieldName + \":\" + storeFieldName;\n };\n Policies.prototype.readField = function (options, context) {\n var objectOrReference = options.from;\n if (!objectOrReference)\n return;\n var nameOrField = options.field || options.fieldName;\n if (!nameOrField)\n return;\n if (options.typename === void 0) {\n var typename = context.store.getFieldValue(objectOrReference, \"__typename\");\n if (typename)\n options.typename = typename;\n }\n var storeFieldName = this.getStoreFieldName(options);\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var existing = context.store.getFieldValue(objectOrReference, storeFieldName);\n var policy = this.getFieldPolicy(options.typename, fieldName, false);\n var read = policy && policy.read;\n if (read) {\n var readOptions = makeFieldFunctionOptions(this, objectOrReference, options, context, context.store.getStorage(isReference(objectOrReference) ?\n objectOrReference.__ref\n : objectOrReference, storeFieldName));\n // Call read(existing, readOptions) with cacheSlot holding this.cache.\n return cacheSlot.withValue(this.cache, read, [\n existing,\n readOptions,\n ]);\n }\n return existing;\n };\n Policies.prototype.getReadFunction = function (typename, fieldName) {\n var policy = this.getFieldPolicy(typename, fieldName, false);\n return policy && policy.read;\n };\n Policies.prototype.getMergeFunction = function (parentTypename, fieldName, childTypename) {\n var policy = this.getFieldPolicy(parentTypename, fieldName, false);\n var merge = policy && policy.merge;\n if (!merge && childTypename) {\n policy = this.getTypePolicy(childTypename);\n merge = policy && policy.merge;\n }\n return merge;\n };\n Policies.prototype.runMergeFunction = function (existing, incoming, _a, context, storage) {\n var field = _a.field, typename = _a.typename, merge = _a.merge;\n if (merge === mergeTrueFn) {\n // Instead of going to the trouble of creating a full\n // FieldFunctionOptions object and calling mergeTrueFn, we can\n // simply call mergeObjects, as mergeTrueFn would.\n return makeMergeObjectsFunction(context.store)(existing, incoming);\n }\n if (merge === mergeFalseFn) {\n // Likewise for mergeFalseFn, whose implementation is even simpler.\n return incoming;\n }\n // If cache.writeQuery or cache.writeFragment was called with\n // options.overwrite set to true, we still call merge functions, but\n // the existing data is always undefined, so the merge function will\n // not attempt to combine the incoming data with the existing data.\n if (context.overwrite) {\n existing = void 0;\n }\n return merge(existing, incoming, makeFieldFunctionOptions(this, \n // Unlike options.readField for read functions, we do not fall\n // back to the current object if no foreignObjOrRef is provided,\n // because it's not clear what the current object should be for\n // merge functions: the (possibly undefined) existing object, or\n // the incoming object? If you think your merge function needs\n // to read sibling fields in order to produce a new value for\n // the current field, you might want to rethink your strategy,\n // because that's a recipe for making merge behavior sensitive\n // to the order in which fields are written into the cache.\n // However, readField(name, ref) is useful for merge functions\n // that need to deduplicate child objects and references.\n void 0, {\n typename: typename,\n fieldName: field.name.value,\n field: field,\n variables: context.variables,\n }, context, storage || Object.create(null)));\n };\n return Policies;\n}());\nexport { Policies };\nfunction makeFieldFunctionOptions(policies, objectOrReference, fieldSpec, context, storage) {\n var storeFieldName = policies.getStoreFieldName(fieldSpec);\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var variables = fieldSpec.variables || context.variables;\n var _a = context.store, toReference = _a.toReference, canRead = _a.canRead;\n return {\n args: argsFromFieldSpecifier(fieldSpec),\n field: fieldSpec.field || null,\n fieldName: fieldName,\n storeFieldName: storeFieldName,\n variables: variables,\n isReference: isReference,\n toReference: toReference,\n storage: storage,\n cache: policies.cache,\n canRead: canRead,\n readField: function () {\n return policies.readField(normalizeReadFieldOptions(arguments, objectOrReference, variables), context);\n },\n mergeObjects: makeMergeObjectsFunction(context.store),\n };\n}\nexport function normalizeReadFieldOptions(readFieldArgs, objectOrReference, variables) {\n var fieldNameOrOptions = readFieldArgs[0], from = readFieldArgs[1], argc = readFieldArgs.length;\n var options;\n if (typeof fieldNameOrOptions === \"string\") {\n options = {\n fieldName: fieldNameOrOptions,\n // Default to objectOrReference only when no second argument was\n // passed for the from parameter, not when undefined is explicitly\n // passed as the second argument.\n from: argc > 1 ? from : objectOrReference,\n };\n }\n else {\n options = __assign({}, fieldNameOrOptions);\n // Default to objectOrReference only when fieldNameOrOptions.from is\n // actually omitted, rather than just undefined.\n if (!hasOwn.call(options, \"from\")) {\n options.from = objectOrReference;\n }\n }\n if (globalThis.__DEV__ !== false && options.from === void 0) {\n globalThis.__DEV__ !== false && invariant.warn(7, stringifyForDisplay(Array.from(readFieldArgs)));\n }\n if (void 0 === options.variables) {\n options.variables = variables;\n }\n return options;\n}\nfunction makeMergeObjectsFunction(store) {\n return function mergeObjects(existing, incoming) {\n if (isArray(existing) || isArray(incoming)) {\n throw newInvariantError(8);\n }\n // These dynamic checks are necessary because the parameters of a\n // custom merge function can easily have the any type, so the type\n // system cannot always enforce the StoreObject | Reference parameter\n // types of options.mergeObjects.\n if (isNonNullObject(existing) && isNonNullObject(incoming)) {\n var eType = store.getFieldValue(existing, \"__typename\");\n var iType = store.getFieldValue(incoming, \"__typename\");\n var typesDiffer = eType && iType && eType !== iType;\n if (typesDiffer) {\n return incoming;\n }\n if (isReference(existing) && storeValueIsStoreObject(incoming)) {\n // Update the normalized EntityStore for the entity identified by\n // existing.__ref, preferring/overwriting any fields contributed by the\n // newer incoming StoreObject.\n store.merge(existing.__ref, incoming);\n return existing;\n }\n if (storeValueIsStoreObject(existing) && isReference(incoming)) {\n // Update the normalized EntityStore for the entity identified by\n // incoming.__ref, taking fields from the older existing object only if\n // those fields are not already present in the newer StoreObject\n // identified by incoming.__ref.\n store.merge(existing, incoming.__ref);\n return incoming;\n }\n if (storeValueIsStoreObject(existing) &&\n storeValueIsStoreObject(incoming)) {\n return __assign(__assign({}, existing), incoming);\n }\n }\n return incoming;\n };\n}\n//# sourceMappingURL=policies.js.map","import { __assign } from \"tslib\";\nimport { invariant, newInvariantError } from \"../../utilities/globals/index.js\";\nimport { equal } from \"@wry/equality\";\nimport { Trie } from \"@wry/trie\";\nimport { Kind } from \"graphql\";\nimport { getFragmentFromSelection, getDefaultValues, getOperationDefinition, getTypenameFromResult, makeReference, isField, resultKeyNameFromField, isReference, shouldInclude, cloneDeep, addTypenameToDocument, isNonEmptyArray, argumentsObjectFromField, canonicalStringify, } from \"../../utilities/index.js\";\nimport { isArray, makeProcessedFieldsMerger, fieldNameFromStoreName, storeValueIsStoreObject, extractFragmentContext, } from \"./helpers.js\";\nimport { normalizeReadFieldOptions } from \"./policies.js\";\n// Since there are only four possible combinations of context.clientOnly and\n// context.deferred values, we should need at most four \"flavors\" of any given\n// WriteContext. To avoid creating multiple copies of the same context, we cache\n// the contexts in the context.flavors Map (shared by all flavors) according to\n// their clientOnly and deferred values (always in that order).\nfunction getContextFlavor(context, clientOnly, deferred) {\n var key = \"\".concat(clientOnly).concat(deferred);\n var flavored = context.flavors.get(key);\n if (!flavored) {\n context.flavors.set(key, (flavored =\n context.clientOnly === clientOnly && context.deferred === deferred ?\n context\n : __assign(__assign({}, context), { clientOnly: clientOnly, deferred: deferred })));\n }\n return flavored;\n}\nvar StoreWriter = /** @class */ (function () {\n function StoreWriter(cache, reader, fragments) {\n this.cache = cache;\n this.reader = reader;\n this.fragments = fragments;\n }\n StoreWriter.prototype.writeToStore = function (store, _a) {\n var _this = this;\n var query = _a.query, result = _a.result, dataId = _a.dataId, variables = _a.variables, overwrite = _a.overwrite;\n var operationDefinition = getOperationDefinition(query);\n var merger = makeProcessedFieldsMerger();\n variables = __assign(__assign({}, getDefaultValues(operationDefinition)), variables);\n var context = __assign(__assign({ store: store, written: Object.create(null), merge: function (existing, incoming) {\n return merger.merge(existing, incoming);\n }, variables: variables, varString: canonicalStringify(variables) }, extractFragmentContext(query, this.fragments)), { overwrite: !!overwrite, incomingById: new Map(), clientOnly: false, deferred: false, flavors: new Map() });\n var ref = this.processSelectionSet({\n result: result || Object.create(null),\n dataId: dataId,\n selectionSet: operationDefinition.selectionSet,\n mergeTree: { map: new Map() },\n context: context,\n });\n if (!isReference(ref)) {\n throw newInvariantError(11, result);\n }\n // So far, the store has not been modified, so now it's time to process\n // context.incomingById and merge those incoming fields into context.store.\n context.incomingById.forEach(function (_a, dataId) {\n var storeObject = _a.storeObject, mergeTree = _a.mergeTree, fieldNodeSet = _a.fieldNodeSet;\n var entityRef = makeReference(dataId);\n if (mergeTree && mergeTree.map.size) {\n var applied = _this.applyMerges(mergeTree, entityRef, storeObject, context);\n if (isReference(applied)) {\n // Assume References returned by applyMerges have already been merged\n // into the store. See makeMergeObjectsFunction in policies.ts for an\n // example of how this can happen.\n return;\n }\n // Otherwise, applyMerges returned a StoreObject, whose fields we should\n // merge into the store (see store.merge statement below).\n storeObject = applied;\n }\n if (globalThis.__DEV__ !== false && !context.overwrite) {\n var fieldsWithSelectionSets_1 = Object.create(null);\n fieldNodeSet.forEach(function (field) {\n if (field.selectionSet) {\n fieldsWithSelectionSets_1[field.name.value] = true;\n }\n });\n var hasSelectionSet_1 = function (storeFieldName) {\n return fieldsWithSelectionSets_1[fieldNameFromStoreName(storeFieldName)] ===\n true;\n };\n var hasMergeFunction_1 = function (storeFieldName) {\n var childTree = mergeTree && mergeTree.map.get(storeFieldName);\n return Boolean(childTree && childTree.info && childTree.info.merge);\n };\n Object.keys(storeObject).forEach(function (storeFieldName) {\n // If a merge function was defined for this field, trust that it\n // did the right thing about (not) clobbering data. If the field\n // has no selection set, it's a scalar field, so it doesn't need\n // a merge function (even if it's an object, like JSON data).\n if (hasSelectionSet_1(storeFieldName) &&\n !hasMergeFunction_1(storeFieldName)) {\n warnAboutDataLoss(entityRef, storeObject, storeFieldName, context.store);\n }\n });\n }\n store.merge(dataId, storeObject);\n });\n // Any IDs written explicitly to the cache will be retained as\n // reachable root IDs for garbage collection purposes. Although this\n // logic includes root IDs like ROOT_QUERY and ROOT_MUTATION, their\n // retainment counts are effectively ignored because cache.gc() always\n // includes them in its root ID set.\n store.retain(ref.__ref);\n return ref;\n };\n StoreWriter.prototype.processSelectionSet = function (_a) {\n var _this = this;\n var dataId = _a.dataId, result = _a.result, selectionSet = _a.selectionSet, context = _a.context, \n // This object allows processSelectionSet to report useful information\n // to its callers without explicitly returning that information.\n mergeTree = _a.mergeTree;\n var policies = this.cache.policies;\n // This variable will be repeatedly updated using context.merge to\n // accumulate all fields that need to be written into the store.\n var incoming = Object.create(null);\n // If typename was not passed in, infer it. Note that typename is\n // always passed in for tricky-to-infer cases such as \"Query\" for\n // ROOT_QUERY.\n var typename = (dataId && policies.rootTypenamesById[dataId]) ||\n getTypenameFromResult(result, selectionSet, context.fragmentMap) ||\n (dataId && context.store.get(dataId, \"__typename\"));\n if (\"string\" === typeof typename) {\n incoming.__typename = typename;\n }\n // This readField function will be passed as context.readField in the\n // KeyFieldsContext object created within policies.identify (called below).\n // In addition to reading from the existing context.store (thanks to the\n // policies.readField(options, context) line at the very bottom), this\n // version of readField can read from Reference objects that are currently\n // pending in context.incomingById, which is important whenever keyFields\n // need to be extracted from a child object that processSelectionSet has\n // turned into a Reference.\n var readField = function () {\n var options = normalizeReadFieldOptions(arguments, incoming, context.variables);\n if (isReference(options.from)) {\n var info = context.incomingById.get(options.from.__ref);\n if (info) {\n var result_1 = policies.readField(__assign(__assign({}, options), { from: info.storeObject }), context);\n if (result_1 !== void 0) {\n return result_1;\n }\n }\n }\n return policies.readField(options, context);\n };\n var fieldNodeSet = new Set();\n this.flattenFields(selectionSet, result, \n // This WriteContext will be the default context value for fields returned\n // by the flattenFields method, but some fields may be assigned a modified\n // context, depending on the presence of @client and other directives.\n context, typename).forEach(function (context, field) {\n var _a;\n var resultFieldKey = resultKeyNameFromField(field);\n var value = result[resultFieldKey];\n fieldNodeSet.add(field);\n if (value !== void 0) {\n var storeFieldName = policies.getStoreFieldName({\n typename: typename,\n fieldName: field.name.value,\n field: field,\n variables: context.variables,\n });\n var childTree = getChildMergeTree(mergeTree, storeFieldName);\n var incomingValue = _this.processFieldValue(value, field, \n // Reset context.clientOnly and context.deferred to their default\n // values before processing nested selection sets.\n field.selectionSet ?\n getContextFlavor(context, false, false)\n : context, childTree);\n // To determine if this field holds a child object with a merge function\n // defined in its type policy (see PR #7070), we need to figure out the\n // child object's __typename.\n var childTypename = void 0;\n // The field's value can be an object that has a __typename only if the\n // field has a selection set. Otherwise incomingValue is scalar.\n if (field.selectionSet &&\n (isReference(incomingValue) || storeValueIsStoreObject(incomingValue))) {\n childTypename = readField(\"__typename\", incomingValue);\n }\n var merge = policies.getMergeFunction(typename, field.name.value, childTypename);\n if (merge) {\n childTree.info = {\n // TODO Check compatibility against any existing childTree.field?\n field: field,\n typename: typename,\n merge: merge,\n };\n }\n else {\n maybeRecycleChildMergeTree(mergeTree, storeFieldName);\n }\n incoming = context.merge(incoming, (_a = {},\n _a[storeFieldName] = incomingValue,\n _a));\n }\n else if (globalThis.__DEV__ !== false &&\n !context.clientOnly &&\n !context.deferred &&\n !addTypenameToDocument.added(field) &&\n // If the field has a read function, it may be a synthetic field or\n // provide a default value, so its absence from the written data should\n // not be cause for alarm.\n !policies.getReadFunction(typename, field.name.value)) {\n globalThis.__DEV__ !== false && invariant.error(12, resultKeyNameFromField(field), result);\n }\n });\n // Identify the result object, even if dataId was already provided,\n // since we always need keyObject below.\n try {\n var _b = policies.identify(result, {\n typename: typename,\n selectionSet: selectionSet,\n fragmentMap: context.fragmentMap,\n storeObject: incoming,\n readField: readField,\n }), id = _b[0], keyObject = _b[1];\n // If dataId was not provided, fall back to the id just generated by\n // policies.identify.\n dataId = dataId || id;\n // Write any key fields that were used during identification, even if\n // they were not mentioned in the original query.\n if (keyObject) {\n // TODO Reverse the order of the arguments?\n incoming = context.merge(incoming, keyObject);\n }\n }\n catch (e) {\n // If dataId was provided, tolerate failure of policies.identify.\n if (!dataId)\n throw e;\n }\n if (\"string\" === typeof dataId) {\n var dataRef = makeReference(dataId);\n // Avoid processing the same entity object using the same selection\n // set more than once. We use an array instead of a Set since most\n // entity IDs will be written using only one selection set, so the\n // size of this array is likely to be very small, meaning indexOf is\n // likely to be faster than Set.prototype.has.\n var sets = context.written[dataId] || (context.written[dataId] = []);\n if (sets.indexOf(selectionSet) >= 0)\n return dataRef;\n sets.push(selectionSet);\n // If we're about to write a result object into the store, but we\n // happen to know that the exact same (===) result object would be\n // returned if we were to reread the result with the same inputs,\n // then we can skip the rest of the processSelectionSet work for\n // this object, and immediately return a Reference to it.\n if (this.reader &&\n this.reader.isFresh(result, dataRef, selectionSet, context)) {\n return dataRef;\n }\n var previous_1 = context.incomingById.get(dataId);\n if (previous_1) {\n previous_1.storeObject = context.merge(previous_1.storeObject, incoming);\n previous_1.mergeTree = mergeMergeTrees(previous_1.mergeTree, mergeTree);\n fieldNodeSet.forEach(function (field) { return previous_1.fieldNodeSet.add(field); });\n }\n else {\n context.incomingById.set(dataId, {\n storeObject: incoming,\n // Save a reference to mergeTree only if it is not empty, because\n // empty MergeTrees may be recycled by maybeRecycleChildMergeTree and\n // reused for entirely different parts of the result tree.\n mergeTree: mergeTreeIsEmpty(mergeTree) ? void 0 : mergeTree,\n fieldNodeSet: fieldNodeSet,\n });\n }\n return dataRef;\n }\n return incoming;\n };\n StoreWriter.prototype.processFieldValue = function (value, field, context, mergeTree) {\n var _this = this;\n if (!field.selectionSet || value === null) {\n // In development, we need to clone scalar values so that they can be\n // safely frozen with maybeDeepFreeze in readFromStore.ts. In production,\n // it's cheaper to store the scalar values directly in the cache.\n return globalThis.__DEV__ !== false ? cloneDeep(value) : value;\n }\n if (isArray(value)) {\n return value.map(function (item, i) {\n var value = _this.processFieldValue(item, field, context, getChildMergeTree(mergeTree, i));\n maybeRecycleChildMergeTree(mergeTree, i);\n return value;\n });\n }\n return this.processSelectionSet({\n result: value,\n selectionSet: field.selectionSet,\n context: context,\n mergeTree: mergeTree,\n });\n };\n // Implements https://spec.graphql.org/draft/#sec-Field-Collection, but with\n // some additions for tracking @client and @defer directives.\n StoreWriter.prototype.flattenFields = function (selectionSet, result, context, typename) {\n if (typename === void 0) { typename = getTypenameFromResult(result, selectionSet, context.fragmentMap); }\n var fieldMap = new Map();\n var policies = this.cache.policies;\n var limitingTrie = new Trie(false); // No need for WeakMap, since limitingTrie does not escape.\n (function flatten(selectionSet, inheritedContext) {\n var visitedNode = limitingTrie.lookup(selectionSet, \n // Because we take inheritedClientOnly and inheritedDeferred into\n // consideration here (in addition to selectionSet), it's possible for\n // the same selection set to be flattened more than once, if it appears\n // in the query with different @client and/or @directive configurations.\n inheritedContext.clientOnly, inheritedContext.deferred);\n if (visitedNode.visited)\n return;\n visitedNode.visited = true;\n selectionSet.selections.forEach(function (selection) {\n if (!shouldInclude(selection, context.variables))\n return;\n var clientOnly = inheritedContext.clientOnly, deferred = inheritedContext.deferred;\n if (\n // Since the presence of @client or @defer on this field can only\n // cause clientOnly or deferred to become true, we can skip the\n // forEach loop if both clientOnly and deferred are already true.\n !(clientOnly && deferred) &&\n isNonEmptyArray(selection.directives)) {\n selection.directives.forEach(function (dir) {\n var name = dir.name.value;\n if (name === \"client\")\n clientOnly = true;\n if (name === \"defer\") {\n var args = argumentsObjectFromField(dir, context.variables);\n // The @defer directive takes an optional args.if boolean\n // argument, similar to @include(if: boolean). Note that\n // @defer(if: false) does not make context.deferred false, but\n // instead behaves as if there was no @defer directive.\n if (!args || args.if !== false) {\n deferred = true;\n }\n // TODO In the future, we may want to record args.label using\n // context.deferred, if a label is specified.\n }\n });\n }\n if (isField(selection)) {\n var existing = fieldMap.get(selection);\n if (existing) {\n // If this field has been visited along another recursive path\n // before, the final context should have clientOnly or deferred set\n // to true only if *all* paths have the directive (hence the &&).\n clientOnly = clientOnly && existing.clientOnly;\n deferred = deferred && existing.deferred;\n }\n fieldMap.set(selection, getContextFlavor(context, clientOnly, deferred));\n }\n else {\n var fragment = getFragmentFromSelection(selection, context.lookupFragment);\n if (!fragment && selection.kind === Kind.FRAGMENT_SPREAD) {\n throw newInvariantError(13, selection.name.value);\n }\n if (fragment &&\n policies.fragmentMatches(fragment, typename, result, context.variables)) {\n flatten(fragment.selectionSet, getContextFlavor(context, clientOnly, deferred));\n }\n }\n });\n })(selectionSet, context);\n return fieldMap;\n };\n StoreWriter.prototype.applyMerges = function (mergeTree, existing, incoming, context, getStorageArgs) {\n var _a;\n var _this = this;\n if (mergeTree.map.size && !isReference(incoming)) {\n var e_1 = \n // Items in the same position in different arrays are not\n // necessarily related to each other, so when incoming is an array\n // we process its elements as if there was no existing data.\n (!isArray(incoming) &&\n // Likewise, existing must be either a Reference or a StoreObject\n // in order for its fields to be safe to merge with the fields of\n // the incoming object.\n (isReference(existing) || storeValueIsStoreObject(existing))) ?\n existing\n : void 0;\n // This narrowing is implied by mergeTree.map.size > 0 and\n // !isReference(incoming), though TypeScript understandably cannot\n // hope to infer this type.\n var i_1 = incoming;\n // The options.storage objects provided to read and merge functions\n // are derived from the identity of the parent object plus a\n // sequence of storeFieldName strings/numbers identifying the nested\n // field name path of each field value to be merged.\n if (e_1 && !getStorageArgs) {\n getStorageArgs = [isReference(e_1) ? e_1.__ref : e_1];\n }\n // It's possible that applying merge functions to this subtree will\n // not change the incoming data, so this variable tracks the fields\n // that did change, so we can create a new incoming object when (and\n // only when) at least one incoming field has changed. We use a Map\n // to preserve the type of numeric keys.\n var changedFields_1;\n var getValue_1 = function (from, name) {\n return (isArray(from) ?\n typeof name === \"number\" ?\n from[name]\n : void 0\n : context.store.getFieldValue(from, String(name)));\n };\n mergeTree.map.forEach(function (childTree, storeFieldName) {\n var eVal = getValue_1(e_1, storeFieldName);\n var iVal = getValue_1(i_1, storeFieldName);\n // If we have no incoming data, leave any existing data untouched.\n if (void 0 === iVal)\n return;\n if (getStorageArgs) {\n getStorageArgs.push(storeFieldName);\n }\n var aVal = _this.applyMerges(childTree, eVal, iVal, context, getStorageArgs);\n if (aVal !== iVal) {\n changedFields_1 = changedFields_1 || new Map();\n changedFields_1.set(storeFieldName, aVal);\n }\n if (getStorageArgs) {\n invariant(getStorageArgs.pop() === storeFieldName);\n }\n });\n if (changedFields_1) {\n // Shallow clone i so we can add changed fields to it.\n incoming = (isArray(i_1) ? i_1.slice(0) : __assign({}, i_1));\n changedFields_1.forEach(function (value, name) {\n incoming[name] = value;\n });\n }\n }\n if (mergeTree.info) {\n return this.cache.policies.runMergeFunction(existing, incoming, mergeTree.info, context, getStorageArgs && (_a = context.store).getStorage.apply(_a, getStorageArgs));\n }\n return incoming;\n };\n return StoreWriter;\n}());\nexport { StoreWriter };\nvar emptyMergeTreePool = [];\nfunction getChildMergeTree(_a, name) {\n var map = _a.map;\n if (!map.has(name)) {\n map.set(name, emptyMergeTreePool.pop() || { map: new Map() });\n }\n return map.get(name);\n}\nfunction mergeMergeTrees(left, right) {\n if (left === right || !right || mergeTreeIsEmpty(right))\n return left;\n if (!left || mergeTreeIsEmpty(left))\n return right;\n var info = left.info && right.info ? __assign(__assign({}, left.info), right.info) : left.info || right.info;\n var needToMergeMaps = left.map.size && right.map.size;\n var map = needToMergeMaps ? new Map()\n : left.map.size ? left.map\n : right.map;\n var merged = { info: info, map: map };\n if (needToMergeMaps) {\n var remainingRightKeys_1 = new Set(right.map.keys());\n left.map.forEach(function (leftTree, key) {\n merged.map.set(key, mergeMergeTrees(leftTree, right.map.get(key)));\n remainingRightKeys_1.delete(key);\n });\n remainingRightKeys_1.forEach(function (key) {\n merged.map.set(key, mergeMergeTrees(right.map.get(key), left.map.get(key)));\n });\n }\n return merged;\n}\nfunction mergeTreeIsEmpty(tree) {\n return !tree || !(tree.info || tree.map.size);\n}\nfunction maybeRecycleChildMergeTree(_a, name) {\n var map = _a.map;\n var childTree = map.get(name);\n if (childTree && mergeTreeIsEmpty(childTree)) {\n emptyMergeTreePool.push(childTree);\n map.delete(name);\n }\n}\nvar warnings = new Set();\n// Note that this function is unused in production, and thus should be\n// pruned by any well-configured minifier.\nfunction warnAboutDataLoss(existingRef, incomingObj, storeFieldName, store) {\n var getChild = function (objOrRef) {\n var child = store.getFieldValue(objOrRef, storeFieldName);\n return typeof child === \"object\" && child;\n };\n var existing = getChild(existingRef);\n if (!existing)\n return;\n var incoming = getChild(incomingObj);\n if (!incoming)\n return;\n // It's always safe to replace a reference, since it refers to data\n // safely stored elsewhere.\n if (isReference(existing))\n return;\n // If the values are structurally equivalent, we do not need to worry\n // about incoming replacing existing.\n if (equal(existing, incoming))\n return;\n // If we're replacing every key of the existing object, then the\n // existing data would be overwritten even if the objects were\n // normalized, so warning would not be helpful here.\n if (Object.keys(existing).every(function (key) { return store.getFieldValue(incoming, key) !== void 0; })) {\n return;\n }\n var parentType = store.getFieldValue(existingRef, \"__typename\") ||\n store.getFieldValue(incomingObj, \"__typename\");\n var fieldName = fieldNameFromStoreName(storeFieldName);\n var typeDotName = \"\".concat(parentType, \".\").concat(fieldName);\n // Avoid warning more than once for the same type and field name.\n if (warnings.has(typeDotName))\n return;\n warnings.add(typeDotName);\n var childTypenames = [];\n // Arrays do not have __typename fields, and always need a custom merge\n // function, even if their elements are normalized entities.\n if (!isArray(existing) && !isArray(incoming)) {\n [existing, incoming].forEach(function (child) {\n var typename = store.getFieldValue(child, \"__typename\");\n if (typeof typename === \"string\" && !childTypenames.includes(typename)) {\n childTypenames.push(typename);\n }\n });\n }\n globalThis.__DEV__ !== false && invariant.warn(14, fieldName, parentType, childTypenames.length ?\n \"either ensure all objects of type \" +\n childTypenames.join(\" and \") +\n \" have an ID or a custom merge function, or \"\n : \"\", typeDotName, __assign({}, existing), __assign({}, incoming));\n}\n//# sourceMappingURL=writeToStore.js.map","import { __assign, __extends } from \"tslib\";\nimport { invariant } from \"../../utilities/globals/index.js\";\n// Make builtins like Map and Set safe to use with non-extensible objects.\nimport \"./fixPolyfills.js\";\nimport { wrap } from \"optimism\";\nimport { equal } from \"@wry/equality\";\nimport { ApolloCache } from \"../core/cache.js\";\nimport { MissingFieldError } from \"../core/types/common.js\";\nimport { addTypenameToDocument, isReference, DocumentTransform, canonicalStringify, print, cacheSizes, } from \"../../utilities/index.js\";\nimport { StoreReader } from \"./readFromStore.js\";\nimport { StoreWriter } from \"./writeToStore.js\";\nimport { EntityStore, supportsResultCaching } from \"./entityStore.js\";\nimport { makeVar, forgetCache, recallCache } from \"./reactiveVars.js\";\nimport { Policies } from \"./policies.js\";\nimport { hasOwn, normalizeConfig, shouldCanonizeResults } from \"./helpers.js\";\nimport { getInMemoryCacheMemoryInternals } from \"../../utilities/caching/getMemoryInternals.js\";\nvar InMemoryCache = /** @class */ (function (_super) {\n __extends(InMemoryCache, _super);\n function InMemoryCache(config) {\n if (config === void 0) { config = {}; }\n var _this = _super.call(this) || this;\n _this.watches = new Set();\n _this.addTypenameTransform = new DocumentTransform(addTypenameToDocument);\n // Override the default value, since InMemoryCache result objects are frozen\n // in development and expected to remain logically immutable in production.\n _this.assumeImmutableResults = true;\n _this.makeVar = makeVar;\n _this.txCount = 0;\n _this.config = normalizeConfig(config);\n _this.addTypename = !!_this.config.addTypename;\n _this.policies = new Policies({\n cache: _this,\n dataIdFromObject: _this.config.dataIdFromObject,\n possibleTypes: _this.config.possibleTypes,\n typePolicies: _this.config.typePolicies,\n });\n _this.init();\n return _this;\n }\n InMemoryCache.prototype.init = function () {\n // Passing { resultCaching: false } in the InMemoryCache constructor options\n // will completely disable dependency tracking, which will improve memory\n // usage but worsen the performance of repeated reads.\n var rootStore = (this.data = new EntityStore.Root({\n policies: this.policies,\n resultCaching: this.config.resultCaching,\n }));\n // When no optimistic writes are currently active, cache.optimisticData ===\n // cache.data, so there are no additional layers on top of the actual data.\n // When an optimistic update happens, this.optimisticData will become a\n // linked list of EntityStore Layer objects that terminates with the\n // original this.data cache object.\n this.optimisticData = rootStore.stump;\n this.resetResultCache();\n };\n InMemoryCache.prototype.resetResultCache = function (resetResultIdentities) {\n var _this = this;\n var previousReader = this.storeReader;\n var fragments = this.config.fragments;\n // The StoreWriter is mostly stateless and so doesn't really need to be\n // reset, but it does need to have its writer.storeReader reference updated,\n // so it's simpler to update this.storeWriter as well.\n this.storeWriter = new StoreWriter(this, (this.storeReader = new StoreReader({\n cache: this,\n addTypename: this.addTypename,\n resultCacheMaxSize: this.config.resultCacheMaxSize,\n canonizeResults: shouldCanonizeResults(this.config),\n canon: resetResultIdentities ? void 0 : (previousReader && previousReader.canon),\n fragments: fragments,\n })), fragments);\n this.maybeBroadcastWatch = wrap(function (c, options) {\n return _this.broadcastWatch(c, options);\n }, {\n max: this.config.resultCacheMaxSize ||\n cacheSizes[\"inMemoryCache.maybeBroadcastWatch\"] ||\n 5000 /* defaultCacheSizes[\"inMemoryCache.maybeBroadcastWatch\"] */,\n makeCacheKey: function (c) {\n // Return a cache key (thus enabling result caching) only if we're\n // currently using a data store that can track cache dependencies.\n var store = c.optimistic ? _this.optimisticData : _this.data;\n if (supportsResultCaching(store)) {\n var optimistic = c.optimistic, id = c.id, variables = c.variables;\n return store.makeCacheKey(c.query, \n // Different watches can have the same query, optimistic\n // status, rootId, and variables, but if their callbacks are\n // different, the (identical) result needs to be delivered to\n // each distinct callback. The easiest way to achieve that\n // separation is to include c.callback in the cache key for\n // maybeBroadcastWatch calls. See issue #5733.\n c.callback, canonicalStringify({ optimistic: optimistic, id: id, variables: variables }));\n }\n },\n });\n // Since we have thrown away all the cached functions that depend on the\n // CacheGroup dependencies maintained by EntityStore, we should also reset\n // all CacheGroup dependency information.\n new Set([this.data.group, this.optimisticData.group]).forEach(function (group) {\n return group.resetCaching();\n });\n };\n InMemoryCache.prototype.restore = function (data) {\n this.init();\n // Since calling this.init() discards/replaces the entire StoreReader, along\n // with the result caches it maintains, this.data.replace(data) won't have\n // to bother deleting the old data.\n if (data)\n this.data.replace(data);\n return this;\n };\n InMemoryCache.prototype.extract = function (optimistic) {\n if (optimistic === void 0) { optimistic = false; }\n return (optimistic ? this.optimisticData : this.data).extract();\n };\n InMemoryCache.prototype.read = function (options) {\n var \n // Since read returns data or null, without any additional metadata\n // about whether/where there might have been missing fields, the\n // default behavior cannot be returnPartialData = true (like it is\n // for the diff method), since defaulting to true would violate the\n // integrity of the T in the return type. However, partial data may\n // be useful in some cases, so returnPartialData:true may be\n // specified explicitly.\n _a = options.returnPartialData, \n // Since read returns data or null, without any additional metadata\n // about whether/where there might have been missing fields, the\n // default behavior cannot be returnPartialData = true (like it is\n // for the diff method), since defaulting to true would violate the\n // integrity of the T in the return type. However, partial data may\n // be useful in some cases, so returnPartialData:true may be\n // specified explicitly.\n returnPartialData = _a === void 0 ? false : _a;\n try {\n return (this.storeReader.diffQueryAgainstStore(__assign(__assign({}, options), { store: options.optimistic ? this.optimisticData : this.data, config: this.config, returnPartialData: returnPartialData })).result || null);\n }\n catch (e) {\n if (e instanceof MissingFieldError) {\n // Swallow MissingFieldError and return null, so callers do not need to\n // worry about catching \"normal\" exceptions resulting from incomplete\n // cache data. Unexpected errors will be re-thrown. If you need more\n // information about which fields were missing, use cache.diff instead,\n // and examine diffResult.missing.\n return null;\n }\n throw e;\n }\n };\n InMemoryCache.prototype.write = function (options) {\n try {\n ++this.txCount;\n return this.storeWriter.writeToStore(this.data, options);\n }\n finally {\n if (!--this.txCount && options.broadcast !== false) {\n this.broadcastWatches();\n }\n }\n };\n InMemoryCache.prototype.modify = function (options) {\n if (hasOwn.call(options, \"id\") && !options.id) {\n // To my knowledge, TypeScript does not currently provide a way to\n // enforce that an optional property?:type must *not* be undefined\n // when present. That ability would be useful here, because we want\n // options.id to default to ROOT_QUERY only when no options.id was\n // provided. If the caller attempts to pass options.id with a\n // falsy/undefined value (perhaps because cache.identify failed), we\n // should not assume the goal was to modify the ROOT_QUERY object.\n // We could throw, but it seems natural to return false to indicate\n // that nothing was modified.\n return false;\n }\n var store = ((options.optimistic) // Defaults to false.\n ) ?\n this.optimisticData\n : this.data;\n try {\n ++this.txCount;\n return store.modify(options.id || \"ROOT_QUERY\", options.fields);\n }\n finally {\n if (!--this.txCount && options.broadcast !== false) {\n this.broadcastWatches();\n }\n }\n };\n InMemoryCache.prototype.diff = function (options) {\n return this.storeReader.diffQueryAgainstStore(__assign(__assign({}, options), { store: options.optimistic ? this.optimisticData : this.data, rootId: options.id || \"ROOT_QUERY\", config: this.config }));\n };\n InMemoryCache.prototype.watch = function (watch) {\n var _this = this;\n if (!this.watches.size) {\n // In case we previously called forgetCache(this) because\n // this.watches became empty (see below), reattach this cache to any\n // reactive variables on which it previously depended. It might seem\n // paradoxical that we're able to recall something we supposedly\n // forgot, but the point of calling forgetCache(this) is to silence\n // useless broadcasts while this.watches is empty, and to allow the\n // cache to be garbage collected. If, however, we manage to call\n // recallCache(this) here, this cache object must not have been\n // garbage collected yet, and should resume receiving updates from\n // reactive variables, now that it has a watcher to notify.\n recallCache(this);\n }\n this.watches.add(watch);\n if (watch.immediate) {\n this.maybeBroadcastWatch(watch);\n }\n return function () {\n // Once we remove the last watch from this.watches, cache.broadcastWatches\n // no longer does anything, so we preemptively tell the reactive variable\n // system to exclude this cache from future broadcasts.\n if (_this.watches.delete(watch) && !_this.watches.size) {\n forgetCache(_this);\n }\n // Remove this watch from the LRU cache managed by the\n // maybeBroadcastWatch OptimisticWrapperFunction, to prevent memory\n // leaks involving the closure of watch.callback.\n _this.maybeBroadcastWatch.forget(watch);\n };\n };\n InMemoryCache.prototype.gc = function (options) {\n var _a;\n canonicalStringify.reset();\n print.reset();\n this.addTypenameTransform.resetCache();\n (_a = this.config.fragments) === null || _a === void 0 ? void 0 : _a.resetCaches();\n var ids = this.optimisticData.gc();\n if (options && !this.txCount) {\n if (options.resetResultCache) {\n this.resetResultCache(options.resetResultIdentities);\n }\n else if (options.resetResultIdentities) {\n this.storeReader.resetCanon();\n }\n }\n return ids;\n };\n // Call this method to ensure the given root ID remains in the cache after\n // garbage collection, along with its transitive child entities. Note that\n // the cache automatically retains all directly written entities. By default,\n // the retainment persists after optimistic updates are removed. Pass true\n // for the optimistic argument if you would prefer for the retainment to be\n // discarded when the top-most optimistic layer is removed. Returns the\n // resulting (non-negative) retainment count.\n InMemoryCache.prototype.retain = function (rootId, optimistic) {\n return (optimistic ? this.optimisticData : this.data).retain(rootId);\n };\n // Call this method to undo the effect of the retain method, above. Once the\n // retainment count falls to zero, the given ID will no longer be preserved\n // during garbage collection, though it may still be preserved by other safe\n // entities that refer to it. Returns the resulting (non-negative) retainment\n // count, in case that's useful.\n InMemoryCache.prototype.release = function (rootId, optimistic) {\n return (optimistic ? this.optimisticData : this.data).release(rootId);\n };\n // Returns the canonical ID for a given StoreObject, obeying typePolicies\n // and keyFields (and dataIdFromObject, if you still use that). At minimum,\n // the object must contain a __typename and any primary key fields required\n // to identify entities of that type. If you pass a query result object, be\n // sure that none of the primary key fields have been renamed by aliasing.\n // If you pass a Reference object, its __ref ID string will be returned.\n InMemoryCache.prototype.identify = function (object) {\n if (isReference(object))\n return object.__ref;\n try {\n return this.policies.identify(object)[0];\n }\n catch (e) {\n globalThis.__DEV__ !== false && invariant.warn(e);\n }\n };\n InMemoryCache.prototype.evict = function (options) {\n if (!options.id) {\n if (hasOwn.call(options, \"id\")) {\n // See comment in modify method about why we return false when\n // options.id exists but is falsy/undefined.\n return false;\n }\n options = __assign(__assign({}, options), { id: \"ROOT_QUERY\" });\n }\n try {\n // It's unlikely that the eviction will end up invoking any other\n // cache update operations while it's running, but {in,de}crementing\n // this.txCount still seems like a good idea, for uniformity with\n // the other update methods.\n ++this.txCount;\n // Pass this.data as a limit on the depth of the eviction, so evictions\n // during optimistic updates (when this.data is temporarily set equal to\n // this.optimisticData) do not escape their optimistic Layer.\n return this.optimisticData.evict(options, this.data);\n }\n finally {\n if (!--this.txCount && options.broadcast !== false) {\n this.broadcastWatches();\n }\n }\n };\n InMemoryCache.prototype.reset = function (options) {\n var _this = this;\n this.init();\n canonicalStringify.reset();\n if (options && options.discardWatches) {\n // Similar to what happens in the unsubscribe function returned by\n // cache.watch, applied to all current watches.\n this.watches.forEach(function (watch) { return _this.maybeBroadcastWatch.forget(watch); });\n this.watches.clear();\n forgetCache(this);\n }\n else {\n // Calling this.init() above unblocks all maybeBroadcastWatch caching, so\n // this.broadcastWatches() triggers a broadcast to every current watcher\n // (letting them know their data is now missing). This default behavior is\n // convenient because it means the watches do not have to be manually\n // reestablished after resetting the cache. To prevent this broadcast and\n // cancel all watches, pass true for options.discardWatches.\n this.broadcastWatches();\n }\n return Promise.resolve();\n };\n InMemoryCache.prototype.removeOptimistic = function (idToRemove) {\n var newOptimisticData = this.optimisticData.removeLayer(idToRemove);\n if (newOptimisticData !== this.optimisticData) {\n this.optimisticData = newOptimisticData;\n this.broadcastWatches();\n }\n };\n InMemoryCache.prototype.batch = function (options) {\n var _this = this;\n var update = options.update, _a = options.optimistic, optimistic = _a === void 0 ? true : _a, removeOptimistic = options.removeOptimistic, onWatchUpdated = options.onWatchUpdated;\n var updateResult;\n var perform = function (layer) {\n var _a = _this, data = _a.data, optimisticData = _a.optimisticData;\n ++_this.txCount;\n if (layer) {\n _this.data = _this.optimisticData = layer;\n }\n try {\n return (updateResult = update(_this));\n }\n finally {\n --_this.txCount;\n _this.data = data;\n _this.optimisticData = optimisticData;\n }\n };\n var alreadyDirty = new Set();\n if (onWatchUpdated && !this.txCount) {\n // If an options.onWatchUpdated callback is provided, we want to call it\n // with only the Cache.WatchOptions objects affected by options.update,\n // but there might be dirty watchers already waiting to be broadcast that\n // have nothing to do with the update. To prevent including those watchers\n // in the post-update broadcast, we perform this initial broadcast to\n // collect the dirty watchers, so we can re-dirty them later, after the\n // post-update broadcast, allowing them to receive their pending\n // broadcasts the next time broadcastWatches is called, just as they would\n // if we never called cache.batch.\n this.broadcastWatches(__assign(__assign({}, options), { onWatchUpdated: function (watch) {\n alreadyDirty.add(watch);\n return false;\n } }));\n }\n if (typeof optimistic === \"string\") {\n // Note that there can be multiple layers with the same optimistic ID.\n // When removeOptimistic(id) is called for that id, all matching layers\n // will be removed, and the remaining layers will be reapplied.\n this.optimisticData = this.optimisticData.addLayer(optimistic, perform);\n }\n else if (optimistic === false) {\n // Ensure both this.data and this.optimisticData refer to the root\n // (non-optimistic) layer of the cache during the update. Note that\n // this.data could be a Layer if we are currently executing an optimistic\n // update function, but otherwise will always be an EntityStore.Root\n // instance.\n perform(this.data);\n }\n else {\n // Otherwise, leave this.data and this.optimisticData unchanged and run\n // the update with broadcast batching.\n perform();\n }\n if (typeof removeOptimistic === \"string\") {\n this.optimisticData = this.optimisticData.removeLayer(removeOptimistic);\n }\n // Note: if this.txCount > 0, then alreadyDirty.size === 0, so this code\n // takes the else branch and calls this.broadcastWatches(options), which\n // does nothing when this.txCount > 0.\n if (onWatchUpdated && alreadyDirty.size) {\n this.broadcastWatches(__assign(__assign({}, options), { onWatchUpdated: function (watch, diff) {\n var result = onWatchUpdated.call(this, watch, diff);\n if (result !== false) {\n // Since onWatchUpdated did not return false, this diff is\n // about to be broadcast to watch.callback, so we don't need\n // to re-dirty it with the other alreadyDirty watches below.\n alreadyDirty.delete(watch);\n }\n return result;\n } }));\n // Silently re-dirty any watches that were already dirty before the update\n // was performed, and were not broadcast just now.\n if (alreadyDirty.size) {\n alreadyDirty.forEach(function (watch) { return _this.maybeBroadcastWatch.dirty(watch); });\n }\n }\n else {\n // If alreadyDirty is empty or we don't have an onWatchUpdated\n // function, we don't need to go to the trouble of wrapping\n // options.onWatchUpdated.\n this.broadcastWatches(options);\n }\n return updateResult;\n };\n InMemoryCache.prototype.performTransaction = function (update, optimisticId) {\n return this.batch({\n update: update,\n optimistic: optimisticId || optimisticId !== null,\n });\n };\n InMemoryCache.prototype.transformDocument = function (document) {\n return this.addTypenameToDocument(this.addFragmentsToDocument(document));\n };\n InMemoryCache.prototype.broadcastWatches = function (options) {\n var _this = this;\n if (!this.txCount) {\n this.watches.forEach(function (c) { return _this.maybeBroadcastWatch(c, options); });\n }\n };\n InMemoryCache.prototype.addFragmentsToDocument = function (document) {\n var fragments = this.config.fragments;\n return fragments ? fragments.transform(document) : document;\n };\n InMemoryCache.prototype.addTypenameToDocument = function (document) {\n if (this.addTypename) {\n return this.addTypenameTransform.transformDocument(document);\n }\n return document;\n };\n // This method is wrapped by maybeBroadcastWatch, which is called by\n // broadcastWatches, so that we compute and broadcast results only when\n // the data that would be broadcast might have changed. It would be\n // simpler to check for changes after recomputing a result but before\n // broadcasting it, but this wrapping approach allows us to skip both\n // the recomputation and the broadcast, in most cases.\n InMemoryCache.prototype.broadcastWatch = function (c, options) {\n var lastDiff = c.lastDiff;\n // Both WatchOptions and DiffOptions extend ReadOptions, and DiffOptions\n // currently requires no additional properties, so we can use c (a\n // WatchOptions object) as DiffOptions, without having to allocate a new\n // object, and without having to enumerate the relevant properties (query,\n // variables, etc.) explicitly. There will be some additional properties\n // (lastDiff, callback, etc.), but cache.diff ignores them.\n var diff = this.diff(c);\n if (options) {\n if (c.optimistic && typeof options.optimistic === \"string\") {\n diff.fromOptimisticTransaction = true;\n }\n if (options.onWatchUpdated &&\n options.onWatchUpdated.call(this, c, diff, lastDiff) === false) {\n // Returning false from the onWatchUpdated callback will prevent\n // calling c.callback(diff) for this watcher.\n return;\n }\n }\n if (!lastDiff || !equal(lastDiff.result, diff.result)) {\n c.callback((c.lastDiff = diff), lastDiff);\n }\n };\n return InMemoryCache;\n}(ApolloCache));\nexport { InMemoryCache };\nif (globalThis.__DEV__ !== false) {\n InMemoryCache.prototype.getMemoryInternals = getInMemoryCacheMemoryInternals;\n}\n//# sourceMappingURL=inMemoryCache.js.map","import React, { useEffect } from 'react'\nimport { trackPage } from 'ppbl/utils/fpti-helper'\n\nconst HeaderSection = React.lazy(() =>\n import('../../components/common/HeaderSection'),\n)\n\nconst PrivacyPolicySection = React.lazy(() =>\n import('../../components/PrivacyPolicySection'),\n)\n\nconst FooterSection = React.lazy(() =>\n import('../../components/common/FooterSection'),\n)\n\nconst FooterCtaSection = React.lazy(() =>\n import('../../components/FooterCtaSection'),\n)\n\nconst fptiData = {\n page: 'privacyPolicyPage',\n}\n\nfunction PrivacyPolicyPage() {\n useEffect(() => {\n trackPage(fptiData)\n })\n\n return (\n \n )\n}\n\nexport default PrivacyPolicyPage\n","import React from 'react'\nimport { createRoot } from 'react-dom/client'\nimport { Router } from '@reach/router'\nimport serverData, { init as initServerData } from 'ppbl/utils/server-data'\nimport { PAYPAL_THEME } from '@paypalcorp/pp-react'\nimport { ThemeProvider } from '@emotion/react'\nimport { ContextProvider as WorldReadyContextProvider } from '@paypalcorp/worldready-react'\nimport LandingPage from './screens/landing-page'\nimport CookieBanner from './components/common/CookieBanner'\nimport { ApolloClient, ApolloProvider, InMemoryCache } from '@apollo/client'\nimport PrivacyPolicyPage from './screens/privacy-page'\nimport './index.css'\n\ninitServerData()\n\nlet rootElm = document.getElementById('root')\n\nif (!rootElm) {\n rootElm = document.createElement('div')\n document.body.appendChild(rootElm)\n}\n\nconst client = new ApolloClient({\n uri: `${serverData.requestURI}/graphql`,\n cache: new InMemoryCache(),\n connectToDevTools: true,\n headers: {\n 'X-CSRF-Token': serverData._csrf,\n },\n})\n\nconst root = createRoot(rootElm)\nroot.render(\n \n \n \n \n \n \n \n \n \n \n ,\n)\n","import { __assign } from \"tslib\";\nimport { invariant } from \"../../utilities/globals/index.js\";\nimport * as React from \"rehackt\";\nimport { getApolloContext } from \"./ApolloContext.js\";\nexport var ApolloProvider = function (_a) {\n var client = _a.client, children = _a.children;\n var ApolloContext = getApolloContext();\n var parentContext = React.useContext(ApolloContext);\n var context = React.useMemo(function () {\n return __assign(__assign({}, parentContext), { client: client || parentContext.client });\n }, [parentContext, client]);\n invariant(context.client, 46);\n return (React.createElement(ApolloContext.Provider, { value: context }, children));\n};\n//# sourceMappingURL=ApolloProvider.js.map","import React from 'react'\nimport serverData from 'ppbl/utils/server-data'\n\nexport default function CookieBanner() {\n if (!serverData.data?.cookieBannerInfo) return null\n const { css, html } = serverData.data.cookieBannerInfo\n\n return
\n}\n","import { Logger as beaverLogger } from 'beaver-logger'\n\nconst logger = beaverLogger({\n // Url to send logs to\n url: '/merchant-lending/loanbuilder/log',\n\n // Prefix to prepend to all events\n prefix: 'PPBL',\n})\n\nconst clientLogger = {\n info: (message, data = {}) => {\n logger.info('BROWSER_CLIENT', {\n message,\n debugInfo: data,\n })\n },\n warn: (message, error = {}) => {\n logger.warn('BROWSER_CLIENT', {\n message,\n error,\n })\n },\n error: (message, error = {}) => {\n logger.error('BROWSER_CLIENT', {\n message,\n error,\n })\n },\n}\n\nexport default clientLogger\n","/* eslint-disable max-statements */\nimport serverData from './server-data'\nimport clientLogger from './client-logger'\n\nfunction generateOptions(data) {\n const options = {}\n\n if (!data) {\n clientLogger.warn('data object is undefined')\n return options\n }\n\n if (data.component) {\n options.component = data.component\n }\n\n if (data.link) {\n options.link = data.link\n }\n options.page = data.page\n\n options.locale = serverData.locality ? serverData.locality.locale : undefined\n\n options.experimentation = serverData.serverFPTIData\n ? serverData.serverFPTIData\n : undefined\n\n if (data.error) {\n options.errorField = data.error\n }\n\n return options\n}\nfunction trackClick(fptiData) {\n const options = generateOptions(fptiData)\n const fpti = {}\n // set link name\n fpti.link = options.link\n\n // set page name\n fpti.pgrp = `main:merchant-lending:loanbuilder::${options.page}::`\n fpti.page = `main:merchant-lending:loanbuilder::${options.page}::`\n fpti.pglk = `main:merchant-lending:loanbuilder::${options.component}|${options.link}`\n fpti.pgln = `main:merchant-lending:loanbuilder::${options.component}:::|${options.link}`\n fpti.client_id = 'Loanbuilder'\n if (options.locale) {\n fpti.locale = options.locale\n } else {\n fpti.locale = undefined\n }\n fpti.status = undefined\n fpti.article_search_count = undefined\n fpti.article_search_query = undefined\n fpti.message = undefined\n\n // Setting Experimentation Data\n fpti.experiment_name = options.experimentation\n ? options.experimentation.experiment_name\n : undefined\n fpti.experimentation_treatment = options.experimentation\n ? options.experimentation.experimentation_treatment\n : undefined\n fpti.se = options.experimentation ? options.experimentation.se : undefined\n fpti.st = options.experimentation ? options.experimentation.st : undefined\n fpti.xe = options.experimentation ? options.experimentation.xe : undefined\n\n fpti.encrypted_customer_id = undefined\n fpti.article_experience = undefined\n fpti.article_doc_id = undefined\n fpti.aidrk = undefined\n fpti.article_document_title = undefined\n // clearing out error props in case they exist\n fpti.erpg = undefined\n fpti.erfd = undefined\n fpti.eccd = undefined\n\n // setting component\n fpti.component = 'creditloanbldrnodeweb'\n window.PAYPAL.analytics.Analytics.prototype.recordClick({ data: fpti })\n}\n\nfunction trackPage(fptiData) {\n const options = generateOptions(fptiData)\n const fpti = {}\n fpti.pgrp = `main:merchant-lending:loanbuilder::${options.page}::`\n fpti.page = `main:merchant-lending:loanbuilder::${options.page}::`\n fpti.client_id = 'Loanbuilder'\n if (options.link) {\n fpti.link = options.link\n fpti.pglk = `main:merchant-lending:loanbuilder::${options.page}|${options.link}`\n fpti.pgln = `main:merchant-lending:loanbuilder::${options.page}:::|${options.link}`\n } else {\n fpti.link = undefined\n fpti.pglk = undefined\n fpti.pgln = undefined\n }\n // clearing out error props in case they exist\n fpti.erpg = undefined\n fpti.erfd = undefined\n fpti.eccd = undefined\n fpti.aidrk = undefined\n fpti.message = undefined\n fpti.status = undefined\n fpti.article_doc_id = undefined\n\n if (options.locale) {\n fpti.locale = options.locale\n } else {\n fpti.locale = undefined\n }\n\n // Setting Experimentation Data\n fpti.experiment_name = options.experimentation\n ? options.experimentation.experiment_name\n : undefined\n fpti.experimentation_treatment = options.experimentation\n ? options.experimentation.experimentation_treatment\n : undefined\n fpti.se = options.experimentation ? options.experimentation.se : undefined\n fpti.st = options.experimentation ? options.experimentation.st : undefined\n fpti.xe = options.experimentation ? options.experimentation.xe : undefined\n // setting component\n fpti.component = 'creditloanbldrnodeweb'\n window.PAYPAL.analytics.Analytics.prototype.recordImpression({ data: fpti })\n}\n\nfunction trackError(fptiData) {\n const options = generateOptions(fptiData)\n const fpti = {}\n // set page name\n const pageDetails = options.pageDetails\n fpti.pgrp = pageDetails\n ? pageDetails.pageGroupName\n : `main:merchant-lending:loanbuilder::${options.page}::`\n fpti.page = pageDetails\n ? pageDetails.pageName\n : `main:merchant-lending:loanbuilder::${options.page}::`\n fpti.client_id = 'Loanbuilder'\n\n if (options.errorField) {\n fpti.erpg = fpti.page\n fpti.erfd = options.errorField\n }\n window.PAYPAL.analytics.Analytics.prototype.recordImpression({ data: fpti })\n}\n\nexport { trackClick, trackPage, trackError, generateOptions }\n","import { MessageFormat } from '@paypalcorp/worldready'\n\nconst EMPTY_PLACEHOLDER_TEXT = '-'\n\nexport const getLocalizedText = (worldReady, textId) => {\n try {\n const messageFormatter = new MessageFormat(worldReady, {\n id: textId,\n })\n return messageFormatter.format()\n } catch (error) {\n return EMPTY_PLACEHOLDER_TEXT\n }\n}\n","/**\n * Grabs the data we dump from the server into the DOM and exports them as a singleton.\n * This allows us to conveniently dump server data into the dom and use this to load\n * that data into our app.\n */\n// because the way webpack is implemented, you can import this file anywhere\n// in the codebase like so:\n// import serverData from 'utils/server-data'\nimport { WorldReady } from '@paypalcorp/worldready'\nimport clientLogger from './client-logger'\n\nconst serverData = {}\n\nfunction init() {\n const dataNode = document.getElementById('server-data')\n\n if (!dataNode) {\n clientLogger.error('There was no element with the id of server-data.')\n return\n }\n\n try {\n const serverDataString = dataNode.innerHTML\n Object.assign(serverData, JSON.parse(serverDataString))\n if (dataNode.parentElement) {\n dataNode.parentElement.removeChild(dataNode) // cleanup the DOM\n }\n\n clientLogger.info('server-data loaded successfully')\n\n if (process.env.NODE_ENV !== 'test') {\n // paypal-scripts will load worldReady with content automatically during tests\n WorldReady.load(serverData.worldReady)\n }\n } catch (err) {\n clientLogger.error('server-data: load', err)\n }\n}\n\nexport default serverData\nexport { init }\n","// Imports\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(true);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".fluid-padding-top-2vw{padding-top:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-padding-top-2vw{padding-top:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.fluid-padding-bottom-2vw{padding-bottom:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-padding-bottom-2vw{padding-bottom:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.fluid-margin-top-2vw{margin-top:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-margin-top-2vw{margin-top:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.-fluid-margin-top-2vw{margin-top:calc(-1*clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem))}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.-fluid-margin-top-2vw{margin-top:calc(-1*min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem))}}.fluid-margin-bottom-2vw{margin-bottom:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-margin-bottom-2vw{margin-bottom:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.-fluid-margin-bottom-2vw{margin-bottom:calc(-1*clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem))}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.-fluid-margin-bottom-2vw{margin-bottom:calc(-1*min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem))}}.fluid-padding-top-4vw{padding-top:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-padding-top-4vw{padding-top:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.fluid-padding-bottom-4vw{padding-bottom:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-padding-bottom-4vw{padding-bottom:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.fluid-margin-top-4vw{margin-top:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-margin-top-4vw{margin-top:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.-fluid-margin-top-4vw{margin-top:calc(-1*clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem))}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.-fluid-margin-top-4vw{margin-top:calc(-1*min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem))}}.fluid-margin-bottom-4vw{margin-bottom:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-margin-bottom-4vw{margin-bottom:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.-fluid-margin-bottom-4vw{margin-bottom:calc(-1*clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem))}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.-fluid-margin-bottom-4vw{margin-bottom:calc(-1*min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem))}}.fluid-padding-top-6vw{padding-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-padding-top-6vw{padding-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.fluid-padding-bottom-6vw{padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-padding-bottom-6vw{padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.fluid-margin-top-6vw{margin-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-margin-top-6vw{margin-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.-fluid-margin-top-6vw{margin-top:calc(-1*clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem))}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.-fluid-margin-top-6vw{margin-top:calc(-1*min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem))}}.fluid-margin-bottom-6vw{margin-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-margin-bottom-6vw{margin-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.-fluid-margin-bottom-6vw{margin-bottom:calc(-1*clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem))}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.-fluid-margin-bottom-6vw{margin-bottom:calc(-1*min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem))}}.fluid-padding-top-8vw{padding-top:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-padding-top-8vw{padding-top:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.fluid-padding-bottom-8vw{padding-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-padding-bottom-8vw{padding-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.fluid-margin-top-8vw{margin-top:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-margin-top-8vw{margin-top:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.-fluid-margin-top-8vw{margin-top:calc(-1*clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem))}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.-fluid-margin-top-8vw{margin-top:calc(-1*min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem))}}.fluid-margin-bottom-8vw{margin-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-margin-bottom-8vw{margin-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.-fluid-margin-bottom-8vw{margin-bottom:calc(-1*clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem))}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.-fluid-margin-bottom-8vw{margin-bottom:calc(-1*min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem))}}.grid{--edge-rail-col--width: 0;--outer-rail-col--width: 0;--inner-rail-col--width: 1fr;--inner-cols--num: 4;--grid-gap: clamp(1rem, .7224278312361214rem + 1.1843079200592153vw, 2rem);position:relative;display:grid;grid-column-gap:var(--grid-gap);grid-row-gap:var(--grid-gap);grid-template-columns:var(--edge-rail-col--width) var(--outer-rail-col--width) repeat(var(--inner-cols--num),var(--inner-rail-col--width)) var(--outer-rail-col--width) var(--edge-rail-col--width)}@supports not (font-size: clamp(1rem,.7224278312361214rem + 1.1843079200592153vw,2rem)){.grid{--grid-gap: min(max(1rem, .7224278312361214rem + 1.1843079200592153vw), 2rem)}}.grid.grid-compact{--grid-gap: clamp(1rem, .8226111636707663rem + .7568590350047304vw, 1.5rem) !important}@supports not (font-size: clamp(1rem,.8226111636707663rem + .7568590350047304vw,1.5rem)){.grid.grid-compact{--grid-gap: min(max(1rem, .8226111636707663rem + .7568590350047304vw), 1.5rem) !important}}@media only screen and (min-width: 64rem){.grid{--inner-cols--num: 12;--edge-rail-col--width: 8rem}.grid.grid-compact{--inner-cols--num: 12;--edge-rail-col--width: 8rem;--col-width: calc((100% - calc(var(--edge-rail-col--width) * 2) - calc(var(--grid-gap) * 15)) / 12)}}@media only screen and (min-width: 120rem){.grid{--edge-rail-col--width: clamp(8rem, -13.333333333333336rem + 17.77777777777778vw, 16rem)}@supports not (font-size: clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem)){.grid{--edge-rail-col--width: min(max(8rem, -13.333333333333336rem + 17.77777777777778vw), 16rem)}}}@media only screen and (min-width: 89.5rem){.grid.grid-compact{--edge-rail-col--width: clamp(8rem, -24.278688524590166rem + 36.0655737704918vw, 19rem);--outer-rail-col--width: 1fr}@supports not (font-size: clamp(8rem,-24.278688524590166rem + 36.0655737704918vw,19rem)){.grid.grid-compact{--edge-rail-col--width: min(max(8rem, -24.278688524590166rem + 36.0655737704918vw), 19rem)}}}@media only screen and (min-width: 120rem){.grid.grid-compact{--edge-rail-col--width: 1fr;--outer-rail-col--width: 4.25rem}}@media only screen and (min-width: 107.875rem){.grid{--inner-rail-col--width: calc((83.875rem - calc((var(--inner-cols--num) - 1) * 2rem)) / var(--inner-cols--num));--outer-rail-col--width: 1fr}}@media only screen and (min-width: 89.5rem){.grid.grid-compact{--inner-rail-col--width: calc((67.5rem - calc((var(--inner-cols--num) - 1) * 1.5rem)) / var(--inner-cols--num)) !important}}.white-plate{background-color:#fff;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001435;--style-general-text-muted: #545d68;--style-general-hyperlink: #0070e0;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #c6c6c6;--style-border-color: #c6c6c6;--style-small-fill: #5bbbfc;--component-button-primary: #003087;--component-button-secondary: #ffd140;--component-button-tertiary: #ffffff;--component-button-primary-border-color: #003087;--component-inline-button: #0070e0;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #0070e0;--component-hyperlink: #0070e0;--component-hyperlink-decoration: underline;--component-hyperlink-active: #003087;--component-hyperlink-active-decoration: underline;--component-hyperlink-hover: #003087;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087}.white-plate .white-plate{background-color:#faf8f5}.blue-700-plate{background-color:#001c64;--style-headline-text: #ffffff;--style-headline-highlight-text: #ffd140;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-700-plate .blue-700-plate{background-color:#003087}.gold-plate{background-color:#ffd140;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001c64;--style-general-text-muted: rgba(0,28,100,.90196);--style-general-hyperlink: #000000;--style-fill-1: #ffffff;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #929496;--style-border-color: #929496;--style-small-fill: #929496;--component-button-primary: #003087;--component-button-secondary: #ffffff;--component-button-tertiary: #001435;--component-button-primary-border-color: #003087;--component-inline-button: #001435;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #001435;--component-hyperlink: #001435;--component-hyperlink-active: #001435;--component-hyperlink-hover: #001435;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087;--component-hyperlink-decoration: underline}.gold-plate .gold-plate{background-color:#fff}.neutral-100-plate{background-color:#faf8f5;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001435;--style-general-text-muted: #545d68;--style-general-hyperlink: #0070e0;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #c6c6c6;--style-border-color: #c6c6c6;--style-small-fill: #5bbbfc;--component-button-primary: #003087;--component-button-secondary: #ffd140;--component-button-tertiary: #faf8f5;--component-button-primary-border-color: #003087;--component-inline-button: #0070e0;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #0070e0;--component-hyperlink: #0070e0;--component-hyperlink-decoration: underline;--component-hyperlink-active: #003087;--component-hyperlink-active-decoration: underline;--component-hyperlink-hover: #003087;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087}.neutral-100-plate .neutral-100-plate{background-color:#fff}.blue-400-alt-plate{background-color:#0070e0;--style-headline-text: #ffffff;--style-headline-highlight-text: #001c64;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #001c64;--style-fill-2: #003087;--style-icon-color: #b9effc;--style-stroke-color: #5bbbfc;--style-border-color: #5bbbfc;--style-small-fill: #b9effc;--component-button-primary: #ffffff;--component-button-secondary: #003087;--component-button-tertiary: #0070e0;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #ffffff;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-400-alt-plate .blue-400-alt-plate{background-color:#003087}.blue-500-plate{background-color:#0070e0;--style-headline-text: #ffffff;--style-headline-highlight-text: #ffd140;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #ffd140;--style-fill-2: #003087;--style-icon-color: #b9effc;--style-stroke-color: #5bbbfc;--style-border-color: #5bbbfc;--style-small-fill: #b9effc;--component-button-primary: #ffffff;--component-button-secondary: #003087;--component-button-tertiary: #0070e0;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #ffffff;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-500-plate .blue-500-plate{background-color:#003087}.blue-600-plate{background-color:#003087;--style-headline-text: #ffffff;--style-headline-highlight-text: #ffd140;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-600-plate .blue-600-plate{background-color:#0070e0}.stone-plate{background-color:#f3f3f6;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001435;--style-general-text-muted: #545d68;--style-general-hyperlink: #0070e0;--style-fill-1: #003087;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #c6c6c6;--style-border-color: #c6c6c6;--style-small-fill: #5bbbfc;--component-button-primary: #003087;--component-button-secondary: #ffd140;--component-button-tertiary: #faf8f5;--component-button-primary-border-color: #003087;--component-inline-button: #0070e0;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #0070e0;--component-hyperlink: #0070e0;--component-hyperlink-active: #003087;--component-hyperlink-hover: #003087;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087;--component-hyperlink-decoration: underline}.stone-plate .stone-plate{background-color:#fff}.slate-plate{background-color:#001435;--style-headline-text: #ffffff;--style-headline-highlight-text: #0070e0;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #0070e0;--style-fill-2: #ffffff;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.slate-plate .slate-plate{background-color:#003087}.slate-gradient-plate{background:linear-gradient(180deg,#001435 43.89%,#003087 102%);--style-headline-text: #ffffff;--style-headline-highlight-text: #0070e0;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #0070e0;--style-fill-2: #ffffff;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.slate-gradient-plate .slate-gradient-plate{background-color:#003087}@media (min-width: 64rem){.slate-gradient-plate{background:linear-gradient(220deg,#001435 69.7%,#003087 101.85%)}}.body-text-size-body-large,.body-text-size-body-large-bold,.body-text-size-body,.body-text-size-body-bold,.body-text-size-caption,.body-text-size-caption-bold{color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch}.body-text-size-body-large>a,.body-text-size-body-large-bold>a,.body-text-size-body>a,.body-text-size-body-bold>a,.body-text-size-caption>a,.body-text-size-caption-bold>a{color:#0070e0;color:var(--component-hyperlink, #0070e0);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-decoration, underline);text-decoration:var(--component-hyperlink-decoration, underline)}.body-text-size-body-large>a.focus-visible,.body-text-size-body-large-bold>a.focus-visible,.body-text-size-body>a.focus-visible,.body-text-size-body-bold>a.focus-visible,.body-text-size-caption>a.focus-visible,.body-text-size-caption-bold>a.focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}.body-text-size-body-large>a:focus-visible,.body-text-size-body-large-bold>a:focus-visible,.body-text-size-body>a:focus-visible,.body-text-size-body-bold>a:focus-visible,.body-text-size-caption>a:focus-visible,.body-text-size-caption-bold>a:focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}.body-text-size-body-large>a:active,.body-text-size-body-large-bold>a:active,.body-text-size-body>a:active,.body-text-size-body-bold>a:active,.body-text-size-caption>a:active,.body-text-size-caption-bold>a:active{color:#003087;color:var(--component-hyperlink-active, #003087);text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-active-decoration, underline);text-decoration:var(--component-hyperlink-active-decoration, underline)}.body-text-size-body-large>a:hover,.body-text-size-body-large-bold>a:hover,.body-text-size-body>a:hover,.body-text-size-body-bold>a:hover,.body-text-size-caption>a:hover,.body-text-size-caption-bold>a:hover{color:#003087;color:var(--component-hyperlink-hover, #003087);text-decoration:underline}.body-text-size-body-large>strong,.body-text-size-body-large-bold>strong,.body-text-size-body>strong,.body-text-size-body-bold>strong,.body-text-size-caption>strong,.body-text-size-caption-bold>strong{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.body-text-size-body-large-bold,.body-text-size-body-bold,.body-text-size-caption-bold{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400}.body-text-size-body-large-bold>a,.body-text-size-body-bold>a,.body-text-size-caption-bold>a,.body-text-size-body-large-bold>strong,.body-text-size-body-bold>strong,.body-text-size-caption-bold>strong{font-weight:inherit}.body-text-size-body-large,.body-text-size-body,.body-text-size-caption{font-weight:400}.body-text-size-body-large>a,.body-text-size-body>a,.body-text-size-caption>a,.body-text-size-body-large>strong,.body-text-size-body>strong,.body-text-size-caption>strong{font-weight:500}.body-text-size-body-large,.body-text-size-body-large-bold{font-size:clamp(.95rem,.607142857142857rem + .5357142857142858vw,1.25rem)}@supports not (font-size: clamp(.95rem,.607142857142857rem + .5357142857142858vw,1.25rem)){.body-text-size-body-large,.body-text-size-body-large-bold{font-size:min(max(.95rem,.607142857142857rem + .5357142857142858vw),1.25rem)}}.body-text-size-body,.body-text-size-body-bold{font-size:clamp(.9339999999999999rem,.8585714285714284rem + .11785714285714297vw,1rem)}@supports not (font-size: clamp(.9339999999999999rem,.8585714285714284rem + .11785714285714297vw,1rem)){.body-text-size-body,.body-text-size-body-bold{font-size:min(max(.9339999999999999rem,.8585714285714284rem + .11785714285714297vw),1rem)}}.body-text-size-caption,.body-text-size-caption-bold{font-size:.875rem}.font-quantum-leap .body-text-size-body,.font-quantum-leap .body-text-size-body-bold,.font-quantum-leap .body-text-size-body-large,.font-quantum-leap .body-text-size-body-large-bold{line-height:1.4}span[data-nosnippet]{display:inline-block}a.html-text-renderer-link{color:#0070e0;color:var(--component-hyperlink, #0070e0);text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-decoration, underline);text-decoration:var(--component-hyperlink-decoration, underline);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}a.html-text-renderer-link.focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}a.html-text-renderer-link:focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}a.html-text-renderer-link:active{color:#003087;color:var(--component-hyperlink-active, #003087);text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-active-decoration, underline);text-decoration:var(--component-hyperlink-active-decoration, underline)}a.html-text-renderer-link:hover{color:#003087;color:var(--component-hyperlink-hover, #003087);text-decoration:underline}.disclosure{background:transparent}.disclosure-item,.disclosure-paragraph{padding-top:.5rem;max-width:none}.disclosure-item a,.disclosure-paragraph a{color:#0070e0;color:var(--component-link, #0070e0);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400;-webkit-text-decoration:var(--component-hyperlink-decoration);text-decoration:var(--component-hyperlink-decoration)}.disclosure-item sup,.disclosure-paragraph sup{min-width:.75rem;display:inline-block}.disclosure-text-color{color:#001c64}.disclosure-item.multi-line-text{display:flex;flex-direction:row;flex-wrap:nowrap}[dir=ltr] .disclosure-item.multi-line-text .multi-line-text-sup{text-align:left}[dir=rtl] .disclosure-item.multi-line-text .multi-line-text-sup{text-align:right}.disclosure-item.multi-line-text .multi-line-text-sup{font-size:.6rem}.disclosure-item.multi-line-text .multi-line-text-sup sup{top:0}.disclosure-item.multi-line-text .multi-line-text-paragraph{margin:0}[dir=ltr] .disclosure-item.multi-line-text-wo-sup{margin-left:.75rem}[dir=rtl] .disclosure-item.multi-line-text-wo-sup{margin-right:.75rem}.graphic-lottie-lottie-player{display:flex;align-items:center;justify-content:center;position:absolute;top:0;height:var(--height);min-height:var(--min-height);width:calc(.25px + var(--height) * var(--svg-ratio));min-width:calc(var(--min-height) * var(--svg-ratio));-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.graphic-lottie-lottie-player svg{z-index:-1;position:absolute;top:0;height:var(--svg-height);width:100%;background:var(--color-svg-background);-webkit-backface-visibility:hidden;backface-visibility:hidden;shape-rendering:auto;aspect-ratio:16 / 9;transform:none!important}@media only screen and (max-width: 63.9375rem){.graphic-lottie-lottie-player svg{transform:translate(var(--graphic-offset))!important}}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(255,255,255)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#ffffff\\\"]{fill:var(--color-background)}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(0,0,255)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#0000ff\\\"]{fill:var(--color-overlap)}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(255,0,0)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#ff0000\\\"]{fill:var(--color-secondary)}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(0,255,0)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#00ff00\\\"]{fill:var(--color-primary)}.shape-child{z-index:3}.section-wrapper-graphics-container{position:absolute;top:-.03125rem;bottom:-.03125rem;width:100%;overflow:hidden}.section-wrapper{max-width:100vw;overflow:hidden}.icon-button-wrapper{background-color:transparent;border:none;border-radius:50%;display:inline-flex;padding:initial;box-sizing:inherit;display:flex;align-items:center;cursor:pointer}.icon-button-circle-inverse{fill:#fff}.icon-button-close-incerse{fill:#001c64}[dir=ltr] .modal-overlay{left:0}[dir=rtl] .modal-overlay{right:0}.modal-overlay{position:fixed;top:0;z-index:1040;width:100vw;height:100vh;background-color:#001435b3;opacity:.7}[dir=ltr] .modal-modal{left:0}[dir=rtl] .modal-modal{right:0}.modal-modal{position:fixed;top:0;display:flex;flex-direction:column;justify-content:space-between;z-index:1050;background:transparent;height:100vh;overflow-x:hidden;overflow-y:auto;outline:0}@supports not (aspect-ratio: auto){.modal-modal iframe{position:absolute;transform:translate(-50%,-50%);left:50%;top:50%;height:100%}}[dir=ltr] .modal-header{padding-right:.5rem}[dir=rtl] .modal-header{padding-left:.5rem}.modal-header{display:flex;justify-content:flex-end;padding-top:.5rem}.modal-body{display:flex;align-items:center;justify-content:center;width:100vw}@supports not (aspect-ratio: auto){.modal-body{padding-top:56.25%;position:relative;overflow:hidden}}.modal-footer{height:6vh;visibility:hidden}@media (min-width: 64rem){[dir=ltr] .modal-header{padding-right:1rem}[dir=rtl] .modal-header{padding-left:1rem}.modal-header{padding-top:1rem;padding-bottom:.625rem}@supports not (aspect-ratio: auto){.modal-body{padding-top:42.25%}}}@media (min-width: 87.875rem){[dir=ltr] .modal-header{padding-right:1.5rem}[dir=rtl] .modal-header{padding-left:1.5rem}.modal-header{padding-top:1.5rem}}.youtube-video.youtube-video-rounded-dimensions{width:95vw;border-radius:1rem}@supports (aspect-ratio: auto){.youtube-video.youtube-video-rounded-dimensions{aspect-ratio:16/9}}@media (min-width: 41.0625rem){.youtube-video.youtube-video-rounded-dimensions{border-radius:1.5rem}}@media (min-width: 64rem){.youtube-video.youtube-video-rounded-dimensions{max-width:85vw;max-height:85vh}}@media (min-width: 87.875rem){.youtube-video.youtube-video-rounded-dimensions{max-width:75vw;max-height:85vh}}.youtube-video>iframe{border:0;width:100%;height:100%;border-radius:inherit}[dir=ltr] .inline-play-button{text-align:left}[dir=rtl] .inline-play-button{text-align:right}.inline-play-button{background-color:transparent;border:transparent;position:relative;color:var(--component-inline-button);padding:.375rem 0;border-radius:0;font-family:PayPalOpen-Bold;font-size:1rem;line-height:2rem;text-decoration:none;cursor:pointer;outline:none;display:inline-flex;align-items:center;justify-content:center}.inline-play-button.inline-play-button-theme{color:var(--component-inline-button)}[dir=ltr] .inline-play-button .inline-play-button-play-svg,[dir=ltr] .inline-play-button .inline-play-button-replay-svg{margin-right:.75rem}[dir=rtl] .inline-play-button .inline-play-button-play-svg,[dir=rtl] .inline-play-button .inline-play-button-replay-svg{margin-left:.75rem}.inline-play-button .inline-play-button-play-svg,.inline-play-button .inline-play-button-replay-svg{width:2.5rem;height:2.5rem;vertical-align:middle}.inline-play-button .inline-play-button-circle{fill:var(--component-inline-play-fill-1)}.inline-play-button .inline-play-button-triangle{fill:var(--component-inline-play-fill-2)}.inline-play-button:hover .inline-play-button-circle,.inline-play-button:focus .inline-play-button-circle{fill:var(--component-inline-play-fill-1-hover)}.inline-play-button:active .inline-play-button-circle{fill:var(--component-inline-play-fill-1-active)}.inline-play-button:focus:after,.inline-play-button:focus:before{width:calc(100% + 1rem);left:-.5rem;content:\\\"\\\";position:absolute;top:0rem;border:.1875rem solid var(--style-fill-2);border-radius:.2rem;text-indent:0rem;height:calc(100% + -0rem);pointer-events:none}.inline-play-button.inline-play-button-theme:focus:after{border:.1875rem solid var(--component-inline-play-fill-1-focus)}.inline-play-button:focus:before{content:\\\"\\\";position:absolute;top:0rem;border-radius:.188rem;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + -0rem);pointer-events:none}.inline-play-button:hover,.inline-play-button:focus{text-decoration:none}.inline-play-button-without-arrow:hover{text-decoration:underline}.arrow-icon-active-hover:not(:focus):hover .arrow-icon-theme>svg{transform:translate(.25rem)}.arrow-icon-active-hover:active .arrow-icon-theme>svg{transition:.3s cubic-bezier(.22,1,.36,1);transition-property:transform,opacity;will-change:transform,opacity;transform:translate(.25rem)}.arrow-icon{font-size:1rem;line-height:1rem;display:inline-block}[dir=rtl] .arrow-icon{transform:scaleX(-1)}.arrow-icon.arrow-icon-stroke{stroke:var(--component-inline-button)}.arrow-icon.arrow-icon-theme{position:relative;min-width:2.5rem;min-height:1.75rem}.arrow-icon.arrow-icon-theme>svg{position:absolute;transition:all .3s cubic-bezier(.22,1,.36,1);width:1.75rem;height:1rem;top:.4rem;left:.4rem;z-index:0}.arrow-icon.arrow-icon-theme>span.arrow-icon-circle{background:var(--component-inline-button);opacity:.2;border-radius:50%;display:inline-block;height:1.75rem;width:1.75rem;padding:.119rem .9rem;transition:all .3s cubic-bezier(.22,1,.36,1)}.arrow-icon.arrow-icon-theme.arrow-icon-size-small{min-width:1.875rem;min-height:1.3125rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-small>svg{width:1.25rem;height:.75rem;top:.3rem;left:.2rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-small>span.arrow-icon-circle{margin-left:-1rem;border-radius:50%;padding:.033rem .66rem;height:1.313rem;width:1.313rem;right:.1rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-extra-large{min-width:3.5rem;min-height:2.625rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-extra-large>svg{height:2rem;width:2.5rem;top:.6rem;left:.3rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-extra-large>span.arrow-icon-circle{margin-left:-1.9rem;border-radius:50%;height:2.6rem;width:2.6rem;right:0}.arrow-icon.arrow-icon-theme>span.arrow-icon-circle{position:absolute;bottom:0;right:-.1rem}.arrow-icon.arrow-icon-theme>svg>path{stroke:var(--component-inline-button)}.arrow-icon.arrow-icon-theme>span.arrow-icon-circle{background:var(--component-inline-button);opacity:.2}.inline-button{background-color:transparent;border:transparent;position:relative;color:var(--component-inline-button);padding:.475rem 0;border-radius:0;font-family:PayPalOpen-Bold;font-size:1rem;line-height:1.625rem;font-weight:400;text-decoration:none;cursor:pointer;outline:none;display:inline-block}.inline-button .text-with-arrow{display:inline-flex;align-items:center;justify-content:center;-webkit-hyphens:auto;hyphens:auto}.inline-button.inline-button-size-small{font-size:.875rem;line-height:1.5rem}.inline-button.inline-button-theme{color:var(--component-inline-button)}[dir=ltr] .inline-button:focus:before{left:-.5rem}[dir=rtl] .inline-button:focus:before{right:-.5rem}.inline-button:focus:before{width:calc(100% + 1rem);content:\\\"\\\";position:absolute;top:0;border:.1875rem solid var(--component-inline-button-focus-border);border-radius:.188rem;box-shadow:0 0 0 .375rem var(--component-inline-button-focus-shadow);text-indent:0rem;height:100%;pointer-events:none}.inline-button.inline-button-theme:focus:after{border:.1875rem solid var(--component-inline-button-focus-border)}.inline-button:hover,.inline-button:focus{text-decoration:none}.inline-button-without-arrow:hover{text-decoration:underline}body .button-type-primary,body .button-type-primary:visited{font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:var(--component-button-primary);color:var(--component-button-text-primary);border-color:var(--component-button-primary-border-color)}body .button-type-primary:hover{background-color:var(--component-inline-play-fill-1-hover);color:var(--component-button-text-primary);border-color:var(--component-inline-play-fill-1-hover)}body .button-type-primary:active{background-color:var(--style-general-text);color:var(--component-button-text-primary)}body .button-type-primary:focus{background-color:var(--component-button-primary);color:var(--component-button-text-primary);border-radius:100px}body .button-type-secondary,body .button-type-secondary:visited{font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:var(--component-button-bg-tertiary);color:var(--component-button-text-tertiary);border-color:var(--component-button-border-tertiary)}body .button-type-secondary:hover{color:var(--component-inline-play-fill-1-hover);border-color:var(--component-inline-play-fill-1-hover)}body .button-type-secondary:active{background-color:var(--component-inline-button-active);color:var(--component-inline-play-fill-1-active);border-color:var(--component-inline-play-fill-1-active)}body .button-type-secondary:focus{background-color:var(--component-button-bg-tertiary);color:var(--component-inline-play-fill-1);border-color:var(--component-inline-button);border-radius:100px}body .button-type-primary:hover,body .button-type-primary:active,body .button-type-primary:focus,body .button-type-secondary:hover,body .button-type-secondary:active,body .button-type-secondary:focus{text-decoration:none}body .button-type-tertiary{color:var(--component-link);font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;text-decoration:none}body .button-type-tertiary:hover{text-decoration:underline}body .button-type-tertiary:focus{text-decoration:underline}body .button-type-branded{font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:var(--component-button-secondary);color:var(--component-button-text-secondary)}body .button-type-branded:hover{background-color:#ffe888}body .button-type-branded:active{background-color:#ff9100}body .blue-700-plate .button-type-primary:active{color:var(--component-button-tertiary)}.grid-compact .button-group{gap:.5rem}.button-group{display:flex;flex-direction:column;gap:1rem}.button-group.button-group-legal-position-top a{display:inline-block}[dir=ltr] .button-group.button-group-legal-position-top.button-group-align-start{text-align:left}[dir=rtl] .button-group.button-group-legal-position-top.button-group-align-start{text-align:right}.button-group.button-group-legal-position-top.button-group-align-center{text-align:center}.button-group.button-group-legal-position-top.button-group-align-center .button-group-legal-text{justify-content:center}[dir=ltr] .button-group.button-group-legal-position-top.button-group-align-end{text-align:right}[dir=rtl] .button-group.button-group-legal-position-top.button-group-align-end{text-align:left}.button-group.button-group-legal-position-top.button-group-align-end .button-group-legal-text{justify-content:end}.button-group.button-group-legal-position-bottom a,.button-group.button-group-legal-position-bottom button{display:inline-block}[dir=ltr] .button-group.button-group-legal-position-bottom.button-group-align-start{text-align:left}[dir=rtl] .button-group.button-group-legal-position-bottom.button-group-align-start{text-align:right}.button-group.button-group-legal-position-bottom.button-group-align-center{text-align:center}.button-group.button-group-legal-position-bottom.button-group-align-center .button-group-legal-text{justify-content:center}[dir=ltr] .button-group.button-group-legal-position-bottom.button-group-align-end{text-align:right}[dir=rtl] .button-group.button-group-legal-position-bottom.button-group-align-end{text-align:left}.button-group.button-group-legal-position-bottom.button-group-align-end .button-group-legal-text{justify-content:end}.button-group .button-group-alignment-start,.button-group .button-group-alignment-center,.button-group .button-group-alignment-end{display:inline-flex;gap:1rem;flex-wrap:wrap}.button-group .button-group-alignment-start+.button-group-legal-text.disclosure,.button-group .button-group-alignment-center+.button-group-legal-text.disclosure,.button-group .button-group-alignment-end+.button-group-legal-text.disclosure{margin-top:0}[dir=ltr] .button-group a[class*=appstore]{margin-right:1rem}[dir=rtl] .button-group a[class*=appstore]{margin-left:1rem}[dir=ltr] .button-group a[class*=appstore]:last-of-type{margin-right:0}[dir=rtl] .button-group a[class*=appstore]:last-of-type{margin-left:0}.button-group .button-group-legal-text{display:flex}.button-group .button-group-legal-text .disclosure-item,.button-group .button-group-legal-text .disclosure-paragraph{padding-top:0;max-width:60ch}.button-group-alignment-start{justify-content:start}.button-group-alignment-center{justify-content:center}.button-group-alignment-end{justify-content:end}.image-frame{position:relative}.image-frame.image-frame-rounded-corners{overflow:hidden;border-radius:clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)}@supports not (font-size: clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)){.image-frame.image-frame-rounded-corners{border-radius:min(max(1.5rem,.6049046321525886rem + 2.17983651226158vw),2rem)}}.image-frame picture{line-height:0;display:block}.image-frame img{max-width:100%;-o-object-fit:cover;object-fit:cover}.image-frame img.image-frame-img-v-align-top{-o-object-position:top;object-position:top}.image-frame img.image-frame-img-v-align-bottom{-o-object-position:bottom;object-position:bottom}.qr-code-image-container{overflow:hidden;display:inline-block}.qr-code.qr-code-large .qr-code-image-container{padding:.5rem .5rem .25rem;box-shadow:4px 4px 28px 6px #00000024;border-radius:.5rem}.qr-code.qr-code-large .qr-code-image-container svg{border-radius:.5rem}.qr-code-fallback-small{width:5.375rem;height:5.375rem}.qr-code-fallback-small img,.qr-code-fallback-large img{width:100%}.app-download-group .app-download-group-row{display:none}.app-download-group .app-download-group-row-mobile,.app-download-group .app-download-group-row-no-cta-mobile{display:flex}.app-download-group .app-download-group-row-align-center{justify-content:center;text-align:center}.app-download-group .app-download-group-row-align-end{justify-content:flex-end}.app-download-group .app-download-group-disclaimer{padding-top:0}.app-download-group .app-download-group-disclaimer>*:first-child{margin-bottom:0;padding-top:0}.app-download-group .app-download-group-cta-sms-loading{opacity:.7;pointer-events:none}.app-download-group .app-download-group-col{flex:1}.app-download-group .app-download-group-text{font-size:1rem;line-height:1.625rem;margin-bottom:1.5rem}.app-download-group .app-download-group-image-col,.app-download-group .app-download-group-image-container{display:none}.app-download-group .app-download-group-phone-input-row{width:100%}.app-download-group .app-download-group-phone-input-wrapper{width:100%;max-width:24.25rem}.app-download-group .app-download-group-phone-input{display:flex;align-items:center;flex-direction:column;width:100%}.app-download-group .app-download-group-phone-input>input,.app-download-group .app-download-group-phone-input label{max-width:24.25rem}.app-download-group .app-download-group-phone-input div[id^=message_text-input]{color:var(--style-general-text)}.app-download-group .app-download-group-cta-desktop-container{margin-top:1rem;min-width:9.25rem}.app-download-group .app-download-group-disclaimer{font-size:.875rem;line-height:1.375rem;margin-top:1.5rem;max-width:21.25rem;margin-bottom:0}.app-download-group .app-download-group-success-msg-container{background-color:#0f8514;border-radius:.75rem;padding:1rem;max-width:23rem;color:#fff;display:flex;width:100%}[dir=ltr] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{margin-left:.625rem}[dir=rtl] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{margin-right:.625rem}[dir=ltr] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{text-align:left}[dir=rtl] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{text-align:right}.app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{font-size:1.125rem;line-height:1.5rem;color:#fff}.app-download-group .app-download-group-qr-row{display:flex}.app-download-group .app-download-group-qr-row .app-download-group-content-col{flex:1}.app-download-group-row-align-start .app-download-group-phone-input{max-width:24.25rem;align-items:flex-start}.app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:2rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:2rem}.app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-top:0;height:4rem;display:flex;flex-direction:column;justify-content:center}.app-download-group-row-align-center .app-download-group-col{display:flex;align-items:center;justify-content:center;flex-direction:column}.app-download-group-row-align-center .app-download-group-text{margin-bottom:1rem}.app-download-group-row-align-center .app-download-group-qr-row .app-download-group-content-col{align-items:center}.app-download-group-row-align-center .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:center}[dir=ltr] .app-download-group-row-align-end{text-align:right}[dir=rtl] .app-download-group-row-align-end{text-align:left}.app-download-group-row-align-end{justify-content:flex-end}.app-download-group-row-align-end .app-download-group-qr-row{flex-direction:row-reverse}.app-download-group-row-align-end .app-download-group-phone-input{max-width:24.25rem;align-items:flex-end}.app-download-group-row-align-end .app-download-group-disclaimer{float:end}.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-content-col,.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:flex-end}.app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-content-col{justify-content:end}.app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-content-col .app-download-group-cta-desktop-container{margin-top:0}.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:row-reverse;align-items:flex-start}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:2rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:2rem}.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-top:0;height:4rem;display:flex;flex-direction:column;justify-content:center}[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col{border-right:none}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col,[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col{border-left:none}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col{border-right:none}.app-download-group-variant-qr-and-sms .app-download-group-no-image-col .app-download-group-disclaimer{width:95%;max-width:35rem}.app-download-group-variant-qr-and-sms .app-download-group-phone-input>input{padding:1.5625rem .6875rem .5625rem}.app-download-group-variant-qr-and-sms .app-download-group-phone-input>input:focus{padding:1.5625rem .6875rem .5625rem}.app-download-group-variant-qr-and-sms .app-download-group-phone-input>input:focus~label{top:.25rem}@media (max-width: 41rem){.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:flex-start}[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container,[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:0}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container,[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:0}.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-top:1rem;height:auto;flex-wrap:wrap;flex-direction:row;align-items:flex-start;justify-content:flex-start;gap:.75rem;max-width:calc(100% + .75rem)}.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container a,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container a,.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container button,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container button{flex:0 1 auto}.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:flex-end}[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:0}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:0}}@media (min-width: 64rem){.app-download-group .app-download-group-row{display:flex}.app-download-group .app-download-group-row-mobile{display:none}.app-download-group .app-download-group-image-col{display:flex}.app-download-group .app-download-group-cta-desktop-container{display:flex;flex-wrap:wrap;align-items:flex-start;gap:.75rem;max-width:calc(100% + .75rem)}.app-download-group .app-download-group-cta-desktop-container a,.app-download-group .app-download-group-cta-desktop-container button{flex:0 1 auto}.app-download-group .app-download-group-image-container{display:flex}.app-download-group .app-download-group-image-container>img{min-height:7.875rem;min-width:7.875rem;max-height:7.875rem;max-width:7.875rem}.app-download-group .app-download-group-qr-row-qr-code-only .app-download-group-content-col{display:flex;align-items:center}[dir=ltr] .app-download-group-row-align-start .app-download-group-image-col{border-right:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-group-row-align-start .app-download-group-image-col{border-left:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-right:1rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-left:1rem}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-right:1rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-left:1rem}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-right:4rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-left:4rem}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-right:4rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-left:4rem}.app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-content-col .app-download-group-cta-desktop-container{margin-top:0}.app-download-group-row-align-center .app-download-group-image-container{margin-bottom:1.5rem}.app-download-group-row-align-center .app-download-group-cta-desktop-container{justify-content:center}[dir=ltr] .app-download-group-row-align-end .app-download-group-image-col{border-left:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-group-row-align-end .app-download-group-image-col{border-right:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-left:1rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-right:1rem}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-left:1rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-right:1rem}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-left:4rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-right:4rem}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-left:4rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-right:4rem}.app-download-group-variant-qr-code-only{min-height:auto}.app-download-group-variant-qr-code-only .app-download-group-text{margin-bottom:0;margin-bottom:1.5rem}.app-download-group-variant-qr-code-only .app-download-group-cta-desktop-container{margin-top:0}.app-download-group-variant-qr-code-only .app-download-group-no-cta-col .app-download-group-text{max-width:15rem}.app-download-group-variant-qr-code-only .app-download-group-row-align-center{padding:0 25%}.app-download-group-variant-qr-code-only .app-download-group-row-align-center .app-download-group-image-container{margin-bottom:0}.app-download-group-variant-qr-code-only .app-download-group-row-align-center .app-download-group-cta-desktop-container{margin-top:2rem}.app-download-group-variant-qr-code-only .app-download-group-row-align-end .app-download-group-no-cta-col{display:flex;flex-direction:column;align-items:flex-end}.app-download-group-variant-qr-and-sms{min-height:18rem}.app-download-group-no-image-variant-qr-and-sms{min-height:13.125rem}}.heading-text-size-display-0{font-size:clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem)){.heading-text-size-display-0{font-size:min(max(2.88rem,-2.3428571428571434rem + 8.160714285714286vw),7.45rem)}}.heading-text-size-display-0 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-display-1{font-size:clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem)){.heading-text-size-display-1{font-size:min(max(2.566rem,-1.3128571428571432rem + 6.060714285714286vw),5.96rem)}}.heading-text-size-display-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-display-2{font-size:clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.02em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem)){.heading-text-size-display-2{font-size:min(max(2.281rem,-.5614285714285714rem + 4.441294642857143vw),4.768125rem)}}.heading-text-size-display-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-1{font-size:clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem)){.heading-text-size-headline-1{font-size:min(max(2.566rem,-1.3128571428571432rem + 6.060714285714286vw),5.96rem)}}.heading-text-size-headline-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-2{font-size:clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.02em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem)){.heading-text-size-headline-2{font-size:min(max(2.281rem,-.5614285714285714rem + 4.441294642857143vw),4.768125rem)}}.heading-text-size-headline-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-3{font-size:clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.015em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem)){.heading-text-size-headline-3{font-size:min(max(2.027rem,-.016428571428571015rem + 3.1928571428571426vw),3.815rem)}}.heading-text-size-headline-3 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-4{font-size:clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.01em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem)){.heading-text-size-headline-4{font-size:min(max(1.802rem,.37342857142857144rem + 2.232142857142857vw),3.052rem)}}.heading-text-size-headline-4 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-5{font-size:clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.005em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem)){.heading-text-size-headline-5{font-size:min(max(1.602rem,.6431428571428576rem + 1.4982142857142853vw),2.441rem)}}.heading-text-size-headline-5 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-6{font-size:clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem)){.heading-text-size-headline-6{font-size:min(max(1.424rem,.8194285714285712rem + .9446428571428575vw),1.953rem)}}.heading-text-size-headline-6 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-7{font-size:clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem)){.heading-text-size-headline-7{font-size:min(max(1.266rem,.9265714285714286rem + .5303571428571427vw),1.563rem)}}.heading-text-size-headline-7 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-title{font-size:clamp(1rem,.7142857142857143rem + .4464285714285714vw,1.25rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.5;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1rem,.7142857142857143rem + .4464285714285714vw,1.25rem)){.heading-text-size-title{font-size:min(max(1rem,.7142857142857143rem + .4464285714285714vw),1.25rem)}}.heading-text-size-title sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-0{font-size:clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem)){.grid-compact .heading-text-size-display-0{font-size:min(max(2.88rem,-2.3428571428571434rem + 8.160714285714286vw),7.45rem)}}.grid-compact .heading-text-size-display-0 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-1{font-size:clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem)){.grid-compact .heading-text-size-display-1{font-size:min(max(2.566rem,-1.3128571428571432rem + 6.060714285714286vw),5.96rem)}}.grid-compact .heading-text-size-display-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-2{font-size:clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.02em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem)){.grid-compact .heading-text-size-display-2{font-size:min(max(2.281rem,-.5614285714285714rem + 4.441294642857143vw),4.768125rem)}}.grid-compact .heading-text-size-display-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-1{font-size:clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.015em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem)){.grid-compact .heading-text-size-headline-1{font-size:min(max(2.027rem,-.016428571428571015rem + 3.1928571428571426vw),3.815rem)}}.grid-compact .heading-text-size-headline-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-2{font-size:clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.01em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem)){.grid-compact .heading-text-size-headline-2{font-size:min(max(1.802rem,.37342857142857144rem + 2.232142857142857vw),3.052rem)}}.grid-compact .heading-text-size-headline-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-3{font-size:clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.005em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem)){.grid-compact .heading-text-size-headline-3{font-size:min(max(1.602rem,.6431428571428576rem + 1.4982142857142853vw),2.441rem)}}.grid-compact .heading-text-size-headline-3 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-4{font-size:clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.3;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem)){.grid-compact .heading-text-size-headline-4{font-size:min(max(1.424rem,.8194285714285712rem + .9446428571428575vw),1.953rem)}}.grid-compact .heading-text-size-headline-4 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-5{font-size:clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.3;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem)){.grid-compact .heading-text-size-headline-5{font-size:min(max(1.266rem,.9265714285714286rem + .5303571428571427vw),1.563rem)}}.grid-compact .heading-text-size-headline-5 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-6,.grid-compact .heading-text-size-headline-7{font-size:clamp(1.125rem,.8392857142857143rem + .4464285714285714vw,1.375rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.3;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.125rem,.8392857142857143rem + .4464285714285714vw,1.375rem)){.grid-compact .heading-text-size-headline-6,.grid-compact .heading-text-size-headline-7{font-size:min(max(1.125rem,.8392857142857143rem + .4464285714285714vw),1.375rem)}}.grid-compact .heading-text-size-headline-6 sup,.grid-compact .heading-text-size-headline-7 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-0>a,.grid-compact .heading-text-size-display-1>a,.grid-compact .heading-text-size-display-2>a{color:var(--style-general-hyperlink);text-decoration:none;font-weight:500;position:relative}.grid-compact .heading-text-size-display-0>a:not(:focus):hover,.grid-compact .heading-text-size-display-1>a:not(:focus):hover,.grid-compact .heading-text-size-display-2>a:not(:focus):hover{text-decoration:underline}.grid-compact .heading-text-size-display-0>a.focus-visible,.grid-compact .heading-text-size-display-1>a.focus-visible,.grid-compact .heading-text-size-display-2>a.focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.grid-compact .heading-text-size-display-0>a:focus-visible,.grid-compact .heading-text-size-display-1>a:focus-visible,.grid-compact .heading-text-size-display-2>a:focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.grid-compact .heading-text-size-display-0>a.focus-visible:after,.grid-compact .heading-text-size-display-1>a.focus-visible:after,.grid-compact .heading-text-size-display-2>a.focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.grid-compact .heading-text-size-display-0>a:focus-visible:after,.grid-compact .heading-text-size-display-1>a:focus-visible:after,.grid-compact .heading-text-size-display-2>a:focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.grid-compact .heading-text-size-display-0>b,.grid-compact .heading-text-size-display-1>b,.grid-compact .heading-text-size-display-2>b,.grid-compact .heading-text-size-display-0 strong,.grid-compact .heading-text-size-display-1 strong,.grid-compact .heading-text-size-display-2 strong,.grid-compact .heading-text-size-display-0 em,.grid-compact .heading-text-size-display-1 em,.grid-compact .heading-text-size-display-2 em{font-style:normal;font-weight:400;color:var(--style-headline-highlight-text)}[dir=ltr] .grid-compact .heading-text-size-display-0 sup,[dir=ltr] .grid-compact .heading-text-size-display-1 sup,[dir=ltr] .grid-compact .heading-text-size-display-2 sup{right:0}[dir=rtl] .grid-compact .heading-text-size-display-0 sup,[dir=rtl] .grid-compact .heading-text-size-display-1 sup,[dir=rtl] .grid-compact .heading-text-size-display-2 sup{left:0}[dir=ltr] .grid-compact .heading-text-size-display-0 sup,[dir=ltr] .grid-compact .heading-text-size-display-1 sup,[dir=ltr] .grid-compact .heading-text-size-display-2 sup{padding-left:.1em}[dir=rtl] .grid-compact .heading-text-size-display-0 sup,[dir=rtl] .grid-compact .heading-text-size-display-1 sup,[dir=rtl] .grid-compact .heading-text-size-display-2 sup{padding-right:.1em}.grid-compact .heading-text-size-display-0 sup,.grid-compact .heading-text-size-display-1 sup,.grid-compact .heading-text-size-display-2 sup{font-size:.45em;position:relative;top:-.9em;vertical-align:baseline}.grid-compact .heading-text-size-headline-1 sup,.grid-compact .heading-text-size-headline-2 sup{font-size:.5em;top:-.75em}.heading-text-size-display-0>a,.heading-text-size-display-1>a,.heading-text-size-display-2>a,.heading-text-size-headline-1>a,.heading-text-size-headline-2>a,.heading-text-size-headline-3>a,.heading-text-size-headline-4>a,.heading-text-size-headline-5>a,.heading-text-size-headline-6>a,.heading-text-size-headline-7>a{color:var(--style-general-hyperlink);text-decoration:none;font-weight:500;position:relative}.heading-text-size-display-0>a:not(:focus):hover,.heading-text-size-display-1>a:not(:focus):hover,.heading-text-size-display-2>a:not(:focus):hover,.heading-text-size-headline-1>a:not(:focus):hover,.heading-text-size-headline-2>a:not(:focus):hover,.heading-text-size-headline-3>a:not(:focus):hover,.heading-text-size-headline-4>a:not(:focus):hover,.heading-text-size-headline-5>a:not(:focus):hover,.heading-text-size-headline-6>a:not(:focus):hover,.heading-text-size-headline-7>a:not(:focus):hover{text-decoration:underline}.heading-text-size-display-0>a.focus-visible,.heading-text-size-display-1>a.focus-visible,.heading-text-size-display-2>a.focus-visible,.heading-text-size-headline-1>a.focus-visible,.heading-text-size-headline-2>a.focus-visible,.heading-text-size-headline-3>a.focus-visible,.heading-text-size-headline-4>a.focus-visible,.heading-text-size-headline-5>a.focus-visible,.heading-text-size-headline-6>a.focus-visible,.heading-text-size-headline-7>a.focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.heading-text-size-display-0>a:focus-visible,.heading-text-size-display-1>a:focus-visible,.heading-text-size-display-2>a:focus-visible,.heading-text-size-headline-1>a:focus-visible,.heading-text-size-headline-2>a:focus-visible,.heading-text-size-headline-3>a:focus-visible,.heading-text-size-headline-4>a:focus-visible,.heading-text-size-headline-5>a:focus-visible,.heading-text-size-headline-6>a:focus-visible,.heading-text-size-headline-7>a:focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.heading-text-size-display-0>a.focus-visible:after,.heading-text-size-display-1>a.focus-visible:after,.heading-text-size-display-2>a.focus-visible:after,.heading-text-size-headline-1>a.focus-visible:after,.heading-text-size-headline-2>a.focus-visible:after,.heading-text-size-headline-3>a.focus-visible:after,.heading-text-size-headline-4>a.focus-visible:after,.heading-text-size-headline-5>a.focus-visible:after,.heading-text-size-headline-6>a.focus-visible:after,.heading-text-size-headline-7>a.focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.heading-text-size-display-0>a:focus-visible:after,.heading-text-size-display-1>a:focus-visible:after,.heading-text-size-display-2>a:focus-visible:after,.heading-text-size-headline-1>a:focus-visible:after,.heading-text-size-headline-2>a:focus-visible:after,.heading-text-size-headline-3>a:focus-visible:after,.heading-text-size-headline-4>a:focus-visible:after,.heading-text-size-headline-5>a:focus-visible:after,.heading-text-size-headline-6>a:focus-visible:after,.heading-text-size-headline-7>a:focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.heading-text-size-display-0>b,.heading-text-size-display-1>b,.heading-text-size-display-2>b,.heading-text-size-headline-1>b,.heading-text-size-headline-2>b,.heading-text-size-headline-3>b,.heading-text-size-headline-4>b,.heading-text-size-headline-5>b,.heading-text-size-headline-6>b,.heading-text-size-headline-7>b,.heading-text-size-display-0 strong,.heading-text-size-display-1 strong,.heading-text-size-display-2 strong,.heading-text-size-headline-1 strong,.heading-text-size-headline-2 strong,.heading-text-size-headline-3 strong,.heading-text-size-headline-4 strong,.heading-text-size-headline-5 strong,.heading-text-size-headline-6 strong,.heading-text-size-headline-7 strong,.heading-text-size-display-0 em,.heading-text-size-display-1 em,.heading-text-size-display-2 em,.heading-text-size-headline-1 em,.heading-text-size-headline-2 em,.heading-text-size-headline-3 em,.heading-text-size-headline-4 em,.heading-text-size-headline-5 em,.heading-text-size-headline-6 em,.heading-text-size-headline-7 em{font-style:normal;font-weight:400;color:var(--style-headline-highlight-text)}[dir=ltr] .heading-text-size-display-0 sup,[dir=ltr] .heading-text-size-display-1 sup,[dir=ltr] .heading-text-size-display-2 sup,[dir=ltr] .heading-text-size-headline-1 sup,[dir=ltr] .heading-text-size-headline-2 sup,[dir=ltr] .heading-text-size-headline-3 sup,[dir=ltr] .heading-text-size-headline-4 sup,[dir=ltr] .heading-text-size-headline-5 sup,[dir=ltr] .heading-text-size-headline-6 sup,[dir=ltr] .heading-text-size-headline-7 sup{right:0}[dir=rtl] .heading-text-size-display-0 sup,[dir=rtl] .heading-text-size-display-1 sup,[dir=rtl] .heading-text-size-display-2 sup,[dir=rtl] .heading-text-size-headline-1 sup,[dir=rtl] .heading-text-size-headline-2 sup,[dir=rtl] .heading-text-size-headline-3 sup,[dir=rtl] .heading-text-size-headline-4 sup,[dir=rtl] .heading-text-size-headline-5 sup,[dir=rtl] .heading-text-size-headline-6 sup,[dir=rtl] .heading-text-size-headline-7 sup{left:0}[dir=ltr] .heading-text-size-display-0 sup,[dir=ltr] .heading-text-size-display-1 sup,[dir=ltr] .heading-text-size-display-2 sup,[dir=ltr] .heading-text-size-headline-1 sup,[dir=ltr] .heading-text-size-headline-2 sup,[dir=ltr] .heading-text-size-headline-3 sup,[dir=ltr] .heading-text-size-headline-4 sup,[dir=ltr] .heading-text-size-headline-5 sup,[dir=ltr] .heading-text-size-headline-6 sup,[dir=ltr] .heading-text-size-headline-7 sup{padding-left:.1em}[dir=rtl] .heading-text-size-display-0 sup,[dir=rtl] .heading-text-size-display-1 sup,[dir=rtl] .heading-text-size-display-2 sup,[dir=rtl] .heading-text-size-headline-1 sup,[dir=rtl] .heading-text-size-headline-2 sup,[dir=rtl] .heading-text-size-headline-3 sup,[dir=rtl] .heading-text-size-headline-4 sup,[dir=rtl] .heading-text-size-headline-5 sup,[dir=rtl] .heading-text-size-headline-6 sup,[dir=rtl] .heading-text-size-headline-7 sup{padding-right:.1em}.heading-text-size-display-0 sup,.heading-text-size-display-1 sup,.heading-text-size-display-2 sup,.heading-text-size-headline-1 sup,.heading-text-size-headline-2 sup,.heading-text-size-headline-3 sup,.heading-text-size-headline-4 sup,.heading-text-size-headline-5 sup,.heading-text-size-headline-6 sup,.heading-text-size-headline-7 sup{font-size:.5em;position:relative;top:-.75em;vertical-align:baseline}.heading-text-size-headline-1 sup,.heading-text-size-headline-2 sup{font-size:.45em;top:-.9em}.heading-text-size-headline-6>a,.heading-text-size-headline-7>a{text-decoration:underline}.font-quantum-leap .heading-text-size-display-2{line-height:1}.font-quantum-leap .heading-text-size-headline-1{line-height:1;letter-spacing:-.04em}.font-quantum-leap .heading-text-size-headline-2{line-height:1.1;letter-spacing:-.02em}.font-quantum-leap .heading-text-size-headline-3{line-height:1.1;letter-spacing:-.015em}.font-quantum-leap .heading-text-size-headline-4{line-height:1.1;letter-spacing:-.01em}.font-quantum-leap .heading-text-size-headline-5{line-height:1.1;letter-spacing:-.005em}.font-quantum-leap .heading-text-size-headline-6{line-height:1.2}.badge[data-ppui-info*=badge_]{padding:.4375rem .5rem;line-height:.625rem;font-size:.875rem;font-family:PayPalOpen-Bold;color:#001435;background-color:#e6e0d9;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;white-space:nowrap}.badge[data-ppui-info*=badge_].badge-size-small{padding:.25rem;line-height:.5rem;font-size:.6875rem;border-radius:.25rem}.badge[data-ppui-info*=badge_].badge-type-new{color:#001c64;background-color:#ffd140}.badge[data-ppui-info*=badge_].badge-type-new.gold-plate{color:#001c64;background-color:#fff}.badge[data-ppui-info*=badge_].badge-type-coming-soon{color:#0070e0;background-color:unset;border:1px solid;border-color:#0070e0;padding:.375rem .4375rem}.badge[data-ppui-info*=badge_].badge-type-coming-soon.badge-size-small{padding:.1875rem}.badge[data-ppui-info*=badge_].badge-type-coming-soon.blue-500-plate,.badge[data-ppui-info*=badge_].badge-type-coming-soon.blue-600-plate,.badge[data-ppui-info*=badge_].badge-type-coming-soon.blue-700-plate{color:#fff;border-color:#fff}.badge[data-ppui-info*=badge_].badge-type-coming-soon.gold-plate{color:#001c64;border-color:#001c64}.number-group{display:flex;align-items:center;flex-wrap:wrap}.number-group-delimiter{margin:0 .5rem}[dir=ltr] .data-item{padding-left:0}[dir=rtl] .data-item{padding-right:0}.data-item{width:100%;display:flex;flex-direction:column;flex-wrap:wrap}.data-item .data-item-number-group{min-width:auto;margin-bottom:.5rem}.data-item .data-item-text .data-item-content:last-of-type{display:inline}.data-item-fixed .data-item-number-group{min-width:7.5rem}.data-item-center{text-align:center;justify-content:center;align-items:center}.data-item-center .data-item-number-group{min-width:auto}.data-item-center .data-item-text{align-self:center}.data-item-border-top{border-top:.125rem solid var(--style-border-color)}.data-item-border-bottom{border-bottom:.125rem solid var(--style-border-color)}.data-item-top-spacer{padding-top:1.25rem}.data-item-bottom-spacer{padding-bottom:.75rem}.data-item-bottom-spacer .data-item-text{margin:0;margin-bottom:.5rem}.data-item-content b,.data-item-content strong{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400}.data-item-tooltip-icon{position:relative;top:.125rem}.data-item-tooltip-icon button{height:auto;width:auto}.data-item-tooltip-icon button span{font-size:1rem}.data-item-tooltip-icon button path{fill:var(--style-general-hyperlink)}@media (min-width: 64rem){.data-item-tooltip-icon button span{font-size:1.125rem}}@media (min-width: 91.875rem){.data-item{flex-direction:unset;flex-wrap:wrap;flex-direction:row;align-self:center}[dir=ltr] .data-item .data-item-number-group{margin-right:1rem}[dir=rtl] .data-item .data-item-number-group{margin-left:1rem}.data-item .data-item-number-group{flex-shrink:0}.data-item .data-item-text{flex-basis:50%;flex-grow:1;align-self:center}.data-item .data-item-number-group{margin-bottom:0}.data-item-top-spacer{padding-top:2rem}.data-item-bottom-spacer{padding-bottom:1.375rem}.data-item-bottom-spacer .data-item-number-group,.data-item-bottom-spacer .data-item-text{margin-bottom:.625rem}.data-item-column{flex-direction:column}.data-item-column .data-item-number-group{margin-bottom:.625rem}.data-item-column .data-item-text{align-self:normal}.data-item-center .data-item-text{flex-grow:unset;flex-basis:auto}}.dash{vertical-align:middle}.dash path{stroke:#909191}.checkmark{vertical-align:middle;height:1.25rem;width:1.25rem}.checkmark.Purple circle{fill:#f2e6fe}.checkmark.Purple path{fill:#a250f5}.checkmark.Green circle{fill:#cbf3ec}.checkmark.Green path{fill:#308a67}.checkmark.Grey circle{fill:#ededed}.checkmark.Grey path{fill:#515354}.checkmark.Gold circle{fill:#ffd140}.checkmark.Gold path{fill:#001c64}.checkmark.Blue circle{fill:#5bbbfc33}.checkmark.Blue path{fill:#0070e0}.checkmark.White circle{fill:#5bbbfc33}.checkmark.White path{fill:#fff}.checkmark.Yellow200 circle{fill:#fff3c2}.checkmark.Yellow200 path{fill:#001c64}.checkmark.Yellow300 circle{fill:#ffe888}.checkmark.Yellow300 path{fill:#001c64}@media only screen and (min-width: 41.0625rem){.checkmark{height:1.5rem;width:1.5rem}.checkmark-size-caption{height:1.25rem;width:1.25rem}}[dir=ltr] .feature-list{text-align:left}[dir=rtl] .feature-list{text-align:right}.feature-list{list-style:none;margin:0;padding:0}.feature-list-item{display:flex;align-items:flex-start}.feature-list-item+.feature-list-item{margin-top:1rem}[dir=ltr] .feature-list-item-bullet{margin-right:1rem}[dir=rtl] .feature-list-item-bullet{margin-left:1rem}.currency-input div[class$=prefix_wrapper]{border-radius:.25rem}.currency-badge{display:flex;align-items:center;gap:.25rem}.currency-badge .currency-badge-text{color:#001435}[dir=ltr] .currency-converter-input{text-align:left}[dir=rtl] .currency-converter-input{text-align:right}.currency-converter-input .currency-converter-input-title{display:block;margin-bottom:.25rem}[dir=ltr] .currency-converter-input input{padding-right:5.0625rem}[dir=rtl] .currency-converter-input input{padding-left:5.0625rem}[dir=ltr] .currency-converter-input .currency-input div[data-ppui][class$=icon_right]{right:.6875rem}[dir=rtl] .currency-converter-input .currency-input div[data-ppui][class$=icon_right]{left:.6875rem}.currency-converter-input .currency-input div[data-ppui][class$=icon_right]{width:auto}.currency-converter-input #sender-prefix,.currency-converter-input #receiver-prefix,.currency-converter-input #-prefix{opacity:1}[dir=ltr] .currency-converter{text-align:left}[dir=rtl] .currency-converter{text-align:right}.currency-converter{padding-top:.5rem;padding-bottom:.5rem}.currency-converter .currency-converter-input-container{display:flex}.currency-converter.currency-converter-layout-vertical .currency-converter-input-container{flex-direction:column;gap:.75rem}.currency-converter.currency-converter-layout-vertical .currency-converter-xfr-icon{transform:rotate(90deg)}.currency-converter.currency-converter-layout-vertical .conversion-rate-display{margin-top:.75rem}.currency-converter.currency-converter-layout-horizontal .currency-converter-input-container{flex-direction:row;gap:.5rem}.currency-converter.currency-converter-layout-horizontal .currency-converter-xfr-icon{align-self:flex-end;position:relative;bottom:1.25rem}.currency-converter.currency-converter-layout-horizontal .conversion-rate-display{margin-top:.5rem}.currency-converter .currency-converter-xfr-icon svg path{fill:var(--style-general-text-muted)}.grid-compact .text-group .text-group-content-button-group .button-group{gap:1rem}@media screen and (min-width: 64rem){.grid-compact .text-group .text-group-content-button-group+.text-group-content-disclosure{margin-top:1.5rem}.grid-compact .text-group .text-group-content-button-group .button-group{gap:1.5rem}}.text-group>*+*{margin:0;margin-top:1rem}@media screen and (min-width: 107.875rem){.text-group>*+*{margin-top:1.5rem}}.text-group .text-group-content-button-group+.text-group-content-disclosure{margin-top:1rem}.text-group.text-group-alignment-center{text-align:center;display:flex;flex-direction:column;align-items:center}.text-group .text-group-eyebrow-container{display:flex;align-items:center;gap:.5rem}.text-group .text-group-headline{transform:translate(-.06em)}.text-group .text-group-headline,.text-group .text-group-paragraph{white-space:pre-wrap}.text-group .text-group-paragraph~ul{line-height:1.5rem;color:var(--style-headline-text)}@media only screen and (min-width: 41.0625rem){[dir=ltr] .text-group .text-group-paragraph~ul{padding-left:1.5rem}[dir=rtl] .text-group .text-group-paragraph~ul{padding-right:1.5rem}}.text-group .text-group-paragraph+.text-group-paragraph{padding-top:.5rem}.text-group div[\\\\:has\\\\(.currency-converter\\\\)]{width:min(25rem,100%)}.text-group div:has(.currency-converter){width:min(25rem,100%)}.text-group .text-group-action-group>a:last-of-type,.text-group .text-group-action-group>button:last-of-type{margin-bottom:0}.text-group .text-group-action-group .disclosure:first-child{margin-top:0}.text-group .text-group-action-group .disclosure{margin-top:1rem}.text-group .text-group-action-group .disclosure a{margin-bottom:0}[dir=ltr] .text-group ul,[dir=ltr] .text-group ol{padding-left:1.5rem}[dir=rtl] .text-group ul,[dir=rtl] .text-group ol{padding-right:1.5rem}.text-group ul,.text-group ol{line-height:1.5rem;color:var(--style-headline-text)}.text-group ul li,.text-group ol li{margin-bottom:.25rem}.text-group .text-group-legal-text>*:first-child{margin-bottom:0;padding-top:0}.text-group .text-group-data-item:not(:first-child){padding-top:0}[dir=ltr] .text-group .feature-list{padding-left:0}[dir=rtl] .text-group .feature-list{padding-right:0}.text-group .feature-list li.feature-list-item{margin-bottom:0}@media (min-width: 64rem){.text-group .text-group-action-group>a,.text-group .text-group-action-group>button{margin-bottom:0}}@media (min-width: 120rem){.text-group ul,.text-group ol{margin-top:1.5rem}}.screen-reader-content{position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;width:1px;height:1px;overflow:hidden}.media-control-wrapper{background-color:transparent;border:none;border-radius:50%;display:inline-flex;padding:initial;box-sizing:border-box;outline:none;display:flex;align-items:center}.media-control-wrapper.focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}.media-control-wrapper:focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}.media-control-wrapper-outline{box-sizing:content-box}.media-control-wrapper-inverse.focus-visible{border:2.5px solid #5bbbfc}.media-control-wrapper-inverse:focus-visible{border:2.5px solid #5bbbfc}.media-control-wrapper-size-small,.media-control-play-svg-small{width:2.5rem;height:2.5rem}.media-control-wrapper-size-large,.media-control-play-svg-large{width:3rem;height:3rem}.media-control-wrapper-size-x-large,.media-control-play-svg-x-large{width:5rem;height:5rem}.media-control-play-svg:hover{cursor:pointer}.media-control-play-svg:hover .media-control-circle{fill:#0070e0}.media-control-play-svg:hover .media-control-circle-inverse{fill:#b9effc}.media-control-play-svg:active .media-control-circle{fill:#001c64}.media-control-play-svg:active .media-control-circle-inverse{fill:#e3e6f1}.media-control-circle-inverse{fill:#fff}.media-control-triangle-inverse{fill:#003087}.media-control-play-svg-outline-inverse>path{fill:#fff}.media-control-play-svg-outline{border-radius:50%}.media-control-play-svg-outline:hover{cursor:pointer}.video-card{width:100%;text-decoration:none;position:relative;display:block;border:none;border-radius:1rem;margin-bottom:1rem;padding:0;cursor:pointer;z-index:1;outline:none}.video-card .video-card-wrapper{width:100%;padding:.75rem;display:flex;align-items:center;justify-content:space-between}.video-card .video-card-wrapper .video-card-container{display:flex}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail{position:relative;border-radius:.5rem;background-color:#000;min-width:5.833rem;min-height:4.375rem;align-self:center}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .video-card-overlay{position:absolute;width:5.833rem;height:100%;background-color:#fff;opacity:.75;border-radius:.5rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .image-frame{opacity:.6!important;height:100%}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail picture{height:100%}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail img{width:5.833rem;height:100%;border-radius:.5rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{width:2.5rem;height:2.5rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transition:.3s cubic-bezier(.22,1,.36,1)}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#fff}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-triangle{fill:#001c64}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-left:.75rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-right:.75rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content{text-align:left}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content{text-align:right}.video-card .video-card-wrapper .video-card-container .video-card-content{max-width:11.375}@media (min-width: 41.0625rem){.video-card .video-card-wrapper .video-card-container .video-card-content{max-width:none}}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-text{transition:.3s cubic-bezier(.22,1,.36,1)}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info{display:flex;margin-top:.5rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-right:.375rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-left:.375rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{padding-left:.125rem;padding-right:.5rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{padding-right:.125rem;padding-left:.5rem}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{background-color:#e6e0d9;border-radius:.75rem;padding:0;display:flex;align-items:center}@media (min-width: 23.4375rem){[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-right:1rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-left:1rem}}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span svg{margin:0 2px}.video-card:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background-color:var(--component-button-tertiary);transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;border-radius:1rem}@media (min-width: 91.875rem){.video-card:before{border-radius:1.5rem}}.video-card:hover:before{top:-.25rem;right:-.25rem;bottom:-.25rem;left:-.25rem;border:1px solid #e6e0d9}.video-card:active:before{top:0;right:0;bottom:0;left:0;border:1px solid #e6e0d9}.video-card.focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:-.25rem;right:-.25rem;bottom:-.25rem;left:-.25rem;box-shadow:0 0 0 .375rem #1072eb29}.video-card:focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:-.25rem;right:-.25rem;bottom:-.25rem;left:-.25rem;box-shadow:0 0 0 .375rem #1072eb29}@media (min-width: 91.875rem){.video-card.focus-visible:before{border-radius:1.5rem}.video-card:focus-visible:before{border-radius:1.5rem}}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle,.video-card.focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#b9effc}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle,.video-card:focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#b9effc}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg,.video-card.focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{transform:scale(1.25) translate(-40%,-40%);transform-origin:center}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg,.video-card:focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{transform:scale(1.25) translate(-40%,-40%);transform-origin:center}.video-card:hover .video-card-wrapper .video-card-container .video-card-text,.video-card.focus-visible .video-card-wrapper .video-card-container .video-card-text{color:#0070e0}.video-card:hover .video-card-wrapper .video-card-container .video-card-text,.video-card:focus-visible .video-card-wrapper .video-card-container .video-card-text{color:#0070e0}.video-card:active .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#5bbbfc}.video-card:active .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{transform:scale(1) translate(-50%,-50%)}.video-card:active .video-card-wrapper .video-card-container .video-card-text{color:#0070e0}@media (min-width: 91.875rem){.video-card{margin-bottom:2rem;border-radius:1.5rem}.video-card .video-card-wrapper{padding:1rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail{border-radius:.75rem;min-width:11rem;min-height:8.25rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail img{border-radius:.75rem;width:11rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .video-card-overlay{position:absolute;border-radius:.75rem;width:11rem;background-color:#fff;opacity:.75}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{width:3rem;height:3rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-left:1.25rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-right:1.25rem}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info{margin-top:1rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-right:1.5rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-left:1.5rem}}.end-card-collection .end-card-collection-header{text-align:center;margin-bottom:1rem;color:#fff}.end-card-collection .end-card-collection-redirect-links{margin-top:3rem;background-color:transparent;justify-content:center;align-items:center;display:flex;flex-direction:column;row-gap:1rem}.end-card-collection .end-card-collection-redirect-links button{width:-webkit-max-content;width:-moz-max-content;width:max-content}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay{background-color:transparent;position:relative;color:#fff;font-family:PayPalOpen-Bold;line-height:2rem;text-decoration:none;cursor:pointer;outline:none;display:block;margin:0 auto}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:hover,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:hover,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus{outline:none;text-decoration:none}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:before,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:before{width:100%;content:\\\"\\\";position:absolute;top:0rem;left:0rem;text-indent:0rem;pointer-events:none}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:after{border:.1875rem solid #097ff5}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:before,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:before{box-shadow:0 0 0 .375rem #1072eb29}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return{border:2px solid #ffffff;border-radius:1.5rem;font-size:1.125rem;padding:.5rem 1.5rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:before{height:3rem;border-radius:1.25rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay{border:none;font-size:1.25rem;margin:0 auto 1rem;display:flex;align-items:center}[dir=ltr] .end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay svg{margin-right:.75rem}[dir=rtl] .end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay svg{margin-left:.75rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay svg{background:#ffffff;padding:.375rem;border-radius:1.5rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:before{height:2.75rem;border-radius:.75rem}@media (min-width: 41.0625rem){.end-card-collection{width:26.875rem;margin:0 auto}}@media (min-width: 64rem){.end-card-collection .end-card-collection-redirect-links{text-align:center;display:flex;align-items:center;margin:0 auto 3rem;flex-direction:row}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay{margin:0 auto}[dir=ltr] .end-card-collection .end-card-collection-redirect-links .end-card-collection-replay{margin-right:2.5rem}[dir=rtl] .end-card-collection .end-card-collection-redirect-links .end-card-collection-replay{margin-left:2.5rem}}@media (min-width: 91.875rem){.end-card-collection{width:32.25rem}}@media (min-width: 120rem){.end-card-collection .end-card-collection-header{margin-bottom:2rem}.end-card-collection .end-card-collection-redirect-links{margin:0 auto 3.5rem}}.inline-video:hover{cursor:pointer}.inline-video-overlay{position:absolute;background-color:#000;opacity:.3;height:100%;width:100%;border-radius:inherit}.video-frame{position:relative}.video-frame.video-frame-rounded-corners .video-frame-wrapper{overflow:hidden;border-radius:clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)}@supports not (font-size: clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)){.video-frame.video-frame-rounded-corners .video-frame-wrapper{border-radius:min(max(1.5rem,.6049046321525886rem + 2.17983651226158vw),2rem)}}.video-frame-wrapper{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;line-height:.5}.video-frame-wrapper video,.video-frame-wrapper img{-o-object-fit:cover;object-fit:cover}.video-frame-wrapper video.video-frame-hide{display:none}.video-frame-wrapper video.video-frame-show{display:block}.video-frame-wrapper:hover .video-frame-controls-container button{opacity:.25}.video-frame-wrapper:hover .video-frame-video-duration button{opacity:1}.video-frame-wrapper .video-frame-controls-container button{opacity:0;transition:opacity .6s cubic-bezier(.22,1,.36,1)}.video-frame-wrapper .video-frame-controls-container button:hover,.video-frame-wrapper .video-frame-controls-container button.focus-visible,.video-frame-wrapper .video-frame-controls-container button:focus{opacity:1!important}.video-frame-wrapper .video-frame-controls-container button:hover,.video-frame-wrapper .video-frame-controls-container button:focus-visible,.video-frame-wrapper .video-frame-controls-container button:focus{opacity:1!important}@media (hover: none){.video-frame-wrapper .video-frame-controls-container button{opacity:1}}.video-frame-wrapper .video-frame-video-duration button{opacity:1}[dir=ltr] .video-frame-controls-container{right:0}[dir=rtl] .video-frame-controls-container{left:0}.video-frame-controls-container{position:absolute;width:4.5%;bottom:0}[dir=ltr] .video-frame-controls-container>button{right:100%}[dir=rtl] .video-frame-controls-container>button{left:100%}.video-frame-controls-container>button{position:absolute;bottom:100%}.video-frame-controls-container:after{content:\\\"\\\";display:block;padding-bottom:100%}.video-frame-main-controls-container{display:flex;flex-direction:column;align-items:center;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.video-frame-main-controls-container>button{margin-bottom:.75rem}.video-frame-body-text{font-weight:400;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;color:#001c64}.video-frame-button-text-inverse{color:#fff}.video-frame-youtube-video{width:95vw;margin:0 .5rem;border-radius:1rem}@supports (aspect-ratio: auto){.video-frame-youtube-video{aspect-ratio:16/9}}.video-frame-video-md{display:none;visibility:hidden}.video-frame-video-base{display:block;visibility:visible}@media (min-width: 41.0625rem){.video-frame-youtube-video{border-radius:1.5rem}.video-frame-video-md{display:block;visibility:visible}.video-frame-video-base{display:none;visibility:hidden}}@media (min-width: 64rem){.video-frame-youtube-video{max-width:85vw;max-height:85vh}}@media (min-width: 87.875rem){.video-frame-youtube-video{max-width:75vw;max-height:85vh}}.video-cursor-pointer:hover{cursor:pointer}.truncate-button{align-items:center;color:var(--component-inline-button);cursor:pointer;background-color:transparent;border:transparent;display:flex;outline:none;padding:.25rem 0;position:relative;pointer-events:auto}[dir=ltr] .truncate-button.focus-visible:after,[dir=ltr] .truncate-button.focus-visible:before{left:-.25rem}[dir=ltr] .truncate-button:focus-visible:after,[dir=ltr] .truncate-button:focus-visible:before{left:-.25rem}[dir=rtl] .truncate-button.focus-visible:after,[dir=rtl] .truncate-button.focus-visible:before{right:-.25rem}[dir=rtl] .truncate-button:focus-visible:after,[dir=rtl] .truncate-button:focus-visible:before{right:-.25rem}.truncate-button.focus-visible:after,.truncate-button.focus-visible:before{width:calc(100% + .5rem);content:\\\"\\\";position:absolute;top:0rem;text-indent:0rem;height:100%;pointer-events:none}.truncate-button:focus-visible:after,.truncate-button:focus-visible:before{width:calc(100% + .5rem);content:\\\"\\\";position:absolute;top:0rem;text-indent:0rem;height:100%;pointer-events:none}.truncate-button.focus-visible:after{border:.1875rem solid var(--style-fill-2);border-radius:0}.truncate-button:focus-visible:after{border:.1875rem solid var(--style-fill-2);border-radius:0}.truncate-button.focus-visible:before{border-radius:.25rem;box-shadow:0 0 0 .375rem #1072eb26}.truncate-button:focus-visible:before{border-radius:.25rem;box-shadow:0 0 0 .375rem #1072eb26}.truncate-button span.body-text-size-body-bold{color:var(--component-inline-button)}[dir=ltr] .truncate-button span:last-of-type{margin-left:.25rem}[dir=rtl] .truncate-button span:last-of-type{margin-right:.25rem}.truncate-button span:last-of-type{align-items:center;display:flex}.truncated-text-group-truncate-button{width:100%;margin-top:1rem}.truncated-text-group-truncate-button-expanded{margin-bottom:1rem}.truncated-text-group-truncate-button-expanded+.truncated-text-group-feature-list{margin-top:1rem}.truncated-text-group .text-group+.truncated-text-group-feature-list{margin-top:1rem}@media screen and (min-width: 107.875rem){.truncated-text-group-truncate-button{margin-top:1.5rem}}.account-selection{overflow:unset}.account-selection .section-wrapper-graphics-top{display:none}.account-selection .section-wrapper-graphics-bottom{bottom:.03125rem}.account-selection.stone-plate .feature-list .checkmark circle{fill:#5bbbfc33}.account-selection.stone-plate .feature-list .checkmark path{fill:#0070e0}.account-selection-radio-headline-text-group-container{margin-bottom:.875rem}.account-selection-text-group{margin-bottom:1rem}.account-selection-radio-headline-text-group-container-minimal{margin-bottom:.5rem}.account-selection-radio-headline-text-group .text-group-headline,.account-selection-radio-headline-text-group-minimal .text-group-headline{display:none}div.account-selection-cards-container-default{background-color:#faf8f5;border-radius:1rem;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;display:flex;flex-direction:column;justify-content:space-between}[dir=ltr] .account-selection-card-default{text-align:left}[dir=rtl] .account-selection-card-default{text-align:right}.account-selection-card-default{background-color:#fff;display:flex;flex-basis:50%;flex-direction:column;padding:1.5rem;position:relative}.account-selection-card-default-0{border-radius:1rem 1rem 0 0}.account-selection-card-default-1{border-radius:0 0 1rem 1rem;margin-top:.125rem}.account-selection-card-default-media{margin-bottom:1rem}.account-selection-card-default-media.image-frame-rounded-corners{border-radius:.5rem}.account-selection-card-default-media img{aspect-ratio:16 / 9;-o-object-fit:cover;object-fit:cover}.account-selection-card-default-truncated-group{margin-bottom:auto}.account-selection-card-default-truncated-group .text-group-headline{max-width:calc(100% - 2.5rem);word-wrap:break-word}.account-selection-card-default-truncated-group .text-group-paragraph{margin-bottom:1rem}.account-selection-card-default-truncate-button{z-index:1}.account-selection-card-default-arrow-link{align-items:center;display:flex;outline:none;position:absolute;text-decoration:none}.account-selection-card-default-arrow-link.focus-visible:after,.account-selection-card-default-arrow-link.focus-visible:before{content:\\\"\\\";height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-default-arrow-link:focus-visible:after,.account-selection-card-default-arrow-link:focus-visible:before{content:\\\"\\\";height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-default-arrow-link.focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-default-arrow-link:focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-default-arrow-link.focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}.account-selection-card-default-arrow-link:focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{right:1.5rem}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{left:1.5rem}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{left:auto}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{right:auto}.account-selection-card-default-arrow-link .arrow-icon{top:1.25rem;bottom:auto;position:absolute}.account-selection-card-default-0 .account-selection-card-default-arrow-link{top:0;right:0;bottom:.25rem;left:0}.account-selection-card-default-0 .account-selection-card-default-arrow-link.focus-visible:after,.account-selection-card-default-0 .account-selection-card-default-arrow-link.focus-visible:before{border-radius:1rem 1rem 0 0}.account-selection-card-default-0 .account-selection-card-default-arrow-link:focus-visible:after,.account-selection-card-default-0 .account-selection-card-default-arrow-link:focus-visible:before{border-radius:1rem 1rem 0 0}.account-selection-card-default-1 .account-selection-card-default-arrow-link{top:0;right:0;bottom:0;left:0}.account-selection-card-default-1 .account-selection-card-default-arrow-link.focus-visible:after,.account-selection-card-default-1 .account-selection-card-default-arrow-link.focus-visible:before{border-radius:0 0 1rem 1rem}.account-selection-card-default-1 .account-selection-card-default-arrow-link:focus-visible:after,.account-selection-card-default-1 .account-selection-card-default-arrow-link:focus-visible:before{border-radius:0 0 1rem 1rem}.account-selection-card-default-arrow-link:hover,.account-selection-card-default-arrow-link:focus,.account-selection-card-default-arrow-link:visited{text-decoration:none}.account-selection-card-default-button{align-self:flex-start;margin-top:1.5rem}div.account-selection-cards-container-radio{background-color:#fff;border-radius:1rem;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;display:flex;flex-direction:column;justify-content:space-between;padding:1rem}.account-selection-cards-inner-container-radio{display:flex;flex-direction:column}div.account-selection-cards-radio-cta-wrapper-sticky{border:.0625rem solid #ffffff;background-color:#fff;bottom:0;margin-top:1rem;padding:1rem calc(1 * var(--grid-gap));position:-webkit-sticky;position:sticky}div.account-selection-cards-radio-cta-button-sticky{display:block}div.account-selection-cards-radio-cta-button-sticky .account-selection-card-cta{width:100%}div.account-selection-cards-radio-cta-button{display:none}[dir=ltr] .account-selection-card-radio{text-align:left}[dir=rtl] .account-selection-card-radio{text-align:right}.account-selection-card-radio{display:flex;flex-basis:50%;flex-direction:column;padding:1.5rem;position:relative}.account-selection-card-radio+.account-selection-card-radio{margin-top:.5rem}.account-selection-card-radio-label{align-items:center;display:flex;margin-bottom:1rem}.account-selection-card-radio-label input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;cursor:pointer;height:100%;top:0;right:0;bottom:0;left:0;outline:none;position:absolute;width:100%;z-index:1}.account-selection-card-radio-label input:checked{z-index:auto}[dir=ltr] .account-selection-card-radio-label .account-selection-card-radio-custom-input{margin-right:1rem}[dir=rtl] .account-selection-card-radio-label .account-selection-card-radio-custom-input{margin-left:1rem}.account-selection-card-radio-label .account-selection-card-radio-custom-input .radio-checked{display:none}.account-selection-card-radio-label input:checked+.account-selection-card-radio-custom-input .radio-checked{display:block}.account-selection-card-radio-label input:checked+.account-selection-card-radio-custom-input .radio-unchecked{display:none}.account-selection-card-radio-label input:checked:before{content:\\\"\\\";background-color:#f8f8f8;border:.1875rem solid #c6c6c6;border-radius:1rem;height:100%;top:0;right:0;bottom:0;left:0;position:absolute;width:100%;z-index:-1}.account-selection-card-radio-label input.focus-visible:after,.account-selection-card-radio-label input.focus-visible:before{content:\\\"\\\";border-radius:1rem;height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-radio-label input:focus-visible:after,.account-selection-card-radio-label input:focus-visible:before{content:\\\"\\\";border-radius:1rem;height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-radio-label input.focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-radio-label input:focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-radio-label input.focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}.account-selection-card-radio-label input:focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}.account-selection-card-radio-label .text-group-headline{margin:0}.account-selection.stone-plate .account-selection-card-radio-label:not(.account-selection-card-radio-minimal-label) input:checked:before{background-color:#f3f3f6}[dir=ltr] .account-selection-card-radio-minimal-label.account-selection-radio-align-start>.text-group{margin-left:.75rem}[dir=rtl] .account-selection-card-radio-minimal-label.account-selection-radio-align-start>.text-group{margin-right:.75rem}.account-selection-card-radio-minimal-label.account-selection-radio-align-end{flex-direction:row-reverse;justify-content:space-between}[dir=ltr] .account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input{margin-right:0}[dir=rtl] .account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input{margin-left:0}.account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input .radio-checked,.account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input .radio-unchecked{width:1.5rem;height:1.5rem}.account-selection-card-radio-minimal-label input:checked:before{border-radius:.5rem;border-color:#5bbbfc;background-color:#0070e00a}.account-selection-card-radio-minimal-label input.focus-visible:after,.account-selection-card-radio-minimal-label input.focus-visible:before{border-radius:.5rem;border-color:#0070e0;background-color:#0070e00a}.account-selection-card-radio-minimal-label input:focus-visible:after,.account-selection-card-radio-minimal-label input:focus-visible:before{border-radius:.5rem;border-color:#0070e0;background-color:#0070e00a}div.account-selection-cards-radio-minimal-cta-wrapper-sticky{margin-top:2rem;box-shadow:0 -16px 20px -5px #00000014}div.account-selection-cards-container-radio-minimal{padding:.5rem}div.account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem}div.account-selection-cards-container-radio-minimal .truncated-text-group li{align-items:center}.account-selection-radio-minimal{min-height:90vh}.account-selection-radio-minimal .account-selection-radio-headline-text-group-container-minimal{align-self:end}.account-selection-radio-minimal .account-selection-cards-container-radio-minimal{align-self:start}.account-selection-radio-minimal .account-selection-cards-radio-minimal-cta-wrapper-sticky{align-self:end}.account-selection-radio-minimal .section-wrapper-graphics-top{display:block}.account-selection-radio-minimal .section-wrapper-graphics-bottom{bottom:2rem}@media only screen and (min-width: 41.0625rem){.account-selection-radio-headline-text-group-container{margin-bottom:0}.account-selection-radio-headline-text-group .text-group-headline{display:block}.account-selection-radio-headline-text-group-minimal .text-group-eyebrow-text{display:none}.account-selection-radio-headline-text-group-minimal.account-selection-radio-headline-text-group-minimal-with-eyebrow .text-group-eyebrow-text,.account-selection-radio-headline-text-group-minimal .text-group-headline{display:block}.account-selection-card-default{padding:2rem}.account-selection-card-default-media{margin-bottom:2rem}.account-selection-card-default-media.image-frame-rounded-corners{border-radius:1rem}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{right:2rem}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{left:2rem}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{left:auto}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{right:auto}.account-selection-card-default-arrow-link .arrow-icon{top:1.75rem;bottom:auto}.account-selection-card-radio{padding:2rem}div.account-selection-cards-radio-cta-wrapper-sticky{padding:1rem calc(2 * var(--grid-gap))}div.account-selection-cards-radio-cta-button-sticky{max-width:36.25rem;margin:0 auto}div.account-selection-cards-radio-minimal-cta-wrapper-sticky{padding:1rem calc(1 * var(--grid-gap))}div.account-selection-cards-radio-minimal-cta-wrapper-sticky .account-selection-cards-radio-cta-button-sticky{max-width:none}}@media only screen and (min-width: 64rem){.account-selection .section-wrapper-graphics-top{display:flex}.account-selection .section-wrapper-graphics-bottom{bottom:0}.account-selection-radio-minimal{align-items:center;justify-items:center;place-items:center}.account-selection-radio-headline-text-group-container-minimal{margin-bottom:1rem}div.account-selection-cards-container-default{border-radius:1.5rem;flex-direction:row}.account-selection-card-default{padding:3rem}.account-selection-card-default-0{border-radius:1.5rem 0 0 1.5rem}[dir=ltr] .account-selection-card-default-1{margin-left:.125rem}[dir=rtl] .account-selection-card-default-1{margin-right:.125rem}.account-selection-card-default-1{border-radius:0 1.5rem 1.5rem 0;margin-top:0}div.account-selection-cards-container-radio{border-radius:1.5rem;padding:1.5rem}.account-selection-cards-inner-container-radio{flex-direction:row}.account-selection-card-radio{padding:1.5rem 2rem}[dir=ltr] .account-selection-card-radio+.account-selection-card-radio{margin-left:1.5rem}[dir=rtl] .account-selection-card-radio+.account-selection-card-radio{margin-right:1.5rem}.account-selection-card-radio+.account-selection-card-radio{margin-top:0}.account-selection-card-radio-label input:checked:before,.account-selection-card-radio-label input.focus-visible:after,.account-selection-card-radio-label input.focus-visible:before{border-radius:1.5rem}.account-selection-card-radio-label input:checked:before,.account-selection-card-radio-label input:focus-visible:after,.account-selection-card-radio-label input:focus-visible:before{border-radius:1.5rem}.account-selection-card-radio-minimal-label input:checked:before,.account-selection-card-radio-minimal-label input.focus-visible:after,.account-selection-card-radio-minimal-label input.focus-visible:before{border-radius:.75rem}.account-selection-card-radio-minimal-label input:checked:before,.account-selection-card-radio-minimal-label input:focus-visible:after,.account-selection-card-radio-minimal-label input:focus-visible:before{border-radius:.75rem}div.account-selection-cards-radio-cta-wrapper-sticky{display:none}div.account-selection-cards-radio-cta-button{width:100%;align-self:center;justify-content:center;display:flex;position:relative;margin-top:2.5rem;padding-bottom:1.25rem}div.account-selection-cards-radio-cta-button.account-selection-cards-inner-use-sticky-action{position:-webkit-sticky;position:sticky;bottom:0;z-index:9999}div.account-selection-cards-radio-cta-button.account-selection-cards-inner-use-sticky-action:after{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;top:-2rem;background:linear-gradient(to top,#fff 2rem,transparent);z-index:-1;pointer-events:none}div.account-selection-cards-container-radio-minimal{padding:1.5rem 1.5rem .5rem}div.account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem 2rem}div.account-selection-cards-container-radio-minimal div.account-selection-cards-radio-cta-button{padding-bottom:0;margin-top:1.5rem}div.account-selection-cards-container-radio-minimal div.account-selection-cards-inner-use-sticky-action .account-selection-card-cta{margin-bottom:1rem}}@media only screen and (min-width: 91.875rem){.account-selection-card-default{padding:4.5rem}div.account-selection-cards-container-radio{padding:2rem}.account-selection-card-radio{padding:3rem 4.5rem}[dir=ltr] .account-selection-card-radio+.account-selection-card-radio{margin-left:2rem}[dir=rtl] .account-selection-card-radio+.account-selection-card-radio{margin-right:2rem}div.account-selection-cards-radio-cta-button{margin-top:3rem}div.account-selection-cards-container-radio-minimal{padding:1.5rem 1.5rem .5rem}div.account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem 2rem}div.account-selection-cards-container-radio-minimal div.account-selection-cards-radio-cta-button{padding-bottom:0;margin-top:1.5rem}}@media only screen and (min-width: 120rem){.account-selection-radio-headline-text-group-container-minimal{margin-bottom:.5rem}}@media screen and (min-width: 107.875rem){.account-selection-text-group,.account-selection-card-default-truncated-group .text-group-paragraph{margin-bottom:1.5rem}}.radio-unchecked{width:1.5rem;height:1.5rem;display:block}.radio-unchecked .radio-unchecked-circle{fill:#fff;stroke:#929496}.radio-checked{width:1.5rem;height:1.5rem;display:block}.radio-checked .radio-checked-outer-circle{fill:#0070e0}.radio-checked .radio-checked-inner-circle{fill:#fff}@media only screen and (min-width: 41.0625rem){.radio-unchecked,.radio-checked{width:2rem;height:2rem}}@media only screen and (min-width: 91.875rem){.radio-unchecked,.radio-checked{width:2.25rem;height:2.25rem}}@media only screen and (min-width: 64rem){.grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem}}@media only screen and (min-width: 91.875rem){.grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem}[dir=ltr] .grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio+.account-selection-card-radio{margin-left:1.5rem}[dir=rtl] .grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio+.account-selection-card-radio{margin-right:1.5rem}}@media only screen and (min-width: 91.875rem){[dir=ltr] .grid-compact.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio+.account-selection-card-radio{margin-left:1.5rem}[dir=rtl] .grid-compact.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio+.account-selection-card-radio{margin-right:1.5rem}.grid-compact.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio{padding:2.5rem 3rem}}.grid-compact.font-quantum-leap.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio-label input:checked:before{border-color:#0070e0}.action-banner .white-plate{background-color:#fff}.action-banner{text-align:center;align-items:center}.action-banner .action-banner-link{text-decoration:none;display:inline-block;padding:2rem}.action-banner .action-banner-paragraph-container{display:flex;flex-direction:column;margin:0}.action-banner .action-banner-paragraph-container .action-banner-paragraph-content{display:inline-block}.action-banner .action-banner-align-outer-rail,.action-banner .action-banner-align-inner-rail{border-radius:1rem}@media (min-width: 64rem){.action-banner .action-banner-link{padding:2.5rem}.action-banner .action-banner-align-outer-rail,.action-banner .action-banner-align-inner-rail{border-radius:1.5rem}.action-banner .action-banner-paragraph-container{display:block}[dir=ltr] .action-banner .action-banner-paragraph-container .action-banner-paragraph-link{margin-left:1rem}[dir=rtl] .action-banner .action-banner-paragraph-container .action-banner-paragraph-link{margin-right:1rem}}.app-download-banner{display:grid;align-items:center;text-align:center}.app-download-banner.grid{grid-row-gap:0}@media (min-width: 64rem){.app-download-banner.grid{grid-row-gap:var(--grid-gap)}}.app-download-banner #app-download-banner-text-group-grid{text-align:center}.app-download-banner #app-download-banner-appdownload-group-grid{display:flex;justify-content:center}.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group-variant-qr-and-sms .app-download-group-disclaimer{width:100%}.app-download-banner #app-download-banner-image-grid,.app-download-banner .app-download-banner-medium-text-group{display:none}.app-download-banner .app-download-banner-base-text-group{display:block;margin-bottom:1rem}.app-download-banner .app-download-banner-base-text-group .text-group-headline{margin-bottom:1rem}.app-download-banner .app-download-banner-image{display:block}@media (max-width: 41rem){.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group-variant-qr-and-sms .app-download-group-row .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:center}}@media (min-width: 64rem){[dir=ltr] .app-download-banner{text-align:left}[dir=rtl] .app-download-banner{text-align:right}[dir=ltr] .app-download-banner #app-download-banner-text-group-grid{text-align:left}[dir=rtl] .app-download-banner #app-download-banner-text-group-grid{text-align:right}.app-download-banner #app-download-banner-appdownload-group-grid{display:block;justify-content:flex-start}.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group{min-height:10rem}.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group-variant-qr-and-sms .app-download-group-disclaimer{width:95%}.app-download-banner #app-download-banner-image-grid{align-items:center;justify-content:end;display:flex;height:100%}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{border-right:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{border-left:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{padding-right:2rem}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{padding-left:2rem}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{border-left:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{border-right:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{padding-left:2rem}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{padding-right:2rem}.app-download-banner .app-download-banner-medium-text-group{display:block}.app-download-banner .app-download-banner-base-text-group{display:none}}@media (min-width: 107.875rem){[dir=ltr] .app-download-banner #app-download-banner-text-group-grid{text-align:left}[dir=rtl] .app-download-banner #app-download-banner-text-group-grid{text-align:right}[dir=ltr] .app-download-banner #app-download-banner-image-grid{padding-left:1.5rem}[dir=rtl] .app-download-banner #app-download-banner-image-grid{padding-right:1.5rem}}@-moz-document url-prefix(){@media (max-width: 23.4375rem){.carousel-track-container{max-width:clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)}@supports not (font-size: clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)){.carousel-track-container{max-width:min(max(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw),36.23rem)}}}@media (min-width: 23.4375rem){.carousel-track-container{max-width:clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)}@supports not (font-size: clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)){.carousel-track-container{max-width:min(max(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw),36.23rem)}}}@media (min-width: 41.0625rem){.carousel-track-container{max-width:clamp(36.23rem,25.755594005449577rem + 25.50844686648504vw,42.081rem)}@supports not (font-size: clamp(36.23rem,25.755594005449577rem + 25.50844686648504vw,42.081rem)){.carousel-track-container{max-width:min(max(36.23rem,25.755594005449577rem + 25.50844686648504vw),42.081rem)}}}@media (min-width: 64rem){.carousel-track-container{max-width:clamp(42.081rem,-18.863071748878916rem + 95.22511210762332vw,68.625rem)}@supports not (font-size: clamp(42.081rem,-18.863071748878916rem + 95.22511210762332vw,68.625rem)){.carousel-track-container{max-width:min(max(42.081rem,-18.863071748878916rem + 95.22511210762332vw),68.625rem)}}}@media (min-width: 91.875rem){.carousel-track-container{max-width:clamp(68.625rem,18.80833333333333rem + 54.22222222222223vw,83.875rem)}@supports not (font-size: clamp(68.625rem,18.80833333333333rem + 54.22222222222223vw,83.875rem)){.carousel-track-container{max-width:min(max(68.625rem,18.80833333333333rem + 54.22222222222223vw),83.875rem)}}}@media (min-width: 120rem){.carousel-track-container{max-width:83.875rem}}}.carousel{max-width:100%;padding:11.875rem 0;position:relative}.carousel .neutral100{background-color:#faf8f5}.carousel .white{background-color:#fff}.carousel .carousel-notification{clip:rect(0 0 0 0);height:.0625rem;left:0;position:absolute;top:0;width:.0625rem;z-index:-1000}.carousel .carousel-dragging-disables-on-click{pointer-events:none}.carousel .carousel-track-container{position:relative;cursor:grab}.carousel .carousel-track-container:active{cursor:grabbing}.carousel .carousel-track{display:flex;list-style:none;margin:0;min-width:100%;overflow-x:visible;padding:0;position:relative;transition-duration:0ms;transition-property:transform;transition-timing-function:cubic-bezier(.22,1,.36,1);width:-webkit-max-content;width:-moz-max-content;width:max-content}.carousel .carousel-slide{transform:translateZ(0);-webkit-transform:translateZ(0);-moz-transform:translateZ(0)}[dir=ltr] .carousel .carousel-slide+.carousel-slide{margin-left:var(--grid-gap)}[dir=rtl] .carousel .carousel-slide+.carousel-slide{margin-right:var(--grid-gap)}.carousel .carousel-button{background-color:transparent;border:none;cursor:pointer;opacity:0;transition-duration:.3s;transition-timing-function:cubic-bezier(.22,1,.36,1);transition-property:opacity;vertical-align:middle;filter:drop-shadow(0rem .75rem 1.75rem rgba(0,0,0,.16));margin:0;outline:none;padding:0;position:absolute;top:50%;z-index:1}.carousel .carousel-button:hover{opacity:.9!important}.carousel .carousel-button:focus{opacity:.9!important}.carousel .carousel-button:focus:after{border:.125rem solid #0070e0;border-radius:.25rem;box-shadow:0 0 0 .125rem #1072eb29;content:\\\"\\\";top:0;right:0;bottom:0;left:0;pointer-events:none;position:absolute;border-radius:50%}.carousel .carousel-button .arrow-icon{fill:#f7f5f0;transition-duration:.3s;transition-timing-function:cubic-bezier(.22,1,.36,1);transition-property:fill,opacity;opacity:1}.carousel .carousel-button .arrow-icon path:not(:nth-of-type(1)){fill:#003087}.carousel .carousel-button .arrow-icon:hover{opacity:.8}.carousel .carousel-button .arrow-icon:hover path:not(:nth-of-type(1)){fill:#001c64}.carousel .carousel-button .arrow-icon:active{opacity:1}.carousel .carousel-button .arrow-icon:focus path:not(:nth-of-type(1)){fill:#003087}.carousel .carousel-slide-paragraph{padding:2.4rem}.carousel .next-button{right:0;transform:translate(50%,-50%)}[dir=rtl] .carousel .next-button{left:0;right:unset;transform:translate(-50%,-50%) rotate(180deg)}.carousel .previous-button{transform:translate(-50%,-50%)}[dir=rtl] .carousel .previous-button{transform:translate(50%,-50%) rotate(180deg)}.carousel .carousel-slide{border-radius:1.5rem}.carousel .page-nav-container{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;left:50%;position:absolute;transform:translate(-50%);margin-top:2rem;width:90%}.carousel .carousel-indicator{align-items:center;background-color:transparent;border:none;cursor:pointer;display:flex;height:1rem;justify-content:center;margin:0 .3125rem;outline:none;padding:.3125rem 0;position:relative;width:clamp(2.5rem,1.459104367135455rem + 4.441154700222058vw,6.25rem)}@supports not (font-size: clamp(2.5rem,1.459104367135455rem + 4.441154700222058vw,6.25rem)){.carousel .carousel-indicator{width:min(max(2.5rem,1.459104367135455rem + 4.441154700222058vw),6.25rem)}}.carousel .carousel-indicator span{border-radius:.125rem;display:block;transition-property:border-color,opacity;transition:.3s cubic-bezier(.22,1,.36,1);width:100%;opacity:.1}.carousel .carousel-indicator:hover span{opacity:.5}.carousel .carousel-indicator:focus:after{border:.125rem solid #0070e0;box-shadow:0 0 0 .125rem #1072eb29;content:\\\"\\\";right:0;left:0;pointer-events:none;position:absolute;border-radius:.25rem;top:0;right:-.25rem;bottom:0;left:-.25rem}.carousel .carousel-indicator.activeButton span{opacity:1}@media (min-width: 64rem){.carousel .carousel-track-container:hover .carousel-button{opacity:1}.carousel .page-nav-container{margin-top:2rem}}.carousel .carousel-indicator span{background-color:#0c0c0d;border:#0c0c0d solid}.slate-plate .carousel .carousel-indicator span,.slate-gradient-plate .carousel .carousel-indicator span,.blue-700-plate .carousel .carousel-indicator span,.blue-400-alt-plate .carousel .carousel-indicator span,.blue-500-plate .carousel .carousel-indicator span,.blue-600-plate .carousel .carousel-indicator span{background-color:var(--component-button-primary);border:var(--component-button-primary) solid}.carousel-disabled .carousel-track-container,.carousel-disabled .carousel-track-container:active{cursor:default}.carousel-disabled .page-nav-container{display:none}.author-info-section-speaker{margin:1.5rem 0 0;display:flex;flex-direction:column}.author-info-section-speaker .author-info-section-speaker-label{margin-bottom:.5rem}.author-info-section-speaker .author-info-section-speaker-info span:before{content:\\\", \\\"}.feature-card{margin:0;padding:0;box-sizing:border-box;display:flex;flex:1;width:100%;flex-direction:column;justify-content:space-between;color:var(--style-general-text)}.feature-card .feature-card-list-item{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1.5rem}[dir=ltr] .feature-card .feature-card-list-item span{padding-right:.75rem}[dir=rtl] .feature-card .feature-card-list-item span{padding-left:.75rem}[dir=ltr] .feature-card .feature-card-list-item span{border-right:.06rem solid var(--style-stroke-color)}[dir=rtl] .feature-card .feature-card-list-item span{border-left:.06rem solid var(--style-stroke-color)}[dir=ltr] .feature-card .feature-card-list-item span{margin-right:.75rem}[dir=rtl] .feature-card .feature-card-list-item span{margin-left:.75rem}[dir=ltr] .feature-card .feature-card-list-item span:last-of-type{padding-right:0}[dir=rtl] .feature-card .feature-card-list-item span:last-of-type{padding-left:0}.feature-card .feature-card-list-item span:last-of-type{border:none}.feature-card .feature-card-headline{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.feature-card .feature-card-time{color:var(--style-headline-text);margin-top:1.5rem}.feature-card .feature-card-time span{padding:0 .5rem}[dir=ltr] .feature-card .feature-card-time .feature-card-article-tag{margin-left:.5rem}[dir=rtl] .feature-card .feature-card-time .feature-card-article-tag{margin-right:.5rem}.feature-card .feature-card-time .feature-card-article-tag{background:#faf8f5;border-radius:4px;color:#0070e0}.feature-card .feature-card-paragraph{margin-top:1.5rem;display:-webkit-box;-webkit-line-clamp:7;-webkit-box-orient:vertical;overflow:hidden}.feature-card .feature-card-duration{margin-top:1.5rem;display:block}.feature-card .feature-card-button{margin-top:1.5rem;display:block;padding:0}.feature-card .feature-card-paragraph-four-line-clamp{-webkit-line-clamp:4}@media only screen and (max-width: 23.375rem){.feature-card .feature-card-headline{-webkit-line-clamp:2}.feature-card .feature-card-paragraph-four-line-clamp{-webkit-line-clamp:3}}.standard-card{display:flex;flex:1;width:100%;margin:0;padding:0;flex-direction:column;justify-content:space-between;color:var(--style-general-text);box-sizing:border-box}.standard-card .standard-card-list-item{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1.5rem}[dir=ltr] .standard-card .standard-card-list-item span{padding-right:.75rem}[dir=rtl] .standard-card .standard-card-list-item span{padding-left:.75rem}[dir=ltr] .standard-card .standard-card-list-item span{border-right:.06rem solid var(--style-stroke-color)}[dir=rtl] .standard-card .standard-card-list-item span{border-left:.06rem solid var(--style-stroke-color)}[dir=ltr] .standard-card .standard-card-list-item span{margin-right:.75rem}[dir=rtl] .standard-card .standard-card-list-item span{margin-left:.75rem}[dir=ltr] .standard-card .standard-card-list-item span:last-of-type{padding-right:0}[dir=rtl] .standard-card .standard-card-list-item span:last-of-type{padding-left:0}.standard-card .standard-card-list-item span:last-of-type{border:none}.standard-card .standard-card-footer-list-item{margin-bottom:0}.standard-card .standard-card-headline{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.standard-card .standard-card-headline-1-line-clamp{-webkit-line-clamp:1}.standard-card .standard-card-headline-2-line-clamp{-webkit-line-clamp:2}.standard-card .standard-card-headline-3-line-clamp{-webkit-line-clamp:3}.standard-card .standard-card-headline-large{margin-top:1.5rem}.standard-card .standard-card-speaker{display:flex;flex-direction:column}.standard-card .standard-card-speaker-small,.standard-card .standard-card-speaker-large{margin:.75rem 0 1.5rem}.standard-card .standard-card-host-speaker:before,.standard-card .standard-card-guest-speaker:before{content:\\\": \\\"}@media only screen and (max-width: 23.375rem){.standard-card .standard-card-speaker-small,.standard-card .standard-card-speaker-large{margin:.5rem 0 2rem}}.article-card-anchor{text-decoration:none!important;display:inline-flex;flex-direction:column;height:100%;width:100%}a.article-card-anchor:focus,a.article-card-anchor.focus-visible{box-shadow:#0070e0 0 0 0 .156rem,#d1e5f9e6 0 0 0 .375rem}a.article-card-anchor:focus,a.article-card-anchor:focus-visible{box-shadow:#0070e0 0 0 0 .156rem,#d1e5f9e6 0 0 0 .375rem}.article-card-template.not-mounted .article-card-template-carousel-grid-wrapper{padding-bottom:0}.article-card-template.not-mounted .page-nav-container{display:none}.article-card-template .article-card-template-carousel-grid-wrapper{padding-bottom:4rem}.article-card-template .article-card-template-image-frame-placeholder{background-color:#009cde}.article-card-template .article-card-template-header{padding-bottom:2rem}.article-card-template .article-card-template-stack{display:grid;grid-gap:var(--grid-gap);width:100%;margin:0;padding:0;box-sizing:border-box;grid-auto-flow:row;padding-bottom:.45rem}.article-card-template .article-card-template-stack .article-card-template-stack-item{height:auto;border-radius:1.5rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame{border-radius:1.5rem 1.5rem 0 0;height:auto;width:100%;overflow:hidden;box-sizing:border-box;margin:0}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame img{height:16.07rem;width:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover;display:block}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame-placeholder{border-radius:1.5rem 1.5rem 0 0;min-height:16.07rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-card{margin:0;box-sizing:border-box;border:1px solid #eaeced;padding:1.5rem calc(var(--grid-gap) * 2);border-radius:0 0 1.5rem 1.5rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-card.stone-plate{border:1px solid #f1ede8}.article-card-template .article-card-template-card-section .article-card-template-stack-item{margin-bottom:0}.article-card-template .article-card-template-border-card-item .article-card-template-item .article-card-template-image-frame-placeholder{min-height:16.07rem}.article-card-template .article-card-template-border-card-item .article-card-template-item .article-card-template-card{border:1px solid #eaeced}.article-card-template .article-card-template-border-card-item .article-card-template-item .article-card-template-card.stone-plate{border:1px solid #f1ede8}.article-card-template .article-card-template-cta-section{display:flex;justify-content:center;margin-top:3rem;padding-top:2rem;margin-bottom:.45rem}.article-card-template .article-card-template-cta-stack{display:flex;justify-content:center;margin-top:2rem;margin-bottom:.45rem}.article-card-template .article-card-template-container{padding:0}.article-card-template .article-card-template-container .carousel-slide{margin-bottom:0}.article-card-template .article-card-template-container .carousel-track-container .carousel-track{background-color:transparent}.article-card-template .article-card-template-container .carousel-track-container .page-nav-container{margin-top:2rem;margin-bottom:2rem}.article-card-template .article-card-template-container .carousel-slide,.article-card-template .article-card-template-container .article-card-template-item{border-radius:1.5rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame{border-radius:1.5rem 1.5rem 0 0;height:auto;width:100%;overflow:hidden;box-sizing:border-box;margin:0}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:16.07rem;width:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover;display:block}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame-placeholder{min-height:16.07rem;border-radius:1.5rem 1.5rem 0 0}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-card{margin:0;box-sizing:border-box;padding:2rem calc(var(--grid-gap) * 2);border-radius:0 0 1.5rem 1.5rem}.article-card-template .article-card-template-container .article-card-template-item-no-border-radius .article-card-template-image-frame{border-radius:0}.article-card-template .article-card-template-container .article-card-template-item-no-border-radius .article-card-template-card{border-radius:0;background-color:#fff}.article-card-template .article-card-template-container-wo-pagination .carousel-track-container .page-nav-container{display:none}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item,.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-image-frame{border-radius:0}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-image-frame img{height:17.57rem}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-image-frame-placeholder{min-height:17.57rem;border-radius:0}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-card{border-radius:0}.article-card-template .article-card-anchor:hover{box-shadow:0 0 0 .156rem #0070e0}a.article-card-template-feature-card-item{display:flex;margin:0;padding:0;text-decoration:none;width:100%}a.article-card-template-feature-card-item.article-card-anchor:hover{box-shadow:0 0 0 .156rem #0070e0}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{width:100%;margin:0;padding:0;overflow:hidden}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame img,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder img{height:17.57rem;width:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover;display:block}a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{background-color:#009cde}a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{margin:0;padding:1.5rem calc(2 * var(--grid-gap)) 2rem}@media only screen and (min-width: 41.0625rem){.article-card-template .article-card-template-container .article-card-template-item .article-card-template-card{padding:2rem calc(var(--grid-gap))}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame-placeholder{min-height:19.96rem}.article-card-template .article-card-template-cta-stack{display:flex;justify-content:center;margin-top:3rem}.article-card-template .article-card-template-stack{grid-template-columns:repeat(2,calc((100% - var(--grid-gap) * 1) / 2))}.article-card-template .article-card-template-stack .article-card-template-stack-item{margin-bottom:0}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame-placeholder{min-height:19.96rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-card{padding:2rem calc(var(--grid-gap))}}@media only screen and (min-width: 64rem){.article-card-template .article-card-template-header{padding-bottom:3rem}.article-card-template .article-card-template-carousel-grid-wrapper.no-bottom-spacing-lg{padding-bottom:0}.article-card-template .article-card-template-container .carousel-track-container .page-nav-container{margin-top:2rem}.article-card-template .article-card-template-container .carousel-slide{border-radius:1.5rem;margin-bottom:0}.article-card-template .article-card-template-container .article-card-template-item{display:flex;border-radius:1.5rem;height:100%}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame{border-radius:1.5rem 1.5rem 0 0}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame-placeholder{border-radius:1.5rem 1.5rem 0 0;min-height:19.96rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-card{border-radius:0 0 1.5rem 1.5rem}a.article-card-template-feature-card-item{display:inline-flex;flex-direction:row;height:40.9rem}a.article-card-template-feature-card-item:hover,a.article-card-template-feature-card-item:focus,a.article-card-template-feature-card-item.focus-visible{border-radius:1.5rem}a.article-card-template-feature-card-item:hover,a.article-card-template-feature-card-item:focus,a.article-card-template-feature-card-item:focus-visible{border-radius:1.5rem}a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{margin:0;width:calc(50% - var(--grid-gap) / 2);padding:2.5rem 1.5rem;border-radius:0 1.5rem 1.5rem 0}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{width:calc(50% + var(--grid-gap) / 2);border-radius:1.5rem 0 0 1.5rem}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame picture,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder picture{display:inline}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame picture img,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder picture img{height:100%}}@media only screen and (min-width: 91.875rem){.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-cta-section{margin-top:0rem;padding-top:3rem}.article-card-template .article-card-template-stack{grid-template-columns:repeat(3,calc((100% - var(--grid-gap) * 2) / 3))}a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{padding:3rem 1.5rem;width:calc(33% + var(--grid-gap) / 2)}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{width:calc(67% - var(--grid-gap) / 2)}}@media only screen and (min-width: 120rem){a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{padding:3rem}}.text-header-inner .text-header-inner-image{-o-object-fit:contain;object-fit:contain;margin:auto;margin-bottom:clamp(2rem,1.7833204930662558rem + .9244992295839755vw,2.375rem)}@supports not (font-size: clamp(2rem,1.7833204930662558rem + .9244992295839755vw,2.375rem)){.text-header-inner .text-header-inner-image{margin-bottom:min(max(2rem,1.7833204930662558rem + .9244992295839755vw),2.375rem)}}[dir=ltr] .text-header-inner .text-header-inner-image-align-start{margin-left:0}[dir=rtl] .text-header-inner .text-header-inner-image-align-start,[dir=ltr] .text-header-inner .text-header-inner-image-align-end{margin-right:0}[dir=rtl] .text-header-inner .text-header-inner-image-align-end{margin-left:0}.text-header-inner .text-header-inner-img-size-small{max-width:4.5rem;max-height:4.5rem}.text-header-inner .text-header-inner-img-size-medium{max-width:8rem;max-height:8rem}.text-header-inner .text-header-inner-img-size-large{max-width:16rem;max-height:16rem}.card-content-section-header{margin-bottom:1rem}@media screen and (min-width: 64rem){.card-content-section-header{margin-bottom:2.5rem}}.section-wrapper .card-content-section-carousel{padding:0}.section-wrapper .card-content-section-carousel:not(.carousel-disabled){margin-top:2rem;margin-bottom:3rem}.section-wrapper .card-content-section-carousel .carousel-button{display:none;height:3.5rem;width:3.5rem}@media screen and (min-width: 41.0625rem){.section-wrapper .card-content-section-carousel .carousel-button{display:inline-block}}.section-wrapper .card-content-section-carousel .carousel-button svg{height:100%;width:100%}.section-wrapper .card-content-section-carousel .carousel-track{background-color:transparent}@media screen and (max-width: 23.4375rem){.section-wrapper .card-content-section-carousel .carousel-track .card-content-section-item{height:100%}}@media screen and (min-width: 23.4375rem){.section-wrapper .card-content-section-carousel .carousel-track .card-content-section-item{height:100%}}.section-wrapper .card-content-section-carousel .carousel-slide .card-content-section-item{min-width:100%;border-radius:1.5rem}.section-wrapper .card-content-section-carousel .page-nav-container{margin-top:2rem}@media screen and (min-width: 64rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;display:flex;align-items:center;flex-direction:row-reverse;justify-self:center;border-radius:1.5rem}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{flex-direction:column}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1 .card-content-section-item-image{flex-grow:1;flex-basis:0;align-self:stretch}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1 .card-content-section-item-image img,.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1 .card-content-section-item-image picture{height:100%}}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{min-width:100%;justify-content:center;padding:1.5rem}@media screen and (min-width: 23.4375rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{min-width:100%;justify-content:center}}@media screen and (min-width: 41.0625rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{display:flex;align-items:center}}@media screen and (min-width: 64rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{padding:3rem}}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage .card-content-section-item-text{padding:0}@media screen and (min-width: 41.0625rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage .card-content-section-item-text{max-width:46.125rem}}@media screen and (min-width: 64rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage .card-content-section-item-text{max-width:75%}}.card-content-section-item-cards-1,.card-content-section-item-cards-2{--card-content-padding: 3rem}.card-content-section-item-cards-3{--card-content-padding: 2rem}.card-content-section-item-cards-4{--card-content-padding: 1.5rem}.card-content-section-item{display:flex;border-radius:1.5rem;flex-direction:column;overflow:hidden}.card-content-section-item.noImage.onlyCta .card-content-section-item-text{flex-grow:unset}.card-content-section-item .card-content-section-item-text{width:100%;padding:1.5rem;margin:0;display:flex;flex-direction:column}.card-content-section-item .card-content-section-item-text[\\\\:has\\\\(div.text-group-content-button-group\\\\)]{flex-grow:1}.card-content-section-item .card-content-section-item-text:has(div.text-group-content-button-group){flex-grow:1}.card-content-section-item .card-content-section-item-text[\\\\:has\\\\(div.text-group-content-button-group\\\\)] > div:nth-last-child(2){flex-grow:1}.card-content-section-item .card-content-section-item-text:has(div.text-group-content-button-group)>div:nth-last-child(2){flex-grow:1}.card-content-section-item .card-content-section-item-text[\\\\:has\\\\(div.text-group-content-button-group\\\\)] .text-group-content-button-group{flex-grow:0}.card-content-section-item .card-content-section-item-text:has(div.text-group-content-button-group) .text-group-content-button-group{flex-grow:0}@media screen and (min-width: 64rem){[dir=ltr] .card-content-section-item.card-content-section-item-cards-1 .card-content-section-item-text{padding-left:var(--card-content-padding);padding-right:4rem}[dir=rtl] .card-content-section-item.card-content-section-item-cards-1 .card-content-section-item-text{padding-right:var(--card-content-padding);padding-left:4rem}.card-content-section-item.card-content-section-item-cards-1 .card-content-section-item-text{padding-top:var(--card-content-padding);padding-bottom:var(--card-content-padding)}.card-content-section-item.card-content-section-item-cards-2 .card-content-section-item-text,.card-content-section-item.card-content-section-item-cards-3 .card-content-section-item-text,.card-content-section-item.card-content-section-item-cards-4 .card-content-section-item-text{padding:var(--card-content-padding)}}.card-content-section-item .card-content-section-item-image{height:auto;overflow:hidden;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}.card-content-section-item .card-content-section-item-image img{width:100%;aspect-ratio:4 / 3;-o-object-fit:cover;object-fit:cover;display:block}@media screen and (min-width: 64rem){.card-content-section-item .card-content-section-item-image{min-width:50%!important;width:100%}}.card-content-section-item.noImage.onlyCta{justify-content:center}.card-content-section-item.card-content-section-item-card-style-flushed{overflow:unset}@media screen and (min-width: 64rem){.card-content-section-item.card-content-section-item-card-style-flushed{height:100%;display:flex;flex-direction:column;gap:0}}.card-content-section-item.card-content-section-item-card-style-flushed .card-content-section-item-image{border-radius:1.3rem 1.3rem 0 0}@media screen and (min-width: 64rem){.card-content-section-item.card-content-section-item-card-style-flushed .card-content-section-item-image img,.card-content-section-item.card-content-section-item-card-style-flushed .card-content-section-item-image picture{height:100%}}.card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{height:100%}@media screen and (min-width: 64rem){[dir=ltr] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-top-right-radius:1.3rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-top-left-radius:1.3rem}[dir=ltr] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-bottom-right-radius:1.3rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-bottom-left-radius:1.3rem}.card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-radius:0}}.card-content-section-item.card-content-section-item-card-style-clear{background-color:transparent!important;overflow:unset}[dir=ltr] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-left:1rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-right:1rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-left:0}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-right:0}}@media screen and (min-width: 64rem){[dir=ltr] .card-content-section-item.card-content-section-item-card-style-clear.card-content-section-item-cards-1 .card-content-section-item-text{padding-left:0;padding-right:4rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-clear.card-content-section-item-cards-1 .card-content-section-item-text{padding-right:0;padding-left:4rem}}.card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-image{border-radius:1.3rem}.card-content-section-item.card-content-section-item-card-style-normal .card-content-section-item-image{padding:1.5rem;padding-bottom:0}@media screen and (min-width: 64rem){.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1{height:100%;display:flex}[dir=ltr] .card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1 .card-content-section-item-image{padding-left:0}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1 .card-content-section-item-image{padding-right:0}.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1 .card-content-section-item-image{padding:var(--card-content-padding)}.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-2 .card-content-section-item-image,.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-3 .card-content-section-item-image,.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-4 .card-content-section-item-image{padding:var(--card-content-padding);padding-bottom:0}}.card-content-section-item.card-content-section-item-card-style-normal .card-content-section-item-image img,.card-content-section-item.card-content-section-item-card-style-normal .card-content-section-item-image picture{border-radius:1rem}@media screen and (max-width: 41rem){.card-content-carousel-section .card-content-section-carousel-slides-per-view-4:not(.carousel-disabled),.card-content-carousel-section .card-content-section-carousel-slides-per-view-3:not(.carousel-disabled){margin-bottom:3.8rem}}.card-wrapped-content-section .card-content-section-header{margin-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.card-wrapped-content-section .card-content-section-header{margin-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.card-wrapped-content-section .card-wrapped-content{display:grid;grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content;max-width:100%;grid-template-columns:repeat(1,1fr);grid-gap:1rem}@media screen and (min-width: 41.0625rem){.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-1{grid-template-columns:repeat(1,1fr);grid-gap:1rem}}@media screen and (min-width: 41.0625rem){.card-wrapped-content-section .card-wrapped-content{grid-template-columns:repeat(2,1fr);grid-gap:1.5rem}.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-2{grid-template-columns:repeat(2,1fr)}.card-wrapped-content-section .card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-1{display:flex;align-items:center;flex-direction:row-reverse;justify-self:center}}@media screen and (min-width: 91.875rem){.card-wrapped-content-section .card-wrapped-content{grid-template-columns:repeat(3,1fr);grid-gap:2rem}.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-3{grid-template-columns:repeat(3,1fr)}}@media screen and (min-width: 120rem){.card-wrapped-content-section .card-wrapped-content{grid-template-columns:repeat(4,1fr);grid-gap:2rem}.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-4{grid-template-columns:repeat(4,1fr)}}.card-wrapped-content-section .card-wrapped-content .card-content-section-item{height:100%}@media screen and (min-width: 41.0625rem){.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-1,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-2,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-3,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-4{--card-content-padding: 3rem}}@media screen and (min-width: 91.875rem){.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-3,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-4{--card-content-padding: 2rem}}@media screen and (min-width: 120rem){.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-4{--card-content-padding: 1.5rem}}.clickthru-section-wrapper .clickthru-image-grid-item .clickthru-image img{border-radius:.25rem;display:block;width:100%;height:auto}.clickthru-section-wrapper .clickthru-cta-grid-item a{width:100%}.cta-section .section-wrapper-graphics-bottom{--height: 45vw}@media (min-width: 120rem){.cta-section .section-wrapper-graphics-bottom{--height: 54rem}}@media (max-width: 63.9375rem){.cta-section .app-download-group-row-mobile{justify-content:start!important}}.cta-section .cta-section-item{z-index:1;margin-bottom:1rem}@media (min-width: 64rem){.cta-section .cta-section-item{margin-bottom:0}}.discovery-card{text-decoration:none;position:relative;display:block;border-radius:1rem;outline:none;z-index:0}[dir=ltr] .discovery-card .discovery-card-container{padding-left:.75rem}[dir=rtl] .discovery-card .discovery-card-container,[dir=ltr] .discovery-card .discovery-card-container{padding-right:.75rem}[dir=rtl] .discovery-card .discovery-card-container{padding-left:.75rem}.discovery-card .discovery-card-container{width:100%;height:5rem;display:flex;align-items:center;justify-content:space-between}.discovery-card .discovery-card-container .discovery-card-content{display:flex;align-items:center}[dir=ltr] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-left:1rem}[dir=rtl] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-right:1rem}[dir=ltr] .discovery-card .discovery-card-container .discovery-card-content span{padding-right:.5rem}[dir=rtl] .discovery-card .discovery-card-container .discovery-card-content span{padding-left:.5rem}.discovery-card .discovery-card-container .discovery-card-content img{width:2.5rem;height:2.5rem}.discovery-card:hover,.discovery-card:focus{outline:none;text-decoration:none}.discovery-card:hover .arrow-icon-theme>svg,.discovery-card:focus .arrow-icon-theme>svg{transform:translate(.25rem)}.discovery-card:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background-color:inherit;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;border-radius:1rem}.discovery-card:hover:before{top:-.1875rem;right:-.125rem;bottom:-.1875rem;left:-.125rem;border-radius:1rem}.discovery-card:active:before{top:0;right:0;bottom:0;left:0;border-radius:1rem}.discovery-card.focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:0;right:0;bottom:0;left:0;box-shadow:0 0 0 .375rem #1072eb29}.discovery-card:focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:0;right:0;bottom:0;left:0;box-shadow:0 0 0 .375rem #1072eb29}@media (min-width: 64rem){[dir=ltr] .discovery-card .discovery-card-container{padding-left:1.5rem}[dir=rtl] .discovery-card .discovery-card-container,[dir=ltr] .discovery-card .discovery-card-container{padding-right:1.5rem}[dir=rtl] .discovery-card .discovery-card-container{padding-left:1.5rem}.discovery-card .discovery-card-container{height:5.5rem}[dir=ltr] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-left:1.5rem}[dir=rtl] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-right:1.5rem}.discovery-card .discovery-card-container .discovery-card-content img{width:4rem;height:4rem}.discovery-card:focus:after,.discovery-card:focus:before{height:5.5rem}}@media (max-width: 23.375rem){.discovery-card .discovery-card-container{height:100%;padding:1.25rem 0}.discovery-card:focus:after,.discovery-card:focus:before{height:100%}}.discovery-link-section-textgroup-griditem{margin-bottom:3rem}@media (min-width: 41.0625rem){.discovery-link-section-textgroup-griditem{margin-bottom:4.5rem}}@media (min-width: 64rem){.discovery-link-section-textgroup-griditem{margin-bottom:4rem}}@media (min-width: 120rem){.discovery-link-section-textgroup-griditem{margin-bottom:4.5rem}}.accordion-item{border-bottom:2px solid #c6c6c6;padding-bottom:1.5rem;margin-bottom:1.5rem}@media (min-width: 41.0625rem){.accordion-item{padding-bottom:3rem;margin-bottom:3rem}}.accordion-item:last-child{margin-bottom:0;border-bottom:none}.accordion-item-headline-container{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}.accordion-item-subheading{padding-top:1rem}[dir=ltr] .accordion-item .accordion-item-headline{text-align:left}[dir=rtl] .accordion-item .accordion-item-headline{text-align:right}.accordion-item .accordion-item-headline{background:none;border:none;cursor:pointer;padding:0;width:100%;color:inherit;position:relative;padding-bottom:.5rem}[dir=ltr] .accordion-item .accordion-item-headline .accordion-item-headline-text{padding-right:30px}[dir=rtl] .accordion-item .accordion-item-headline .accordion-item-headline-text{padding-left:30px}.accordion-item .accordion-item-headline.focus-visible{border:none;outline:none}.accordion-item .accordion-item-headline:focus-visible{border:none;outline:none}.accordion-item .accordion-item-headline.focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .5rem);pointer-events:none}.accordion-item .accordion-item-headline:focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .5rem);pointer-events:none}.accordion-item .accordion-item-headline .accordion-item-icon{transform-origin:center}.accordion-item .accordion-item-headline .accordion-item-icon svg{color:#9da3a6}.accordion-item p,.accordion-item ol,.accordion-item ul{padding-top:.5rem}[dir=ltr] .accordion-item ol,[dir=ltr] .accordion-item ul{padding-left:20px}[dir=rtl] .accordion-item ol,[dir=rtl] .accordion-item ul{padding-right:20px}.accordion-item ol,.accordion-item ul{margin-top:0;margin-bottom:0}@media (min-width: 41.0625rem){.accordion-item p,.accordion-item li{max-width:90%}}@media only screen and (min-width: 64rem){.accordion-item-icon{width:2.5rem;height:2.5rem}.accordion-item-icon span{width:100%;height:100%}}.accordion.blue-600-plate .accordion-item{border-color:var(--style-small-fill)}.accordion.blue-600-plate .accordion-item-icon svg{color:var(--style-icon-color)}.accordion .accordion-headline{margin:0 0 4vw}.accordion .text-group-headline{margin-bottom:2.5rem}@media (min-width: 64rem){.accordion .text-group-headline{margin-bottom:4rem}}.accordion .accordion-with-cta .accordion-item:last-child{border-bottom:2px solid #c6c6c6}.accordion-inline-cta{display:block;margin-top:1.75rem}@media (min-width: 64rem){.accordion-inline-cta{margin-top:2.75rem}}.accordion.blue-600-plate .accordion-inline-cta{border-color:var(--style-small-fill)}.grid-compact .feature-column-item-image img{width:4.5rem;height:4.5rem;margin-bottom:1rem}.grid-compact .feature-column-item-text-group,.grid-compact .feature-column-item-text-group .text-group-content-button-group{margin-bottom:0rem}@media (min-width: 41.0625rem){.grid-compact .feature-column-item-image img{margin-bottom:1.5rem}}.feature-column-item .truncated-text-group-truncate-button{margin-top:0}.feature-column-item-image img{width:6rem;height:6rem;margin-bottom:2rem}.feature-column-item-text-group{margin-bottom:1rem}.feature-column-item-text-group .text-group-content-button-group{margin-top:0;margin-bottom:1rem}@media (min-width: 41.0625rem){.feature-column-item-image{transform-origin:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.feature-column-item-image img{width:6rem;height:6rem;transform:translate(-10%)}}@media screen and (min-width: 64rem){.feature-column-item-image img{width:7.5rem;height:7.5rem;margin-bottom:3rem}.feature-column-item-text-group,.feature-column-item-text-group .text-group-subheading{margin-bottom:1.5rem}.feature-column-item-text-group .text-group-paragraph{margin-bottom:1.125rem}}@media screen and (min-width: 91.875rem){[dir=ltr] .feature-column-item{padding-right:2rem}[dir=rtl] .feature-column-item{padding-left:2rem}}@media screen and (min-width: 120rem){[dir=ltr] .feature-column-item{padding-right:0}[dir=rtl] .feature-column-item{padding-left:0}.feature-column-item{max-width:19.5rem}}.image-parallax-frame{position:relative;top:0;right:0;bottom:0;left:0;height:100%;width:100%;overflow:hidden;background:yellow}.image-parallax-frame-inner{width:100%;width:var(--image, 100%);position:absolute;top:0;right:0;bottom:0;left:0;transform-origin:top;will-change:transform}.image-parallax-frame-inner img{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.grid-compact.feature-column .feature-column-col.feature-column-start-col{margin-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid-compact.feature-column .feature-column-col.feature-column-start-col{margin-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}@media only screen and (min-width: 64rem){.grid-compact.feature-column .feature-column-col.feature-column-start-col{min-height:clamp(10rem,8.285714285714286rem + 2.6785714285714284vw,11.5rem)}@supports not (font-size: clamp(10rem,8.285714285714286rem + 2.6785714285714284vw,11.5rem)){.grid-compact.feature-column .feature-column-col.feature-column-start-col{min-height:min(max(10rem,8.285714285714286rem + 2.6785714285714284vw),11.5rem)}}}@media screen and (min-width: 91.875rem){.grid-compact.feature-column .feature-column-with-padding{padding-bottom:3.5rem}}.grid-compact.feature-column .feature-column-col .text-group p.text-group-subheading{margin-bottom:0}.feature-column{position:relative}.feature-column .feature-column-col.feature-column-start-col{margin-bottom:8vw}.feature-column .feature-column-end-col{display:none}.feature-column .feature-column-spacer{z-index:-1}.feature-column .feature-column-with-padding{padding-bottom:2rem}.feature-column.feature-column-no-graphic-shape .feature-column-col.feature-column-start-col{min-height:0}@media screen and (max-width: 64rem){.feature-column .feature-column-col .text-group p{margin-bottom:.625rem}}@media screen and (min-width: 41.0625rem){.feature-column .feature-column-end-col{display:none}}@media screen and (min-width: 64rem){.feature-column .feature-column-col.feature-column-start-col{min-height:max(10.625rem,min(16vw,20.125rem));margin-bottom:4vw}.feature-column .feature-column-no-padding{padding-bottom:0}}@media screen and (min-width: 91.875rem){.feature-column .feature-column-col.feature-column-start-col{min-height:max(10.625rem,min(14vw,20.125rem))}.feature-column .feature-column-with-padding{padding-bottom:4.5rem}.feature-column .feature-column-end-col{display:block}}@media screen and (min-width: 120rem){.feature-column .feature-column-col.feature-column-start-col{min-height:max(10.625rem,min(16vw,20.125rem))}}.feature-column.white-plate.grid .feature-graphic-section{--color-background: #ffffff}.feature-column.gold-plate.grid .feature-graphic-section{--color-background: #ffd140}.feature-column.blue-500-plate.grid .feature-graphic-section{--color-background: #0070e0}.feature-column.blue-600-plate.grid .feature-graphic-section{--color-background: #003087}.feature-column.blue-700-plate.grid .feature-graphic-section{--color-background: #001c64}.feature-column.neutral-100-plate.grid .feature-graphic-section{--color-background: #faf8f5}section>.segment-control-group-container{display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative}.segment-control-group-tabs-container{display:flex;flex-direction:row;align-items:center;background-color:#f1ede8;border-radius:6rem}.segment-control-group-tabs-container>.segment-control-group-tab,.segment-control-group-tabs-container>.segment-control-group-tab-active{white-space:nowrap;text-align:center;text-decoration:none;cursor:pointer;align-self:center;margin:.25rem;padding:.1875rem .625rem;background-color:transparent;z-index:0;position:relative}.segment-control-group-tabs-container>.segment-control-group-tab-active:before{content:\\\"\\\";position:absolute;top:0rem;right:0rem;bottom:0rem;left:0rem;background-color:#fff;z-index:-1;border-radius:5.5rem;transition:all .3s cubic-bezier(.22,1,.36,1)}.segment-control-group-tabs-container>.segment-control-group-tab-active:hover:before{top:-.0625rem;right:-.0625rem;bottom:-.0625rem;left:-.0625rem;box-shadow:0 0 .125rem #0000000a,0 .0625rem .75rem #00000014}.segment-control-group-tabs-container>.segment-control-group-tab-active:active{color:#545d68}.segment-control-group-tabs-container>.segment-control-group-tab-active:active:before{top:.0625rem;right:.0625rem;bottom:.0625rem;left:.0625rem;box-shadow:0 0 .125rem #0000000a,0 .0625rem .75rem #00000014}.segment-control-group-tabs-container>.segment-control-group-tab-active.focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;outline-offset:0}.segment-control-group-tabs-container>.segment-control-group-tab-active:focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;outline-offset:0}.segment-control-group-tabs-container>.segment-control-group-tab:before{content:\\\"\\\";position:absolute;top:.25rem;right:.25rem;bottom:.25rem;left:.25rem;z-index:-1;transition:all .3s cubic-bezier(.22,1,.36,1)}.segment-control-group-tabs-container>.segment-control-group-tab:hover:before{border-radius:5.5rem;background-color:#e6e0d9;top:0rem;right:0rem;bottom:0rem;left:0rem}.segment-control-group-tabs-container>.segment-control-group-tab:active{color:#545d68}.segment-control-group-tabs-container>.segment-control-group-tab:active:before{top:0;right:0;bottom:0;left:0}.segment-control-group-tabs-container>.segment-control-group-tab.focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;padding:.1875rem .625rem;margin:.25rem;outline-offset:0}.segment-control-group-tabs-container>.segment-control-group-tab:focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;padding:.1875rem .625rem;margin:.25rem;outline-offset:0}@media only screen and (min-width: 64rem){.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible{margin:.375rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible{margin:.375rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible{padding:.375rem 1rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible{padding:.375rem 1rem}}@media only screen and (min-width: 91.875rem){.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{margin:.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{margin:.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{padding:.75rem 1.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{padding:.75rem 1.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active:hover:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active:active:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}}.grid-compact.font-quantum-leap .segment-control-group-tabs-container{background-color:#f3f3f6}.grid-compact.font-quantum-leap .segment-control-group-tab:hover:before{background-color:#dbdde0}.scroll-sticky-button-container{position:fixed;bottom:1rem;right:1rem;z-index:10}.scroll-sticky-button-container button{min-width:3rem;padding:0;width:clamp(3rem,2.5145631067961167rem + 2.071197411003236vw,5rem);height:clamp(3rem,2.5145631067961167rem + 2.071197411003236vw,5rem);background-color:#e9e6e2;border-color:transparent}@supports not (font-size: clamp(3rem,2.5145631067961167rem + 2.071197411003236vw,5rem)){.scroll-sticky-button-container button{width:min(max(3rem,2.5145631067961167rem + 2.071197411003236vw),5rem);height:min(max(3rem,2.5145631067961167rem + 2.071197411003236vw),5rem)}}.scroll-sticky-button-container button span{width:52.7%;position:relative;top:3%}.scroll-sticky-button-container button span svg{width:100%;height:100%}.scroll-sticky-button-container button span svg path{color:#c6c6c6}.scroll-sticky-button-container button:hover{background-color:#e9e6e2;border-color:transparent}.scroll-sticky-button-container button:hover>span>svg>path{fill:#121661}.scroll-sticky-button-container button:active{background-color:#e9e6e2;border-color:transparent}.scroll-sticky-button-container button:active>span>svg>path{fill:#1040c1}.scroll-sticky-button-container button:focus>span>svg>path{fill:#142c8e}@media only screen and (min-width: 23.4375rem){.article-sticky-button-container{bottom:1.5rem;right:1.5rem}}@media only screen and (min-width: 41.0625rem){.article-sticky-button-container{bottom:2rem;right:2rem}}.action-card{width:100%;text-align:center;border-radius:1rem}.action-card .action-card-container{padding:1.875rem 1.5rem}.action-card .action-card-container p,.action-card .action-card-container a{display:block}.action-card .action-card-container .body-text-size-body-large{margin-bottom:.875rem}.action-card-type-link-with-divider{border-radius:0;border-top:1px solid #929496}.action-card-type-link-with-divider.blue-600-plate{border-top:1px solid #b9effc}.action-card-type-link-with-divider .action-card-container{padding:1rem;display:flex;gap:.5rem;justify-content:center;align-items:center;flex-wrap:wrap}@media (min-width: 64rem){.action-card{border-radius:1rem}.action-card .action-card-container{padding:2.375rem 1.5rem}.action-card .action-card-container p,.action-card .action-card-container a{display:inline-block}.action-card .action-card-container .body-text-size-body-large{margin-bottom:0}[dir=ltr] .action-card .action-card-container .action-card-button{padding-left:1rem}[dir=rtl] .action-card .action-card-container .action-card-button{padding-right:1rem}.action-card.action-card-type-contact-form{border-radius:0;text-align:initial;background:none}.action-card.action-card-type-contact-form .action-card-container{padding:.875rem 0}.action-card.action-card-type-contact-form .action-card-container p,.action-card.action-card-type-contact-form .action-card-container a{display:block}.action-card.action-card-type-contact-form .action-card-container .body-text-size-body-large{margin-bottom:.375rem}[dir=ltr] .action-card.action-card-type-contact-form .action-card-container .action-card-button{padding-left:0}[dir=rtl] .action-card.action-card-type-contact-form .action-card-container .action-card-button{padding-right:0}.action-card-type-link-with-divider{border-radius:0}.action-card-type-link-with-divider .action-card-container{padding:1.5rem;gap:1rem}[dir=ltr] .action-card-type-link-with-divider .action-card-container .action-card-button{padding-left:0}[dir=rtl] .action-card-type-link-with-divider .action-card-container .action-card-button{padding-right:0}}.form-iframe-wrapper .form-iframe-form-spinner{align-items:center;background-color:#fff;border-radius:1rem;display:flex;flex-direction:column;justify-content:center;position:absolute;top:0;right:0;bottom:0;left:0;z-index:10}.form-iframe-wrapper .form-iframe-form-spinner .form-iframe-loading-text{color:#001435;padding-bottom:1rem}.form-iframe-wrapper .form-iframe-form-spinner .form-iframe-spinner{animation:spin .7s linear infinite;border:.375rem solid #c9c9ca;border-radius:50%;border-top:.375rem solid #003087;height:2rem;width:2rem}.form-iframe-wrapper .form-iframe{width:100%}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.pardot-form{background-color:#fff;border-radius:1rem;margin:0 auto;padding:2rem 0 0;position:relative;width:100%}.pardot-form.bg-neutral-100{background-color:#faf8f5}.pardot-form.pardot-form-has-shadow{box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.pardot-form .pardot-form-intro-section{padding-left:2rem;padding-right:2rem}.pardot-form .pardot-form-intro-section:not(:empty){padding-bottom:1rem}@media (min-width: 64rem){.pardot-form{padding:4.5rem 0 2rem}}@media (min-width: 91.875rem){.pardot-form{padding:4.5rem 2.5rem 2rem}}@media screen and (min-width: 107.875rem){.pardot-form .pardot-form-intro-section:not(:empty){padding-bottom:1.5rem}}.contact-sales .contact-sales-heading-col .contact-sales-textgroup{margin-bottom:2rem}.contact-sales .contact-sales-form-col{border-radius:1rem}.contact-sales .contact-sales-contact-col .action-card{margin-top:2rem}@media screen and (max-width: 41rem){.contact-sales .section-wrapper-graphics-top{display:none}}@media (min-width: 64rem){.contact-sales .contact-sales-heading-col .contact-sales-textgroup{margin-bottom:3rem}.contact-sales .contact-sales-contact-col .action-card{margin:0}.contact-sales .section-wrapper-graphics-top{display:block}}@media (min-width: 91.875rem){.contact-sales .contact-sales-heading-col .contact-sales-textgroup{margin-bottom:4.875rem}}.sub-nav-container{width:100%;display:flex;align-items:center;justify-content:space-between;padding-left:1.5rem;padding-right:1.5rem}@media (min-width: 36rem){.sub-nav-container{padding-left:2.25rem;padding-right:2.25rem}}@media (min-width: 64rem){.sub-nav-container{padding-left:2rem;padding-right:2rem}}@media (min-width: 72rem){.sub-nav-container{max-width:86.875rem;margin:0 auto}}@media (min-width: 91.875rem){.sub-nav-container{padding-left:0;padding-right:0;max-width:none;margin:0}}@media (max-width: 18.75rem){[dir=ltr] .sub-nav-grid-item-overflow .sub-nav-container{margin-left:auto}[dir=rtl] .sub-nav-grid-item-overflow .sub-nav-container{margin-right:auto}.sub-nav-grid-item-overflow .sub-nav-container{padding-left:1rem;padding-right:1rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}}.nav-button{cursor:pointer;background:transparent;border:none;outline:none;z-index:0;overflow:visible}.nav-button-text{line-height:1.5rem}.nav-button-type-icon-button{position:relative}.nav-button-type-icon-button:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-icon-button:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-icon-button.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-icon-button:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-icon-button:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-icon-button.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-icon-button:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-icon-button:before{border-radius:2rem}@media (hover: hover) and (pointer: fine){.nav-button-type-icon-button:hover:before{top:0;right:0;bottom:0;left:0}}.nav-button-type-icon-button:before,.nav-button-type-icon-button:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.nav-button-type-icon-button:before{border-radius:50%}.nav-button-type-icon-button svg{display:block}.nav-button-type-icon-button.focus-visible svg path{fill:var(--component-link)}.nav-button-type-icon-button:focus-visible svg path{fill:var(--component-link)}@media (hover: hover) and (pointer: fine){.nav-button-type-icon-button:hover svg path{fill:var(--component-link)}}.nav-button-type-collapsible{position:relative;text-align:center;padding:.5rem .75rem;word-break:keep-all}.nav-button-type-collapsible:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-collapsible:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-collapsible:before{border-radius:2rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible:hover:before{top:0;right:0;bottom:0;left:0}}.nav-button-type-collapsible:before,.nav-button-type-collapsible:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.nav-button-type-collapsible[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-collapsible[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}.nav-button-type-collapsible[class$=page-active].focus-visible:before,.nav-button-type-collapsible[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible[class$=page-active]:focus-visible:before,.nav-button-type-collapsible[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}.nav-button-type-collapsible[aria-expanded=true]:not(:hover):before{border:none;background-color:#b9effc66}}@media (hover: none){.nav-button-type-collapsible[aria-expanded=true]:before{border:none;background-color:#b9effc66}}.nav-button-type-collapsible[aria-expanded=true].focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible[aria-expanded=true]:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}[dir=ltr] .nav-button-type-collapsible .chevron-down-icon{margin-left:.375rem}[dir=rtl] .nav-button-type-collapsible .chevron-down-icon{margin-right:.375rem}.nav-button-type-collapsible .chevron-down-icon{vertical-align:middle;width:1rem;height:1rem;transition:transform .2s cubic-bezier(.22,1,.36,1);will-change:transform}.nav-button-type-collapsible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible[aria-expanded=true] .chevron-down-icon{transform:rotate(180deg)}.nav-button-type-collapsible.focus-visible .nav-button-text{color:var(--component-link)}.nav-button-type-collapsible:focus-visible .nav-button-text{color:var(--component-link)}.nav-button-type-collapsible:active .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible.focus-visible .chevron-down-icon path{fill:var(--component-link)}.nav-button-type-collapsible:focus-visible .chevron-down-icon path{fill:var(--component-link)}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible:hover .nav-button-text{color:var(--component-link)}.nav-button-type-collapsible[aria-expanded=true]:not(:hover) .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible:hover .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true].focus-visible:hover .chevron-down-icon path{fill:var(--component-link)}.nav-button-type-collapsible:hover .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true]:focus-visible:hover .chevron-down-icon path{fill:var(--component-link)}}.nav-button-type-collapsible:active .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true].focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible:active .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true]:focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible-dropdown:after{content:attr(data-text);color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;line-height:1.5rem;letter-spacing:-.02em;display:block;height:0;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}.nav-button-type-collapsible-dropdown:active .nav-button-text,.nav-button-type-collapsible-dropdown.focus-visible .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[aria-expanded=true] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.02em}.nav-button-type-collapsible-dropdown:active .nav-button-text,.nav-button-type-collapsible-dropdown:focus-visible .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[aria-expanded=true] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.02em}.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active].focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active]:focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible-dropdown[class$=page-active]:active .nav-button-text{color:var(--style-headline-text)}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-dropdown:hover .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.02em}.nav-button-type-collapsible-dropdown[class$=page-active]:hover .nav-button-text{color:var(--component-link)}}.nav-button-type-collapsible-dropdown .chevron-down-icon{margin-top:-.125rem}.nav-button-type-collapsible-dropdown[aria-expanded=true] .chevron-down-icon{margin-top:-.15625rem}[dir=ltr] .nav-button-type-collapsible-accordion,[dir=ltr] .nav-button-type-collapsible-nav-popup{text-align:left}[dir=rtl] .nav-button-type-collapsible-accordion,[dir=rtl] .nav-button-type-collapsible-nav-popup{text-align:right}.nav-button-type-collapsible-accordion,.nav-button-type-collapsible-nav-popup{position:relative;width:100%;padding:.5rem 0;display:flex;justify-content:space-between;align-items:center}.nav-button-type-collapsible-accordion:before,.nav-button-type-collapsible-nav-popup:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-collapsible-accordion:active:before,.nav-button-type-collapsible-nav-popup:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-accordion.focus-visible:before,.nav-button-type-collapsible-nav-popup.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion:focus-visible:before,.nav-button-type-collapsible-nav-popup:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion:hover:before,.nav-button-type-collapsible-nav-popup:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-accordion.focus-visible:hover:before,.nav-button-type-collapsible-nav-popup.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion:focus-visible:hover:before,.nav-button-type-collapsible-nav-popup:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-collapsible-accordion:before,.nav-button-type-collapsible-nav-popup:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion:hover:before,.nav-button-type-collapsible-nav-popup:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-collapsible-accordion:before,.nav-button-type-collapsible-nav-popup:before,.nav-button-type-collapsible-accordion:active:before,.nav-button-type-collapsible-nav-popup:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion[aria-expanded=true]:not(:hover):before,.nav-button-type-collapsible-nav-popup[aria-expanded=true]:not(:hover):before{border:none;box-shadow:none;background-color:transparent}}@media (hover: none){.nav-button-type-collapsible-accordion[aria-expanded=true]:before,.nav-button-type-collapsible-nav-popup[aria-expanded=true]:before{border:none;box-shadow:none;background-color:transparent}}.nav-button-type-collapsible-accordion[aria-expanded=true].focus-visible:before,.nav-button-type-collapsible-nav-popup[aria-expanded=true].focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion[aria-expanded=true]:focus-visible:before,.nav-button-type-collapsible-nav-popup[aria-expanded=true]:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion .nav-button-text,.nav-button-type-collapsible-nav-popup .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.nav-button-type-collapsible-accordion .chevron-down-icon,.nav-button-type-collapsible-nav-popup .chevron-down-icon{height:1.5rem;width:1.5rem}.nav-button-type-collapsible-accordion.focus-visible .nav-button-text,.nav-button-type-collapsible-nav-popup.focus-visible .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion:focus-visible .nav-button-text,.nav-button-type-collapsible-nav-popup:focus-visible .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion.focus-visible .chevron-down-icon path,.nav-button-type-collapsible-nav-popup.focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible-accordion:focus-visible .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion:hover .nav-button-text,.nav-button-type-collapsible-nav-popup:hover .nav-button-text,.nav-button-type-collapsible-accordion.focus-visible:hover .nav-button-text,.nav-button-type-collapsible-nav-popup.focus-visible:hover .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion:hover .nav-button-text,.nav-button-type-collapsible-nav-popup:hover .nav-button-text,.nav-button-type-collapsible-accordion:focus-visible:hover .nav-button-text,.nav-button-type-collapsible-nav-popup:focus-visible:hover .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:hover .chevron-down-icon path,.nav-button-type-collapsible-accordion.focus-visible:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup.focus-visible:hover .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible-accordion:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:hover .chevron-down-icon path,.nav-button-type-collapsible-accordion:focus-visible:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:focus-visible:hover .chevron-down-icon path{fill:var(--style-headline-text)}}.nav-button-type-collapsible-accordion:active .nav-button-text,.nav-button-type-collapsible-nav-popup:active .nav-button-text{color:#003087}.nav-button-type-collapsible-accordion:active .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:active .chevron-down-icon path{fill:#003087}.nav-button-type-collapsible-nav-popup{position:relative;justify-content:unset;align-items:center;width:auto}.nav-button-type-collapsible-nav-popup:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-collapsible-nav-popup:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-nav-popup.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-nav-popup:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-nav-popup:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-nav-popup.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-nav-popup:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-collapsible-nav-popup:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-nav-popup:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-collapsible-nav-popup:before,.nav-button-type-collapsible-nav-popup:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}@media (hover: hover) and (pointer: fine){[dir=ltr] .nav-button-type-collapsible-nav-popup:hover:before{right:-.25rem}[dir=rtl] .nav-button-type-collapsible-nav-popup:hover:before{left:-.25rem}}[dir=ltr] .nav-button-type-collapsible-nav-popup:before,[dir=ltr] .nav-button-type-collapsible-nav-popup:active:before{right:-.125rem}[dir=rtl] .nav-button-type-collapsible-nav-popup:before,[dir=rtl] .nav-button-type-collapsible-nav-popup:active:before{left:-.125rem}.nav-button-type-collapsible-nav-popup[aria-expanded=true]:before{display:none}[dir=ltr] .nav-button-type-collapsible-nav-popup .chevron-down-icon{margin-left:.5rem;margin-right:.375rem}[dir=rtl] .nav-button-type-collapsible-nav-popup .chevron-down-icon{margin-right:.5rem;margin-left:.375rem}.nav-button-type-collapsible-nav-popup .chevron-down-icon{position:relative;top:.125rem}.nav-button-type-link{display:block;text-decoration:none!important;padding:.5rem .75rem}.nav-button-type-link:active .nav-button-text,.nav-button-type-link.focus-visible .nav-button-text,.nav-button-type-link[class$=page-active] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}.nav-button-type-link:active .nav-button-text,.nav-button-type-link:focus-visible .nav-button-text,.nav-button-type-link[class$=page-active] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}.nav-button-type-link[class$=page-active] .nav-button-text{color:var(--component-button-primary)}.nav-button-type-link.focus-visible .nav-button-text{color:var(--component-link)}.nav-button-type-link:focus-visible .nav-button-text{color:var(--component-link)}@media (hover: hover) and (pointer: fine){.nav-button-type-link:hover .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em;color:var(--component-link)}}.nav-button-type-link:active .nav-button-text,.nav-button-type-link[class$=page-active].focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-link[class$=page-active]:focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-link[class$=page-active]:active .nav-button-text{color:var(--style-headline-text)}.nav-button-type-link-nav-link{position:relative;text-align:center}.nav-button-type-link-nav-link:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-link-nav-link:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-nav-link.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-link-nav-link:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-nav-link.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-link-nav-link:before{border-radius:2rem}@media (hover: hover) and (pointer: fine){.nav-button-type-link-nav-link:hover:before{top:0;right:0;bottom:0;left:0}}.nav-button-type-link-nav-link:before,.nav-button-type-link-nav-link:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.nav-button-type-link-nav-link[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-link-nav-link[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.nav-button-type-link-nav-link[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.nav-button-type-link-nav-link[class$=page-active].focus-visible:before,.nav-button-type-link-nav-link[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link[class$=page-active]:focus-visible:before,.nav-button-type-link-nav-link[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link:after{content:attr(data-text);color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;line-height:1.5rem;letter-spacing:-.02em;display:block;height:0;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}[dir=ltr] .nav-button-type-link-menu-link{padding-left:0;padding-right:2rem}[dir=rtl] .nav-button-type-link-menu-link{padding-right:0;padding-left:2rem}[dir=ltr] .nav-button-type-link-menu-link{text-align:left}[dir=rtl] .nav-button-type-link-menu-link{text-align:right}.nav-button-type-link-menu-link{position:relative;width:100%}.nav-button-type-link-menu-link:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-link-menu-link:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-menu-link.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-link-menu-link:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-menu-link.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-link-menu-link:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-link-menu-link:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-link-menu-link:before,.nav-button-type-link-menu-link:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}.nav-button-type-link-menu-link[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-link-menu-link[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.nav-button-type-link-menu-link[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.nav-button-type-link-menu-link[class$=page-active].focus-visible:before,.nav-button-type-link-menu-link[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link[class$=page-active]:focus-visible:before,.nav-button-type-link-menu-link[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link .arrow-right-icon{fill:var(--style-headline-text)}[dir=rtl] .nav-button-type-link-menu-link .arrow-right-icon{transform:scaleX(-1)}.nav-button-type-link-menu-link:active .nav-button-text{color:#545d68}.nav-button-type-link-menu-link:active .arrow-right-icon path{fill:#545d68}[dir=ltr] .nav-button-type-link-menu-link .nav-button-icon-arrow-right{right:0}[dir=rtl] .nav-button-type-link-menu-link .nav-button-icon-arrow-right{left:0}.nav-button-type-link-menu-link .nav-button-icon-arrow-right{position:absolute;top:0;height:100%;display:none!important}.nav-button-type-link-menu-link .nav-button-icon-arrow-right.nav-button-icon-arrow-right-visible{display:flex!important;align-items:center}[dir=ltr] .nav-button-type-link-title-link{text-align:left}[dir=rtl] .nav-button-type-link-title-link{text-align:right}.nav-button-type-link-title-link{position:relative;padding-left:0;padding-right:0;display:flex;align-items:center}.nav-button-type-link-title-link:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-link-title-link:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-title-link.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-title-link.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-link-title-link:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-link-title-link:before,.nav-button-type-link-title-link:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}.nav-button-type-link-title-link[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-link-title-link[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.nav-button-type-link-title-link[class$=page-active].focus-visible:before,.nav-button-type-link-title-link[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link[class$=page-active]:focus-visible:before,.nav-button-type-link-title-link[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link:not(:focus):hover .arrow-icon-theme>svg{transform:translate(.25rem)}.nav-button-type-link-title-link:active .arrow-icon-theme>svg{transition:.3s cubic-bezier(.22,1,.36,1);transition-property:transform,opacity;will-change:transform,opacity;transform:translate(.25rem)}.nav-button-type-link-title-link:active .nav-button-text,.nav-button-type-link-title-link.focus-visible .nav-button-text,.nav-button-type-link-title-link[class$=page-active] .nav-button-text{letter-spacing:normal}.nav-button-type-link-title-link:active .nav-button-text,.nav-button-type-link-title-link:focus-visible .nav-button-text,.nav-button-type-link-title-link[class$=page-active] .nav-button-text{letter-spacing:normal}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link:hover .nav-button-text{letter-spacing:normal}}.nav-button-type-link-title-link .nav-button-icon-arrow{align-self:center}[dir=ltr] .nav-button-type-link-title-link .nav-button-icon-arrow .arrow-icon{margin-left:.5rem}[dir=rtl] .nav-button-type-link-title-link .nav-button-icon-arrow .arrow-icon{margin-right:.5rem}.nav-button-type-link-title-link .nav-button-icon-arrow .arrow-icon{position:relative}@media (min-width: 64rem){.nav-button-type-collapsible-accordion{padding:.75rem 0}}[dir=ltr] .sub-nav-title{margin-right:auto}[dir=rtl] .sub-nav-title{margin-left:auto}.sub-nav-title{overflow-x:auto;margin:0;padding:.5rem 0;max-width:none;-webkit-mask-image:linear-gradient(90deg,#000 calc(100% - 1rem),#000 1rem,transparent);mask-image:linear-gradient(90deg,#000 calc(100% - 1rem),#000 1rem,transparent)}[dir=rtl] .sub-nav-title{-webkit-mask-image:linear-gradient(270deg,#000 calc(100% - 1rem),#000 1rem,transparent);mask-image:linear-gradient(270deg,#000 calc(100% - 1rem),#000 1rem,transparent)}[dir=ltr] .sub-nav-title .sub-nav-title-text{padding-right:.8rem}[dir=rtl] .sub-nav-title .sub-nav-title-text{padding-left:.8rem}.sub-nav-title .sub-nav-title-text{white-space:nowrap;overflow-x:auto;-ms-overflow-style:none;overflow-x:scroll;scrollbar-width:none}.sub-nav-title .sub-nav-title-text::-webkit-scrollbar{display:none}.sub-nav-title .sub-nav-title-icon{width:1.875rem;align-self:center;position:relative}[dir=ltr] .sub-nav-title+.sub-nav-cta-list{margin-left:.5rem}[dir=rtl] .sub-nav-title+.sub-nav-cta-list{margin-right:.5rem}.sub-nav-title-no-scrollable{flex-shrink:0;-webkit-mask-image:none;mask-image:none}[dir=rtl] .sub-nav-title-no-scrollable{-webkit-mask-image:none;mask-image:none}[dir=ltr] .sub-nav-title-no-scrollable .sub-nav-title-text,[dir=ltr] .sub-nav-title-no-scrollable .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-no-scrollable .sub-nav-title-text,[dir=rtl] .sub-nav-title-no-scrollable .nav-button-text{padding-left:0}.sub-nav-title-button,.sub-nav-title-link{-webkit-mask-image:none;mask-image:none;overflow:visible}[dir=rtl] .sub-nav-title-button,[dir=rtl] .sub-nav-title-link{-webkit-mask-image:none;mask-image:none}.sub-nav-title-button .nav-button-text,.sub-nav-title-link .nav-button-text{white-space:nowrap}[dir=ltr] .sub-nav-title-button .nav-button-text,[dir=ltr] .sub-nav-title-link .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-button .nav-button-text,[dir=rtl] .sub-nav-title-link .nav-button-text{padding-left:0}.sub-nav-title-button{max-width:-moz-available;max-width:-webkit-fill-available;max-width:fill-available}.sub-nav-title-button[aria-expanded=true]{visibility:hidden}.sub-nav-title-button .nav-button-text-wrapper{overflow-x:auto;-webkit-mask-image:linear-gradient(90deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(90deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent)}[dir=rtl] .sub-nav-title-button .nav-button-text-wrapper{-webkit-mask-image:linear-gradient(270deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(270deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent)}[dir=ltr] .sub-nav-title-button .nav-button-text-wrapper .nav-button-text{padding-right:.8rem}[dir=rtl] .sub-nav-title-button .nav-button-text-wrapper .nav-button-text{padding-left:.8rem}[dir=ltr] .sub-nav-title-button .chevron-down-icon{margin-left:-.3rem}[dir=rtl] .sub-nav-title-button .chevron-down-icon{margin-right:-.3rem}.sub-nav-title-button .chevron-down-icon{min-width:1.5rem}.sub-nav-title-popup{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:calc(100% - 2.5rem);padding:.625rem 0}[dir=ltr] .sub-nav-title-popup .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-popup .nav-button-text{padding-left:0}.sub-nav-title-popup .nav-button-text{white-space:unset}@media (max-width: 41.0625rem){.sub-nav-title-container{min-width:14px}}@media (min-width: 41.0625rem){.sub-nav-title,[dir=rtl] .sub-nav-title{-webkit-mask-image:none;mask-image:none}[dir=ltr] .sub-nav-title+.sub-nav-cta-list{margin-left:0}[dir=rtl] .sub-nav-title+.sub-nav-cta-list{margin-right:0}[dir=ltr] .sub-nav-title-text,[dir=ltr] .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-text,[dir=rtl] .nav-button-text{padding-left:0}}@media (max-width: 18.75rem){.sub-nav-title:not(.sub-nav-title-button):not(.sub-nav-title-popup){display:none}[dir=ltr] .sub-nav-title+.sub-nav-cta-list{margin-left:0}[dir=rtl] .sub-nav-title+.sub-nav-cta-list{margin-right:0}}.divider{border-color:#e6e0d9;border-style:solid;flex-shrink:0;margin:0}.divider-orientation-vertical{align-self:stretch;border-width:0 .0625rem 0 0;height:auto}.divider-orientation-horizontal{border-width:.0625rem 0 0 0}[dir=ltr] .sub-nav-items-list{margin-left:1.5rem}[dir=rtl] .sub-nav-items-list{margin-right:1.5rem}.sub-nav-items-list{list-style:none;margin:0;padding:0;display:flex;align-items:center}.sub-nav-items-list .sub-nav-list-item{flex-shrink:0}[dir=ltr] .sub-nav-items-list .sub-nav-list-item+.sub-nav-list-item{margin-left:.5rem}[dir=rtl] .sub-nav-items-list .sub-nav-list-item+.sub-nav-list-item{margin-right:.5rem}.sub-nav-items-list .sub-nav-list-item-dropdown,.sub-nav-items-list .sub-nav-list-item-accordion{position:relative}.sub-nav-items-list .sub-nav-list-item-accordion{padding:.75rem 0}.sub-nav-items-list .sub-nav-list-item-accordion:not(:last-of-type):not(.sub-nav-list-item-accordion-open):after{content:\\\"\\\";position:absolute;top:auto;right:0;bottom:0;left:0;height:.0625rem;background-color:#e6e0d9}.sub-nav-items-list .sub-nav-list-item-accordion.sub-nav-list-item-accordion-open:before{content:\\\"\\\";position:absolute;top:0;right:-1rem;bottom:0;left:-1rem;background-color:#faf8f5;border-radius:1rem}.sub-nav-items-list .sub-nav-list-item-accordion .sub-nav-item-button{z-index:1}.sub-nav-items-list .sub-nav-item-dropdown-menu{position:absolute;top:100%;right:0;bottom:auto;left:auto;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:1rem 1.5rem;border-radius:1rem;background-color:#fff;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;display:none!important}.sub-nav-items-list .sub-nav-item-dropdown-menu.sub-nav-item-dropdown-menu-show{display:block!important}.sub-nav-items-list .sub-nav-item-dropdown-menu.sub-nav-item-dropdown-menu-accordion-panel{position:relative;width:100%;box-shadow:none;padding:0;border-radius:0;background-color:#faf8f5}.sub-nav-items-list .sub-nav-item-dropdown-menu .sub-nav-item-dropdown-menu-divider{margin:.75rem 0}[dir=ltr] .sub-nav-items-list.sub-nav-items-list-orientation-vertical{margin-left:0}[dir=rtl] .sub-nav-items-list.sub-nav-items-list-orientation-vertical{margin-right:0}.sub-nav-items-list.sub-nav-items-list-orientation-vertical{flex-direction:column;align-items:flex-start;padding:0;overflow:unset;visibility:visible}.sub-nav-items-list.sub-nav-items-list-orientation-vertical .sub-nav-list-item{width:100%}[dir=ltr] .sub-nav-items-list.sub-nav-items-list-orientation-vertical .sub-nav-list-item+.sub-nav-list-item{margin-left:0}[dir=rtl] .sub-nav-items-list.sub-nav-items-list-orientation-vertical .sub-nav-list-item+.sub-nav-list-item{margin-right:0}@media (min-width: 64rem){.sub-nav-items-list .sub-nav-list-item-accordion{padding:.5rem 0}.sub-nav-items-list-orientation-vertical .sub-nav-item-button-accordion-control{padding:.75rem 0}}[dir=ltr] .sub-nav-cta-list{margin-left:0}[dir=rtl] .sub-nav-cta-list{margin-right:0}.sub-nav-cta-list{flex-shrink:0;padding:0}.sub-nav-cta-list.sub-nav-item-hidden{flex-shrink:unset}.sub-nav-cta-list .sub-nav-cta-item{width:auto}[dir=ltr] .sub-nav-cta-list .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-left:.5rem}[dir=rtl] .sub-nav-cta-list .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-right:.5rem}.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical{margin-top:1rem}.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item,.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-item{width:100%}[dir=ltr] .sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-left:0}[dir=rtl] .sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-right:0}.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-top:.5rem}@media (max-width: 18.75rem){.sub-nav-cta-list{width:100%}.sub-nav-cta-list .sub-nav-cta-item{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}}.sub-nav-popup{position:absolute;top:.5rem;right:var(--grid-gap);bottom:auto;left:var(--grid-gap);margin:0;background-color:#fff;padding:1rem 1.5rem;border:.0625rem solid #e6e0d9;border-radius:1rem;display:none!important;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.sub-nav-popup.sub-nav-popup-show{display:block!important}[dir=ltr] .sub-nav-popup .sub-nav-popup-close-btn{left:auto;right:1rem}[dir=rtl] .sub-nav-popup .sub-nav-popup-close-btn{right:auto;left:1rem}.sub-nav-popup .sub-nav-popup-close-btn{position:absolute;top:1rem;bottom:auto;padding:.6rem}@media (min-width: 41.0625rem){.sub-nav-popup{top:.75rem;max-width:21.875rem}}@media (min-width: 91.875rem){[dir=ltr] .sub-nav-popup{left:calc(-1 * var(--grid-gap))}[dir=rtl] .sub-nav-popup{right:calc(-1 * var(--grid-gap))}}.sub-nav-cta-motion-wrapper{flex-shrink:0}body.hide-horizontal-scrollbar{-ms-overflow-style:none;overflow-x:hidden!important;scrollbar-width:none}body.hide-horizontal-scrollbar::-webkit-scrollbar{display:none}.sub-nav{z-index:99;overflow:visible;transition:opacity .3s linear;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.sub-nav:after{position:absolute;content:\\\"\\\";top:auto;right:0;bottom:0;left:0;height:.0625rem;background-color:#e6e0d9}.sub-nav.sub-nav-position-fixed{height:auto;position:fixed;top:0;right:0;bottom:auto;left:0}.sub-nav.sub-nav-hidden{visibility:hidden;opacity:0!important}.sub-nav.sub-nav-visible{visibility:visible;opacity:1}.sub-nav.sub-nav-position-sticky{position:-webkit-sticky;position:sticky;top:0}.sub-nav.sub-nav-unpinned{height:auto;box-shadow:none}.sub-nav.sub-nav-pinned{height:auto;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}div.sub-nav-grid-item{align-self:stretch;display:flex;align-items:center;position:relative;max-width:100%}[dir=ltr] .sub-nav-divider-vertical{margin-right:1.5rem}[dir=rtl] .sub-nav-divider-vertical{margin-left:1.5rem}[dir=ltr] .sub-nav-divider-vertical{margin-left:1rem}[dir=rtl] .sub-nav-divider-vertical{margin-right:1rem}.sub-nav-divider-horizontal{margin:.75rem 0}.sub-nav-item-hidden{visibility:hidden;overflow:hidden;opacity:0}body.stacked-content .sub-nav{box-shadow:none}@media only screen and (max-width: 41.0625rem){[dir=ltr] .sub-nav-item-hidden{margin-left:0}[dir=rtl] .sub-nav-item-hidden{margin-right:0}.sub-nav-item-hidden{flex-basis:0}.sub-nav-item-hidden.sub-nav-divider-vertical{margin:0;width:0}}@media (max-width: 18.75rem){div.sub-nav-grid-item-overflow{overflow:auto}}.subnav-sectional{--subnav-sectional-offset-top: 1.5rem;--subnav-sectional-container-padding-x: .75rem;--subnav-sectional-active-link-color: rgba(185,239,252,.4);--subnav-sectional-title-bold-font-family: \\\"PayPalOpen-Bold\\\";box-shadow:unset;background-color:unset;height:0px!important}.subnav-sectional:after{display:none}.subnav-sectional .sub-nav-grid-item{background-color:#fff;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.subnav-sectional .sub-nav-grid-item .sub-nav-container{padding-left:var(--subnav-sectional-container-padding-x);padding-right:var(--subnav-sectional-container-padding-x)}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container p.sub-nav-title{padding-left:calc(var(--subnav-sectional-container-padding-x) + 1rem)}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container p.sub-nav-title{padding-right:calc(var(--subnav-sectional-container-padding-x) + 1rem)}.subnav-sectional .sub-nav-grid-item .sub-nav-container p.sub-nav-title{min-width:17.8125rem}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-container{padding-left:calc(var(--subnav-sectional-container-padding-x) + 1rem)}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-container{padding-right:calc(var(--subnav-sectional-container-padding-x) + 1rem)}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-container{min-width:17.8125rem}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title{margin-right:unset}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title{margin-left:unset}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title{color:var(--style-headline-text)}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-popup{padding-left:unset!important}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-popup{padding-right:unset!important}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title .sub-nav-title-text{font-size:1.1875rem}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title .sub-nav-title-text strong{font-family:var(--subnav-sectional-title-bold-font-family)}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-items-list:nth-of-type(1){flex-grow:1;margin-left:0;justify-content:center;gap:clamp(0rem,-4.9rem + 5.333333333333334vw,1.5rem)}@supports not (font-size: clamp(0rem,-4.9rem + 5.333333333333334vw,1.5rem)){.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-items-list:nth-of-type(1){gap:min(max(0rem,-4.9rem + 5.333333333333334vw),1.5rem)}}.subnav-sectional .nav-button-type-link{-webkit-tap-highlight-color:transparent}.subnav-sectional .nav-button-type-link.nav-button-type-link-page-active{background-color:var(--subnav-sectional-active-link-color);border-radius:2rem}.subnav-sectional .nav-button-type-link.nav-button-type-link-page-active .nav-button-text{font-weight:400}.subnav-sectional .nav-button-type-link.nav-button-type-link-page-active:before{background-color:unset}.subnav-sectional .sub-nav-items-list-orientation-vertical .nav-button-type-link.nav-button-type-link-page-active{background-color:unset}.subnav-sectional .sub-nav-items-list-orientation-vertical .nav-button-type-link.nav-button-type-link-page-active:before{background-color:var(--subnav-sectional-active-link-color)}@media (min-width: 64rem){.subnav-sectional{top:clamp(.5rem,-.6428571428571428rem + 1.7857142857142856vw,1.5rem)!important;margin-bottom:calc(-1 * var(--subnav-sectional-offset-top))}@supports not (font-size: clamp(.5rem,-.6428571428571428rem + 1.7857142857142856vw,1.5rem)){.subnav-sectional{top:min(max(.5rem,-.6428571428571428rem + 1.7857142857142856vw),1.5rem)!important}}.subnav-sectional .sub-nav-grid-item{margin:0 var(--grid-gap);border-radius:6.25rem}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-cta-list{min-width:15.625rem;justify-content:flex-end}}@media (min-width: 91.875rem){.subnav-sectional .sub-nav-grid-item{margin:0 clamp(2rem,-30.66666666666667rem + 35.55555555555556vw,12rem)}@supports not (font-size: clamp(2rem,-30.66666666666667rem + 35.55555555555556vw,12rem)){.subnav-sectional .sub-nav-grid-item{margin:0 min(max(2rem,-30.66666666666667rem + 35.55555555555556vw),12rem)}}}@media (min-width: 120rem){.subnav-sectional .sub-nav-grid-item{margin:0 calc(2 * var(--grid-gap))}}.text-section-alignment-5-col-to-end{padding-top:clamp(12rem,-7.199999999999999rem + 30vw,28.8rem)}@supports not (font-size: clamp(12rem,-7.199999999999999rem + 30vw,28.8rem)){.text-section-alignment-5-col-to-end{padding-top:min(max(12rem,-7.199999999999999rem + 30vw),28.8rem)}}@media (min-width: 64rem){.text-section-alignment-5-col-to-end{padding-top:0}}.legal-consent{font-size:1.125rem;line-height:1.5rem;font-weight:400;color:#001435}.legal-consent .checkbox label[class*=label-text_body]{margin-bottom:.75rem;padding-bottom:0}.legal-consent .checkbox span[class*=text_body]{display:flex;align-items:center}.legal-consent-label{pointer-events:auto}.legal-consent-label a{font-weight:400}[dir=ltr] .legal-consent-supporting-text:not(a){padding-left:2.375rem}[dir=rtl] .legal-consent-supporting-text:not(a){padding-right:2.375rem}.legal-consent-supporting-text:not(a){margin:0;padding-bottom:.75rem}.legal-consent-error-text{display:flex;align-items:center;margin:0;color:#545d68;font-size:.875rem;line-height:1.25rem}[dir=ltr] .legal-consent-error-text-icon{margin-right:.25rem}[dir=rtl] .legal-consent-error-text-icon{margin-left:.25rem}.legal-consent-error-text-icon{color:#d50102}.numeric-input-hide-spin-button input::-webkit-outer-spin-button,.numeric-input-hide-spin-button input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.numeric-input-hide-spin-button input[type=number]{-moz-appearance:textfield}.form-container{width:100%;padding:2rem;border-radius:.75rem;position:relative}.form-container-input-container{width:100%;display:grid;grid-template-columns:1fr;grid-gap:.5rem;gap:.5rem}.form-container-loading-overlay{position:absolute;background-color:#fff;opacity:.9;top:0;right:0;bottom:0;left:0;z-index:1;display:flex;justify-content:center;align-items:center;border-radius:.75rem}.form-container-button-container{display:flex;justify-content:start;margin-top:2rem}.form-container-button-container button{width:100%}.form-container-button-disabled{pointer-events:none}.form-container-has-shadow{box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.form-container-headline{margin-bottom:1.5rem}.form-container-critical-error-container{margin-bottom:1.5rem;overflow:hidden}.form-container-validation-message{margin-bottom:1.5rem}.form-container .legal-consent{margin-top:.75rem}@media (min-width: 64rem){.form-container-button-container button{width:auto}.form-container-input-container{grid-template-columns:repeat(12,1fr)}.form-container .form-input-span-6{grid-column:span 6}.form-container .form-input-span-12{grid-column:span 12}}@media (min-width: 91.875rem){.form-container{padding:4.5rem}.form-container-spinner{min-height:22rem}}.form-section .form-section-heading-col .form-section-text-group{margin-bottom:2rem}.form-section .form-section-form-col{border-radius:1rem}.form-section .form-section-form-col .form-section-submit-response-message{display:flex;justify-content:center;background-color:#fff;padding:4.5rem;border-radius:inherit;height:100%}.form-section .form-section-form-col .form-section-submit-response-message .text-group{padding:6.5rem 0}.form-section .form-section-contact-col .action-card{margin-top:2rem}.form-section.blue-700-plate .button-type-primary:hover:not(:focus):not(:active),.form-section.blue-600-plate .button-type-primary:hover:not(:focus):not(:active){color:#fff}@media screen and (max-width: 41rem){.form-section .section-wrapper-graphics-top{display:none}}@media screen and (max-width: 23.4375rem){.form-section .form-section-form-col .form-section-submit-response-message{padding:2rem}}@media (min-width: 64rem){.form-section .form-section-heading-col .form-section-text-group{margin-bottom:3rem}.form-section .form-section-contact-col .action-card{margin:0}.form-section .section-wrapper-graphics-top{display:block}}@media (min-width: 91.875rem){.form-section .form-section-heading-col .form-section-text-group{margin-bottom:4.875rem}}.feature-navigation .feature-navigation-tab{display:flex;flex-direction:row}.feature-navigation .feature-navigation-content{display:flex;flex-direction:column}.feature-navigation .feature-navigation-content .feature-navigation-column{position:relative;width:100%}.feature-navigation .feature-navigation-content .feature-navigation-column hr{position:relative;border:.0625rem solid #e6e0d9;margin:0}[dir=ltr] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{text-align:left}[dir=rtl] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{text-align:right}[dir=ltr] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{padding-left:0}[dir=rtl] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{padding-right:0}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{position:relative;width:100%;background:none;border:none;display:flex;flex-direction:row;cursor:pointer;justify-content:space-between;padding:.75rem 0}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title.focus-visible{border:none;outline:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title:focus-visible{border:none;outline:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title.focus-visible:after{content:\\\"\\\";z-index:1;position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .75rem);pointer-events:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title:focus-visible:after{content:\\\"\\\";z-index:1;position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .75rem);pointer-events:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title>.feature-navigation-column-title-arrow{color:var(--style-headline-text);transition:transform .15s linear}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list{list-style:none;padding:0;margin:0}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a{width:100%;position:relative;text-decoration:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:before,.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:before{background-color:#b9effc66}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active].focus-visible:before,.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:focus-visible:before,.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column.feature-navigation-column-expanded:before{content:\\\"\\\";position:absolute;top:0;right:-1rem;bottom:0;left:-1rem;background-color:#faf8f5;border-radius:1rem;z-index:0}.feature-navigation .feature-navigation-content .feature-navigation-column.feature-navigation-column-expanded .feature-navigation-column-title>.feature-navigation-column-title-arrow{transform:rotate(-180deg)}@media (min-width: 64rem){.feature-navigation .feature-navigation-content{flex-direction:row;gap:1rem}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-item.feature-navigation-column-title-cell{display:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title.focus-visible:after{content:unset}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title:focus-visible:after{content:unset}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title .feature-navigation-column-title-text{line-height:1.25}[dir=ltr] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title .arrow-icon{margin-left:1rem}[dir=rtl] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title .arrow-icon{margin-right:1rem}.feature-navigation .feature-navigation-content .feature-navigation-column.feature-navigation-column-expanded:before{content:none}}@media (min-width: 91.875rem){.feature-navigation{padding:2.375rem 0 4.8125rem}}@media (min-width: 120rem){.feature-navigation .feature-navigation-content{gap:1.5rem}}.media-gallery-wrapper{display:flex;flex-wrap:wrap;gap:1rem;padding-top:1.5rem}.media-gallery-wrapper .media-gallery-image{width:3rem;min-width:3rem}.media-gallery-wrapper .media-gallery-image img{width:100%;border-radius:.25rem}.feature-section-row-headline-image{width:4.5rem;height:4.5rem;margin-bottom:1rem}.feature-section-row-headline-image img{width:100%;-o-object-fit:fill;object-fit:fill;border-radius:1rem}.feature-section-row-column1,.feature-section-row-column2,.feature-section-row-column3{padding-top:1.5rem}.feature-section-row-column2{padding-bottom:1.5rem}.feature-section-row-column3 .feature-section-row-feature-image{width:15rem;height:11.25rem}.feature-section-row-column3 .feature-section-row-feature-image .image-frame img{width:100%;height:11.25rem;-o-object-fit:fill;object-fit:fill;aspect-ratio:4 / 3;border-radius:1rem}.feature-section-row-border{border-bottom:1px solid #e6e0d9}.feature-section-row-border-spacing{padding-bottom:1.5rem}.feature-section-row-no-spacing{padding-bottom:0}.feature-section-row-button-row{display:flex;flex-wrap:wrap;gap:1rem;padding-top:1.5rem}@media (min-width: 64rem){.feature-section-row-column1,.feature-section-row-column2,.feature-section-row-column3{padding:0}[dir=ltr] .feature-section-row-column1{padding-right:1.5rem}[dir=rtl] .feature-section-row-column1{padding-left:1.5rem}[dir=ltr] .feature-section-row-column2{padding-right:1.5rem}[dir=rtl] .feature-section-row-column2{padding-left:1.5rem}.feature-section-row-column2{padding-bottom:0}.feature-section-row-column3 .feature-section-row-feature-image{width:10.313rem;height:7.688rem}.feature-section-row-column3 .feature-section-row-feature-image .image-frame img{height:7.688rem}[dir=ltr] .feature-section-row-border{border-right:1px solid #e6e0d9}[dir=rtl] .feature-section-row-border{border-left:1px solid #e6e0d9}.feature-section-row-border{border-bottom:0}.feature-section-row-border-spacing{padding-bottom:0}}@media (min-width: 91.875rem){.feature-section-row-column3 .feature-section-row-feature-image{width:15rem;height:11.25rem}.feature-section-row-column3 .feature-section-row-feature-image .image-frame img{height:11.25rem}}.feature-section .disclosure-item.multi-line-text{padding:0}.feature-section .feature-section-spacer{background-color:unset}.jump-link-nav{--jump-link-nav-height: 3.125rem;--jump-link-nav-underline-height: .125rem;--jump-link-after-top-offset: .5rem;position:-webkit-sticky;position:sticky;top:0;z-index:100;overflow:hidden;background-color:#fff;min-height:var(--jump-link-nav-height);border:solid #e6e0d9;border-width:.0625rem 0 .0625rem}div.jump-link-nav-grid-item{position:relative;display:flex;padding-left:.125rem;padding-right:.125rem}.jump-link-nav-scroll-area-new-wrapper{overflow:hidden;padding-left:.5625rem;padding-right:.5625rem}.jump-link-nav-scroll-area-container{position:relative;height:100%}.jump-link-nav-scroll-area{height:100%;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none;padding-left:.8125rem;padding-right:.8125rem;scroll-snap-type:x mandatory;scroll-padding-inline:.8125rem}.jump-link-nav-scroll-area::-webkit-scrollbar{width:0;height:0}.jump-link-nav-links-collection{height:100%}[dir=ltr] .jump-link-nav-links-collection ul{padding-left:0}[dir=rtl] .jump-link-nav-links-collection ul{padding-right:0}[dir=ltr] .jump-link-nav-links-collection ul{padding-right:.8125rem}[dir=rtl] .jump-link-nav-links-collection ul{padding-left:.8125rem}.jump-link-nav-links-collection ul{display:inline-flex;gap:clamp(.75rem,.5679611650485437rem + .7766990291262136vw,1.5rem);align-items:stretch;margin-top:0;margin-bottom:0;height:100%;list-style:none}@supports not (font-size: clamp(.75rem,.5679611650485437rem + .7766990291262136vw,1.5rem)){.jump-link-nav-links-collection ul{gap:min(max(.75rem,.5679611650485437rem + .7766990291262136vw),1.5rem)}}.jump-link-nav-links-collection li{display:flex;align-items:center;align-items:stretch;scroll-snap-align:center}.jump-link-nav-links-collection li:first-of-type{scroll-snap-align:start}.jump-link-nav-links-collection li:last-of-type{scroll-snap-align:end}a.jump-link-nav-jump-link{display:flex;justify-content:center;align-items:center;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;padding:0;margin-bottom:var(--jump-link-nav-underline-height);text-decoration:none}a.jump-link-nav-jump-link p{color:#003087}a.jump-link-nav-jump-link:after{margin-top:var(--jump-link-after-top-offset);margin-left:-.4375rem;margin-right:-.4375rem;height:calc(100% - var(--jump-link-after-top-offset) * 2)!important;width:calc(100% + .875rem)!important;border-radius:.5rem!important}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link.focus-visible{text-decoration:none;z-index:102}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link:focus-visible{text-decoration:none;z-index:102}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link.focus-visible,a.jump-link-nav-jump-link:hover{border-color:#0070e0!important}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link:focus-visible,a.jump-link-nav-jump-link:hover{border-color:#0070e0!important}a.jump-link-nav-jump-link:focus p,a.jump-link-nav-jump-link.focus-visible p,a.jump-link-nav-jump-link:hover p{color:#0070e0}a.jump-link-nav-jump-link:focus p,a.jump-link-nav-jump-link:focus-visible p,a.jump-link-nav-jump-link:hover p{color:#0070e0}a.jump-link-nav-jump-link:active{border-color:#001c64!important}a.jump-link-nav-jump-link:active p{color:#001c64}a.jump-link-nav-jump-link.active-link,a.jump-link-nav-jump-link:hover{border-bottom:var(--jump-link-nav-underline-height) solid #001c64;margin-bottom:0;text-decoration:none}a.jump-link-nav-jump-link.active-link{letter-spacing:-.01768em}a.jump-link-nav-jump-link:active:after{content:unset!important}[dir=ltr] .jump-link-nav-cta-group{padding-left:1.5rem}[dir=rtl] .jump-link-nav-cta-group{padding-right:1.5rem}.jump-link-nav-cta-group{display:flex;justify-content:center;align-items:center;gap:.5rem;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.jump-link-nav-cta-group-item{scroll-snap-align:end;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.jump-link-nav-cta-group-item:hover,.jump-link-nav-cta-group-item:focus,.jump-link-nav-cta-group-item.focus-visible,.jump-link-nav-cta-group-item:active{z-index:102}.jump-link-nav-cta-group-item:hover,.jump-link-nav-cta-group-item:focus,.jump-link-nav-cta-group-item:focus-visible,.jump-link-nav-cta-group-item:active{z-index:102}.jump-link-nav-gradient-left{position:absolute;top:0;left:0;width:3rem;height:100%;background:linear-gradient(90deg,#fff 52%,rgba(0,0,0,0) 100%);z-index:101;display:flex;align-items:center;justify-content:start}[dir=rtl] .jump-link-nav-gradient-left{justify-content:end}.jump-link-nav-gradient-left button.scroll-button{left:-.1875rem}.jump-link-nav-gradient-right{position:absolute;top:0;right:0;width:3rem;height:100%;background:linear-gradient(270deg,#fff 52%,rgba(0,0,0,0) 100%);z-index:101;display:flex;align-items:center;justify-content:end}[dir=rtl] .jump-link-nav-gradient-right{justify-content:start}.jump-link-nav-gradient-right button.scroll-button{right:-.1875rem}.jump-link-nav button.scroll-button{position:relative;border-radius:2rem;width:2rem;height:2rem;padding:0;display:flex;align-items:center;justify-content:center}.jump-link-nav button.scroll-button path{color:#001c64}.jump-link-nav button.scroll-button:active:after{content:unset}.jump-link-nav button.scroll-button:focus path,.jump-link-nav button.scroll-button.focus-visible path,.jump-link-nav button.scroll-button:hover path{color:#0070e0}.jump-link-nav button.scroll-button:focus path,.jump-link-nav button.scroll-button:focus-visible path,.jump-link-nav button.scroll-button:hover path{color:#0070e0}.jump-link-nav button.scroll-button:after{border-radius:2rem}@media (min-width: 41.0625rem){.jump-link-nav{--jump-link-nav-height: 4.5rem;--jump-link-after-top-offset: .75rem}.jump-link-nav-gradient-left,.jump-link-nav-gradient-right{padding-bottom:.125rem}}@media (min-width: 36rem){div.jump-link-nav-grid-item{padding-left:.875rem;padding-right:.875rem}}@media (min-width: 64rem){[dir=ltr] div.jump-link-nav-grid-item{padding-left:.625rem}[dir=rtl] div.jump-link-nav-grid-item{padding-right:.625rem}[dir=ltr] div.jump-link-nav-grid-item{padding-right:2rem}[dir=rtl] div.jump-link-nav-grid-item{padding-left:2rem}}@media (min-width: 87.8125rem){[dir=ltr] div.jump-link-nav-grid-item{padding-left:calc(clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem) - 1.375rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-right:calc(clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem) - 1.375rem)}[dir=ltr] div.jump-link-nav-grid-item{padding-right:clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-left:clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem)}@supports not (font-size: clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem)){[dir=ltr] div.jump-link-nav-grid-item{padding-left:calc(min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem) - 1.375rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-right:calc(min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem) - 1.375rem)}[dir=ltr] div.jump-link-nav-grid-item{padding-right:min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-left:min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem)}}}@media (min-width: 91.875rem){[dir=ltr] div.jump-link-nav-grid-item{padding-left:0}[dir=rtl] div.jump-link-nav-grid-item,[dir=ltr] div.jump-link-nav-grid-item{padding-right:0}[dir=rtl] div.jump-link-nav-grid-item{padding-left:0}div.jump-link-nav-grid-item{margin-left:-1.375rem;margin-right:-1.375rem;background-color:unset}}.grid.grid-compact.hero.hero-layout-default.grid,.grid.grid-compact.hero.hero-layout-default-xl.grid,.grid.grid-compact.hero.hero-layout-minimal.grid,.grid.grid-compact.hero.hero-layout-featured.grid,.grid.grid-compact.hero.hero-layout-featured-minimal.grid,.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:2rem}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default.grid,.grid.grid-compact.hero.hero-layout-default-xl.grid,.grid.grid-compact.hero.hero-layout-minimal.grid,.grid.grid-compact.hero.hero-layout-featured.grid,.grid.grid-compact.hero.hero-layout-featured-minimal.grid,.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.grid.grid-compact.hero.hero-layout-default.grid,.grid.grid-compact.hero.hero-layout-default-xl.grid,.grid.grid-compact.hero.hero-layout-minimal.grid,.grid.grid-compact.hero.hero-layout-featured.grid,.grid.grid-compact.hero.hero-layout-featured-minimal.grid,.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}}.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-default-xl .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{margin-bottom:0;padding-bottom:0}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-default-xl .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem);padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-default-xl .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem);padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default .hero-media,.grid.grid-compact.hero.hero-layout-default-xl .hero-media,.grid.grid-compact.hero.hero-layout-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured .hero-media,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media{padding-top:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.grid.grid-compact.hero.hero-layout-default .hero-media,.grid.grid-compact.hero.hero-layout-default-xl .hero-media,.grid.grid-compact.hero.hero-layout-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured .hero-media,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media{padding-top:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}}.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:26rem}.grid.grid-compact.hero.hero-layout .hero-media-container,.grid.grid-compact.hero.hero-layout-default .hero-media-container{max-height:38.75rem;max-width:38.75rem}}@media only screen and (min-width: 64rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:clamp(24rem,14.816143497757848rem + 14.349775784753364vw,28rem)}@supports not (font-size: clamp(24rem,14.816143497757848rem + 14.349775784753364vw,28rem)){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:min(max(24rem,14.816143497757848rem + 14.349775784753364vw),28rem)}}.grid.grid-compact.hero.hero-layout .hero-content,.grid.grid-compact.hero.hero-layout-default .hero-content{padding-right:var(--grid-gap)}}@media only screen and (min-width: 91.875rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:clamp(32rem,18.933333333333334rem + 14.222222222222221vw,36rem)}@supports not (font-size: clamp(32rem,18.933333333333334rem + 14.222222222222221vw,36rem)){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:min(max(32rem,18.933333333333334rem + 14.222222222222221vw),36rem)}}}@media only screen and (min-width: 120rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:40rem}}.grid.grid-compact.hero.hero-layout-default.hero-no-graphic-shapes{min-height:auto}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default.hero-no-graphic-shapes .hero-content{padding-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem);padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid.grid-compact.hero.hero-layout-default.hero-no-graphic-shapes .hero-content{padding-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem);padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}}@media only screen and (min-width: 41.0625rem) and (max-width: 63.9375rem){.grid.grid-compact.hero.hero-layout-default-xl .hero-content{padding-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.grid.grid-compact.hero.hero-layout-default-xl .hero-content{padding-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:32rem}.grid.grid-compact.hero.hero-layout-default-xl .hero-media-container{max-height:44rem;max-width:44rem}}@media only screen and (min-width: 64rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:clamp(33rem,21.520179372197312rem + 17.937219730941703vw,38rem)}@supports not (font-size: clamp(33rem,21.520179372197312rem + 17.937219730941703vw,38rem)){.grid.grid-compact.hero.hero-layout-default-xl{min-height:min(max(33rem,21.520179372197312rem + 17.937219730941703vw),38rem)}}}@media only screen and (min-width: 91.875rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:clamp(39rem,-.20000000000000284rem + 42.66666666666667vw,51rem)}@supports not (font-size: clamp(39rem,-.20000000000000284rem + 42.66666666666667vw,51rem)){.grid.grid-compact.hero.hero-layout-default-xl{min-height:min(max(39rem,-.20000000000000284rem + 42.66666666666667vw),51rem)}}}@media only screen and (min-width: 120rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:57rem}}@media only screen and (min-width: 120rem){.grid.grid-compact.hero.hero-layout-minimal{min-height:40rem}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-minimal .hero-media-container{max-height:36rem;max-width:36rem}}@media only screen and (min-width: 41.0625rem) and (max-width: 63.9375rem){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content{padding-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content{padding-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}}.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{padding-bottom:0}.grid.grid-compact.hero.hero-layout-featured .hero-content .text-group-headline,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content .text-group-headline,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content .text-group-headline{max-width:14.5em}.grid.grid-compact.hero.hero-layout-featured .hero-media,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media{padding-top:0}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-featured .hero-media .hero-media-frame,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media .hero-media-frame,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media .hero-media-frame{margin-bottom:0}}.grid-compact.hero.default-bottom-spacing{padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid-compact.hero.default-bottom-spacing{padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.hero{z-index:0;padding-bottom:clamp(4rem,4rem + 0vw,4rem)}@supports not (font-size: clamp(4rem,4rem + 0vw,4rem)){.hero{padding-bottom:min(max(4rem,4rem + 0vw),4rem)}}@media only screen and (min-width: 64rem){.hero{padding-bottom:1.5rem}}.hero-media{z-index:2}.hero-media-flushed{display:flex!important;align-items:end}.hero-content{z-index:2}.hero-content .app-download-group .app-download-group-disclaimer.disclosure{margin-top:1.5rem}@media (max-width: 41rem){.hero-content{margin-bottom:1rem}.hero-content .button-group.button-group-legal-position-bottom,.hero-content .hero-content .button-group.button-group-legal-position-top{text-align:center;justify-content:center}.hero-content .text-group{text-align:center;display:flex;flex-direction:column;align-items:center}.hero-content .button-group.button-group-legal-position-bottom,.hero-content .button-group.button-group-legal-position-top{text-align:center;align-items:center}.hero-content .app-download-group .app-download-group-phone-input-row>*{align-self:center}.hero-content .button-group-alignment-start{justify-content:center}}.grid.hero.hero-layout .text-group-subheading,.grid.hero.hero-layout-default .text-group-subheading,.grid.hero.hero-layout-default-xl .text-group-subheading,.grid.hero.hero-layout-minimal .text-group-subheading{max-width:20em}.grid.hero.hero-layout .text-group-paragraph,.grid.hero.hero-layout-default .text-group-paragraph,.grid.hero.hero-layout-default-xl .text-group-paragraph,.grid.hero.hero-layout-minimal .text-group-paragraph,.grid.hero.hero-layout .text-group-legal-text,.grid.hero.hero-layout-default .text-group-legal-text,.grid.hero.hero-layout-default-xl .text-group-legal-text,.grid.hero.hero-layout-minimal .text-group-legal-text{max-width:25em}@media only screen and (min-width: 64rem){.grid.hero.hero-layout-featured .text-group,.grid.hero.hero-layout-featured-quantum-leap .text-group{padding-bottom:2vw}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout-featured .text-group,.grid.hero.hero-layout-featured-quantum-leap .text-group{padding-bottom:0}}.grid.hero.hero-layout-featured .text-group .text-group-headline,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-headline{max-width:9.75em}.grid.hero.hero-layout-featured .text-group .text-group-subheading,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-subheading{max-width:25em}.grid.hero.hero-layout-featured .text-group .text-group-paragraph,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-paragraph{max-width:30em}.grid.hero.hero-layout-featured .text-group .text-group-legal-text,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-legal-text{max-width:25em}@media only screen and (min-width: 64rem){.grid.hero.hero-layout-featured-minimal .text-group{padding-bottom:2vw}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout-featured-minimal .text-group{padding-bottom:0}}.grid.hero.hero-layout-featured-minimal .text-group .text-group-headline{max-width:11.5em}.grid.hero.hero-layout-featured-minimal .text-group .text-group-subheading{max-width:25em}.grid.hero.hero-layout-featured-minimal .text-group .text-group-paragraph{max-width:30em}.grid.hero.hero-layout-featured-minimal .text-group .text-group-legal-text{max-width:25em}.grid.hero.hero-layout.grid,.grid.hero.hero-layout-default.grid,.grid.hero.hero-layout-default-xl.grid,.grid.hero.hero-layout-minimal.grid{grid-row-gap:clamp(2rem,-10.53133514986376rem + 30.517711171662125vw,9rem)}@supports not (font-size: clamp(2rem,-10.53133514986376rem + 30.517711171662125vw,9rem)){.grid.hero.hero-layout.grid,.grid.hero.hero-layout-default.grid,.grid.hero.hero-layout-default-xl.grid,.grid.hero.hero-layout-minimal.grid{grid-row-gap:min(max(2rem,-10.53133514986376rem + 30.517711171662125vw),9rem)}}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content,.grid.hero.hero-layout-minimal .hero-content{padding-bottom:14vw}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content,.grid.hero.hero-layout-minimal .hero-content{padding-bottom:clamp(3.75rem,-5.64850136239782rem + 22.888283378746593vw,9rem)}@supports not (font-size: clamp(3.75rem,-5.64850136239782rem + 22.888283378746593vw,9rem)){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content,.grid.hero.hero-layout-minimal .hero-content{padding-bottom:min(max(3.75rem,-5.64850136239782rem + 22.888283378746593vw),9rem)}}}.grid.hero.hero-layout .hero-media-frame,.grid.hero.hero-layout-default .hero-media-frame,.grid.hero.hero-layout-default-xl .hero-media-frame,.grid.hero.hero-layout-minimal .hero-media-frame{aspect-ratio:3 / 4}.grid.hero.hero-layout .hero-media-frame picture,.grid.hero.hero-layout-default .hero-media-frame picture,.grid.hero.hero-layout-default-xl .hero-media-frame picture,.grid.hero.hero-layout-minimal .hero-media-frame picture{height:100%}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-frame,.grid.hero.hero-layout-default .hero-media-frame,.grid.hero.hero-layout-default-xl .hero-media-frame,.grid.hero.hero-layout-minimal .hero-media-frame{aspect-ratio:1 / 1}}.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{aspect-ratio:3 / 4}.grid.hero.hero-layout .hero-media-container picture,.grid.hero.hero-layout-default .hero-media-container picture,.grid.hero.hero-layout-default-xl .hero-media-container picture,.grid.hero.hero-layout-minimal .hero-media-container picture{height:100%}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{max-width:75vh;max-height:75vh;aspect-ratio:1 / 1}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{max-width:53rem;max-height:53rem;aspect-ratio:1 / 1}}@supports not (aspect-ratio: auto){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{padding-top:133%;height:0;position:relative;overflow:hidden;width:100%}.grid.hero.hero-layout .hero-media-container picture,.grid.hero.hero-layout-default .hero-media-container picture,.grid.hero.hero-layout-default-xl .hero-media-container picture,.grid.hero.hero-layout-minimal .hero-media-container picture{padding-top:133.3%;height:100%;overflow:hidden}.grid.hero.hero-layout .hero-media-container img,.grid.hero.hero-layout-default .hero-media-container img,.grid.hero.hero-layout-default-xl .hero-media-container img,.grid.hero.hero-layout-minimal .hero-media-container img{top:0;right:0;bottom:0;left:0;position:absolute;height:auto}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{padding-top:100%;width:100%;position:relative;overflow:hidden}}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-container video,.grid.hero.hero-layout-default .hero-media-container video,.grid.hero.hero-layout-default-xl .hero-media-container video,.grid.hero.hero-layout-minimal .hero-media-container video{height:auto}}.grid.hero.hero-layout .hero-media-frame,.grid.hero.hero-layout-default .hero-media-frame,.grid.hero.hero-layout-default-xl .hero-media-frame,.grid.hero.hero-layout-minimal .hero-media-frame{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:30rem}}@media only screen and (min-width: 64rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:clamp(34rem,29.408071748878925rem + 7.174887892376682vw,36rem)}@supports not (font-size: clamp(34rem,29.408071748878925rem + 7.174887892376682vw,36rem)){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:min(max(34rem,29.408071748878925rem + 7.174887892376682vw),36rem)}}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:clamp(42rem,28.933333333333334rem + 14.222222222222221vw,46rem)}@supports not (font-size: clamp(42rem,28.933333333333334rem + 14.222222222222221vw,46rem)){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:min(max(42rem,28.933333333333334rem + 14.222222222222221vw),46rem)}}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:61rem}}.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content{padding-top:clamp(3.75rem,3.619952494061758rem + .3167062549485352vw,4rem)}@supports not (font-size: clamp(3.75rem,3.619952494061758rem + .3167062549485352vw,4rem)){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content{padding-top:min(max(3.75rem,3.619952494061758rem + .3167062549485352vw),4rem)}}.grid.hero.hero-layout .hero-media,.grid.hero.hero-layout-default .hero-media,.grid.hero.hero-layout-default-xl .hero-media{padding-top:clamp(0rem,-1.0375868603916614rem + 2.5268477574226154vw,2.5rem)}@supports not (font-size: clamp(0rem,-1.0375868603916614rem + 2.5268477574226154vw,2.5rem)){.grid.hero.hero-layout .hero-media,.grid.hero.hero-layout-default .hero-media,.grid.hero.hero-layout-default-xl .hero-media{padding-top:min(max(0rem,-1.0375868603916614rem + 2.5268477574226154vw),2.5rem)}}.grid.hero.hero-layout-minimal.grid{grid-row-gap:0}.grid.hero.hero-layout-minimal .hero-content{padding-top:clamp(3.75rem,2.9199305116866707rem + 2.021478205938092vw,5.75rem)}@supports not (font-size: clamp(3.75rem,2.9199305116866707rem + 2.021478205938092vw,5.75rem)){.grid.hero.hero-layout-minimal .hero-content{padding-top:min(max(3.75rem,2.9199305116866707rem + 2.021478205938092vw),5.75rem)}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout-minimal .hero-content{padding-top:clamp(5.75rem,-3.1388888888888893rem + 7.4074074074074066vw,10.75rem)}@supports not (font-size: clamp(5.75rem,-3.1388888888888893rem + 7.4074074074074066vw,10.75rem)){.grid.hero.hero-layout-minimal .hero-content{padding-top:min(max(5.75rem,-3.1388888888888893rem + 7.4074074074074066vw),10.75rem)}}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout-minimal .hero-media{padding-top:clamp(1.5rem,-11.833333333333332rem + 11.11111111111111vw,9rem)}@supports not (font-size: clamp(1.5rem,-11.833333333333332rem + 11.11111111111111vw,9rem)){.grid.hero.hero-layout-minimal .hero-media{padding-top:min(max(1.5rem,-11.833333333333332rem + 11.11111111111111vw),9rem)}}}.grid.hero.hero-layout-featured.slate-gradient-plate,.grid.hero.hero-layout-featured-minimal.slate-gradient-plate,.grid.hero.hero-layout-default.slate-gradient-plate{background:linear-gradient(203deg,#001435 38.48%,#003087 101.41%)}@media (min-width: 64rem){.grid.hero.hero-layout-featured.slate-gradient-plate,.grid.hero.hero-layout-featured-minimal.slate-gradient-plate,.grid.hero.hero-layout-default.slate-gradient-plate{background:linear-gradient(252deg,#001435 61.97%,#003087 100.47%)}}.grid.hero.hero-layout-featured,.grid.hero.hero-layout-featured-minimal,.grid.hero.hero-layout-featured-quantum-leap{min-height:100vw}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout-featured,.grid.hero.hero-layout-featured-minimal,.grid.hero.hero-layout-featured-quantum-leap{min-height:auto}}.grid.hero.hero-layout-featured.grid,.grid.hero.hero-layout-featured-minimal.grid,.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:6vw}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout-featured.grid,.grid.hero.hero-layout-featured-minimal.grid,.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:4vw}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout-featured.grid,.grid.hero.hero-layout-featured-minimal.grid,.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:3vw}}.grid.hero.hero-layout-featured .hero-media-frame,.grid.hero.hero-layout-featured-minimal .hero-media-frame,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame{aspect-ratio:3 / 4}.grid.hero.hero-layout-featured .hero-media-frame picture,.grid.hero.hero-layout-featured-minimal .hero-media-frame picture,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame picture{height:100%}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout-featured .hero-media-frame,.grid.hero.hero-layout-featured-minimal .hero-media-frame,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame{aspect-ratio:16 / 9;margin-bottom:4vw}}@media only screen and (min-width: 64rem){.grid.hero.hero-layout-featured .hero-media-frame,.grid.hero.hero-layout-featured-minimal .hero-media-frame,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame{margin-bottom:3rem}}.grid.hero.hero-layout-featured .hero-content,.grid.hero.hero-layout-featured-minimal .hero-content,.grid.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:clamp(3.75rem,3.302452316076294rem + 1.08991825613079vw,4rem)}@supports not (font-size: clamp(3.75rem,3.302452316076294rem + 1.08991825613079vw,4rem)){.grid.hero.hero-layout-featured .hero-content,.grid.hero.hero-layout-featured-minimal .hero-content,.grid.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:min(max(3.75rem,3.302452316076294rem + 1.08991825613079vw),4rem)}}.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.grid.hero.hero-layout-featured-quantum-leap .hero-media{z-index:-100}.hero-media-container{width:100%;height:100%;position:relative;display:flex;align-items:center;justify-content:center}.hero-media-container-with-glow .video-frame-wrapper,.hero-media-container-with-glow .image-frame{box-shadow:0 -9px 80px #0058f6cc}.hero-media-container-flushed{align-items:end}.hero-media-container img,.hero-media-container video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.hero-media-container .video-frame-wrapper{position:absolute;width:100%;height:100%}.hero-image-none.hero-layout-minimal .hero-media{min-height:70vw;height:20rem}.hero-image-none.hero-layout-minimal .hero-media-container{display:none}@media only screen and (min-width: 41.0625rem){.hero-image-none.hero-layout-minimal .hero-media{min-height:35vw;height:20rem}}@media only screen and (min-width: 64rem){.hero-image-none.hero-layout-minimal .hero-media-container{display:block}}.grid.grid-compact.homepage-hero.homepage-hero-layout-default,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap{min-height:32.5vw}.grid.grid-compact.homepage-hero.homepage-hero-layout-default .homepage-hero-media,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap .homepage-hero-media{aspect-ratio:3/2}.grid.grid-compact.homepage-hero.homepage-hero-layout-default .homepage-hero-media video,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap .homepage-hero-media video{aspect-ratio:3/2}@media (min-width: 120rem){.grid.grid-compact.homepage-hero.homepage-hero-layout-default,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap{min-height:39rem}}.homepage-hero{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;justify-content:center}.homepage-hero.homepage-hero-layout-minimal .homepage-hero-media{aspect-ratio:1/1;height:100%;width:100%}.homepage-hero.homepage-hero-layout-default,.homepage-hero.homepage-hero-layout-quantum-leap{min-height:36.875vw}.homepage-hero.homepage-hero-layout-default .homepage-hero-media,.homepage-hero.homepage-hero-layout-quantum-leap .homepage-hero-media{aspect-ratio:4/3;height:100%;width:100%}.homepage-hero.homepage-hero-layout-quantum-leap .segment-control-group-tabs-container a[class^=segment-control-group-tab] span{color:#001c64}.homepage-hero .homepage-segment-control-tabs{margin-bottom:1rem;max-width:100%}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;overflow:auto}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{margin:.25rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{margin:.25rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{padding:.375rem 1rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{padding:.375rem 1rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.homepage-hero .homepage-hero-content{display:flex;flex-direction:column;align-items:center}.homepage-hero .homepage-hero-content .text-group{text-align:center;display:flex;flex-direction:column;align-items:center}.homepage-hero .homepage-hero-content .text-group .text-group-headline{max-width:14ch}.homepage-hero .homepage-hero-content .text-group .text-group-paragraph{max-width:50ch}.homepage-hero .homepage-hero-content .button-group-alignment-start{justify-content:center}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:center;justify-content:center}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:center;align-items:center}.homepage-hero .homepage-hero-content .app-download-group .app-download-group-phone-input-row>*{align-self:center}.homepage-hero .homepage-hero-media{display:flex;margin:auto}.homepage-hero .homepage-hero-media .homepage-hero-media-media-frame{align-self:center}.homepage-hero .homepage-hero-media .homepage-hero-media-media-frame video{width:100%;height:unset}.homepage-hero .homepage-hero-graphic-section{display:none}@media (min-width: 64rem){.homepage-hero{justify-content:start}.homepage-hero.section-wrapper{grid-row-gap:0}.homepage-hero .homepage-hero-content{align-items:start}[dir=ltr] .homepage-hero .homepage-hero-content .text-group{text-align:left}[dir=rtl] .homepage-hero .homepage-hero-content .text-group{text-align:right}.homepage-hero .homepage-hero-content .text-group{display:flex;flex-direction:column;align-items:start}.homepage-hero .homepage-hero-content .button-group-alignment-start{justify-content:start}[dir=ltr] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:left}[dir=rtl] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:right}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{justify-content:start}[dir=ltr] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,[dir=ltr] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:left}[dir=rtl] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,[dir=rtl] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:right}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{align-items:start}.homepage-hero .homepage-hero-content .app-download-group .app-download-group-phone-input-row>*{align-self:start}.homepage-hero .homepage-hero-media{width:100%}.homepage-hero .homepage-hero-graphic-section{display:flex}.homepage-hero .homepage-segment-control-tabs{transform:translate(-.2em)}}@media (min-width: 120rem){.homepage-hero.homepage-hero-layout-default,.homepage-hero.homepage-hero-layout-quantum-leap{min-height:44.25rem}.homepage-hero.homepage-hero-layout-minimal{min-height:calc(calc(53 / 160) * 120rem)}}.homepage-link-section{grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content}.homepage-link-section-inner{position:relative}.homepage-link-section-container{display:flex;flex-direction:column;position:relative}.homepage-link-section-container .text-group-headline{max-width:15.625rem}.homepage-link-section-container .homepage-link-section-grid-item:hover .text-group-eyebrow-text,.homepage-link-section-container .homepage-link-section-grid-item:hover .text-group-headline{color:#0070e0}.homepage-link-section-grid-item{padding-top:1rem;padding-bottom:1rem;position:relative;box-sizing:border-box}.homepage-link-section-grid-item .text-group>*+*{margin-top:1.5rem}[dir=ltr] .homepage-link-arrow-link{text-align:right}[dir=rtl] .homepage-link-arrow-link{text-align:left}.homepage-link-arrow-link{top:0;right:0;bottom:0;left:0;position:absolute;width:100%;padding-top:1.5rem}.homepage-link-section-line{grid-column-start:1;width:100vw;height:1px;border-top:1px solid #e6e0d9;margin-top:-1px}@media only screen and (max-width: 41rem){.homepage-link-section-grid-item:after{content:\\\"\\\";border-bottom:1px solid #e6e0d9;width:100vw;position:absolute;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;bottom:0}}@media only screen and (min-width: 41.0625rem){.homepage-link-section-container{flex-direction:row;flex-wrap:wrap;border-left:1px solid #e6e0d9;border-right:1px solid #e6e0d9}[dir=ltr] .homepage-link-section-container .homepage-link-section-grid-item{border-right:1px solid #e6e0d9}[dir=rtl] .homepage-link-section-container .homepage-link-section-grid-item{border-left:1px solid #e6e0d9}.homepage-link-section-container .homepage-link-section-grid-item{width:50%;border-bottom:1px solid #e6e0d9}[dir=ltr] .homepage-link-section-container .homepage-link-section-grid-item:nth-child(2n){border-right:none}[dir=rtl] .homepage-link-section-container .homepage-link-section-grid-item:nth-child(2n){border-left:none}.homepage-link-section>.homepage-link-section-grid-item{padding:1.5rem 0}.homepage-link-section-container .homepage-link-section-grid-item{padding:1rem 2rem}[dir=ltr] .homepage-link-arrow-link{padding-right:1.5rem}[dir=rtl] .homepage-link-arrow-link{padding-left:1.5rem}}@media only screen and (min-width: 41.0625rem) and (max-width: 91.8125rem){.homepage-link-section-container:before,.homepage-link-section-container:after{content:\\\"\\\";border-bottom:1px solid #e6e0d9;width:100vw;position:absolute;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;top:0}}@media only screen and (min-width: 64rem){.homepage-link-section>.homepage-link-section-grid-item{padding:2rem 0}.homepage-link-section-container .homepage-link-section-grid-item{padding:1.5rem 2rem}[dir=ltr] .homepage-link-arrow-link{padding-right:2rem}[dir=rtl] .homepage-link-arrow-link{padding-left:2rem}}@media only screen and (min-width: 91.875rem){.homepage-link-section{border-top:1px solid #e6e0d9}.homepage-link-section-header .text-group-headline{max-width:18.75rem}}[dir=ltr] .sticky-qr-badge{right:2rem}[dir=rtl] .sticky-qr-badge{left:2rem}.sticky-qr-badge{--grid-gap: clamp(1rem, .7224278312361214rem + 1.1843079200592153vw, 2rem);background:#fff;position:fixed;bottom:2rem;overflow:hidden;border-radius:1rem;width:calc(100% - 4rem);z-index:9999;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}@supports not (font-size: clamp(1rem,.7224278312361214rem + 1.1843079200592153vw,2rem)){.sticky-qr-badge{--grid-gap: min(max(1rem, .7224278312361214rem + 1.1843079200592153vw), 2rem)}}.sticky-qr-badge .icon-button-wrapper .icon-button-circle-inverse{fill:none}.sticky-qr-badge .sticky-qr-badge-desktop-view{display:none}.sticky-qr-badge .sticky-qr-badge-desktop-view p+p{padding-top:0}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-mobile-view{padding-left:1.5rem;padding-right:0}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-mobile-view{padding-right:1.5rem;padding-left:0}.sticky-qr-badge .sticky-qr-badge-mobile-view{padding-top:0;padding-bottom:0;display:flex;align-items:center;justify-content:space-between}.sticky-qr-badge .sticky-qr-badge-mobile-view .sticky-qr-badge-mobile-button{padding:.7rem 0 1rem}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-mobile-view .sticky-qr-badge-mobile-button .arrow-icon{margin-left:.5rem}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-mobile-view .sticky-qr-badge-mobile-button .arrow-icon{margin-right:.5rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .sticky-qr-badge{right:1rem}[dir=rtl] .sticky-qr-badge{left:1rem}.sticky-qr-badge{width:auto;bottom:1rem}.sticky-qr-badge .sticky-qr-badge-mobile-view{display:none}.sticky-qr-badge .sticky-qr-badge-desktop-view{display:flex;align-items:center;flex-direction:column;justify-content:center;padding:1.5rem 1.5rem 1rem}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-image{margin-bottom:.5rem}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{display:flex;flex-direction:column;justify-content:center;text-align:center;margin-top:.5rem}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{right:0}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{left:0}.sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{position:absolute;top:0;height:2.3rem;width:2.3rem}}@media screen and (min-width: 64rem){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + 8rem)}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + 8rem)}.sticky-qr-badge{bottom:1.5rem}}@media screen and (min-width: 91.875rem){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem))}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem))}.sticky-qr-badge{bottom:2rem}@supports not (font-size: clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem)){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem))}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem))}}.sticky-qr-badge .sticky-qr-badge-desktop-view{padding:1.5rem;flex-direction:row;justify-content:flex-start;gap:1rem}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{text-align:left}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{text-align:right}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{margin-top:0}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-image{margin-bottom:0}.sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{height:unset;width:unset}}@media screen and (min-width: 140rem){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem) + (100% - 140rem)/2)}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem) + (100% - 140rem)/2)}@supports not (font-size: clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem)){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem) + (100% - 140rem)/2)}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem) + (100% - 140rem)/2)}}}.hotspot-item{position:relative}.hotspot-section-sticky{position:-webkit-sticky;position:sticky;bottom:2.75rem}.hotspot-item .hotspot-item-button,.hotspot-section-sticky .hotspot-item-button,.hotspot-item .hotspot-section-button,.hotspot-section-sticky .hotspot-section-button{width:2rem;height:2rem;display:flex;cursor:pointer;position:inherit;padding:0;background-color:#0070e0;border-radius:1.5rem;border:none;z-index:0}.hotspot-item .hotspot-item-button .pulse,.hotspot-section-sticky .hotspot-item-button .pulse,.hotspot-item .hotspot-section-button .pulse,.hotspot-section-sticky .hotspot-section-button .pulse{position:absolute;background-color:#0070e0;border-radius:1.5rem;top:0;right:0;bottom:0;left:0;z-index:-10}.hotspot-item .hotspot-item-button.focus-visible,.hotspot-section-sticky .hotspot-item-button.focus-visible,.hotspot-item .hotspot-section-button.focus-visible,.hotspot-section-sticky .hotspot-section-button.focus-visible{border:none;outline:none}.hotspot-item .hotspot-item-button:focus-visible,.hotspot-section-sticky .hotspot-item-button:focus-visible,.hotspot-item .hotspot-section-button:focus-visible,.hotspot-section-sticky .hotspot-section-button:focus-visible{border:none;outline:none}.hotspot-item .hotspot-item-button.focus-visible:after,.hotspot-section-sticky .hotspot-item-button.focus-visible:after,.hotspot-item .hotspot-section-button.focus-visible:after,.hotspot-section-sticky .hotspot-section-button.focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:2rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + 1rem);pointer-events:none}.hotspot-item .hotspot-item-button:focus-visible:after,.hotspot-section-sticky .hotspot-item-button:focus-visible:after,.hotspot-item .hotspot-section-button:focus-visible:after,.hotspot-section-sticky .hotspot-section-button:focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:2rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + 1rem);pointer-events:none}@media (min-width: 64rem){.hotspot-item .hotspot-item-button,.hotspot-section-sticky .hotspot-item-button,.hotspot-item .hotspot-section-button,.hotspot-section-sticky .hotspot-section-button{z-index:2}}@media (min-width: 91.875rem){.hotspot-item .hotspot-item-button,.hotspot-section-sticky .hotspot-item-button,.hotspot-item .hotspot-section-button,.hotspot-section-sticky .hotspot-section-button{width:3rem;height:3rem}}.hotspot-item .hotspot-item-button .hotspot-item-icon,.hotspot-section-sticky .hotspot-item-button .hotspot-item-icon,.hotspot-item .hotspot-section-button .hotspot-item-icon,.hotspot-section-sticky .hotspot-section-button .hotspot-item-icon,.hotspot-item .hotspot-item-button .hotspot-section-icon,.hotspot-section-sticky .hotspot-item-button .hotspot-section-icon,.hotspot-item .hotspot-section-button .hotspot-section-icon,.hotspot-section-sticky .hotspot-section-button .hotspot-section-icon{margin:auto;width:unset;height:unset}.hotspot-item .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-item-icon svg,.hotspot-item .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-item-icon svg,.hotspot-item .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-section-icon svg,.hotspot-item .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-section-icon svg{width:clamp(1.3rem,.901063829787234rem + 1.7021276595744685vw,1.6rem);height:clamp(1.3rem,.901063829787234rem + 1.7021276595744685vw,1.6rem);transition:transform .3s cubic-bezier(.22,1,.36,1);will-change:transform;color:#fff}@supports not (font-size: clamp(1.3rem,.901063829787234rem + 1.7021276595744685vw,1.6rem)){.hotspot-item .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-item-icon svg,.hotspot-item .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-item-icon svg,.hotspot-item .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-section-icon svg,.hotspot-item .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-section-icon svg{width:min(max(1.3rem,.901063829787234rem + 1.7021276595744685vw),1.6rem);height:min(max(1.3rem,.901063829787234rem + 1.7021276595744685vw),1.6rem)}}.hotspot-item .hotspot-item-button .sr-only,.hotspot-section-sticky .hotspot-item-button .sr-only,.hotspot-item .hotspot-section-button .sr-only,.hotspot-section-sticky .hotspot-section-button .sr-only{position:absolute;width:1px;height:1px;overflow:hidden}.hotspot-item .hotspot-item-button:before,.hotspot-section-sticky .hotspot-item-button:before{content:\\\"\\\";position:absolute;width:3rem;height:3rem;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem}.hotspot-item .hotspot-item-modal,.hotspot-section-sticky .hotspot-item-modal,.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{display:block;position:fixed;bottom:3rem;right:0;left:0;margin:0 1rem 1rem;height:auto;background:#ffffff;border-radius:1.5rem;box-shadow:0 0 .5rem #0000000a,0 .125rem .125rem #0000001a;padding:1.5rem 2rem;z-index:1}.hotspot-item .hotspot-item-modal .hotspot-item-button,.hotspot-section-sticky .hotspot-item-modal .hotspot-item-button,.hotspot-item .hotspot-section-modal .hotspot-item-button,.hotspot-section-sticky .hotspot-section-modal .hotspot-item-button,.hotspot-item .hotspot-item-modal .hotspot-section-button,.hotspot-section-sticky .hotspot-item-modal .hotspot-section-button,.hotspot-item .hotspot-section-modal .hotspot-section-button,.hotspot-section-sticky .hotspot-section-modal .hotspot-section-button{position:absolute;top:1.5rem;right:1rem}@media (min-width: 64rem){.hotspot-item .hotspot-item-modal,.hotspot-section-sticky .hotspot-item-modal,.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{width:19.438rem;position:absolute;bottom:-1rem;left:-16.5rem;right:auto;padding:1.5rem 2rem 3.5rem;margin:0;z-index:2}.hotspot-item .hotspot-item-modal.hotspot-item-modal-start,.hotspot-section-sticky .hotspot-item-modal.hotspot-item-modal-start,.hotspot-item .hotspot-section-modal.hotspot-item-modal-start,.hotspot-section-sticky .hotspot-section-modal.hotspot-item-modal-start,.hotspot-item .hotspot-item-modal.hotspot-section-modal-start,.hotspot-section-sticky .hotspot-item-modal.hotspot-section-modal-start,.hotspot-item .hotspot-section-modal.hotspot-section-modal-start,.hotspot-section-sticky .hotspot-section-modal.hotspot-section-modal-start{left:-1rem}}@media (min-width: 91.875rem){.hotspot-item .hotspot-item-modal,.hotspot-section-sticky .hotspot-item-modal,.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{width:26.75rem;padding:2.5rem 3rem 5.5rem;left:-22.7rem}}.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{position:-webkit-sticky;position:sticky;margin:0}.hotspot-item.hotspot-item-open .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button{background-color:#001c64}@media (min-width: 64rem){.hotspot-item.hotspot-item-open .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button{z-index:3}}.hotspot-item.hotspot-item-open .hotspot-item-button .pulse,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button .pulse,.hotspot-item.hotspot-section-open .hotspot-item-button .pulse,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button .pulse,.hotspot-item.hotspot-item-open .hotspot-section-button .pulse,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button .pulse,.hotspot-item.hotspot-section-open .hotspot-section-button .pulse,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button .pulse{display:none}.hotspot-item.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-item.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-item.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-item.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-item.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-item.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-item.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.hotspot-item.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg{transform:rotate(135deg);transition:transform .3s cubic-bezier(.22,1,.36,1);will-change:transform}.hotspot-item.hotspot-item-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal,.hotspot-item.hotspot-section-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal,.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{display:block;animation:fade_in_show .5s;height:auto;background:#ffffff;border-radius:1.5rem;box-shadow:0 0 .5rem #0000000a,0 .125rem .125rem #0000001a;padding:1rem;z-index:1}.hotspot-item.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .text-group{width:calc(100% - 2rem)}@media (min-width: 64rem){.hotspot-item.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .text-group{width:100%}}.hotspot-item.hotspot-item-open .hotspot-item-modal .truncated-text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .truncated-text-group,.hotspot-item.hotspot-section-open .hotspot-item-modal .truncated-text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .truncated-text-group,.hotspot-item.hotspot-item-open .hotspot-section-modal .truncated-text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .truncated-text-group,.hotspot-item.hotspot-section-open .hotspot-section-modal .truncated-text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .truncated-text-group{--style-general-text: #001c64;--style-headline-text: #001c64}.hotspot-item.hotspot-item-open .hotspot-item-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-item-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-section-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-section-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-item-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-item-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .hotspot-section-button,.hotspot-item.hotspot-item-open .hotspot-section-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-section-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .hotspot-section-button{position:absolute;top:1.5rem;right:1rem}@media (min-width: 64rem){.hotspot-item.hotspot-item-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal,.hotspot-item.hotspot-section-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal,.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{animation:fadeInToLeftTop .5s;width:19.438rem;position:absolute;bottom:-1rem;left:-16.5rem;right:auto;padding:1.5rem 2rem 3.5rem;margin:0;z-index:3}.hotspot-item.hotspot-item-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-item.hotspot-section-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-item.hotspot-item-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-item.hotspot-section-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-item.hotspot-item-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-item.hotspot-section-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-item.hotspot-item-open .hotspot-section-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal.hotspot-section-modal-start,.hotspot-item.hotspot-section-open .hotspot-section-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal.hotspot-section-modal-start{left:-1rem;animation:fadeInToRightTop .5s}}@media (min-width: 91.875rem){.hotspot-item.hotspot-item-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal,.hotspot-item.hotspot-section-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal,.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{width:26.75rem;padding:1.5rem 2rem 5.5rem;left:-22.7rem}}.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{position:-webkit-sticky;position:sticky;margin:0}.blue-400-alt-plate .hotspot-item .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button .pulse,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button .pulse,.blue-400-alt-plate .hotspot-item .hotspot-section-button .pulse,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button .pulse{background-color:#b9effc}.blue-400-alt-plate .hotspot-item .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button .hotspot-section-icon svg{color:#001c64}.blue-400-alt-plate .hotspot-item .hotspot-item-button.focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.focus-visible:after,.blue-400-alt-plate .hotspot-item .hotspot-section-button.focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.focus-visible:after{border-color:#b9effc}.blue-400-alt-plate .hotspot-item .hotspot-item-button:focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button:focus-visible:after,.blue-400-alt-plate .hotspot-item .hotspot-section-button:focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button:focus-visible:after{border-color:#b9effc}.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-section-button{background-color:#001c64}.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg{color:#fff}.hotspot-section{overflow:unset}.hotspot-section .text-group{margin-bottom:1rem}.hotspot-section-image-container{position:relative}.hotspot-section-image-container .hotspot-section-imageframe{aspect-ratio:1;width:100%;display:flex;justify-content:center;align-items:center}.hotspot-section-image-container .hotspot-section-imageframe picture{height:100%}.hotspot-section-image-container .hotspot-section-imageframe picture img{height:100%}.hotspot-section-image-container .hotspot-section-hotspot-item{position:absolute;top:0;right:0;bottom:0;left:0;aspect-ratio:1;display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(4,1fr);grid-template-areas:\\\"cell-1-1 cell-1-2 cell-1-3 cell-1-4\\\" \\\"cell-2-1 cell-2-2 cell-2-3 cell-2-4\\\" \\\"cell-3-1 cell-3-2 cell-3-3 cell-3-4\\\" \\\"cell-4-1 cell-4-2 cell-4-3 cell-4-4\\\"}@media only screen and (min-width: 64rem){.hotspot-section-image-container .hotspot-section-hotspot-item{aspect-ratio:16 / 9;grid-template-columns:repeat(8,1fr);grid-template-rows:repeat(5,1fr);grid-template-areas:\\\"cell-1-1 cell-1-2 cell-1-3 cell-1-4 cell-1-5 cell-1-6 cell-1-7 cell-1-8\\\" \\\"cell-2-1 cell-2-2 cell-2-3 cell-2-4 cell-2-5 cell-2-6 cell-2-7 cell-2-8\\\" \\\"cell-3-1 cell-3-2 cell-3-3 cell-3-4 cell-3-5 cell-3-6 cell-3-7 cell-3-8\\\" \\\"cell-4-1 cell-4-2 cell-4-3 cell-4-4 cell-4-5 cell-4-6 cell-4-7 cell-4-8\\\" \\\"cell-5-1 cell-5-2 cell-5-3 cell-5-4 cell-5-5 cell-5-6 cell-5-7 cell-5-8\\\"}.hotspot-section-image-container .hotspot-section-imageframe{aspect-ratio:16 / 9}}@media screen and (min-width: 107.875rem){.hotspot-section .text-group{margin-bottom:1.5rem}}.logo-strip-section.stone-plate .logo-strip-section-image-frame a:hover:before{border:.0625rem solid #dbdde0}.logo-strip-section-container{display:flex;justify-content:center;flex-wrap:wrap}.logo-strip-section-headline{text-align:center;padding-bottom:1rem}.logo-strip-section-image-frame{max-width:11rem;margin:0 auto;outline-style:none}.logo-strip-section-image-frame img{transition:transform .5s}.logo-strip-section-image-frame a{display:block}.logo-strip-section-image-frame a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-strip-section-image-frame a:hover:before{border:.0625rem solid #e6e0d9;top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-strip-section-image-frame a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-strip-section-image-frame a.focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-strip-section-image-frame a:focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-strip-section-image-frame:hover a img{transform:scale(1.05)}.logo-strip-section-image-frame:active a img{transform:scale(.95)}@media (min-width: 41.0625rem){.logo-strip-section-headline{padding-bottom:1.5rem}}@media (min-width: 91.875rem){.logo-strip-section-headline{padding-bottom:3rem}}.grid-compact.logo-type .logo-type-image-wrap-white-plate a,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a,.grid-compact.logo-type .logo-type-img-wrap-without-link{padding:.75rem}.grid-compact.logo-type .logo-type-image-wrap-white-plate a,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a{border-radius:1rem}.grid-compact.logo-type .logo-type-image-wrap-white-plate a:after,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a:after{width:1rem;height:1rem}.grid-compact.logo-type .logo-type-content-col{margin-bottom:calc(-1 * var(--grid-gap))}.grid-compact.logo-type .logo-type-flex-container{gap:var(--grid-gap)}.grid-compact.logo-type .text-header-inner .text-group{margin-bottom:0}@media only screen and (min-width: 23.4375rem){.grid-compact.logo-type .logo-type-flex-item,.grid-compact.logo-type .logo-type-flex4-item{width:calc(100% / 2 - var(--grid-gap) + (var(--grid-gap) / 2))}}@media only screen and (min-width: 41.0625rem){.grid-compact.logo-type .logo-type-flex-item{width:calc(100% / 3 - var(--grid-gap) + (var(--grid-gap) / 3))}.grid-compact.logo-type .logo-type-flex4-item{width:calc(100% / 4 - var(--grid-gap) + (var(--grid-gap) / 4))}}@media only screen and (min-width: 64rem){.grid-compact.logo-type .logo-type-image-wrap-white-plate a:after,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a:after{width:1.5rem;height:1.5rem}.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:clamp(6.563rem,.5360941704035849rem + 9.417040358744398vw,9.188rem)}@supports not (font-size: clamp(6.563rem,.5360941704035849rem + 9.417040358744398vw,9.188rem)){.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:min(max(6.563rem,.5360941704035849rem + 9.417040358744398vw),9.188rem)}}}@media only screen and (min-width: 91.875rem){.grid-compact.logo-type .logo-type-image-wrap-white-plate a,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a{padding:1rem;border-radius:1.5rem}.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:clamp(9.125rem,2.1833333333333336rem + 7.555555555555555vw,11.25rem)}@supports not (font-size: clamp(9.125rem,2.1833333333333336rem + 7.555555555555555vw,11.25rem)){.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:min(max(9.125rem,2.1833333333333336rem + 7.555555555555555vw),11.25rem)}}}@media only screen and (min-width: 120rem){.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:13.5rem}}.logo-type .logo-type-item{position:relative}.logo-type-flex-container{display:flex;flex-wrap:wrap}@media (min-width: 64rem){.logo-type-flex-container{gap:1.5rem}}@media (min-width: 91.875rem){.logo-type-flex-container{gap:1.875rem}}@media (min-width: 120rem){.logo-type-flex-container{gap:2rem}}@media (min-width: 64rem){.logo-type-flex-item{width:calc(100% / 3 - 1.5rem + (1.5rem / 3))}}@media (min-width: 91.875rem){.logo-type-flex-item{width:calc(25% - 1.40625rem)}}@media (min-width: 120rem){.logo-type-flex-item{width:calc(25% - 1.5rem)}}@media (min-width: 64rem){.logo-type-flex3-item{width:calc(100% / 3 - 1.5rem + (1.5rem / 3))}}@media (min-width: 91.875rem){.logo-type-flex3-item{width:calc(100% / 3 - 1.875rem + (1.875rem / 3))}}@media (min-width: 120rem){.logo-type-flex3-item{width:calc(100% / 3 - 2rem + (2rem / 3))}}.logo-type .text-group{margin-bottom:1.875rem}@media (min-width: 41.0625rem){.logo-type .text-group{margin-bottom:1.125rem}}.logo-type .text-group a{margin-bottom:0}.logo-type-image-wrap-neutral-100-plate{border-radius:1.5rem;height:100%}.logo-type-image-wrap-neutral-100-plate img{-o-object-fit:cover;object-fit:cover;box-sizing:border-box;width:7rem;aspect-ratio:4 / 3}@media (min-width: 41.0625rem){.logo-type-image-wrap-neutral-100-plate img{width:7.876rem;aspect-ratio:4 / 3}}@media (min-width: 64rem){.logo-type-image-wrap-neutral-100-plate img{width:auto;aspect-ratio:4 / 3}}.logo-type-image-wrap-neutral-100-plate a{display:block;width:100%;position:relative;padding:1.625rem .5rem;text-align:center;outline-style:none}@media (min-width: 64rem){.logo-type-image-wrap-neutral-100-plate a{padding:1.25rem}}[dir=ltr] .logo-type-image-wrap-neutral-100-plate a:after{right:.813rem}[dir=rtl] .logo-type-image-wrap-neutral-100-plate a:after{left:.813rem}.logo-type-image-wrap-neutral-100-plate a:after{content:\\\"\\\";background-image:url(https://www.paypalobjects.com/marketing/web/icons/arrow-grey.svg);width:1.063rem;height:1.063rem;position:absolute;top:.938rem;background-size:contain}[dir=rtl] .logo-type-image-wrap-neutral-100-plate a:after{transform:scaleX(-1)}@media (min-width: 23.4375rem) and (max-width: 64rem){[dir=ltr] .logo-type-image-wrap-neutral-100-plate a:after{right:.4rem}[dir=rtl] .logo-type-image-wrap-neutral-100-plate a:after{left:.4rem}.logo-type-image-wrap-neutral-100-plate a:after{top:.68rem}}@media (min-width: 64rem){.logo-type-image-wrap-neutral-100-plate a:after{width:1.75rem;height:1.75rem}}.logo-type-image-wrap-neutral-100-plate a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;border:.0625rem solid #e6e0d9;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-type-image-wrap-neutral-100-plate a:hover:before{top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-type-image-wrap-neutral-100-plate a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-type-image-wrap-neutral-100-plate a.focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-neutral-100-plate a:focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-neutral-100-plate a.logo-type-image-wrap-white-plate:before{background-color:#fff}.logo-type-image-wrap-neutral-100-plate a.logo-type-image-wrap-neutral-100-plate:before{background-color:#faf8f5}.logo-type-image-wrap-white-plate{border-radius:1.5rem;height:100%}.logo-type-image-wrap-white-plate img{-o-object-fit:cover;object-fit:cover;box-sizing:border-box;width:7rem;aspect-ratio:4 / 3}@media (min-width: 41.0625rem){.logo-type-image-wrap-white-plate img{width:7.876rem;aspect-ratio:4 / 3}}@media (min-width: 64rem){.logo-type-image-wrap-white-plate img{width:auto;aspect-ratio:4 / 3}}.logo-type-image-wrap-white-plate a{display:block;width:100%;position:relative;padding:1.625rem .5rem;text-align:center;outline-style:none}@media (min-width: 64rem){.logo-type-image-wrap-white-plate a{padding:1.25rem}}[dir=ltr] .logo-type-image-wrap-white-plate a:after{right:.813rem}[dir=rtl] .logo-type-image-wrap-white-plate a:after{left:.813rem}.logo-type-image-wrap-white-plate a:after{content:\\\"\\\";background-image:url(https://www.paypalobjects.com/marketing/web/icons/arrow-grey.svg);width:1.063rem;height:1.063rem;position:absolute;top:.938rem;background-size:contain}[dir=rtl] .logo-type-image-wrap-white-plate a:after{transform:scaleX(-1)}@media (min-width: 23.4375rem) and (max-width: 64rem){[dir=ltr] .logo-type-image-wrap-white-plate a:after{right:.4rem}[dir=rtl] .logo-type-image-wrap-white-plate a:after{left:.4rem}.logo-type-image-wrap-white-plate a:after{top:.68rem}}@media (min-width: 64rem){.logo-type-image-wrap-white-plate a:after{width:1.75rem;height:1.75rem}}.logo-type-image-wrap-white-plate a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;border:.0625rem solid #e6e0d9;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-type-image-wrap-white-plate a:hover:before{top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-type-image-wrap-white-plate a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-type-image-wrap-white-plate a.focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-white-plate a:focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-white-plate a.logo-type-image-wrap-white-plate:before{background-color:#fff}.logo-type-image-wrap-white-plate a.logo-type-image-wrap-neutral-100-plate:before{background-color:#faf8f5}.logo-type-caption-wrap{font-size:.75rem;font-weight:400;color:#545d68;position:absolute;white-space:nowrap;left:50%;bottom:.5rem;top:auto;transform:translate(-50%);z-index:1;pointer-events:none}@media (min-width: 64rem){.logo-type-caption-wrap{top:.875rem;bottom:auto;font-size:.875rem}}.logo-type-img-wrap-without-link{display:flex;justify-content:center;align-items:center;padding:1.625rem .5rem}@media (min-width: 64rem){.logo-type-img-wrap-without-link{padding:1.25rem;border:.0625rem solid transparent}}.logo-type-img-wrap-without-link.logo-type-image-wrap-neutral-100-plate{background-color:#faf8f5;border:.0625rem solid #e6e0d9}.logo-type-img-wrap-without-link.logo-type-image-wrap-white-plate{background-color:#fff;border:.0625rem solid #e6e0d9}[dir=ltr] .nav-banner-grid-item{padding-left:1rem;padding-right:2rem}[dir=rtl] .nav-banner-grid-item{padding-right:1rem;padding-left:2rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .nav-banner-grid-item{padding-left:2rem;padding-right:3rem}[dir=rtl] .nav-banner-grid-item{padding-right:2rem;padding-left:3rem}}.nav-banner{align-items:center;justify-content:space-between;min-height:3.125rem;z-index:2000}.nav-banner.focus-visible:after,.nav-banner.focus-visible:before{border:0px}.nav-banner:focus-visible:after,.nav-banner:focus-visible:before{border:0px}.nav-banner .nav-banner-content{margin:0}.nav-banner .nav-banner-content .inline-button:hover,.nav-banner .nav-banner-content .inline-button.focus-visible{outline:none}.nav-banner .nav-banner-content .inline-button:hover,.nav-banner .nav-banner-content .inline-button:focus-visible{outline:none}[dir=ltr] .nav-banner .nav-banner-close-button{right:0}[dir=rtl] .nav-banner .nav-banner-close-button{left:0}.nav-banner .nav-banner-close-button{z-index:100;display:flex;position:absolute;outline:none;padding:.375rem .25rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .nav-banner .nav-banner-close-button{right:1.25rem}[dir=rtl] .nav-banner .nav-banner-close-button{left:1.25rem}.nav-banner .nav-banner-close-button{padding:.375rem .5rem}}.nav-banner .nav-banner-close-button svg{width:1.5rem;height:1.5rem}.nav-banner .nav-banner-close-button.focus-visible:before{width:1.5rem;content:\\\"\\\";position:absolute;border:.1875rem solid var(--component-inline-button-focus-border);border-radius:.2rem;box-shadow:0 0 0 .375rem var(--component-inline-button-focus-shadow);text-indent:0rem;height:1.5rem;pointer-events:none}.nav-banner .nav-banner-close-button:focus-visible:before{width:1.5rem;content:\\\"\\\";position:absolute;border:.1875rem solid var(--component-inline-button-focus-border);border-radius:.2rem;box-shadow:0 0 0 .375rem var(--component-inline-button-focus-shadow);text-indent:0rem;height:1.5rem;pointer-events:none}[dir=ltr] .nav-banner .nav-banner-item-paragraph{margin-right:.5rem}[dir=rtl] .nav-banner .nav-banner-item-paragraph{margin-left:.5rem}.nav-banner .nav-banner-item-paragraph{align-self:center;display:inline-block;max-width:none}.nav-banner .nav-banner-col-center{text-align:center;padding:.5rem 2rem}@media screen and (min-width: 41.0625rem){.nav-banner .nav-banner-col-center{padding:.5rem 4.25rem}}[dir=ltr] .nav-banner .nav-banner-col-start{text-align:left}[dir=rtl] .nav-banner .nav-banner-col-start{text-align:right}.nav-banner .nav-banner-col-start{padding-top:.5rem;padding-bottom:.5rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .nav-banner .nav-banner-col-start{padding-left:2rem;padding-right:4.25rem}[dir=rtl] .nav-banner .nav-banner-col-start{padding-right:2rem;padding-left:4.25rem}.nav-banner .nav-banner-col-start{padding-top:.5rem;padding-bottom:.5rem}}.nav-banner .nav-banner-text{text-decoration:none;color:var(--style-general-text)}.nav-banner .nav-banner-margin{display:flex;padding:0 1rem;align-items:center}.nav-banner a.nav-banner-button-bar{text-decoration:none;width:100%;line-height:1}[dir=ltr] .nav-banner .nav-banner-button{padding-left:1.25rem;padding-right:.25rem}[dir=rtl] .nav-banner .nav-banner-button{padding-right:1.25rem;padding-left:.25rem}.nav-banner .nav-banner-button{padding-top:.75rem;padding-bottom:.75rem;background:none;border:none;cursor:pointer}@media screen and (min-width: 41.0625rem){.nav-banner .nav-banner-button{padding:.75rem}}.nav-banner .nav-banner-button>p{margin:0 0 .24rem}.nav-banner .nav-banner-button>p,.nav-banner .nav-banner-button>p span,.nav-banner .nav-banner-button>p a{line-height:1.625}.nav-banner .nav-banner-item-icon{width:unset;height:unset}.nav-banner .nav-banner-item-icon-theme-blue-500,.nav-banner .nav-banner-item-icon-theme-blue-700{color:#fff}.nav-banner .nav-banner-item-icon-theme-neutral-100{color:#0070e0}.nav-banner .inline-button.inline-button.inline-button-size-small{line-height:1;padding:.25rem 0}[dir=ltr] .nav-banner a.nav-banner-button{padding-left:0rem}[dir=rtl] .nav-banner a.nav-banner-button{padding-right:0rem}.section-wrapper .offer-card-section-header{margin-bottom:2rem}.section-wrapper .offer-card-section-carousel{padding:0;margin-bottom:3rem}.section-wrapper .offer-card-section-carousel .carousel-button{display:none;height:3.5rem;width:3.5rem}@media screen and (min-width: 41.0625rem){.section-wrapper .offer-card-section-carousel .carousel-button{display:inline-block}}.section-wrapper .offer-card-section-carousel .carousel-button svg{height:100%;width:100%}.section-wrapper .offer-card-section-carousel .carousel-track{background-color:transparent}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper{transition-delay:.3s;text-decoration:none;height:100%;display:flex;border-radius:1rem;outline:none;position:relative}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper{border-radius:1.5rem}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image{width:100%;overflow:hidden;box-sizing:border-box;border-radius:1rem 1rem 0 0;-webkit-mask-image:-webkit-radial-gradient(white,black)}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image{border-radius:1.5rem 1.5rem 0 0}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image img{overflow:hidden}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image img{transition:.3s cubic-bezier(.22,1,.36,1) all;transition-delay:.3s}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:after{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1rem;border:.0625rem solid transparent}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:after{border-radius:1.5rem}}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:after{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:box-shadow border}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover .offer-card-section-item-image img{scale:1.1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover .offer-card-section-item-headline{color:#0070e0}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover:after{box-shadow:0 0 .75rem #0000000f;border:.0625rem solid #e6e0d9}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active .offer-card-section-item-image img{scale:1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active .offer-card-section-item-headline{color:#0070e0}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active:after{box-shadow:none}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible:after{border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible:after{border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible .offer-card-section-item-headline{color:#0070e0}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible .offer-card-section-item-headline{color:#0070e0}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible .offer-card-section-item-image img{scale:1.1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible .offer-card-section-item-image img{scale:1.1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .neutral-100-plate{background:#faf8f5}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .white-plate{background:#ffffff}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item{display:flex;flex-direction:column;overflow:hidden;position:relative;border-radius:1rem}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item{border-radius:1.5rem}}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon{right:1.5rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon{left:1.5rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon{position:absolute;bottom:2rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon.arrow-icon-theme>svg{transition:none}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon.arrow-icon-theme>svg{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon.arrow-icon-theme>span.arrow-icon-circle{transition-delay:.3s}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon-position-top{top:16.375rem;bottom:auto}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-image{height:auto;overflow:hidden;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-image img{width:100%;aspect-ratio:4 / 3;-o-object-fit:cover;object-fit:cover;display:block}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline{display:flex;flex-grow:1;margin:2rem 1.5rem 1rem}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline-right-spacing{margin-right:4.375rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline-right-spacing{margin-left:4.375rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline-no-availability{margin-bottom:2rem}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-left:1.5rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-right:1.5rem}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-right:4.5rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-left:4.5rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-top:0;margin-bottom:2rem}.section-wrapper .offer-card-section-carousel .page-nav-container{margin-top:1.5rem}.logo-ticker-section-reduced-motion-container{display:flex;justify-content:center;flex-wrap:wrap;position:relative}.logo-ticker-section-reduced-motion-image-frame{max-width:11rem;margin:0 auto;display:inline-block;outline-style:none}.logo-ticker-section-reduced-motion-image-frame img{transform:none;transition:transform .5s}.logo-ticker-section-reduced-motion-image-frame a{margin:.1875rem 0}.logo-ticker-section-reduced-motion-image-frame a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-ticker-section-reduced-motion-image-frame a:hover:before{border:.0625rem solid #e6e0d9;top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-ticker-section-reduced-motion-image-frame a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-ticker-section-reduced-motion-image-frame a.focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section-reduced-motion-image-frame a:focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section.neutral-100-plate .logo-ticker-section-logos-grid:before{background:linear-gradient(to right,#faf8f5 22%,rgba(250,248,245,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2}.logo-ticker-section.neutral-100-plate .logo-ticker-section-logos-grid:after{background:linear-gradient(to left,#faf8f5 22%,rgba(250,248,245,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2}.logo-ticker-section-logos-grid-static[focus-within] .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid-static:focus-within .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid-static[focus-within]:before,.logo-ticker-section-logos-grid-static[focus-within]:after{display:none}.logo-ticker-section-logos-grid-static:focus-within:before,.logo-ticker-section-logos-grid-static:focus-within:after{display:none}.logo-ticker-section-logos-grid-static[focus-within] .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-50%)}.logo-ticker-section-logos-grid-static:focus-within .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-50%)}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-container .logo-ticker-section-logos-slide-container{transition:none}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-50%)}[dir=ltr] .logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide-container:first-child{left:50%}[dir=rtl] .logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide-container:first-child{right:50%}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide-container:first-child{position:absolute;transform:translate(-50%);z-index:1}.logo-ticker-section-logos-grid{position:relative}[dir=ltr] .logo-ticker-section-logos-grid:before{left:0}[dir=rtl] .logo-ticker-section-logos-grid:before{right:0}.logo-ticker-section-logos-grid:before{background:linear-gradient(to right,#ffffff 22%,rgba(255,255,255,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2;top:0;width:5rem}[dir=ltr] .logo-ticker-section-logos-grid:after{right:0}[dir=rtl] .logo-ticker-section-logos-grid:after{left:0}.logo-ticker-section-logos-grid:after{background:linear-gradient(to left,#ffffff 22%,rgba(255,255,255,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2;top:0;width:5rem}.logo-ticker-section-logos-grid[focus-within] .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid:focus-within .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid[focus-within]:before,.logo-ticker-section-logos-grid[focus-within]:after{display:none}.logo-ticker-section-logos-grid:focus-within:before,.logo-ticker-section-logos-grid:focus-within:after{display:none}.logo-ticker-section-logos-grid[focus-within] .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(0)}.logo-ticker-section-logos-grid:focus-within .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(0)}.logo-ticker-section-headline{text-align:center;padding-bottom:1rem;margin-bottom:calc(-1 * var(--grid-gap))}.logo-ticker-section-logos-container{white-space:nowrap;overflow:hidden;position:relative}.logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-2%)}.logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide{animation-play-state:paused}.logo-ticker-section-logos-slide-container{display:inline-block;transform:translate(0);transition:1s ease-out;opacity:1}.logo-ticker-section-logos-slide{display:inline-block;animation:27s ticker infinite linear;animation-delay:.2s}.logo-ticker-section-logos-slide-hidden{opacity:0;pointer-events:none}.logo-ticker-section-image-container{display:inline-block}.logo-ticker-section-image-frame{display:inline-block;max-width:11rem;outline-style:none}.logo-ticker-section-image-frame picture{border-radius:1rem}.logo-ticker-section-image-frame img{max-width:initial;width:11rem;transform:none;transition:transform .5s}.logo-ticker-section-image-frame a{margin:.1875rem 0}.logo-ticker-section-image-frame a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-ticker-section-image-frame a:hover:before{border:.0625rem solid #e6e0d9;top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-ticker-section-image-frame a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-ticker-section-image-frame a.focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section-image-frame a:focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section-image-frame:hover a img{transform:scale(1.05)}.logo-ticker-section-image-frame:active a img{transform:scale(.95)}@media (min-width: 91.875rem){.logo-ticker-section-headline{padding-bottom:4.8125rem}.logo-ticker-section-logos-grid:after,.logo-ticker-section-logos-grid:before{width:8rem}}@keyframes ticker{0%{transform:translate(0)}to{transform:translate(-100%)}}.grid-compact .pricing-card-item-wrapper .pricing-card-item-secondary-pricing{display:flex;flex-direction:column;gap:.5rem;padding:.5rem 0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-subheading{margin-bottom:.5rem;padding:0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-pricing-header,.grid-compact .pricing-card-item-wrapper .pricing-card-item-data-grid-item,.grid-compact .pricing-card-item-wrapper .feature-list,.grid-compact .pricing-card-item-wrapper .pricing-card-item-secondary-pricing,.grid-compact .pricing-card-item-wrapper .pricing-card-item-action-group .button-group{margin-bottom:.5rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-paragraph{padding:0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-image-product-name{padding-bottom:0;margin-bottom:.5rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-action-group>.button-group+.disclosure{margin-top:0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-product-info{padding-bottom:1rem}@media (min-width: 91.875rem){.grid-compact .pricing-card-item-wrapper.pricing-card-item-3col{min-width:21.5rem}.grid-compact .pricing-card-item-wrapper.pricing-card-item-2col{min-width:27.25rem}.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-pricing-header,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-data-grid-item,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .feature-list,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-secondary-pricing,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-paragraph,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-action-group .button-group{margin-bottom:1rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-secondary-pricing{gap:1rem;padding:1rem 0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-subheading,.grid-compact .pricing-card-item-wrapper .pricing-card-item-image-product-name{margin-bottom:1rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-product-info{padding-bottom:2rem}}@media (min-width: 91.875rem){.grid-compact .pricing-card-item-spacing-3col{padding:2rem}.grid-compact .pricing-card-item-spacing-2col{padding:3rem}}[dir=ltr] .pricing-card-item-wrapper{margin-right:var(--grid-gap)}[dir=rtl] .pricing-card-item-wrapper{margin-left:var(--grid-gap)}.pricing-card-item-wrapper{flex-grow:1;width:100%;display:flex;align-items:flex-start;border-radius:1rem;flex-direction:column;min-width:16.25rem}.pricing-card-item-wrapper .disclosure-item{padding-top:0}.pricing-card-item-spacing-2col,.pricing-card-item-spacing-3col{padding:1.5rem}[dir=ltr] .pricing-card-item-wrapper:last-child{margin-right:0}[dir=rtl] .pricing-card-item-wrapper:last-child{margin-left:0}.pricing-card-item-image img{aspect-ratio:4/3;border-top-left-radius:1rem;border-top-right-radius:1rem;-o-object-fit:contain;object-fit:contain}.pricing-card-item-product-name{height:clamp(6.625rem,2.597070844686648rem + 9.809264305177113vw,8.875rem)}@supports not (font-size: clamp(6.625rem,2.597070844686648rem + 9.809264305177113vw,8.875rem)){.pricing-card-item-product-name{height:min(max(6.625rem,2.597070844686648rem + 9.809264305177113vw),8.875rem)}}.pricing-card-item-image-product-name,.pricing-card-item-subheading,.pricing-card-item-paragraph{margin:0;padding-bottom:1rem}p+p{padding-top:0}.pricing-card-item-data-grid-item{width:100%}.pricing-card-item-action-group>.button-group+.disclosure{margin-top:1rem}.pricing-card-item-secondary-pricing-item{display:flex;gap:.25rem;align-items:baseline}.pricing-card-item-secondary-number-group{display:flex;text-wrap:nowrap}@media (min-width: 91.875rem){.pricing-card-item-wrapper{border-radius:1.5rem}.pricing-card-item-image img{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.pricing-card-item-3col{min-width:26.625rem}.pricing-card-item-2col{min-width:40.938rem}.pricing-card-item-spacing-3col{padding:3rem}.pricing-card-item-spacing-2col{padding:4.5rem}}@media (min-width: 107.875rem){.pricing-card-item-subheading{padding-bottom:.625rem}}.grid-compact.pricing-card-horizontal .pricing-card-horizontal-header{margin-bottom:1rem}[dir=ltr] .grid-compact.pricing-card-horizontal .pricing-card-item-wrapper{margin-right:0}[dir=rtl] .grid-compact.pricing-card-horizontal .pricing-card-item-wrapper{margin-left:0}.grid-compact.pricing-card-horizontal .pricing-card-grid-container{display:grid;grid-gap:1rem;gap:1rem}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-3cards{grid-template-columns:repeat(3,1fr)}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-2cards{grid-template-columns:repeat(2,1fr)}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-10col,.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-12col{padding-left:calc(var(--grid-gap) * 2);padding-right:calc(var(--grid-gap) * 2);overflow-x:scroll}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-10col::-webkit-scrollbar,.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-12col::-webkit-scrollbar{display:none}@media (min-width: 64rem) and (max-width: 91.8125rem){.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-10col{padding-left:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 3) + var(--col-width));padding-right:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 3) + var(--col-width))}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-12col{padding-left:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2));padding-right:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2))}}@media (max-width: 63.9375rem){.grid-compact.pricing-card-horizontal-stacking .pricing-card-grid-container{grid-template-columns:1fr}}@media (min-width: 91.875rem){.grid-compact.pricing-card-horizontal .pricing-card-grid-container{gap:1.5rem}.grid-compact.pricing-card-horizontal .pricing-card-item-3col{min-width:17.5rem}}.grid:not(.grid-compact) .pricing-card-grid-item{display:flex!important;flex-direction:row;overflow-x:scroll;padding-left:calc(var(--grid-gap) * 2);padding-right:calc(var(--grid-gap) * 2)}.grid:not(.grid-compact) .pricing-card-grid-item::-webkit-scrollbar{display:none}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-horizontal-header{margin-bottom:1rem}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-horizontal-pricing-card-item .pricing-card-item-data-grid-item .data-item-border-bottom:last-of-type{margin-bottom:1rem}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-item-3col{width:calc(100% / 3);flex-grow:inherit}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-item-spacing-2col{flex:1;display:flex;flex-direction:column}.grid:not(.grid-compact).pricing-card-horizontal-mobile-layout .pricing-card-item-3col{width:50%;flex-grow:inherit}.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-action-group{display:flex;flex-direction:column;flex:1;justify-content:flex-end}.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-value,.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-group{margin:0;padding-bottom:1rem}@media (max-width: 63.9375rem){.grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item{flex-direction:column;gap:1rem}[dir=ltr] .grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item .pricing-card-item-wrapper{margin-right:0}[dir=rtl] .grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item .pricing-card-item-wrapper{margin-left:0}.grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item .pricing-card-item-wrapper{width:auto}}@media (min-width: 64rem){.grid:not(.grid-compact) .pricing-card-grid-item{padding-left:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2));padding-right:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2))}}@media (min-width: 91.875rem){.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-value,.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-group{margin:0;padding-bottom:.625rem}.grid:not(.grid-compact) .pricing-card-horizontal .pricing-card-item-3col{width:calc(100% / 3.5)}}@media (min-width: 107.875rem){.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-horizontal-header{margin-bottom:1.5rem}.grid:not(.grid-compact) .pricing-card-grid-item{overflow:hidden;grid-column-start:3!important;grid-column-end:-3!important;padding-left:0;padding-right:0}}@media (min-width: 120rem){.grid:not(.grid-compact) .pricing-card-grid-item{padding-left:0;padding-right:0}}.pricing-mega-card .pricing-mega-card-top-section{padding:2rem;border-radius:1.5rem;display:block}@media (min-width: 80rem){.pricing-mega-card .pricing-mega-card-top-section{display:flex;padding:5rem}}.pricing-mega-card .pricing-mega-card-top-section .text-group .text-group-content-button-group{padding-bottom:1rem}.pricing-mega-card .card-number{display:flex;align-items:baseline;white-space:pre;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;min-width:7.5rem}.pricing-mega-card .numAndSymbol{display:flex;flex-direction:row;align-items:center;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;flex-shrink:0}.pricing-mega-card .number{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}[dir=ltr] .pricing-mega-card-list{padding-left:0}[dir=rtl] .pricing-mega-card-list{padding-right:0}.pricing-mega-card-list{list-style:none;margin:0}.pricing-mega-card-text-group,.pricing-mega-card-pricing-list{width:100%}@media (min-width: 80rem){.pricing-mega-card-text-group,.pricing-mega-card-pricing-list{width:50%}}@media (min-width: 80rem){[dir=ltr] .pricing-mega-card-text-group{padding-right:1rem}[dir=rtl] .pricing-mega-card-text-group{padding-left:1rem}}[dir=ltr] .pricing-mega-card-pricing-list{padding-left:0}[dir=rtl] .pricing-mega-card-pricing-list{padding-right:0}.pricing-mega-card-pricing-list{color:#001c64;margin-top:3rem}@media (min-width: 80rem){[dir=ltr] .pricing-mega-card-pricing-list{padding-left:1rem}[dir=rtl] .pricing-mega-card-pricing-list{padding-right:1rem}.pricing-mega-card-pricing-list{margin-top:0}}.pricing-mega-card-pricing-list .pricing-list-item{display:flex;flex-direction:column;border-bottom:.125rem solid #929496;padding:1.25rem 0}.pricing-mega-card-pricing-list .pricing-list-item:last-of-type{border:none}.pricing-mega-card-pricing-list .pricing-list-item:first-of-type{border-top:.125rem solid #929496}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .pricing-list-item{padding:2rem 0;flex-direction:row;align-items:center}}@media (min-width: 91.875rem){[dir=ltr] .pricing-mega-card-pricing-list .paragraph{margin-left:1.5rem;margin-right:0}[dir=rtl] .pricing-mega-card-pricing-list .paragraph{margin-right:1.5rem;margin-left:0}.pricing-mega-card-pricing-list .paragraph{margin-top:0;margin-bottom:0}}@media (max-width: 91.875rem){[dir=ltr] .pricing-mega-card-pricing-list .paragraph{margin-left:0}[dir=rtl] .pricing-mega-card-pricing-list .paragraph{margin-right:0}.pricing-mega-card-pricing-list .paragraph{margin-top:.5rem}}.pricing-mega-card-pricing-list .card-number{align-items:center;font-size:1.802rem;line-height:120%;letter-spacing:-.01em}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .card-number{font-size:3.052rem;display:flex;flex-wrap:wrap;flex-shrink:0;max-width:12.6rem}}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .card-number{max-width:22.6rem}}.pricing-mega-card-pricing-list .numAndSymbol{font-size:2.027rem;letter-spacing:-.015em;flex-shrink:0}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .numAndSymbol{font-size:3.815rem;margin:0}}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .number{font-size:3.815rem;margin:0}}.pricing-mega-card-pricing-list .symbol{font-size:2.027rem;letter-spacing:-.015em}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .symbol{font-size:3.052rem}}.pricing-mega-card-pricing-list .operator{align-self:start}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .operator{font-size:1.95rem;max-height:37px;display:flex;align-items:center;justify-content:center;align-self:center}}.pricing-mega-card-pricing-list .disclosure-item:first-of-type{padding-top:0}[dir=ltr] .pricing-mega-card-disclosure{padding-left:0}[dir=rtl] .pricing-mega-card-disclosure{padding-right:0}.pricing-mega-card-disclosure{margin-top:2rem}@media (max-width: 91.875rem){.pricing-mega-card-disclosure{margin-top:1.25rem}}.pricing-mega-card-pricing-card{border-radius:1.5rem;display:block;padding:2rem 1.5rem}@media (min-width: 80rem){.pricing-mega-card-pricing-card{display:flex;padding:0;justify-content:center}}.pricing-mega-card-pricing-card .pricing-card-item{text-align:center;padding:1rem 0;border-bottom:.125rem solid #c6c6c6}@media (min-width: 91.875rem){[dir=ltr] .pricing-mega-card-pricing-card .pricing-card-item{border-right:.125rem solid #c6c6c6}[dir=rtl] .pricing-mega-card-pricing-card .pricing-card-item{border-left:.125rem solid #c6c6c6}.pricing-mega-card-pricing-card .pricing-card-item{border-bottom:none;margin:3rem 0;padding:0 3rem;width:25%}}[dir=ltr] .pricing-mega-card-pricing-card .pricing-card-item:last-of-type{border-right:none}[dir=rtl] .pricing-mega-card-pricing-card .pricing-card-item:last-of-type{border-left:none}.pricing-mega-card-pricing-card .pricing-card-item:last-of-type{border-bottom:none}.pricing-mega-card-pricing-card .pricing-card-item .pricing-mega-card-item-list-item-container{flex-direction:column;align-items:center}.pricing-mega-card-pricing-card .pricing-card-item .card-number{font-size:1.424rem;line-height:120%;justify-content:center;padding:0 0 .5rem}@media (min-width: 91.875rem){.pricing-mega-card-pricing-card .pricing-card-item .card-number{padding:0 0 1rem;font-size:1.953rem}}.pricing-mega-card-pricing-card .pricing-card-item .number{margin-bottom:0;margin-top:0;line-height:120%;font-size:1.602rem;display:block}@media (min-width: 91.875rem){.pricing-mega-card-pricing-card .pricing-card-item .number{font-size:2.441rem}}.pricing-mega-card-pricing-card .pricing-card-item .paragraph{margin-bottom:0;margin-top:0}@media (min-width: 91.875rem){.pricing-mega-card-pricing-card .pricing-card-item .paragraph{padding-bottom:0}}.pricing-mega-card-list .pricing-card-item-2col,.pricing-mega-card-list .pricing-card-item-3col{min-width:unset}.pricing-mega-card-list .pricing-card-item-wrapper{background-color:transparent;padding:0;margin-bottom:2rem}@media (max-width: 91.875rem){.pricing-mega-card-list .pricing-card-item-wrapper{margin-bottom:1.25rem}}.pricing-mega-card-list .pricing-card-item-wrapper:last-of-type{margin-bottom:0}.pricing-mega-card-list .pricing-card-item-product-name{height:unset;margin-bottom:.5rem}@media (min-width: 91.875rem){.pricing-mega-card-list .pricing-card-item-product-name{margin-bottom:1rem}}.pricing-mega-card-list .pricing-mega-card-data-grid-item{flex-direction:column;width:100%;display:flex;justify-content:center}@media (min-width: 80rem){.pricing-mega-card-list .pricing-mega-card-data-grid-item{flex-direction:row;margin:3rem 0}}.pricing-mega-card-list .pricing-mega-card-data-item{border-bottom:.125rem solid #c6c6c6}@media (min-width: 80rem){[dir=ltr] .pricing-mega-card-list .pricing-mega-card-data-item{border-right:.125rem solid #c6c6c6}[dir=rtl] .pricing-mega-card-list .pricing-mega-card-data-item{border-left:.125rem solid #c6c6c6}.pricing-mega-card-list .pricing-mega-card-data-item{border-bottom:none;height:100%;padding:0 1.5rem}}.pricing-mega-card-list .pricing-mega-card-data-item:last-of-type{border:none}.caption{border:0;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.table-column-count-2 th,.table-column-count-2 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-2 th,.table-column-count-2 td{min-width:50%;width:50%}}.table-column-count-3 th,.table-column-count-3 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-3 th,.table-column-count-3 td{min-width:33.33%;width:33.33%}}.table-column-count-4 th,.table-column-count-4 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-4 th,.table-column-count-4 td{min-width:25%;width:25%}}.table-column-count-5 th,.table-column-count-5 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-5 th,.table-column-count-5 td{min-width:20%;width:20%}}.table-tooltip-icon button path{fill:#0070e0}.table-item-paragraph:not(:first-child){padding-top:.5rem}.table-table-wrapper{padding:0 .5rem .5rem;border-radius:1.5rem;background-color:#faf8f5;display:table;width:100%}@media (min-width: 48rem){.table-table-wrapper{padding:0 1.5rem 1.5rem}}[dir=ltr] .table-bnpl-table{text-align:left}[dir=rtl] .table-bnpl-table{text-align:right}.table-bnpl-table{color:#001c64;border-collapse:collapse;display:table;width:100%}.table-bnpl-table th{font-weight:400;outline:none}.table-bnpl-table th b,.table-bnpl-table th strong{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400;line-height:1.5rem}.table-bnpl-table td{color:#001435;color:var(--style-general-text, #001435);font-size:clamp(.875rem,.7321428571428572rem + .2232142857142857vw,1rem)}@supports not (font-size: clamp(.875rem,.7321428571428572rem + .2232142857142857vw,1rem)){.table-bnpl-table td{font-size:min(max(.875rem,.7321428571428572rem + .2232142857142857vw),1rem)}}.table-bnpl-table .table-header-row th{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;border-bottom:.0625rem solid #e6e0d9;position:relative;font-size:1.125rem;line-height:1.5rem;padding-top:2.5rem}@media (min-width: 48rem){.table-bnpl-table .table-header-row th{font-size:1.25rem;line-height:160%;padding-top:2rem}}.table-bnpl-table .table-header-row th:first-of-type,.table-bnpl-table .table-header-row th:last-of-type{border-bottom:none}[dir=ltr] .table-bnpl-table .table-header-row th:first-of-type:after,[dir=ltr] .table-bnpl-table .table-header-row th:last-of-type:after{right:0}[dir=rtl] .table-bnpl-table .table-header-row th:first-of-type:after,[dir=rtl] .table-bnpl-table .table-header-row th:last-of-type:after{left:0}.table-bnpl-table .table-header-row th:first-of-type:after,.table-bnpl-table .table-header-row th:last-of-type:after{content:\\\"\\\";position:absolute;width:calc(100% - .7rem);height:.0625rem;background:#e6e0d9;bottom:-.03125rem}@media (min-width: 41.0625rem){.table-bnpl-table .table-header-row th:first-of-type:after,.table-bnpl-table .table-header-row th:last-of-type:after{width:calc(100% - 1.5rem)}}[dir=ltr] .table-bnpl-table .table-header-row th:last-of-type:after{left:0}[dir=rtl] .table-bnpl-table .table-header-row th:last-of-type:after{right:0}.table-bnpl-table th,.table-bnpl-table td{padding:1rem;font-size:.875rem;line-height:1.25rem;vertical-align:top}.table-bnpl-table th a.table-cell-content-text,.table-bnpl-table td a.table-cell-content-text{color:#0070e0;color:var(--component-link, #0070e0);text-decoration:none;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.table-bnpl-table th a.table-cell-content-text:hover,.table-bnpl-table td a.table-cell-content-text:hover{text-decoration:underline}@media (min-width: 48rem){.table-bnpl-table th,.table-bnpl-table td{padding:1.5rem;font-size:1rem;line-height:1.5rem}}[dir=ltr] .table-bnpl-table td{border-left:.0625rem solid #e6e0d9}[dir=rtl] .table-bnpl-table td{border-right:.0625rem solid #e6e0d9}[dir=ltr] .table-bnpl-table .table-row th:first-child,[dir=ltr] .table-bnpl-table .table-row td:first-child{border-left:0}[dir=rtl] .table-bnpl-table .table-row th:first-child,[dir=rtl] .table-bnpl-table .table-row td:first-child{border-right:0}@media (min-width: 48rem){[dir=ltr] .table-bnpl-table .table-row th:first-child,[dir=ltr] .table-bnpl-table .table-row td:first-child{padding-left:1.5rem}[dir=rtl] .table-bnpl-table .table-row th:first-child,[dir=rtl] .table-bnpl-table .table-row td:first-child{padding-right:1.5rem}}@media (min-width: 48rem){[dir=ltr] .table-bnpl-table .table-row th:last-child,[dir=ltr] .table-bnpl-table .table-row td:last-child{padding-right:1.5rem}[dir=rtl] .table-bnpl-table .table-row th:last-child,[dir=rtl] .table-bnpl-table .table-row td:last-child{padding-left:1.5rem}}.table-bnpl-table .table-btn-row{border-top:.0625rem solid #e6e0d9}[dir=ltr] .table-bnpl-table .table-btn-row td.table-cta{border-left:none}[dir=rtl] .table-bnpl-table .table-btn-row td.table-cta{border-right:none}.table-bnpl-table .table-btn-row td a:hover{text-decoration:none}.table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd){background-color:#f1ede866;border-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-left-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-right-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-left-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-right-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-right-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-left-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-right-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-left-radius:1rem}.table-bnpl-table .table-cell-content-wrapper{display:flex;align-items:initial;justify-content:space-between}.table-bnpl-table .table-cell-content-text{white-space:pre-wrap}[dir=ltr] .table-bnpl-table ul,[dir=ltr] .table-bnpl-table ol{padding-left:1rem}[dir=rtl] .table-bnpl-table ul,[dir=rtl] .table-bnpl-table ol{padding-right:1rem}.table-expand-button{display:flex;justify-content:center;align-items:center;width:100%;margin-top:1.1875rem}.pricing-table-card-grid-item{padding:2rem;border-radius:1rem}.pricing-table-card-table-wrapper-tablet{margin-top:2.25rem}.pricing-table-card-table-wrapper-tablet .pricing-table-card-table-row-header{display:none}.pricing-table-card-table-wrapper-tablet .pricing-table-card-table-data-row{border-top:.125rem solid var(--style-border-color);padding:1rem 0}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{margin-right:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{margin-left:0}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{background-color:transparent;min-width:initial;padding:1rem 0}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data .pricing-card-item-product-name{height:initial}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data .pricing-card-item-product-name,.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data .pricing-card-item-text{color:var(--style-headline-text);margin-bottom:.25rem}.pricing-table-card-truncated-text-group:not(:first-child){margin-top:1rem}.pricing-table-card-cta{margin-top:2rem}.pricing-table-card-disclosure-inside{margin-top:.25rem}.pricing-table-card-table-wrapper-desktop{display:none}@media (min-width: 41.0625rem){.pricing-table-card-grid-item{border-radius:1.5rem}.pricing-table-card-table-wrapper-tablet .pricing-table-card-table-data-row{display:flex;flex-wrap:wrap}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{padding:1rem;max-width:50%}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(odd){padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(odd){padding-right:0}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(2n){padding-right:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(2n){padding-left:0}.pricing-table-card-disclosure-inside{margin-top:.75rem}}@media (min-width: 64rem){.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3{max-width:calc(100% / 3);padding:1rem}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:nth-child(odd),.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:nth-child(2n){padding:1rem}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:first-child{padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:first-child{padding-right:0}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:last-child{padding-right:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:last-child{padding-left:0}}@media (min-width: 107.875rem){.pricing-table-card-truncated-text-group:not(:first-child){margin-top:1.5rem}}@media (min-width: 91.875rem){.pricing-table-card-grid-item{padding:5rem}.pricing-table-card-table-wrapper-tablet{display:none}.pricing-table-card-table-wrapper-desktop{display:block;margin-top:2rem}.pricing-table-card-table-wrapper-desktop .table-table-wrapper{padding:0;background-color:transparent;border:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container{color:var(--style-headline-text)}[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row th:last-child,[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row td:last-child{padding-right:0}[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row th:last-child,[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row td:last-child{padding-left:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container tr:not(.table-header-row):nth-child(odd){background-color:transparent}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th{padding:1rem;vertical-align:bottom;border-bottom:.125rem solid var(--style-border-color)}[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-child{padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-child{padding-right:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td{padding:1rem;border:0;vertical-align:baseline}[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td:first-child{padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td:first-child{padding-right:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td .pricing-card-item-wrapper{padding:0;background-color:transparent;min-width:initial;color:var(--style-headline-text)}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td .pricing-card-item-wrapper .pricing-card-item-product-name,.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td .pricing-card-item-wrapper .pricing-card-item-text{color:var(--style-headline-text);margin-bottom:.25rem}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row:nth-child(2) td{padding-top:2rem}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row:nth-child(2) td:last-child{padding-top:2rem}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-of-type:after,.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:last-of-type:after{width:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-of-type,.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:last-of-type{border-bottom:.125rem solid var(--style-border-color)}.pricing-table-card-disclosure-inside{margin-top:1.75rem}.pricing-table-card-cta{margin-top:3rem}}.product-section{height:auto}.product-section-no-scrollable{min-height:auto}.product-section-contents{align-items:center;align-content:center;position:-webkit-sticky;position:sticky}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)]{grid-auto-rows:-webkit-min-content minmax(50px,60vh);grid-auto-rows:min-content minmax(50px,60vh);grid-template-rows:-webkit-min-content minmax(50px,60vh);grid-template-rows:min-content minmax(50px,60vh)}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner){grid-auto-rows:-webkit-min-content minmax(50px,60vh);grid-auto-rows:min-content minmax(50px,60vh);grid-template-rows:-webkit-min-content minmax(50px,60vh);grid-template-rows:min-content minmax(50px,60vh)}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container{-webkit-clip-path:inset(0 -100vw -100vh);clip-path:inset(0 -100vw -100vh)}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container{-webkit-clip-path:inset(0 -100vw -100vh);clip-path:inset(0 -100vw -100vh)}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container::before,.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container::after{z-index:inherit;content:\\\"\\\";position:absolute;width:105%;height:10%;right:0}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container:before,.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container:after{z-index:inherit;content:\\\"\\\";position:absolute;width:105%;height:10%;right:0}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container::before{top:0;background:linear-gradient(180deg,white 0%,rgba(255,255,255,0) 100%);background:linear-gradient(180deg,var(--style-background-color, white) 0%,rgba(255,255,255,0) 100%)}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container:before{top:0;background:linear-gradient(180deg,white 0%,rgba(255,255,255,0) 100%);background:linear-gradient(180deg,var(--style-background-color, white) 0%,rgba(255,255,255,0) 100%)}.product-section-contents.product-section-contents-scrollable div.media-container{position:-webkit-sticky;position:sticky;top:0;height:100%}.product-section-contents.product-section-contents-scrollable .text-group-container{height:100%;position:-webkit-sticky;position:sticky;top:0}div.product-section-contents-no-scrollable,section.product-section-contents-no-scrollable{height:auto;grid-row-gap:2rem}div.media-container{display:grid;align-items:center;justify-items:center;place-items:center;position:relative}.media-item{left:50%;position:absolute;transform:translate(-50%);width:100%}.media-item img{border-radius:2rem;max-width:100%;-o-object-fit:cover;object-fit:cover}@supports (aspect-ratio: auto){.media-item-media-size-3-4 img{aspect-ratio:3 / 4}.media-item-media-size-4-3 img{aspect-ratio:4 / 3;width:100%}.media-item-media-size-1-1 img{aspect-ratio:1 / 1;width:100%}}@supports not (aspect-ratio: auto){.media-item-media-size-4-3 .image-frame{width:100%}.media-item-media-size-4-3 picture{padding-top:75%;height:0;position:relative;overflow:hidden;border-radius:2rem}.media-item-media-size-4-3 img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%}.media-item-media-size-1-1 .image-frame{width:100%}.media-item-media-size-1-1 picture{height:0;padding-top:100%;position:relative;overflow:hidden}.media-item-media-size-1-1 img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%}}.media-item-no-scrollable{display:grid;left:auto;max-height:none;align-items:center;justify-items:center;place-items:center;position:relative;transform:none}.text-group-container-no-scrollable:not(:last-child){margin-bottom:calc(16vw - var(--grid-gap))}[dir=ltr] .text-group-item{text-align:left}[dir=rtl] .text-group-item{text-align:right}.text-group-item{position:relative;margin-bottom:2vw;margin-top:2vw}.text-group-item ul{padding-left:0;list-style-position:inside}.text-group-item .text-group-item-header{background-color:transparent;cursor:pointer;border:none;outline:none;padding:0;text-align:inherit}.text-group-item .text-group-item-header:focus:before{background-color:#0070e0;background-color:var(--component-inline-button-focus-border, #0070e0);border-radius:.5rem;content:\\\"\\\";display:block;top:0;right:auto;bottom:0;left:calc(var(--grid-gap) * -1);position:absolute;width:.25rem}@supports selector(:focus-visible){.text-group-item .text-group-item-header:focus:before{display:none}.text-group-item .text-group-item-header.focus-visible:before{background-color:#0070e0;background-color:var(--component-inline-button-focus-border, #0070e0);border-radius:.5rem;content:\\\"\\\";display:block;top:0;right:auto;bottom:0;left:calc(var(--grid-gap) * -1);position:absolute;width:.25rem}.text-group-item .text-group-item-header:focus-visible:before{background-color:#0070e0;background-color:var(--component-inline-button-focus-border, #0070e0);border-radius:.5rem;content:\\\"\\\";display:block;top:0;right:auto;bottom:0;left:calc(var(--grid-gap) * -1);position:absolute;width:.25rem}}.text-group-item .text-group-item-info{margin:0}.text-group-item .text-group-item-info .text-group-subheading{margin-bottom:1rem}.text-group-item .text-group-item-info .text-group-subheading a{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.text-group-item .text-group>*:last-child{margin-bottom:0}.text-group-item-no-scrollable{margin-bottom:0;margin-top:0}.text-group-item-no-scrollable.focus-visible:before,.text-group-item-no-scrollable:hover:before{display:none}.text-group-item-no-scrollable:focus-visible:before,.text-group-item-no-scrollable:hover:before{display:none}@media only screen and (min-width: 41.0625rem){.product-section{height:calc(var(--item-count) * 75vh)}.media-item img.image-frame-image-md{display:block;max-height:88vmin;margin:0 auto}.text-group-container-no-scrollable:not(:last-child){margin-bottom:0}.text-group-item{text-align:left}.text-group-item .text-group-item-info{overflow:hidden;margin-top:1rem}.text-group-item ul{list-style-position:unset}}.split-section .split-section-item-end-col{display:block}.split-section .split-section-item-end-col .feature-list{margin-top:1rem}.split-section-item-media-container{position:relative}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-1-1>div,.split-section-item-media-container.split-section-item-ratio-1-1-large>div,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large>div{aspect-ratio:1/1}.split-section-item-media-container.split-section-item-ratio-1-1 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-large .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large .video-frame-wrapper{width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-1-1 picture,.split-section-item-media-container.split-section-item-ratio-1-1-large picture,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large picture,.split-section-item-media-container.split-section-item-ratio-1-1 img,.split-section-item-media-container.split-section-item-ratio-1-1-large img,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large img{height:100%;width:100%;aspect-ratio:inherit}.split-section-item-media-container.split-section-item-ratio-1-1 video,.split-section-item-media-container.split-section-item-ratio-1-1-large video,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large video{width:100%;height:100%;aspect-ratio:inherit;-o-object-fit:cover;object-fit:cover}}@supports not (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-1-1 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-large .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large .video-frame-wrapper{padding-top:100%;height:0;position:relative;overflow:hidden;width:100%}.split-section-item-media-container.split-section-item-ratio-1-1 video,.split-section-item-media-container.split-section-item-ratio-1-1-large video,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-1-1 picture,.split-section-item-media-container.split-section-item-ratio-1-1-large picture,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large picture{padding-top:100%;height:0;position:relative;overflow:hidden}.split-section-item-media-container.split-section-item-ratio-1-1 img,.split-section-item-media-container.split-section-item-ratio-1-1-large img,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-3-4>div,.split-section-item-media-container.split-section-item-ratio-3-4-large>div{aspect-ratio:3/4}.split-section-item-media-container.split-section-item-ratio-3-4 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-3-4-large .video-frame-wrapper{width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-3-4 picture,.split-section-item-media-container.split-section-item-ratio-3-4-large picture,.split-section-item-media-container.split-section-item-ratio-3-4 img,.split-section-item-media-container.split-section-item-ratio-3-4-large img{height:100%;width:100%;aspect-ratio:inherit}.split-section-item-media-container.split-section-item-ratio-3-4 video,.split-section-item-media-container.split-section-item-ratio-3-4-large video{width:100%;height:100%;aspect-ratio:inherit;-o-object-fit:cover;object-fit:cover}}@supports not (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-3-4 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-3-4-large .video-frame-wrapper{padding-top:133.3%;height:0;position:relative;overflow:hidden;width:100%}.split-section-item-media-container.split-section-item-ratio-3-4 video,.split-section-item-media-container.split-section-item-ratio-3-4-large video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-3-4 picture,.split-section-item-media-container.split-section-item-ratio-3-4-large picture{padding-top:133.3%;height:0;position:relative;overflow:hidden}.split-section-item-media-container.split-section-item-ratio-3-4 img,.split-section-item-media-container.split-section-item-ratio-3-4-large img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-4-3>div{aspect-ratio:4/3}.split-section-item-media-container.split-section-item-ratio-4-3 .video-frame-wrapper{width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-4-3 picture,.split-section-item-media-container.split-section-item-ratio-4-3 img{height:100%;width:100%;aspect-ratio:inherit}.split-section-item-media-container.split-section-item-ratio-4-3 video{width:100%;height:100%;aspect-ratio:inherit;-o-object-fit:cover;object-fit:cover}}@supports not (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-4-3 .video-frame-wrapper{padding-top:75%;height:0;position:relative;overflow:hidden;width:100%}.split-section-item-media-container.split-section-item-ratio-4-3 video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-4-3 picture{padding-top:75%;height:0;position:relative;overflow:hidden}.split-section-item-media-container.split-section-item-ratio-4-3 img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}}@media only screen and (min-width: 41.0625rem){@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-1-1,.split-section-item-media-container.split-section-item-ratio-1-1-large,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large{aspect-ratio:1/1}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-3-4,.split-section-item-media-container.split-section-item-ratio-3-4-large{aspect-ratio:3/4}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-4-3{aspect-ratio:4/3}}div.split-section-item-start-col{display:flex;align-items:center}}@media only screen and (min-width: 41.0625rem){.split-section.grid-compact .split-section-headline-col{padding-bottom:clamp(2rem,-3.012534059945504rem + 12.20708446866485vw,4.8rem)}@supports not (font-size: clamp(2rem,-3.012534059945504rem + 12.20708446866485vw,4.8rem)){.split-section.grid-compact .split-section-headline-col{padding-bottom:min(max(2rem,-3.012534059945504rem + 12.20708446866485vw),4.8rem)}}}@media only screen and (min-width: 64rem){.split-section.grid-compact .split-section-headline-col{padding-bottom:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.split-section.grid-compact .split-section-headline-col{padding-bottom:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}}.split-section .split-section-headline-col h2{margin-bottom:0}@media only screen and (min-width: 41.0625rem){.split-section .split-section-headline-col{padding-bottom:clamp(3rem,-4.518801089918257rem + 18.310626702997276vw,7.2rem)}@supports not (font-size: clamp(3rem,-4.518801089918257rem + 18.310626702997276vw,7.2rem)){.split-section .split-section-headline-col{padding-bottom:min(max(3rem,-4.518801089918257rem + 18.310626702997276vw),7.2rem)}}.split-section .image-overlap{margin-top:calc(clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)*1)}@supports not (font-size: clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)){.split-section .image-overlap{margin-top:calc(min(max(2.5rem,1.6049046321525886rem + 2.17983651226158vw),3rem)*1)}}}@media only screen and (min-width: 64rem){.split-section .split-section-headline-col{padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.split-section .split-section-headline-col{padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}}@media only screen and (min-width: 107.875rem){.split-section .image-overlap{margin-top:calc(clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)*-1)}@supports not (font-size: clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)){.split-section .image-overlap{margin-top:calc(min(max(2.5rem,1.6049046321525886rem + 2.17983651226158vw),3rem)*-1)}}}.stack-section>.stack-section-row-spacing{margin-bottom:4vw}@supports (aspect-ratio: auto){.stack-section .stack-section-media{width:100%;aspect-ratio:1/1}.stack-section .stack-section-media .video-frame-wrapper{position:unset;display:flex;width:100%}.stack-section .stack-section-media img{width:100%;aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover}.stack-section .stack-section-media video{width:inherit;height:auto;aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover;border-radius:inherit}}@supports not (aspect-ratio: auto){.stack-section .stack-section-media picture{padding-top:100%;height:0;position:relative;overflow:hidden}.stack-section .stack-section-media .video-frame-wrapper{display:flex;padding-top:100%;height:0;position:relative;overflow:hidden;width:100%}.stack-section .stack-section-media img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}.stack-section .stack-section-media video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;border-radius:inherit}}@media (min-width: 41.0625rem){@supports (aspect-ratio: auto){.stack-section .stack-section-media{width:100%;aspect-ratio:16 / 9}.stack-section .stack-section-media img,.stack-section .stack-section-media video{aspect-ratio:16 / 9}}@supports not (aspect-ratio: auto){.stack-section .stack-section-media picture,.stack-section .stack-section-media .video-frame-wrapper{padding-top:56.25%}.stack-section .stack-section-media video{height:auto}}}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-table-wrapper{padding:0 0 1.5rem;background-color:transparent}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row th,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row td{padding:1rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row .button-group{background-color:inherit}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd){background-color:#dbdde033}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-left-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-right-radius:.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-left-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-right-radius:.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-right-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-left-radius:.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-right-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-left-radius:.5rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th{line-height:1.5rem;border-bottom:.0625rem solid #dbdde0}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type{border-bottom:none}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type:after,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type:after{background:#dbdde0;width:calc(100% - .5rem)}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table td{border-left:.0625rem solid #dbdde0}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table td:first-child{border-left:0}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .checkmark circle{fill:#5bbbfc33}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .checkmark path{fill:#0070e0}@media (min-width: 48rem){.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th{line-height:1.5rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type:after,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type:after{width:calc(100% - .5rem)}}@media (min-width: 91.875rem){.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row th,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row td{padding:1.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-left-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-right-radius:1rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-left-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-right-radius:1rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-right-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-left-radius:1rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-right-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-left-radius:1rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th{line-height:140%}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type:after,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type:after{width:calc(100% - .75rem)}}div.table-rebrand-text-group{margin-bottom:1rem}div.table-rebrand-table-grid{display:flex;flex-direction:row;overflow-x:auto;width:100%}div.table-rebrand-table-grid:before,div.table-rebrand-table-grid:after{content:\\\"\\\";flex:0 0 calc(var(--grid-gap) * 2)}@media (min-width: 64rem){div.table-rebrand-table-grid{overflow:initial}div.table-rebrand-table-grid:before,div.table-rebrand-table-grid:after{flex:0}}.table-rebrand .disclosure-item,.table-rebrand .disclosure-paragraph{padding-top:0}.comparison-variant .table-rebrand-multiple.table-rebrand-table-grid{overflow-x:visible}.comparison-variant .table-rebrand-multiple-table-container{overflow-x:auto}.comparison-variant .table-table-wrapper{background-color:unset;padding:0}.comparison-variant-table{border-collapse:separate;border-spacing:0;border:.0625rem solid #e6e0d9;border-radius:1rem}.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd){background-color:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-top-left-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-top-right-radius:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-bottom-left-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-bottom-right-radius:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-top-right-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-top-left-radius:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-bottom-right-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-bottom-left-radius:unset}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell{padding:1rem;border-bottom:none}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell:first-of-type:after,.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell:last-of-type:after{background-color:unset}.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row .comparison-variant-cell{padding:1rem}[dir=ltr] .comparison-variant-table.table-bnpl-table td.comparison-variant-cell{border-left:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table td.comparison-variant-cell{border-right:unset}.comparison-variant-table.table-column-count-4 th,.comparison-variant-table.table-column-count-4 td{width:25%}.comparison-variant-table.table-column-count-3 th,.comparison-variant-table.table-column-count-3 td{width:calc(100% / 3)}@supports (aspect-ratio: auto){.comparison-variant-table.table-column-count-3 .comparison-variant-header-image-frame img{aspect-ratio:16/9}}.comparison-variant-data-row th.comparison-variant-cell{background-color:#faf8f5}[dir=ltr] .comparison-variant-data-row:last-child th.comparison-variant-cell{border-bottom-left-radius:1rem}[dir=rtl] .comparison-variant-data-row:last-child th.comparison-variant-cell{border-bottom-right-radius:1rem}.comparison-variant-data-row:last-child th.comparison-variant-cell{border-bottom:unset}[dir=ltr] .comparison-variant-data-row:last-child td.comparison-variant-cell:last-child{border-bottom-right-radius:1rem}[dir=rtl] .comparison-variant-data-row:last-child td.comparison-variant-cell:last-child{border-bottom-left-radius:1rem}.comparison-variant-cell ul,.comparison-variant-cell ol{margin-top:0}.comparison-variant-cell .table-tooltip-icon button{align-items:initial;width:1.5rem;height:1.5rem}.comparison-variant-cell .table-tooltip-icon button:focus{outline:none}[dir=ltr] .comparison-variant-cell .table-tooltip-icon button:focus:after{left:-1rem}[dir=rtl] .comparison-variant-cell .table-tooltip-icon button:focus:after{right:-1rem}.comparison-variant-cell .table-tooltip-icon button:focus:after{top:-1rem}.comparison-variant-main-header-cell-empty{display:none}.comparison-variant-header-cell-content{display:flex;flex-direction:column;row-gap:1.5rem}.comparison-variant-header-image-frame{display:none}.comparison-variant-truncate-button-wrapper{position:relative;display:flex;justify-content:center;width:100%;padding:.5rem 0}.comparison-variant-last-visible-row-overlay .comparison-variant-cell{position:relative}.comparison-variant-last-visible-row-overlay .comparison-variant-cell>*{display:block;max-height:1.5rem;overflow:hidden}[dir=ltr] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{left:-.0625rem}[dir=rtl] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{right:-.0625rem}.comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{position:absolute;content:\\\"\\\";height:100%;width:calc(100% + .125rem);background:linear-gradient(to top,#ffffff 22.03%,rgba(255,255,255,0) 114.29%);top:.125rem;z-index:1}.comparison-variant .table-rebrand-multiple .table-table-wrapper{position:relative}.comparison-variant .table-rebrand-multiple~.table-rebrand-multiple tr.comparison-variant-header-row:first-child{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}[dir=ltr] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{border-left:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{right:0}[dir=rtl] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{left:0}.comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{position:absolute;content:\\\"\\\";height:var(--grid-gap);top:calc(var(--grid-gap) * -1)}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-table{border-top:none;border-bottom:none;border-radius:0}[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper,[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-bottom:.0625rem solid #e6e0d9;border-radius:0 0 1rem 1rem}[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{left:0}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{right:0}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{width:100%;top:0}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-table{border-bottom:none;border-radius:1rem 1rem 0 0}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell,[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell:after{border-bottom-right-radius:unset}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell,[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell:after{border-bottom-left-radius:unset}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell,.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell:after{border-bottom:initial}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:after{left:0}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:after{right:0}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:after{top:0}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:last-child:after{width:100%}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{padding-bottom:1.5rem}.comparison-variant .table-expand-button{width:auto;margin-top:0}.comparison-variant .table-expand-button.focus-visible:after{border-radius:.25rem}.comparison-variant .table-expand-button:focus-visible:after{border-radius:.25rem}@media (min-width: 41.0625rem){.comparison-variant-header-image-frame{display:block}.comparison-variant-header-image-frame img{border-radius:1rem}@supports (aspect-ratio: auto){.comparison-variant-header-image-frame img{aspect-ratio:4/3}}}@media (min-width: 64rem){[dir=ltr] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{left:0}[dir=rtl] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{right:0}.comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{width:calc(100% + .1rem)}.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row .comparison-variant-cell{padding:1rem}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell{padding-top:1rem}.comparison-variant .table-rebrand-multiple-table-container{overflow-x:visible}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table{margin-top:0}[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:none}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper,[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-left:none}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:none}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-bottom:none;border-radius:0}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{width:calc(100% + .1rem)}.comparison-variant .table-rebrand-multiple .comparison-variant-truncate-button-wrapper{border:none}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-table{border-radius:1rem}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:none}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:none}.comparison-variant-table{border:unset;border-radius:0}.comparison-variant-header-row th{border-top:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-header-row th:nth-child(2){border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-header-row th:nth-child(2){border-right:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-header-row th:nth-child(2){border-top-left-radius:1rem}[dir=rtl] .comparison-variant-header-row th:nth-child(2){border-top-right-radius:1rem}[dir=ltr] .comparison-variant-header-row th:last-child{border-top-right-radius:1rem}[dir=rtl] .comparison-variant-header-row th:last-child{border-top-left-radius:1rem}[dir=ltr] .comparison-variant-header-row th:last-child{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-header-row th:last-child{border-left:.0625rem solid #e6e0d9}.comparison-variant-header-row th:first-child{border-top:unset}[dir=ltr] .comparison-variant tr.comparison-variant-data-row th.comparison-variant-cell{border-top-left-radius:1rem}[dir=rtl] .comparison-variant tr.comparison-variant-data-row th.comparison-variant-cell{border-top-right-radius:1rem}[dir=ltr] .comparison-variant tr.comparison-variant-data-row~.comparison-variant-data-row th.comparison-variant-cell{border-top-left-radius:unset}[dir=rtl] .comparison-variant tr.comparison-variant-data-row~.comparison-variant-data-row th.comparison-variant-cell{border-top-right-radius:unset}.comparison-variant-data-row th.comparison-variant-cell{background-color:#faf8f5;border-bottom:.0625rem solid #e6e0d9}.comparison-variant-data-row td.comparison-variant-cell{border-bottom:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-data-row td.comparison-variant-cell:nth-child(2){border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-data-row td.comparison-variant-cell:nth-child(2){border-right:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-data-row td.comparison-variant-cell:last-child{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-data-row td.comparison-variant-cell:last-child{border-left:.0625rem solid #e6e0d9}.comparison-variant-last-visible-row-overlay th.comparison-variant-cell:first-child,.comparison-variant-last-visible-row-overlay td.comparison-variant-cell{border-bottom:unset}}@media (min-width: 91.875rem){.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row .comparison-variant-cell{padding:1rem 1.5rem}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell{padding:1.5rem}}.table-expand-button .body-text-size-body-bold{font-weight:400}.page-segment-control-nav-wrapper{background-color:#fff}.page-segment-control-nav-wrapper .page-segment-control-nav-tab-content{display:none;visibility:hidden}.page-segment-control-nav-wrapper .page-segment-control-nav-tab-content.page-segment-control-nav-active-content{display:block;visibility:visible}.page-segment-control-nav-sticky-wrapper{position:-webkit-sticky;position:sticky;z-index:3}.page-segment-control-nav{overflow:auto;transition:all .3s cubic-bezier(.22,1,.36,1)}.page-segment-control-nav.sticky{box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;padding-top:1rem;padding-bottom:1rem}.page-segment-control-nav .page-segment-control-nav-griditem{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;display:flex;flex-direction:row;gap:1rem;justify-content:center;align-items:center;position:relative}.page-segment-control-nav .page-segment-control-nav-links{display:flex;flex-direction:row;align-items:center;justify-content:flex-end}.page-segment-control-nav .page-segment-control-nav-link{white-space:nowrap;text-align:center;text-decoration:none;cursor:pointer;margin:0;padding:.1875rem .625rem;border-radius:6.25rem;z-index:0;position:relative;background-color:transparent}.page-segment-control-nav .page-segment-control-nav-link:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;transition:all .3s cubic-bezier(.22,1,.36,1);border:.0625rem solid #e6e0d9;opacity:0;border-radius:6.25rem}.page-segment-control-nav .page-segment-control-nav-link:hover{color:#0070e0}.page-segment-control-nav .page-segment-control-nav-link:hover:before{top:-.0625rem;right:-.0625rem;bottom:-.0625rem;left:-.0625rem;opacity:1}.page-segment-control-nav .page-segment-control-nav-link:active{color:#003087}.page-segment-control-nav .page-segment-control-nav-link:active:before{background-color:#b9effc;opacity:.4;border-radius:6.25rem;top:.0625rem;right:.0625rem;bottom:.0625rem;left:.0625rem}.page-segment-control-nav .page-segment-control-nav-link.focus-visible{box-shadow:0 0 0 .375rem #1072eb29;outline:.125rem solid #0070e0;box-sizing:border-box;outline-offset:0}.page-segment-control-nav .page-segment-control-nav-link:focus-visible{box-shadow:0 0 0 .375rem #1072eb29;outline:.125rem solid #0070e0;box-sizing:border-box;outline-offset:0}@media only screen and (min-width: 64rem){.page-segment-control-nav .page-segment-control-nav-griditem{flex-direction:row}[dir=ltr] .page-segment-control-nav .page-segment-control-nav-links{right:0}[dir=rtl] .page-segment-control-nav .page-segment-control-nav-links{left:0}.page-segment-control-nav .page-segment-control-nav-links{display:flex;flex-direction:row;align-items:center;margin-top:0;padding-top:0;position:absolute}}@media only screen and (min-width: 91.875rem){.page-segment-control-nav .page-segment-control-nav-link:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}.page-segment-control-nav .page-segment-control-nav-link:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}}.page-segment-control-nav .page-segment-control-nav-tab .body-text-size-caption-bold,.page-segment-control-nav .page-segment-control-nav-tab-active .body-text-size-caption-bold,.page-segment-control-nav .page-segment-control-nav-tab .body-text-size-body-large-bold,.page-segment-control-nav .page-segment-control-nav-tab-active .body-text-size-body-large-bold{font-weight:400}.grid-compact.font-quantum-leap.page-segment-control-nav.sticky{border-bottom:1px solid #dbdde0}.grid-compact.font-quantum-leap.page-segment-control-nav .page-segment-control-nav-link:hover:before{border-color:#dbdde0}@media screen and (max-width: 41rem){.grid.grid-compact.split-graphic-section .split-section-item-text{padding-top:3rem}.grid.grid-compact.split-graphic-section.split-graphic-section-image-position-start .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 13.62%}.grid.grid-compact.split-graphic-section.split-graphic-section-image-position-end .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: -13.62%}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.split-graphic-section .split-section-item-start-col{min-height:30vw;align-self:center}}@media only screen and (min-width: 91.875rem){.grid.grid-compact.split-graphic-section .split-section-item-start-col{min-height:32vw;align-self:center}}@media only screen and (min-width: 120rem){.grid.grid-compact.split-graphic-section .split-section-item-start-col{min-height:36rem;align-self:center}}.grid.split-graphic-section{align-content:center;grid-template-rows:auto auto}@media screen and (max-width: 41rem){.grid.split-graphic-section.split-graphic-section-mobile-spacing{padding-top:0}.grid.split-graphic-section.split-graphic-section-mobile-spacing.grid{grid-row-gap:0vw}.grid.split-graphic-section .split-section-item-text{padding-top:6rem}}.grid.split-graphic-section .split-section-item-media-container{min-height:80vw;aspect-ratio:1/1}@media (min-width: 41.0625rem){.grid.split-graphic-section .split-section-item-media-container{min-height:auto}}@media (min-width: 41.0625rem){.grid.split-graphic-section{grid-template-rows:auto;min-height:auto}}@media (min-width: 64rem){.grid.split-graphic-section{height:100%}}@media only screen and (min-width: 41.0625rem){.grid.split-graphic-section .split-section-item-start-col{min-height:auto;align-self:center}}@media only screen and (min-width: 41.0625rem){.grid.split-graphic-section .split-section-item-start-col{min-height:40vw;align-self:center}}@media only screen and (min-width: 120rem){.grid.split-graphic-section .split-section-item-start-col{min-height:52rem;align-self:center}}.grid.split-graphic-section.split-graphic-section-image-position-end .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: -21.3%}@media (min-width: 41.0625rem){.grid.split-graphic-section.split-graphic-section-image-position-end .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 0;transform:none}}.grid.split-graphic-section.split-graphic-section-image-position-start .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 21.3%}@media (min-width: 41.0625rem){.grid.split-graphic-section.split-graphic-section-image-position-start .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 0;transform:none}}.split-section-item-text{display:flex;margin-top:0}.split-section-item-text .text-group{align-self:center}.swatch-item{--background-scale: 1}.swatch-item.focus-visible{cursor:pointer;outline:none;transform:scale(1.005)}.swatch-item:focus-visible{cursor:pointer;outline:none;transform:scale(1.005)}.swatch-item.focus-visible:after,.swatch-item.focus-visible:before{content:\\\"\\\";position:absolute;top:0rem;width:100%;height:100%;text-indent:0rem;pointer-events:none;border-radius:1rem}.swatch-item:focus-visible:after,.swatch-item:focus-visible:before{content:\\\"\\\";position:absolute;top:0rem;width:100%;height:100%;text-indent:0rem;pointer-events:none;border-radius:1rem}@media screen and (min-width: 64rem){.swatch-item.focus-visible:after,.swatch-item.focus-visible:before{border-radius:1.5rem}.swatch-item:focus-visible:after,.swatch-item:focus-visible:before{border-radius:1.5rem}}.swatch-item.focus-visible:after{border:.1875rem solid #097ff5}.swatch-item:focus-visible:after{border:.1875rem solid #097ff5}.swatch-item.focus-visible:before{box-shadow:0 0 0 .375rem #1072eb29}.swatch-item:focus-visible:before{box-shadow:0 0 0 .375rem #1072eb29}.swatch-item-textposition-top .swatch-item-text-arrow-section,.swatch-item-text-position-top .swatch-item-text-arrow-section,.swatch-item-textposition-top .swatch-item-text-section,.swatch-item-text-position-top .swatch-item-text-section,.swatch-item-textposition-top .swatch-item-arrow-section,.swatch-item-text-position-top .swatch-item-arrow-section{align-items:start}.swatch-item-textposition-bottom .swatch-item-text-arrow-section,.swatch-item-text-position-bottom .swatch-item-text-arrow-section,.swatch-item-textposition-bottom .swatch-item-text-section,.swatch-item-text-position-bottom .swatch-item-text-section,.swatch-item-textposition-bottom .swatch-item-arrow-section,.swatch-item-text-position-bottom .swatch-item-arrow-section{align-self:end}.swatch-item-text-arrow-section{width:100%;display:flex;flex-direction:row;padding:1.25rem 1.5rem;justify-content:space-between}@media screen and (min-width: 91.875rem){.swatch-item-text-arrow-section{padding:2rem}}@media screen and (min-width: 120rem){.swatch-item-text-arrow-section{padding:3rem}}.swatch-item-text-arrow-section .text-group-headline{margin-bottom:0}.swatch-item{position:relative;min-height:6rem;height:100%;width:100%;display:flex;text-decoration:none;transform:none;border-radius:1rem;overflow:hidden}@media screen and (min-width: 64rem){.swatch-item{border-radius:1.5rem}}@media screen and (min-width: 120rem){.swatch-item{min-height:12rem}}.swatch-item:hover,.swatch-item:focus{text-decoration:none}.swatch-item.swatch-item-background-color-blue-600{background-color:#0070e0}.swatch-item.swatch-item-background-color-blue-700{background-color:#001c64}.swatch-item.swatch-item-background-color-gold{background-color:#ffd140}.swatch-item.swatch-item-background-color-neutral-100{background-color:#faf8f5}.swatch-item .swatch-item-bgackgroundimg{position:absolute;max-width:100%;height:100%;width:100%}.swatch-item .swatch-item-bgackgroundimg picture{height:100%}.swatch-item .swatch-item-bgackgroundimg img{max-width:100%;height:100%;width:100%;aspect-ratio:16/9;-o-object-fit:cover;object-fit:cover}.swatch-item-header.white-plate{padding:0;background-color:transparent}.swatch-item-container,.swatch-item-bgackgroundimg{overflow:hidden;border-radius:1rem}@media screen and (min-width: 64rem){.swatch-item-container,.swatch-item-bgackgroundimg{border-radius:1.5rem}}.swatch-item-bgackgroundimg img{transition:transform .9s cubic-bezier(.22,1,.36,1);transform:scale(var(--background-scale))}.swatch-item-media-frame-container{display:inline-flex;height:100%;aspect-ratio:16 / 9}.swatch-item-container{display:flex;height:100%;width:100%;z-index:1}.grid.swatch-grid-type-section-container{--row-height: 7.25rem;grid-auto-rows:var(--row-height);grid-template-rows:var(--row-height)}@media screen and (min-width: 64rem){.grid.swatch-grid-type-section-container{--row-height: 11vw}.grid.swatch-grid-type-section-container .section-wrapper-disclosure{grid-column-start:4;grid-column-end:-4}}@media screen and (min-width: 120rem){.grid.swatch-grid-type-section-container{--row-height: 12rem}}.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(132% + 36vw);padding-top:12vw;padding-bottom:12vw}.text-graphic-background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;display:flex;top:-2.125rem;left:-2.125rem;width:calc(100% + 13.0625rem);background:#faf8f5}.text-graphic-background-container{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;aspect-ratio:2/3}@media (min-width: 23.4375rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(126% + 36vw)}}@media (max-width: 41rem){.text-graphic-background .image-parallax-frame-inner{max-height:100%}}@media (min-width: 41.0625rem){.text-graphic-section{min-height:100vw}.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(64% + 24vw)}.text-graphic-background-container{-webkit-mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;aspect-ratio:2/3;-webkit-mask-image:url(\\\"data:image/svg+xml,%3Csvg width='1920' viewBox='0 0 1920 1955' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M357.622 1954.61H0V0H1918.25C1921.5 52.9614 1919.05 107.357 1910.39 162.598C1838.56 620.409 1445.24 958.401 981.679 958.401H678.403C631.396 958.401 591.254 992.711 583.859 1039.16L452.166 1873.85C444.771 1920.3 404.806 1954.61 357.622 1954.61Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");mask-image:url(\\\"data:image/svg+xml,%3Csvg width='1920' viewBox='0 0 1920 1955' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M357.622 1954.61H0V0H1918.25C1921.5 52.9614 1919.05 107.357 1910.39 162.598C1838.56 620.409 1445.24 958.401 981.679 958.401H678.403C631.396 958.401 591.254 992.711 583.859 1039.16L452.166 1873.85C444.771 1920.3 404.806 1954.61 357.622 1954.61Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");aspect-ratio:auto}.text-graphic-background{top:-3.625rem;left:-3.75rem;width:calc(100% + 7.625rem)}}@media (min-width: 64rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(82% + 24vw)}.text-graphic-background{height:100%;top:-5.215rem;left:-5.845rem;width:calc(100% + 11.884rem)}}@media (min-width: 91.875rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(74% + 20vw)}.text-graphic-background{top:-7.486rem;left:-8.39rem;width:calc(100% + 8.39rem + 8.67rem)}}@media (min-width: 120rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(100% + 14vw)}.text-graphic-background{top:-17.3125rem;left:-15rem;width:calc(100% + 30rem)}}@media (min-width: 140rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(100% + 12vw)}.text-graphic-section{min-height:auto}}@media (min-width: 165rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(100% + 2vw)}.text-graphic-section .text-graphic-section-text-group-grid{padding-top:8vw;padding-bottom:4vw}}.slate-plate .segment-control-group-tabs-container a[class^=segment-control-group-tab] span,.slate-gradient-plate .segment-control-group-tabs-container a[class^=segment-control-group-tab] span{color:#001c64}._segment-control-tab_h13hi_1{--seg-style-text--color: #001c64;--seg-style-active-shadow--color: rgba(0, 112, 224, .5);--seg-style-focus-shadow--color: rgba(16, 114, 235, .16);--seg-style-focus-outline--color: #0070e0;--seg-style-border--color: #001c64;position:relative;display:block;padding:.75rem 2rem;cursor:pointer;text-align:center;text-decoration:none;background-color:transparent;outline:none;border:none;overflow:visible;z-index:0}._segment-control-tab_h13hi_1:after{content:attr(data-text);color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em;display:block;height:0;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}._segment-control-tab_h13hi_1:before{content:\\\"\\\";position:absolute;top:.125rem;right:.125rem;bottom:.125rem;left:.125rem;border-radius:2rem;border:.125rem solid transparent;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,border-color,background-color;will-change:inset,border-color,background-color;z-index:-1}._segment-control-tab_h13hi_1:hover:before{top:0;right:0;bottom:0;left:0}._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}._segment-control-tab_h13hi_1:hover:before,._segment-control-tab_h13hi_1:active:before,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:before,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:hover:before{border:.15625rem solid rgba(0,112,224,.5);border:.15625rem solid var(--seg-style-active-shadow--color, rgba(0, 112, 224, .5));box-shadow:none}._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:before{border:.125rem solid #ffffff;border:.125rem solid var(--seg-style-border--color, #ffffff)}._segment-control-tab_h13hi_1:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:before,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:active:before{top:0rem;right:0rem;bottom:0rem;left:0rem}._segment-control-tab_h13hi_1:hover ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1._focus-visible_h13hi_1 ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1:active ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52 ._segment-control-tab-text_h13hi_72{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}._segment-control-tab_h13hi_1:hover ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1:focus-visible ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1:active ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52 ._segment-control-tab-text_h13hi_72{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}._segment-control-tab_h13hi_1._focus-visible_h13hi_1,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52._focus-visible_h13hi_1{outline:.125rem solid #0070e0;outline:.125rem solid var(--seg-style-focus-outline--color, #0070e0);outline-offset:0;border-radius:2rem;box-shadow:0 0 0 .375rem #1072eb29;box-shadow:0 0 0 .375rem var(--seg-style-focus-shadow--color, rgba(16, 114, 235, .16))}._segment-control-tab_h13hi_1:focus-visible,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:focus-visible{outline:.125rem solid #0070e0;outline:.125rem solid var(--seg-style-focus-outline--color, #0070e0);outline-offset:0;border-radius:2rem;box-shadow:0 0 0 .375rem #1072eb29;box-shadow:0 0 0 .375rem var(--seg-style-focus-shadow--color, rgba(16, 114, 235, .16))}._segment-control-tab_h13hi_1 ._segment-control-tab-text_h13hi_72{color:#fff;color:var(--seg-style-text--color, #ffffff)}._segment-control-tab-theme-secondary_h13hi_89{--seg-style-text--color: #ffffff;--seg-style-active-shadow--color: rgba(0, 112, 224, .5);--seg-style-focus-shadow--color: rgba(16, 114, 235, .16);--seg-style-focus-outline--color: #0070e0;--seg-style-border--color: #ffffff}._segment-control-group_55zyk_1{display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;gap:.5rem}nav._segment-control-group_55zyk_1{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}nav._segment-control-group_55zyk_1 ul{padding:0;margin:0;list-style-type:none;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;gap:.5rem}._grid_bhcu0_4{--edge-rail-col--width: 0;--outer-rail-col--width: 0;--inner-rail-col--width: 1fr;--inner-cols--num: 4;--grid-fluid-clamp-value--sm: clamp(.5rem, -.29999999999999993rem + 1.25vw, 1.2rem);--grid-fluid-clamp-value--md: clamp(1rem, -.5999999999999999rem + 2.5vw, 2.4rem);--grid-fluid-clamp-value--lg: clamp(2rem, -1.1999999999999997rem + 5vw, 4.8rem);--grid-fluid-clamp-value--xl: clamp(3rem, -1.7999999999999998rem + 7.5vw, 7.2rem);--grid-fluid-clamp-value--2xl: clamp(4rem, -2.3999999999999995rem + 10vw, 9.6rem);--grid-fluid-clamp-value--3xl: clamp(6rem, -3.5999999999999996rem + 15vw, 14.4rem);--grid-gap: clamp(1rem, .8226111636707663rem + .7568590350047304vw, 1.5rem);position:relative;display:grid;grid-column-gap:var(--grid-gap);grid-row-gap:var(--grid-gap);grid-template-columns:var(--edge-rail-col--width) var(--outer-rail-col--width) repeat(var(--inner-cols--num),var(--inner-rail-col--width)) var(--outer-rail-col--width) var(--edge-rail-col--width)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--sm: min(max(.5rem, -.29999999999999993rem + 1.25vw), 1.2rem)}}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--md: min(max(1rem, -.5999999999999999rem + 2.5vw), 2.4rem)}}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--lg: min(max(2rem, -1.1999999999999997rem + 5vw), 4.8rem)}}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--xl: min(max(3rem, -1.7999999999999998rem + 7.5vw), 7.2rem)}}@supports not (font-size: clamp(4rem,-2.3999999999999995rem + 10vw,9.6rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--2xl: min(max(4rem, -2.3999999999999995rem + 10vw), 9.6rem)}}@supports not (font-size: clamp(6rem,-3.5999999999999996rem + 15vw,14.4rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--3xl: min(max(6rem, -3.5999999999999996rem + 15vw), 14.4rem)}}@supports not (font-size: clamp(1rem,.8226111636707663rem + .7568590350047304vw,1.5rem)){._grid_bhcu0_4{--grid-gap: min(max(1rem, .8226111636707663rem + .7568590350047304vw), 1.5rem)}}@media only screen and (min-width: 64rem){._grid_bhcu0_4{--inner-cols--num: 12;--edge-rail-col--width: 8rem;--col-width: calc((100% - calc(var(--edge-rail-col--width) * 2) - calc(var(--grid-gap) * 15)) / 12)}}@media only screen and (min-width: 89.5rem){._grid_bhcu0_4{--edge-rail-col--width: clamp(8rem, -24.278688524590166rem + 36.0655737704918vw, 19rem);--outer-rail-col--width: 1fr;--inner-rail-col--width: calc((67.5rem - calc((var(--inner-cols--num) - 1) * 1.5rem)) / var(--inner-cols--num)) !important}@supports not (font-size: clamp(8rem,-24.278688524590166rem + 36.0655737704918vw,19rem)){._grid_bhcu0_4{--edge-rail-col--width: min(max(8rem, -24.278688524590166rem + 36.0655737704918vw), 19rem)}}}@media only screen and (min-width: 120rem){._grid_bhcu0_4{--edge-rail-col--width: 1fr;--outer-rail-col--width: 4.25rem}}[class*=grid_].pb-fixed-xs{padding-bottom:.25rem}[class*=grid_].pb-fixed-sm{padding-bottom:.375rem}[class*=grid_].pb-fixed-md{padding-bottom:.5rem}[class*=grid_].pb-fixed-lg{padding-bottom:.75rem}[class*=grid_].pb-fixed-xl{padding-bottom:1rem}[class*=grid_].pb-fixed-2xl{padding-bottom:1.5rem}[class*=grid_].pb-fixed-3xl{padding-bottom:2rem}[class*=grid_].pb-fixed-4xl{padding-bottom:3rem}[class*=grid_].pb-fixed-5xl{padding-bottom:4.5rem}[class*=grid_].pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}[class*=grid_].pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}[class*=grid_].pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}[class*=grid_].pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}[class*=grid_].pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].pb-0{padding-bottom:0}[class*=grid_].pt-fixed-xs{padding-top:.25rem}[class*=grid_].pt-fixed-sm{padding-top:.375rem}[class*=grid_].pt-fixed-md{padding-top:.5rem}[class*=grid_].pt-fixed-lg{padding-top:.75rem}[class*=grid_].pt-fixed-xl{padding-top:1rem}[class*=grid_].pt-fixed-2xl{padding-top:1.5rem}[class*=grid_].pt-fixed-3xl{padding-top:2rem}[class*=grid_].pt-fixed-4xl{padding-top:3rem}[class*=grid_].pt-fixed-5xl{padding-top:4.5rem}[class*=grid_].pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}[class*=grid_].pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}[class*=grid_].pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}[class*=grid_].pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}[class*=grid_].pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].pt-0{padding-top:0}[class*=grid_].mb-fixed-xs{margin-bottom:.25rem}[class*=grid_].mb-fixed-sm{margin-bottom:.375rem}[class*=grid_].mb-fixed-md{margin-bottom:.5rem}[class*=grid_].mb-fixed-lg{margin-bottom:.75rem}[class*=grid_].mb-fixed-xl{margin-bottom:1rem}[class*=grid_].mb-fixed-2xl{margin-bottom:1.5rem}[class*=grid_].mb-fixed-3xl{margin-bottom:2rem}[class*=grid_].mb-fixed-4xl{margin-bottom:3rem}[class*=grid_].mb-fixed-5xl{margin-bottom:4.5rem}[class*=grid_].mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}[class*=grid_].mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}[class*=grid_].mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}[class*=grid_].mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}[class*=grid_].mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].mb-0{margin-bottom:0}[class*=grid_].mt-fixed-xs{margin-top:.25rem}[class*=grid_].mt-fixed-sm{margin-top:.375rem}[class*=grid_].mt-fixed-md{margin-top:.5rem}[class*=grid_].mt-fixed-lg{margin-top:.75rem}[class*=grid_].mt-fixed-xl{margin-top:1rem}[class*=grid_].mt-fixed-2xl{margin-top:1.5rem}[class*=grid_].mt-fixed-3xl{margin-top:2rem}[class*=grid_].mt-fixed-4xl{margin-top:3rem}[class*=grid_].mt-fixed-5xl{margin-top:4.5rem}[class*=grid_].mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}[class*=grid_].mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}[class*=grid_].mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}[class*=grid_].mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}[class*=grid_].mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].mt-0{margin-top:0}[class*=grid_].gap-fixed-xs{grid-row-gap:.25rem}[class*=grid_].gap-fixed-sm{grid-row-gap:.375rem}[class*=grid_].gap-fixed-md{grid-row-gap:.5rem}[class*=grid_].gap-fixed-lg{grid-row-gap:.75rem}[class*=grid_].gap-fixed-xl{grid-row-gap:1rem}[class*=grid_].gap-fixed-2xl{grid-row-gap:1.5rem}[class*=grid_].gap-fixed-3xl{grid-row-gap:2rem}[class*=grid_].gap-fixed-4xl{grid-row-gap:3rem}[class*=grid_].gap-fixed-5xl{grid-row-gap:4.5rem}[class*=grid_].gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}[class*=grid_].gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}[class*=grid_].gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}[class*=grid_].gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}[class*=grid_].gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].gap-0{grid-row-gap:0}[class*=grid_].gap-default{grid-row-gap:var(--grid-gap)}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-default{grid-row-gap:var(--grid-gap)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-default{grid-row-gap:var(--grid-gap)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-default{grid-row-gap:var(--grid-gap)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-default{grid-row-gap:var(--grid-gap)}}._grid-item_u5yv6_1{display:block;grid-row-start:auto;grid-row-end:auto;grid-column-start:3;grid-column-end:7;align-self:auto}@media only screen and (min-width: 64rem){._grid-item_u5yv6_1{grid-column-start:3;grid-column-end:15}}[class*=grid-item_].pb-fixed-xs{padding-bottom:.25rem}[class*=grid-item_].pb-fixed-sm{padding-bottom:.375rem}[class*=grid-item_].pb-fixed-md{padding-bottom:.5rem}[class*=grid-item_].pb-fixed-lg{padding-bottom:.75rem}[class*=grid-item_].pb-fixed-xl{padding-bottom:1rem}[class*=grid-item_].pb-fixed-2xl{padding-bottom:1.5rem}[class*=grid-item_].pb-fixed-3xl{padding-bottom:2rem}[class*=grid-item_].pb-fixed-4xl{padding-bottom:3rem}[class*=grid-item_].pb-fixed-5xl{padding-bottom:4.5rem}[class*=grid-item_].pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}[class*=grid-item_].pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}[class*=grid-item_].pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}[class*=grid-item_].pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}[class*=grid-item_].pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}[class*=grid-item_].pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}[class*=grid-item_].pb-0{padding-bottom:0}[class*=grid-item_].pt-fixed-xs{padding-top:.25rem}[class*=grid-item_].pt-fixed-sm{padding-top:.375rem}[class*=grid-item_].pt-fixed-md{padding-top:.5rem}[class*=grid-item_].pt-fixed-lg{padding-top:.75rem}[class*=grid-item_].pt-fixed-xl{padding-top:1rem}[class*=grid-item_].pt-fixed-2xl{padding-top:1.5rem}[class*=grid-item_].pt-fixed-3xl{padding-top:2rem}[class*=grid-item_].pt-fixed-4xl{padding-top:3rem}[class*=grid-item_].pt-fixed-5xl{padding-top:4.5rem}[class*=grid-item_].pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}[class*=grid-item_].pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}[class*=grid-item_].pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}[class*=grid-item_].pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}[class*=grid-item_].pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}[class*=grid-item_].pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}[class*=grid-item_].pt-0{padding-top:0}[class*=grid-item_].row-start-1{grid-row-start:1}[class*=grid-item_].row-start-2{grid-row-start:2}[class*=grid-item_].row-start-3{grid-row-start:3}[class*=grid-item_].row-start-4{grid-row-start:4}[class*=grid-item_].row-start-auto{grid-row-start:auto}[class*=grid-item_].row-end-2{grid-row-end:2}[class*=grid-item_].row-end-3{grid-row-end:3}[class*=grid-item_].row-end-4{grid-row-end:4}[class*=grid-item_].row-end-5{grid-row-end:5}[class*=grid-item_].row-end-auto{grid-row-end:auto}[class*=grid-item_].row-end-span-1{grid-row-end:span 1}[class*=grid-item_].row-end-span-2{grid-row-end:span 2}[class*=grid-item_].row-end-span-3{grid-row-end:span 3}[class*=grid-item_].row-end-span-4{grid-row-end:span 4}[class*=grid-item_].align-start{align-self:start}[class*=grid-item_].align-center{align-self:center}[class*=grid-item_].align-end{align-self:end}[class*=grid-item_].align-default{align-self:default}[class*=grid-item_].col-start-auto{grid-column-start:auto}[class*=grid-item_].col-start-l-edge{grid-column-start:1}[class*=grid-item_].col-start-l-outer{grid-column-start:2}[class*=grid-item_].col-start-l-inner{grid-column-start:3}[class*=grid-item_].col-start-4{grid-column-start:4}[class*=grid-item_].col-start-5{grid-column-start:5}[class*=grid-item_].col-start-6{grid-column-start:6}[class*=grid-item_].col-start-7{grid-column-start:7}[class*=grid-item_].col-start-r-inner{grid-column-start:-3}[class*=grid-item_].col-start-r-outer{grid-column-start:-2}[class*=grid-item_].col-start-r-edge{grid-column-start:-1}[class*=grid-item_].col-end-auto{grid-column-end:auto}[class*=grid-item_].col-end-l-edge{grid-column-end:1}[class*=grid-item_].col-end-l-outer{grid-column-end:2}[class*=grid-item_].col-end-l-inner{grid-column-end:3}[class*=grid-item_].col-end-4{grid-column-end:4}[class*=grid-item_].col-end-5{grid-column-end:5}[class*=grid-item_].col-end-6{grid-column-end:6}[class*=grid-item_].col-end-7{grid-column-end:7}[class*=grid-item_].col-end-r-inner{grid-column-end:-3}[class*=grid-item_].col-end-r-outer{grid-column-end:-2}[class*=grid-item_].col-end-r-edge{grid-column-end:-1}[class*=grid-item_].d-block{display:block}[class*=grid-item_].d-none{display:none}[class*=grid-item_].z-5{z-index:5}[class*=grid-item_].z-10{z-index:10}[class*=grid-item_].z-15{z-index:15}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-start{align-self:start}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-center{align-self:center}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-end{align-self:end}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-default{align-self:default}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:d-block{display:block}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:d-none{display:none}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:z-5{z-index:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:z-10{z-index:10}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:z-15{z-index:15}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-start{align-self:start}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-center{align-self:center}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-end{align-self:end}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-default{align-self:default}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:d-block{display:block}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:d-none{display:none}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:z-5{z-index:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:z-10{z-index:10}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:z-15{z-index:15}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-start{align-self:start}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-center{align-self:center}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-end{align-self:end}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-default{align-self:default}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:d-block{display:block}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:d-none{display:none}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:z-5{z-index:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:z-10{z-index:10}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:z-15{z-index:15}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-start{align-self:start}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-center{align-self:center}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-end{align-self:end}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-default{align-self:default}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:d-block{display:block}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:d-none{display:none}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:z-5{z-index:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:z-10{z-index:10}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:z-15{z-index:15}}._media-control-wrapper_34mt4_1{background-color:transparent;border:none;border-radius:50%;display:inline-flex;padding:initial;box-sizing:border-box;outline:none;display:flex;align-items:center}._media-control-wrapper_34mt4_1.focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}._media-control-wrapper_34mt4_1:focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}._media-control-wrapper-outline_34mt4_17{box-sizing:content-box}._media-control-wrapper-inverse_34mt4_20.focus-visible{border:2.5px solid #5bbbfc}._media-control-wrapper-inverse_34mt4_20:focus-visible{border:2.5px solid #5bbbfc}._media-control-wrapper-size-small_34mt4_23,._media-control-play-svg-small_34mt4_24{width:2.5rem;height:2.5rem}._media-control-wrapper-size-large_34mt4_28,._media-control-play-svg-large_34mt4_29{width:3rem;height:3rem}._media-control-wrapper-size-x-large_34mt4_33,._media-control-play-svg-x-large_34mt4_34{width:5rem;height:5rem}._media-control-play-svg_34mt4_24:hover{cursor:pointer}._media-control-play-svg_34mt4_24:hover ._media-control-circle_34mt4_41{fill:#0070e0}._media-control-play-svg_34mt4_24:hover ._media-control-circle-inverse_34mt4_44{fill:#b9effc}._media-control-play-svg_34mt4_24:active ._media-control-circle_34mt4_41{fill:#001c64}._media-control-play-svg_34mt4_24:active ._media-control-circle-inverse_34mt4_44{fill:#e3e6f1}._media-control-circle-inverse_34mt4_44{fill:#fff}._media-control-triangle-inverse_34mt4_56{fill:#003087}._media-control-play-svg-outline-inverse_34mt4_59>path{fill:#fff}._media-control-play-svg-outline_34mt4_59{border-radius:50%}._media-control-play-svg-outline_34mt4_59:hover,._inline-video_8520u_1:hover{cursor:pointer}._inline-video-overlay_1slkw_1{position:absolute;background-color:#000;opacity:.3;height:100%;width:100%;border-radius:inherit}._video-frame_7p40v_1{position:relative}._video-frame_7p40v_1._video-frame-rounded-corners_7p40v_4 ._video-frame-wrapper_7p40v_4{overflow:hidden;border-radius:clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)}@supports not (font-size: clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)){._video-frame_7p40v_1._video-frame-rounded-corners_7p40v_4 ._video-frame-wrapper_7p40v_4{border-radius:min(max(1.5rem,.6049046321525886rem + 2.17983651226158vw),2rem)}}._video-frame-wrapper_7p40v_4{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;line-height:.5}._video-frame-wrapper_7p40v_4 video,._video-frame-wrapper_7p40v_4 img{-o-object-fit:cover;object-fit:cover;-o-object-position:center top;object-position:center top}._video-frame-wrapper_7p40v_4 video._video-frame-hide_7p40v_24{display:none}._video-frame-wrapper_7p40v_4 video._video-frame-show_7p40v_27{display:block}._video-frame-wrapper_7p40v_4:hover ._video-frame-controls-container_7p40v_30 button{opacity:.25}._video-frame-wrapper_7p40v_4:hover ._video-frame-video-duration_7p40v_33 button{opacity:1}._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button{opacity:0;transition:opacity .6s cubic-bezier(.22,1,.36,1)}._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:hover,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button.focus-visible,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:focus{opacity:1!important}._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:hover,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:focus-visible,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:focus{opacity:1!important}@media (hover: none){._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button{opacity:1}}._video-frame-wrapper_7p40v_4 ._video-frame-video-duration_7p40v_33 button{opacity:1}._video-frame-wrapper_7p40v_4._video-frame-wrapper-media-control-disable_7p40v_53{pointer-events:none}[dir=ltr] ._video-frame-controls-container_7p40v_30{right:0}[dir=rtl] ._video-frame-controls-container_7p40v_30{left:0}._video-frame-controls-container_7p40v_30{position:absolute;width:4.5%;bottom:0}[dir=ltr] ._video-frame-controls-container_7p40v_30>button{right:100%}[dir=rtl] ._video-frame-controls-container_7p40v_30>button{left:100%}._video-frame-controls-container_7p40v_30>button{position:absolute;bottom:100%}._video-frame-controls-container_7p40v_30:after{content:\\\"\\\";display:block;padding-bottom:100%}._video-frame-main-controls-container_7p40v_72{display:flex;flex-direction:column;align-items:center;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}._video-frame-main-controls-container_7p40v_72>button{margin-bottom:.75rem}._video-frame-body-text_7p40v_84{font-weight:400;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;color:#001c64}._video-frame-button-text-inverse_7p40v_89{color:#fff}._video-frame-youtube-video_7p40v_92{width:95vw;margin:0 .5rem;border-radius:1rem}@supports (aspect-ratio: auto){._video-frame-youtube-video_7p40v_92{aspect-ratio:16/9}}._video-frame-video-md_7p40v_102{display:none;visibility:hidden}._video-frame-video-base_7p40v_106{display:block;visibility:visible}@media (min-width: 41.0625rem){._video-frame-youtube-video_7p40v_92{border-radius:1.5rem}._video-frame-video-md_7p40v_102{display:block;visibility:visible}._video-frame-video-base_7p40v_106{display:none;visibility:hidden}}@media (min-width: 64rem){._video-frame-youtube-video_7p40v_92{max-width:85vw;max-height:85vh}}@media (min-width: 87.875rem){._video-frame-youtube-video_7p40v_92{max-width:75vw;max-height:85vh}}._video-cursor-pointer_7p40v_135:hover{cursor:pointer}._hero-video-animation-video-container_1jm9h_1{width:100%;margin:0 auto;max-width:120rem}._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_]{width:100%}._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_] video{width:100%;aspect-ratio:3 / 4}._hero-video-animation-image-container_1jm9h_13{width:100%}._hero-video-animation-image-container_1jm9h_13 picture>img{width:100%}@media only screen and (min-width: 41.0625rem){._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_] video{aspect-ratio:1}}@media only screen and (min-width: 64rem){._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_] video{aspect-ratio:2.23}}._hero-homepage-stack_khze3_2{background:var(--hero-consumer-home-page-stack-bg);overflow:clip;contain:paint;z-index:4;position:relative}._hero-homepage-stack-reduce-motion_khze3_12{height:auto}._hero-homepage-stack-reduce-motion_khze3_12 ._hero-homepage-stack-sticky-container_khze3_15{position:relative}._hero-homepage-stack-theme-white_khze3_18{--hero-consumer-home-page-stack-bg: #ffffff;--scg-linear-gradient-beg-stop--color: rgba(255, 255, 255, 0);--scg-linear-gradient-mid-stop--color: rgba(255, 255, 255, .95);--scg-linear-gradient-end-stop--color: #ffffff}._hero-homepage-stack-theme-stone_khze3_24{--hero-consumer-home-page-stack-bg: #f3f3f6;--scg-linear-gradient-beg-stop--color: rgba(243, 243, 246, 0);--scg-linear-gradient-mid-stop--color: rgba(243, 243, 246, .95);--scg-linear-gradient-end-stop--color: #f3f3f6}._hero-homepage-stack-theme-slate_khze3_30,._hero-homepage-stack-theme-slate-gradient_khze3_31{--scg-linear-gradient-beg-stop--color: rgba(0, 20, 53, 0);--scg-linear-gradient-mid-stop--color: rgba(0, 20, 53, .8);--scg-linear-gradient-end-stop--color: #001435}._hero-homepage-stack-theme-slate_khze3_30{--hero-consumer-home-page-stack-bg: #001435}._hero-homepage-stack-theme-slate-gradient_khze3_31{--hero-consumer-home-page-stack-bg: linear-gradient(180deg, #001435 43.89%, #003087 102%)}@media screen and (min-width: 64rem){._hero-homepage-stack-theme-slate-gradient_khze3_31{--hero-consumer-home-page-stack-bg: linear-gradient(220deg, #001435 69.7%, #003087 101.85%)}}@media only screen and (min-width: 64rem){._hero-homepage-stack-theme-white_khze3_18{--scg-linear-gradient-mid-stop--color: rgba(255, 255, 255, .8)}._hero-homepage-stack-theme-stone_khze3_24{--scg-linear-gradient-mid-stop--color: rgba(243, 243, 246, .8)}._hero-homepage-stack-theme-slate_khze3_30,._hero-homepage-stack-theme-slate-gradient_khze3_31{--scg-linear-gradient-mid-stop--color: rgba(0, 20, 53, .7)}}._hero-homepage-stack-segment-control-group-wrapper_khze3_59{display:flex;justify-content:center;align-items:flex-end}._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{position:-webkit-sticky;position:sticky;bottom:0;background:linear-gradient(180deg,var(--scg-linear-gradient-beg-stop--color) 0%,var(--scg-linear-gradient-mid-stop--color) 50%,var(--scg-linear-gradient-end-stop--color) 100%);min-height:12.5rem;height:30vh;padding-bottom:4rem;margin-bottom:calc(100svh - 100vh);width:100%;display:flex;justify-content:center;align-items:flex-end}._hero-homepage-stack-header-and-media-entry-animation_khze3_77{opacity:0;transform:translateY(var(--grid-fluid-clamp-value--sm));will-change:opacity,transform;animation:1s ease-in-out 1 _header-and-video-entry_khze3_1;animation-fill-mode:forwards;animation-delay:.3s}@keyframes _header-and-video-entry_khze3_1{0%{opacity:0;transform:translateY(var(--grid-fluid-clamp-value--sm))}to{opacity:1;transform:translateY(0)}}._hero-homepage-stack-segment-control-group-entry-animation_khze3_95{opacity:0;transform:translateY(40px);will-change:opacity,transform;animation:1s ease-in-out 1 _segment-control-group-entry_khze3_1;animation-fill-mode:forwards;animation-delay:.3s}@keyframes _segment-control-group-entry_khze3_1{0%{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}._hero-homepage-stack-outer_khze3_113{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}._hero-homepage-stack_khze3_2 [class*=text-group-button_]{margin-top:var(--grid-fluid-clamp-value--lg)}._hero-image-frame_khze3_120{aspect-ratio:3 / 4}@media only screen and (min-width: 23.4375rem) and (orientation: landscape){._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){._hero-homepage-stack_khze3_2{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}._hero-homepage-stack-outer_khze3_113{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}._hero-image-frame_khze3_120{aspect-ratio:1}}@media only screen and (min-width: 64rem){._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{padding-bottom:2rem}._hero-homepage-stack_khze3_2 [class*=text-group-button_]{margin-top:var(--grid-fluid-clamp-value--md)}._hero-image-frame_khze3_120{aspect-ratio:16 / 9}}@media only screen and (min-width: 91.875rem){._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{padding-bottom:4rem}._hero-homepage-stack-outer_khze3_113{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}}.mobile-app-store-banner{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1rem 0;background-color:#fff}.mobile-app-store-banner:after{content:\\\"\\\";position:absolute;top:6.4375rem;width:100%;border-bottom:.0625rem solid rgba(198,198,198,.32)}.mobile-app-store-banner-close-button{position:relative;margin:.938rem .75rem;padding:0;background-color:#fff;border:none;display:flex;align-items:center;cursor:pointer}.mobile-app-store-banner-close-button .mobile-app-store-banner-close-icon{width:1.125rem;height:1.125rem;color:#929496}.mobile-app-store-banner-close-button.focus-visible{outline:none}.mobile-app-store-banner-close-button:focus-visible{outline:none}.mobile-app-store-banner-close-button.focus-visible:after{content:\\\"\\\";position:absolute;top:-.25rem;left:-.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #d1e5f9e6;border-radius:inherit;text-indent:-.125rem;width:calc(100% + .5rem);height:calc(100% + .5rem);pointer-events:none;border-radius:50%}.mobile-app-store-banner-close-button:focus-visible:after{content:\\\"\\\";position:absolute;top:-.25rem;left:-.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #d1e5f9e6;border-radius:inherit;text-indent:-.125rem;width:calc(100% + .5rem);height:calc(100% + .5rem);pointer-events:none;border-radius:50%}.mobile-app-store-banner-logo-frame{border-radius:1rem}.mobile-app-store-banner-logo-frame img{width:4.5rem;height:4.5rem;min-width:4.5rem;min-height:4.5rem;border-radius:1rem;aspect-ratio:1}.mobile-app-store-banner-text-group{display:flex;flex-direction:column;width:100%;min-width:30%;margin:0 .25rem 0 .5rem}.mobile-app-store-banner-headline{color:#001435;font-size:1.25rem;line-height:140%;letter-spacing:-.2px}.mobile-app-store-banner-description{color:#545d68;font-size:.875rem;line-height:140%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:.25rem}.mobile-app-store-banner-cta-button{margin-right:.75rem}.mobile-app-store-banner-cta-button[class*=button-type]{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;font-size:.875rem;background-color:#0070e0;border:#0070e0;padding:.375rem 1rem;color:#fff}.mobile-app-store-banner-cta-button[class*=button-type].focus-visible,.mobile-app-store-banner-cta-button[class*=button-type]:hover,.mobile-app-store-banner-cta-button[class*=button-type]:visited{background-color:#0070e0;color:#fff}.mobile-app-store-banner-cta-button[class*=button-type]:focus-visible,.mobile-app-store-banner-cta-button[class*=button-type]:hover,.mobile-app-store-banner-cta-button[class*=button-type]:visited{background-color:#0070e0;color:#fff}.mobile-app-store-banner-star-rating-img,.mobile-app-store-banner-star-rating-img img{height:1.125rem}@media (min-width: 41.0625rem){.mobile-app-store-banner-close-button{margin:.938rem}.mobile-app-store-banner-text-group{margin-left:1rem}.mobile-app-store-banner-cta-button[class*=button-type]{padding:.375rem 1.938rem}}.pricing-feature-table-card-container{padding:2rem 1.5rem;border-radius:1rem}.pricing-feature-table-card .text-group{margin-bottom:2rem}.pricing-feature-table-card-row{padding:1rem 0;display:flex;gap:1rem;flex-direction:column}.pricing-feature-table-card-row .feature-list{margin-top:1rem}.pricing-feature-table-card-row .data-item+.data-item{margin-top:1rem}.pricing-feature-table-card-top-border{border-top:1px solid #929496}.pricing-feature-table-card-top-border+:not(.pricing-feature-table-card-top-border){padding-top:0}.pricing-feature-table-card .white-plate{background-color:#fff}.pricing-feature-table-card .neutral-100-plate{background-color:#faf8f5}.pricing-feature-table-card .blue-600-plate{background-color:#003087}.pricing-feature-table-card .blue-600-plate .pricing-feature-table-card-top-border{border-top:1px solid #b9effc}@media (min-width: 64rem){.pricing-feature-table-card-container{padding:clamp(3.88rem,-.7119282511210763rem + 7.174887892376682vw,5.88rem);border-radius:1.5rem}@supports not (font-size: clamp(3.88rem,-.7119282511210763rem + 7.174887892376682vw,5.88rem)){.pricing-feature-table-card-container{padding:min(max(3.88rem,-.7119282511210763rem + 7.174887892376682vw),5.88rem)}}.pricing-feature-table-card .text-group{margin-bottom:2.5rem}.pricing-feature-table-card-row{flex-direction:row;gap:1.5rem;padding:1.5rem 0}.pricing-feature-table-card-2col-row .pricing-feature-table-card-sub-item-row{width:70%}.pricing-feature-table-card-2col-row .pricing-feature-table-card-pricing-column,.pricing-feature-table-card-3col-row .pricing-feature-table-card-section-headline-row{width:30%}.pricing-feature-table-card-3col-row .pricing-feature-table-card-sub-item-row{width:40%}.pricing-feature-table-card-3col-row .pricing-feature-table-card-pricing-column,.pricing-feature-table-card-3col-media-row .pricing-feature-table-card-media{width:30%}.pricing-feature-table-card-3col-media-row .pricing-feature-table-card-sub-item-row{width:45%}.pricing-feature-table-card-3col-media-row .pricing-feature-table-card-pricing-column{width:25%}.pricing-feature-table-card-3col-mixed-row .pricing-feature-table-card-section-headline-row{width:30%}.pricing-feature-table-card-3col-mixed-row .pricing-feature-table-card-sub-item-row{width:45%}.pricing-feature-table-card-3col-mixed-row .pricing-feature-table-card-pricing-column{width:25%}}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://../node_modules/@paypalcorp/pp-com-components/dist/index.css\"],\"names\":[],\"mappings\":\"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\",\"sourcesContent\":[\".fluid-padding-top-2vw{padding-top:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-padding-top-2vw{padding-top:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.fluid-padding-bottom-2vw{padding-bottom:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-padding-bottom-2vw{padding-bottom:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.fluid-margin-top-2vw{margin-top:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-margin-top-2vw{margin-top:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.-fluid-margin-top-2vw{margin-top:calc(-1*clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem))}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.-fluid-margin-top-2vw{margin-top:calc(-1*min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem))}}.fluid-margin-bottom-2vw{margin-bottom:clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.fluid-margin-bottom-2vw{margin-bottom:min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem)}}.-fluid-margin-bottom-2vw{margin-bottom:calc(-1*clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem))}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){.-fluid-margin-bottom-2vw{margin-bottom:calc(-1*min(max(.5rem,-.29999999999999993rem + 1.25vw),1.2rem))}}.fluid-padding-top-4vw{padding-top:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-padding-top-4vw{padding-top:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.fluid-padding-bottom-4vw{padding-bottom:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-padding-bottom-4vw{padding-bottom:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.fluid-margin-top-4vw{margin-top:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-margin-top-4vw{margin-top:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.-fluid-margin-top-4vw{margin-top:calc(-1*clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem))}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.-fluid-margin-top-4vw{margin-top:calc(-1*min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem))}}.fluid-margin-bottom-4vw{margin-bottom:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.fluid-margin-bottom-4vw{margin-bottom:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}.-fluid-margin-bottom-4vw{margin-bottom:calc(-1*clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem))}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.-fluid-margin-bottom-4vw{margin-bottom:calc(-1*min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem))}}.fluid-padding-top-6vw{padding-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-padding-top-6vw{padding-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.fluid-padding-bottom-6vw{padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-padding-bottom-6vw{padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.fluid-margin-top-6vw{margin-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-margin-top-6vw{margin-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.-fluid-margin-top-6vw{margin-top:calc(-1*clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem))}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.-fluid-margin-top-6vw{margin-top:calc(-1*min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem))}}.fluid-margin-bottom-6vw{margin-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.fluid-margin-bottom-6vw{margin-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.-fluid-margin-bottom-6vw{margin-bottom:calc(-1*clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem))}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.-fluid-margin-bottom-6vw{margin-bottom:calc(-1*min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem))}}.fluid-padding-top-8vw{padding-top:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-padding-top-8vw{padding-top:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.fluid-padding-bottom-8vw{padding-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-padding-bottom-8vw{padding-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.fluid-margin-top-8vw{margin-top:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-margin-top-8vw{margin-top:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.-fluid-margin-top-8vw{margin-top:calc(-1*clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem))}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.-fluid-margin-top-8vw{margin-top:calc(-1*min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem))}}.fluid-margin-bottom-8vw{margin-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.fluid-margin-bottom-8vw{margin-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.-fluid-margin-bottom-8vw{margin-bottom:calc(-1*clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem))}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.-fluid-margin-bottom-8vw{margin-bottom:calc(-1*min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem))}}.grid{--edge-rail-col--width: 0;--outer-rail-col--width: 0;--inner-rail-col--width: 1fr;--inner-cols--num: 4;--grid-gap: clamp(1rem, .7224278312361214rem + 1.1843079200592153vw, 2rem);position:relative;display:grid;grid-column-gap:var(--grid-gap);grid-row-gap:var(--grid-gap);grid-template-columns:var(--edge-rail-col--width) var(--outer-rail-col--width) repeat(var(--inner-cols--num),var(--inner-rail-col--width)) var(--outer-rail-col--width) var(--edge-rail-col--width)}@supports not (font-size: clamp(1rem,.7224278312361214rem + 1.1843079200592153vw,2rem)){.grid{--grid-gap: min(max(1rem, .7224278312361214rem + 1.1843079200592153vw), 2rem)}}.grid.grid-compact{--grid-gap: clamp(1rem, .8226111636707663rem + .7568590350047304vw, 1.5rem) !important}@supports not (font-size: clamp(1rem,.8226111636707663rem + .7568590350047304vw,1.5rem)){.grid.grid-compact{--grid-gap: min(max(1rem, .8226111636707663rem + .7568590350047304vw), 1.5rem) !important}}@media only screen and (min-width: 64rem){.grid{--inner-cols--num: 12;--edge-rail-col--width: 8rem}.grid.grid-compact{--inner-cols--num: 12;--edge-rail-col--width: 8rem;--col-width: calc((100% - calc(var(--edge-rail-col--width) * 2) - calc(var(--grid-gap) * 15)) / 12)}}@media only screen and (min-width: 120rem){.grid{--edge-rail-col--width: clamp(8rem, -13.333333333333336rem + 17.77777777777778vw, 16rem)}@supports not (font-size: clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem)){.grid{--edge-rail-col--width: min(max(8rem, -13.333333333333336rem + 17.77777777777778vw), 16rem)}}}@media only screen and (min-width: 89.5rem){.grid.grid-compact{--edge-rail-col--width: clamp(8rem, -24.278688524590166rem + 36.0655737704918vw, 19rem);--outer-rail-col--width: 1fr}@supports not (font-size: clamp(8rem,-24.278688524590166rem + 36.0655737704918vw,19rem)){.grid.grid-compact{--edge-rail-col--width: min(max(8rem, -24.278688524590166rem + 36.0655737704918vw), 19rem)}}}@media only screen and (min-width: 120rem){.grid.grid-compact{--edge-rail-col--width: 1fr;--outer-rail-col--width: 4.25rem}}@media only screen and (min-width: 107.875rem){.grid{--inner-rail-col--width: calc((83.875rem - calc((var(--inner-cols--num) - 1) * 2rem)) / var(--inner-cols--num));--outer-rail-col--width: 1fr}}@media only screen and (min-width: 89.5rem){.grid.grid-compact{--inner-rail-col--width: calc((67.5rem - calc((var(--inner-cols--num) - 1) * 1.5rem)) / var(--inner-cols--num)) !important}}.white-plate{background-color:#fff;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001435;--style-general-text-muted: #545d68;--style-general-hyperlink: #0070e0;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #c6c6c6;--style-border-color: #c6c6c6;--style-small-fill: #5bbbfc;--component-button-primary: #003087;--component-button-secondary: #ffd140;--component-button-tertiary: #ffffff;--component-button-primary-border-color: #003087;--component-inline-button: #0070e0;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #0070e0;--component-hyperlink: #0070e0;--component-hyperlink-decoration: underline;--component-hyperlink-active: #003087;--component-hyperlink-active-decoration: underline;--component-hyperlink-hover: #003087;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087}.white-plate .white-plate{background-color:#faf8f5}.blue-700-plate{background-color:#001c64;--style-headline-text: #ffffff;--style-headline-highlight-text: #ffd140;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-700-plate .blue-700-plate{background-color:#003087}.gold-plate{background-color:#ffd140;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001c64;--style-general-text-muted: rgba(0,28,100,.90196);--style-general-hyperlink: #000000;--style-fill-1: #ffffff;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #929496;--style-border-color: #929496;--style-small-fill: #929496;--component-button-primary: #003087;--component-button-secondary: #ffffff;--component-button-tertiary: #001435;--component-button-primary-border-color: #003087;--component-inline-button: #001435;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #001435;--component-hyperlink: #001435;--component-hyperlink-active: #001435;--component-hyperlink-hover: #001435;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087;--component-hyperlink-decoration: underline}.gold-plate .gold-plate{background-color:#fff}.neutral-100-plate{background-color:#faf8f5;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001435;--style-general-text-muted: #545d68;--style-general-hyperlink: #0070e0;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #c6c6c6;--style-border-color: #c6c6c6;--style-small-fill: #5bbbfc;--component-button-primary: #003087;--component-button-secondary: #ffd140;--component-button-tertiary: #faf8f5;--component-button-primary-border-color: #003087;--component-inline-button: #0070e0;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #0070e0;--component-hyperlink: #0070e0;--component-hyperlink-decoration: underline;--component-hyperlink-active: #003087;--component-hyperlink-active-decoration: underline;--component-hyperlink-hover: #003087;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087}.neutral-100-plate .neutral-100-plate{background-color:#fff}.blue-400-alt-plate{background-color:#0070e0;--style-headline-text: #ffffff;--style-headline-highlight-text: #001c64;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #001c64;--style-fill-2: #003087;--style-icon-color: #b9effc;--style-stroke-color: #5bbbfc;--style-border-color: #5bbbfc;--style-small-fill: #b9effc;--component-button-primary: #ffffff;--component-button-secondary: #003087;--component-button-tertiary: #0070e0;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #ffffff;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-400-alt-plate .blue-400-alt-plate{background-color:#003087}.blue-500-plate{background-color:#0070e0;--style-headline-text: #ffffff;--style-headline-highlight-text: #ffd140;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #ffd140;--style-fill-2: #003087;--style-icon-color: #b9effc;--style-stroke-color: #5bbbfc;--style-border-color: #5bbbfc;--style-small-fill: #b9effc;--component-button-primary: #ffffff;--component-button-secondary: #003087;--component-button-tertiary: #0070e0;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #ffffff;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-500-plate .blue-500-plate{background-color:#003087}.blue-600-plate{background-color:#003087;--style-headline-text: #ffffff;--style-headline-highlight-text: #ffd140;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #ffd140;--style-fill-2: #0070e0;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.blue-600-plate .blue-600-plate{background-color:#0070e0}.stone-plate{background-color:#f3f3f6;--style-headline-text: #001c64;--style-headline-highlight-text: #0070e0;--style-general-text: #001435;--style-general-text-muted: #545d68;--style-general-hyperlink: #0070e0;--style-fill-1: #003087;--style-fill-2: #0070e0;--style-icon-color: #929496;--style-stroke-color: #c6c6c6;--style-border-color: #c6c6c6;--style-small-fill: #5bbbfc;--component-button-primary: #003087;--component-button-secondary: #ffd140;--component-button-tertiary: #faf8f5;--component-button-primary-border-color: #003087;--component-inline-button: #0070e0;--component-inline-button-focus-border: #0070e0;--component-inline-button-focus-shadow: rgba(16, 114, 235, .16);--component-inline-play-fill-1: #003087;--component-inline-play-fill-1-hover: #0070e0;--component-inline-play-fill-1-active: #001c64;--component-inline-play-fill-1-focus: #0070e0;--component-inline-play-fill-2: #ffffff;--component-link: #0070e0;--component-hyperlink: #0070e0;--component-hyperlink-active: #003087;--component-hyperlink-hover: #003087;--component-button-text-primary: #ffffff;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: transparent;--component-button-text-tertiary: #003087;--component-button-border-tertiary: #003087;--component-hyperlink-decoration: underline}.stone-plate .stone-plate{background-color:#fff}.slate-plate{background-color:#001435;--style-headline-text: #ffffff;--style-headline-highlight-text: #0070e0;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #0070e0;--style-fill-2: #ffffff;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.slate-plate .slate-plate{background-color:#003087}.slate-gradient-plate{background:linear-gradient(180deg,#001435 43.89%,#003087 102%);--style-headline-text: #ffffff;--style-headline-highlight-text: #0070e0;--style-general-text: #ffffff;--style-general-text-muted: rgba(255,255,255,.90196);--style-general-hyperlink: #ffffff;--style-fill-1: #0070e0;--style-fill-2: #ffffff;--style-icon-color: #b9effc;--style-stroke-color: #b9effc;--style-border-color: #5bbbfc;--style-small-fill: #5bbbfc;--component-button-primary: #ffffff;--component-button-secondary: #ffd140;--component-button-tertiary: #001c64;--component-button-primary-border-color: #ffffff;--component-inline-button: #ffffff;--component-inline-button-focus-border: #5bbbfc;--component-inline-button-focus-shadow: rgba(209, 241, 255, .16);--component-inline-play-fill-1: #ffffff;--component-inline-play-fill-1-hover: #b9effc;--component-inline-play-fill-1-active: #5bbbfc;--component-inline-play-fill-1-focus: #5bbbfc;--component-inline-play-fill-2: #003087;--component-link: #ffffff;--component-hyperlink: #ffffff;--component-hyperlink-active: #5bbbfc;--component-hyperlink-hover: #b9effc;--component-button-text-primary: #003087;--component-button-text-secondary: #003087;--component-button-bg-tertiary: transparent;--component-inline-button-active: #001c64;--component-button-text-tertiary: #ffffff;--component-button-border-tertiary: #ffffff;--component-hyperlink-decoration: underline}.slate-gradient-plate .slate-gradient-plate{background-color:#003087}@media (min-width: 64rem){.slate-gradient-plate{background:linear-gradient(220deg,#001435 69.7%,#003087 101.85%)}}.body-text-size-body-large,.body-text-size-body-large-bold,.body-text-size-body,.body-text-size-body-bold,.body-text-size-caption,.body-text-size-caption-bold{color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch}.body-text-size-body-large>a,.body-text-size-body-large-bold>a,.body-text-size-body>a,.body-text-size-body-bold>a,.body-text-size-caption>a,.body-text-size-caption-bold>a{color:#0070e0;color:var(--component-hyperlink, #0070e0);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-decoration, underline);text-decoration:var(--component-hyperlink-decoration, underline)}.body-text-size-body-large>a.focus-visible,.body-text-size-body-large-bold>a.focus-visible,.body-text-size-body>a.focus-visible,.body-text-size-body-bold>a.focus-visible,.body-text-size-caption>a.focus-visible,.body-text-size-caption-bold>a.focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}.body-text-size-body-large>a:focus-visible,.body-text-size-body-large-bold>a:focus-visible,.body-text-size-body>a:focus-visible,.body-text-size-body-bold>a:focus-visible,.body-text-size-caption>a:focus-visible,.body-text-size-caption-bold>a:focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}.body-text-size-body-large>a:active,.body-text-size-body-large-bold>a:active,.body-text-size-body>a:active,.body-text-size-body-bold>a:active,.body-text-size-caption>a:active,.body-text-size-caption-bold>a:active{color:#003087;color:var(--component-hyperlink-active, #003087);text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-active-decoration, underline);text-decoration:var(--component-hyperlink-active-decoration, underline)}.body-text-size-body-large>a:hover,.body-text-size-body-large-bold>a:hover,.body-text-size-body>a:hover,.body-text-size-body-bold>a:hover,.body-text-size-caption>a:hover,.body-text-size-caption-bold>a:hover{color:#003087;color:var(--component-hyperlink-hover, #003087);text-decoration:underline}.body-text-size-body-large>strong,.body-text-size-body-large-bold>strong,.body-text-size-body>strong,.body-text-size-body-bold>strong,.body-text-size-caption>strong,.body-text-size-caption-bold>strong{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.body-text-size-body-large-bold,.body-text-size-body-bold,.body-text-size-caption-bold{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400}.body-text-size-body-large-bold>a,.body-text-size-body-bold>a,.body-text-size-caption-bold>a,.body-text-size-body-large-bold>strong,.body-text-size-body-bold>strong,.body-text-size-caption-bold>strong{font-weight:inherit}.body-text-size-body-large,.body-text-size-body,.body-text-size-caption{font-weight:400}.body-text-size-body-large>a,.body-text-size-body>a,.body-text-size-caption>a,.body-text-size-body-large>strong,.body-text-size-body>strong,.body-text-size-caption>strong{font-weight:500}.body-text-size-body-large,.body-text-size-body-large-bold{font-size:clamp(.95rem,.607142857142857rem + .5357142857142858vw,1.25rem)}@supports not (font-size: clamp(.95rem,.607142857142857rem + .5357142857142858vw,1.25rem)){.body-text-size-body-large,.body-text-size-body-large-bold{font-size:min(max(.95rem,.607142857142857rem + .5357142857142858vw),1.25rem)}}.body-text-size-body,.body-text-size-body-bold{font-size:clamp(.9339999999999999rem,.8585714285714284rem + .11785714285714297vw,1rem)}@supports not (font-size: clamp(.9339999999999999rem,.8585714285714284rem + .11785714285714297vw,1rem)){.body-text-size-body,.body-text-size-body-bold{font-size:min(max(.9339999999999999rem,.8585714285714284rem + .11785714285714297vw),1rem)}}.body-text-size-caption,.body-text-size-caption-bold{font-size:.875rem}.font-quantum-leap .body-text-size-body,.font-quantum-leap .body-text-size-body-bold,.font-quantum-leap .body-text-size-body-large,.font-quantum-leap .body-text-size-body-large-bold{line-height:1.4}span[data-nosnippet]{display:inline-block}a.html-text-renderer-link{color:#0070e0;color:var(--component-hyperlink, #0070e0);text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-decoration, underline);text-decoration:var(--component-hyperlink-decoration, underline);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}a.html-text-renderer-link.focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}a.html-text-renderer-link:focus-visible{text-decoration:underline;border-radius:.25rem;outline:transparent solid .1875rem;box-shadow:#0070e0 0 0 0 .1875rem,#1072eb29 0 0 0 .5625rem;box-shadow:var(--component-inline-button-focus-border, #0070e0) 0 0 0 .1875rem,var(--component-inline-button-focus-shadow, rgba(16, 114, 235, .16)) 0 0 0 .5625rem}a.html-text-renderer-link:active{color:#003087;color:var(--component-hyperlink-active, #003087);text-decoration:underline;-webkit-text-decoration:var(--component-hyperlink-active-decoration, underline);text-decoration:var(--component-hyperlink-active-decoration, underline)}a.html-text-renderer-link:hover{color:#003087;color:var(--component-hyperlink-hover, #003087);text-decoration:underline}.disclosure{background:transparent}.disclosure-item,.disclosure-paragraph{padding-top:.5rem;max-width:none}.disclosure-item a,.disclosure-paragraph a{color:#0070e0;color:var(--component-link, #0070e0);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400;-webkit-text-decoration:var(--component-hyperlink-decoration);text-decoration:var(--component-hyperlink-decoration)}.disclosure-item sup,.disclosure-paragraph sup{min-width:.75rem;display:inline-block}.disclosure-text-color{color:#001c64}.disclosure-item.multi-line-text{display:flex;flex-direction:row;flex-wrap:nowrap}[dir=ltr] .disclosure-item.multi-line-text .multi-line-text-sup{text-align:left}[dir=rtl] .disclosure-item.multi-line-text .multi-line-text-sup{text-align:right}.disclosure-item.multi-line-text .multi-line-text-sup{font-size:.6rem}.disclosure-item.multi-line-text .multi-line-text-sup sup{top:0}.disclosure-item.multi-line-text .multi-line-text-paragraph{margin:0}[dir=ltr] .disclosure-item.multi-line-text-wo-sup{margin-left:.75rem}[dir=rtl] .disclosure-item.multi-line-text-wo-sup{margin-right:.75rem}.graphic-lottie-lottie-player{display:flex;align-items:center;justify-content:center;position:absolute;top:0;height:var(--height);min-height:var(--min-height);width:calc(.25px + var(--height) * var(--svg-ratio));min-width:calc(var(--min-height) * var(--svg-ratio));-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.graphic-lottie-lottie-player svg{z-index:-1;position:absolute;top:0;height:var(--svg-height);width:100%;background:var(--color-svg-background);-webkit-backface-visibility:hidden;backface-visibility:hidden;shape-rendering:auto;aspect-ratio:16 / 9;transform:none!important}@media only screen and (max-width: 63.9375rem){.graphic-lottie-lottie-player svg{transform:translate(var(--graphic-offset))!important}}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(255,255,255)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#ffffff\\\"]{fill:var(--color-background)}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(0,0,255)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#0000ff\\\"]{fill:var(--color-overlap)}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(255,0,0)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#ff0000\\\"]{fill:var(--color-secondary)}.graphic-lottie-lottie-player svg *[fill=\\\"rgb(0,255,0)\\\"],.graphic-lottie-lottie-player svg *[fill=\\\"#00ff00\\\"]{fill:var(--color-primary)}.shape-child{z-index:3}.section-wrapper-graphics-container{position:absolute;top:-.03125rem;bottom:-.03125rem;width:100%;overflow:hidden}.section-wrapper{max-width:100vw;overflow:hidden}.icon-button-wrapper{background-color:transparent;border:none;border-radius:50%;display:inline-flex;padding:initial;box-sizing:inherit;display:flex;align-items:center;cursor:pointer}.icon-button-circle-inverse{fill:#fff}.icon-button-close-incerse{fill:#001c64}[dir=ltr] .modal-overlay{left:0}[dir=rtl] .modal-overlay{right:0}.modal-overlay{position:fixed;top:0;z-index:1040;width:100vw;height:100vh;background-color:#001435b3;opacity:.7}[dir=ltr] .modal-modal{left:0}[dir=rtl] .modal-modal{right:0}.modal-modal{position:fixed;top:0;display:flex;flex-direction:column;justify-content:space-between;z-index:1050;background:transparent;height:100vh;overflow-x:hidden;overflow-y:auto;outline:0}@supports not (aspect-ratio: auto){.modal-modal iframe{position:absolute;transform:translate(-50%,-50%);left:50%;top:50%;height:100%}}[dir=ltr] .modal-header{padding-right:.5rem}[dir=rtl] .modal-header{padding-left:.5rem}.modal-header{display:flex;justify-content:flex-end;padding-top:.5rem}.modal-body{display:flex;align-items:center;justify-content:center;width:100vw}@supports not (aspect-ratio: auto){.modal-body{padding-top:56.25%;position:relative;overflow:hidden}}.modal-footer{height:6vh;visibility:hidden}@media (min-width: 64rem){[dir=ltr] .modal-header{padding-right:1rem}[dir=rtl] .modal-header{padding-left:1rem}.modal-header{padding-top:1rem;padding-bottom:.625rem}@supports not (aspect-ratio: auto){.modal-body{padding-top:42.25%}}}@media (min-width: 87.875rem){[dir=ltr] .modal-header{padding-right:1.5rem}[dir=rtl] .modal-header{padding-left:1.5rem}.modal-header{padding-top:1.5rem}}.youtube-video.youtube-video-rounded-dimensions{width:95vw;border-radius:1rem}@supports (aspect-ratio: auto){.youtube-video.youtube-video-rounded-dimensions{aspect-ratio:16/9}}@media (min-width: 41.0625rem){.youtube-video.youtube-video-rounded-dimensions{border-radius:1.5rem}}@media (min-width: 64rem){.youtube-video.youtube-video-rounded-dimensions{max-width:85vw;max-height:85vh}}@media (min-width: 87.875rem){.youtube-video.youtube-video-rounded-dimensions{max-width:75vw;max-height:85vh}}.youtube-video>iframe{border:0;width:100%;height:100%;border-radius:inherit}[dir=ltr] .inline-play-button{text-align:left}[dir=rtl] .inline-play-button{text-align:right}.inline-play-button{background-color:transparent;border:transparent;position:relative;color:var(--component-inline-button);padding:.375rem 0;border-radius:0;font-family:PayPalOpen-Bold;font-size:1rem;line-height:2rem;text-decoration:none;cursor:pointer;outline:none;display:inline-flex;align-items:center;justify-content:center}.inline-play-button.inline-play-button-theme{color:var(--component-inline-button)}[dir=ltr] .inline-play-button .inline-play-button-play-svg,[dir=ltr] .inline-play-button .inline-play-button-replay-svg{margin-right:.75rem}[dir=rtl] .inline-play-button .inline-play-button-play-svg,[dir=rtl] .inline-play-button .inline-play-button-replay-svg{margin-left:.75rem}.inline-play-button .inline-play-button-play-svg,.inline-play-button .inline-play-button-replay-svg{width:2.5rem;height:2.5rem;vertical-align:middle}.inline-play-button .inline-play-button-circle{fill:var(--component-inline-play-fill-1)}.inline-play-button .inline-play-button-triangle{fill:var(--component-inline-play-fill-2)}.inline-play-button:hover .inline-play-button-circle,.inline-play-button:focus .inline-play-button-circle{fill:var(--component-inline-play-fill-1-hover)}.inline-play-button:active .inline-play-button-circle{fill:var(--component-inline-play-fill-1-active)}.inline-play-button:focus:after,.inline-play-button:focus:before{width:calc(100% + 1rem);left:-.5rem;content:\\\"\\\";position:absolute;top:0rem;border:.1875rem solid var(--style-fill-2);border-radius:.2rem;text-indent:0rem;height:calc(100% + -0rem);pointer-events:none}.inline-play-button.inline-play-button-theme:focus:after{border:.1875rem solid var(--component-inline-play-fill-1-focus)}.inline-play-button:focus:before{content:\\\"\\\";position:absolute;top:0rem;border-radius:.188rem;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + -0rem);pointer-events:none}.inline-play-button:hover,.inline-play-button:focus{text-decoration:none}.inline-play-button-without-arrow:hover{text-decoration:underline}.arrow-icon-active-hover:not(:focus):hover .arrow-icon-theme>svg{transform:translate(.25rem)}.arrow-icon-active-hover:active .arrow-icon-theme>svg{transition:.3s cubic-bezier(.22,1,.36,1);transition-property:transform,opacity;will-change:transform,opacity;transform:translate(.25rem)}.arrow-icon{font-size:1rem;line-height:1rem;display:inline-block}[dir=rtl] .arrow-icon{transform:scaleX(-1)}.arrow-icon.arrow-icon-stroke{stroke:var(--component-inline-button)}.arrow-icon.arrow-icon-theme{position:relative;min-width:2.5rem;min-height:1.75rem}.arrow-icon.arrow-icon-theme>svg{position:absolute;transition:all .3s cubic-bezier(.22,1,.36,1);width:1.75rem;height:1rem;top:.4rem;left:.4rem;z-index:0}.arrow-icon.arrow-icon-theme>span.arrow-icon-circle{background:var(--component-inline-button);opacity:.2;border-radius:50%;display:inline-block;height:1.75rem;width:1.75rem;padding:.119rem .9rem;transition:all .3s cubic-bezier(.22,1,.36,1)}.arrow-icon.arrow-icon-theme.arrow-icon-size-small{min-width:1.875rem;min-height:1.3125rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-small>svg{width:1.25rem;height:.75rem;top:.3rem;left:.2rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-small>span.arrow-icon-circle{margin-left:-1rem;border-radius:50%;padding:.033rem .66rem;height:1.313rem;width:1.313rem;right:.1rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-extra-large{min-width:3.5rem;min-height:2.625rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-extra-large>svg{height:2rem;width:2.5rem;top:.6rem;left:.3rem}.arrow-icon.arrow-icon-theme.arrow-icon-size-extra-large>span.arrow-icon-circle{margin-left:-1.9rem;border-radius:50%;height:2.6rem;width:2.6rem;right:0}.arrow-icon.arrow-icon-theme>span.arrow-icon-circle{position:absolute;bottom:0;right:-.1rem}.arrow-icon.arrow-icon-theme>svg>path{stroke:var(--component-inline-button)}.arrow-icon.arrow-icon-theme>span.arrow-icon-circle{background:var(--component-inline-button);opacity:.2}.inline-button{background-color:transparent;border:transparent;position:relative;color:var(--component-inline-button);padding:.475rem 0;border-radius:0;font-family:PayPalOpen-Bold;font-size:1rem;line-height:1.625rem;font-weight:400;text-decoration:none;cursor:pointer;outline:none;display:inline-block}.inline-button .text-with-arrow{display:inline-flex;align-items:center;justify-content:center;-webkit-hyphens:auto;hyphens:auto}.inline-button.inline-button-size-small{font-size:.875rem;line-height:1.5rem}.inline-button.inline-button-theme{color:var(--component-inline-button)}[dir=ltr] .inline-button:focus:before{left:-.5rem}[dir=rtl] .inline-button:focus:before{right:-.5rem}.inline-button:focus:before{width:calc(100% + 1rem);content:\\\"\\\";position:absolute;top:0;border:.1875rem solid var(--component-inline-button-focus-border);border-radius:.188rem;box-shadow:0 0 0 .375rem var(--component-inline-button-focus-shadow);text-indent:0rem;height:100%;pointer-events:none}.inline-button.inline-button-theme:focus:after{border:.1875rem solid var(--component-inline-button-focus-border)}.inline-button:hover,.inline-button:focus{text-decoration:none}.inline-button-without-arrow:hover{text-decoration:underline}body .button-type-primary,body .button-type-primary:visited{font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:var(--component-button-primary);color:var(--component-button-text-primary);border-color:var(--component-button-primary-border-color)}body .button-type-primary:hover{background-color:var(--component-inline-play-fill-1-hover);color:var(--component-button-text-primary);border-color:var(--component-inline-play-fill-1-hover)}body .button-type-primary:active{background-color:var(--style-general-text);color:var(--component-button-text-primary)}body .button-type-primary:focus{background-color:var(--component-button-primary);color:var(--component-button-text-primary);border-radius:100px}body .button-type-secondary,body .button-type-secondary:visited{font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:var(--component-button-bg-tertiary);color:var(--component-button-text-tertiary);border-color:var(--component-button-border-tertiary)}body .button-type-secondary:hover{color:var(--component-inline-play-fill-1-hover);border-color:var(--component-inline-play-fill-1-hover)}body .button-type-secondary:active{background-color:var(--component-inline-button-active);color:var(--component-inline-play-fill-1-active);border-color:var(--component-inline-play-fill-1-active)}body .button-type-secondary:focus{background-color:var(--component-button-bg-tertiary);color:var(--component-inline-play-fill-1);border-color:var(--component-inline-button);border-radius:100px}body .button-type-primary:hover,body .button-type-primary:active,body .button-type-primary:focus,body .button-type-secondary:hover,body .button-type-secondary:active,body .button-type-secondary:focus{text-decoration:none}body .button-type-tertiary{color:var(--component-link);font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;text-decoration:none}body .button-type-tertiary:hover{text-decoration:underline}body .button-type-tertiary:focus{text-decoration:underline}body .button-type-branded{font-size:1rem;padding:.475rem 1.475rem;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;background-color:var(--component-button-secondary);color:var(--component-button-text-secondary)}body .button-type-branded:hover{background-color:#ffe888}body .button-type-branded:active{background-color:#ff9100}body .blue-700-plate .button-type-primary:active{color:var(--component-button-tertiary)}.grid-compact .button-group{gap:.5rem}.button-group{display:flex;flex-direction:column;gap:1rem}.button-group.button-group-legal-position-top a{display:inline-block}[dir=ltr] .button-group.button-group-legal-position-top.button-group-align-start{text-align:left}[dir=rtl] .button-group.button-group-legal-position-top.button-group-align-start{text-align:right}.button-group.button-group-legal-position-top.button-group-align-center{text-align:center}.button-group.button-group-legal-position-top.button-group-align-center .button-group-legal-text{justify-content:center}[dir=ltr] .button-group.button-group-legal-position-top.button-group-align-end{text-align:right}[dir=rtl] .button-group.button-group-legal-position-top.button-group-align-end{text-align:left}.button-group.button-group-legal-position-top.button-group-align-end .button-group-legal-text{justify-content:end}.button-group.button-group-legal-position-bottom a,.button-group.button-group-legal-position-bottom button{display:inline-block}[dir=ltr] .button-group.button-group-legal-position-bottom.button-group-align-start{text-align:left}[dir=rtl] .button-group.button-group-legal-position-bottom.button-group-align-start{text-align:right}.button-group.button-group-legal-position-bottom.button-group-align-center{text-align:center}.button-group.button-group-legal-position-bottom.button-group-align-center .button-group-legal-text{justify-content:center}[dir=ltr] .button-group.button-group-legal-position-bottom.button-group-align-end{text-align:right}[dir=rtl] .button-group.button-group-legal-position-bottom.button-group-align-end{text-align:left}.button-group.button-group-legal-position-bottom.button-group-align-end .button-group-legal-text{justify-content:end}.button-group .button-group-alignment-start,.button-group .button-group-alignment-center,.button-group .button-group-alignment-end{display:inline-flex;gap:1rem;flex-wrap:wrap}.button-group .button-group-alignment-start+.button-group-legal-text.disclosure,.button-group .button-group-alignment-center+.button-group-legal-text.disclosure,.button-group .button-group-alignment-end+.button-group-legal-text.disclosure{margin-top:0}[dir=ltr] .button-group a[class*=appstore]{margin-right:1rem}[dir=rtl] .button-group a[class*=appstore]{margin-left:1rem}[dir=ltr] .button-group a[class*=appstore]:last-of-type{margin-right:0}[dir=rtl] .button-group a[class*=appstore]:last-of-type{margin-left:0}.button-group .button-group-legal-text{display:flex}.button-group .button-group-legal-text .disclosure-item,.button-group .button-group-legal-text .disclosure-paragraph{padding-top:0;max-width:60ch}.button-group-alignment-start{justify-content:start}.button-group-alignment-center{justify-content:center}.button-group-alignment-end{justify-content:end}.image-frame{position:relative}.image-frame.image-frame-rounded-corners{overflow:hidden;border-radius:clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)}@supports not (font-size: clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)){.image-frame.image-frame-rounded-corners{border-radius:min(max(1.5rem,.6049046321525886rem + 2.17983651226158vw),2rem)}}.image-frame picture{line-height:0;display:block}.image-frame img{max-width:100%;-o-object-fit:cover;object-fit:cover}.image-frame img.image-frame-img-v-align-top{-o-object-position:top;object-position:top}.image-frame img.image-frame-img-v-align-bottom{-o-object-position:bottom;object-position:bottom}.qr-code-image-container{overflow:hidden;display:inline-block}.qr-code.qr-code-large .qr-code-image-container{padding:.5rem .5rem .25rem;box-shadow:4px 4px 28px 6px #00000024;border-radius:.5rem}.qr-code.qr-code-large .qr-code-image-container svg{border-radius:.5rem}.qr-code-fallback-small{width:5.375rem;height:5.375rem}.qr-code-fallback-small img,.qr-code-fallback-large img{width:100%}.app-download-group .app-download-group-row{display:none}.app-download-group .app-download-group-row-mobile,.app-download-group .app-download-group-row-no-cta-mobile{display:flex}.app-download-group .app-download-group-row-align-center{justify-content:center;text-align:center}.app-download-group .app-download-group-row-align-end{justify-content:flex-end}.app-download-group .app-download-group-disclaimer{padding-top:0}.app-download-group .app-download-group-disclaimer>*:first-child{margin-bottom:0;padding-top:0}.app-download-group .app-download-group-cta-sms-loading{opacity:.7;pointer-events:none}.app-download-group .app-download-group-col{flex:1}.app-download-group .app-download-group-text{font-size:1rem;line-height:1.625rem;margin-bottom:1.5rem}.app-download-group .app-download-group-image-col,.app-download-group .app-download-group-image-container{display:none}.app-download-group .app-download-group-phone-input-row{width:100%}.app-download-group .app-download-group-phone-input-wrapper{width:100%;max-width:24.25rem}.app-download-group .app-download-group-phone-input{display:flex;align-items:center;flex-direction:column;width:100%}.app-download-group .app-download-group-phone-input>input,.app-download-group .app-download-group-phone-input label{max-width:24.25rem}.app-download-group .app-download-group-phone-input div[id^=message_text-input]{color:var(--style-general-text)}.app-download-group .app-download-group-cta-desktop-container{margin-top:1rem;min-width:9.25rem}.app-download-group .app-download-group-disclaimer{font-size:.875rem;line-height:1.375rem;margin-top:1.5rem;max-width:21.25rem;margin-bottom:0}.app-download-group .app-download-group-success-msg-container{background-color:#0f8514;border-radius:.75rem;padding:1rem;max-width:23rem;color:#fff;display:flex;width:100%}[dir=ltr] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{margin-left:.625rem}[dir=rtl] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{margin-right:.625rem}[dir=ltr] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{text-align:left}[dir=rtl] .app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{text-align:right}.app-download-group .app-download-group-success-msg-container .app-download-group-success-msg-text{font-size:1.125rem;line-height:1.5rem;color:#fff}.app-download-group .app-download-group-qr-row{display:flex}.app-download-group .app-download-group-qr-row .app-download-group-content-col{flex:1}.app-download-group-row-align-start .app-download-group-phone-input{max-width:24.25rem;align-items:flex-start}.app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:2rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:2rem}.app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-top:0;height:4rem;display:flex;flex-direction:column;justify-content:center}.app-download-group-row-align-center .app-download-group-col{display:flex;align-items:center;justify-content:center;flex-direction:column}.app-download-group-row-align-center .app-download-group-text{margin-bottom:1rem}.app-download-group-row-align-center .app-download-group-qr-row .app-download-group-content-col{align-items:center}.app-download-group-row-align-center .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:center}[dir=ltr] .app-download-group-row-align-end{text-align:right}[dir=rtl] .app-download-group-row-align-end{text-align:left}.app-download-group-row-align-end{justify-content:flex-end}.app-download-group-row-align-end .app-download-group-qr-row{flex-direction:row-reverse}.app-download-group-row-align-end .app-download-group-phone-input{max-width:24.25rem;align-items:flex-end}.app-download-group-row-align-end .app-download-group-disclaimer{float:end}.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-content-col,.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:flex-end}.app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-content-col{justify-content:end}.app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-content-col .app-download-group-cta-desktop-container{margin-top:0}.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:row-reverse;align-items:flex-start}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:2rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:2rem}.app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-top:0;height:4rem;display:flex;flex-direction:column;justify-content:center}[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col{border-right:none}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col,[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col{border-left:none}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-qr-row .app-download-group-image-col{border-right:none}.app-download-group-variant-qr-and-sms .app-download-group-no-image-col .app-download-group-disclaimer{width:95%;max-width:35rem}.app-download-group-variant-qr-and-sms .app-download-group-phone-input>input{padding:1.5625rem .6875rem .5625rem}.app-download-group-variant-qr-and-sms .app-download-group-phone-input>input:focus{padding:1.5625rem .6875rem .5625rem}.app-download-group-variant-qr-and-sms .app-download-group-phone-input>input:focus~label{top:.25rem}@media (max-width: 41rem){.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:flex-start}[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container,[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:0}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container,[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:0}.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-top:1rem;height:auto;flex-wrap:wrap;flex-direction:row;align-items:flex-start;justify-content:flex-start;gap:.75rem;max-width:calc(100% + .75rem)}.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container a,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container a,.app-download-group-variant-qr-and-sms .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container button,.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container button{flex:0 1 auto}.app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:flex-end}[dir=ltr] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-right:0}[dir=rtl] .app-download-group-variant-qr-and-sms .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-cta-desktop-container{margin-left:0}}@media (min-width: 64rem){.app-download-group .app-download-group-row{display:flex}.app-download-group .app-download-group-row-mobile{display:none}.app-download-group .app-download-group-image-col{display:flex}.app-download-group .app-download-group-cta-desktop-container{display:flex;flex-wrap:wrap;align-items:flex-start;gap:.75rem;max-width:calc(100% + .75rem)}.app-download-group .app-download-group-cta-desktop-container a,.app-download-group .app-download-group-cta-desktop-container button{flex:0 1 auto}.app-download-group .app-download-group-image-container{display:flex}.app-download-group .app-download-group-image-container>img{min-height:7.875rem;min-width:7.875rem;max-height:7.875rem;max-width:7.875rem}.app-download-group .app-download-group-qr-row-qr-code-only .app-download-group-content-col{display:flex;align-items:center}[dir=ltr] .app-download-group-row-align-start .app-download-group-image-col{border-right:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-group-row-align-start .app-download-group-image-col{border-left:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-right:1rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-left:1rem}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-right:1rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-left:1rem}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-right:4rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-left:4rem}[dir=ltr] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-right:4rem}[dir=rtl] .app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-left:4rem}.app-download-group-row-align-start .app-download-group-qr-row-qr-code-only .app-download-group-content-col .app-download-group-cta-desktop-container{margin-top:0}.app-download-group-row-align-center .app-download-group-image-container{margin-bottom:1.5rem}.app-download-group-row-align-center .app-download-group-cta-desktop-container{justify-content:center}[dir=ltr] .app-download-group-row-align-end .app-download-group-image-col{border-left:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-group-row-align-end .app-download-group-image-col{border-right:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-left:1rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{padding-right:1rem}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-left:1rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-and-sms .app-download-group-image-col{margin-right:1rem}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-left:4rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{padding-right:4rem}[dir=ltr] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-left:4rem}[dir=rtl] .app-download-group-row-align-end .app-download-group-qr-row-qr-code-only .app-download-group-image-col{margin-right:4rem}.app-download-group-variant-qr-code-only{min-height:auto}.app-download-group-variant-qr-code-only .app-download-group-text{margin-bottom:0;margin-bottom:1.5rem}.app-download-group-variant-qr-code-only .app-download-group-cta-desktop-container{margin-top:0}.app-download-group-variant-qr-code-only .app-download-group-no-cta-col .app-download-group-text{max-width:15rem}.app-download-group-variant-qr-code-only .app-download-group-row-align-center{padding:0 25%}.app-download-group-variant-qr-code-only .app-download-group-row-align-center .app-download-group-image-container{margin-bottom:0}.app-download-group-variant-qr-code-only .app-download-group-row-align-center .app-download-group-cta-desktop-container{margin-top:2rem}.app-download-group-variant-qr-code-only .app-download-group-row-align-end .app-download-group-no-cta-col{display:flex;flex-direction:column;align-items:flex-end}.app-download-group-variant-qr-and-sms{min-height:18rem}.app-download-group-no-image-variant-qr-and-sms{min-height:13.125rem}}.heading-text-size-display-0{font-size:clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem)){.heading-text-size-display-0{font-size:min(max(2.88rem,-2.3428571428571434rem + 8.160714285714286vw),7.45rem)}}.heading-text-size-display-0 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-display-1{font-size:clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem)){.heading-text-size-display-1{font-size:min(max(2.566rem,-1.3128571428571432rem + 6.060714285714286vw),5.96rem)}}.heading-text-size-display-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-display-2{font-size:clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.02em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem)){.heading-text-size-display-2{font-size:min(max(2.281rem,-.5614285714285714rem + 4.441294642857143vw),4.768125rem)}}.heading-text-size-display-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-1{font-size:clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem)){.heading-text-size-headline-1{font-size:min(max(2.566rem,-1.3128571428571432rem + 6.060714285714286vw),5.96rem)}}.heading-text-size-headline-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-2{font-size:clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.02em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem)){.heading-text-size-headline-2{font-size:min(max(2.281rem,-.5614285714285714rem + 4.441294642857143vw),4.768125rem)}}.heading-text-size-headline-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-3{font-size:clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.015em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem)){.heading-text-size-headline-3{font-size:min(max(2.027rem,-.016428571428571015rem + 3.1928571428571426vw),3.815rem)}}.heading-text-size-headline-3 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-4{font-size:clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.01em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem)){.heading-text-size-headline-4{font-size:min(max(1.802rem,.37342857142857144rem + 2.232142857142857vw),3.052rem)}}.heading-text-size-headline-4 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-5{font-size:clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.005em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem)){.heading-text-size-headline-5{font-size:min(max(1.602rem,.6431428571428576rem + 1.4982142857142853vw),2.441rem)}}.heading-text-size-headline-5 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-6{font-size:clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem)){.heading-text-size-headline-6{font-size:min(max(1.424rem,.8194285714285712rem + .9446428571428575vw),1.953rem)}}.heading-text-size-headline-6 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-headline-7{font-size:clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem)){.heading-text-size-headline-7{font-size:min(max(1.266rem,.9265714285714286rem + .5303571428571427vw),1.563rem)}}.heading-text-size-headline-7 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.heading-text-size-title{font-size:clamp(1rem,.7142857142857143rem + .4464285714285714vw,1.25rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.5;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1rem,.7142857142857143rem + .4464285714285714vw,1.25rem)){.heading-text-size-title{font-size:min(max(1rem,.7142857142857143rem + .4464285714285714vw),1.25rem)}}.heading-text-size-title sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-0{font-size:clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.88rem,-2.3428571428571434rem + 8.160714285714286vw,7.45rem)){.grid-compact .heading-text-size-display-0{font-size:min(max(2.88rem,-2.3428571428571434rem + 8.160714285714286vw),7.45rem)}}.grid-compact .heading-text-size-display-0 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-1{font-size:clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1;letter-spacing:-.04em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.566rem,-1.3128571428571432rem + 6.060714285714286vw,5.96rem)){.grid-compact .heading-text-size-display-1{font-size:min(max(2.566rem,-1.3128571428571432rem + 6.060714285714286vw),5.96rem)}}.grid-compact .heading-text-size-display-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-2{font-size:clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.02em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.281rem,-.5614285714285714rem + 4.441294642857143vw,4.768125rem)){.grid-compact .heading-text-size-display-2{font-size:min(max(2.281rem,-.5614285714285714rem + 4.441294642857143vw),4.768125rem)}}.grid-compact .heading-text-size-display-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-1{font-size:clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.1;letter-spacing:-.015em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(2.027rem,-.016428571428571015rem + 3.1928571428571426vw,3.815rem)){.grid-compact .heading-text-size-headline-1{font-size:min(max(2.027rem,-.016428571428571015rem + 3.1928571428571426vw),3.815rem)}}.grid-compact .heading-text-size-headline-1 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-2{font-size:clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.01em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.802rem,.37342857142857144rem + 2.232142857142857vw,3.052rem)){.grid-compact .heading-text-size-headline-2{font-size:min(max(1.802rem,.37342857142857144rem + 2.232142857142857vw),3.052rem)}}.grid-compact .heading-text-size-headline-2 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-3{font-size:clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.2;letter-spacing:-.005em;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.602rem,.6431428571428576rem + 1.4982142857142853vw,2.441rem)){.grid-compact .heading-text-size-headline-3{font-size:min(max(1.602rem,.6431428571428576rem + 1.4982142857142853vw),2.441rem)}}.grid-compact .heading-text-size-headline-3 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-4{font-size:clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.3;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.424rem,.8194285714285712rem + .9446428571428575vw,1.953rem)){.grid-compact .heading-text-size-headline-4{font-size:min(max(1.424rem,.8194285714285712rem + .9446428571428575vw),1.953rem)}}.grid-compact .heading-text-size-headline-4 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-5{font-size:clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.3;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.266rem,.9265714285714286rem + .5303571428571427vw,1.563rem)){.grid-compact .heading-text-size-headline-5{font-size:min(max(1.266rem,.9265714285714286rem + .5303571428571427vw),1.563rem)}}.grid-compact .heading-text-size-headline-5 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-headline-6,.grid-compact .heading-text-size-headline-7{font-size:clamp(1.125rem,.8392857142857143rem + .4464285714285714vw,1.375rem);color:var(--style-headline-text);font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;line-height:1.3;letter-spacing:initial;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased}@supports not (font-size: clamp(1.125rem,.8392857142857143rem + .4464285714285714vw,1.375rem)){.grid-compact .heading-text-size-headline-6,.grid-compact .heading-text-size-headline-7{font-size:min(max(1.125rem,.8392857142857143rem + .4464285714285714vw),1.375rem)}}.grid-compact .heading-text-size-headline-6 sup,.grid-compact .heading-text-size-headline-7 sup{font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif}.grid-compact .heading-text-size-display-0>a,.grid-compact .heading-text-size-display-1>a,.grid-compact .heading-text-size-display-2>a{color:var(--style-general-hyperlink);text-decoration:none;font-weight:500;position:relative}.grid-compact .heading-text-size-display-0>a:not(:focus):hover,.grid-compact .heading-text-size-display-1>a:not(:focus):hover,.grid-compact .heading-text-size-display-2>a:not(:focus):hover{text-decoration:underline}.grid-compact .heading-text-size-display-0>a.focus-visible,.grid-compact .heading-text-size-display-1>a.focus-visible,.grid-compact .heading-text-size-display-2>a.focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.grid-compact .heading-text-size-display-0>a:focus-visible,.grid-compact .heading-text-size-display-1>a:focus-visible,.grid-compact .heading-text-size-display-2>a:focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.grid-compact .heading-text-size-display-0>a.focus-visible:after,.grid-compact .heading-text-size-display-1>a.focus-visible:after,.grid-compact .heading-text-size-display-2>a.focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.grid-compact .heading-text-size-display-0>a:focus-visible:after,.grid-compact .heading-text-size-display-1>a:focus-visible:after,.grid-compact .heading-text-size-display-2>a:focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.grid-compact .heading-text-size-display-0>b,.grid-compact .heading-text-size-display-1>b,.grid-compact .heading-text-size-display-2>b,.grid-compact .heading-text-size-display-0 strong,.grid-compact .heading-text-size-display-1 strong,.grid-compact .heading-text-size-display-2 strong,.grid-compact .heading-text-size-display-0 em,.grid-compact .heading-text-size-display-1 em,.grid-compact .heading-text-size-display-2 em{font-style:normal;font-weight:400;color:var(--style-headline-highlight-text)}[dir=ltr] .grid-compact .heading-text-size-display-0 sup,[dir=ltr] .grid-compact .heading-text-size-display-1 sup,[dir=ltr] .grid-compact .heading-text-size-display-2 sup{right:0}[dir=rtl] .grid-compact .heading-text-size-display-0 sup,[dir=rtl] .grid-compact .heading-text-size-display-1 sup,[dir=rtl] .grid-compact .heading-text-size-display-2 sup{left:0}[dir=ltr] .grid-compact .heading-text-size-display-0 sup,[dir=ltr] .grid-compact .heading-text-size-display-1 sup,[dir=ltr] .grid-compact .heading-text-size-display-2 sup{padding-left:.1em}[dir=rtl] .grid-compact .heading-text-size-display-0 sup,[dir=rtl] .grid-compact .heading-text-size-display-1 sup,[dir=rtl] .grid-compact .heading-text-size-display-2 sup{padding-right:.1em}.grid-compact .heading-text-size-display-0 sup,.grid-compact .heading-text-size-display-1 sup,.grid-compact .heading-text-size-display-2 sup{font-size:.45em;position:relative;top:-.9em;vertical-align:baseline}.grid-compact .heading-text-size-headline-1 sup,.grid-compact .heading-text-size-headline-2 sup{font-size:.5em;top:-.75em}.heading-text-size-display-0>a,.heading-text-size-display-1>a,.heading-text-size-display-2>a,.heading-text-size-headline-1>a,.heading-text-size-headline-2>a,.heading-text-size-headline-3>a,.heading-text-size-headline-4>a,.heading-text-size-headline-5>a,.heading-text-size-headline-6>a,.heading-text-size-headline-7>a{color:var(--style-general-hyperlink);text-decoration:none;font-weight:500;position:relative}.heading-text-size-display-0>a:not(:focus):hover,.heading-text-size-display-1>a:not(:focus):hover,.heading-text-size-display-2>a:not(:focus):hover,.heading-text-size-headline-1>a:not(:focus):hover,.heading-text-size-headline-2>a:not(:focus):hover,.heading-text-size-headline-3>a:not(:focus):hover,.heading-text-size-headline-4>a:not(:focus):hover,.heading-text-size-headline-5>a:not(:focus):hover,.heading-text-size-headline-6>a:not(:focus):hover,.heading-text-size-headline-7>a:not(:focus):hover{text-decoration:underline}.heading-text-size-display-0>a.focus-visible,.heading-text-size-display-1>a.focus-visible,.heading-text-size-display-2>a.focus-visible,.heading-text-size-headline-1>a.focus-visible,.heading-text-size-headline-2>a.focus-visible,.heading-text-size-headline-3>a.focus-visible,.heading-text-size-headline-4>a.focus-visible,.heading-text-size-headline-5>a.focus-visible,.heading-text-size-headline-6>a.focus-visible,.heading-text-size-headline-7>a.focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.heading-text-size-display-0>a:focus-visible,.heading-text-size-display-1>a:focus-visible,.heading-text-size-display-2>a:focus-visible,.heading-text-size-headline-1>a:focus-visible,.heading-text-size-headline-2>a:focus-visible,.heading-text-size-headline-3>a:focus-visible,.heading-text-size-headline-4>a:focus-visible,.heading-text-size-headline-5>a:focus-visible,.heading-text-size-headline-6>a:focus-visible,.heading-text-size-headline-7>a:focus-visible{border:none;outline:none;position:relative;text-decoration:underline}.heading-text-size-display-0>a.focus-visible:after,.heading-text-size-display-1>a.focus-visible:after,.heading-text-size-display-2>a.focus-visible:after,.heading-text-size-headline-1>a.focus-visible:after,.heading-text-size-headline-2>a.focus-visible:after,.heading-text-size-headline-3>a.focus-visible:after,.heading-text-size-headline-4>a.focus-visible:after,.heading-text-size-headline-5>a.focus-visible:after,.heading-text-size-headline-6>a.focus-visible:after,.heading-text-size-headline-7>a.focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.heading-text-size-display-0>a:focus-visible:after,.heading-text-size-display-1>a:focus-visible:after,.heading-text-size-display-2>a:focus-visible:after,.heading-text-size-headline-1>a:focus-visible:after,.heading-text-size-headline-2>a:focus-visible:after,.heading-text-size-headline-3>a:focus-visible:after,.heading-text-size-headline-4>a:focus-visible:after,.heading-text-size-headline-5>a:focus-visible:after,.heading-text-size-headline-6>a:focus-visible:after,.heading-text-size-headline-7>a:focus-visible:after{content:\\\"\\\";position:absolute;top:-.15rem;right:-.25rem;bottom:-.15rem;left:-.25rem;border-radius:.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;pointer-events:none}.heading-text-size-display-0>b,.heading-text-size-display-1>b,.heading-text-size-display-2>b,.heading-text-size-headline-1>b,.heading-text-size-headline-2>b,.heading-text-size-headline-3>b,.heading-text-size-headline-4>b,.heading-text-size-headline-5>b,.heading-text-size-headline-6>b,.heading-text-size-headline-7>b,.heading-text-size-display-0 strong,.heading-text-size-display-1 strong,.heading-text-size-display-2 strong,.heading-text-size-headline-1 strong,.heading-text-size-headline-2 strong,.heading-text-size-headline-3 strong,.heading-text-size-headline-4 strong,.heading-text-size-headline-5 strong,.heading-text-size-headline-6 strong,.heading-text-size-headline-7 strong,.heading-text-size-display-0 em,.heading-text-size-display-1 em,.heading-text-size-display-2 em,.heading-text-size-headline-1 em,.heading-text-size-headline-2 em,.heading-text-size-headline-3 em,.heading-text-size-headline-4 em,.heading-text-size-headline-5 em,.heading-text-size-headline-6 em,.heading-text-size-headline-7 em{font-style:normal;font-weight:400;color:var(--style-headline-highlight-text)}[dir=ltr] .heading-text-size-display-0 sup,[dir=ltr] .heading-text-size-display-1 sup,[dir=ltr] .heading-text-size-display-2 sup,[dir=ltr] .heading-text-size-headline-1 sup,[dir=ltr] .heading-text-size-headline-2 sup,[dir=ltr] .heading-text-size-headline-3 sup,[dir=ltr] .heading-text-size-headline-4 sup,[dir=ltr] .heading-text-size-headline-5 sup,[dir=ltr] .heading-text-size-headline-6 sup,[dir=ltr] .heading-text-size-headline-7 sup{right:0}[dir=rtl] .heading-text-size-display-0 sup,[dir=rtl] .heading-text-size-display-1 sup,[dir=rtl] .heading-text-size-display-2 sup,[dir=rtl] .heading-text-size-headline-1 sup,[dir=rtl] .heading-text-size-headline-2 sup,[dir=rtl] .heading-text-size-headline-3 sup,[dir=rtl] .heading-text-size-headline-4 sup,[dir=rtl] .heading-text-size-headline-5 sup,[dir=rtl] .heading-text-size-headline-6 sup,[dir=rtl] .heading-text-size-headline-7 sup{left:0}[dir=ltr] .heading-text-size-display-0 sup,[dir=ltr] .heading-text-size-display-1 sup,[dir=ltr] .heading-text-size-display-2 sup,[dir=ltr] .heading-text-size-headline-1 sup,[dir=ltr] .heading-text-size-headline-2 sup,[dir=ltr] .heading-text-size-headline-3 sup,[dir=ltr] .heading-text-size-headline-4 sup,[dir=ltr] .heading-text-size-headline-5 sup,[dir=ltr] .heading-text-size-headline-6 sup,[dir=ltr] .heading-text-size-headline-7 sup{padding-left:.1em}[dir=rtl] .heading-text-size-display-0 sup,[dir=rtl] .heading-text-size-display-1 sup,[dir=rtl] .heading-text-size-display-2 sup,[dir=rtl] .heading-text-size-headline-1 sup,[dir=rtl] .heading-text-size-headline-2 sup,[dir=rtl] .heading-text-size-headline-3 sup,[dir=rtl] .heading-text-size-headline-4 sup,[dir=rtl] .heading-text-size-headline-5 sup,[dir=rtl] .heading-text-size-headline-6 sup,[dir=rtl] .heading-text-size-headline-7 sup{padding-right:.1em}.heading-text-size-display-0 sup,.heading-text-size-display-1 sup,.heading-text-size-display-2 sup,.heading-text-size-headline-1 sup,.heading-text-size-headline-2 sup,.heading-text-size-headline-3 sup,.heading-text-size-headline-4 sup,.heading-text-size-headline-5 sup,.heading-text-size-headline-6 sup,.heading-text-size-headline-7 sup{font-size:.5em;position:relative;top:-.75em;vertical-align:baseline}.heading-text-size-headline-1 sup,.heading-text-size-headline-2 sup{font-size:.45em;top:-.9em}.heading-text-size-headline-6>a,.heading-text-size-headline-7>a{text-decoration:underline}.font-quantum-leap .heading-text-size-display-2{line-height:1}.font-quantum-leap .heading-text-size-headline-1{line-height:1;letter-spacing:-.04em}.font-quantum-leap .heading-text-size-headline-2{line-height:1.1;letter-spacing:-.02em}.font-quantum-leap .heading-text-size-headline-3{line-height:1.1;letter-spacing:-.015em}.font-quantum-leap .heading-text-size-headline-4{line-height:1.1;letter-spacing:-.01em}.font-quantum-leap .heading-text-size-headline-5{line-height:1.1;letter-spacing:-.005em}.font-quantum-leap .heading-text-size-headline-6{line-height:1.2}.badge[data-ppui-info*=badge_]{padding:.4375rem .5rem;line-height:.625rem;font-size:.875rem;font-family:PayPalOpen-Bold;color:#001435;background-color:#e6e0d9;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;white-space:nowrap}.badge[data-ppui-info*=badge_].badge-size-small{padding:.25rem;line-height:.5rem;font-size:.6875rem;border-radius:.25rem}.badge[data-ppui-info*=badge_].badge-type-new{color:#001c64;background-color:#ffd140}.badge[data-ppui-info*=badge_].badge-type-new.gold-plate{color:#001c64;background-color:#fff}.badge[data-ppui-info*=badge_].badge-type-coming-soon{color:#0070e0;background-color:unset;border:1px solid;border-color:#0070e0;padding:.375rem .4375rem}.badge[data-ppui-info*=badge_].badge-type-coming-soon.badge-size-small{padding:.1875rem}.badge[data-ppui-info*=badge_].badge-type-coming-soon.blue-500-plate,.badge[data-ppui-info*=badge_].badge-type-coming-soon.blue-600-plate,.badge[data-ppui-info*=badge_].badge-type-coming-soon.blue-700-plate{color:#fff;border-color:#fff}.badge[data-ppui-info*=badge_].badge-type-coming-soon.gold-plate{color:#001c64;border-color:#001c64}.number-group{display:flex;align-items:center;flex-wrap:wrap}.number-group-delimiter{margin:0 .5rem}[dir=ltr] .data-item{padding-left:0}[dir=rtl] .data-item{padding-right:0}.data-item{width:100%;display:flex;flex-direction:column;flex-wrap:wrap}.data-item .data-item-number-group{min-width:auto;margin-bottom:.5rem}.data-item .data-item-text .data-item-content:last-of-type{display:inline}.data-item-fixed .data-item-number-group{min-width:7.5rem}.data-item-center{text-align:center;justify-content:center;align-items:center}.data-item-center .data-item-number-group{min-width:auto}.data-item-center .data-item-text{align-self:center}.data-item-border-top{border-top:.125rem solid var(--style-border-color)}.data-item-border-bottom{border-bottom:.125rem solid var(--style-border-color)}.data-item-top-spacer{padding-top:1.25rem}.data-item-bottom-spacer{padding-bottom:.75rem}.data-item-bottom-spacer .data-item-text{margin:0;margin-bottom:.5rem}.data-item-content b,.data-item-content strong{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400}.data-item-tooltip-icon{position:relative;top:.125rem}.data-item-tooltip-icon button{height:auto;width:auto}.data-item-tooltip-icon button span{font-size:1rem}.data-item-tooltip-icon button path{fill:var(--style-general-hyperlink)}@media (min-width: 64rem){.data-item-tooltip-icon button span{font-size:1.125rem}}@media (min-width: 91.875rem){.data-item{flex-direction:unset;flex-wrap:wrap;flex-direction:row;align-self:center}[dir=ltr] .data-item .data-item-number-group{margin-right:1rem}[dir=rtl] .data-item .data-item-number-group{margin-left:1rem}.data-item .data-item-number-group{flex-shrink:0}.data-item .data-item-text{flex-basis:50%;flex-grow:1;align-self:center}.data-item .data-item-number-group{margin-bottom:0}.data-item-top-spacer{padding-top:2rem}.data-item-bottom-spacer{padding-bottom:1.375rem}.data-item-bottom-spacer .data-item-number-group,.data-item-bottom-spacer .data-item-text{margin-bottom:.625rem}.data-item-column{flex-direction:column}.data-item-column .data-item-number-group{margin-bottom:.625rem}.data-item-column .data-item-text{align-self:normal}.data-item-center .data-item-text{flex-grow:unset;flex-basis:auto}}.dash{vertical-align:middle}.dash path{stroke:#909191}.checkmark{vertical-align:middle;height:1.25rem;width:1.25rem}.checkmark.Purple circle{fill:#f2e6fe}.checkmark.Purple path{fill:#a250f5}.checkmark.Green circle{fill:#cbf3ec}.checkmark.Green path{fill:#308a67}.checkmark.Grey circle{fill:#ededed}.checkmark.Grey path{fill:#515354}.checkmark.Gold circle{fill:#ffd140}.checkmark.Gold path{fill:#001c64}.checkmark.Blue circle{fill:#5bbbfc33}.checkmark.Blue path{fill:#0070e0}.checkmark.White circle{fill:#5bbbfc33}.checkmark.White path{fill:#fff}.checkmark.Yellow200 circle{fill:#fff3c2}.checkmark.Yellow200 path{fill:#001c64}.checkmark.Yellow300 circle{fill:#ffe888}.checkmark.Yellow300 path{fill:#001c64}@media only screen and (min-width: 41.0625rem){.checkmark{height:1.5rem;width:1.5rem}.checkmark-size-caption{height:1.25rem;width:1.25rem}}[dir=ltr] .feature-list{text-align:left}[dir=rtl] .feature-list{text-align:right}.feature-list{list-style:none;margin:0;padding:0}.feature-list-item{display:flex;align-items:flex-start}.feature-list-item+.feature-list-item{margin-top:1rem}[dir=ltr] .feature-list-item-bullet{margin-right:1rem}[dir=rtl] .feature-list-item-bullet{margin-left:1rem}.currency-input div[class$=prefix_wrapper]{border-radius:.25rem}.currency-badge{display:flex;align-items:center;gap:.25rem}.currency-badge .currency-badge-text{color:#001435}[dir=ltr] .currency-converter-input{text-align:left}[dir=rtl] .currency-converter-input{text-align:right}.currency-converter-input .currency-converter-input-title{display:block;margin-bottom:.25rem}[dir=ltr] .currency-converter-input input{padding-right:5.0625rem}[dir=rtl] .currency-converter-input input{padding-left:5.0625rem}[dir=ltr] .currency-converter-input .currency-input div[data-ppui][class$=icon_right]{right:.6875rem}[dir=rtl] .currency-converter-input .currency-input div[data-ppui][class$=icon_right]{left:.6875rem}.currency-converter-input .currency-input div[data-ppui][class$=icon_right]{width:auto}.currency-converter-input #sender-prefix,.currency-converter-input #receiver-prefix,.currency-converter-input #-prefix{opacity:1}[dir=ltr] .currency-converter{text-align:left}[dir=rtl] .currency-converter{text-align:right}.currency-converter{padding-top:.5rem;padding-bottom:.5rem}.currency-converter .currency-converter-input-container{display:flex}.currency-converter.currency-converter-layout-vertical .currency-converter-input-container{flex-direction:column;gap:.75rem}.currency-converter.currency-converter-layout-vertical .currency-converter-xfr-icon{transform:rotate(90deg)}.currency-converter.currency-converter-layout-vertical .conversion-rate-display{margin-top:.75rem}.currency-converter.currency-converter-layout-horizontal .currency-converter-input-container{flex-direction:row;gap:.5rem}.currency-converter.currency-converter-layout-horizontal .currency-converter-xfr-icon{align-self:flex-end;position:relative;bottom:1.25rem}.currency-converter.currency-converter-layout-horizontal .conversion-rate-display{margin-top:.5rem}.currency-converter .currency-converter-xfr-icon svg path{fill:var(--style-general-text-muted)}.grid-compact .text-group .text-group-content-button-group .button-group{gap:1rem}@media screen and (min-width: 64rem){.grid-compact .text-group .text-group-content-button-group+.text-group-content-disclosure{margin-top:1.5rem}.grid-compact .text-group .text-group-content-button-group .button-group{gap:1.5rem}}.text-group>*+*{margin:0;margin-top:1rem}@media screen and (min-width: 107.875rem){.text-group>*+*{margin-top:1.5rem}}.text-group .text-group-content-button-group+.text-group-content-disclosure{margin-top:1rem}.text-group.text-group-alignment-center{text-align:center;display:flex;flex-direction:column;align-items:center}.text-group .text-group-eyebrow-container{display:flex;align-items:center;gap:.5rem}.text-group .text-group-headline{transform:translate(-.06em)}.text-group .text-group-headline,.text-group .text-group-paragraph{white-space:pre-wrap}.text-group .text-group-paragraph~ul{line-height:1.5rem;color:var(--style-headline-text)}@media only screen and (min-width: 41.0625rem){[dir=ltr] .text-group .text-group-paragraph~ul{padding-left:1.5rem}[dir=rtl] .text-group .text-group-paragraph~ul{padding-right:1.5rem}}.text-group .text-group-paragraph+.text-group-paragraph{padding-top:.5rem}.text-group div[\\\\:has\\\\(.currency-converter\\\\)]{width:min(25rem,100%)}.text-group div:has(.currency-converter){width:min(25rem,100%)}.text-group .text-group-action-group>a:last-of-type,.text-group .text-group-action-group>button:last-of-type{margin-bottom:0}.text-group .text-group-action-group .disclosure:first-child{margin-top:0}.text-group .text-group-action-group .disclosure{margin-top:1rem}.text-group .text-group-action-group .disclosure a{margin-bottom:0}[dir=ltr] .text-group ul,[dir=ltr] .text-group ol{padding-left:1.5rem}[dir=rtl] .text-group ul,[dir=rtl] .text-group ol{padding-right:1.5rem}.text-group ul,.text-group ol{line-height:1.5rem;color:var(--style-headline-text)}.text-group ul li,.text-group ol li{margin-bottom:.25rem}.text-group .text-group-legal-text>*:first-child{margin-bottom:0;padding-top:0}.text-group .text-group-data-item:not(:first-child){padding-top:0}[dir=ltr] .text-group .feature-list{padding-left:0}[dir=rtl] .text-group .feature-list{padding-right:0}.text-group .feature-list li.feature-list-item{margin-bottom:0}@media (min-width: 64rem){.text-group .text-group-action-group>a,.text-group .text-group-action-group>button{margin-bottom:0}}@media (min-width: 120rem){.text-group ul,.text-group ol{margin-top:1.5rem}}.screen-reader-content{position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;width:1px;height:1px;overflow:hidden}.media-control-wrapper{background-color:transparent;border:none;border-radius:50%;display:inline-flex;padding:initial;box-sizing:border-box;outline:none;display:flex;align-items:center}.media-control-wrapper.focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}.media-control-wrapper:focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}.media-control-wrapper-outline{box-sizing:content-box}.media-control-wrapper-inverse.focus-visible{border:2.5px solid #5bbbfc}.media-control-wrapper-inverse:focus-visible{border:2.5px solid #5bbbfc}.media-control-wrapper-size-small,.media-control-play-svg-small{width:2.5rem;height:2.5rem}.media-control-wrapper-size-large,.media-control-play-svg-large{width:3rem;height:3rem}.media-control-wrapper-size-x-large,.media-control-play-svg-x-large{width:5rem;height:5rem}.media-control-play-svg:hover{cursor:pointer}.media-control-play-svg:hover .media-control-circle{fill:#0070e0}.media-control-play-svg:hover .media-control-circle-inverse{fill:#b9effc}.media-control-play-svg:active .media-control-circle{fill:#001c64}.media-control-play-svg:active .media-control-circle-inverse{fill:#e3e6f1}.media-control-circle-inverse{fill:#fff}.media-control-triangle-inverse{fill:#003087}.media-control-play-svg-outline-inverse>path{fill:#fff}.media-control-play-svg-outline{border-radius:50%}.media-control-play-svg-outline:hover{cursor:pointer}.video-card{width:100%;text-decoration:none;position:relative;display:block;border:none;border-radius:1rem;margin-bottom:1rem;padding:0;cursor:pointer;z-index:1;outline:none}.video-card .video-card-wrapper{width:100%;padding:.75rem;display:flex;align-items:center;justify-content:space-between}.video-card .video-card-wrapper .video-card-container{display:flex}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail{position:relative;border-radius:.5rem;background-color:#000;min-width:5.833rem;min-height:4.375rem;align-self:center}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .video-card-overlay{position:absolute;width:5.833rem;height:100%;background-color:#fff;opacity:.75;border-radius:.5rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .image-frame{opacity:.6!important;height:100%}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail picture{height:100%}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail img{width:5.833rem;height:100%;border-radius:.5rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{width:2.5rem;height:2.5rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);transition:.3s cubic-bezier(.22,1,.36,1)}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#fff}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-triangle{fill:#001c64}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-left:.75rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-right:.75rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content{text-align:left}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content{text-align:right}.video-card .video-card-wrapper .video-card-container .video-card-content{max-width:11.375}@media (min-width: 41.0625rem){.video-card .video-card-wrapper .video-card-container .video-card-content{max-width:none}}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-text{transition:.3s cubic-bezier(.22,1,.36,1)}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info{display:flex;margin-top:.5rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-right:.375rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-left:.375rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{padding-left:.125rem;padding-right:.5rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{padding-right:.125rem;padding-left:.5rem}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{background-color:#e6e0d9;border-radius:.75rem;padding:0;display:flex;align-items:center}@media (min-width: 23.4375rem){[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-right:1rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-left:1rem}}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span svg{margin:0 2px}.video-card:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background-color:var(--component-button-tertiary);transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;border-radius:1rem}@media (min-width: 91.875rem){.video-card:before{border-radius:1.5rem}}.video-card:hover:before{top:-.25rem;right:-.25rem;bottom:-.25rem;left:-.25rem;border:1px solid #e6e0d9}.video-card:active:before{top:0;right:0;bottom:0;left:0;border:1px solid #e6e0d9}.video-card.focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:-.25rem;right:-.25rem;bottom:-.25rem;left:-.25rem;box-shadow:0 0 0 .375rem #1072eb29}.video-card:focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:-.25rem;right:-.25rem;bottom:-.25rem;left:-.25rem;box-shadow:0 0 0 .375rem #1072eb29}@media (min-width: 91.875rem){.video-card.focus-visible:before{border-radius:1.5rem}.video-card:focus-visible:before{border-radius:1.5rem}}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle,.video-card.focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#b9effc}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle,.video-card:focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#b9effc}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg,.video-card.focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{transform:scale(1.25) translate(-40%,-40%);transform-origin:center}.video-card:hover .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg,.video-card:focus-visible .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{transform:scale(1.25) translate(-40%,-40%);transform-origin:center}.video-card:hover .video-card-wrapper .video-card-container .video-card-text,.video-card.focus-visible .video-card-wrapper .video-card-container .video-card-text{color:#0070e0}.video-card:hover .video-card-wrapper .video-card-container .video-card-text,.video-card:focus-visible .video-card-wrapper .video-card-container .video-card-text{color:#0070e0}.video-card:active .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-circle{fill:#5bbbfc}.video-card:active .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{transform:scale(1) translate(-50%,-50%)}.video-card:active .video-card-wrapper .video-card-container .video-card-text{color:#0070e0}@media (min-width: 91.875rem){.video-card{margin-bottom:2rem;border-radius:1.5rem}.video-card .video-card-wrapper{padding:1rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail{border-radius:.75rem;min-width:11rem;min-height:8.25rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail img{border-radius:.75rem;width:11rem}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .video-card-overlay{position:absolute;border-radius:.75rem;width:11rem;background-color:#fff;opacity:.75}.video-card .video-card-wrapper .video-card-container .video-card-thumbnail .inline-play-button-play-svg{width:3rem;height:3rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-left:1.25rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content{padding-right:1.25rem}.video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info{margin-top:1rem}[dir=ltr] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-right:1.5rem}[dir=rtl] .video-card .video-card-wrapper .video-card-container .video-card-content .video-card-info span{margin-left:1.5rem}}.end-card-collection .end-card-collection-header{text-align:center;margin-bottom:1rem;color:#fff}.end-card-collection .end-card-collection-redirect-links{margin-top:3rem;background-color:transparent;justify-content:center;align-items:center;display:flex;flex-direction:column;row-gap:1rem}.end-card-collection .end-card-collection-redirect-links button{width:-webkit-max-content;width:-moz-max-content;width:max-content}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay{background-color:transparent;position:relative;color:#fff;font-family:PayPalOpen-Bold;line-height:2rem;text-decoration:none;cursor:pointer;outline:none;display:block;margin:0 auto}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:hover,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:hover,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus{outline:none;text-decoration:none}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:before,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:before{width:100%;content:\\\"\\\";position:absolute;top:0rem;left:0rem;text-indent:0rem;pointer-events:none}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:after{border:.1875rem solid #097ff5}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:before,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:before{box-shadow:0 0 0 .375rem #1072eb29}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return{border:2px solid #ffffff;border-radius:1.5rem;font-size:1.125rem;padding:.5rem 1.5rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-return:focus:before{height:3rem;border-radius:1.25rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay{border:none;font-size:1.25rem;margin:0 auto 1rem;display:flex;align-items:center}[dir=ltr] .end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay svg{margin-right:.75rem}[dir=rtl] .end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay svg{margin-left:.75rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay svg{background:#ffffff;padding:.375rem;border-radius:1.5rem}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:after,.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay:focus:before{height:2.75rem;border-radius:.75rem}@media (min-width: 41.0625rem){.end-card-collection{width:26.875rem;margin:0 auto}}@media (min-width: 64rem){.end-card-collection .end-card-collection-redirect-links{text-align:center;display:flex;align-items:center;margin:0 auto 3rem;flex-direction:row}.end-card-collection .end-card-collection-redirect-links .end-card-collection-button-replay{margin:0 auto}[dir=ltr] .end-card-collection .end-card-collection-redirect-links .end-card-collection-replay{margin-right:2.5rem}[dir=rtl] .end-card-collection .end-card-collection-redirect-links .end-card-collection-replay{margin-left:2.5rem}}@media (min-width: 91.875rem){.end-card-collection{width:32.25rem}}@media (min-width: 120rem){.end-card-collection .end-card-collection-header{margin-bottom:2rem}.end-card-collection .end-card-collection-redirect-links{margin:0 auto 3.5rem}}.inline-video:hover{cursor:pointer}.inline-video-overlay{position:absolute;background-color:#000;opacity:.3;height:100%;width:100%;border-radius:inherit}.video-frame{position:relative}.video-frame.video-frame-rounded-corners .video-frame-wrapper{overflow:hidden;border-radius:clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)}@supports not (font-size: clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)){.video-frame.video-frame-rounded-corners .video-frame-wrapper{border-radius:min(max(1.5rem,.6049046321525886rem + 2.17983651226158vw),2rem)}}.video-frame-wrapper{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;line-height:.5}.video-frame-wrapper video,.video-frame-wrapper img{-o-object-fit:cover;object-fit:cover}.video-frame-wrapper video.video-frame-hide{display:none}.video-frame-wrapper video.video-frame-show{display:block}.video-frame-wrapper:hover .video-frame-controls-container button{opacity:.25}.video-frame-wrapper:hover .video-frame-video-duration button{opacity:1}.video-frame-wrapper .video-frame-controls-container button{opacity:0;transition:opacity .6s cubic-bezier(.22,1,.36,1)}.video-frame-wrapper .video-frame-controls-container button:hover,.video-frame-wrapper .video-frame-controls-container button.focus-visible,.video-frame-wrapper .video-frame-controls-container button:focus{opacity:1!important}.video-frame-wrapper .video-frame-controls-container button:hover,.video-frame-wrapper .video-frame-controls-container button:focus-visible,.video-frame-wrapper .video-frame-controls-container button:focus{opacity:1!important}@media (hover: none){.video-frame-wrapper .video-frame-controls-container button{opacity:1}}.video-frame-wrapper .video-frame-video-duration button{opacity:1}[dir=ltr] .video-frame-controls-container{right:0}[dir=rtl] .video-frame-controls-container{left:0}.video-frame-controls-container{position:absolute;width:4.5%;bottom:0}[dir=ltr] .video-frame-controls-container>button{right:100%}[dir=rtl] .video-frame-controls-container>button{left:100%}.video-frame-controls-container>button{position:absolute;bottom:100%}.video-frame-controls-container:after{content:\\\"\\\";display:block;padding-bottom:100%}.video-frame-main-controls-container{display:flex;flex-direction:column;align-items:center;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.video-frame-main-controls-container>button{margin-bottom:.75rem}.video-frame-body-text{font-weight:400;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;color:#001c64}.video-frame-button-text-inverse{color:#fff}.video-frame-youtube-video{width:95vw;margin:0 .5rem;border-radius:1rem}@supports (aspect-ratio: auto){.video-frame-youtube-video{aspect-ratio:16/9}}.video-frame-video-md{display:none;visibility:hidden}.video-frame-video-base{display:block;visibility:visible}@media (min-width: 41.0625rem){.video-frame-youtube-video{border-radius:1.5rem}.video-frame-video-md{display:block;visibility:visible}.video-frame-video-base{display:none;visibility:hidden}}@media (min-width: 64rem){.video-frame-youtube-video{max-width:85vw;max-height:85vh}}@media (min-width: 87.875rem){.video-frame-youtube-video{max-width:75vw;max-height:85vh}}.video-cursor-pointer:hover{cursor:pointer}.truncate-button{align-items:center;color:var(--component-inline-button);cursor:pointer;background-color:transparent;border:transparent;display:flex;outline:none;padding:.25rem 0;position:relative;pointer-events:auto}[dir=ltr] .truncate-button.focus-visible:after,[dir=ltr] .truncate-button.focus-visible:before{left:-.25rem}[dir=ltr] .truncate-button:focus-visible:after,[dir=ltr] .truncate-button:focus-visible:before{left:-.25rem}[dir=rtl] .truncate-button.focus-visible:after,[dir=rtl] .truncate-button.focus-visible:before{right:-.25rem}[dir=rtl] .truncate-button:focus-visible:after,[dir=rtl] .truncate-button:focus-visible:before{right:-.25rem}.truncate-button.focus-visible:after,.truncate-button.focus-visible:before{width:calc(100% + .5rem);content:\\\"\\\";position:absolute;top:0rem;text-indent:0rem;height:100%;pointer-events:none}.truncate-button:focus-visible:after,.truncate-button:focus-visible:before{width:calc(100% + .5rem);content:\\\"\\\";position:absolute;top:0rem;text-indent:0rem;height:100%;pointer-events:none}.truncate-button.focus-visible:after{border:.1875rem solid var(--style-fill-2);border-radius:0}.truncate-button:focus-visible:after{border:.1875rem solid var(--style-fill-2);border-radius:0}.truncate-button.focus-visible:before{border-radius:.25rem;box-shadow:0 0 0 .375rem #1072eb26}.truncate-button:focus-visible:before{border-radius:.25rem;box-shadow:0 0 0 .375rem #1072eb26}.truncate-button span.body-text-size-body-bold{color:var(--component-inline-button)}[dir=ltr] .truncate-button span:last-of-type{margin-left:.25rem}[dir=rtl] .truncate-button span:last-of-type{margin-right:.25rem}.truncate-button span:last-of-type{align-items:center;display:flex}.truncated-text-group-truncate-button{width:100%;margin-top:1rem}.truncated-text-group-truncate-button-expanded{margin-bottom:1rem}.truncated-text-group-truncate-button-expanded+.truncated-text-group-feature-list{margin-top:1rem}.truncated-text-group .text-group+.truncated-text-group-feature-list{margin-top:1rem}@media screen and (min-width: 107.875rem){.truncated-text-group-truncate-button{margin-top:1.5rem}}.account-selection{overflow:unset}.account-selection .section-wrapper-graphics-top{display:none}.account-selection .section-wrapper-graphics-bottom{bottom:.03125rem}.account-selection.stone-plate .feature-list .checkmark circle{fill:#5bbbfc33}.account-selection.stone-plate .feature-list .checkmark path{fill:#0070e0}.account-selection-radio-headline-text-group-container{margin-bottom:.875rem}.account-selection-text-group{margin-bottom:1rem}.account-selection-radio-headline-text-group-container-minimal{margin-bottom:.5rem}.account-selection-radio-headline-text-group .text-group-headline,.account-selection-radio-headline-text-group-minimal .text-group-headline{display:none}div.account-selection-cards-container-default{background-color:#faf8f5;border-radius:1rem;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;display:flex;flex-direction:column;justify-content:space-between}[dir=ltr] .account-selection-card-default{text-align:left}[dir=rtl] .account-selection-card-default{text-align:right}.account-selection-card-default{background-color:#fff;display:flex;flex-basis:50%;flex-direction:column;padding:1.5rem;position:relative}.account-selection-card-default-0{border-radius:1rem 1rem 0 0}.account-selection-card-default-1{border-radius:0 0 1rem 1rem;margin-top:.125rem}.account-selection-card-default-media{margin-bottom:1rem}.account-selection-card-default-media.image-frame-rounded-corners{border-radius:.5rem}.account-selection-card-default-media img{aspect-ratio:16 / 9;-o-object-fit:cover;object-fit:cover}.account-selection-card-default-truncated-group{margin-bottom:auto}.account-selection-card-default-truncated-group .text-group-headline{max-width:calc(100% - 2.5rem);word-wrap:break-word}.account-selection-card-default-truncated-group .text-group-paragraph{margin-bottom:1rem}.account-selection-card-default-truncate-button{z-index:1}.account-selection-card-default-arrow-link{align-items:center;display:flex;outline:none;position:absolute;text-decoration:none}.account-selection-card-default-arrow-link.focus-visible:after,.account-selection-card-default-arrow-link.focus-visible:before{content:\\\"\\\";height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-default-arrow-link:focus-visible:after,.account-selection-card-default-arrow-link:focus-visible:before{content:\\\"\\\";height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-default-arrow-link.focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-default-arrow-link:focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-default-arrow-link.focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}.account-selection-card-default-arrow-link:focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{right:1.5rem}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{left:1.5rem}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{left:auto}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{right:auto}.account-selection-card-default-arrow-link .arrow-icon{top:1.25rem;bottom:auto;position:absolute}.account-selection-card-default-0 .account-selection-card-default-arrow-link{top:0;right:0;bottom:.25rem;left:0}.account-selection-card-default-0 .account-selection-card-default-arrow-link.focus-visible:after,.account-selection-card-default-0 .account-selection-card-default-arrow-link.focus-visible:before{border-radius:1rem 1rem 0 0}.account-selection-card-default-0 .account-selection-card-default-arrow-link:focus-visible:after,.account-selection-card-default-0 .account-selection-card-default-arrow-link:focus-visible:before{border-radius:1rem 1rem 0 0}.account-selection-card-default-1 .account-selection-card-default-arrow-link{top:0;right:0;bottom:0;left:0}.account-selection-card-default-1 .account-selection-card-default-arrow-link.focus-visible:after,.account-selection-card-default-1 .account-selection-card-default-arrow-link.focus-visible:before{border-radius:0 0 1rem 1rem}.account-selection-card-default-1 .account-selection-card-default-arrow-link:focus-visible:after,.account-selection-card-default-1 .account-selection-card-default-arrow-link:focus-visible:before{border-radius:0 0 1rem 1rem}.account-selection-card-default-arrow-link:hover,.account-selection-card-default-arrow-link:focus,.account-selection-card-default-arrow-link:visited{text-decoration:none}.account-selection-card-default-button{align-self:flex-start;margin-top:1.5rem}div.account-selection-cards-container-radio{background-color:#fff;border-radius:1rem;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;display:flex;flex-direction:column;justify-content:space-between;padding:1rem}.account-selection-cards-inner-container-radio{display:flex;flex-direction:column}div.account-selection-cards-radio-cta-wrapper-sticky{border:.0625rem solid #ffffff;background-color:#fff;bottom:0;margin-top:1rem;padding:1rem calc(1 * var(--grid-gap));position:-webkit-sticky;position:sticky}div.account-selection-cards-radio-cta-button-sticky{display:block}div.account-selection-cards-radio-cta-button-sticky .account-selection-card-cta{width:100%}div.account-selection-cards-radio-cta-button{display:none}[dir=ltr] .account-selection-card-radio{text-align:left}[dir=rtl] .account-selection-card-radio{text-align:right}.account-selection-card-radio{display:flex;flex-basis:50%;flex-direction:column;padding:1.5rem;position:relative}.account-selection-card-radio+.account-selection-card-radio{margin-top:.5rem}.account-selection-card-radio-label{align-items:center;display:flex;margin-bottom:1rem}.account-selection-card-radio-label input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:none;border:none;cursor:pointer;height:100%;top:0;right:0;bottom:0;left:0;outline:none;position:absolute;width:100%;z-index:1}.account-selection-card-radio-label input:checked{z-index:auto}[dir=ltr] .account-selection-card-radio-label .account-selection-card-radio-custom-input{margin-right:1rem}[dir=rtl] .account-selection-card-radio-label .account-selection-card-radio-custom-input{margin-left:1rem}.account-selection-card-radio-label .account-selection-card-radio-custom-input .radio-checked{display:none}.account-selection-card-radio-label input:checked+.account-selection-card-radio-custom-input .radio-checked{display:block}.account-selection-card-radio-label input:checked+.account-selection-card-radio-custom-input .radio-unchecked{display:none}.account-selection-card-radio-label input:checked:before{content:\\\"\\\";background-color:#f8f8f8;border:.1875rem solid #c6c6c6;border-radius:1rem;height:100%;top:0;right:0;bottom:0;left:0;position:absolute;width:100%;z-index:-1}.account-selection-card-radio-label input.focus-visible:after,.account-selection-card-radio-label input.focus-visible:before{content:\\\"\\\";border-radius:1rem;height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-radio-label input:focus-visible:after,.account-selection-card-radio-label input:focus-visible:before{content:\\\"\\\";border-radius:1rem;height:100%;position:absolute;text-indent:0;top:0;width:100%}.account-selection-card-radio-label input.focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-radio-label input:focus-visible:after{border:.1875rem solid var(--style-fill-2)}.account-selection-card-radio-label input.focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}.account-selection-card-radio-label input:focus-visible:before{box-shadow:0 0 0 .375rem #1072eb26}.account-selection-card-radio-label .text-group-headline{margin:0}.account-selection.stone-plate .account-selection-card-radio-label:not(.account-selection-card-radio-minimal-label) input:checked:before{background-color:#f3f3f6}[dir=ltr] .account-selection-card-radio-minimal-label.account-selection-radio-align-start>.text-group{margin-left:.75rem}[dir=rtl] .account-selection-card-radio-minimal-label.account-selection-radio-align-start>.text-group{margin-right:.75rem}.account-selection-card-radio-minimal-label.account-selection-radio-align-end{flex-direction:row-reverse;justify-content:space-between}[dir=ltr] .account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input{margin-right:0}[dir=rtl] .account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input{margin-left:0}.account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input .radio-checked,.account-selection-card-radio-minimal-label .account-selection-card-radio-custom-input .radio-unchecked{width:1.5rem;height:1.5rem}.account-selection-card-radio-minimal-label input:checked:before{border-radius:.5rem;border-color:#5bbbfc;background-color:#0070e00a}.account-selection-card-radio-minimal-label input.focus-visible:after,.account-selection-card-radio-minimal-label input.focus-visible:before{border-radius:.5rem;border-color:#0070e0;background-color:#0070e00a}.account-selection-card-radio-minimal-label input:focus-visible:after,.account-selection-card-radio-minimal-label input:focus-visible:before{border-radius:.5rem;border-color:#0070e0;background-color:#0070e00a}div.account-selection-cards-radio-minimal-cta-wrapper-sticky{margin-top:2rem;box-shadow:0 -16px 20px -5px #00000014}div.account-selection-cards-container-radio-minimal{padding:.5rem}div.account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem}div.account-selection-cards-container-radio-minimal .truncated-text-group li{align-items:center}.account-selection-radio-minimal{min-height:90vh}.account-selection-radio-minimal .account-selection-radio-headline-text-group-container-minimal{align-self:end}.account-selection-radio-minimal .account-selection-cards-container-radio-minimal{align-self:start}.account-selection-radio-minimal .account-selection-cards-radio-minimal-cta-wrapper-sticky{align-self:end}.account-selection-radio-minimal .section-wrapper-graphics-top{display:block}.account-selection-radio-minimal .section-wrapper-graphics-bottom{bottom:2rem}@media only screen and (min-width: 41.0625rem){.account-selection-radio-headline-text-group-container{margin-bottom:0}.account-selection-radio-headline-text-group .text-group-headline{display:block}.account-selection-radio-headline-text-group-minimal .text-group-eyebrow-text{display:none}.account-selection-radio-headline-text-group-minimal.account-selection-radio-headline-text-group-minimal-with-eyebrow .text-group-eyebrow-text,.account-selection-radio-headline-text-group-minimal .text-group-headline{display:block}.account-selection-card-default{padding:2rem}.account-selection-card-default-media{margin-bottom:2rem}.account-selection-card-default-media.image-frame-rounded-corners{border-radius:1rem}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{right:2rem}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{left:2rem}[dir=ltr] .account-selection-card-default-arrow-link .arrow-icon{left:auto}[dir=rtl] .account-selection-card-default-arrow-link .arrow-icon{right:auto}.account-selection-card-default-arrow-link .arrow-icon{top:1.75rem;bottom:auto}.account-selection-card-radio{padding:2rem}div.account-selection-cards-radio-cta-wrapper-sticky{padding:1rem calc(2 * var(--grid-gap))}div.account-selection-cards-radio-cta-button-sticky{max-width:36.25rem;margin:0 auto}div.account-selection-cards-radio-minimal-cta-wrapper-sticky{padding:1rem calc(1 * var(--grid-gap))}div.account-selection-cards-radio-minimal-cta-wrapper-sticky .account-selection-cards-radio-cta-button-sticky{max-width:none}}@media only screen and (min-width: 64rem){.account-selection .section-wrapper-graphics-top{display:flex}.account-selection .section-wrapper-graphics-bottom{bottom:0}.account-selection-radio-minimal{align-items:center;justify-items:center;place-items:center}.account-selection-radio-headline-text-group-container-minimal{margin-bottom:1rem}div.account-selection-cards-container-default{border-radius:1.5rem;flex-direction:row}.account-selection-card-default{padding:3rem}.account-selection-card-default-0{border-radius:1.5rem 0 0 1.5rem}[dir=ltr] .account-selection-card-default-1{margin-left:.125rem}[dir=rtl] .account-selection-card-default-1{margin-right:.125rem}.account-selection-card-default-1{border-radius:0 1.5rem 1.5rem 0;margin-top:0}div.account-selection-cards-container-radio{border-radius:1.5rem;padding:1.5rem}.account-selection-cards-inner-container-radio{flex-direction:row}.account-selection-card-radio{padding:1.5rem 2rem}[dir=ltr] .account-selection-card-radio+.account-selection-card-radio{margin-left:1.5rem}[dir=rtl] .account-selection-card-radio+.account-selection-card-radio{margin-right:1.5rem}.account-selection-card-radio+.account-selection-card-radio{margin-top:0}.account-selection-card-radio-label input:checked:before,.account-selection-card-radio-label input.focus-visible:after,.account-selection-card-radio-label input.focus-visible:before{border-radius:1.5rem}.account-selection-card-radio-label input:checked:before,.account-selection-card-radio-label input:focus-visible:after,.account-selection-card-radio-label input:focus-visible:before{border-radius:1.5rem}.account-selection-card-radio-minimal-label input:checked:before,.account-selection-card-radio-minimal-label input.focus-visible:after,.account-selection-card-radio-minimal-label input.focus-visible:before{border-radius:.75rem}.account-selection-card-radio-minimal-label input:checked:before,.account-selection-card-radio-minimal-label input:focus-visible:after,.account-selection-card-radio-minimal-label input:focus-visible:before{border-radius:.75rem}div.account-selection-cards-radio-cta-wrapper-sticky{display:none}div.account-selection-cards-radio-cta-button{width:100%;align-self:center;justify-content:center;display:flex;position:relative;margin-top:2.5rem;padding-bottom:1.25rem}div.account-selection-cards-radio-cta-button.account-selection-cards-inner-use-sticky-action{position:-webkit-sticky;position:sticky;bottom:0;z-index:9999}div.account-selection-cards-radio-cta-button.account-selection-cards-inner-use-sticky-action:after{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;top:-2rem;background:linear-gradient(to top,#fff 2rem,transparent);z-index:-1;pointer-events:none}div.account-selection-cards-container-radio-minimal{padding:1.5rem 1.5rem .5rem}div.account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem 2rem}div.account-selection-cards-container-radio-minimal div.account-selection-cards-radio-cta-button{padding-bottom:0;margin-top:1.5rem}div.account-selection-cards-container-radio-minimal div.account-selection-cards-inner-use-sticky-action .account-selection-card-cta{margin-bottom:1rem}}@media only screen and (min-width: 91.875rem){.account-selection-card-default{padding:4.5rem}div.account-selection-cards-container-radio{padding:2rem}.account-selection-card-radio{padding:3rem 4.5rem}[dir=ltr] .account-selection-card-radio+.account-selection-card-radio{margin-left:2rem}[dir=rtl] .account-selection-card-radio+.account-selection-card-radio{margin-right:2rem}div.account-selection-cards-radio-cta-button{margin-top:3rem}div.account-selection-cards-container-radio-minimal{padding:1.5rem 1.5rem .5rem}div.account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem 2rem}div.account-selection-cards-container-radio-minimal div.account-selection-cards-radio-cta-button{padding-bottom:0;margin-top:1.5rem}}@media only screen and (min-width: 120rem){.account-selection-radio-headline-text-group-container-minimal{margin-bottom:.5rem}}@media screen and (min-width: 107.875rem){.account-selection-text-group,.account-selection-card-default-truncated-group .text-group-paragraph{margin-bottom:1.5rem}}.radio-unchecked{width:1.5rem;height:1.5rem;display:block}.radio-unchecked .radio-unchecked-circle{fill:#fff;stroke:#929496}.radio-checked{width:1.5rem;height:1.5rem;display:block}.radio-checked .radio-checked-outer-circle{fill:#0070e0}.radio-checked .radio-checked-inner-circle{fill:#fff}@media only screen and (min-width: 41.0625rem){.radio-unchecked,.radio-checked{width:2rem;height:2rem}}@media only screen and (min-width: 91.875rem){.radio-unchecked,.radio-checked{width:2.25rem;height:2.25rem}}@media only screen and (min-width: 64rem){.grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem}}@media only screen and (min-width: 91.875rem){.grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio{padding:1.5rem}[dir=ltr] .grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio+.account-selection-card-radio{margin-left:1.5rem}[dir=rtl] .grid-compact .account-selection-cards-container-radio-minimal .account-selection-card-radio+.account-selection-card-radio{margin-right:1.5rem}}@media only screen and (min-width: 91.875rem){[dir=ltr] .grid-compact.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio+.account-selection-card-radio{margin-left:1.5rem}[dir=rtl] .grid-compact.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio+.account-selection-card-radio{margin-right:1.5rem}.grid-compact.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio{padding:2.5rem 3rem}}.grid-compact.font-quantum-leap.account-selection:not(.account-selection-radio-minimal) .account-selection-card-radio-label input:checked:before{border-color:#0070e0}.action-banner .white-plate{background-color:#fff}.action-banner{text-align:center;align-items:center}.action-banner .action-banner-link{text-decoration:none;display:inline-block;padding:2rem}.action-banner .action-banner-paragraph-container{display:flex;flex-direction:column;margin:0}.action-banner .action-banner-paragraph-container .action-banner-paragraph-content{display:inline-block}.action-banner .action-banner-align-outer-rail,.action-banner .action-banner-align-inner-rail{border-radius:1rem}@media (min-width: 64rem){.action-banner .action-banner-link{padding:2.5rem}.action-banner .action-banner-align-outer-rail,.action-banner .action-banner-align-inner-rail{border-radius:1.5rem}.action-banner .action-banner-paragraph-container{display:block}[dir=ltr] .action-banner .action-banner-paragraph-container .action-banner-paragraph-link{margin-left:1rem}[dir=rtl] .action-banner .action-banner-paragraph-container .action-banner-paragraph-link{margin-right:1rem}}.app-download-banner{display:grid;align-items:center;text-align:center}.app-download-banner.grid{grid-row-gap:0}@media (min-width: 64rem){.app-download-banner.grid{grid-row-gap:var(--grid-gap)}}.app-download-banner #app-download-banner-text-group-grid{text-align:center}.app-download-banner #app-download-banner-appdownload-group-grid{display:flex;justify-content:center}.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group-variant-qr-and-sms .app-download-group-disclaimer{width:100%}.app-download-banner #app-download-banner-image-grid,.app-download-banner .app-download-banner-medium-text-group{display:none}.app-download-banner .app-download-banner-base-text-group{display:block;margin-bottom:1rem}.app-download-banner .app-download-banner-base-text-group .text-group-headline{margin-bottom:1rem}.app-download-banner .app-download-banner-image{display:block}@media (max-width: 41rem){.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group-variant-qr-and-sms .app-download-group-row .app-download-group-qr-row-qr-and-sms .app-download-group-no-image-content-col .app-download-group-phone-input-row{display:flex;flex-direction:column;align-items:center}}@media (min-width: 64rem){[dir=ltr] .app-download-banner{text-align:left}[dir=rtl] .app-download-banner{text-align:right}[dir=ltr] .app-download-banner #app-download-banner-text-group-grid{text-align:left}[dir=rtl] .app-download-banner #app-download-banner-text-group-grid{text-align:right}.app-download-banner #app-download-banner-appdownload-group-grid{display:block;justify-content:flex-start}.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group{min-height:10rem}.app-download-banner #app-download-banner-appdownload-group-grid .app-download-group-variant-qr-and-sms .app-download-group-disclaimer{width:95%}.app-download-banner #app-download-banner-image-grid{align-items:center;justify-content:end;display:flex;height:100%}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{border-right:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{border-left:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{padding-right:2rem}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-qr-only{padding-left:2rem}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{border-left:.0625rem solid var(--style-stroke-color)}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{border-right:.0625rem solid var(--style-stroke-color)}[dir=ltr] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{padding-left:2rem}[dir=rtl] .app-download-banner #app-download-banner-image-grid.app-download-banner-with-sms{padding-right:2rem}.app-download-banner .app-download-banner-medium-text-group{display:block}.app-download-banner .app-download-banner-base-text-group{display:none}}@media (min-width: 107.875rem){[dir=ltr] .app-download-banner #app-download-banner-text-group-grid{text-align:left}[dir=rtl] .app-download-banner #app-download-banner-text-group-grid{text-align:right}[dir=ltr] .app-download-banner #app-download-banner-image-grid{padding-left:1.5rem}[dir=rtl] .app-download-banner #app-download-banner-image-grid{padding-right:1.5rem}}@-moz-document url-prefix(){@media (max-width: 23.4375rem){.carousel-track-container{max-width:clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)}@supports not (font-size: clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)){.carousel-track-container{max-width:min(max(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw),36.23rem)}}}@media (min-width: 23.4375rem){.carousel-track-container{max-width:clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)}@supports not (font-size: clamp(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw,36.23rem)){.carousel-track-container{max-width:min(max(19.4375rem,-2.8929521276595693rem + 95.27659574468083vw),36.23rem)}}}@media (min-width: 41.0625rem){.carousel-track-container{max-width:clamp(36.23rem,25.755594005449577rem + 25.50844686648504vw,42.081rem)}@supports not (font-size: clamp(36.23rem,25.755594005449577rem + 25.50844686648504vw,42.081rem)){.carousel-track-container{max-width:min(max(36.23rem,25.755594005449577rem + 25.50844686648504vw),42.081rem)}}}@media (min-width: 64rem){.carousel-track-container{max-width:clamp(42.081rem,-18.863071748878916rem + 95.22511210762332vw,68.625rem)}@supports not (font-size: clamp(42.081rem,-18.863071748878916rem + 95.22511210762332vw,68.625rem)){.carousel-track-container{max-width:min(max(42.081rem,-18.863071748878916rem + 95.22511210762332vw),68.625rem)}}}@media (min-width: 91.875rem){.carousel-track-container{max-width:clamp(68.625rem,18.80833333333333rem + 54.22222222222223vw,83.875rem)}@supports not (font-size: clamp(68.625rem,18.80833333333333rem + 54.22222222222223vw,83.875rem)){.carousel-track-container{max-width:min(max(68.625rem,18.80833333333333rem + 54.22222222222223vw),83.875rem)}}}@media (min-width: 120rem){.carousel-track-container{max-width:83.875rem}}}.carousel{max-width:100%;padding:11.875rem 0;position:relative}.carousel .neutral100{background-color:#faf8f5}.carousel .white{background-color:#fff}.carousel .carousel-notification{clip:rect(0 0 0 0);height:.0625rem;left:0;position:absolute;top:0;width:.0625rem;z-index:-1000}.carousel .carousel-dragging-disables-on-click{pointer-events:none}.carousel .carousel-track-container{position:relative;cursor:grab}.carousel .carousel-track-container:active{cursor:grabbing}.carousel .carousel-track{display:flex;list-style:none;margin:0;min-width:100%;overflow-x:visible;padding:0;position:relative;transition-duration:0ms;transition-property:transform;transition-timing-function:cubic-bezier(.22,1,.36,1);width:-webkit-max-content;width:-moz-max-content;width:max-content}.carousel .carousel-slide{transform:translateZ(0);-webkit-transform:translateZ(0);-moz-transform:translateZ(0)}[dir=ltr] .carousel .carousel-slide+.carousel-slide{margin-left:var(--grid-gap)}[dir=rtl] .carousel .carousel-slide+.carousel-slide{margin-right:var(--grid-gap)}.carousel .carousel-button{background-color:transparent;border:none;cursor:pointer;opacity:0;transition-duration:.3s;transition-timing-function:cubic-bezier(.22,1,.36,1);transition-property:opacity;vertical-align:middle;filter:drop-shadow(0rem .75rem 1.75rem rgba(0,0,0,.16));margin:0;outline:none;padding:0;position:absolute;top:50%;z-index:1}.carousel .carousel-button:hover{opacity:.9!important}.carousel .carousel-button:focus{opacity:.9!important}.carousel .carousel-button:focus:after{border:.125rem solid #0070e0;border-radius:.25rem;box-shadow:0 0 0 .125rem #1072eb29;content:\\\"\\\";top:0;right:0;bottom:0;left:0;pointer-events:none;position:absolute;border-radius:50%}.carousel .carousel-button .arrow-icon{fill:#f7f5f0;transition-duration:.3s;transition-timing-function:cubic-bezier(.22,1,.36,1);transition-property:fill,opacity;opacity:1}.carousel .carousel-button .arrow-icon path:not(:nth-of-type(1)){fill:#003087}.carousel .carousel-button .arrow-icon:hover{opacity:.8}.carousel .carousel-button .arrow-icon:hover path:not(:nth-of-type(1)){fill:#001c64}.carousel .carousel-button .arrow-icon:active{opacity:1}.carousel .carousel-button .arrow-icon:focus path:not(:nth-of-type(1)){fill:#003087}.carousel .carousel-slide-paragraph{padding:2.4rem}.carousel .next-button{right:0;transform:translate(50%,-50%)}[dir=rtl] .carousel .next-button{left:0;right:unset;transform:translate(-50%,-50%) rotate(180deg)}.carousel .previous-button{transform:translate(-50%,-50%)}[dir=rtl] .carousel .previous-button{transform:translate(50%,-50%) rotate(180deg)}.carousel .carousel-slide{border-radius:1.5rem}.carousel .page-nav-container{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;left:50%;position:absolute;transform:translate(-50%);margin-top:2rem;width:90%}.carousel .carousel-indicator{align-items:center;background-color:transparent;border:none;cursor:pointer;display:flex;height:1rem;justify-content:center;margin:0 .3125rem;outline:none;padding:.3125rem 0;position:relative;width:clamp(2.5rem,1.459104367135455rem + 4.441154700222058vw,6.25rem)}@supports not (font-size: clamp(2.5rem,1.459104367135455rem + 4.441154700222058vw,6.25rem)){.carousel .carousel-indicator{width:min(max(2.5rem,1.459104367135455rem + 4.441154700222058vw),6.25rem)}}.carousel .carousel-indicator span{border-radius:.125rem;display:block;transition-property:border-color,opacity;transition:.3s cubic-bezier(.22,1,.36,1);width:100%;opacity:.1}.carousel .carousel-indicator:hover span{opacity:.5}.carousel .carousel-indicator:focus:after{border:.125rem solid #0070e0;box-shadow:0 0 0 .125rem #1072eb29;content:\\\"\\\";right:0;left:0;pointer-events:none;position:absolute;border-radius:.25rem;top:0;right:-.25rem;bottom:0;left:-.25rem}.carousel .carousel-indicator.activeButton span{opacity:1}@media (min-width: 64rem){.carousel .carousel-track-container:hover .carousel-button{opacity:1}.carousel .page-nav-container{margin-top:2rem}}.carousel .carousel-indicator span{background-color:#0c0c0d;border:#0c0c0d solid}.slate-plate .carousel .carousel-indicator span,.slate-gradient-plate .carousel .carousel-indicator span,.blue-700-plate .carousel .carousel-indicator span,.blue-400-alt-plate .carousel .carousel-indicator span,.blue-500-plate .carousel .carousel-indicator span,.blue-600-plate .carousel .carousel-indicator span{background-color:var(--component-button-primary);border:var(--component-button-primary) solid}.carousel-disabled .carousel-track-container,.carousel-disabled .carousel-track-container:active{cursor:default}.carousel-disabled .page-nav-container{display:none}.author-info-section-speaker{margin:1.5rem 0 0;display:flex;flex-direction:column}.author-info-section-speaker .author-info-section-speaker-label{margin-bottom:.5rem}.author-info-section-speaker .author-info-section-speaker-info span:before{content:\\\", \\\"}.feature-card{margin:0;padding:0;box-sizing:border-box;display:flex;flex:1;width:100%;flex-direction:column;justify-content:space-between;color:var(--style-general-text)}.feature-card .feature-card-list-item{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1.5rem}[dir=ltr] .feature-card .feature-card-list-item span{padding-right:.75rem}[dir=rtl] .feature-card .feature-card-list-item span{padding-left:.75rem}[dir=ltr] .feature-card .feature-card-list-item span{border-right:.06rem solid var(--style-stroke-color)}[dir=rtl] .feature-card .feature-card-list-item span{border-left:.06rem solid var(--style-stroke-color)}[dir=ltr] .feature-card .feature-card-list-item span{margin-right:.75rem}[dir=rtl] .feature-card .feature-card-list-item span{margin-left:.75rem}[dir=ltr] .feature-card .feature-card-list-item span:last-of-type{padding-right:0}[dir=rtl] .feature-card .feature-card-list-item span:last-of-type{padding-left:0}.feature-card .feature-card-list-item span:last-of-type{border:none}.feature-card .feature-card-headline{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.feature-card .feature-card-time{color:var(--style-headline-text);margin-top:1.5rem}.feature-card .feature-card-time span{padding:0 .5rem}[dir=ltr] .feature-card .feature-card-time .feature-card-article-tag{margin-left:.5rem}[dir=rtl] .feature-card .feature-card-time .feature-card-article-tag{margin-right:.5rem}.feature-card .feature-card-time .feature-card-article-tag{background:#faf8f5;border-radius:4px;color:#0070e0}.feature-card .feature-card-paragraph{margin-top:1.5rem;display:-webkit-box;-webkit-line-clamp:7;-webkit-box-orient:vertical;overflow:hidden}.feature-card .feature-card-duration{margin-top:1.5rem;display:block}.feature-card .feature-card-button{margin-top:1.5rem;display:block;padding:0}.feature-card .feature-card-paragraph-four-line-clamp{-webkit-line-clamp:4}@media only screen and (max-width: 23.375rem){.feature-card .feature-card-headline{-webkit-line-clamp:2}.feature-card .feature-card-paragraph-four-line-clamp{-webkit-line-clamp:3}}.standard-card{display:flex;flex:1;width:100%;margin:0;padding:0;flex-direction:column;justify-content:space-between;color:var(--style-general-text);box-sizing:border-box}.standard-card .standard-card-list-item{display:flex;flex-wrap:wrap;padding:0;margin-bottom:1.5rem}[dir=ltr] .standard-card .standard-card-list-item span{padding-right:.75rem}[dir=rtl] .standard-card .standard-card-list-item span{padding-left:.75rem}[dir=ltr] .standard-card .standard-card-list-item span{border-right:.06rem solid var(--style-stroke-color)}[dir=rtl] .standard-card .standard-card-list-item span{border-left:.06rem solid var(--style-stroke-color)}[dir=ltr] .standard-card .standard-card-list-item span{margin-right:.75rem}[dir=rtl] .standard-card .standard-card-list-item span{margin-left:.75rem}[dir=ltr] .standard-card .standard-card-list-item span:last-of-type{padding-right:0}[dir=rtl] .standard-card .standard-card-list-item span:last-of-type{padding-left:0}.standard-card .standard-card-list-item span:last-of-type{border:none}.standard-card .standard-card-footer-list-item{margin-bottom:0}.standard-card .standard-card-headline{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}.standard-card .standard-card-headline-1-line-clamp{-webkit-line-clamp:1}.standard-card .standard-card-headline-2-line-clamp{-webkit-line-clamp:2}.standard-card .standard-card-headline-3-line-clamp{-webkit-line-clamp:3}.standard-card .standard-card-headline-large{margin-top:1.5rem}.standard-card .standard-card-speaker{display:flex;flex-direction:column}.standard-card .standard-card-speaker-small,.standard-card .standard-card-speaker-large{margin:.75rem 0 1.5rem}.standard-card .standard-card-host-speaker:before,.standard-card .standard-card-guest-speaker:before{content:\\\": \\\"}@media only screen and (max-width: 23.375rem){.standard-card .standard-card-speaker-small,.standard-card .standard-card-speaker-large{margin:.5rem 0 2rem}}.article-card-anchor{text-decoration:none!important;display:inline-flex;flex-direction:column;height:100%;width:100%}a.article-card-anchor:focus,a.article-card-anchor.focus-visible{box-shadow:#0070e0 0 0 0 .156rem,#d1e5f9e6 0 0 0 .375rem}a.article-card-anchor:focus,a.article-card-anchor:focus-visible{box-shadow:#0070e0 0 0 0 .156rem,#d1e5f9e6 0 0 0 .375rem}.article-card-template.not-mounted .article-card-template-carousel-grid-wrapper{padding-bottom:0}.article-card-template.not-mounted .page-nav-container{display:none}.article-card-template .article-card-template-carousel-grid-wrapper{padding-bottom:4rem}.article-card-template .article-card-template-image-frame-placeholder{background-color:#009cde}.article-card-template .article-card-template-header{padding-bottom:2rem}.article-card-template .article-card-template-stack{display:grid;grid-gap:var(--grid-gap);width:100%;margin:0;padding:0;box-sizing:border-box;grid-auto-flow:row;padding-bottom:.45rem}.article-card-template .article-card-template-stack .article-card-template-stack-item{height:auto;border-radius:1.5rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame{border-radius:1.5rem 1.5rem 0 0;height:auto;width:100%;overflow:hidden;box-sizing:border-box;margin:0}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame img{height:16.07rem;width:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover;display:block}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame-placeholder{border-radius:1.5rem 1.5rem 0 0;min-height:16.07rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-card{margin:0;box-sizing:border-box;border:1px solid #eaeced;padding:1.5rem calc(var(--grid-gap) * 2);border-radius:0 0 1.5rem 1.5rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-card.stone-plate{border:1px solid #f1ede8}.article-card-template .article-card-template-card-section .article-card-template-stack-item{margin-bottom:0}.article-card-template .article-card-template-border-card-item .article-card-template-item .article-card-template-image-frame-placeholder{min-height:16.07rem}.article-card-template .article-card-template-border-card-item .article-card-template-item .article-card-template-card{border:1px solid #eaeced}.article-card-template .article-card-template-border-card-item .article-card-template-item .article-card-template-card.stone-plate{border:1px solid #f1ede8}.article-card-template .article-card-template-cta-section{display:flex;justify-content:center;margin-top:3rem;padding-top:2rem;margin-bottom:.45rem}.article-card-template .article-card-template-cta-stack{display:flex;justify-content:center;margin-top:2rem;margin-bottom:.45rem}.article-card-template .article-card-template-container{padding:0}.article-card-template .article-card-template-container .carousel-slide{margin-bottom:0}.article-card-template .article-card-template-container .carousel-track-container .carousel-track{background-color:transparent}.article-card-template .article-card-template-container .carousel-track-container .page-nav-container{margin-top:2rem;margin-bottom:2rem}.article-card-template .article-card-template-container .carousel-slide,.article-card-template .article-card-template-container .article-card-template-item{border-radius:1.5rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame{border-radius:1.5rem 1.5rem 0 0;height:auto;width:100%;overflow:hidden;box-sizing:border-box;margin:0}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:16.07rem;width:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover;display:block}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame-placeholder{min-height:16.07rem;border-radius:1.5rem 1.5rem 0 0}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-card{margin:0;box-sizing:border-box;padding:2rem calc(var(--grid-gap) * 2);border-radius:0 0 1.5rem 1.5rem}.article-card-template .article-card-template-container .article-card-template-item-no-border-radius .article-card-template-image-frame{border-radius:0}.article-card-template .article-card-template-container .article-card-template-item-no-border-radius .article-card-template-card{border-radius:0;background-color:#fff}.article-card-template .article-card-template-container-wo-pagination .carousel-track-container .page-nav-container{display:none}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item,.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-image-frame{border-radius:0}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-image-frame img{height:17.57rem}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-image-frame-placeholder{min-height:17.57rem;border-radius:0}.article-card-template .article-card-template-carousel-no-round-corners .article-card-template-item .article-card-template-card{border-radius:0}.article-card-template .article-card-anchor:hover{box-shadow:0 0 0 .156rem #0070e0}a.article-card-template-feature-card-item{display:flex;margin:0;padding:0;text-decoration:none;width:100%}a.article-card-template-feature-card-item.article-card-anchor:hover{box-shadow:0 0 0 .156rem #0070e0}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{width:100%;margin:0;padding:0;overflow:hidden}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame img,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder img{height:17.57rem;width:100%;aspect-ratio:auto;-o-object-fit:cover;object-fit:cover;display:block}a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{background-color:#009cde}a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{margin:0;padding:1.5rem calc(2 * var(--grid-gap)) 2rem}@media only screen and (min-width: 41.0625rem){.article-card-template .article-card-template-container .article-card-template-item .article-card-template-card{padding:2rem calc(var(--grid-gap))}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame-placeholder{min-height:19.96rem}.article-card-template .article-card-template-cta-stack{display:flex;justify-content:center;margin-top:3rem}.article-card-template .article-card-template-stack{grid-template-columns:repeat(2,calc((100% - var(--grid-gap) * 1) / 2))}.article-card-template .article-card-template-stack .article-card-template-stack-item{margin-bottom:0}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-image-frame-placeholder{min-height:19.96rem}.article-card-template .article-card-template-stack .article-card-template-stack-item .article-card-template-card{padding:2rem calc(var(--grid-gap))}}@media only screen and (min-width: 64rem){.article-card-template .article-card-template-header{padding-bottom:3rem}.article-card-template .article-card-template-carousel-grid-wrapper.no-bottom-spacing-lg{padding-bottom:0}.article-card-template .article-card-template-container .carousel-track-container .page-nav-container{margin-top:2rem}.article-card-template .article-card-template-container .carousel-slide{border-radius:1.5rem;margin-bottom:0}.article-card-template .article-card-template-container .article-card-template-item{display:flex;border-radius:1.5rem;height:100%}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame{border-radius:1.5rem 1.5rem 0 0}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame-placeholder{border-radius:1.5rem 1.5rem 0 0;min-height:19.96rem}.article-card-template .article-card-template-container .article-card-template-item .article-card-template-card{border-radius:0 0 1.5rem 1.5rem}a.article-card-template-feature-card-item{display:inline-flex;flex-direction:row;height:40.9rem}a.article-card-template-feature-card-item:hover,a.article-card-template-feature-card-item:focus,a.article-card-template-feature-card-item.focus-visible{border-radius:1.5rem}a.article-card-template-feature-card-item:hover,a.article-card-template-feature-card-item:focus,a.article-card-template-feature-card-item:focus-visible{border-radius:1.5rem}a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{margin:0;width:calc(50% - var(--grid-gap) / 2);padding:2.5rem 1.5rem;border-radius:0 1.5rem 1.5rem 0}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{width:calc(50% + var(--grid-gap) / 2);border-radius:1.5rem 0 0 1.5rem}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame picture,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder picture{display:inline}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame picture img,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder picture img{height:100%}}@media only screen and (min-width: 91.875rem){.article-card-template .article-card-template-container .article-card-template-item .article-card-template-image-frame img{height:19.96rem}.article-card-template .article-card-template-cta-section{margin-top:0rem;padding-top:3rem}.article-card-template .article-card-template-stack{grid-template-columns:repeat(3,calc((100% - var(--grid-gap) * 2) / 3))}a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{padding:3rem 1.5rem;width:calc(33% + var(--grid-gap) / 2)}a.article-card-template-feature-card-item .article-card-template-feature-card-image-frame,a.article-card-template-feature-card-item .article-card-template-feature-card-image-placeholder{width:calc(67% - var(--grid-gap) / 2)}}@media only screen and (min-width: 120rem){a.article-card-template-feature-card-item .article-card-template-feature-card-editorial-item{padding:3rem}}.text-header-inner .text-header-inner-image{-o-object-fit:contain;object-fit:contain;margin:auto;margin-bottom:clamp(2rem,1.7833204930662558rem + .9244992295839755vw,2.375rem)}@supports not (font-size: clamp(2rem,1.7833204930662558rem + .9244992295839755vw,2.375rem)){.text-header-inner .text-header-inner-image{margin-bottom:min(max(2rem,1.7833204930662558rem + .9244992295839755vw),2.375rem)}}[dir=ltr] .text-header-inner .text-header-inner-image-align-start{margin-left:0}[dir=rtl] .text-header-inner .text-header-inner-image-align-start,[dir=ltr] .text-header-inner .text-header-inner-image-align-end{margin-right:0}[dir=rtl] .text-header-inner .text-header-inner-image-align-end{margin-left:0}.text-header-inner .text-header-inner-img-size-small{max-width:4.5rem;max-height:4.5rem}.text-header-inner .text-header-inner-img-size-medium{max-width:8rem;max-height:8rem}.text-header-inner .text-header-inner-img-size-large{max-width:16rem;max-height:16rem}.card-content-section-header{margin-bottom:1rem}@media screen and (min-width: 64rem){.card-content-section-header{margin-bottom:2.5rem}}.section-wrapper .card-content-section-carousel{padding:0}.section-wrapper .card-content-section-carousel:not(.carousel-disabled){margin-top:2rem;margin-bottom:3rem}.section-wrapper .card-content-section-carousel .carousel-button{display:none;height:3.5rem;width:3.5rem}@media screen and (min-width: 41.0625rem){.section-wrapper .card-content-section-carousel .carousel-button{display:inline-block}}.section-wrapper .card-content-section-carousel .carousel-button svg{height:100%;width:100%}.section-wrapper .card-content-section-carousel .carousel-track{background-color:transparent}@media screen and (max-width: 23.4375rem){.section-wrapper .card-content-section-carousel .carousel-track .card-content-section-item{height:100%}}@media screen and (min-width: 23.4375rem){.section-wrapper .card-content-section-carousel .carousel-track .card-content-section-item{height:100%}}.section-wrapper .card-content-section-carousel .carousel-slide .card-content-section-item{min-width:100%;border-radius:1.5rem}.section-wrapper .card-content-section-carousel .page-nav-container{margin-top:2rem}@media screen and (min-width: 64rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1{max-width:-webkit-max-content;max-width:-moz-max-content;max-width:max-content;display:flex;align-items:center;flex-direction:row-reverse;justify-self:center;border-radius:1.5rem}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{flex-direction:column}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1 .card-content-section-item-image{flex-grow:1;flex-basis:0;align-self:stretch}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1 .card-content-section-item-image img,.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1 .card-content-section-item-image picture{height:100%}}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{min-width:100%;justify-content:center;padding:1.5rem}@media screen and (min-width: 23.4375rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{min-width:100%;justify-content:center}}@media screen and (min-width: 41.0625rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{display:flex;align-items:center}}@media screen and (min-width: 64rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage{padding:3rem}}.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage .card-content-section-item-text{padding:0}@media screen and (min-width: 41.0625rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage .card-content-section-item-text{max-width:46.125rem}}@media screen and (min-width: 64rem){.section-wrapper .card-content-section-carousel .card-content-section-item-cards-1.noImage .card-content-section-item-text{max-width:75%}}.card-content-section-item-cards-1,.card-content-section-item-cards-2{--card-content-padding: 3rem}.card-content-section-item-cards-3{--card-content-padding: 2rem}.card-content-section-item-cards-4{--card-content-padding: 1.5rem}.card-content-section-item{display:flex;border-radius:1.5rem;flex-direction:column;overflow:hidden}.card-content-section-item.noImage.onlyCta .card-content-section-item-text{flex-grow:unset}.card-content-section-item .card-content-section-item-text{width:100%;padding:1.5rem;margin:0;display:flex;flex-direction:column}.card-content-section-item .card-content-section-item-text[\\\\:has\\\\(div.text-group-content-button-group\\\\)]{flex-grow:1}.card-content-section-item .card-content-section-item-text:has(div.text-group-content-button-group){flex-grow:1}.card-content-section-item .card-content-section-item-text[\\\\:has\\\\(div.text-group-content-button-group\\\\)] > div:nth-last-child(2){flex-grow:1}.card-content-section-item .card-content-section-item-text:has(div.text-group-content-button-group)>div:nth-last-child(2){flex-grow:1}.card-content-section-item .card-content-section-item-text[\\\\:has\\\\(div.text-group-content-button-group\\\\)] .text-group-content-button-group{flex-grow:0}.card-content-section-item .card-content-section-item-text:has(div.text-group-content-button-group) .text-group-content-button-group{flex-grow:0}@media screen and (min-width: 64rem){[dir=ltr] .card-content-section-item.card-content-section-item-cards-1 .card-content-section-item-text{padding-left:var(--card-content-padding);padding-right:4rem}[dir=rtl] .card-content-section-item.card-content-section-item-cards-1 .card-content-section-item-text{padding-right:var(--card-content-padding);padding-left:4rem}.card-content-section-item.card-content-section-item-cards-1 .card-content-section-item-text{padding-top:var(--card-content-padding);padding-bottom:var(--card-content-padding)}.card-content-section-item.card-content-section-item-cards-2 .card-content-section-item-text,.card-content-section-item.card-content-section-item-cards-3 .card-content-section-item-text,.card-content-section-item.card-content-section-item-cards-4 .card-content-section-item-text{padding:var(--card-content-padding)}}.card-content-section-item .card-content-section-item-image{height:auto;overflow:hidden;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}.card-content-section-item .card-content-section-item-image img{width:100%;aspect-ratio:4 / 3;-o-object-fit:cover;object-fit:cover;display:block}@media screen and (min-width: 64rem){.card-content-section-item .card-content-section-item-image{min-width:50%!important;width:100%}}.card-content-section-item.noImage.onlyCta{justify-content:center}.card-content-section-item.card-content-section-item-card-style-flushed{overflow:unset}@media screen and (min-width: 64rem){.card-content-section-item.card-content-section-item-card-style-flushed{height:100%;display:flex;flex-direction:column;gap:0}}.card-content-section-item.card-content-section-item-card-style-flushed .card-content-section-item-image{border-radius:1.3rem 1.3rem 0 0}@media screen and (min-width: 64rem){.card-content-section-item.card-content-section-item-card-style-flushed .card-content-section-item-image img,.card-content-section-item.card-content-section-item-card-style-flushed .card-content-section-item-image picture{height:100%}}.card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{height:100%}@media screen and (min-width: 64rem){[dir=ltr] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-top-right-radius:1.3rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-top-left-radius:1.3rem}[dir=ltr] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-bottom-right-radius:1.3rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-bottom-left-radius:1.3rem}.card-content-section-item.card-content-section-item-card-style-flushed.card-content-section-item-cards-1 .card-content-section-item-image{border-radius:0}}.card-content-section-item.card-content-section-item-card-style-clear{background-color:transparent!important;overflow:unset}[dir=ltr] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-left:1rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-right:1rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-left:0}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-text{padding-right:0}}@media screen and (min-width: 64rem){[dir=ltr] .card-content-section-item.card-content-section-item-card-style-clear.card-content-section-item-cards-1 .card-content-section-item-text{padding-left:0;padding-right:4rem}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-clear.card-content-section-item-cards-1 .card-content-section-item-text{padding-right:0;padding-left:4rem}}.card-content-section-item.card-content-section-item-card-style-clear .card-content-section-item-image{border-radius:1.3rem}.card-content-section-item.card-content-section-item-card-style-normal .card-content-section-item-image{padding:1.5rem;padding-bottom:0}@media screen and (min-width: 64rem){.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1{height:100%;display:flex}[dir=ltr] .card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1 .card-content-section-item-image{padding-left:0}[dir=rtl] .card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1 .card-content-section-item-image{padding-right:0}.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-1 .card-content-section-item-image{padding:var(--card-content-padding)}.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-2 .card-content-section-item-image,.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-3 .card-content-section-item-image,.card-content-section-item.card-content-section-item-card-style-normal.card-content-section-item-cards-4 .card-content-section-item-image{padding:var(--card-content-padding);padding-bottom:0}}.card-content-section-item.card-content-section-item-card-style-normal .card-content-section-item-image img,.card-content-section-item.card-content-section-item-card-style-normal .card-content-section-item-image picture{border-radius:1rem}@media screen and (max-width: 41rem){.card-content-carousel-section .card-content-section-carousel-slides-per-view-4:not(.carousel-disabled),.card-content-carousel-section .card-content-section-carousel-slides-per-view-3:not(.carousel-disabled){margin-bottom:3.8rem}}.card-wrapped-content-section .card-content-section-header{margin-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.card-wrapped-content-section .card-content-section-header{margin-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.card-wrapped-content-section .card-wrapped-content{display:grid;grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content;max-width:100%;grid-template-columns:repeat(1,1fr);grid-gap:1rem}@media screen and (min-width: 41.0625rem){.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-1{grid-template-columns:repeat(1,1fr);grid-gap:1rem}}@media screen and (min-width: 41.0625rem){.card-wrapped-content-section .card-wrapped-content{grid-template-columns:repeat(2,1fr);grid-gap:1.5rem}.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-2{grid-template-columns:repeat(2,1fr)}.card-wrapped-content-section .card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-1{display:flex;align-items:center;flex-direction:row-reverse;justify-self:center}}@media screen and (min-width: 91.875rem){.card-wrapped-content-section .card-wrapped-content{grid-template-columns:repeat(3,1fr);grid-gap:2rem}.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-3{grid-template-columns:repeat(3,1fr)}}@media screen and (min-width: 120rem){.card-wrapped-content-section .card-wrapped-content{grid-template-columns:repeat(4,1fr);grid-gap:2rem}.card-wrapped-content-section .card-wrapped-content.card-wrapped-content-max-columns-layout-4{grid-template-columns:repeat(4,1fr)}}.card-wrapped-content-section .card-wrapped-content .card-content-section-item{height:100%}@media screen and (min-width: 41.0625rem){.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-1,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-2,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-3,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-4{--card-content-padding: 3rem}}@media screen and (min-width: 91.875rem){.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-3,.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-4{--card-content-padding: 2rem}}@media screen and (min-width: 120rem){.card-wrapped-content .card-content-section-item.card-content-section-item-wrapped-cards-4{--card-content-padding: 1.5rem}}.clickthru-section-wrapper .clickthru-image-grid-item .clickthru-image img{border-radius:.25rem;display:block;width:100%;height:auto}.clickthru-section-wrapper .clickthru-cta-grid-item a{width:100%}.cta-section .section-wrapper-graphics-bottom{--height: 45vw}@media (min-width: 120rem){.cta-section .section-wrapper-graphics-bottom{--height: 54rem}}@media (max-width: 63.9375rem){.cta-section .app-download-group-row-mobile{justify-content:start!important}}.cta-section .cta-section-item{z-index:1;margin-bottom:1rem}@media (min-width: 64rem){.cta-section .cta-section-item{margin-bottom:0}}.discovery-card{text-decoration:none;position:relative;display:block;border-radius:1rem;outline:none;z-index:0}[dir=ltr] .discovery-card .discovery-card-container{padding-left:.75rem}[dir=rtl] .discovery-card .discovery-card-container,[dir=ltr] .discovery-card .discovery-card-container{padding-right:.75rem}[dir=rtl] .discovery-card .discovery-card-container{padding-left:.75rem}.discovery-card .discovery-card-container{width:100%;height:5rem;display:flex;align-items:center;justify-content:space-between}.discovery-card .discovery-card-container .discovery-card-content{display:flex;align-items:center}[dir=ltr] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-left:1rem}[dir=rtl] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-right:1rem}[dir=ltr] .discovery-card .discovery-card-container .discovery-card-content span{padding-right:.5rem}[dir=rtl] .discovery-card .discovery-card-container .discovery-card-content span{padding-left:.5rem}.discovery-card .discovery-card-container .discovery-card-content img{width:2.5rem;height:2.5rem}.discovery-card:hover,.discovery-card:focus{outline:none;text-decoration:none}.discovery-card:hover .arrow-icon-theme>svg,.discovery-card:focus .arrow-icon-theme>svg{transform:translate(.25rem)}.discovery-card:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background-color:inherit;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;border-radius:1rem}.discovery-card:hover:before{top:-.1875rem;right:-.125rem;bottom:-.1875rem;left:-.125rem;border-radius:1rem}.discovery-card:active:before{top:0;right:0;bottom:0;left:0;border-radius:1rem}.discovery-card.focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:0;right:0;bottom:0;left:0;box-shadow:0 0 0 .375rem #1072eb29}.discovery-card:focus-visible:before{border:.1875rem solid #097ff5;border-radius:1rem;top:0;right:0;bottom:0;left:0;box-shadow:0 0 0 .375rem #1072eb29}@media (min-width: 64rem){[dir=ltr] .discovery-card .discovery-card-container{padding-left:1.5rem}[dir=rtl] .discovery-card .discovery-card-container,[dir=ltr] .discovery-card .discovery-card-container{padding-right:1.5rem}[dir=rtl] .discovery-card .discovery-card-container{padding-left:1.5rem}.discovery-card .discovery-card-container{height:5.5rem}[dir=ltr] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-left:1.5rem}[dir=rtl] .discovery-card .discovery-card-container .discovery-card-content .image-frame+span{padding-right:1.5rem}.discovery-card .discovery-card-container .discovery-card-content img{width:4rem;height:4rem}.discovery-card:focus:after,.discovery-card:focus:before{height:5.5rem}}@media (max-width: 23.375rem){.discovery-card .discovery-card-container{height:100%;padding:1.25rem 0}.discovery-card:focus:after,.discovery-card:focus:before{height:100%}}.discovery-link-section-textgroup-griditem{margin-bottom:3rem}@media (min-width: 41.0625rem){.discovery-link-section-textgroup-griditem{margin-bottom:4.5rem}}@media (min-width: 64rem){.discovery-link-section-textgroup-griditem{margin-bottom:4rem}}@media (min-width: 120rem){.discovery-link-section-textgroup-griditem{margin-bottom:4.5rem}}.accordion-item{border-bottom:2px solid #c6c6c6;padding-bottom:1.5rem;margin-bottom:1.5rem}@media (min-width: 41.0625rem){.accordion-item{padding-bottom:3rem;margin-bottom:3rem}}.accordion-item:last-child{margin-bottom:0;border-bottom:none}.accordion-item-headline-container{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start}.accordion-item-subheading{padding-top:1rem}[dir=ltr] .accordion-item .accordion-item-headline{text-align:left}[dir=rtl] .accordion-item .accordion-item-headline{text-align:right}.accordion-item .accordion-item-headline{background:none;border:none;cursor:pointer;padding:0;width:100%;color:inherit;position:relative;padding-bottom:.5rem}[dir=ltr] .accordion-item .accordion-item-headline .accordion-item-headline-text{padding-right:30px}[dir=rtl] .accordion-item .accordion-item-headline .accordion-item-headline-text{padding-left:30px}.accordion-item .accordion-item-headline.focus-visible{border:none;outline:none}.accordion-item .accordion-item-headline:focus-visible{border:none;outline:none}.accordion-item .accordion-item-headline.focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .5rem);pointer-events:none}.accordion-item .accordion-item-headline:focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .5rem);pointer-events:none}.accordion-item .accordion-item-headline .accordion-item-icon{transform-origin:center}.accordion-item .accordion-item-headline .accordion-item-icon svg{color:#9da3a6}.accordion-item p,.accordion-item ol,.accordion-item ul{padding-top:.5rem}[dir=ltr] .accordion-item ol,[dir=ltr] .accordion-item ul{padding-left:20px}[dir=rtl] .accordion-item ol,[dir=rtl] .accordion-item ul{padding-right:20px}.accordion-item ol,.accordion-item ul{margin-top:0;margin-bottom:0}@media (min-width: 41.0625rem){.accordion-item p,.accordion-item li{max-width:90%}}@media only screen and (min-width: 64rem){.accordion-item-icon{width:2.5rem;height:2.5rem}.accordion-item-icon span{width:100%;height:100%}}.accordion.blue-600-plate .accordion-item{border-color:var(--style-small-fill)}.accordion.blue-600-plate .accordion-item-icon svg{color:var(--style-icon-color)}.accordion .accordion-headline{margin:0 0 4vw}.accordion .text-group-headline{margin-bottom:2.5rem}@media (min-width: 64rem){.accordion .text-group-headline{margin-bottom:4rem}}.accordion .accordion-with-cta .accordion-item:last-child{border-bottom:2px solid #c6c6c6}.accordion-inline-cta{display:block;margin-top:1.75rem}@media (min-width: 64rem){.accordion-inline-cta{margin-top:2.75rem}}.accordion.blue-600-plate .accordion-inline-cta{border-color:var(--style-small-fill)}.grid-compact .feature-column-item-image img{width:4.5rem;height:4.5rem;margin-bottom:1rem}.grid-compact .feature-column-item-text-group,.grid-compact .feature-column-item-text-group .text-group-content-button-group{margin-bottom:0rem}@media (min-width: 41.0625rem){.grid-compact .feature-column-item-image img{margin-bottom:1.5rem}}.feature-column-item .truncated-text-group-truncate-button{margin-top:0}.feature-column-item-image img{width:6rem;height:6rem;margin-bottom:2rem}.feature-column-item-text-group{margin-bottom:1rem}.feature-column-item-text-group .text-group-content-button-group{margin-top:0;margin-bottom:1rem}@media (min-width: 41.0625rem){.feature-column-item-image{transform-origin:center;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.feature-column-item-image img{width:6rem;height:6rem;transform:translate(-10%)}}@media screen and (min-width: 64rem){.feature-column-item-image img{width:7.5rem;height:7.5rem;margin-bottom:3rem}.feature-column-item-text-group,.feature-column-item-text-group .text-group-subheading{margin-bottom:1.5rem}.feature-column-item-text-group .text-group-paragraph{margin-bottom:1.125rem}}@media screen and (min-width: 91.875rem){[dir=ltr] .feature-column-item{padding-right:2rem}[dir=rtl] .feature-column-item{padding-left:2rem}}@media screen and (min-width: 120rem){[dir=ltr] .feature-column-item{padding-right:0}[dir=rtl] .feature-column-item{padding-left:0}.feature-column-item{max-width:19.5rem}}.image-parallax-frame{position:relative;top:0;right:0;bottom:0;left:0;height:100%;width:100%;overflow:hidden;background:yellow}.image-parallax-frame-inner{width:100%;width:var(--image, 100%);position:absolute;top:0;right:0;bottom:0;left:0;transform-origin:top;will-change:transform}.image-parallax-frame-inner img{position:absolute;top:0;right:0;bottom:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.grid-compact.feature-column .feature-column-col.feature-column-start-col{margin-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid-compact.feature-column .feature-column-col.feature-column-start-col{margin-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}@media only screen and (min-width: 64rem){.grid-compact.feature-column .feature-column-col.feature-column-start-col{min-height:clamp(10rem,8.285714285714286rem + 2.6785714285714284vw,11.5rem)}@supports not (font-size: clamp(10rem,8.285714285714286rem + 2.6785714285714284vw,11.5rem)){.grid-compact.feature-column .feature-column-col.feature-column-start-col{min-height:min(max(10rem,8.285714285714286rem + 2.6785714285714284vw),11.5rem)}}}@media screen and (min-width: 91.875rem){.grid-compact.feature-column .feature-column-with-padding{padding-bottom:3.5rem}}.grid-compact.feature-column .feature-column-col .text-group p.text-group-subheading{margin-bottom:0}.feature-column{position:relative}.feature-column .feature-column-col.feature-column-start-col{margin-bottom:8vw}.feature-column .feature-column-end-col{display:none}.feature-column .feature-column-spacer{z-index:-1}.feature-column .feature-column-with-padding{padding-bottom:2rem}.feature-column.feature-column-no-graphic-shape .feature-column-col.feature-column-start-col{min-height:0}@media screen and (max-width: 64rem){.feature-column .feature-column-col .text-group p{margin-bottom:.625rem}}@media screen and (min-width: 41.0625rem){.feature-column .feature-column-end-col{display:none}}@media screen and (min-width: 64rem){.feature-column .feature-column-col.feature-column-start-col{min-height:max(10.625rem,min(16vw,20.125rem));margin-bottom:4vw}.feature-column .feature-column-no-padding{padding-bottom:0}}@media screen and (min-width: 91.875rem){.feature-column .feature-column-col.feature-column-start-col{min-height:max(10.625rem,min(14vw,20.125rem))}.feature-column .feature-column-with-padding{padding-bottom:4.5rem}.feature-column .feature-column-end-col{display:block}}@media screen and (min-width: 120rem){.feature-column .feature-column-col.feature-column-start-col{min-height:max(10.625rem,min(16vw,20.125rem))}}.feature-column.white-plate.grid .feature-graphic-section{--color-background: #ffffff}.feature-column.gold-plate.grid .feature-graphic-section{--color-background: #ffd140}.feature-column.blue-500-plate.grid .feature-graphic-section{--color-background: #0070e0}.feature-column.blue-600-plate.grid .feature-graphic-section{--color-background: #003087}.feature-column.blue-700-plate.grid .feature-graphic-section{--color-background: #001c64}.feature-column.neutral-100-plate.grid .feature-graphic-section{--color-background: #faf8f5}section>.segment-control-group-container{display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative}.segment-control-group-tabs-container{display:flex;flex-direction:row;align-items:center;background-color:#f1ede8;border-radius:6rem}.segment-control-group-tabs-container>.segment-control-group-tab,.segment-control-group-tabs-container>.segment-control-group-tab-active{white-space:nowrap;text-align:center;text-decoration:none;cursor:pointer;align-self:center;margin:.25rem;padding:.1875rem .625rem;background-color:transparent;z-index:0;position:relative}.segment-control-group-tabs-container>.segment-control-group-tab-active:before{content:\\\"\\\";position:absolute;top:0rem;right:0rem;bottom:0rem;left:0rem;background-color:#fff;z-index:-1;border-radius:5.5rem;transition:all .3s cubic-bezier(.22,1,.36,1)}.segment-control-group-tabs-container>.segment-control-group-tab-active:hover:before{top:-.0625rem;right:-.0625rem;bottom:-.0625rem;left:-.0625rem;box-shadow:0 0 .125rem #0000000a,0 .0625rem .75rem #00000014}.segment-control-group-tabs-container>.segment-control-group-tab-active:active{color:#545d68}.segment-control-group-tabs-container>.segment-control-group-tab-active:active:before{top:.0625rem;right:.0625rem;bottom:.0625rem;left:.0625rem;box-shadow:0 0 .125rem #0000000a,0 .0625rem .75rem #00000014}.segment-control-group-tabs-container>.segment-control-group-tab-active.focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;outline-offset:0}.segment-control-group-tabs-container>.segment-control-group-tab-active:focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;outline-offset:0}.segment-control-group-tabs-container>.segment-control-group-tab:before{content:\\\"\\\";position:absolute;top:.25rem;right:.25rem;bottom:.25rem;left:.25rem;z-index:-1;transition:all .3s cubic-bezier(.22,1,.36,1)}.segment-control-group-tabs-container>.segment-control-group-tab:hover:before{border-radius:5.5rem;background-color:#e6e0d9;top:0rem;right:0rem;bottom:0rem;left:0rem}.segment-control-group-tabs-container>.segment-control-group-tab:active{color:#545d68}.segment-control-group-tabs-container>.segment-control-group-tab:active:before{top:0;right:0;bottom:0;left:0}.segment-control-group-tabs-container>.segment-control-group-tab.focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;padding:.1875rem .625rem;margin:.25rem;outline-offset:0}.segment-control-group-tabs-container>.segment-control-group-tab:focus-visible{outline:.125rem solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:5.5rem;padding:.1875rem .625rem;margin:.25rem;outline-offset:0}@media only screen and (min-width: 64rem){.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible{margin:.375rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible{margin:.375rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible{padding:.375rem 1rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible{padding:.375rem 1rem}}@media only screen and (min-width: 91.875rem){.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{margin:.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{margin:.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab.focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{padding:.75rem 1.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab,.segment-control-group-tabs-container.small-container>.segment-control-group-tab,.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.segment-control-group-tabs-container.large-container>.segment-control-group-tab:focus-visible,.segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{padding:.75rem 1.5rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active:hover:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}.segment-control-group-tabs-container.large-container>.segment-control-group-tab-active:active:before,.segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}}.grid-compact.font-quantum-leap .segment-control-group-tabs-container{background-color:#f3f3f6}.grid-compact.font-quantum-leap .segment-control-group-tab:hover:before{background-color:#dbdde0}.scroll-sticky-button-container{position:fixed;bottom:1rem;right:1rem;z-index:10}.scroll-sticky-button-container button{min-width:3rem;padding:0;width:clamp(3rem,2.5145631067961167rem + 2.071197411003236vw,5rem);height:clamp(3rem,2.5145631067961167rem + 2.071197411003236vw,5rem);background-color:#e9e6e2;border-color:transparent}@supports not (font-size: clamp(3rem,2.5145631067961167rem + 2.071197411003236vw,5rem)){.scroll-sticky-button-container button{width:min(max(3rem,2.5145631067961167rem + 2.071197411003236vw),5rem);height:min(max(3rem,2.5145631067961167rem + 2.071197411003236vw),5rem)}}.scroll-sticky-button-container button span{width:52.7%;position:relative;top:3%}.scroll-sticky-button-container button span svg{width:100%;height:100%}.scroll-sticky-button-container button span svg path{color:#c6c6c6}.scroll-sticky-button-container button:hover{background-color:#e9e6e2;border-color:transparent}.scroll-sticky-button-container button:hover>span>svg>path{fill:#121661}.scroll-sticky-button-container button:active{background-color:#e9e6e2;border-color:transparent}.scroll-sticky-button-container button:active>span>svg>path{fill:#1040c1}.scroll-sticky-button-container button:focus>span>svg>path{fill:#142c8e}@media only screen and (min-width: 23.4375rem){.article-sticky-button-container{bottom:1.5rem;right:1.5rem}}@media only screen and (min-width: 41.0625rem){.article-sticky-button-container{bottom:2rem;right:2rem}}.action-card{width:100%;text-align:center;border-radius:1rem}.action-card .action-card-container{padding:1.875rem 1.5rem}.action-card .action-card-container p,.action-card .action-card-container a{display:block}.action-card .action-card-container .body-text-size-body-large{margin-bottom:.875rem}.action-card-type-link-with-divider{border-radius:0;border-top:1px solid #929496}.action-card-type-link-with-divider.blue-600-plate{border-top:1px solid #b9effc}.action-card-type-link-with-divider .action-card-container{padding:1rem;display:flex;gap:.5rem;justify-content:center;align-items:center;flex-wrap:wrap}@media (min-width: 64rem){.action-card{border-radius:1rem}.action-card .action-card-container{padding:2.375rem 1.5rem}.action-card .action-card-container p,.action-card .action-card-container a{display:inline-block}.action-card .action-card-container .body-text-size-body-large{margin-bottom:0}[dir=ltr] .action-card .action-card-container .action-card-button{padding-left:1rem}[dir=rtl] .action-card .action-card-container .action-card-button{padding-right:1rem}.action-card.action-card-type-contact-form{border-radius:0;text-align:initial;background:none}.action-card.action-card-type-contact-form .action-card-container{padding:.875rem 0}.action-card.action-card-type-contact-form .action-card-container p,.action-card.action-card-type-contact-form .action-card-container a{display:block}.action-card.action-card-type-contact-form .action-card-container .body-text-size-body-large{margin-bottom:.375rem}[dir=ltr] .action-card.action-card-type-contact-form .action-card-container .action-card-button{padding-left:0}[dir=rtl] .action-card.action-card-type-contact-form .action-card-container .action-card-button{padding-right:0}.action-card-type-link-with-divider{border-radius:0}.action-card-type-link-with-divider .action-card-container{padding:1.5rem;gap:1rem}[dir=ltr] .action-card-type-link-with-divider .action-card-container .action-card-button{padding-left:0}[dir=rtl] .action-card-type-link-with-divider .action-card-container .action-card-button{padding-right:0}}.form-iframe-wrapper .form-iframe-form-spinner{align-items:center;background-color:#fff;border-radius:1rem;display:flex;flex-direction:column;justify-content:center;position:absolute;top:0;right:0;bottom:0;left:0;z-index:10}.form-iframe-wrapper .form-iframe-form-spinner .form-iframe-loading-text{color:#001435;padding-bottom:1rem}.form-iframe-wrapper .form-iframe-form-spinner .form-iframe-spinner{animation:spin .7s linear infinite;border:.375rem solid #c9c9ca;border-radius:50%;border-top:.375rem solid #003087;height:2rem;width:2rem}.form-iframe-wrapper .form-iframe{width:100%}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.pardot-form{background-color:#fff;border-radius:1rem;margin:0 auto;padding:2rem 0 0;position:relative;width:100%}.pardot-form.bg-neutral-100{background-color:#faf8f5}.pardot-form.pardot-form-has-shadow{box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.pardot-form .pardot-form-intro-section{padding-left:2rem;padding-right:2rem}.pardot-form .pardot-form-intro-section:not(:empty){padding-bottom:1rem}@media (min-width: 64rem){.pardot-form{padding:4.5rem 0 2rem}}@media (min-width: 91.875rem){.pardot-form{padding:4.5rem 2.5rem 2rem}}@media screen and (min-width: 107.875rem){.pardot-form .pardot-form-intro-section:not(:empty){padding-bottom:1.5rem}}.contact-sales .contact-sales-heading-col .contact-sales-textgroup{margin-bottom:2rem}.contact-sales .contact-sales-form-col{border-radius:1rem}.contact-sales .contact-sales-contact-col .action-card{margin-top:2rem}@media screen and (max-width: 41rem){.contact-sales .section-wrapper-graphics-top{display:none}}@media (min-width: 64rem){.contact-sales .contact-sales-heading-col .contact-sales-textgroup{margin-bottom:3rem}.contact-sales .contact-sales-contact-col .action-card{margin:0}.contact-sales .section-wrapper-graphics-top{display:block}}@media (min-width: 91.875rem){.contact-sales .contact-sales-heading-col .contact-sales-textgroup{margin-bottom:4.875rem}}.sub-nav-container{width:100%;display:flex;align-items:center;justify-content:space-between;padding-left:1.5rem;padding-right:1.5rem}@media (min-width: 36rem){.sub-nav-container{padding-left:2.25rem;padding-right:2.25rem}}@media (min-width: 64rem){.sub-nav-container{padding-left:2rem;padding-right:2rem}}@media (min-width: 72rem){.sub-nav-container{max-width:86.875rem;margin:0 auto}}@media (min-width: 91.875rem){.sub-nav-container{padding-left:0;padding-right:0;max-width:none;margin:0}}@media (max-width: 18.75rem){[dir=ltr] .sub-nav-grid-item-overflow .sub-nav-container{margin-left:auto}[dir=rtl] .sub-nav-grid-item-overflow .sub-nav-container{margin-right:auto}.sub-nav-grid-item-overflow .sub-nav-container{padding-left:1rem;padding-right:1rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}}.nav-button{cursor:pointer;background:transparent;border:none;outline:none;z-index:0;overflow:visible}.nav-button-text{line-height:1.5rem}.nav-button-type-icon-button{position:relative}.nav-button-type-icon-button:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-icon-button:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-icon-button.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-icon-button:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-icon-button:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-icon-button.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-icon-button:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-icon-button:before{border-radius:2rem}@media (hover: hover) and (pointer: fine){.nav-button-type-icon-button:hover:before{top:0;right:0;bottom:0;left:0}}.nav-button-type-icon-button:before,.nav-button-type-icon-button:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.nav-button-type-icon-button:before{border-radius:50%}.nav-button-type-icon-button svg{display:block}.nav-button-type-icon-button.focus-visible svg path{fill:var(--component-link)}.nav-button-type-icon-button:focus-visible svg path{fill:var(--component-link)}@media (hover: hover) and (pointer: fine){.nav-button-type-icon-button:hover svg path{fill:var(--component-link)}}.nav-button-type-collapsible{position:relative;text-align:center;padding:.5rem .75rem;word-break:keep-all}.nav-button-type-collapsible:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-collapsible:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-collapsible:before{border-radius:2rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible:hover:before{top:0;right:0;bottom:0;left:0}}.nav-button-type-collapsible:before,.nav-button-type-collapsible:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.nav-button-type-collapsible[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-collapsible[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}.nav-button-type-collapsible[class$=page-active].focus-visible:before,.nav-button-type-collapsible[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible[class$=page-active]:focus-visible:before,.nav-button-type-collapsible[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}.nav-button-type-collapsible[aria-expanded=true]:not(:hover):before{border:none;background-color:#b9effc66}}@media (hover: none){.nav-button-type-collapsible[aria-expanded=true]:before{border:none;background-color:#b9effc66}}.nav-button-type-collapsible[aria-expanded=true].focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible[aria-expanded=true]:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}[dir=ltr] .nav-button-type-collapsible .chevron-down-icon{margin-left:.375rem}[dir=rtl] .nav-button-type-collapsible .chevron-down-icon{margin-right:.375rem}.nav-button-type-collapsible .chevron-down-icon{vertical-align:middle;width:1rem;height:1rem;transition:transform .2s cubic-bezier(.22,1,.36,1);will-change:transform}.nav-button-type-collapsible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible[aria-expanded=true] .chevron-down-icon{transform:rotate(180deg)}.nav-button-type-collapsible.focus-visible .nav-button-text{color:var(--component-link)}.nav-button-type-collapsible:focus-visible .nav-button-text{color:var(--component-link)}.nav-button-type-collapsible:active .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible.focus-visible .chevron-down-icon path{fill:var(--component-link)}.nav-button-type-collapsible:focus-visible .chevron-down-icon path{fill:var(--component-link)}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible:hover .nav-button-text{color:var(--component-link)}.nav-button-type-collapsible[aria-expanded=true]:not(:hover) .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible:hover .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true].focus-visible:hover .chevron-down-icon path{fill:var(--component-link)}.nav-button-type-collapsible:hover .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true]:focus-visible:hover .chevron-down-icon path{fill:var(--component-link)}}.nav-button-type-collapsible:active .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true].focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible:active .chevron-down-icon path,.nav-button-type-collapsible[aria-expanded=true]:focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible-dropdown:after{content:attr(data-text);color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;line-height:1.5rem;letter-spacing:-.02em;display:block;height:0;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}.nav-button-type-collapsible-dropdown:active .nav-button-text,.nav-button-type-collapsible-dropdown.focus-visible .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[aria-expanded=true] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.02em}.nav-button-type-collapsible-dropdown:active .nav-button-text,.nav-button-type-collapsible-dropdown:focus-visible .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[aria-expanded=true] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.02em}.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active].focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible-dropdown[class$=page-active] .nav-button-text,.nav-button-type-collapsible-dropdown[class$=page-active]:focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-collapsible-dropdown[class$=page-active]:active .nav-button-text{color:var(--style-headline-text)}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-dropdown:hover .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.02em}.nav-button-type-collapsible-dropdown[class$=page-active]:hover .nav-button-text{color:var(--component-link)}}.nav-button-type-collapsible-dropdown .chevron-down-icon{margin-top:-.125rem}.nav-button-type-collapsible-dropdown[aria-expanded=true] .chevron-down-icon{margin-top:-.15625rem}[dir=ltr] .nav-button-type-collapsible-accordion,[dir=ltr] .nav-button-type-collapsible-nav-popup{text-align:left}[dir=rtl] .nav-button-type-collapsible-accordion,[dir=rtl] .nav-button-type-collapsible-nav-popup{text-align:right}.nav-button-type-collapsible-accordion,.nav-button-type-collapsible-nav-popup{position:relative;width:100%;padding:.5rem 0;display:flex;justify-content:space-between;align-items:center}.nav-button-type-collapsible-accordion:before,.nav-button-type-collapsible-nav-popup:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-collapsible-accordion:active:before,.nav-button-type-collapsible-nav-popup:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-accordion.focus-visible:before,.nav-button-type-collapsible-nav-popup.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion:focus-visible:before,.nav-button-type-collapsible-nav-popup:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion:hover:before,.nav-button-type-collapsible-nav-popup:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-accordion.focus-visible:hover:before,.nav-button-type-collapsible-nav-popup.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion:focus-visible:hover:before,.nav-button-type-collapsible-nav-popup:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-collapsible-accordion:before,.nav-button-type-collapsible-nav-popup:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion:hover:before,.nav-button-type-collapsible-nav-popup:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-collapsible-accordion:before,.nav-button-type-collapsible-nav-popup:before,.nav-button-type-collapsible-accordion:active:before,.nav-button-type-collapsible-nav-popup:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion[aria-expanded=true]:not(:hover):before,.nav-button-type-collapsible-nav-popup[aria-expanded=true]:not(:hover):before{border:none;box-shadow:none;background-color:transparent}}@media (hover: none){.nav-button-type-collapsible-accordion[aria-expanded=true]:before,.nav-button-type-collapsible-nav-popup[aria-expanded=true]:before{border:none;box-shadow:none;background-color:transparent}}.nav-button-type-collapsible-accordion[aria-expanded=true].focus-visible:before,.nav-button-type-collapsible-nav-popup[aria-expanded=true].focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion[aria-expanded=true]:focus-visible:before,.nav-button-type-collapsible-nav-popup[aria-expanded=true]:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-accordion .nav-button-text,.nav-button-type-collapsible-nav-popup .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.nav-button-type-collapsible-accordion .chevron-down-icon,.nav-button-type-collapsible-nav-popup .chevron-down-icon{height:1.5rem;width:1.5rem}.nav-button-type-collapsible-accordion.focus-visible .nav-button-text,.nav-button-type-collapsible-nav-popup.focus-visible .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion:focus-visible .nav-button-text,.nav-button-type-collapsible-nav-popup:focus-visible .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion.focus-visible .chevron-down-icon path,.nav-button-type-collapsible-nav-popup.focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible-accordion:focus-visible .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:focus-visible .chevron-down-icon path{fill:var(--style-headline-text)}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-accordion:hover .nav-button-text,.nav-button-type-collapsible-nav-popup:hover .nav-button-text,.nav-button-type-collapsible-accordion.focus-visible:hover .nav-button-text,.nav-button-type-collapsible-nav-popup.focus-visible:hover .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion:hover .nav-button-text,.nav-button-type-collapsible-nav-popup:hover .nav-button-text,.nav-button-type-collapsible-accordion:focus-visible:hover .nav-button-text,.nav-button-type-collapsible-nav-popup:focus-visible:hover .nav-button-text{color:var(--style-headline-text)}.nav-button-type-collapsible-accordion:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:hover .chevron-down-icon path,.nav-button-type-collapsible-accordion.focus-visible:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup.focus-visible:hover .chevron-down-icon path{fill:var(--style-headline-text)}.nav-button-type-collapsible-accordion:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:hover .chevron-down-icon path,.nav-button-type-collapsible-accordion:focus-visible:hover .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:focus-visible:hover .chevron-down-icon path{fill:var(--style-headline-text)}}.nav-button-type-collapsible-accordion:active .nav-button-text,.nav-button-type-collapsible-nav-popup:active .nav-button-text{color:#003087}.nav-button-type-collapsible-accordion:active .chevron-down-icon path,.nav-button-type-collapsible-nav-popup:active .chevron-down-icon path{fill:#003087}.nav-button-type-collapsible-nav-popup{position:relative;justify-content:unset;align-items:center;width:auto}.nav-button-type-collapsible-nav-popup:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-collapsible-nav-popup:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-nav-popup.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-nav-popup:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-nav-popup:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-collapsible-nav-popup.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-collapsible-nav-popup:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-collapsible-nav-popup:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-collapsible-nav-popup:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-collapsible-nav-popup:before,.nav-button-type-collapsible-nav-popup:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}@media (hover: hover) and (pointer: fine){[dir=ltr] .nav-button-type-collapsible-nav-popup:hover:before{right:-.25rem}[dir=rtl] .nav-button-type-collapsible-nav-popup:hover:before{left:-.25rem}}[dir=ltr] .nav-button-type-collapsible-nav-popup:before,[dir=ltr] .nav-button-type-collapsible-nav-popup:active:before{right:-.125rem}[dir=rtl] .nav-button-type-collapsible-nav-popup:before,[dir=rtl] .nav-button-type-collapsible-nav-popup:active:before{left:-.125rem}.nav-button-type-collapsible-nav-popup[aria-expanded=true]:before{display:none}[dir=ltr] .nav-button-type-collapsible-nav-popup .chevron-down-icon{margin-left:.5rem;margin-right:.375rem}[dir=rtl] .nav-button-type-collapsible-nav-popup .chevron-down-icon{margin-right:.5rem;margin-left:.375rem}.nav-button-type-collapsible-nav-popup .chevron-down-icon{position:relative;top:.125rem}.nav-button-type-link{display:block;text-decoration:none!important;padding:.5rem .75rem}.nav-button-type-link:active .nav-button-text,.nav-button-type-link.focus-visible .nav-button-text,.nav-button-type-link[class$=page-active] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}.nav-button-type-link:active .nav-button-text,.nav-button-type-link:focus-visible .nav-button-text,.nav-button-type-link[class$=page-active] .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}.nav-button-type-link[class$=page-active] .nav-button-text{color:var(--component-button-primary)}.nav-button-type-link.focus-visible .nav-button-text{color:var(--component-link)}.nav-button-type-link:focus-visible .nav-button-text{color:var(--component-link)}@media (hover: hover) and (pointer: fine){.nav-button-type-link:hover .nav-button-text{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em;color:var(--component-link)}}.nav-button-type-link:active .nav-button-text,.nav-button-type-link[class$=page-active].focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-link[class$=page-active]:focus-visible .nav-button-text{color:var(--component-button-primary)}.nav-button-type-link[class$=page-active]:active .nav-button-text{color:var(--style-headline-text)}.nav-button-type-link-nav-link{position:relative;text-align:center}.nav-button-type-link-nav-link:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-link-nav-link:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-nav-link.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-link-nav-link:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-nav-link.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-link-nav-link:before{border-radius:2rem}@media (hover: hover) and (pointer: fine){.nav-button-type-link-nav-link:hover:before{top:0;right:0;bottom:0;left:0}}.nav-button-type-link-nav-link:before,.nav-button-type-link-nav-link:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.nav-button-type-link-nav-link[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-link-nav-link[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.nav-button-type-link-nav-link[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.nav-button-type-link-nav-link[class$=page-active].focus-visible:before,.nav-button-type-link-nav-link[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link[class$=page-active]:focus-visible:before,.nav-button-type-link-nav-link[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-nav-link:after{content:attr(data-text);color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;line-height:1.5rem;letter-spacing:-.02em;display:block;height:0;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}[dir=ltr] .nav-button-type-link-menu-link{padding-left:0;padding-right:2rem}[dir=rtl] .nav-button-type-link-menu-link{padding-right:0;padding-left:2rem}[dir=ltr] .nav-button-type-link-menu-link{text-align:left}[dir=rtl] .nav-button-type-link-menu-link{text-align:right}.nav-button-type-link-menu-link{position:relative;width:100%}.nav-button-type-link-menu-link:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-link-menu-link:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-menu-link.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-link-menu-link:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-menu-link.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-link-menu-link:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-link-menu-link:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-link-menu-link:before,.nav-button-type-link-menu-link:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}.nav-button-type-link-menu-link[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-link-menu-link[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.nav-button-type-link-menu-link[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.nav-button-type-link-menu-link[class$=page-active].focus-visible:before,.nav-button-type-link-menu-link[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link[class$=page-active]:focus-visible:before,.nav-button-type-link-menu-link[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-menu-link .arrow-right-icon{fill:var(--style-headline-text)}[dir=rtl] .nav-button-type-link-menu-link .arrow-right-icon{transform:scaleX(-1)}.nav-button-type-link-menu-link:active .nav-button-text{color:#545d68}.nav-button-type-link-menu-link:active .arrow-right-icon path{fill:#545d68}[dir=ltr] .nav-button-type-link-menu-link .nav-button-icon-arrow-right{right:0}[dir=rtl] .nav-button-type-link-menu-link .nav-button-icon-arrow-right{left:0}.nav-button-type-link-menu-link .nav-button-icon-arrow-right{position:absolute;top:0;height:100%;display:none!important}.nav-button-type-link-menu-link .nav-button-icon-arrow-right.nav-button-icon-arrow-right-visible{display:flex!important;align-items:center}[dir=ltr] .nav-button-type-link-title-link{text-align:left}[dir=rtl] .nav-button-type-link-title-link{text-align:right}.nav-button-type-link-title-link{position:relative;padding-left:0;padding-right:0;display:flex;align-items:center}.nav-button-type-link-title-link:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.nav-button-type-link-title-link:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-title-link.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.nav-button-type-link-title-link.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.nav-button-type-link-title-link:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.nav-button-type-link-title-link:before,.nav-button-type-link-title-link:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}.nav-button-type-link-title-link[class$=page-active]:before{background-color:#b9effc66}.nav-button-type-link-title-link[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.nav-button-type-link-title-link[class$=page-active].focus-visible:before,.nav-button-type-link-title-link[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link[class$=page-active]:focus-visible:before,.nav-button-type-link-title-link[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.nav-button-type-link-title-link:not(:focus):hover .arrow-icon-theme>svg{transform:translate(.25rem)}.nav-button-type-link-title-link:active .arrow-icon-theme>svg{transition:.3s cubic-bezier(.22,1,.36,1);transition-property:transform,opacity;will-change:transform,opacity;transform:translate(.25rem)}.nav-button-type-link-title-link:active .nav-button-text,.nav-button-type-link-title-link.focus-visible .nav-button-text,.nav-button-type-link-title-link[class$=page-active] .nav-button-text{letter-spacing:normal}.nav-button-type-link-title-link:active .nav-button-text,.nav-button-type-link-title-link:focus-visible .nav-button-text,.nav-button-type-link-title-link[class$=page-active] .nav-button-text{letter-spacing:normal}@media (hover: hover) and (pointer: fine){.nav-button-type-link-title-link:hover .nav-button-text{letter-spacing:normal}}.nav-button-type-link-title-link .nav-button-icon-arrow{align-self:center}[dir=ltr] .nav-button-type-link-title-link .nav-button-icon-arrow .arrow-icon{margin-left:.5rem}[dir=rtl] .nav-button-type-link-title-link .nav-button-icon-arrow .arrow-icon{margin-right:.5rem}.nav-button-type-link-title-link .nav-button-icon-arrow .arrow-icon{position:relative}@media (min-width: 64rem){.nav-button-type-collapsible-accordion{padding:.75rem 0}}[dir=ltr] .sub-nav-title{margin-right:auto}[dir=rtl] .sub-nav-title{margin-left:auto}.sub-nav-title{overflow-x:auto;margin:0;padding:.5rem 0;max-width:none;-webkit-mask-image:linear-gradient(90deg,#000 calc(100% - 1rem),#000 1rem,transparent);mask-image:linear-gradient(90deg,#000 calc(100% - 1rem),#000 1rem,transparent)}[dir=rtl] .sub-nav-title{-webkit-mask-image:linear-gradient(270deg,#000 calc(100% - 1rem),#000 1rem,transparent);mask-image:linear-gradient(270deg,#000 calc(100% - 1rem),#000 1rem,transparent)}[dir=ltr] .sub-nav-title .sub-nav-title-text{padding-right:.8rem}[dir=rtl] .sub-nav-title .sub-nav-title-text{padding-left:.8rem}.sub-nav-title .sub-nav-title-text{white-space:nowrap;overflow-x:auto;-ms-overflow-style:none;overflow-x:scroll;scrollbar-width:none}.sub-nav-title .sub-nav-title-text::-webkit-scrollbar{display:none}.sub-nav-title .sub-nav-title-icon{width:1.875rem;align-self:center;position:relative}[dir=ltr] .sub-nav-title+.sub-nav-cta-list{margin-left:.5rem}[dir=rtl] .sub-nav-title+.sub-nav-cta-list{margin-right:.5rem}.sub-nav-title-no-scrollable{flex-shrink:0;-webkit-mask-image:none;mask-image:none}[dir=rtl] .sub-nav-title-no-scrollable{-webkit-mask-image:none;mask-image:none}[dir=ltr] .sub-nav-title-no-scrollable .sub-nav-title-text,[dir=ltr] .sub-nav-title-no-scrollable .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-no-scrollable .sub-nav-title-text,[dir=rtl] .sub-nav-title-no-scrollable .nav-button-text{padding-left:0}.sub-nav-title-button,.sub-nav-title-link{-webkit-mask-image:none;mask-image:none;overflow:visible}[dir=rtl] .sub-nav-title-button,[dir=rtl] .sub-nav-title-link{-webkit-mask-image:none;mask-image:none}.sub-nav-title-button .nav-button-text,.sub-nav-title-link .nav-button-text{white-space:nowrap}[dir=ltr] .sub-nav-title-button .nav-button-text,[dir=ltr] .sub-nav-title-link .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-button .nav-button-text,[dir=rtl] .sub-nav-title-link .nav-button-text{padding-left:0}.sub-nav-title-button{max-width:-moz-available;max-width:-webkit-fill-available;max-width:fill-available}.sub-nav-title-button[aria-expanded=true]{visibility:hidden}.sub-nav-title-button .nav-button-text-wrapper{overflow-x:auto;-webkit-mask-image:linear-gradient(90deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(90deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent)}[dir=rtl] .sub-nav-title-button .nav-button-text-wrapper{-webkit-mask-image:linear-gradient(270deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent);mask-image:linear-gradient(270deg,transparent,#000 0%,#000 calc(100% - 1rem),transparent)}[dir=ltr] .sub-nav-title-button .nav-button-text-wrapper .nav-button-text{padding-right:.8rem}[dir=rtl] .sub-nav-title-button .nav-button-text-wrapper .nav-button-text{padding-left:.8rem}[dir=ltr] .sub-nav-title-button .chevron-down-icon{margin-left:-.3rem}[dir=rtl] .sub-nav-title-button .chevron-down-icon{margin-right:-.3rem}.sub-nav-title-button .chevron-down-icon{min-width:1.5rem}.sub-nav-title-popup{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:calc(100% - 2.5rem);padding:.625rem 0}[dir=ltr] .sub-nav-title-popup .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-popup .nav-button-text{padding-left:0}.sub-nav-title-popup .nav-button-text{white-space:unset}@media (max-width: 41.0625rem){.sub-nav-title-container{min-width:14px}}@media (min-width: 41.0625rem){.sub-nav-title,[dir=rtl] .sub-nav-title{-webkit-mask-image:none;mask-image:none}[dir=ltr] .sub-nav-title+.sub-nav-cta-list{margin-left:0}[dir=rtl] .sub-nav-title+.sub-nav-cta-list{margin-right:0}[dir=ltr] .sub-nav-title-text,[dir=ltr] .nav-button-text{padding-right:0}[dir=rtl] .sub-nav-title-text,[dir=rtl] .nav-button-text{padding-left:0}}@media (max-width: 18.75rem){.sub-nav-title:not(.sub-nav-title-button):not(.sub-nav-title-popup){display:none}[dir=ltr] .sub-nav-title+.sub-nav-cta-list{margin-left:0}[dir=rtl] .sub-nav-title+.sub-nav-cta-list{margin-right:0}}.divider{border-color:#e6e0d9;border-style:solid;flex-shrink:0;margin:0}.divider-orientation-vertical{align-self:stretch;border-width:0 .0625rem 0 0;height:auto}.divider-orientation-horizontal{border-width:.0625rem 0 0 0}[dir=ltr] .sub-nav-items-list{margin-left:1.5rem}[dir=rtl] .sub-nav-items-list{margin-right:1.5rem}.sub-nav-items-list{list-style:none;margin:0;padding:0;display:flex;align-items:center}.sub-nav-items-list .sub-nav-list-item{flex-shrink:0}[dir=ltr] .sub-nav-items-list .sub-nav-list-item+.sub-nav-list-item{margin-left:.5rem}[dir=rtl] .sub-nav-items-list .sub-nav-list-item+.sub-nav-list-item{margin-right:.5rem}.sub-nav-items-list .sub-nav-list-item-dropdown,.sub-nav-items-list .sub-nav-list-item-accordion{position:relative}.sub-nav-items-list .sub-nav-list-item-accordion{padding:.75rem 0}.sub-nav-items-list .sub-nav-list-item-accordion:not(:last-of-type):not(.sub-nav-list-item-accordion-open):after{content:\\\"\\\";position:absolute;top:auto;right:0;bottom:0;left:0;height:.0625rem;background-color:#e6e0d9}.sub-nav-items-list .sub-nav-list-item-accordion.sub-nav-list-item-accordion-open:before{content:\\\"\\\";position:absolute;top:0;right:-1rem;bottom:0;left:-1rem;background-color:#faf8f5;border-radius:1rem}.sub-nav-items-list .sub-nav-list-item-accordion .sub-nav-item-button{z-index:1}.sub-nav-items-list .sub-nav-item-dropdown-menu{position:absolute;top:100%;right:0;bottom:auto;left:auto;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:1rem 1.5rem;border-radius:1rem;background-color:#fff;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;display:none!important}.sub-nav-items-list .sub-nav-item-dropdown-menu.sub-nav-item-dropdown-menu-show{display:block!important}.sub-nav-items-list .sub-nav-item-dropdown-menu.sub-nav-item-dropdown-menu-accordion-panel{position:relative;width:100%;box-shadow:none;padding:0;border-radius:0;background-color:#faf8f5}.sub-nav-items-list .sub-nav-item-dropdown-menu .sub-nav-item-dropdown-menu-divider{margin:.75rem 0}[dir=ltr] .sub-nav-items-list.sub-nav-items-list-orientation-vertical{margin-left:0}[dir=rtl] .sub-nav-items-list.sub-nav-items-list-orientation-vertical{margin-right:0}.sub-nav-items-list.sub-nav-items-list-orientation-vertical{flex-direction:column;align-items:flex-start;padding:0;overflow:unset;visibility:visible}.sub-nav-items-list.sub-nav-items-list-orientation-vertical .sub-nav-list-item{width:100%}[dir=ltr] .sub-nav-items-list.sub-nav-items-list-orientation-vertical .sub-nav-list-item+.sub-nav-list-item{margin-left:0}[dir=rtl] .sub-nav-items-list.sub-nav-items-list-orientation-vertical .sub-nav-list-item+.sub-nav-list-item{margin-right:0}@media (min-width: 64rem){.sub-nav-items-list .sub-nav-list-item-accordion{padding:.5rem 0}.sub-nav-items-list-orientation-vertical .sub-nav-item-button-accordion-control{padding:.75rem 0}}[dir=ltr] .sub-nav-cta-list{margin-left:0}[dir=rtl] .sub-nav-cta-list{margin-right:0}.sub-nav-cta-list{flex-shrink:0;padding:0}.sub-nav-cta-list.sub-nav-item-hidden{flex-shrink:unset}.sub-nav-cta-list .sub-nav-cta-item{width:auto}[dir=ltr] .sub-nav-cta-list .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-left:.5rem}[dir=rtl] .sub-nav-cta-list .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-right:.5rem}.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical{margin-top:1rem}.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item,.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-item{width:100%}[dir=ltr] .sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-left:0}[dir=rtl] .sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-right:0}.sub-nav-cta-list.sub-nav-cta-list-orientation-vertical .sub-nav-cta-list-item+.sub-nav-cta-list-item{margin-top:.5rem}@media (max-width: 18.75rem){.sub-nav-cta-list{width:100%}.sub-nav-cta-list .sub-nav-cta-item{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}}.sub-nav-popup{position:absolute;top:.5rem;right:var(--grid-gap);bottom:auto;left:var(--grid-gap);margin:0;background-color:#fff;padding:1rem 1.5rem;border:.0625rem solid #e6e0d9;border-radius:1rem;display:none!important;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.sub-nav-popup.sub-nav-popup-show{display:block!important}[dir=ltr] .sub-nav-popup .sub-nav-popup-close-btn{left:auto;right:1rem}[dir=rtl] .sub-nav-popup .sub-nav-popup-close-btn{right:auto;left:1rem}.sub-nav-popup .sub-nav-popup-close-btn{position:absolute;top:1rem;bottom:auto;padding:.6rem}@media (min-width: 41.0625rem){.sub-nav-popup{top:.75rem;max-width:21.875rem}}@media (min-width: 91.875rem){[dir=ltr] .sub-nav-popup{left:calc(-1 * var(--grid-gap))}[dir=rtl] .sub-nav-popup{right:calc(-1 * var(--grid-gap))}}.sub-nav-cta-motion-wrapper{flex-shrink:0}body.hide-horizontal-scrollbar{-ms-overflow-style:none;overflow-x:hidden!important;scrollbar-width:none}body.hide-horizontal-scrollbar::-webkit-scrollbar{display:none}.sub-nav{z-index:99;overflow:visible;transition:opacity .3s linear;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.sub-nav:after{position:absolute;content:\\\"\\\";top:auto;right:0;bottom:0;left:0;height:.0625rem;background-color:#e6e0d9}.sub-nav.sub-nav-position-fixed{height:auto;position:fixed;top:0;right:0;bottom:auto;left:0}.sub-nav.sub-nav-hidden{visibility:hidden;opacity:0!important}.sub-nav.sub-nav-visible{visibility:visible;opacity:1}.sub-nav.sub-nav-position-sticky{position:-webkit-sticky;position:sticky;top:0}.sub-nav.sub-nav-unpinned{height:auto;box-shadow:none}.sub-nav.sub-nav-pinned{height:auto;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}div.sub-nav-grid-item{align-self:stretch;display:flex;align-items:center;position:relative;max-width:100%}[dir=ltr] .sub-nav-divider-vertical{margin-right:1.5rem}[dir=rtl] .sub-nav-divider-vertical{margin-left:1.5rem}[dir=ltr] .sub-nav-divider-vertical{margin-left:1rem}[dir=rtl] .sub-nav-divider-vertical{margin-right:1rem}.sub-nav-divider-horizontal{margin:.75rem 0}.sub-nav-item-hidden{visibility:hidden;overflow:hidden;opacity:0}body.stacked-content .sub-nav{box-shadow:none}@media only screen and (max-width: 41.0625rem){[dir=ltr] .sub-nav-item-hidden{margin-left:0}[dir=rtl] .sub-nav-item-hidden{margin-right:0}.sub-nav-item-hidden{flex-basis:0}.sub-nav-item-hidden.sub-nav-divider-vertical{margin:0;width:0}}@media (max-width: 18.75rem){div.sub-nav-grid-item-overflow{overflow:auto}}.subnav-sectional{--subnav-sectional-offset-top: 1.5rem;--subnav-sectional-container-padding-x: .75rem;--subnav-sectional-active-link-color: rgba(185,239,252,.4);--subnav-sectional-title-bold-font-family: \\\"PayPalOpen-Bold\\\";box-shadow:unset;background-color:unset;height:0px!important}.subnav-sectional:after{display:none}.subnav-sectional .sub-nav-grid-item{background-color:#fff;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.subnav-sectional .sub-nav-grid-item .sub-nav-container{padding-left:var(--subnav-sectional-container-padding-x);padding-right:var(--subnav-sectional-container-padding-x)}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container p.sub-nav-title{padding-left:calc(var(--subnav-sectional-container-padding-x) + 1rem)}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container p.sub-nav-title{padding-right:calc(var(--subnav-sectional-container-padding-x) + 1rem)}.subnav-sectional .sub-nav-grid-item .sub-nav-container p.sub-nav-title{min-width:17.8125rem}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-container{padding-left:calc(var(--subnav-sectional-container-padding-x) + 1rem)}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-container{padding-right:calc(var(--subnav-sectional-container-padding-x) + 1rem)}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-container{min-width:17.8125rem}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title{margin-right:unset}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title{margin-left:unset}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title{color:var(--style-headline-text)}[dir=ltr] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-popup{padding-left:unset!important}[dir=rtl] .subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title-popup{padding-right:unset!important}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title .sub-nav-title-text{font-size:1.1875rem}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-title .sub-nav-title-text strong{font-family:var(--subnav-sectional-title-bold-font-family)}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-items-list:nth-of-type(1){flex-grow:1;margin-left:0;justify-content:center;gap:clamp(0rem,-4.9rem + 5.333333333333334vw,1.5rem)}@supports not (font-size: clamp(0rem,-4.9rem + 5.333333333333334vw,1.5rem)){.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-items-list:nth-of-type(1){gap:min(max(0rem,-4.9rem + 5.333333333333334vw),1.5rem)}}.subnav-sectional .nav-button-type-link{-webkit-tap-highlight-color:transparent}.subnav-sectional .nav-button-type-link.nav-button-type-link-page-active{background-color:var(--subnav-sectional-active-link-color);border-radius:2rem}.subnav-sectional .nav-button-type-link.nav-button-type-link-page-active .nav-button-text{font-weight:400}.subnav-sectional .nav-button-type-link.nav-button-type-link-page-active:before{background-color:unset}.subnav-sectional .sub-nav-items-list-orientation-vertical .nav-button-type-link.nav-button-type-link-page-active{background-color:unset}.subnav-sectional .sub-nav-items-list-orientation-vertical .nav-button-type-link.nav-button-type-link-page-active:before{background-color:var(--subnav-sectional-active-link-color)}@media (min-width: 64rem){.subnav-sectional{top:clamp(.5rem,-.6428571428571428rem + 1.7857142857142856vw,1.5rem)!important;margin-bottom:calc(-1 * var(--subnav-sectional-offset-top))}@supports not (font-size: clamp(.5rem,-.6428571428571428rem + 1.7857142857142856vw,1.5rem)){.subnav-sectional{top:min(max(.5rem,-.6428571428571428rem + 1.7857142857142856vw),1.5rem)!important}}.subnav-sectional .sub-nav-grid-item{margin:0 var(--grid-gap);border-radius:6.25rem}.subnav-sectional .sub-nav-grid-item .sub-nav-container .sub-nav-cta-list{min-width:15.625rem;justify-content:flex-end}}@media (min-width: 91.875rem){.subnav-sectional .sub-nav-grid-item{margin:0 clamp(2rem,-30.66666666666667rem + 35.55555555555556vw,12rem)}@supports not (font-size: clamp(2rem,-30.66666666666667rem + 35.55555555555556vw,12rem)){.subnav-sectional .sub-nav-grid-item{margin:0 min(max(2rem,-30.66666666666667rem + 35.55555555555556vw),12rem)}}}@media (min-width: 120rem){.subnav-sectional .sub-nav-grid-item{margin:0 calc(2 * var(--grid-gap))}}.text-section-alignment-5-col-to-end{padding-top:clamp(12rem,-7.199999999999999rem + 30vw,28.8rem)}@supports not (font-size: clamp(12rem,-7.199999999999999rem + 30vw,28.8rem)){.text-section-alignment-5-col-to-end{padding-top:min(max(12rem,-7.199999999999999rem + 30vw),28.8rem)}}@media (min-width: 64rem){.text-section-alignment-5-col-to-end{padding-top:0}}.legal-consent{font-size:1.125rem;line-height:1.5rem;font-weight:400;color:#001435}.legal-consent .checkbox label[class*=label-text_body]{margin-bottom:.75rem;padding-bottom:0}.legal-consent .checkbox span[class*=text_body]{display:flex;align-items:center}.legal-consent-label{pointer-events:auto}.legal-consent-label a{font-weight:400}[dir=ltr] .legal-consent-supporting-text:not(a){padding-left:2.375rem}[dir=rtl] .legal-consent-supporting-text:not(a){padding-right:2.375rem}.legal-consent-supporting-text:not(a){margin:0;padding-bottom:.75rem}.legal-consent-error-text{display:flex;align-items:center;margin:0;color:#545d68;font-size:.875rem;line-height:1.25rem}[dir=ltr] .legal-consent-error-text-icon{margin-right:.25rem}[dir=rtl] .legal-consent-error-text-icon{margin-left:.25rem}.legal-consent-error-text-icon{color:#d50102}.numeric-input-hide-spin-button input::-webkit-outer-spin-button,.numeric-input-hide-spin-button input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.numeric-input-hide-spin-button input[type=number]{-moz-appearance:textfield}.form-container{width:100%;padding:2rem;border-radius:.75rem;position:relative}.form-container-input-container{width:100%;display:grid;grid-template-columns:1fr;grid-gap:.5rem;gap:.5rem}.form-container-loading-overlay{position:absolute;background-color:#fff;opacity:.9;top:0;right:0;bottom:0;left:0;z-index:1;display:flex;justify-content:center;align-items:center;border-radius:.75rem}.form-container-button-container{display:flex;justify-content:start;margin-top:2rem}.form-container-button-container button{width:100%}.form-container-button-disabled{pointer-events:none}.form-container-has-shadow{box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}.form-container-headline{margin-bottom:1.5rem}.form-container-critical-error-container{margin-bottom:1.5rem;overflow:hidden}.form-container-validation-message{margin-bottom:1.5rem}.form-container .legal-consent{margin-top:.75rem}@media (min-width: 64rem){.form-container-button-container button{width:auto}.form-container-input-container{grid-template-columns:repeat(12,1fr)}.form-container .form-input-span-6{grid-column:span 6}.form-container .form-input-span-12{grid-column:span 12}}@media (min-width: 91.875rem){.form-container{padding:4.5rem}.form-container-spinner{min-height:22rem}}.form-section .form-section-heading-col .form-section-text-group{margin-bottom:2rem}.form-section .form-section-form-col{border-radius:1rem}.form-section .form-section-form-col .form-section-submit-response-message{display:flex;justify-content:center;background-color:#fff;padding:4.5rem;border-radius:inherit;height:100%}.form-section .form-section-form-col .form-section-submit-response-message .text-group{padding:6.5rem 0}.form-section .form-section-contact-col .action-card{margin-top:2rem}.form-section.blue-700-plate .button-type-primary:hover:not(:focus):not(:active),.form-section.blue-600-plate .button-type-primary:hover:not(:focus):not(:active){color:#fff}@media screen and (max-width: 41rem){.form-section .section-wrapper-graphics-top{display:none}}@media screen and (max-width: 23.4375rem){.form-section .form-section-form-col .form-section-submit-response-message{padding:2rem}}@media (min-width: 64rem){.form-section .form-section-heading-col .form-section-text-group{margin-bottom:3rem}.form-section .form-section-contact-col .action-card{margin:0}.form-section .section-wrapper-graphics-top{display:block}}@media (min-width: 91.875rem){.form-section .form-section-heading-col .form-section-text-group{margin-bottom:4.875rem}}.feature-navigation .feature-navigation-tab{display:flex;flex-direction:row}.feature-navigation .feature-navigation-content{display:flex;flex-direction:column}.feature-navigation .feature-navigation-content .feature-navigation-column{position:relative;width:100%}.feature-navigation .feature-navigation-content .feature-navigation-column hr{position:relative;border:.0625rem solid #e6e0d9;margin:0}[dir=ltr] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{text-align:left}[dir=rtl] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{text-align:right}[dir=ltr] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{padding-left:0}[dir=rtl] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{padding-right:0}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title{position:relative;width:100%;background:none;border:none;display:flex;flex-direction:row;cursor:pointer;justify-content:space-between;padding:.75rem 0}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title.focus-visible{border:none;outline:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title:focus-visible{border:none;outline:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title.focus-visible:after{content:\\\"\\\";z-index:1;position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .75rem);pointer-events:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title:focus-visible:after{content:\\\"\\\";z-index:1;position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:.188rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + .75rem);pointer-events:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title>.feature-navigation-column-title-arrow{color:var(--style-headline-text);transition:transform .15s linear}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list{list-style:none;padding:0;margin:0}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a{width:100%;position:relative;text-decoration:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:before{content:\\\"\\\";position:absolute;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,opacity,background-color;will-change:inset,opacity,background-color}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:active:before{border:.0625rem solid #e6e0d9;box-shadow:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a.focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:focus-visible:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}@media (hover: hover) and (pointer: fine){.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:hover:before{border:.0625rem solid #e6e0d9;box-shadow:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a.focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:focus-visible:hover:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:before{border-radius:.5rem}@media (hover: hover) and (pointer: fine){.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:hover:before{top:0;right:-.75rem;bottom:0;left:-.75rem}}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:before,.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a:active:before{top:.125rem;right:-.625rem;bottom:.125rem;left:-.625rem}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:before{background-color:#b9effc66}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:active:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}@media (hover: hover) and (pointer: fine){.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:hover:before{border:.0625rem solid rgba(0,160,255,.2);background-color:transparent}}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active].focus-visible:before,.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active].focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:focus-visible:before,.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-list .feature-navigation-column-item a[class$=page-active]:focus-visible:active:before{border:.125rem solid var(--component-link);box-shadow:0 0 0 .375rem #d1e5f9e6}.feature-navigation .feature-navigation-content .feature-navigation-column.feature-navigation-column-expanded:before{content:\\\"\\\";position:absolute;top:0;right:-1rem;bottom:0;left:-1rem;background-color:#faf8f5;border-radius:1rem;z-index:0}.feature-navigation .feature-navigation-content .feature-navigation-column.feature-navigation-column-expanded .feature-navigation-column-title>.feature-navigation-column-title-arrow{transform:rotate(-180deg)}@media (min-width: 64rem){.feature-navigation .feature-navigation-content{flex-direction:row;gap:1rem}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-item.feature-navigation-column-title-cell{display:none}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title.focus-visible:after{content:unset}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title:focus-visible:after{content:unset}.feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title .feature-navigation-column-title-text{line-height:1.25}[dir=ltr] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title .arrow-icon{margin-left:1rem}[dir=rtl] .feature-navigation .feature-navigation-content .feature-navigation-column .feature-navigation-column-title .arrow-icon{margin-right:1rem}.feature-navigation .feature-navigation-content .feature-navigation-column.feature-navigation-column-expanded:before{content:none}}@media (min-width: 91.875rem){.feature-navigation{padding:2.375rem 0 4.8125rem}}@media (min-width: 120rem){.feature-navigation .feature-navigation-content{gap:1.5rem}}.media-gallery-wrapper{display:flex;flex-wrap:wrap;gap:1rem;padding-top:1.5rem}.media-gallery-wrapper .media-gallery-image{width:3rem;min-width:3rem}.media-gallery-wrapper .media-gallery-image img{width:100%;border-radius:.25rem}.feature-section-row-headline-image{width:4.5rem;height:4.5rem;margin-bottom:1rem}.feature-section-row-headline-image img{width:100%;-o-object-fit:fill;object-fit:fill;border-radius:1rem}.feature-section-row-column1,.feature-section-row-column2,.feature-section-row-column3{padding-top:1.5rem}.feature-section-row-column2{padding-bottom:1.5rem}.feature-section-row-column3 .feature-section-row-feature-image{width:15rem;height:11.25rem}.feature-section-row-column3 .feature-section-row-feature-image .image-frame img{width:100%;height:11.25rem;-o-object-fit:fill;object-fit:fill;aspect-ratio:4 / 3;border-radius:1rem}.feature-section-row-border{border-bottom:1px solid #e6e0d9}.feature-section-row-border-spacing{padding-bottom:1.5rem}.feature-section-row-no-spacing{padding-bottom:0}.feature-section-row-button-row{display:flex;flex-wrap:wrap;gap:1rem;padding-top:1.5rem}@media (min-width: 64rem){.feature-section-row-column1,.feature-section-row-column2,.feature-section-row-column3{padding:0}[dir=ltr] .feature-section-row-column1{padding-right:1.5rem}[dir=rtl] .feature-section-row-column1{padding-left:1.5rem}[dir=ltr] .feature-section-row-column2{padding-right:1.5rem}[dir=rtl] .feature-section-row-column2{padding-left:1.5rem}.feature-section-row-column2{padding-bottom:0}.feature-section-row-column3 .feature-section-row-feature-image{width:10.313rem;height:7.688rem}.feature-section-row-column3 .feature-section-row-feature-image .image-frame img{height:7.688rem}[dir=ltr] .feature-section-row-border{border-right:1px solid #e6e0d9}[dir=rtl] .feature-section-row-border{border-left:1px solid #e6e0d9}.feature-section-row-border{border-bottom:0}.feature-section-row-border-spacing{padding-bottom:0}}@media (min-width: 91.875rem){.feature-section-row-column3 .feature-section-row-feature-image{width:15rem;height:11.25rem}.feature-section-row-column3 .feature-section-row-feature-image .image-frame img{height:11.25rem}}.feature-section .disclosure-item.multi-line-text{padding:0}.feature-section .feature-section-spacer{background-color:unset}.jump-link-nav{--jump-link-nav-height: 3.125rem;--jump-link-nav-underline-height: .125rem;--jump-link-after-top-offset: .5rem;position:-webkit-sticky;position:sticky;top:0;z-index:100;overflow:hidden;background-color:#fff;min-height:var(--jump-link-nav-height);border:solid #e6e0d9;border-width:.0625rem 0 .0625rem}div.jump-link-nav-grid-item{position:relative;display:flex;padding-left:.125rem;padding-right:.125rem}.jump-link-nav-scroll-area-new-wrapper{overflow:hidden;padding-left:.5625rem;padding-right:.5625rem}.jump-link-nav-scroll-area-container{position:relative;height:100%}.jump-link-nav-scroll-area{height:100%;overflow-x:scroll;scrollbar-width:none;-ms-overflow-style:none;padding-left:.8125rem;padding-right:.8125rem;scroll-snap-type:x mandatory;scroll-padding-inline:.8125rem}.jump-link-nav-scroll-area::-webkit-scrollbar{width:0;height:0}.jump-link-nav-links-collection{height:100%}[dir=ltr] .jump-link-nav-links-collection ul{padding-left:0}[dir=rtl] .jump-link-nav-links-collection ul{padding-right:0}[dir=ltr] .jump-link-nav-links-collection ul{padding-right:.8125rem}[dir=rtl] .jump-link-nav-links-collection ul{padding-left:.8125rem}.jump-link-nav-links-collection ul{display:inline-flex;gap:clamp(.75rem,.5679611650485437rem + .7766990291262136vw,1.5rem);align-items:stretch;margin-top:0;margin-bottom:0;height:100%;list-style:none}@supports not (font-size: clamp(.75rem,.5679611650485437rem + .7766990291262136vw,1.5rem)){.jump-link-nav-links-collection ul{gap:min(max(.75rem,.5679611650485437rem + .7766990291262136vw),1.5rem)}}.jump-link-nav-links-collection li{display:flex;align-items:center;align-items:stretch;scroll-snap-align:center}.jump-link-nav-links-collection li:first-of-type{scroll-snap-align:start}.jump-link-nav-links-collection li:last-of-type{scroll-snap-align:end}a.jump-link-nav-jump-link{display:flex;justify-content:center;align-items:center;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;padding:0;margin-bottom:var(--jump-link-nav-underline-height);text-decoration:none}a.jump-link-nav-jump-link p{color:#003087}a.jump-link-nav-jump-link:after{margin-top:var(--jump-link-after-top-offset);margin-left:-.4375rem;margin-right:-.4375rem;height:calc(100% - var(--jump-link-after-top-offset) * 2)!important;width:calc(100% + .875rem)!important;border-radius:.5rem!important}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link.focus-visible{text-decoration:none;z-index:102}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link:focus-visible{text-decoration:none;z-index:102}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link.focus-visible,a.jump-link-nav-jump-link:hover{border-color:#0070e0!important}a.jump-link-nav-jump-link:focus,a.jump-link-nav-jump-link:focus-visible,a.jump-link-nav-jump-link:hover{border-color:#0070e0!important}a.jump-link-nav-jump-link:focus p,a.jump-link-nav-jump-link.focus-visible p,a.jump-link-nav-jump-link:hover p{color:#0070e0}a.jump-link-nav-jump-link:focus p,a.jump-link-nav-jump-link:focus-visible p,a.jump-link-nav-jump-link:hover p{color:#0070e0}a.jump-link-nav-jump-link:active{border-color:#001c64!important}a.jump-link-nav-jump-link:active p{color:#001c64}a.jump-link-nav-jump-link.active-link,a.jump-link-nav-jump-link:hover{border-bottom:var(--jump-link-nav-underline-height) solid #001c64;margin-bottom:0;text-decoration:none}a.jump-link-nav-jump-link.active-link{letter-spacing:-.01768em}a.jump-link-nav-jump-link:active:after{content:unset!important}[dir=ltr] .jump-link-nav-cta-group{padding-left:1.5rem}[dir=rtl] .jump-link-nav-cta-group{padding-right:1.5rem}.jump-link-nav-cta-group{display:flex;justify-content:center;align-items:center;gap:.5rem;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.jump-link-nav-cta-group-item{scroll-snap-align:end;min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content}.jump-link-nav-cta-group-item:hover,.jump-link-nav-cta-group-item:focus,.jump-link-nav-cta-group-item.focus-visible,.jump-link-nav-cta-group-item:active{z-index:102}.jump-link-nav-cta-group-item:hover,.jump-link-nav-cta-group-item:focus,.jump-link-nav-cta-group-item:focus-visible,.jump-link-nav-cta-group-item:active{z-index:102}.jump-link-nav-gradient-left{position:absolute;top:0;left:0;width:3rem;height:100%;background:linear-gradient(90deg,#fff 52%,rgba(0,0,0,0) 100%);z-index:101;display:flex;align-items:center;justify-content:start}[dir=rtl] .jump-link-nav-gradient-left{justify-content:end}.jump-link-nav-gradient-left button.scroll-button{left:-.1875rem}.jump-link-nav-gradient-right{position:absolute;top:0;right:0;width:3rem;height:100%;background:linear-gradient(270deg,#fff 52%,rgba(0,0,0,0) 100%);z-index:101;display:flex;align-items:center;justify-content:end}[dir=rtl] .jump-link-nav-gradient-right{justify-content:start}.jump-link-nav-gradient-right button.scroll-button{right:-.1875rem}.jump-link-nav button.scroll-button{position:relative;border-radius:2rem;width:2rem;height:2rem;padding:0;display:flex;align-items:center;justify-content:center}.jump-link-nav button.scroll-button path{color:#001c64}.jump-link-nav button.scroll-button:active:after{content:unset}.jump-link-nav button.scroll-button:focus path,.jump-link-nav button.scroll-button.focus-visible path,.jump-link-nav button.scroll-button:hover path{color:#0070e0}.jump-link-nav button.scroll-button:focus path,.jump-link-nav button.scroll-button:focus-visible path,.jump-link-nav button.scroll-button:hover path{color:#0070e0}.jump-link-nav button.scroll-button:after{border-radius:2rem}@media (min-width: 41.0625rem){.jump-link-nav{--jump-link-nav-height: 4.5rem;--jump-link-after-top-offset: .75rem}.jump-link-nav-gradient-left,.jump-link-nav-gradient-right{padding-bottom:.125rem}}@media (min-width: 36rem){div.jump-link-nav-grid-item{padding-left:.875rem;padding-right:.875rem}}@media (min-width: 64rem){[dir=ltr] div.jump-link-nav-grid-item{padding-left:.625rem}[dir=rtl] div.jump-link-nav-grid-item{padding-right:.625rem}[dir=ltr] div.jump-link-nav-grid-item{padding-right:2rem}[dir=rtl] div.jump-link-nav-grid-item{padding-left:2rem}}@media (min-width: 87.8125rem){[dir=ltr] div.jump-link-nav-grid-item{padding-left:calc(clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem) - 1.375rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-right:calc(clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem) - 1.375rem)}[dir=ltr] div.jump-link-nav-grid-item{padding-right:clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-left:clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem)}@supports not (font-size: clamp(2rem,-43.932692307692314rem + 52.307692307692314vw,4.125rem)){[dir=ltr] div.jump-link-nav-grid-item{padding-left:calc(min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem) - 1.375rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-right:calc(min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem) - 1.375rem)}[dir=ltr] div.jump-link-nav-grid-item{padding-right:min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem)}[dir=rtl] div.jump-link-nav-grid-item{padding-left:min(max(2rem,-43.932692307692314rem + 52.307692307692314vw),4.125rem)}}}@media (min-width: 91.875rem){[dir=ltr] div.jump-link-nav-grid-item{padding-left:0}[dir=rtl] div.jump-link-nav-grid-item,[dir=ltr] div.jump-link-nav-grid-item{padding-right:0}[dir=rtl] div.jump-link-nav-grid-item{padding-left:0}div.jump-link-nav-grid-item{margin-left:-1.375rem;margin-right:-1.375rem;background-color:unset}}.grid.grid-compact.hero.hero-layout-default.grid,.grid.grid-compact.hero.hero-layout-default-xl.grid,.grid.grid-compact.hero.hero-layout-minimal.grid,.grid.grid-compact.hero.hero-layout-featured.grid,.grid.grid-compact.hero.hero-layout-featured-minimal.grid,.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:2rem}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default.grid,.grid.grid-compact.hero.hero-layout-default-xl.grid,.grid.grid-compact.hero.hero-layout-minimal.grid,.grid.grid-compact.hero.hero-layout-featured.grid,.grid.grid-compact.hero.hero-layout-featured-minimal.grid,.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.grid.grid-compact.hero.hero-layout-default.grid,.grid.grid-compact.hero.hero-layout-default-xl.grid,.grid.grid-compact.hero.hero-layout-minimal.grid,.grid.grid-compact.hero.hero-layout-featured.grid,.grid.grid-compact.hero.hero-layout-featured-minimal.grid,.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}}.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-default-xl .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{margin-bottom:0;padding-bottom:0}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-default-xl .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem);padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-default-xl .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem);padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default .hero-media,.grid.grid-compact.hero.hero-layout-default-xl .hero-media,.grid.grid-compact.hero.hero-layout-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured .hero-media,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media{padding-top:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.grid.grid-compact.hero.hero-layout-default .hero-media,.grid.grid-compact.hero.hero-layout-default-xl .hero-media,.grid.grid-compact.hero.hero-layout-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured .hero-media,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media{padding-top:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}}.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid.grid-compact.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:26rem}.grid.grid-compact.hero.hero-layout .hero-media-container,.grid.grid-compact.hero.hero-layout-default .hero-media-container{max-height:38.75rem;max-width:38.75rem}}@media only screen and (min-width: 64rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:clamp(24rem,14.816143497757848rem + 14.349775784753364vw,28rem)}@supports not (font-size: clamp(24rem,14.816143497757848rem + 14.349775784753364vw,28rem)){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:min(max(24rem,14.816143497757848rem + 14.349775784753364vw),28rem)}}.grid.grid-compact.hero.hero-layout .hero-content,.grid.grid-compact.hero.hero-layout-default .hero-content{padding-right:var(--grid-gap)}}@media only screen and (min-width: 91.875rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:clamp(32rem,18.933333333333334rem + 14.222222222222221vw,36rem)}@supports not (font-size: clamp(32rem,18.933333333333334rem + 14.222222222222221vw,36rem)){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:min(max(32rem,18.933333333333334rem + 14.222222222222221vw),36rem)}}}@media only screen and (min-width: 120rem){.grid.grid-compact.hero.hero-layout,.grid.grid-compact.hero.hero-layout-default{min-height:40rem}}.grid.grid-compact.hero.hero-layout-default.hero-no-graphic-shapes{min-height:auto}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default.hero-no-graphic-shapes .hero-content{padding-top:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem);padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid.grid-compact.hero.hero-layout-default.hero-no-graphic-shapes .hero-content{padding-top:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem);padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}}@media only screen and (min-width: 41.0625rem) and (max-width: 63.9375rem){.grid.grid-compact.hero.hero-layout-default-xl .hero-content{padding-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.grid.grid-compact.hero.hero-layout-default-xl .hero-content{padding-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:32rem}.grid.grid-compact.hero.hero-layout-default-xl .hero-media-container{max-height:44rem;max-width:44rem}}@media only screen and (min-width: 64rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:clamp(33rem,21.520179372197312rem + 17.937219730941703vw,38rem)}@supports not (font-size: clamp(33rem,21.520179372197312rem + 17.937219730941703vw,38rem)){.grid.grid-compact.hero.hero-layout-default-xl{min-height:min(max(33rem,21.520179372197312rem + 17.937219730941703vw),38rem)}}}@media only screen and (min-width: 91.875rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:clamp(39rem,-.20000000000000284rem + 42.66666666666667vw,51rem)}@supports not (font-size: clamp(39rem,-.20000000000000284rem + 42.66666666666667vw,51rem)){.grid.grid-compact.hero.hero-layout-default-xl{min-height:min(max(39rem,-.20000000000000284rem + 42.66666666666667vw),51rem)}}}@media only screen and (min-width: 120rem){.grid.grid-compact.hero.hero-layout-default-xl{min-height:57rem}}@media only screen and (min-width: 120rem){.grid.grid-compact.hero.hero-layout-minimal{min-height:40rem}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-minimal .hero-media-container{max-height:36rem;max-width:36rem}}@media only screen and (min-width: 41.0625rem) and (max-width: 63.9375rem){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content{padding-bottom:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.grid.grid-compact.hero.hero-layout-default .hero-content,.grid.grid-compact.hero.hero-layout-minimal .hero-content{padding-bottom:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}}.grid.grid-compact.hero.hero-layout-featured .hero-content,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content{padding-bottom:0}.grid.grid-compact.hero.hero-layout-featured .hero-content .text-group-headline,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-content .text-group-headline,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-content .text-group-headline{max-width:14.5em}.grid.grid-compact.hero.hero-layout-featured .hero-media,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media{padding-top:0}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.hero.hero-layout-featured .hero-media .hero-media-frame,.grid.grid-compact.hero.hero-layout-featured-minimal .hero-media .hero-media-frame,.grid.grid-compact.hero.hero-layout-featured-quantum-leap .hero-media .hero-media-frame{margin-bottom:0}}.grid-compact.hero.default-bottom-spacing{padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.grid-compact.hero.default-bottom-spacing{padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}.hero{z-index:0;padding-bottom:clamp(4rem,4rem + 0vw,4rem)}@supports not (font-size: clamp(4rem,4rem + 0vw,4rem)){.hero{padding-bottom:min(max(4rem,4rem + 0vw),4rem)}}@media only screen and (min-width: 64rem){.hero{padding-bottom:1.5rem}}.hero-media{z-index:2}.hero-media-flushed{display:flex!important;align-items:end}.hero-content{z-index:2}.hero-content .app-download-group .app-download-group-disclaimer.disclosure{margin-top:1.5rem}@media (max-width: 41rem){.hero-content{margin-bottom:1rem}.hero-content .button-group.button-group-legal-position-bottom,.hero-content .hero-content .button-group.button-group-legal-position-top{text-align:center;justify-content:center}.hero-content .text-group{text-align:center;display:flex;flex-direction:column;align-items:center}.hero-content .button-group.button-group-legal-position-bottom,.hero-content .button-group.button-group-legal-position-top{text-align:center;align-items:center}.hero-content .app-download-group .app-download-group-phone-input-row>*{align-self:center}.hero-content .button-group-alignment-start{justify-content:center}}.grid.hero.hero-layout .text-group-subheading,.grid.hero.hero-layout-default .text-group-subheading,.grid.hero.hero-layout-default-xl .text-group-subheading,.grid.hero.hero-layout-minimal .text-group-subheading{max-width:20em}.grid.hero.hero-layout .text-group-paragraph,.grid.hero.hero-layout-default .text-group-paragraph,.grid.hero.hero-layout-default-xl .text-group-paragraph,.grid.hero.hero-layout-minimal .text-group-paragraph,.grid.hero.hero-layout .text-group-legal-text,.grid.hero.hero-layout-default .text-group-legal-text,.grid.hero.hero-layout-default-xl .text-group-legal-text,.grid.hero.hero-layout-minimal .text-group-legal-text{max-width:25em}@media only screen and (min-width: 64rem){.grid.hero.hero-layout-featured .text-group,.grid.hero.hero-layout-featured-quantum-leap .text-group{padding-bottom:2vw}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout-featured .text-group,.grid.hero.hero-layout-featured-quantum-leap .text-group{padding-bottom:0}}.grid.hero.hero-layout-featured .text-group .text-group-headline,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-headline{max-width:9.75em}.grid.hero.hero-layout-featured .text-group .text-group-subheading,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-subheading{max-width:25em}.grid.hero.hero-layout-featured .text-group .text-group-paragraph,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-paragraph{max-width:30em}.grid.hero.hero-layout-featured .text-group .text-group-legal-text,.grid.hero.hero-layout-featured-quantum-leap .text-group .text-group-legal-text{max-width:25em}@media only screen and (min-width: 64rem){.grid.hero.hero-layout-featured-minimal .text-group{padding-bottom:2vw}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout-featured-minimal .text-group{padding-bottom:0}}.grid.hero.hero-layout-featured-minimal .text-group .text-group-headline{max-width:11.5em}.grid.hero.hero-layout-featured-minimal .text-group .text-group-subheading{max-width:25em}.grid.hero.hero-layout-featured-minimal .text-group .text-group-paragraph{max-width:30em}.grid.hero.hero-layout-featured-minimal .text-group .text-group-legal-text{max-width:25em}.grid.hero.hero-layout.grid,.grid.hero.hero-layout-default.grid,.grid.hero.hero-layout-default-xl.grid,.grid.hero.hero-layout-minimal.grid{grid-row-gap:clamp(2rem,-10.53133514986376rem + 30.517711171662125vw,9rem)}@supports not (font-size: clamp(2rem,-10.53133514986376rem + 30.517711171662125vw,9rem)){.grid.hero.hero-layout.grid,.grid.hero.hero-layout-default.grid,.grid.hero.hero-layout-default-xl.grid,.grid.hero.hero-layout-minimal.grid{grid-row-gap:min(max(2rem,-10.53133514986376rem + 30.517711171662125vw),9rem)}}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content,.grid.hero.hero-layout-minimal .hero-content{padding-bottom:14vw}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content,.grid.hero.hero-layout-minimal .hero-content{padding-bottom:clamp(3.75rem,-5.64850136239782rem + 22.888283378746593vw,9rem)}@supports not (font-size: clamp(3.75rem,-5.64850136239782rem + 22.888283378746593vw,9rem)){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content,.grid.hero.hero-layout-minimal .hero-content{padding-bottom:min(max(3.75rem,-5.64850136239782rem + 22.888283378746593vw),9rem)}}}.grid.hero.hero-layout .hero-media-frame,.grid.hero.hero-layout-default .hero-media-frame,.grid.hero.hero-layout-default-xl .hero-media-frame,.grid.hero.hero-layout-minimal .hero-media-frame{aspect-ratio:3 / 4}.grid.hero.hero-layout .hero-media-frame picture,.grid.hero.hero-layout-default .hero-media-frame picture,.grid.hero.hero-layout-default-xl .hero-media-frame picture,.grid.hero.hero-layout-minimal .hero-media-frame picture{height:100%}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-frame,.grid.hero.hero-layout-default .hero-media-frame,.grid.hero.hero-layout-default-xl .hero-media-frame,.grid.hero.hero-layout-minimal .hero-media-frame{aspect-ratio:1 / 1}}.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{aspect-ratio:3 / 4}.grid.hero.hero-layout .hero-media-container picture,.grid.hero.hero-layout-default .hero-media-container picture,.grid.hero.hero-layout-default-xl .hero-media-container picture,.grid.hero.hero-layout-minimal .hero-media-container picture{height:100%}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{max-width:75vh;max-height:75vh;aspect-ratio:1 / 1}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{max-width:53rem;max-height:53rem;aspect-ratio:1 / 1}}@supports not (aspect-ratio: auto){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{padding-top:133%;height:0;position:relative;overflow:hidden;width:100%}.grid.hero.hero-layout .hero-media-container picture,.grid.hero.hero-layout-default .hero-media-container picture,.grid.hero.hero-layout-default-xl .hero-media-container picture,.grid.hero.hero-layout-minimal .hero-media-container picture{padding-top:133.3%;height:100%;overflow:hidden}.grid.hero.hero-layout .hero-media-container img,.grid.hero.hero-layout-default .hero-media-container img,.grid.hero.hero-layout-default-xl .hero-media-container img,.grid.hero.hero-layout-minimal .hero-media-container img{top:0;right:0;bottom:0;left:0;position:absolute;height:auto}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-container,.grid.hero.hero-layout-default .hero-media-container,.grid.hero.hero-layout-default-xl .hero-media-container,.grid.hero.hero-layout-minimal .hero-media-container{padding-top:100%;width:100%;position:relative;overflow:hidden}}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout .hero-media-container video,.grid.hero.hero-layout-default .hero-media-container video,.grid.hero.hero-layout-default-xl .hero-media-container video,.grid.hero.hero-layout-minimal .hero-media-container video{height:auto}}.grid.hero.hero-layout .hero-media-frame,.grid.hero.hero-layout-default .hero-media-frame,.grid.hero.hero-layout-default-xl .hero-media-frame,.grid.hero.hero-layout-minimal .hero-media-frame{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:30rem}}@media only screen and (min-width: 64rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:clamp(34rem,29.408071748878925rem + 7.174887892376682vw,36rem)}@supports not (font-size: clamp(34rem,29.408071748878925rem + 7.174887892376682vw,36rem)){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:min(max(34rem,29.408071748878925rem + 7.174887892376682vw),36rem)}}}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:clamp(42rem,28.933333333333334rem + 14.222222222222221vw,46rem)}@supports not (font-size: clamp(42rem,28.933333333333334rem + 14.222222222222221vw,46rem)){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:min(max(42rem,28.933333333333334rem + 14.222222222222221vw),46rem)}}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout,.grid.hero.hero-layout-default,.grid.hero.hero-layout-default-xl{min-height:61rem}}.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content{padding-top:clamp(3.75rem,3.619952494061758rem + .3167062549485352vw,4rem)}@supports not (font-size: clamp(3.75rem,3.619952494061758rem + .3167062549485352vw,4rem)){.grid.hero.hero-layout .hero-content,.grid.hero.hero-layout-default .hero-content,.grid.hero.hero-layout-default-xl .hero-content{padding-top:min(max(3.75rem,3.619952494061758rem + .3167062549485352vw),4rem)}}.grid.hero.hero-layout .hero-media,.grid.hero.hero-layout-default .hero-media,.grid.hero.hero-layout-default-xl .hero-media{padding-top:clamp(0rem,-1.0375868603916614rem + 2.5268477574226154vw,2.5rem)}@supports not (font-size: clamp(0rem,-1.0375868603916614rem + 2.5268477574226154vw,2.5rem)){.grid.hero.hero-layout .hero-media,.grid.hero.hero-layout-default .hero-media,.grid.hero.hero-layout-default-xl .hero-media{padding-top:min(max(0rem,-1.0375868603916614rem + 2.5268477574226154vw),2.5rem)}}.grid.hero.hero-layout-minimal.grid{grid-row-gap:0}.grid.hero.hero-layout-minimal .hero-content{padding-top:clamp(3.75rem,2.9199305116866707rem + 2.021478205938092vw,5.75rem)}@supports not (font-size: clamp(3.75rem,2.9199305116866707rem + 2.021478205938092vw,5.75rem)){.grid.hero.hero-layout-minimal .hero-content{padding-top:min(max(3.75rem,2.9199305116866707rem + 2.021478205938092vw),5.75rem)}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout-minimal .hero-content{padding-top:clamp(5.75rem,-3.1388888888888893rem + 7.4074074074074066vw,10.75rem)}@supports not (font-size: clamp(5.75rem,-3.1388888888888893rem + 7.4074074074074066vw,10.75rem)){.grid.hero.hero-layout-minimal .hero-content{padding-top:min(max(5.75rem,-3.1388888888888893rem + 7.4074074074074066vw),10.75rem)}}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout-minimal .hero-media{padding-top:clamp(1.5rem,-11.833333333333332rem + 11.11111111111111vw,9rem)}@supports not (font-size: clamp(1.5rem,-11.833333333333332rem + 11.11111111111111vw,9rem)){.grid.hero.hero-layout-minimal .hero-media{padding-top:min(max(1.5rem,-11.833333333333332rem + 11.11111111111111vw),9rem)}}}.grid.hero.hero-layout-featured.slate-gradient-plate,.grid.hero.hero-layout-featured-minimal.slate-gradient-plate,.grid.hero.hero-layout-default.slate-gradient-plate{background:linear-gradient(203deg,#001435 38.48%,#003087 101.41%)}@media (min-width: 64rem){.grid.hero.hero-layout-featured.slate-gradient-plate,.grid.hero.hero-layout-featured-minimal.slate-gradient-plate,.grid.hero.hero-layout-default.slate-gradient-plate{background:linear-gradient(252deg,#001435 61.97%,#003087 100.47%)}}.grid.hero.hero-layout-featured,.grid.hero.hero-layout-featured-minimal,.grid.hero.hero-layout-featured-quantum-leap{min-height:100vw}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout-featured,.grid.hero.hero-layout-featured-minimal,.grid.hero.hero-layout-featured-quantum-leap{min-height:auto}}.grid.hero.hero-layout-featured.grid,.grid.hero.hero-layout-featured-minimal.grid,.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:6vw}@media only screen and (min-width: 91.875rem){.grid.hero.hero-layout-featured.grid,.grid.hero.hero-layout-featured-minimal.grid,.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:4vw}}@media only screen and (min-width: 120rem){.grid.hero.hero-layout-featured.grid,.grid.hero.hero-layout-featured-minimal.grid,.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:3vw}}.grid.hero.hero-layout-featured .hero-media-frame,.grid.hero.hero-layout-featured-minimal .hero-media-frame,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame{aspect-ratio:3 / 4}.grid.hero.hero-layout-featured .hero-media-frame picture,.grid.hero.hero-layout-featured-minimal .hero-media-frame picture,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame picture{height:100%}@media only screen and (min-width: 41.0625rem){.grid.hero.hero-layout-featured .hero-media-frame,.grid.hero.hero-layout-featured-minimal .hero-media-frame,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame{aspect-ratio:16 / 9;margin-bottom:4vw}}@media only screen and (min-width: 64rem){.grid.hero.hero-layout-featured .hero-media-frame,.grid.hero.hero-layout-featured-minimal .hero-media-frame,.grid.hero.hero-layout-featured-quantum-leap .hero-media-frame{margin-bottom:3rem}}.grid.hero.hero-layout-featured .hero-content,.grid.hero.hero-layout-featured-minimal .hero-content,.grid.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:clamp(3.75rem,3.302452316076294rem + 1.08991825613079vw,4rem)}@supports not (font-size: clamp(3.75rem,3.302452316076294rem + 1.08991825613079vw,4rem)){.grid.hero.hero-layout-featured .hero-content,.grid.hero.hero-layout-featured-minimal .hero-content,.grid.hero.hero-layout-featured-quantum-leap .hero-content{padding-top:min(max(3.75rem,3.302452316076294rem + 1.08991825613079vw),4rem)}}.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){.grid.hero.hero-layout-featured-quantum-leap.grid{grid-row-gap:min(max(3rem,-1.7999999999999998rem + 7.5vw),7.2rem)}}.grid.hero.hero-layout-featured-quantum-leap .hero-media{z-index:-100}.hero-media-container{width:100%;height:100%;position:relative;display:flex;align-items:center;justify-content:center}.hero-media-container-with-glow .video-frame-wrapper,.hero-media-container-with-glow .image-frame{box-shadow:0 -9px 80px #0058f6cc}.hero-media-container-flushed{align-items:end}.hero-media-container img,.hero-media-container video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.hero-media-container .video-frame-wrapper{position:absolute;width:100%;height:100%}.hero-image-none.hero-layout-minimal .hero-media{min-height:70vw;height:20rem}.hero-image-none.hero-layout-minimal .hero-media-container{display:none}@media only screen and (min-width: 41.0625rem){.hero-image-none.hero-layout-minimal .hero-media{min-height:35vw;height:20rem}}@media only screen and (min-width: 64rem){.hero-image-none.hero-layout-minimal .hero-media-container{display:block}}.grid.grid-compact.homepage-hero.homepage-hero-layout-default,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap{min-height:32.5vw}.grid.grid-compact.homepage-hero.homepage-hero-layout-default .homepage-hero-media,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap .homepage-hero-media{aspect-ratio:3/2}.grid.grid-compact.homepage-hero.homepage-hero-layout-default .homepage-hero-media video,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap .homepage-hero-media video{aspect-ratio:3/2}@media (min-width: 120rem){.grid.grid-compact.homepage-hero.homepage-hero-layout-default,.grid.grid-compact.homepage-hero.homepage-hero-layout-quantum-leap{min-height:39rem}}.homepage-hero{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;justify-content:center}.homepage-hero.homepage-hero-layout-minimal .homepage-hero-media{aspect-ratio:1/1;height:100%;width:100%}.homepage-hero.homepage-hero-layout-default,.homepage-hero.homepage-hero-layout-quantum-leap{min-height:36.875vw}.homepage-hero.homepage-hero-layout-default .homepage-hero-media,.homepage-hero.homepage-hero-layout-quantum-leap .homepage-hero-media{aspect-ratio:4/3;height:100%;width:100%}.homepage-hero.homepage-hero-layout-quantum-leap .segment-control-group-tabs-container a[class^=segment-control-group-tab] span{color:#001c64}.homepage-hero .homepage-segment-control-tabs{margin-bottom:1rem;max-width:100%}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;max-width:100%;overflow:auto}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{margin:.25rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{margin:.25rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab.focus-visible{padding:.375rem 1rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:hover:before,.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab:focus-visible{padding:.375rem 1rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}.homepage-hero .homepage-segment-control-tabs .segment-control-group-tabs-container.small-container>.segment-control-group-tab-active:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.homepage-hero .homepage-hero-content{display:flex;flex-direction:column;align-items:center}.homepage-hero .homepage-hero-content .text-group{text-align:center;display:flex;flex-direction:column;align-items:center}.homepage-hero .homepage-hero-content .text-group .text-group-headline{max-width:14ch}.homepage-hero .homepage-hero-content .text-group .text-group-paragraph{max-width:50ch}.homepage-hero .homepage-hero-content .button-group-alignment-start{justify-content:center}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:center;justify-content:center}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:center;align-items:center}.homepage-hero .homepage-hero-content .app-download-group .app-download-group-phone-input-row>*{align-self:center}.homepage-hero .homepage-hero-media{display:flex;margin:auto}.homepage-hero .homepage-hero-media .homepage-hero-media-media-frame{align-self:center}.homepage-hero .homepage-hero-media .homepage-hero-media-media-frame video{width:100%;height:unset}.homepage-hero .homepage-hero-graphic-section{display:none}@media (min-width: 64rem){.homepage-hero{justify-content:start}.homepage-hero.section-wrapper{grid-row-gap:0}.homepage-hero .homepage-hero-content{align-items:start}[dir=ltr] .homepage-hero .homepage-hero-content .text-group{text-align:left}[dir=rtl] .homepage-hero .homepage-hero-content .text-group{text-align:right}.homepage-hero .homepage-hero-content .text-group{display:flex;flex-direction:column;align-items:start}.homepage-hero .homepage-hero-content .button-group-alignment-start{justify-content:start}[dir=ltr] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:left}[dir=rtl] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:right}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{justify-content:start}[dir=ltr] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,[dir=ltr] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:left}[dir=rtl] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,[dir=rtl] .homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{text-align:right}.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-bottom,.homepage-hero .homepage-hero-content .button-group.button-group-legal-position-top{align-items:start}.homepage-hero .homepage-hero-content .app-download-group .app-download-group-phone-input-row>*{align-self:start}.homepage-hero .homepage-hero-media{width:100%}.homepage-hero .homepage-hero-graphic-section{display:flex}.homepage-hero .homepage-segment-control-tabs{transform:translate(-.2em)}}@media (min-width: 120rem){.homepage-hero.homepage-hero-layout-default,.homepage-hero.homepage-hero-layout-quantum-leap{min-height:44.25rem}.homepage-hero.homepage-hero-layout-minimal{min-height:calc(calc(53 / 160) * 120rem)}}.homepage-link-section{grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content}.homepage-link-section-inner{position:relative}.homepage-link-section-container{display:flex;flex-direction:column;position:relative}.homepage-link-section-container .text-group-headline{max-width:15.625rem}.homepage-link-section-container .homepage-link-section-grid-item:hover .text-group-eyebrow-text,.homepage-link-section-container .homepage-link-section-grid-item:hover .text-group-headline{color:#0070e0}.homepage-link-section-grid-item{padding-top:1rem;padding-bottom:1rem;position:relative;box-sizing:border-box}.homepage-link-section-grid-item .text-group>*+*{margin-top:1.5rem}[dir=ltr] .homepage-link-arrow-link{text-align:right}[dir=rtl] .homepage-link-arrow-link{text-align:left}.homepage-link-arrow-link{top:0;right:0;bottom:0;left:0;position:absolute;width:100%;padding-top:1.5rem}.homepage-link-section-line{grid-column-start:1;width:100vw;height:1px;border-top:1px solid #e6e0d9;margin-top:-1px}@media only screen and (max-width: 41rem){.homepage-link-section-grid-item:after{content:\\\"\\\";border-bottom:1px solid #e6e0d9;width:100vw;position:absolute;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;bottom:0}}@media only screen and (min-width: 41.0625rem){.homepage-link-section-container{flex-direction:row;flex-wrap:wrap;border-left:1px solid #e6e0d9;border-right:1px solid #e6e0d9}[dir=ltr] .homepage-link-section-container .homepage-link-section-grid-item{border-right:1px solid #e6e0d9}[dir=rtl] .homepage-link-section-container .homepage-link-section-grid-item{border-left:1px solid #e6e0d9}.homepage-link-section-container .homepage-link-section-grid-item{width:50%;border-bottom:1px solid #e6e0d9}[dir=ltr] .homepage-link-section-container .homepage-link-section-grid-item:nth-child(2n){border-right:none}[dir=rtl] .homepage-link-section-container .homepage-link-section-grid-item:nth-child(2n){border-left:none}.homepage-link-section>.homepage-link-section-grid-item{padding:1.5rem 0}.homepage-link-section-container .homepage-link-section-grid-item{padding:1rem 2rem}[dir=ltr] .homepage-link-arrow-link{padding-right:1.5rem}[dir=rtl] .homepage-link-arrow-link{padding-left:1.5rem}}@media only screen and (min-width: 41.0625rem) and (max-width: 91.8125rem){.homepage-link-section-container:before,.homepage-link-section-container:after{content:\\\"\\\";border-bottom:1px solid #e6e0d9;width:100vw;position:absolute;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;top:0}}@media only screen and (min-width: 64rem){.homepage-link-section>.homepage-link-section-grid-item{padding:2rem 0}.homepage-link-section-container .homepage-link-section-grid-item{padding:1.5rem 2rem}[dir=ltr] .homepage-link-arrow-link{padding-right:2rem}[dir=rtl] .homepage-link-arrow-link{padding-left:2rem}}@media only screen and (min-width: 91.875rem){.homepage-link-section{border-top:1px solid #e6e0d9}.homepage-link-section-header .text-group-headline{max-width:18.75rem}}[dir=ltr] .sticky-qr-badge{right:2rem}[dir=rtl] .sticky-qr-badge{left:2rem}.sticky-qr-badge{--grid-gap: clamp(1rem, .7224278312361214rem + 1.1843079200592153vw, 2rem);background:#fff;position:fixed;bottom:2rem;overflow:hidden;border-radius:1rem;width:calc(100% - 4rem);z-index:9999;box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a}@supports not (font-size: clamp(1rem,.7224278312361214rem + 1.1843079200592153vw,2rem)){.sticky-qr-badge{--grid-gap: min(max(1rem, .7224278312361214rem + 1.1843079200592153vw), 2rem)}}.sticky-qr-badge .icon-button-wrapper .icon-button-circle-inverse{fill:none}.sticky-qr-badge .sticky-qr-badge-desktop-view{display:none}.sticky-qr-badge .sticky-qr-badge-desktop-view p+p{padding-top:0}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-mobile-view{padding-left:1.5rem;padding-right:0}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-mobile-view{padding-right:1.5rem;padding-left:0}.sticky-qr-badge .sticky-qr-badge-mobile-view{padding-top:0;padding-bottom:0;display:flex;align-items:center;justify-content:space-between}.sticky-qr-badge .sticky-qr-badge-mobile-view .sticky-qr-badge-mobile-button{padding:.7rem 0 1rem}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-mobile-view .sticky-qr-badge-mobile-button .arrow-icon{margin-left:.5rem}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-mobile-view .sticky-qr-badge-mobile-button .arrow-icon{margin-right:.5rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .sticky-qr-badge{right:1rem}[dir=rtl] .sticky-qr-badge{left:1rem}.sticky-qr-badge{width:auto;bottom:1rem}.sticky-qr-badge .sticky-qr-badge-mobile-view{display:none}.sticky-qr-badge .sticky-qr-badge-desktop-view{display:flex;align-items:center;flex-direction:column;justify-content:center;padding:1.5rem 1.5rem 1rem}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-image{margin-bottom:.5rem}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{display:flex;flex-direction:column;justify-content:center;text-align:center;margin-top:.5rem}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{right:0}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{left:0}.sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{position:absolute;top:0;height:2.3rem;width:2.3rem}}@media screen and (min-width: 64rem){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + 8rem)}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + 8rem)}.sticky-qr-badge{bottom:1.5rem}}@media screen and (min-width: 91.875rem){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem))}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem))}.sticky-qr-badge{bottom:2rem}@supports not (font-size: clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem)){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem))}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem))}}.sticky-qr-badge .sticky-qr-badge-desktop-view{padding:1.5rem;flex-direction:row;justify-content:flex-start;gap:1rem}[dir=ltr] .sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{text-align:left}[dir=rtl] .sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{text-align:right}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-text{margin-top:0}.sticky-qr-badge .sticky-qr-badge-desktop-view .sticky-qr-badge-desktop-view-image{margin-bottom:0}.sticky-qr-badge .sticky-qr-badge-desktop-view .icon-button-wrapper{height:unset;width:unset}}@media screen and (min-width: 140rem){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem) + (100% - 140rem)/2)}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem) + (100% - 140rem)/2)}@supports not (font-size: clamp(8rem,-13.333333333333336rem + 17.77777777777778vw,16rem)){[dir=ltr] .sticky-qr-badge{right:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem) + (100% - 140rem)/2)}[dir=rtl] .sticky-qr-badge{left:calc(var(--grid-gap) + min(max(8rem,-13.333333333333336rem + 17.77777777777778vw),16rem) + (100% - 140rem)/2)}}}.hotspot-item{position:relative}.hotspot-section-sticky{position:-webkit-sticky;position:sticky;bottom:2.75rem}.hotspot-item .hotspot-item-button,.hotspot-section-sticky .hotspot-item-button,.hotspot-item .hotspot-section-button,.hotspot-section-sticky .hotspot-section-button{width:2rem;height:2rem;display:flex;cursor:pointer;position:inherit;padding:0;background-color:#0070e0;border-radius:1.5rem;border:none;z-index:0}.hotspot-item .hotspot-item-button .pulse,.hotspot-section-sticky .hotspot-item-button .pulse,.hotspot-item .hotspot-section-button .pulse,.hotspot-section-sticky .hotspot-section-button .pulse{position:absolute;background-color:#0070e0;border-radius:1.5rem;top:0;right:0;bottom:0;left:0;z-index:-10}.hotspot-item .hotspot-item-button.focus-visible,.hotspot-section-sticky .hotspot-item-button.focus-visible,.hotspot-item .hotspot-section-button.focus-visible,.hotspot-section-sticky .hotspot-section-button.focus-visible{border:none;outline:none}.hotspot-item .hotspot-item-button:focus-visible,.hotspot-section-sticky .hotspot-item-button:focus-visible,.hotspot-item .hotspot-section-button:focus-visible,.hotspot-section-sticky .hotspot-section-button:focus-visible{border:none;outline:none}.hotspot-item .hotspot-item-button.focus-visible:after,.hotspot-section-sticky .hotspot-item-button.focus-visible:after,.hotspot-item .hotspot-section-button.focus-visible:after,.hotspot-section-sticky .hotspot-section-button.focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:2rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + 1rem);pointer-events:none}.hotspot-item .hotspot-item-button:focus-visible:after,.hotspot-section-sticky .hotspot-item-button:focus-visible:after,.hotspot-item .hotspot-section-button:focus-visible:after,.hotspot-section-sticky .hotspot-section-button:focus-visible:after{content:\\\"\\\";position:absolute;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem;border-radius:2rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;text-indent:0rem;height:calc(100% + 1rem);pointer-events:none}@media (min-width: 64rem){.hotspot-item .hotspot-item-button,.hotspot-section-sticky .hotspot-item-button,.hotspot-item .hotspot-section-button,.hotspot-section-sticky .hotspot-section-button{z-index:2}}@media (min-width: 91.875rem){.hotspot-item .hotspot-item-button,.hotspot-section-sticky .hotspot-item-button,.hotspot-item .hotspot-section-button,.hotspot-section-sticky .hotspot-section-button{width:3rem;height:3rem}}.hotspot-item .hotspot-item-button .hotspot-item-icon,.hotspot-section-sticky .hotspot-item-button .hotspot-item-icon,.hotspot-item .hotspot-section-button .hotspot-item-icon,.hotspot-section-sticky .hotspot-section-button .hotspot-item-icon,.hotspot-item .hotspot-item-button .hotspot-section-icon,.hotspot-section-sticky .hotspot-item-button .hotspot-section-icon,.hotspot-item .hotspot-section-button .hotspot-section-icon,.hotspot-section-sticky .hotspot-section-button .hotspot-section-icon{margin:auto;width:unset;height:unset}.hotspot-item .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-item-icon svg,.hotspot-item .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-item-icon svg,.hotspot-item .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-section-icon svg,.hotspot-item .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-section-icon svg{width:clamp(1.3rem,.901063829787234rem + 1.7021276595744685vw,1.6rem);height:clamp(1.3rem,.901063829787234rem + 1.7021276595744685vw,1.6rem);transition:transform .3s cubic-bezier(.22,1,.36,1);will-change:transform;color:#fff}@supports not (font-size: clamp(1.3rem,.901063829787234rem + 1.7021276595744685vw,1.6rem)){.hotspot-item .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-item-icon svg,.hotspot-item .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-item-icon svg,.hotspot-item .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-item-button .hotspot-section-icon svg,.hotspot-item .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky .hotspot-section-button .hotspot-section-icon svg{width:min(max(1.3rem,.901063829787234rem + 1.7021276595744685vw),1.6rem);height:min(max(1.3rem,.901063829787234rem + 1.7021276595744685vw),1.6rem)}}.hotspot-item .hotspot-item-button .sr-only,.hotspot-section-sticky .hotspot-item-button .sr-only,.hotspot-item .hotspot-section-button .sr-only,.hotspot-section-sticky .hotspot-section-button .sr-only{position:absolute;width:1px;height:1px;overflow:hidden}.hotspot-item .hotspot-item-button:before,.hotspot-section-sticky .hotspot-item-button:before{content:\\\"\\\";position:absolute;width:3rem;height:3rem;top:-.5rem;right:-.5rem;bottom:-.5rem;left:-.5rem}.hotspot-item .hotspot-item-modal,.hotspot-section-sticky .hotspot-item-modal,.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{display:block;position:fixed;bottom:3rem;right:0;left:0;margin:0 1rem 1rem;height:auto;background:#ffffff;border-radius:1.5rem;box-shadow:0 0 .5rem #0000000a,0 .125rem .125rem #0000001a;padding:1.5rem 2rem;z-index:1}.hotspot-item .hotspot-item-modal .hotspot-item-button,.hotspot-section-sticky .hotspot-item-modal .hotspot-item-button,.hotspot-item .hotspot-section-modal .hotspot-item-button,.hotspot-section-sticky .hotspot-section-modal .hotspot-item-button,.hotspot-item .hotspot-item-modal .hotspot-section-button,.hotspot-section-sticky .hotspot-item-modal .hotspot-section-button,.hotspot-item .hotspot-section-modal .hotspot-section-button,.hotspot-section-sticky .hotspot-section-modal .hotspot-section-button{position:absolute;top:1.5rem;right:1rem}@media (min-width: 64rem){.hotspot-item .hotspot-item-modal,.hotspot-section-sticky .hotspot-item-modal,.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{width:19.438rem;position:absolute;bottom:-1rem;left:-16.5rem;right:auto;padding:1.5rem 2rem 3.5rem;margin:0;z-index:2}.hotspot-item .hotspot-item-modal.hotspot-item-modal-start,.hotspot-section-sticky .hotspot-item-modal.hotspot-item-modal-start,.hotspot-item .hotspot-section-modal.hotspot-item-modal-start,.hotspot-section-sticky .hotspot-section-modal.hotspot-item-modal-start,.hotspot-item .hotspot-item-modal.hotspot-section-modal-start,.hotspot-section-sticky .hotspot-item-modal.hotspot-section-modal-start,.hotspot-item .hotspot-section-modal.hotspot-section-modal-start,.hotspot-section-sticky .hotspot-section-modal.hotspot-section-modal-start{left:-1rem}}@media (min-width: 91.875rem){.hotspot-item .hotspot-item-modal,.hotspot-section-sticky .hotspot-item-modal,.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{width:26.75rem;padding:2.5rem 3rem 5.5rem;left:-22.7rem}}.hotspot-item .hotspot-section-modal,.hotspot-section-sticky .hotspot-section-modal{position:-webkit-sticky;position:sticky;margin:0}.hotspot-item.hotspot-item-open .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button{background-color:#001c64}@media (min-width: 64rem){.hotspot-item.hotspot-item-open .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button{z-index:3}}.hotspot-item.hotspot-item-open .hotspot-item-button .pulse,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button .pulse,.hotspot-item.hotspot-section-open .hotspot-item-button .pulse,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button .pulse,.hotspot-item.hotspot-item-open .hotspot-section-button .pulse,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button .pulse,.hotspot-item.hotspot-section-open .hotspot-section-button .pulse,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button .pulse{display:none}.hotspot-item.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-item.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.hotspot-item.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-item.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.hotspot-item.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-item.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.hotspot-item.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.hotspot-item.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.hotspot-section-sticky.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg{transform:rotate(135deg);transition:transform .3s cubic-bezier(.22,1,.36,1);will-change:transform}.hotspot-item.hotspot-item-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal,.hotspot-item.hotspot-section-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal,.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{display:block;animation:fade_in_show .5s;height:auto;background:#ffffff;border-radius:1.5rem;box-shadow:0 0 .5rem #0000000a,0 .125rem .125rem #0000001a;padding:1rem;z-index:1}.hotspot-item.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .text-group{width:calc(100% - 2rem)}@media (min-width: 64rem){.hotspot-item.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .text-group,.hotspot-item.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .text-group,.hotspot-item.hotspot-section-open .hotspot-section-modal .text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .text-group{width:100%}}.hotspot-item.hotspot-item-open .hotspot-item-modal .truncated-text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .truncated-text-group,.hotspot-item.hotspot-section-open .hotspot-item-modal .truncated-text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .truncated-text-group,.hotspot-item.hotspot-item-open .hotspot-section-modal .truncated-text-group,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .truncated-text-group,.hotspot-item.hotspot-section-open .hotspot-section-modal .truncated-text-group,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .truncated-text-group{--style-general-text: #001c64;--style-headline-text: #001c64}.hotspot-item.hotspot-item-open .hotspot-item-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-item-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-section-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .hotspot-item-button,.hotspot-item.hotspot-section-open .hotspot-section-modal .hotspot-item-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .hotspot-item-button,.hotspot-item.hotspot-item-open .hotspot-item-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-item-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal .hotspot-section-button,.hotspot-item.hotspot-item-open .hotspot-section-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal .hotspot-section-button,.hotspot-item.hotspot-section-open .hotspot-section-modal .hotspot-section-button,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal .hotspot-section-button{position:absolute;top:1.5rem;right:1rem}@media (min-width: 64rem){.hotspot-item.hotspot-item-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal,.hotspot-item.hotspot-section-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal,.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{animation:fadeInToLeftTop .5s;width:19.438rem;position:absolute;bottom:-1rem;left:-16.5rem;right:auto;padding:1.5rem 2rem 3.5rem;margin:0;z-index:3}.hotspot-item.hotspot-item-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-item.hotspot-section-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal.hotspot-item-modal-start,.hotspot-item.hotspot-item-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-item.hotspot-section-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal.hotspot-item-modal-start,.hotspot-item.hotspot-item-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-item.hotspot-section-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal.hotspot-section-modal-start,.hotspot-item.hotspot-item-open .hotspot-section-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal.hotspot-section-modal-start,.hotspot-item.hotspot-section-open .hotspot-section-modal.hotspot-section-modal-start,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal.hotspot-section-modal-start{left:-1rem;animation:fadeInToRightTop .5s}}@media (min-width: 91.875rem){.hotspot-item.hotspot-item-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-item-modal,.hotspot-item.hotspot-section-open .hotspot-item-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-item-modal,.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{width:26.75rem;padding:1.5rem 2rem 5.5rem;left:-22.7rem}}.hotspot-item.hotspot-item-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-item-open .hotspot-section-modal,.hotspot-item.hotspot-section-open .hotspot-section-modal,.hotspot-section-sticky.hotspot-section-open .hotspot-section-modal{position:-webkit-sticky;position:sticky;margin:0}.blue-400-alt-plate .hotspot-item .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button .pulse,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button .pulse,.blue-400-alt-plate .hotspot-item .hotspot-section-button .pulse,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button .pulse{background-color:#b9effc}.blue-400-alt-plate .hotspot-item .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button .hotspot-section-icon svg{color:#001c64}.blue-400-alt-plate .hotspot-item .hotspot-item-button.focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.focus-visible:after,.blue-400-alt-plate .hotspot-item .hotspot-section-button.focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.focus-visible:after{border-color:#b9effc}.blue-400-alt-plate .hotspot-item .hotspot-item-button:focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button:focus-visible:after,.blue-400-alt-plate .hotspot-item .hotspot-section-button:focus-visible:after,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button:focus-visible:after{border-color:#b9effc}.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-item-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-section-button,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-section-button,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-section-button{background-color:#001c64}.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-item-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-item-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-item-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-item-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-item .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg,.blue-400-alt-plate .hotspot-section-sticky .hotspot-section-button.hotspot-section-open .hotspot-section-button .hotspot-section-icon svg{color:#fff}.hotspot-section{overflow:unset}.hotspot-section .text-group{margin-bottom:1rem}.hotspot-section-image-container{position:relative}.hotspot-section-image-container .hotspot-section-imageframe{aspect-ratio:1;width:100%;display:flex;justify-content:center;align-items:center}.hotspot-section-image-container .hotspot-section-imageframe picture{height:100%}.hotspot-section-image-container .hotspot-section-imageframe picture img{height:100%}.hotspot-section-image-container .hotspot-section-hotspot-item{position:absolute;top:0;right:0;bottom:0;left:0;aspect-ratio:1;display:grid;grid-template-columns:repeat(4,1fr);grid-template-rows:repeat(4,1fr);grid-template-areas:\\\"cell-1-1 cell-1-2 cell-1-3 cell-1-4\\\" \\\"cell-2-1 cell-2-2 cell-2-3 cell-2-4\\\" \\\"cell-3-1 cell-3-2 cell-3-3 cell-3-4\\\" \\\"cell-4-1 cell-4-2 cell-4-3 cell-4-4\\\"}@media only screen and (min-width: 64rem){.hotspot-section-image-container .hotspot-section-hotspot-item{aspect-ratio:16 / 9;grid-template-columns:repeat(8,1fr);grid-template-rows:repeat(5,1fr);grid-template-areas:\\\"cell-1-1 cell-1-2 cell-1-3 cell-1-4 cell-1-5 cell-1-6 cell-1-7 cell-1-8\\\" \\\"cell-2-1 cell-2-2 cell-2-3 cell-2-4 cell-2-5 cell-2-6 cell-2-7 cell-2-8\\\" \\\"cell-3-1 cell-3-2 cell-3-3 cell-3-4 cell-3-5 cell-3-6 cell-3-7 cell-3-8\\\" \\\"cell-4-1 cell-4-2 cell-4-3 cell-4-4 cell-4-5 cell-4-6 cell-4-7 cell-4-8\\\" \\\"cell-5-1 cell-5-2 cell-5-3 cell-5-4 cell-5-5 cell-5-6 cell-5-7 cell-5-8\\\"}.hotspot-section-image-container .hotspot-section-imageframe{aspect-ratio:16 / 9}}@media screen and (min-width: 107.875rem){.hotspot-section .text-group{margin-bottom:1.5rem}}.logo-strip-section.stone-plate .logo-strip-section-image-frame a:hover:before{border:.0625rem solid #dbdde0}.logo-strip-section-container{display:flex;justify-content:center;flex-wrap:wrap}.logo-strip-section-headline{text-align:center;padding-bottom:1rem}.logo-strip-section-image-frame{max-width:11rem;margin:0 auto;outline-style:none}.logo-strip-section-image-frame img{transition:transform .5s}.logo-strip-section-image-frame a{display:block}.logo-strip-section-image-frame a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-strip-section-image-frame a:hover:before{border:.0625rem solid #e6e0d9;top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-strip-section-image-frame a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-strip-section-image-frame a.focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-strip-section-image-frame a:focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-strip-section-image-frame:hover a img{transform:scale(1.05)}.logo-strip-section-image-frame:active a img{transform:scale(.95)}@media (min-width: 41.0625rem){.logo-strip-section-headline{padding-bottom:1.5rem}}@media (min-width: 91.875rem){.logo-strip-section-headline{padding-bottom:3rem}}.grid-compact.logo-type .logo-type-image-wrap-white-plate a,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a,.grid-compact.logo-type .logo-type-img-wrap-without-link{padding:.75rem}.grid-compact.logo-type .logo-type-image-wrap-white-plate a,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a{border-radius:1rem}.grid-compact.logo-type .logo-type-image-wrap-white-plate a:after,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a:after{width:1rem;height:1rem}.grid-compact.logo-type .logo-type-content-col{margin-bottom:calc(-1 * var(--grid-gap))}.grid-compact.logo-type .logo-type-flex-container{gap:var(--grid-gap)}.grid-compact.logo-type .text-header-inner .text-group{margin-bottom:0}@media only screen and (min-width: 23.4375rem){.grid-compact.logo-type .logo-type-flex-item,.grid-compact.logo-type .logo-type-flex4-item{width:calc(100% / 2 - var(--grid-gap) + (var(--grid-gap) / 2))}}@media only screen and (min-width: 41.0625rem){.grid-compact.logo-type .logo-type-flex-item{width:calc(100% / 3 - var(--grid-gap) + (var(--grid-gap) / 3))}.grid-compact.logo-type .logo-type-flex4-item{width:calc(100% / 4 - var(--grid-gap) + (var(--grid-gap) / 4))}}@media only screen and (min-width: 64rem){.grid-compact.logo-type .logo-type-image-wrap-white-plate a:after,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a:after{width:1.5rem;height:1.5rem}.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:clamp(6.563rem,.5360941704035849rem + 9.417040358744398vw,9.188rem)}@supports not (font-size: clamp(6.563rem,.5360941704035849rem + 9.417040358744398vw,9.188rem)){.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:min(max(6.563rem,.5360941704035849rem + 9.417040358744398vw),9.188rem)}}}@media only screen and (min-width: 91.875rem){.grid-compact.logo-type .logo-type-image-wrap-white-plate a,.grid-compact.logo-type .logo-type-image-wrap-neutral-100-plate a{padding:1rem;border-radius:1.5rem}.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:clamp(9.125rem,2.1833333333333336rem + 7.555555555555555vw,11.25rem)}@supports not (font-size: clamp(9.125rem,2.1833333333333336rem + 7.555555555555555vw,11.25rem)){.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:min(max(9.125rem,2.1833333333333336rem + 7.555555555555555vw),11.25rem)}}}@media only screen and (min-width: 120rem){.grid-compact.logo-type .graphic-variant .text-header-inner{min-height:13.5rem}}.logo-type .logo-type-item{position:relative}.logo-type-flex-container{display:flex;flex-wrap:wrap}@media (min-width: 64rem){.logo-type-flex-container{gap:1.5rem}}@media (min-width: 91.875rem){.logo-type-flex-container{gap:1.875rem}}@media (min-width: 120rem){.logo-type-flex-container{gap:2rem}}@media (min-width: 64rem){.logo-type-flex-item{width:calc(100% / 3 - 1.5rem + (1.5rem / 3))}}@media (min-width: 91.875rem){.logo-type-flex-item{width:calc(25% - 1.40625rem)}}@media (min-width: 120rem){.logo-type-flex-item{width:calc(25% - 1.5rem)}}@media (min-width: 64rem){.logo-type-flex3-item{width:calc(100% / 3 - 1.5rem + (1.5rem / 3))}}@media (min-width: 91.875rem){.logo-type-flex3-item{width:calc(100% / 3 - 1.875rem + (1.875rem / 3))}}@media (min-width: 120rem){.logo-type-flex3-item{width:calc(100% / 3 - 2rem + (2rem / 3))}}.logo-type .text-group{margin-bottom:1.875rem}@media (min-width: 41.0625rem){.logo-type .text-group{margin-bottom:1.125rem}}.logo-type .text-group a{margin-bottom:0}.logo-type-image-wrap-neutral-100-plate{border-radius:1.5rem;height:100%}.logo-type-image-wrap-neutral-100-plate img{-o-object-fit:cover;object-fit:cover;box-sizing:border-box;width:7rem;aspect-ratio:4 / 3}@media (min-width: 41.0625rem){.logo-type-image-wrap-neutral-100-plate img{width:7.876rem;aspect-ratio:4 / 3}}@media (min-width: 64rem){.logo-type-image-wrap-neutral-100-plate img{width:auto;aspect-ratio:4 / 3}}.logo-type-image-wrap-neutral-100-plate a{display:block;width:100%;position:relative;padding:1.625rem .5rem;text-align:center;outline-style:none}@media (min-width: 64rem){.logo-type-image-wrap-neutral-100-plate a{padding:1.25rem}}[dir=ltr] .logo-type-image-wrap-neutral-100-plate a:after{right:.813rem}[dir=rtl] .logo-type-image-wrap-neutral-100-plate a:after{left:.813rem}.logo-type-image-wrap-neutral-100-plate a:after{content:\\\"\\\";background-image:url(https://www.paypalobjects.com/marketing/web/icons/arrow-grey.svg);width:1.063rem;height:1.063rem;position:absolute;top:.938rem;background-size:contain}[dir=rtl] .logo-type-image-wrap-neutral-100-plate a:after{transform:scaleX(-1)}@media (min-width: 23.4375rem) and (max-width: 64rem){[dir=ltr] .logo-type-image-wrap-neutral-100-plate a:after{right:.4rem}[dir=rtl] .logo-type-image-wrap-neutral-100-plate a:after{left:.4rem}.logo-type-image-wrap-neutral-100-plate a:after{top:.68rem}}@media (min-width: 64rem){.logo-type-image-wrap-neutral-100-plate a:after{width:1.75rem;height:1.75rem}}.logo-type-image-wrap-neutral-100-plate a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;border:.0625rem solid #e6e0d9;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-type-image-wrap-neutral-100-plate a:hover:before{top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-type-image-wrap-neutral-100-plate a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-type-image-wrap-neutral-100-plate a.focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-neutral-100-plate a:focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-neutral-100-plate a.logo-type-image-wrap-white-plate:before{background-color:#fff}.logo-type-image-wrap-neutral-100-plate a.logo-type-image-wrap-neutral-100-plate:before{background-color:#faf8f5}.logo-type-image-wrap-white-plate{border-radius:1.5rem;height:100%}.logo-type-image-wrap-white-plate img{-o-object-fit:cover;object-fit:cover;box-sizing:border-box;width:7rem;aspect-ratio:4 / 3}@media (min-width: 41.0625rem){.logo-type-image-wrap-white-plate img{width:7.876rem;aspect-ratio:4 / 3}}@media (min-width: 64rem){.logo-type-image-wrap-white-plate img{width:auto;aspect-ratio:4 / 3}}.logo-type-image-wrap-white-plate a{display:block;width:100%;position:relative;padding:1.625rem .5rem;text-align:center;outline-style:none}@media (min-width: 64rem){.logo-type-image-wrap-white-plate a{padding:1.25rem}}[dir=ltr] .logo-type-image-wrap-white-plate a:after{right:.813rem}[dir=rtl] .logo-type-image-wrap-white-plate a:after{left:.813rem}.logo-type-image-wrap-white-plate a:after{content:\\\"\\\";background-image:url(https://www.paypalobjects.com/marketing/web/icons/arrow-grey.svg);width:1.063rem;height:1.063rem;position:absolute;top:.938rem;background-size:contain}[dir=rtl] .logo-type-image-wrap-white-plate a:after{transform:scaleX(-1)}@media (min-width: 23.4375rem) and (max-width: 64rem){[dir=ltr] .logo-type-image-wrap-white-plate a:after{right:.4rem}[dir=rtl] .logo-type-image-wrap-white-plate a:after{left:.4rem}.logo-type-image-wrap-white-plate a:after{top:.68rem}}@media (min-width: 64rem){.logo-type-image-wrap-white-plate a:after{width:1.75rem;height:1.75rem}}.logo-type-image-wrap-white-plate a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;border:.0625rem solid #e6e0d9;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-type-image-wrap-white-plate a:hover:before{top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-type-image-wrap-white-plate a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-type-image-wrap-white-plate a.focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-white-plate a:focus-visible:before{top:0;right:0;bottom:0;left:0;border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.logo-type-image-wrap-white-plate a.logo-type-image-wrap-white-plate:before{background-color:#fff}.logo-type-image-wrap-white-plate a.logo-type-image-wrap-neutral-100-plate:before{background-color:#faf8f5}.logo-type-caption-wrap{font-size:.75rem;font-weight:400;color:#545d68;position:absolute;white-space:nowrap;left:50%;bottom:.5rem;top:auto;transform:translate(-50%);z-index:1;pointer-events:none}@media (min-width: 64rem){.logo-type-caption-wrap{top:.875rem;bottom:auto;font-size:.875rem}}.logo-type-img-wrap-without-link{display:flex;justify-content:center;align-items:center;padding:1.625rem .5rem}@media (min-width: 64rem){.logo-type-img-wrap-without-link{padding:1.25rem;border:.0625rem solid transparent}}.logo-type-img-wrap-without-link.logo-type-image-wrap-neutral-100-plate{background-color:#faf8f5;border:.0625rem solid #e6e0d9}.logo-type-img-wrap-without-link.logo-type-image-wrap-white-plate{background-color:#fff;border:.0625rem solid #e6e0d9}[dir=ltr] .nav-banner-grid-item{padding-left:1rem;padding-right:2rem}[dir=rtl] .nav-banner-grid-item{padding-right:1rem;padding-left:2rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .nav-banner-grid-item{padding-left:2rem;padding-right:3rem}[dir=rtl] .nav-banner-grid-item{padding-right:2rem;padding-left:3rem}}.nav-banner{align-items:center;justify-content:space-between;min-height:3.125rem;z-index:2000}.nav-banner.focus-visible:after,.nav-banner.focus-visible:before{border:0px}.nav-banner:focus-visible:after,.nav-banner:focus-visible:before{border:0px}.nav-banner .nav-banner-content{margin:0}.nav-banner .nav-banner-content .inline-button:hover,.nav-banner .nav-banner-content .inline-button.focus-visible{outline:none}.nav-banner .nav-banner-content .inline-button:hover,.nav-banner .nav-banner-content .inline-button:focus-visible{outline:none}[dir=ltr] .nav-banner .nav-banner-close-button{right:0}[dir=rtl] .nav-banner .nav-banner-close-button{left:0}.nav-banner .nav-banner-close-button{z-index:100;display:flex;position:absolute;outline:none;padding:.375rem .25rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .nav-banner .nav-banner-close-button{right:1.25rem}[dir=rtl] .nav-banner .nav-banner-close-button{left:1.25rem}.nav-banner .nav-banner-close-button{padding:.375rem .5rem}}.nav-banner .nav-banner-close-button svg{width:1.5rem;height:1.5rem}.nav-banner .nav-banner-close-button.focus-visible:before{width:1.5rem;content:\\\"\\\";position:absolute;border:.1875rem solid var(--component-inline-button-focus-border);border-radius:.2rem;box-shadow:0 0 0 .375rem var(--component-inline-button-focus-shadow);text-indent:0rem;height:1.5rem;pointer-events:none}.nav-banner .nav-banner-close-button:focus-visible:before{width:1.5rem;content:\\\"\\\";position:absolute;border:.1875rem solid var(--component-inline-button-focus-border);border-radius:.2rem;box-shadow:0 0 0 .375rem var(--component-inline-button-focus-shadow);text-indent:0rem;height:1.5rem;pointer-events:none}[dir=ltr] .nav-banner .nav-banner-item-paragraph{margin-right:.5rem}[dir=rtl] .nav-banner .nav-banner-item-paragraph{margin-left:.5rem}.nav-banner .nav-banner-item-paragraph{align-self:center;display:inline-block;max-width:none}.nav-banner .nav-banner-col-center{text-align:center;padding:.5rem 2rem}@media screen and (min-width: 41.0625rem){.nav-banner .nav-banner-col-center{padding:.5rem 4.25rem}}[dir=ltr] .nav-banner .nav-banner-col-start{text-align:left}[dir=rtl] .nav-banner .nav-banner-col-start{text-align:right}.nav-banner .nav-banner-col-start{padding-top:.5rem;padding-bottom:.5rem}@media screen and (min-width: 41.0625rem){[dir=ltr] .nav-banner .nav-banner-col-start{padding-left:2rem;padding-right:4.25rem}[dir=rtl] .nav-banner .nav-banner-col-start{padding-right:2rem;padding-left:4.25rem}.nav-banner .nav-banner-col-start{padding-top:.5rem;padding-bottom:.5rem}}.nav-banner .nav-banner-text{text-decoration:none;color:var(--style-general-text)}.nav-banner .nav-banner-margin{display:flex;padding:0 1rem;align-items:center}.nav-banner a.nav-banner-button-bar{text-decoration:none;width:100%;line-height:1}[dir=ltr] .nav-banner .nav-banner-button{padding-left:1.25rem;padding-right:.25rem}[dir=rtl] .nav-banner .nav-banner-button{padding-right:1.25rem;padding-left:.25rem}.nav-banner .nav-banner-button{padding-top:.75rem;padding-bottom:.75rem;background:none;border:none;cursor:pointer}@media screen and (min-width: 41.0625rem){.nav-banner .nav-banner-button{padding:.75rem}}.nav-banner .nav-banner-button>p{margin:0 0 .24rem}.nav-banner .nav-banner-button>p,.nav-banner .nav-banner-button>p span,.nav-banner .nav-banner-button>p a{line-height:1.625}.nav-banner .nav-banner-item-icon{width:unset;height:unset}.nav-banner .nav-banner-item-icon-theme-blue-500,.nav-banner .nav-banner-item-icon-theme-blue-700{color:#fff}.nav-banner .nav-banner-item-icon-theme-neutral-100{color:#0070e0}.nav-banner .inline-button.inline-button.inline-button-size-small{line-height:1;padding:.25rem 0}[dir=ltr] .nav-banner a.nav-banner-button{padding-left:0rem}[dir=rtl] .nav-banner a.nav-banner-button{padding-right:0rem}.section-wrapper .offer-card-section-header{margin-bottom:2rem}.section-wrapper .offer-card-section-carousel{padding:0;margin-bottom:3rem}.section-wrapper .offer-card-section-carousel .carousel-button{display:none;height:3.5rem;width:3.5rem}@media screen and (min-width: 41.0625rem){.section-wrapper .offer-card-section-carousel .carousel-button{display:inline-block}}.section-wrapper .offer-card-section-carousel .carousel-button svg{height:100%;width:100%}.section-wrapper .offer-card-section-carousel .carousel-track{background-color:transparent}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper{transition-delay:.3s;text-decoration:none;height:100%;display:flex;border-radius:1rem;outline:none;position:relative}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper{border-radius:1.5rem}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image{width:100%;overflow:hidden;box-sizing:border-box;border-radius:1rem 1rem 0 0;-webkit-mask-image:-webkit-radial-gradient(white,black)}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image{border-radius:1.5rem 1.5rem 0 0}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image img{overflow:hidden}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .offer-card-section-item-image img{transition:.3s cubic-bezier(.22,1,.36,1) all;transition-delay:.3s}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:after{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1rem;border:.0625rem solid transparent}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:after{border-radius:1.5rem}}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:after{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:box-shadow border}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover .offer-card-section-item-image img{scale:1.1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover .offer-card-section-item-headline{color:#0070e0}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:hover:after{box-shadow:0 0 .75rem #0000000f;border:.0625rem solid #e6e0d9}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active .offer-card-section-item-image img{scale:1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active .offer-card-section-item-headline{color:#0070e0}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:active:after{box-shadow:none}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible:after{border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible:after{border:.0625rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29;outline-style:none}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible .offer-card-section-item-headline{color:#0070e0}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible .offer-card-section-item-headline{color:#0070e0}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible .offer-card-section-item-headline{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s;transition-property:color;will-change:color}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper.focus-visible .offer-card-section-item-image img{scale:1.1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper:focus-visible .offer-card-section-item-image img{scale:1.1}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .neutral-100-plate{background:#faf8f5}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item-anchor-tag-wrapper .white-plate{background:#ffffff}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item{display:flex;flex-direction:column;overflow:hidden;position:relative;border-radius:1rem}@media screen and (min-width: 64rem){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item{border-radius:1.5rem}}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon{right:1.5rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon{left:1.5rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon{position:absolute;bottom:2rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon.arrow-icon-theme>svg{transition:none}@media (hover: hover) and (pointer: fine){.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon.arrow-icon-theme>svg{transition:.3s cubic-bezier(.22,1,.36,1);transition-delay:.3s}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon.arrow-icon-theme>span.arrow-icon-circle{transition-delay:.3s}}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .arrow-icon-position-top{top:16.375rem;bottom:auto}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-image{height:auto;overflow:hidden;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%;text-size-adjust:100%}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-image img{width:100%;aspect-ratio:4 / 3;-o-object-fit:cover;object-fit:cover;display:block}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline{display:flex;flex-grow:1;margin:2rem 1.5rem 1rem}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline-right-spacing{margin-right:4.375rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline-right-spacing{margin-left:4.375rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-headline-no-availability{margin-bottom:2rem}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-left:1.5rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-right:1.5rem}[dir=ltr] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-right:4.5rem}[dir=rtl] .section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-left:4.5rem}.section-wrapper .offer-card-section-carousel .carousel-slide .offer-card-section-item .offer-card-section-item-caption{margin-top:0;margin-bottom:2rem}.section-wrapper .offer-card-section-carousel .page-nav-container{margin-top:1.5rem}.logo-ticker-section-reduced-motion-container{display:flex;justify-content:center;flex-wrap:wrap;position:relative}.logo-ticker-section-reduced-motion-image-frame{max-width:11rem;margin:0 auto;display:inline-block;outline-style:none}.logo-ticker-section-reduced-motion-image-frame img{transform:none;transition:transform .5s}.logo-ticker-section-reduced-motion-image-frame a{margin:.1875rem 0}.logo-ticker-section-reduced-motion-image-frame a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-ticker-section-reduced-motion-image-frame a:hover:before{border:.0625rem solid #e6e0d9;top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-ticker-section-reduced-motion-image-frame a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-ticker-section-reduced-motion-image-frame a.focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section-reduced-motion-image-frame a:focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section.neutral-100-plate .logo-ticker-section-logos-grid:before{background:linear-gradient(to right,#faf8f5 22%,rgba(250,248,245,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2}.logo-ticker-section.neutral-100-plate .logo-ticker-section-logos-grid:after{background:linear-gradient(to left,#faf8f5 22%,rgba(250,248,245,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2}.logo-ticker-section-logos-grid-static[focus-within] .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid-static:focus-within .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid-static[focus-within]:before,.logo-ticker-section-logos-grid-static[focus-within]:after{display:none}.logo-ticker-section-logos-grid-static:focus-within:before,.logo-ticker-section-logos-grid-static:focus-within:after{display:none}.logo-ticker-section-logos-grid-static[focus-within] .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-50%)}.logo-ticker-section-logos-grid-static:focus-within .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-50%)}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-container .logo-ticker-section-logos-slide-container{transition:none}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-50%)}[dir=ltr] .logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide-container:first-child{left:50%}[dir=rtl] .logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide-container:first-child{right:50%}.logo-ticker-section-logos-grid-static .logo-ticker-section-logos-slide-container:first-child{position:absolute;transform:translate(-50%);z-index:1}.logo-ticker-section-logos-grid{position:relative}[dir=ltr] .logo-ticker-section-logos-grid:before{left:0}[dir=rtl] .logo-ticker-section-logos-grid:before{right:0}.logo-ticker-section-logos-grid:before{background:linear-gradient(to right,#ffffff 22%,rgba(255,255,255,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2;top:0;width:5rem}[dir=ltr] .logo-ticker-section-logos-grid:after{right:0}[dir=rtl] .logo-ticker-section-logos-grid:after{left:0}.logo-ticker-section-logos-grid:after{background:linear-gradient(to left,#ffffff 22%,rgba(255,255,255,0) 100%);content:\\\"\\\";height:100%;position:absolute;z-index:2;top:0;width:5rem}.logo-ticker-section-logos-grid[focus-within] .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid:focus-within .logo-ticker-section-logos-slide{animation:none}.logo-ticker-section-logos-grid[focus-within]:before,.logo-ticker-section-logos-grid[focus-within]:after{display:none}.logo-ticker-section-logos-grid:focus-within:before,.logo-ticker-section-logos-grid:focus-within:after{display:none}.logo-ticker-section-logos-grid[focus-within] .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(0)}.logo-ticker-section-logos-grid:focus-within .logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(0)}.logo-ticker-section-headline{text-align:center;padding-bottom:1rem;margin-bottom:calc(-1 * var(--grid-gap))}.logo-ticker-section-logos-container{white-space:nowrap;overflow:hidden;position:relative}.logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide-container{transform:translate(-2%)}.logo-ticker-section-logos-container:hover .logo-ticker-section-logos-slide{animation-play-state:paused}.logo-ticker-section-logos-slide-container{display:inline-block;transform:translate(0);transition:1s ease-out;opacity:1}.logo-ticker-section-logos-slide{display:inline-block;animation:27s ticker infinite linear;animation-delay:.2s}.logo-ticker-section-logos-slide-hidden{opacity:0;pointer-events:none}.logo-ticker-section-image-container{display:inline-block}.logo-ticker-section-image-frame{display:inline-block;max-width:11rem;outline-style:none}.logo-ticker-section-image-frame picture{border-radius:1rem}.logo-ticker-section-image-frame img{max-width:initial;width:11rem;transform:none;transition:transform .5s}.logo-ticker-section-image-frame a{margin:.1875rem 0}.logo-ticker-section-image-frame a:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;border-radius:1.5rem;z-index:-1;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,box-shadow}.logo-ticker-section-image-frame a:hover:before{border:.0625rem solid #e6e0d9;top:-.1875rem;right:-.1875rem;bottom:-.1875rem;left:-.1875rem}.logo-ticker-section-image-frame a:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}.logo-ticker-section-image-frame a.focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section-image-frame a:focus-visible:before{top:0;right:0;bottom:0;left:0;margin:3px;border:.125rem solid #097ff5;box-shadow:0 0 0 .375rem #1072eb29}.logo-ticker-section-image-frame:hover a img{transform:scale(1.05)}.logo-ticker-section-image-frame:active a img{transform:scale(.95)}@media (min-width: 91.875rem){.logo-ticker-section-headline{padding-bottom:4.8125rem}.logo-ticker-section-logos-grid:after,.logo-ticker-section-logos-grid:before{width:8rem}}@keyframes ticker{0%{transform:translate(0)}to{transform:translate(-100%)}}.grid-compact .pricing-card-item-wrapper .pricing-card-item-secondary-pricing{display:flex;flex-direction:column;gap:.5rem;padding:.5rem 0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-subheading{margin-bottom:.5rem;padding:0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-pricing-header,.grid-compact .pricing-card-item-wrapper .pricing-card-item-data-grid-item,.grid-compact .pricing-card-item-wrapper .feature-list,.grid-compact .pricing-card-item-wrapper .pricing-card-item-secondary-pricing,.grid-compact .pricing-card-item-wrapper .pricing-card-item-action-group .button-group{margin-bottom:.5rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-paragraph{padding:0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-image-product-name{padding-bottom:0;margin-bottom:.5rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-action-group>.button-group+.disclosure{margin-top:0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-product-info{padding-bottom:1rem}@media (min-width: 91.875rem){.grid-compact .pricing-card-item-wrapper.pricing-card-item-3col{min-width:21.5rem}.grid-compact .pricing-card-item-wrapper.pricing-card-item-2col{min-width:27.25rem}.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-pricing-header,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-data-grid-item,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .feature-list,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-secondary-pricing,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-paragraph,.grid-compact .pricing-card-item-wrapper.pricing-card-item-no-media .pricing-card-item-action-group .button-group{margin-bottom:1rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-secondary-pricing{gap:1rem;padding:1rem 0}.grid-compact .pricing-card-item-wrapper .pricing-card-item-subheading,.grid-compact .pricing-card-item-wrapper .pricing-card-item-image-product-name{margin-bottom:1rem}.grid-compact .pricing-card-item-wrapper .pricing-card-item-product-info{padding-bottom:2rem}}@media (min-width: 91.875rem){.grid-compact .pricing-card-item-spacing-3col{padding:2rem}.grid-compact .pricing-card-item-spacing-2col{padding:3rem}}[dir=ltr] .pricing-card-item-wrapper{margin-right:var(--grid-gap)}[dir=rtl] .pricing-card-item-wrapper{margin-left:var(--grid-gap)}.pricing-card-item-wrapper{flex-grow:1;width:100%;display:flex;align-items:flex-start;border-radius:1rem;flex-direction:column;min-width:16.25rem}.pricing-card-item-wrapper .disclosure-item{padding-top:0}.pricing-card-item-spacing-2col,.pricing-card-item-spacing-3col{padding:1.5rem}[dir=ltr] .pricing-card-item-wrapper:last-child{margin-right:0}[dir=rtl] .pricing-card-item-wrapper:last-child{margin-left:0}.pricing-card-item-image img{aspect-ratio:4/3;border-top-left-radius:1rem;border-top-right-radius:1rem;-o-object-fit:contain;object-fit:contain}.pricing-card-item-product-name{height:clamp(6.625rem,2.597070844686648rem + 9.809264305177113vw,8.875rem)}@supports not (font-size: clamp(6.625rem,2.597070844686648rem + 9.809264305177113vw,8.875rem)){.pricing-card-item-product-name{height:min(max(6.625rem,2.597070844686648rem + 9.809264305177113vw),8.875rem)}}.pricing-card-item-image-product-name,.pricing-card-item-subheading,.pricing-card-item-paragraph{margin:0;padding-bottom:1rem}p+p{padding-top:0}.pricing-card-item-data-grid-item{width:100%}.pricing-card-item-action-group>.button-group+.disclosure{margin-top:1rem}.pricing-card-item-secondary-pricing-item{display:flex;gap:.25rem;align-items:baseline}.pricing-card-item-secondary-number-group{display:flex;text-wrap:nowrap}@media (min-width: 91.875rem){.pricing-card-item-wrapper{border-radius:1.5rem}.pricing-card-item-image img{border-top-left-radius:1.5rem;border-top-right-radius:1.5rem}.pricing-card-item-3col{min-width:26.625rem}.pricing-card-item-2col{min-width:40.938rem}.pricing-card-item-spacing-3col{padding:3rem}.pricing-card-item-spacing-2col{padding:4.5rem}}@media (min-width: 107.875rem){.pricing-card-item-subheading{padding-bottom:.625rem}}.grid-compact.pricing-card-horizontal .pricing-card-horizontal-header{margin-bottom:1rem}[dir=ltr] .grid-compact.pricing-card-horizontal .pricing-card-item-wrapper{margin-right:0}[dir=rtl] .grid-compact.pricing-card-horizontal .pricing-card-item-wrapper{margin-left:0}.grid-compact.pricing-card-horizontal .pricing-card-grid-container{display:grid;grid-gap:1rem;gap:1rem}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-3cards{grid-template-columns:repeat(3,1fr)}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-2cards{grid-template-columns:repeat(2,1fr)}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-10col,.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-12col{padding-left:calc(var(--grid-gap) * 2);padding-right:calc(var(--grid-gap) * 2);overflow-x:scroll}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-10col::-webkit-scrollbar,.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-12col::-webkit-scrollbar{display:none}@media (min-width: 64rem) and (max-width: 91.8125rem){.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-10col{padding-left:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 3) + var(--col-width));padding-right:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 3) + var(--col-width))}.grid-compact.pricing-card-horizontal .pricing-card-grid-container-overflow-12col{padding-left:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2));padding-right:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2))}}@media (max-width: 63.9375rem){.grid-compact.pricing-card-horizontal-stacking .pricing-card-grid-container{grid-template-columns:1fr}}@media (min-width: 91.875rem){.grid-compact.pricing-card-horizontal .pricing-card-grid-container{gap:1.5rem}.grid-compact.pricing-card-horizontal .pricing-card-item-3col{min-width:17.5rem}}.grid:not(.grid-compact) .pricing-card-grid-item{display:flex!important;flex-direction:row;overflow-x:scroll;padding-left:calc(var(--grid-gap) * 2);padding-right:calc(var(--grid-gap) * 2)}.grid:not(.grid-compact) .pricing-card-grid-item::-webkit-scrollbar{display:none}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-horizontal-header{margin-bottom:1rem}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-horizontal-pricing-card-item .pricing-card-item-data-grid-item .data-item-border-bottom:last-of-type{margin-bottom:1rem}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-item-3col{width:calc(100% / 3);flex-grow:inherit}.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-item-spacing-2col{flex:1;display:flex;flex-direction:column}.grid:not(.grid-compact).pricing-card-horizontal-mobile-layout .pricing-card-item-3col{width:50%;flex-grow:inherit}.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-action-group{display:flex;flex-direction:column;flex:1;justify-content:flex-end}.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-value,.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-group{margin:0;padding-bottom:1rem}@media (max-width: 63.9375rem){.grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item{flex-direction:column;gap:1rem}[dir=ltr] .grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item .pricing-card-item-wrapper{margin-right:0}[dir=rtl] .grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item .pricing-card-item-wrapper{margin-left:0}.grid:not(.grid-compact).pricing-card-horizontal-stacking .pricing-card-grid-item .pricing-card-item-wrapper{width:auto}}@media (min-width: 64rem){.grid:not(.grid-compact) .pricing-card-grid-item{padding-left:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2));padding-right:calc(var(--edge-rail-col--width) + calc(var(--grid-gap) * 2))}}@media (min-width: 91.875rem){.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-value,.grid:not(.grid-compact) .pricing-card-horizontal-pricing-card-item .pricing-card-item-number-group{margin:0;padding-bottom:.625rem}.grid:not(.grid-compact) .pricing-card-horizontal .pricing-card-item-3col{width:calc(100% / 3.5)}}@media (min-width: 107.875rem){.grid:not(.grid-compact).pricing-card-horizontal .pricing-card-horizontal-header{margin-bottom:1.5rem}.grid:not(.grid-compact) .pricing-card-grid-item{overflow:hidden;grid-column-start:3!important;grid-column-end:-3!important;padding-left:0;padding-right:0}}@media (min-width: 120rem){.grid:not(.grid-compact) .pricing-card-grid-item{padding-left:0;padding-right:0}}.pricing-mega-card .pricing-mega-card-top-section{padding:2rem;border-radius:1.5rem;display:block}@media (min-width: 80rem){.pricing-mega-card .pricing-mega-card-top-section{display:flex;padding:5rem}}.pricing-mega-card .pricing-mega-card-top-section .text-group .text-group-content-button-group{padding-bottom:1rem}.pricing-mega-card .card-number{display:flex;align-items:baseline;white-space:pre;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;min-width:7.5rem}.pricing-mega-card .numAndSymbol{display:flex;flex-direction:row;align-items:center;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;flex-shrink:0}.pricing-mega-card .number{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}[dir=ltr] .pricing-mega-card-list{padding-left:0}[dir=rtl] .pricing-mega-card-list{padding-right:0}.pricing-mega-card-list{list-style:none;margin:0}.pricing-mega-card-text-group,.pricing-mega-card-pricing-list{width:100%}@media (min-width: 80rem){.pricing-mega-card-text-group,.pricing-mega-card-pricing-list{width:50%}}@media (min-width: 80rem){[dir=ltr] .pricing-mega-card-text-group{padding-right:1rem}[dir=rtl] .pricing-mega-card-text-group{padding-left:1rem}}[dir=ltr] .pricing-mega-card-pricing-list{padding-left:0}[dir=rtl] .pricing-mega-card-pricing-list{padding-right:0}.pricing-mega-card-pricing-list{color:#001c64;margin-top:3rem}@media (min-width: 80rem){[dir=ltr] .pricing-mega-card-pricing-list{padding-left:1rem}[dir=rtl] .pricing-mega-card-pricing-list{padding-right:1rem}.pricing-mega-card-pricing-list{margin-top:0}}.pricing-mega-card-pricing-list .pricing-list-item{display:flex;flex-direction:column;border-bottom:.125rem solid #929496;padding:1.25rem 0}.pricing-mega-card-pricing-list .pricing-list-item:last-of-type{border:none}.pricing-mega-card-pricing-list .pricing-list-item:first-of-type{border-top:.125rem solid #929496}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .pricing-list-item{padding:2rem 0;flex-direction:row;align-items:center}}@media (min-width: 91.875rem){[dir=ltr] .pricing-mega-card-pricing-list .paragraph{margin-left:1.5rem;margin-right:0}[dir=rtl] .pricing-mega-card-pricing-list .paragraph{margin-right:1.5rem;margin-left:0}.pricing-mega-card-pricing-list .paragraph{margin-top:0;margin-bottom:0}}@media (max-width: 91.875rem){[dir=ltr] .pricing-mega-card-pricing-list .paragraph{margin-left:0}[dir=rtl] .pricing-mega-card-pricing-list .paragraph{margin-right:0}.pricing-mega-card-pricing-list .paragraph{margin-top:.5rem}}.pricing-mega-card-pricing-list .card-number{align-items:center;font-size:1.802rem;line-height:120%;letter-spacing:-.01em}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .card-number{font-size:3.052rem;display:flex;flex-wrap:wrap;flex-shrink:0;max-width:12.6rem}}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .card-number{max-width:22.6rem}}.pricing-mega-card-pricing-list .numAndSymbol{font-size:2.027rem;letter-spacing:-.015em;flex-shrink:0}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .numAndSymbol{font-size:3.815rem;margin:0}}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .number{font-size:3.815rem;margin:0}}.pricing-mega-card-pricing-list .symbol{font-size:2.027rem;letter-spacing:-.015em}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .symbol{font-size:3.052rem}}.pricing-mega-card-pricing-list .operator{align-self:start}@media (min-width: 91.875rem){.pricing-mega-card-pricing-list .operator{font-size:1.95rem;max-height:37px;display:flex;align-items:center;justify-content:center;align-self:center}}.pricing-mega-card-pricing-list .disclosure-item:first-of-type{padding-top:0}[dir=ltr] .pricing-mega-card-disclosure{padding-left:0}[dir=rtl] .pricing-mega-card-disclosure{padding-right:0}.pricing-mega-card-disclosure{margin-top:2rem}@media (max-width: 91.875rem){.pricing-mega-card-disclosure{margin-top:1.25rem}}.pricing-mega-card-pricing-card{border-radius:1.5rem;display:block;padding:2rem 1.5rem}@media (min-width: 80rem){.pricing-mega-card-pricing-card{display:flex;padding:0;justify-content:center}}.pricing-mega-card-pricing-card .pricing-card-item{text-align:center;padding:1rem 0;border-bottom:.125rem solid #c6c6c6}@media (min-width: 91.875rem){[dir=ltr] .pricing-mega-card-pricing-card .pricing-card-item{border-right:.125rem solid #c6c6c6}[dir=rtl] .pricing-mega-card-pricing-card .pricing-card-item{border-left:.125rem solid #c6c6c6}.pricing-mega-card-pricing-card .pricing-card-item{border-bottom:none;margin:3rem 0;padding:0 3rem;width:25%}}[dir=ltr] .pricing-mega-card-pricing-card .pricing-card-item:last-of-type{border-right:none}[dir=rtl] .pricing-mega-card-pricing-card .pricing-card-item:last-of-type{border-left:none}.pricing-mega-card-pricing-card .pricing-card-item:last-of-type{border-bottom:none}.pricing-mega-card-pricing-card .pricing-card-item .pricing-mega-card-item-list-item-container{flex-direction:column;align-items:center}.pricing-mega-card-pricing-card .pricing-card-item .card-number{font-size:1.424rem;line-height:120%;justify-content:center;padding:0 0 .5rem}@media (min-width: 91.875rem){.pricing-mega-card-pricing-card .pricing-card-item .card-number{padding:0 0 1rem;font-size:1.953rem}}.pricing-mega-card-pricing-card .pricing-card-item .number{margin-bottom:0;margin-top:0;line-height:120%;font-size:1.602rem;display:block}@media (min-width: 91.875rem){.pricing-mega-card-pricing-card .pricing-card-item .number{font-size:2.441rem}}.pricing-mega-card-pricing-card .pricing-card-item .paragraph{margin-bottom:0;margin-top:0}@media (min-width: 91.875rem){.pricing-mega-card-pricing-card .pricing-card-item .paragraph{padding-bottom:0}}.pricing-mega-card-list .pricing-card-item-2col,.pricing-mega-card-list .pricing-card-item-3col{min-width:unset}.pricing-mega-card-list .pricing-card-item-wrapper{background-color:transparent;padding:0;margin-bottom:2rem}@media (max-width: 91.875rem){.pricing-mega-card-list .pricing-card-item-wrapper{margin-bottom:1.25rem}}.pricing-mega-card-list .pricing-card-item-wrapper:last-of-type{margin-bottom:0}.pricing-mega-card-list .pricing-card-item-product-name{height:unset;margin-bottom:.5rem}@media (min-width: 91.875rem){.pricing-mega-card-list .pricing-card-item-product-name{margin-bottom:1rem}}.pricing-mega-card-list .pricing-mega-card-data-grid-item{flex-direction:column;width:100%;display:flex;justify-content:center}@media (min-width: 80rem){.pricing-mega-card-list .pricing-mega-card-data-grid-item{flex-direction:row;margin:3rem 0}}.pricing-mega-card-list .pricing-mega-card-data-item{border-bottom:.125rem solid #c6c6c6}@media (min-width: 80rem){[dir=ltr] .pricing-mega-card-list .pricing-mega-card-data-item{border-right:.125rem solid #c6c6c6}[dir=rtl] .pricing-mega-card-list .pricing-mega-card-data-item{border-left:.125rem solid #c6c6c6}.pricing-mega-card-list .pricing-mega-card-data-item{border-bottom:none;height:100%;padding:0 1.5rem}}.pricing-mega-card-list .pricing-mega-card-data-item:last-of-type{border:none}.caption{border:0;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;padding:0;position:absolute;width:1px}.table-column-count-2 th,.table-column-count-2 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-2 th,.table-column-count-2 td{min-width:50%;width:50%}}.table-column-count-3 th,.table-column-count-3 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-3 th,.table-column-count-3 td{min-width:33.33%;width:33.33%}}.table-column-count-4 th,.table-column-count-4 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-4 th,.table-column-count-4 td{min-width:25%;width:25%}}.table-column-count-5 th,.table-column-count-5 td{min-width:13rem;width:13rem}@media (min-width: 64rem){.table-column-count-5 th,.table-column-count-5 td{min-width:20%;width:20%}}.table-tooltip-icon button path{fill:#0070e0}.table-item-paragraph:not(:first-child){padding-top:.5rem}.table-table-wrapper{padding:0 .5rem .5rem;border-radius:1.5rem;background-color:#faf8f5;display:table;width:100%}@media (min-width: 48rem){.table-table-wrapper{padding:0 1.5rem 1.5rem}}[dir=ltr] .table-bnpl-table{text-align:left}[dir=rtl] .table-bnpl-table{text-align:right}.table-bnpl-table{color:#001c64;border-collapse:collapse;display:table;width:100%}.table-bnpl-table th{font-weight:400;outline:none}.table-bnpl-table th b,.table-bnpl-table th strong{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:400;line-height:1.5rem}.table-bnpl-table td{color:#001435;color:var(--style-general-text, #001435);font-size:clamp(.875rem,.7321428571428572rem + .2232142857142857vw,1rem)}@supports not (font-size: clamp(.875rem,.7321428571428572rem + .2232142857142857vw,1rem)){.table-bnpl-table td{font-size:min(max(.875rem,.7321428571428572rem + .2232142857142857vw),1rem)}}.table-bnpl-table .table-header-row th{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;font-weight:500;border-bottom:.0625rem solid #e6e0d9;position:relative;font-size:1.125rem;line-height:1.5rem;padding-top:2.5rem}@media (min-width: 48rem){.table-bnpl-table .table-header-row th{font-size:1.25rem;line-height:160%;padding-top:2rem}}.table-bnpl-table .table-header-row th:first-of-type,.table-bnpl-table .table-header-row th:last-of-type{border-bottom:none}[dir=ltr] .table-bnpl-table .table-header-row th:first-of-type:after,[dir=ltr] .table-bnpl-table .table-header-row th:last-of-type:after{right:0}[dir=rtl] .table-bnpl-table .table-header-row th:first-of-type:after,[dir=rtl] .table-bnpl-table .table-header-row th:last-of-type:after{left:0}.table-bnpl-table .table-header-row th:first-of-type:after,.table-bnpl-table .table-header-row th:last-of-type:after{content:\\\"\\\";position:absolute;width:calc(100% - .7rem);height:.0625rem;background:#e6e0d9;bottom:-.03125rem}@media (min-width: 41.0625rem){.table-bnpl-table .table-header-row th:first-of-type:after,.table-bnpl-table .table-header-row th:last-of-type:after{width:calc(100% - 1.5rem)}}[dir=ltr] .table-bnpl-table .table-header-row th:last-of-type:after{left:0}[dir=rtl] .table-bnpl-table .table-header-row th:last-of-type:after{right:0}.table-bnpl-table th,.table-bnpl-table td{padding:1rem;font-size:.875rem;line-height:1.25rem;vertical-align:top}.table-bnpl-table th a.table-cell-content-text,.table-bnpl-table td a.table-cell-content-text{color:#0070e0;color:var(--component-link, #0070e0);text-decoration:none;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.table-bnpl-table th a.table-cell-content-text:hover,.table-bnpl-table td a.table-cell-content-text:hover{text-decoration:underline}@media (min-width: 48rem){.table-bnpl-table th,.table-bnpl-table td{padding:1.5rem;font-size:1rem;line-height:1.5rem}}[dir=ltr] .table-bnpl-table td{border-left:.0625rem solid #e6e0d9}[dir=rtl] .table-bnpl-table td{border-right:.0625rem solid #e6e0d9}[dir=ltr] .table-bnpl-table .table-row th:first-child,[dir=ltr] .table-bnpl-table .table-row td:first-child{border-left:0}[dir=rtl] .table-bnpl-table .table-row th:first-child,[dir=rtl] .table-bnpl-table .table-row td:first-child{border-right:0}@media (min-width: 48rem){[dir=ltr] .table-bnpl-table .table-row th:first-child,[dir=ltr] .table-bnpl-table .table-row td:first-child{padding-left:1.5rem}[dir=rtl] .table-bnpl-table .table-row th:first-child,[dir=rtl] .table-bnpl-table .table-row td:first-child{padding-right:1.5rem}}@media (min-width: 48rem){[dir=ltr] .table-bnpl-table .table-row th:last-child,[dir=ltr] .table-bnpl-table .table-row td:last-child{padding-right:1.5rem}[dir=rtl] .table-bnpl-table .table-row th:last-child,[dir=rtl] .table-bnpl-table .table-row td:last-child{padding-left:1.5rem}}.table-bnpl-table .table-btn-row{border-top:.0625rem solid #e6e0d9}[dir=ltr] .table-bnpl-table .table-btn-row td.table-cta{border-left:none}[dir=rtl] .table-bnpl-table .table-btn-row td.table-cta{border-right:none}.table-bnpl-table .table-btn-row td a:hover{text-decoration:none}.table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd){background-color:#f1ede866;border-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-left-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-right-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-left-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-right-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-right-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-left-radius:1rem}[dir=ltr] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-right-radius:1rem}[dir=rtl] .table-bnpl-table tr:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-left-radius:1rem}.table-bnpl-table .table-cell-content-wrapper{display:flex;align-items:initial;justify-content:space-between}.table-bnpl-table .table-cell-content-text{white-space:pre-wrap}[dir=ltr] .table-bnpl-table ul,[dir=ltr] .table-bnpl-table ol{padding-left:1rem}[dir=rtl] .table-bnpl-table ul,[dir=rtl] .table-bnpl-table ol{padding-right:1rem}.table-expand-button{display:flex;justify-content:center;align-items:center;width:100%;margin-top:1.1875rem}.pricing-table-card-grid-item{padding:2rem;border-radius:1rem}.pricing-table-card-table-wrapper-tablet{margin-top:2.25rem}.pricing-table-card-table-wrapper-tablet .pricing-table-card-table-row-header{display:none}.pricing-table-card-table-wrapper-tablet .pricing-table-card-table-data-row{border-top:.125rem solid var(--style-border-color);padding:1rem 0}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{margin-right:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{margin-left:0}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{background-color:transparent;min-width:initial;padding:1rem 0}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data .pricing-card-item-product-name{height:initial}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data .pricing-card-item-product-name,.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data .pricing-card-item-text{color:var(--style-headline-text);margin-bottom:.25rem}.pricing-table-card-truncated-text-group:not(:first-child){margin-top:1rem}.pricing-table-card-cta{margin-top:2rem}.pricing-table-card-disclosure-inside{margin-top:.25rem}.pricing-table-card-table-wrapper-desktop{display:none}@media (min-width: 41.0625rem){.pricing-table-card-grid-item{border-radius:1.5rem}.pricing-table-card-table-wrapper-tablet .pricing-table-card-table-data-row{display:flex;flex-wrap:wrap}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data{padding:1rem;max-width:50%}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(odd){padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(odd){padding-right:0}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(2n){padding-right:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data:nth-child(2n){padding-left:0}.pricing-table-card-disclosure-inside{margin-top:.75rem}}@media (min-width: 64rem){.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3{max-width:calc(100% / 3);padding:1rem}.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:nth-child(odd),.pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:nth-child(2n){padding:1rem}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:first-child{padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:first-child{padding-right:0}[dir=ltr] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:last-child{padding-right:0}[dir=rtl] .pricing-table-card-table-wrapper-tablet div.pricing-table-card-table-cell-data-3:last-child{padding-left:0}}@media (min-width: 107.875rem){.pricing-table-card-truncated-text-group:not(:first-child){margin-top:1.5rem}}@media (min-width: 91.875rem){.pricing-table-card-grid-item{padding:5rem}.pricing-table-card-table-wrapper-tablet{display:none}.pricing-table-card-table-wrapper-desktop{display:block;margin-top:2rem}.pricing-table-card-table-wrapper-desktop .table-table-wrapper{padding:0;background-color:transparent;border:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container{color:var(--style-headline-text)}[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row th:last-child,[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row td:last-child{padding-right:0}[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row th:last-child,[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container .table-row td:last-child{padding-left:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-container tr:not(.table-header-row):nth-child(odd){background-color:transparent}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th{padding:1rem;vertical-align:bottom;border-bottom:.125rem solid var(--style-border-color)}[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-child{padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-child{padding-right:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td{padding:1rem;border:0;vertical-align:baseline}[dir=ltr] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td:first-child{padding-left:0}[dir=rtl] .pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td:first-child{padding-right:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td .pricing-card-item-wrapper{padding:0;background-color:transparent;min-width:initial;color:var(--style-headline-text)}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td .pricing-card-item-wrapper .pricing-card-item-product-name,.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row td .pricing-card-item-wrapper .pricing-card-item-text{color:var(--style-headline-text);margin-bottom:.25rem}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row:nth-child(2) td{padding-top:2rem}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-data-row:nth-child(2) td:last-child{padding-top:2rem}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-of-type:after,.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:last-of-type:after{width:0}.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:first-of-type,.pricing-table-card-table-wrapper-desktop .pricing-table-card-table-header-row th:last-of-type{border-bottom:.125rem solid var(--style-border-color)}.pricing-table-card-disclosure-inside{margin-top:1.75rem}.pricing-table-card-cta{margin-top:3rem}}.product-section{height:auto}.product-section-no-scrollable{min-height:auto}.product-section-contents{align-items:center;align-content:center;position:-webkit-sticky;position:sticky}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)]{grid-auto-rows:-webkit-min-content minmax(50px,60vh);grid-auto-rows:min-content minmax(50px,60vh);grid-template-rows:-webkit-min-content minmax(50px,60vh);grid-template-rows:min-content minmax(50px,60vh)}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner){grid-auto-rows:-webkit-min-content minmax(50px,60vh);grid-auto-rows:min-content minmax(50px,60vh);grid-template-rows:-webkit-min-content minmax(50px,60vh);grid-template-rows:min-content minmax(50px,60vh)}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container{-webkit-clip-path:inset(0 -100vw -100vh);clip-path:inset(0 -100vw -100vh)}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container{-webkit-clip-path:inset(0 -100vw -100vh);clip-path:inset(0 -100vw -100vh)}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container::before,.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container::after{z-index:inherit;content:\\\"\\\";position:absolute;width:105%;height:10%;right:0}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container:before,.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container:after{z-index:inherit;content:\\\"\\\";position:absolute;width:105%;height:10%;right:0}.product-section-contents.product-section-contents-scrollable[\\\\:has\\\\(.text-header-inner\\\\)] .text-group-container::before{top:0;background:linear-gradient(180deg,white 0%,rgba(255,255,255,0) 100%);background:linear-gradient(180deg,var(--style-background-color, white) 0%,rgba(255,255,255,0) 100%)}.product-section-contents.product-section-contents-scrollable:has(.text-header-inner) .text-group-container:before{top:0;background:linear-gradient(180deg,white 0%,rgba(255,255,255,0) 100%);background:linear-gradient(180deg,var(--style-background-color, white) 0%,rgba(255,255,255,0) 100%)}.product-section-contents.product-section-contents-scrollable div.media-container{position:-webkit-sticky;position:sticky;top:0;height:100%}.product-section-contents.product-section-contents-scrollable .text-group-container{height:100%;position:-webkit-sticky;position:sticky;top:0}div.product-section-contents-no-scrollable,section.product-section-contents-no-scrollable{height:auto;grid-row-gap:2rem}div.media-container{display:grid;align-items:center;justify-items:center;place-items:center;position:relative}.media-item{left:50%;position:absolute;transform:translate(-50%);width:100%}.media-item img{border-radius:2rem;max-width:100%;-o-object-fit:cover;object-fit:cover}@supports (aspect-ratio: auto){.media-item-media-size-3-4 img{aspect-ratio:3 / 4}.media-item-media-size-4-3 img{aspect-ratio:4 / 3;width:100%}.media-item-media-size-1-1 img{aspect-ratio:1 / 1;width:100%}}@supports not (aspect-ratio: auto){.media-item-media-size-4-3 .image-frame{width:100%}.media-item-media-size-4-3 picture{padding-top:75%;height:0;position:relative;overflow:hidden;border-radius:2rem}.media-item-media-size-4-3 img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%}.media-item-media-size-1-1 .image-frame{width:100%}.media-item-media-size-1-1 picture{height:0;padding-top:100%;position:relative;overflow:hidden}.media-item-media-size-1-1 img{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%}}.media-item-no-scrollable{display:grid;left:auto;max-height:none;align-items:center;justify-items:center;place-items:center;position:relative;transform:none}.text-group-container-no-scrollable:not(:last-child){margin-bottom:calc(16vw - var(--grid-gap))}[dir=ltr] .text-group-item{text-align:left}[dir=rtl] .text-group-item{text-align:right}.text-group-item{position:relative;margin-bottom:2vw;margin-top:2vw}.text-group-item ul{padding-left:0;list-style-position:inside}.text-group-item .text-group-item-header{background-color:transparent;cursor:pointer;border:none;outline:none;padding:0;text-align:inherit}.text-group-item .text-group-item-header:focus:before{background-color:#0070e0;background-color:var(--component-inline-button-focus-border, #0070e0);border-radius:.5rem;content:\\\"\\\";display:block;top:0;right:auto;bottom:0;left:calc(var(--grid-gap) * -1);position:absolute;width:.25rem}@supports selector(:focus-visible){.text-group-item .text-group-item-header:focus:before{display:none}.text-group-item .text-group-item-header.focus-visible:before{background-color:#0070e0;background-color:var(--component-inline-button-focus-border, #0070e0);border-radius:.5rem;content:\\\"\\\";display:block;top:0;right:auto;bottom:0;left:calc(var(--grid-gap) * -1);position:absolute;width:.25rem}.text-group-item .text-group-item-header:focus-visible:before{background-color:#0070e0;background-color:var(--component-inline-button-focus-border, #0070e0);border-radius:.5rem;content:\\\"\\\";display:block;top:0;right:auto;bottom:0;left:calc(var(--grid-gap) * -1);position:absolute;width:.25rem}}.text-group-item .text-group-item-info{margin:0}.text-group-item .text-group-item-info .text-group-subheading{margin-bottom:1rem}.text-group-item .text-group-item-info .text-group-subheading a{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif}.text-group-item .text-group>*:last-child{margin-bottom:0}.text-group-item-no-scrollable{margin-bottom:0;margin-top:0}.text-group-item-no-scrollable.focus-visible:before,.text-group-item-no-scrollable:hover:before{display:none}.text-group-item-no-scrollable:focus-visible:before,.text-group-item-no-scrollable:hover:before{display:none}@media only screen and (min-width: 41.0625rem){.product-section{height:calc(var(--item-count) * 75vh)}.media-item img.image-frame-image-md{display:block;max-height:88vmin;margin:0 auto}.text-group-container-no-scrollable:not(:last-child){margin-bottom:0}.text-group-item{text-align:left}.text-group-item .text-group-item-info{overflow:hidden;margin-top:1rem}.text-group-item ul{list-style-position:unset}}.split-section .split-section-item-end-col{display:block}.split-section .split-section-item-end-col .feature-list{margin-top:1rem}.split-section-item-media-container{position:relative}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-1-1>div,.split-section-item-media-container.split-section-item-ratio-1-1-large>div,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large>div{aspect-ratio:1/1}.split-section-item-media-container.split-section-item-ratio-1-1 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-large .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large .video-frame-wrapper{width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-1-1 picture,.split-section-item-media-container.split-section-item-ratio-1-1-large picture,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large picture,.split-section-item-media-container.split-section-item-ratio-1-1 img,.split-section-item-media-container.split-section-item-ratio-1-1-large img,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large img{height:100%;width:100%;aspect-ratio:inherit}.split-section-item-media-container.split-section-item-ratio-1-1 video,.split-section-item-media-container.split-section-item-ratio-1-1-large video,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large video{width:100%;height:100%;aspect-ratio:inherit;-o-object-fit:cover;object-fit:cover}}@supports not (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-1-1 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-large .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large .video-frame-wrapper{padding-top:100%;height:0;position:relative;overflow:hidden;width:100%}.split-section-item-media-container.split-section-item-ratio-1-1 video,.split-section-item-media-container.split-section-item-ratio-1-1-large video,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-1-1 picture,.split-section-item-media-container.split-section-item-ratio-1-1-large picture,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large picture{padding-top:100%;height:0;position:relative;overflow:hidden}.split-section-item-media-container.split-section-item-ratio-1-1 img,.split-section-item-media-container.split-section-item-ratio-1-1-large img,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-3-4>div,.split-section-item-media-container.split-section-item-ratio-3-4-large>div{aspect-ratio:3/4}.split-section-item-media-container.split-section-item-ratio-3-4 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-3-4-large .video-frame-wrapper{width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-3-4 picture,.split-section-item-media-container.split-section-item-ratio-3-4-large picture,.split-section-item-media-container.split-section-item-ratio-3-4 img,.split-section-item-media-container.split-section-item-ratio-3-4-large img{height:100%;width:100%;aspect-ratio:inherit}.split-section-item-media-container.split-section-item-ratio-3-4 video,.split-section-item-media-container.split-section-item-ratio-3-4-large video{width:100%;height:100%;aspect-ratio:inherit;-o-object-fit:cover;object-fit:cover}}@supports not (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-3-4 .video-frame-wrapper,.split-section-item-media-container.split-section-item-ratio-3-4-large .video-frame-wrapper{padding-top:133.3%;height:0;position:relative;overflow:hidden;width:100%}.split-section-item-media-container.split-section-item-ratio-3-4 video,.split-section-item-media-container.split-section-item-ratio-3-4-large video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-3-4 picture,.split-section-item-media-container.split-section-item-ratio-3-4-large picture{padding-top:133.3%;height:0;position:relative;overflow:hidden}.split-section-item-media-container.split-section-item-ratio-3-4 img,.split-section-item-media-container.split-section-item-ratio-3-4-large img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-4-3>div{aspect-ratio:4/3}.split-section-item-media-container.split-section-item-ratio-4-3 .video-frame-wrapper{width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-4-3 picture,.split-section-item-media-container.split-section-item-ratio-4-3 img{height:100%;width:100%;aspect-ratio:inherit}.split-section-item-media-container.split-section-item-ratio-4-3 video{width:100%;height:100%;aspect-ratio:inherit;-o-object-fit:cover;object-fit:cover}}@supports not (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-4-3 .video-frame-wrapper{padding-top:75%;height:0;position:relative;overflow:hidden;width:100%}.split-section-item-media-container.split-section-item-ratio-4-3 video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.split-section-item-media-container.split-section-item-ratio-4-3 picture{padding-top:75%;height:0;position:relative;overflow:hidden}.split-section-item-media-container.split-section-item-ratio-4-3 img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}}@media only screen and (min-width: 41.0625rem){@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-1-1,.split-section-item-media-container.split-section-item-ratio-1-1-large,.split-section-item-media-container.split-section-item-ratio-1-1-extra-large{aspect-ratio:1/1}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-3-4,.split-section-item-media-container.split-section-item-ratio-3-4-large{aspect-ratio:3/4}}@supports (aspect-ratio: auto){.split-section-item-media-container.split-section-item-ratio-4-3{aspect-ratio:4/3}}div.split-section-item-start-col{display:flex;align-items:center}}@media only screen and (min-width: 41.0625rem){.split-section.grid-compact .split-section-headline-col{padding-bottom:clamp(2rem,-3.012534059945504rem + 12.20708446866485vw,4.8rem)}@supports not (font-size: clamp(2rem,-3.012534059945504rem + 12.20708446866485vw,4.8rem)){.split-section.grid-compact .split-section-headline-col{padding-bottom:min(max(2rem,-3.012534059945504rem + 12.20708446866485vw),4.8rem)}}}@media only screen and (min-width: 64rem){.split-section.grid-compact .split-section-headline-col{padding-bottom:clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){.split-section.grid-compact .split-section-headline-col{padding-bottom:min(max(1rem,-.5999999999999999rem + 2.5vw),2.4rem)}}}.split-section .split-section-headline-col h2{margin-bottom:0}@media only screen and (min-width: 41.0625rem){.split-section .split-section-headline-col{padding-bottom:clamp(3rem,-4.518801089918257rem + 18.310626702997276vw,7.2rem)}@supports not (font-size: clamp(3rem,-4.518801089918257rem + 18.310626702997276vw,7.2rem)){.split-section .split-section-headline-col{padding-bottom:min(max(3rem,-4.518801089918257rem + 18.310626702997276vw),7.2rem)}}.split-section .image-overlap{margin-top:calc(clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)*1)}@supports not (font-size: clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)){.split-section .image-overlap{margin-top:calc(min(max(2.5rem,1.6049046321525886rem + 2.17983651226158vw),3rem)*1)}}}@media only screen and (min-width: 64rem){.split-section .split-section-headline-col{padding-bottom:clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){.split-section .split-section-headline-col{padding-bottom:min(max(2rem,-1.1999999999999997rem + 5vw),4.8rem)}}}@media only screen and (min-width: 107.875rem){.split-section .image-overlap{margin-top:calc(clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)*-1)}@supports not (font-size: clamp(2.5rem,1.6049046321525886rem + 2.17983651226158vw,3rem)){.split-section .image-overlap{margin-top:calc(min(max(2.5rem,1.6049046321525886rem + 2.17983651226158vw),3rem)*-1)}}}.stack-section>.stack-section-row-spacing{margin-bottom:4vw}@supports (aspect-ratio: auto){.stack-section .stack-section-media{width:100%;aspect-ratio:1/1}.stack-section .stack-section-media .video-frame-wrapper{position:unset;display:flex;width:100%}.stack-section .stack-section-media img{width:100%;aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover}.stack-section .stack-section-media video{width:inherit;height:auto;aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover;border-radius:inherit}}@supports not (aspect-ratio: auto){.stack-section .stack-section-media picture{padding-top:100%;height:0;position:relative;overflow:hidden}.stack-section .stack-section-media .video-frame-wrapper{display:flex;padding-top:100%;height:0;position:relative;overflow:hidden;width:100%}.stack-section .stack-section-media img{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:auto}.stack-section .stack-section-media video{-o-object-fit:cover;object-fit:cover;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;border-radius:inherit}}@media (min-width: 41.0625rem){@supports (aspect-ratio: auto){.stack-section .stack-section-media{width:100%;aspect-ratio:16 / 9}.stack-section .stack-section-media img,.stack-section .stack-section-media video{aspect-ratio:16 / 9}}@supports not (aspect-ratio: auto){.stack-section .stack-section-media picture,.stack-section .stack-section-media .video-frame-wrapper{padding-top:56.25%}.stack-section .stack-section-media video{height:auto}}}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-table-wrapper{padding:0 0 1.5rem;background-color:transparent}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row th,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row td{padding:1rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row .button-group{background-color:inherit}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd){background-color:#dbdde033}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-left-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-right-radius:.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-left-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-right-radius:.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-right-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-left-radius:.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-right-radius:.5rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-left-radius:.5rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th{line-height:1.5rem;border-bottom:.0625rem solid #dbdde0}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type{border-bottom:none}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type:after,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type:after{background:#dbdde0;width:calc(100% - .5rem)}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table td{border-left:.0625rem solid #dbdde0}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table td:first-child{border-left:0}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .checkmark circle{fill:#5bbbfc33}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .checkmark path{fill:#0070e0}@media (min-width: 48rem){.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th{line-height:1.5rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type:after,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type:after{width:calc(100% - .5rem)}}@media (min-width: 91.875rem){.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row th,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row td{padding:1.5rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-left-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-top-right-radius:1rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-left-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) th:first-child{border-bottom-right-radius:1rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-right-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-top-left-radius:1rem}[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=ltr] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-right-radius:1rem}[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:first-child,[dir=rtl] .grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-row:not(.table-header-row):not(.table-btn-row):nth-child(odd) td:last-child{border-bottom-left-radius:1rem}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th{line-height:140%}.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:first-of-type:after,.grid-compact.font-quantum-leap.table-rebrand:not(.comparison-variant) .table-bnpl-table .table-header-row th:last-of-type:after{width:calc(100% - .75rem)}}div.table-rebrand-text-group{margin-bottom:1rem}div.table-rebrand-table-grid{display:flex;flex-direction:row;overflow-x:auto;width:100%}div.table-rebrand-table-grid:before,div.table-rebrand-table-grid:after{content:\\\"\\\";flex:0 0 calc(var(--grid-gap) * 2)}@media (min-width: 64rem){div.table-rebrand-table-grid{overflow:initial}div.table-rebrand-table-grid:before,div.table-rebrand-table-grid:after{flex:0}}.table-rebrand .disclosure-item,.table-rebrand .disclosure-paragraph{padding-top:0}.comparison-variant .table-rebrand-multiple.table-rebrand-table-grid{overflow-x:visible}.comparison-variant .table-rebrand-multiple-table-container{overflow-x:auto}.comparison-variant .table-table-wrapper{background-color:unset;padding:0}.comparison-variant-table{border-collapse:separate;border-spacing:0;border:.0625rem solid #e6e0d9;border-radius:1rem}.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd){background-color:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-top-left-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-top-right-radius:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-bottom-left-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) th:first-child{border-bottom-right-radius:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-top-right-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-top-left-radius:unset}[dir=ltr] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-bottom-right-radius:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row:nth-child(odd) td:last-child{border-bottom-left-radius:unset}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell{padding:1rem;border-bottom:none}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell:first-of-type:after,.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell:last-of-type:after{background-color:unset}.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row .comparison-variant-cell{padding:1rem}[dir=ltr] .comparison-variant-table.table-bnpl-table td.comparison-variant-cell{border-left:unset}[dir=rtl] .comparison-variant-table.table-bnpl-table td.comparison-variant-cell{border-right:unset}.comparison-variant-table.table-column-count-4 th,.comparison-variant-table.table-column-count-4 td{width:25%}.comparison-variant-table.table-column-count-3 th,.comparison-variant-table.table-column-count-3 td{width:calc(100% / 3)}@supports (aspect-ratio: auto){.comparison-variant-table.table-column-count-3 .comparison-variant-header-image-frame img{aspect-ratio:16/9}}.comparison-variant-data-row th.comparison-variant-cell{background-color:#faf8f5}[dir=ltr] .comparison-variant-data-row:last-child th.comparison-variant-cell{border-bottom-left-radius:1rem}[dir=rtl] .comparison-variant-data-row:last-child th.comparison-variant-cell{border-bottom-right-radius:1rem}.comparison-variant-data-row:last-child th.comparison-variant-cell{border-bottom:unset}[dir=ltr] .comparison-variant-data-row:last-child td.comparison-variant-cell:last-child{border-bottom-right-radius:1rem}[dir=rtl] .comparison-variant-data-row:last-child td.comparison-variant-cell:last-child{border-bottom-left-radius:1rem}.comparison-variant-cell ul,.comparison-variant-cell ol{margin-top:0}.comparison-variant-cell .table-tooltip-icon button{align-items:initial;width:1.5rem;height:1.5rem}.comparison-variant-cell .table-tooltip-icon button:focus{outline:none}[dir=ltr] .comparison-variant-cell .table-tooltip-icon button:focus:after{left:-1rem}[dir=rtl] .comparison-variant-cell .table-tooltip-icon button:focus:after{right:-1rem}.comparison-variant-cell .table-tooltip-icon button:focus:after{top:-1rem}.comparison-variant-main-header-cell-empty{display:none}.comparison-variant-header-cell-content{display:flex;flex-direction:column;row-gap:1.5rem}.comparison-variant-header-image-frame{display:none}.comparison-variant-truncate-button-wrapper{position:relative;display:flex;justify-content:center;width:100%;padding:.5rem 0}.comparison-variant-last-visible-row-overlay .comparison-variant-cell{position:relative}.comparison-variant-last-visible-row-overlay .comparison-variant-cell>*{display:block;max-height:1.5rem;overflow:hidden}[dir=ltr] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{left:-.0625rem}[dir=rtl] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{right:-.0625rem}.comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{position:absolute;content:\\\"\\\";height:100%;width:calc(100% + .125rem);background:linear-gradient(to top,#ffffff 22.03%,rgba(255,255,255,0) 114.29%);top:.125rem;z-index:1}.comparison-variant .table-rebrand-multiple .table-table-wrapper{position:relative}.comparison-variant .table-rebrand-multiple~.table-rebrand-multiple tr.comparison-variant-header-row:first-child{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden}[dir=ltr] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{border-left:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{right:0}[dir=rtl] .comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{left:0}.comparison-variant .table-rebrand-multiple~.table-rebrand-multiple .table-table-wrapper:before{position:absolute;content:\\\"\\\";height:var(--grid-gap);top:calc(var(--grid-gap) * -1)}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-table{border-top:none;border-bottom:none;border-radius:0}[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper,[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-bottom:.0625rem solid #e6e0d9;border-radius:0 0 1rem 1rem}[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{left:0}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{right:0}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{width:100%;top:0}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-table{border-bottom:none;border-radius:1rem 1rem 0 0}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell,[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell:after{border-bottom-right-radius:unset}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell,[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell:after{border-bottom-left-radius:unset}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell,.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-data-row:last-child td.comparison-variant-cell:after{border-bottom:initial}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:after{left:0}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:after{right:0}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:after{top:0}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-last-visible-row-overlay td.comparison-variant-cell:last-child:after{width:100%}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{padding-bottom:1.5rem}.comparison-variant .table-expand-button{width:auto;margin-top:0}.comparison-variant .table-expand-button.focus-visible:after{border-radius:.25rem}.comparison-variant .table-expand-button:focus-visible:after{border-radius:.25rem}@media (min-width: 41.0625rem){.comparison-variant-header-image-frame{display:block}.comparison-variant-header-image-frame img{border-radius:1rem}@supports (aspect-ratio: auto){.comparison-variant-header-image-frame img{aspect-ratio:4/3}}}@media (min-width: 64rem){[dir=ltr] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{left:0}[dir=rtl] .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{right:0}.comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{width:calc(100% + .1rem)}.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row .comparison-variant-cell{padding:1rem}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell{padding-top:1rem}.comparison-variant .table-rebrand-multiple-table-container{overflow-x:visible}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table{margin-top:0}[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:none}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper,[dir=ltr] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-left:none}[dir=rtl] .comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-right:none}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-truncate-button-wrapper{border-bottom:none;border-radius:0}.comparison-variant .table-rebrand-multiple.table-rebrand-last-table .comparison-variant-last-visible-row-overlay .comparison-variant-cell:after{width:calc(100% + .1rem)}.comparison-variant .table-rebrand-multiple .comparison-variant-truncate-button-wrapper{border:none}.comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-table{border-radius:1rem}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-left:none}[dir=rtl] .comparison-variant .table-rebrand-multiple:not(.table-rebrand-last-table) .comparison-variant-truncate-button-wrapper{border-right:none}.comparison-variant-table{border:unset;border-radius:0}.comparison-variant-header-row th{border-top:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-header-row th:nth-child(2){border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-header-row th:nth-child(2){border-right:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-header-row th:nth-child(2){border-top-left-radius:1rem}[dir=rtl] .comparison-variant-header-row th:nth-child(2){border-top-right-radius:1rem}[dir=ltr] .comparison-variant-header-row th:last-child{border-top-right-radius:1rem}[dir=rtl] .comparison-variant-header-row th:last-child{border-top-left-radius:1rem}[dir=ltr] .comparison-variant-header-row th:last-child{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-header-row th:last-child{border-left:.0625rem solid #e6e0d9}.comparison-variant-header-row th:first-child{border-top:unset}[dir=ltr] .comparison-variant tr.comparison-variant-data-row th.comparison-variant-cell{border-top-left-radius:1rem}[dir=rtl] .comparison-variant tr.comparison-variant-data-row th.comparison-variant-cell{border-top-right-radius:1rem}[dir=ltr] .comparison-variant tr.comparison-variant-data-row~.comparison-variant-data-row th.comparison-variant-cell{border-top-left-radius:unset}[dir=rtl] .comparison-variant tr.comparison-variant-data-row~.comparison-variant-data-row th.comparison-variant-cell{border-top-right-radius:unset}.comparison-variant-data-row th.comparison-variant-cell{background-color:#faf8f5;border-bottom:.0625rem solid #e6e0d9}.comparison-variant-data-row td.comparison-variant-cell{border-bottom:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-data-row td.comparison-variant-cell:nth-child(2){border-left:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-data-row td.comparison-variant-cell:nth-child(2){border-right:.0625rem solid #e6e0d9}[dir=ltr] .comparison-variant-data-row td.comparison-variant-cell:last-child{border-right:.0625rem solid #e6e0d9}[dir=rtl] .comparison-variant-data-row td.comparison-variant-cell:last-child{border-left:.0625rem solid #e6e0d9}.comparison-variant-last-visible-row-overlay th.comparison-variant-cell:first-child,.comparison-variant-last-visible-row-overlay td.comparison-variant-cell{border-bottom:unset}}@media (min-width: 91.875rem){.comparison-variant-table.table-bnpl-table tr.comparison-variant-data-row .comparison-variant-cell{padding:1rem 1.5rem}.comparison-variant-table.table-bnpl-table tr.comparison-variant-header-row th.comparison-variant-cell{padding:1.5rem}}.table-expand-button .body-text-size-body-bold{font-weight:400}.page-segment-control-nav-wrapper{background-color:#fff}.page-segment-control-nav-wrapper .page-segment-control-nav-tab-content{display:none;visibility:hidden}.page-segment-control-nav-wrapper .page-segment-control-nav-tab-content.page-segment-control-nav-active-content{display:block;visibility:visible}.page-segment-control-nav-sticky-wrapper{position:-webkit-sticky;position:sticky;z-index:3}.page-segment-control-nav{overflow:auto;transition:all .3s cubic-bezier(.22,1,.36,1)}.page-segment-control-nav.sticky{box-shadow:0 0 .5rem #0000000a,0 .125rem 1.125rem #0000001a;padding-top:1rem;padding-bottom:1rem}.page-segment-control-nav .page-segment-control-nav-griditem{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;display:flex;flex-direction:row;gap:1rem;justify-content:center;align-items:center;position:relative}.page-segment-control-nav .page-segment-control-nav-links{display:flex;flex-direction:row;align-items:center;justify-content:flex-end}.page-segment-control-nav .page-segment-control-nav-link{white-space:nowrap;text-align:center;text-decoration:none;cursor:pointer;margin:0;padding:.1875rem .625rem;border-radius:6.25rem;z-index:0;position:relative;background-color:transparent}.page-segment-control-nav .page-segment-control-nav-link:before{content:\\\"\\\";position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;transition:all .3s cubic-bezier(.22,1,.36,1);border:.0625rem solid #e6e0d9;opacity:0;border-radius:6.25rem}.page-segment-control-nav .page-segment-control-nav-link:hover{color:#0070e0}.page-segment-control-nav .page-segment-control-nav-link:hover:before{top:-.0625rem;right:-.0625rem;bottom:-.0625rem;left:-.0625rem;opacity:1}.page-segment-control-nav .page-segment-control-nav-link:active{color:#003087}.page-segment-control-nav .page-segment-control-nav-link:active:before{background-color:#b9effc;opacity:.4;border-radius:6.25rem;top:.0625rem;right:.0625rem;bottom:.0625rem;left:.0625rem}.page-segment-control-nav .page-segment-control-nav-link.focus-visible{box-shadow:0 0 0 .375rem #1072eb29;outline:.125rem solid #0070e0;box-sizing:border-box;outline-offset:0}.page-segment-control-nav .page-segment-control-nav-link:focus-visible{box-shadow:0 0 0 .375rem #1072eb29;outline:.125rem solid #0070e0;box-sizing:border-box;outline-offset:0}@media only screen and (min-width: 64rem){.page-segment-control-nav .page-segment-control-nav-griditem{flex-direction:row}[dir=ltr] .page-segment-control-nav .page-segment-control-nav-links{right:0}[dir=rtl] .page-segment-control-nav .page-segment-control-nav-links{left:0}.page-segment-control-nav .page-segment-control-nav-links{display:flex;flex-direction:row;align-items:center;margin-top:0;padding-top:0;position:absolute}}@media only screen and (min-width: 91.875rem){.page-segment-control-nav .page-segment-control-nav-link:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}.page-segment-control-nav .page-segment-control-nav-link:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}}.page-segment-control-nav .page-segment-control-nav-tab .body-text-size-caption-bold,.page-segment-control-nav .page-segment-control-nav-tab-active .body-text-size-caption-bold,.page-segment-control-nav .page-segment-control-nav-tab .body-text-size-body-large-bold,.page-segment-control-nav .page-segment-control-nav-tab-active .body-text-size-body-large-bold{font-weight:400}.grid-compact.font-quantum-leap.page-segment-control-nav.sticky{border-bottom:1px solid #dbdde0}.grid-compact.font-quantum-leap.page-segment-control-nav .page-segment-control-nav-link:hover:before{border-color:#dbdde0}@media screen and (max-width: 41rem){.grid.grid-compact.split-graphic-section .split-section-item-text{padding-top:3rem}.grid.grid-compact.split-graphic-section.split-graphic-section-image-position-start .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 13.62%}.grid.grid-compact.split-graphic-section.split-graphic-section-image-position-end .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: -13.62%}}@media only screen and (min-width: 41.0625rem){.grid.grid-compact.split-graphic-section .split-section-item-start-col{min-height:30vw;align-self:center}}@media only screen and (min-width: 91.875rem){.grid.grid-compact.split-graphic-section .split-section-item-start-col{min-height:32vw;align-self:center}}@media only screen and (min-width: 120rem){.grid.grid-compact.split-graphic-section .split-section-item-start-col{min-height:36rem;align-self:center}}.grid.split-graphic-section{align-content:center;grid-template-rows:auto auto}@media screen and (max-width: 41rem){.grid.split-graphic-section.split-graphic-section-mobile-spacing{padding-top:0}.grid.split-graphic-section.split-graphic-section-mobile-spacing.grid{grid-row-gap:0vw}.grid.split-graphic-section .split-section-item-text{padding-top:6rem}}.grid.split-graphic-section .split-section-item-media-container{min-height:80vw;aspect-ratio:1/1}@media (min-width: 41.0625rem){.grid.split-graphic-section .split-section-item-media-container{min-height:auto}}@media (min-width: 41.0625rem){.grid.split-graphic-section{grid-template-rows:auto;min-height:auto}}@media (min-width: 64rem){.grid.split-graphic-section{height:100%}}@media only screen and (min-width: 41.0625rem){.grid.split-graphic-section .split-section-item-start-col{min-height:auto;align-self:center}}@media only screen and (min-width: 41.0625rem){.grid.split-graphic-section .split-section-item-start-col{min-height:40vw;align-self:center}}@media only screen and (min-width: 120rem){.grid.split-graphic-section .split-section-item-start-col{min-height:52rem;align-self:center}}.grid.split-graphic-section.split-graphic-section-image-position-end .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: -21.3%}@media (min-width: 41.0625rem){.grid.split-graphic-section.split-graphic-section-image-position-end .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 0;transform:none}}.grid.split-graphic-section.split-graphic-section-image-position-start .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 21.3%}@media (min-width: 41.0625rem){.grid.split-graphic-section.split-graphic-section-image-position-start .split-graphic-background .graphic-lottie-lottie-player{--graphic-offset: 0;transform:none}}.split-section-item-text{display:flex;margin-top:0}.split-section-item-text .text-group{align-self:center}.swatch-item{--background-scale: 1}.swatch-item.focus-visible{cursor:pointer;outline:none;transform:scale(1.005)}.swatch-item:focus-visible{cursor:pointer;outline:none;transform:scale(1.005)}.swatch-item.focus-visible:after,.swatch-item.focus-visible:before{content:\\\"\\\";position:absolute;top:0rem;width:100%;height:100%;text-indent:0rem;pointer-events:none;border-radius:1rem}.swatch-item:focus-visible:after,.swatch-item:focus-visible:before{content:\\\"\\\";position:absolute;top:0rem;width:100%;height:100%;text-indent:0rem;pointer-events:none;border-radius:1rem}@media screen and (min-width: 64rem){.swatch-item.focus-visible:after,.swatch-item.focus-visible:before{border-radius:1.5rem}.swatch-item:focus-visible:after,.swatch-item:focus-visible:before{border-radius:1.5rem}}.swatch-item.focus-visible:after{border:.1875rem solid #097ff5}.swatch-item:focus-visible:after{border:.1875rem solid #097ff5}.swatch-item.focus-visible:before{box-shadow:0 0 0 .375rem #1072eb29}.swatch-item:focus-visible:before{box-shadow:0 0 0 .375rem #1072eb29}.swatch-item-textposition-top .swatch-item-text-arrow-section,.swatch-item-text-position-top .swatch-item-text-arrow-section,.swatch-item-textposition-top .swatch-item-text-section,.swatch-item-text-position-top .swatch-item-text-section,.swatch-item-textposition-top .swatch-item-arrow-section,.swatch-item-text-position-top .swatch-item-arrow-section{align-items:start}.swatch-item-textposition-bottom .swatch-item-text-arrow-section,.swatch-item-text-position-bottom .swatch-item-text-arrow-section,.swatch-item-textposition-bottom .swatch-item-text-section,.swatch-item-text-position-bottom .swatch-item-text-section,.swatch-item-textposition-bottom .swatch-item-arrow-section,.swatch-item-text-position-bottom .swatch-item-arrow-section{align-self:end}.swatch-item-text-arrow-section{width:100%;display:flex;flex-direction:row;padding:1.25rem 1.5rem;justify-content:space-between}@media screen and (min-width: 91.875rem){.swatch-item-text-arrow-section{padding:2rem}}@media screen and (min-width: 120rem){.swatch-item-text-arrow-section{padding:3rem}}.swatch-item-text-arrow-section .text-group-headline{margin-bottom:0}.swatch-item{position:relative;min-height:6rem;height:100%;width:100%;display:flex;text-decoration:none;transform:none;border-radius:1rem;overflow:hidden}@media screen and (min-width: 64rem){.swatch-item{border-radius:1.5rem}}@media screen and (min-width: 120rem){.swatch-item{min-height:12rem}}.swatch-item:hover,.swatch-item:focus{text-decoration:none}.swatch-item.swatch-item-background-color-blue-600{background-color:#0070e0}.swatch-item.swatch-item-background-color-blue-700{background-color:#001c64}.swatch-item.swatch-item-background-color-gold{background-color:#ffd140}.swatch-item.swatch-item-background-color-neutral-100{background-color:#faf8f5}.swatch-item .swatch-item-bgackgroundimg{position:absolute;max-width:100%;height:100%;width:100%}.swatch-item .swatch-item-bgackgroundimg picture{height:100%}.swatch-item .swatch-item-bgackgroundimg img{max-width:100%;height:100%;width:100%;aspect-ratio:16/9;-o-object-fit:cover;object-fit:cover}.swatch-item-header.white-plate{padding:0;background-color:transparent}.swatch-item-container,.swatch-item-bgackgroundimg{overflow:hidden;border-radius:1rem}@media screen and (min-width: 64rem){.swatch-item-container,.swatch-item-bgackgroundimg{border-radius:1.5rem}}.swatch-item-bgackgroundimg img{transition:transform .9s cubic-bezier(.22,1,.36,1);transform:scale(var(--background-scale))}.swatch-item-media-frame-container{display:inline-flex;height:100%;aspect-ratio:16 / 9}.swatch-item-container{display:flex;height:100%;width:100%;z-index:1}.grid.swatch-grid-type-section-container{--row-height: 7.25rem;grid-auto-rows:var(--row-height);grid-template-rows:var(--row-height)}@media screen and (min-width: 64rem){.grid.swatch-grid-type-section-container{--row-height: 11vw}.grid.swatch-grid-type-section-container .section-wrapper-disclosure{grid-column-start:4;grid-column-end:-4}}@media screen and (min-width: 120rem){.grid.swatch-grid-type-section-container{--row-height: 12rem}}.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(132% + 36vw);padding-top:12vw;padding-bottom:12vw}.text-graphic-background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;display:flex;top:-2.125rem;left:-2.125rem;width:calc(100% + 13.0625rem);background:#faf8f5}.text-graphic-background-container{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;aspect-ratio:2/3}@media (min-width: 23.4375rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(126% + 36vw)}}@media (max-width: 41rem){.text-graphic-background .image-parallax-frame-inner{max-height:100%}}@media (min-width: 41.0625rem){.text-graphic-section{min-height:100vw}.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(64% + 24vw)}.text-graphic-background-container{-webkit-mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");mask-image:url(\\\"data:image/svg+xml,%3Csvg width='375' viewBox='0 0 375 519' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M69.848 518.868H0V0H216.768C316.764 0 387.257 78.6602 373.124 168.867C359.094 258.283 282.274 324.297 191.734 324.297H132.501C123.319 324.297 115.479 330.998 114.035 340.07L88.3137 503.095C86.8695 512.167 79.0637 518.868 69.848 518.868Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;aspect-ratio:2/3;-webkit-mask-image:url(\\\"data:image/svg+xml,%3Csvg width='1920' viewBox='0 0 1920 1955' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M357.622 1954.61H0V0H1918.25C1921.5 52.9614 1919.05 107.357 1910.39 162.598C1838.56 620.409 1445.24 958.401 981.679 958.401H678.403C631.396 958.401 591.254 992.711 583.859 1039.16L452.166 1873.85C444.771 1920.3 404.806 1954.61 357.622 1954.61Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");mask-image:url(\\\"data:image/svg+xml,%3Csvg width='1920' viewBox='0 0 1920 1955' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M357.622 1954.61H0V0H1918.25C1921.5 52.9614 1919.05 107.357 1910.39 162.598C1838.56 620.409 1445.24 958.401 981.679 958.401H678.403C631.396 958.401 591.254 992.711 583.859 1039.16L452.166 1873.85C444.771 1920.3 404.806 1954.61 357.622 1954.61Z' fill='%23C4C4C4'/%3E%3C/svg%3E%0A\\\");aspect-ratio:auto}.text-graphic-background{top:-3.625rem;left:-3.75rem;width:calc(100% + 7.625rem)}}@media (min-width: 64rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(82% + 24vw)}.text-graphic-background{height:100%;top:-5.215rem;left:-5.845rem;width:calc(100% + 11.884rem)}}@media (min-width: 91.875rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(74% + 20vw)}.text-graphic-background{top:-7.486rem;left:-8.39rem;width:calc(100% + 8.39rem + 8.67rem)}}@media (min-width: 120rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(100% + 14vw)}.text-graphic-background{top:-17.3125rem;left:-15rem;width:calc(100% + 30rem)}}@media (min-width: 140rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(100% + 12vw)}.text-graphic-section{min-height:auto}}@media (min-width: 165rem){.text-graphic-section .text-graphic-section-text-group-grid{margin-top:calc(100% + 2vw)}.text-graphic-section .text-graphic-section-text-group-grid{padding-top:8vw;padding-bottom:4vw}}.slate-plate .segment-control-group-tabs-container a[class^=segment-control-group-tab] span,.slate-gradient-plate .segment-control-group-tabs-container a[class^=segment-control-group-tab] span{color:#001c64}._segment-control-tab_h13hi_1{--seg-style-text--color: #001c64;--seg-style-active-shadow--color: rgba(0, 112, 224, .5);--seg-style-focus-shadow--color: rgba(16, 114, 235, .16);--seg-style-focus-outline--color: #0070e0;--seg-style-border--color: #001c64;position:relative;display:block;padding:.75rem 2rem;cursor:pointer;text-align:center;text-decoration:none;background-color:transparent;outline:none;border:none;overflow:visible;z-index:0}._segment-control-tab_h13hi_1:after{content:attr(data-text);color:var(--style-general-text);font-family:PayPalOpen-Regular,Helvetica Neue,Arial,sans-serif;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;max-width:75ch;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em;display:block;height:0;visibility:hidden;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}._segment-control-tab_h13hi_1:before{content:\\\"\\\";position:absolute;top:.125rem;right:.125rem;bottom:.125rem;left:.125rem;border-radius:2rem;border:.125rem solid transparent;transition:.3s cubic-bezier(.22,1,.36,1);transition-property:inset,border-color,background-color;will-change:inset,border-color,background-color;z-index:-1}._segment-control-tab_h13hi_1:hover:before{top:0;right:0;bottom:0;left:0}._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:hover:before{top:-.125rem;right:-.125rem;bottom:-.125rem;left:-.125rem}._segment-control-tab_h13hi_1:hover:before,._segment-control-tab_h13hi_1:active:before,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:before,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:hover:before{border:.15625rem solid rgba(0,112,224,.5);border:.15625rem solid var(--seg-style-active-shadow--color, rgba(0, 112, 224, .5));box-shadow:none}._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:before{border:.125rem solid #ffffff;border:.125rem solid var(--seg-style-border--color, #ffffff)}._segment-control-tab_h13hi_1:active:before{top:.125rem;right:.125rem;bottom:.125rem;left:.125rem}._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:before,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:active:before{top:0rem;right:0rem;bottom:0rem;left:0rem}._segment-control-tab_h13hi_1:hover ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1._focus-visible_h13hi_1 ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1:active ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52 ._segment-control-tab-text_h13hi_72{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}._segment-control-tab_h13hi_1:hover ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1:focus-visible ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1:active ._segment-control-tab-text_h13hi_72,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52 ._segment-control-tab-text_h13hi_72{font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;letter-spacing:-.025em}._segment-control-tab_h13hi_1._focus-visible_h13hi_1,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52._focus-visible_h13hi_1{outline:.125rem solid #0070e0;outline:.125rem solid var(--seg-style-focus-outline--color, #0070e0);outline-offset:0;border-radius:2rem;box-shadow:0 0 0 .375rem #1072eb29;box-shadow:0 0 0 .375rem var(--seg-style-focus-shadow--color, rgba(16, 114, 235, .16))}._segment-control-tab_h13hi_1:focus-visible,._segment-control-tab_h13hi_1._segment-control-tab-is-active_h13hi_52:focus-visible{outline:.125rem solid #0070e0;outline:.125rem solid var(--seg-style-focus-outline--color, #0070e0);outline-offset:0;border-radius:2rem;box-shadow:0 0 0 .375rem #1072eb29;box-shadow:0 0 0 .375rem var(--seg-style-focus-shadow--color, rgba(16, 114, 235, .16))}._segment-control-tab_h13hi_1 ._segment-control-tab-text_h13hi_72{color:#fff;color:var(--seg-style-text--color, #ffffff)}._segment-control-tab-theme-secondary_h13hi_89{--seg-style-text--color: #ffffff;--seg-style-active-shadow--color: rgba(0, 112, 224, .5);--seg-style-focus-shadow--color: rgba(16, 114, 235, .16);--seg-style-focus-outline--color: #0070e0;--seg-style-border--color: #ffffff}._segment-control-group_55zyk_1{display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;gap:.5rem}nav._segment-control-group_55zyk_1{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}nav._segment-control-group_55zyk_1 ul{padding:0;margin:0;list-style-type:none;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;gap:.5rem}._grid_bhcu0_4{--edge-rail-col--width: 0;--outer-rail-col--width: 0;--inner-rail-col--width: 1fr;--inner-cols--num: 4;--grid-fluid-clamp-value--sm: clamp(.5rem, -.29999999999999993rem + 1.25vw, 1.2rem);--grid-fluid-clamp-value--md: clamp(1rem, -.5999999999999999rem + 2.5vw, 2.4rem);--grid-fluid-clamp-value--lg: clamp(2rem, -1.1999999999999997rem + 5vw, 4.8rem);--grid-fluid-clamp-value--xl: clamp(3rem, -1.7999999999999998rem + 7.5vw, 7.2rem);--grid-fluid-clamp-value--2xl: clamp(4rem, -2.3999999999999995rem + 10vw, 9.6rem);--grid-fluid-clamp-value--3xl: clamp(6rem, -3.5999999999999996rem + 15vw, 14.4rem);--grid-gap: clamp(1rem, .8226111636707663rem + .7568590350047304vw, 1.5rem);position:relative;display:grid;grid-column-gap:var(--grid-gap);grid-row-gap:var(--grid-gap);grid-template-columns:var(--edge-rail-col--width) var(--outer-rail-col--width) repeat(var(--inner-cols--num),var(--inner-rail-col--width)) var(--outer-rail-col--width) var(--edge-rail-col--width)}@supports not (font-size: clamp(.5rem,-.29999999999999993rem + 1.25vw,1.2rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--sm: min(max(.5rem, -.29999999999999993rem + 1.25vw), 1.2rem)}}@supports not (font-size: clamp(1rem,-.5999999999999999rem + 2.5vw,2.4rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--md: min(max(1rem, -.5999999999999999rem + 2.5vw), 2.4rem)}}@supports not (font-size: clamp(2rem,-1.1999999999999997rem + 5vw,4.8rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--lg: min(max(2rem, -1.1999999999999997rem + 5vw), 4.8rem)}}@supports not (font-size: clamp(3rem,-1.7999999999999998rem + 7.5vw,7.2rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--xl: min(max(3rem, -1.7999999999999998rem + 7.5vw), 7.2rem)}}@supports not (font-size: clamp(4rem,-2.3999999999999995rem + 10vw,9.6rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--2xl: min(max(4rem, -2.3999999999999995rem + 10vw), 9.6rem)}}@supports not (font-size: clamp(6rem,-3.5999999999999996rem + 15vw,14.4rem)){._grid_bhcu0_4{--grid-fluid-clamp-value--3xl: min(max(6rem, -3.5999999999999996rem + 15vw), 14.4rem)}}@supports not (font-size: clamp(1rem,.8226111636707663rem + .7568590350047304vw,1.5rem)){._grid_bhcu0_4{--grid-gap: min(max(1rem, .8226111636707663rem + .7568590350047304vw), 1.5rem)}}@media only screen and (min-width: 64rem){._grid_bhcu0_4{--inner-cols--num: 12;--edge-rail-col--width: 8rem;--col-width: calc((100% - calc(var(--edge-rail-col--width) * 2) - calc(var(--grid-gap) * 15)) / 12)}}@media only screen and (min-width: 89.5rem){._grid_bhcu0_4{--edge-rail-col--width: clamp(8rem, -24.278688524590166rem + 36.0655737704918vw, 19rem);--outer-rail-col--width: 1fr;--inner-rail-col--width: calc((67.5rem - calc((var(--inner-cols--num) - 1) * 1.5rem)) / var(--inner-cols--num)) !important}@supports not (font-size: clamp(8rem,-24.278688524590166rem + 36.0655737704918vw,19rem)){._grid_bhcu0_4{--edge-rail-col--width: min(max(8rem, -24.278688524590166rem + 36.0655737704918vw), 19rem)}}}@media only screen and (min-width: 120rem){._grid_bhcu0_4{--edge-rail-col--width: 1fr;--outer-rail-col--width: 4.25rem}}[class*=grid_].pb-fixed-xs{padding-bottom:.25rem}[class*=grid_].pb-fixed-sm{padding-bottom:.375rem}[class*=grid_].pb-fixed-md{padding-bottom:.5rem}[class*=grid_].pb-fixed-lg{padding-bottom:.75rem}[class*=grid_].pb-fixed-xl{padding-bottom:1rem}[class*=grid_].pb-fixed-2xl{padding-bottom:1.5rem}[class*=grid_].pb-fixed-3xl{padding-bottom:2rem}[class*=grid_].pb-fixed-4xl{padding-bottom:3rem}[class*=grid_].pb-fixed-5xl{padding-bottom:4.5rem}[class*=grid_].pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}[class*=grid_].pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}[class*=grid_].pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}[class*=grid_].pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}[class*=grid_].pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].pb-0{padding-bottom:0}[class*=grid_].pt-fixed-xs{padding-top:.25rem}[class*=grid_].pt-fixed-sm{padding-top:.375rem}[class*=grid_].pt-fixed-md{padding-top:.5rem}[class*=grid_].pt-fixed-lg{padding-top:.75rem}[class*=grid_].pt-fixed-xl{padding-top:1rem}[class*=grid_].pt-fixed-2xl{padding-top:1.5rem}[class*=grid_].pt-fixed-3xl{padding-top:2rem}[class*=grid_].pt-fixed-4xl{padding-top:3rem}[class*=grid_].pt-fixed-5xl{padding-top:4.5rem}[class*=grid_].pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}[class*=grid_].pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}[class*=grid_].pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}[class*=grid_].pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}[class*=grid_].pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].pt-0{padding-top:0}[class*=grid_].mb-fixed-xs{margin-bottom:.25rem}[class*=grid_].mb-fixed-sm{margin-bottom:.375rem}[class*=grid_].mb-fixed-md{margin-bottom:.5rem}[class*=grid_].mb-fixed-lg{margin-bottom:.75rem}[class*=grid_].mb-fixed-xl{margin-bottom:1rem}[class*=grid_].mb-fixed-2xl{margin-bottom:1.5rem}[class*=grid_].mb-fixed-3xl{margin-bottom:2rem}[class*=grid_].mb-fixed-4xl{margin-bottom:3rem}[class*=grid_].mb-fixed-5xl{margin-bottom:4.5rem}[class*=grid_].mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}[class*=grid_].mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}[class*=grid_].mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}[class*=grid_].mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}[class*=grid_].mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].mb-0{margin-bottom:0}[class*=grid_].mt-fixed-xs{margin-top:.25rem}[class*=grid_].mt-fixed-sm{margin-top:.375rem}[class*=grid_].mt-fixed-md{margin-top:.5rem}[class*=grid_].mt-fixed-lg{margin-top:.75rem}[class*=grid_].mt-fixed-xl{margin-top:1rem}[class*=grid_].mt-fixed-2xl{margin-top:1.5rem}[class*=grid_].mt-fixed-3xl{margin-top:2rem}[class*=grid_].mt-fixed-4xl{margin-top:3rem}[class*=grid_].mt-fixed-5xl{margin-top:4.5rem}[class*=grid_].mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}[class*=grid_].mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}[class*=grid_].mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}[class*=grid_].mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}[class*=grid_].mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].mt-0{margin-top:0}[class*=grid_].gap-fixed-xs{grid-row-gap:.25rem}[class*=grid_].gap-fixed-sm{grid-row-gap:.375rem}[class*=grid_].gap-fixed-md{grid-row-gap:.5rem}[class*=grid_].gap-fixed-lg{grid-row-gap:.75rem}[class*=grid_].gap-fixed-xl{grid-row-gap:1rem}[class*=grid_].gap-fixed-2xl{grid-row-gap:1.5rem}[class*=grid_].gap-fixed-3xl{grid-row-gap:2rem}[class*=grid_].gap-fixed-4xl{grid-row-gap:3rem}[class*=grid_].gap-fixed-5xl{grid-row-gap:4.5rem}[class*=grid_].gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}[class*=grid_].gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}[class*=grid_].gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}[class*=grid_].gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}[class*=grid_].gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}[class*=grid_].gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}[class*=grid_].gap-0{grid-row-gap:0}[class*=grid_].gap-default{grid-row-gap:var(--grid-gap)}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 41.0625rem){[class*=grid_].md\\\\:gap-default{grid-row-gap:var(--grid-gap)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 64rem){[class*=grid_].lg\\\\:gap-default{grid-row-gap:var(--grid-gap)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 91.875rem){[class*=grid_].xl\\\\:gap-default{grid-row-gap:var(--grid-gap)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-xs{margin-bottom:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-sm{margin-bottom:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-md{margin-bottom:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-lg{margin-bottom:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-xl{margin-bottom:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-2xl{margin-bottom:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-3xl{margin-bottom:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-4xl{margin-bottom:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fixed-5xl{margin-bottom:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-sm{margin-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-md{margin-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-lg{margin-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-xl{margin-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-2xl{margin-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-fluid-3xl{margin-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mb-0{margin-bottom:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-xs{margin-top:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-sm{margin-top:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-md{margin-top:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-lg{margin-top:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-xl{margin-top:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-2xl{margin-top:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-3xl{margin-top:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-4xl{margin-top:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fixed-5xl{margin-top:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-sm{margin-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-md{margin-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-lg{margin-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-xl{margin-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-2xl{margin-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-fluid-3xl{margin-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:mt-0{margin-top:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-xs{grid-row-gap:.25rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-sm{grid-row-gap:.375rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-md{grid-row-gap:.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-lg{grid-row-gap:.75rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-xl{grid-row-gap:1rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-2xl{grid-row-gap:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-3xl{grid-row-gap:2rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-4xl{grid-row-gap:3rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fixed-5xl{grid-row-gap:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-sm{grid-row-gap:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-md{grid-row-gap:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-lg{grid-row-gap:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-xl{grid-row-gap:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-2xl{grid-row-gap:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-fluid-3xl{grid-row-gap:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-0{grid-row-gap:0}}@media only screen and (min-width: 120rem){[class*=grid_].\\\\32xl\\\\:gap-default{grid-row-gap:var(--grid-gap)}}._grid-item_u5yv6_1{display:block;grid-row-start:auto;grid-row-end:auto;grid-column-start:3;grid-column-end:7;align-self:auto}@media only screen and (min-width: 64rem){._grid-item_u5yv6_1{grid-column-start:3;grid-column-end:15}}[class*=grid-item_].pb-fixed-xs{padding-bottom:.25rem}[class*=grid-item_].pb-fixed-sm{padding-bottom:.375rem}[class*=grid-item_].pb-fixed-md{padding-bottom:.5rem}[class*=grid-item_].pb-fixed-lg{padding-bottom:.75rem}[class*=grid-item_].pb-fixed-xl{padding-bottom:1rem}[class*=grid-item_].pb-fixed-2xl{padding-bottom:1.5rem}[class*=grid-item_].pb-fixed-3xl{padding-bottom:2rem}[class*=grid-item_].pb-fixed-4xl{padding-bottom:3rem}[class*=grid-item_].pb-fixed-5xl{padding-bottom:4.5rem}[class*=grid-item_].pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}[class*=grid-item_].pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}[class*=grid-item_].pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}[class*=grid-item_].pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}[class*=grid-item_].pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}[class*=grid-item_].pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}[class*=grid-item_].pb-0{padding-bottom:0}[class*=grid-item_].pt-fixed-xs{padding-top:.25rem}[class*=grid-item_].pt-fixed-sm{padding-top:.375rem}[class*=grid-item_].pt-fixed-md{padding-top:.5rem}[class*=grid-item_].pt-fixed-lg{padding-top:.75rem}[class*=grid-item_].pt-fixed-xl{padding-top:1rem}[class*=grid-item_].pt-fixed-2xl{padding-top:1.5rem}[class*=grid-item_].pt-fixed-3xl{padding-top:2rem}[class*=grid-item_].pt-fixed-4xl{padding-top:3rem}[class*=grid-item_].pt-fixed-5xl{padding-top:4.5rem}[class*=grid-item_].pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}[class*=grid-item_].pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}[class*=grid-item_].pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}[class*=grid-item_].pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}[class*=grid-item_].pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}[class*=grid-item_].pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}[class*=grid-item_].pt-0{padding-top:0}[class*=grid-item_].row-start-1{grid-row-start:1}[class*=grid-item_].row-start-2{grid-row-start:2}[class*=grid-item_].row-start-3{grid-row-start:3}[class*=grid-item_].row-start-4{grid-row-start:4}[class*=grid-item_].row-start-auto{grid-row-start:auto}[class*=grid-item_].row-end-2{grid-row-end:2}[class*=grid-item_].row-end-3{grid-row-end:3}[class*=grid-item_].row-end-4{grid-row-end:4}[class*=grid-item_].row-end-5{grid-row-end:5}[class*=grid-item_].row-end-auto{grid-row-end:auto}[class*=grid-item_].row-end-span-1{grid-row-end:span 1}[class*=grid-item_].row-end-span-2{grid-row-end:span 2}[class*=grid-item_].row-end-span-3{grid-row-end:span 3}[class*=grid-item_].row-end-span-4{grid-row-end:span 4}[class*=grid-item_].align-start{align-self:start}[class*=grid-item_].align-center{align-self:center}[class*=grid-item_].align-end{align-self:end}[class*=grid-item_].align-default{align-self:default}[class*=grid-item_].col-start-auto{grid-column-start:auto}[class*=grid-item_].col-start-l-edge{grid-column-start:1}[class*=grid-item_].col-start-l-outer{grid-column-start:2}[class*=grid-item_].col-start-l-inner{grid-column-start:3}[class*=grid-item_].col-start-4{grid-column-start:4}[class*=grid-item_].col-start-5{grid-column-start:5}[class*=grid-item_].col-start-6{grid-column-start:6}[class*=grid-item_].col-start-7{grid-column-start:7}[class*=grid-item_].col-start-r-inner{grid-column-start:-3}[class*=grid-item_].col-start-r-outer{grid-column-start:-2}[class*=grid-item_].col-start-r-edge{grid-column-start:-1}[class*=grid-item_].col-end-auto{grid-column-end:auto}[class*=grid-item_].col-end-l-edge{grid-column-end:1}[class*=grid-item_].col-end-l-outer{grid-column-end:2}[class*=grid-item_].col-end-l-inner{grid-column-end:3}[class*=grid-item_].col-end-4{grid-column-end:4}[class*=grid-item_].col-end-5{grid-column-end:5}[class*=grid-item_].col-end-6{grid-column-end:6}[class*=grid-item_].col-end-7{grid-column-end:7}[class*=grid-item_].col-end-r-inner{grid-column-end:-3}[class*=grid-item_].col-end-r-outer{grid-column-end:-2}[class*=grid-item_].col-end-r-edge{grid-column-end:-1}[class*=grid-item_].d-block{display:block}[class*=grid-item_].d-none{display:none}[class*=grid-item_].z-5{z-index:5}[class*=grid-item_].z-10{z-index:10}[class*=grid-item_].z-15{z-index:15}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-start{align-self:start}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-center{align-self:center}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-end{align-self:end}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:align-default{align-self:default}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:d-block{display:block}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:d-none{display:none}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:z-5{z-index:5}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:z-10{z-index:10}}@media only screen and (min-width: 41.0625rem){[class*=grid-item_].md\\\\:z-15{z-index:15}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-start{align-self:start}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-center{align-self:center}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-end{align-self:end}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:align-default{align-self:default}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:d-block{display:block}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:d-none{display:none}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:z-5{z-index:5}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:z-10{z-index:10}}@media only screen and (min-width: 64rem){[class*=grid-item_].lg\\\\:z-15{z-index:15}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-start{align-self:start}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-center{align-self:center}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-end{align-self:end}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:align-default{align-self:default}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:d-block{display:block}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:d-none{display:none}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:z-5{z-index:5}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:z-10{z-index:10}}@media only screen and (min-width: 91.875rem){[class*=grid-item_].xl\\\\:z-15{z-index:15}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-xs{padding-bottom:.25rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-sm{padding-bottom:.375rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-md{padding-bottom:.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-lg{padding-bottom:.75rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-xl{padding-bottom:1rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-2xl{padding-bottom:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-3xl{padding-bottom:2rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-4xl{padding-bottom:3rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fixed-5xl{padding-bottom:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-sm{padding-bottom:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-md{padding-bottom:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-lg{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-xl{padding-bottom:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-2xl{padding-bottom:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-fluid-3xl{padding-bottom:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pb-0{padding-bottom:0}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-xs{padding-top:.25rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-sm{padding-top:.375rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-md{padding-top:.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-lg{padding-top:.75rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-xl{padding-top:1rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-2xl{padding-top:1.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-3xl{padding-top:2rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-4xl{padding-top:3rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fixed-5xl{padding-top:4.5rem}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-sm{padding-top:var(--grid-fluid-clamp-value--sm)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-md{padding-top:var(--grid-fluid-clamp-value--md)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-lg{padding-top:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-xl{padding-top:var(--grid-fluid-clamp-value--xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-2xl{padding-top:var(--grid-fluid-clamp-value--2xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-fluid-3xl{padding-top:var(--grid-fluid-clamp-value--3xl)}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:pt-0{padding-top:0}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-1{grid-row-start:1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-2{grid-row-start:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-3{grid-row-start:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-4{grid-row-start:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-start-auto{grid-row-start:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-2{grid-row-end:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-3{grid-row-end:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-4{grid-row-end:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-5{grid-row-end:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-auto{grid-row-end:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-1{grid-row-end:span 1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-2{grid-row-end:span 2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-3{grid-row-end:span 3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:row-end-span-4{grid-row-end:span 4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-start{align-self:start}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-center{align-self:center}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-end{align-self:end}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:align-default{align-self:default}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-auto{grid-column-start:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-l-edge{grid-column-start:1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-l-outer{grid-column-start:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-l-inner{grid-column-start:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-4{grid-column-start:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-5{grid-column-start:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-6{grid-column-start:6}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-7{grid-column-start:7}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-8{grid-column-start:8}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-9{grid-column-start:9}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-10{grid-column-start:10}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-11{grid-column-start:11}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-12{grid-column-start:12}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-13{grid-column-start:13}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-14{grid-column-start:14}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-15{grid-column-start:15}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-r-inner{grid-column-start:-3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-r-outer{grid-column-start:-2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-start-r-edge{grid-column-start:-1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-auto{grid-column-end:auto}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-l-edge{grid-column-end:1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-l-outer{grid-column-end:2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-l-inner{grid-column-end:3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-4{grid-column-end:4}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-5{grid-column-end:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-6{grid-column-end:6}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-7{grid-column-end:7}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-8{grid-column-end:8}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-9{grid-column-end:9}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-10{grid-column-end:10}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-11{grid-column-end:11}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-12{grid-column-end:12}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-13{grid-column-end:13}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-14{grid-column-end:14}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-15{grid-column-end:15}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-r-inner{grid-column-end:-3}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-r-outer{grid-column-end:-2}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:col-end-r-edge{grid-column-end:-1}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:d-block{display:block}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:d-none{display:none}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:z-5{z-index:5}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:z-10{z-index:10}}@media only screen and (min-width: 120rem){[class*=grid-item_].\\\\32xl\\\\:z-15{z-index:15}}._media-control-wrapper_34mt4_1{background-color:transparent;border:none;border-radius:50%;display:inline-flex;padding:initial;box-sizing:border-box;outline:none;display:flex;align-items:center}._media-control-wrapper_34mt4_1.focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}._media-control-wrapper_34mt4_1:focus-visible{border:2.5px solid #0070e0;box-shadow:0 0 0 .375rem #1072eb29;border-radius:50%}._media-control-wrapper-outline_34mt4_17{box-sizing:content-box}._media-control-wrapper-inverse_34mt4_20.focus-visible{border:2.5px solid #5bbbfc}._media-control-wrapper-inverse_34mt4_20:focus-visible{border:2.5px solid #5bbbfc}._media-control-wrapper-size-small_34mt4_23,._media-control-play-svg-small_34mt4_24{width:2.5rem;height:2.5rem}._media-control-wrapper-size-large_34mt4_28,._media-control-play-svg-large_34mt4_29{width:3rem;height:3rem}._media-control-wrapper-size-x-large_34mt4_33,._media-control-play-svg-x-large_34mt4_34{width:5rem;height:5rem}._media-control-play-svg_34mt4_24:hover{cursor:pointer}._media-control-play-svg_34mt4_24:hover ._media-control-circle_34mt4_41{fill:#0070e0}._media-control-play-svg_34mt4_24:hover ._media-control-circle-inverse_34mt4_44{fill:#b9effc}._media-control-play-svg_34mt4_24:active ._media-control-circle_34mt4_41{fill:#001c64}._media-control-play-svg_34mt4_24:active ._media-control-circle-inverse_34mt4_44{fill:#e3e6f1}._media-control-circle-inverse_34mt4_44{fill:#fff}._media-control-triangle-inverse_34mt4_56{fill:#003087}._media-control-play-svg-outline-inverse_34mt4_59>path{fill:#fff}._media-control-play-svg-outline_34mt4_59{border-radius:50%}._media-control-play-svg-outline_34mt4_59:hover,._inline-video_8520u_1:hover{cursor:pointer}._inline-video-overlay_1slkw_1{position:absolute;background-color:#000;opacity:.3;height:100%;width:100%;border-radius:inherit}._video-frame_7p40v_1{position:relative}._video-frame_7p40v_1._video-frame-rounded-corners_7p40v_4 ._video-frame-wrapper_7p40v_4{overflow:hidden;border-radius:clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)}@supports not (font-size: clamp(1.5rem,.6049046321525886rem + 2.17983651226158vw,2rem)){._video-frame_7p40v_1._video-frame-rounded-corners_7p40v_4 ._video-frame-wrapper_7p40v_4{border-radius:min(max(1.5rem,.6049046321525886rem + 2.17983651226158vw),2rem)}}._video-frame-wrapper_7p40v_4{position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;line-height:.5}._video-frame-wrapper_7p40v_4 video,._video-frame-wrapper_7p40v_4 img{-o-object-fit:cover;object-fit:cover;-o-object-position:center top;object-position:center top}._video-frame-wrapper_7p40v_4 video._video-frame-hide_7p40v_24{display:none}._video-frame-wrapper_7p40v_4 video._video-frame-show_7p40v_27{display:block}._video-frame-wrapper_7p40v_4:hover ._video-frame-controls-container_7p40v_30 button{opacity:.25}._video-frame-wrapper_7p40v_4:hover ._video-frame-video-duration_7p40v_33 button{opacity:1}._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button{opacity:0;transition:opacity .6s cubic-bezier(.22,1,.36,1)}._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:hover,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button.focus-visible,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:focus{opacity:1!important}._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:hover,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:focus-visible,._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button:focus{opacity:1!important}@media (hover: none){._video-frame-wrapper_7p40v_4 ._video-frame-controls-container_7p40v_30 button{opacity:1}}._video-frame-wrapper_7p40v_4 ._video-frame-video-duration_7p40v_33 button{opacity:1}._video-frame-wrapper_7p40v_4._video-frame-wrapper-media-control-disable_7p40v_53{pointer-events:none}[dir=ltr] ._video-frame-controls-container_7p40v_30{right:0}[dir=rtl] ._video-frame-controls-container_7p40v_30{left:0}._video-frame-controls-container_7p40v_30{position:absolute;width:4.5%;bottom:0}[dir=ltr] ._video-frame-controls-container_7p40v_30>button{right:100%}[dir=rtl] ._video-frame-controls-container_7p40v_30>button{left:100%}._video-frame-controls-container_7p40v_30>button{position:absolute;bottom:100%}._video-frame-controls-container_7p40v_30:after{content:\\\"\\\";display:block;padding-bottom:100%}._video-frame-main-controls-container_7p40v_72{display:flex;flex-direction:column;align-items:center;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}._video-frame-main-controls-container_7p40v_72>button{margin-bottom:.75rem}._video-frame-body-text_7p40v_84{font-weight:400;font-family:PayPalOpen-Bold,Helvetica Neue,Arial,sans-serif;color:#001c64}._video-frame-button-text-inverse_7p40v_89{color:#fff}._video-frame-youtube-video_7p40v_92{width:95vw;margin:0 .5rem;border-radius:1rem}@supports (aspect-ratio: auto){._video-frame-youtube-video_7p40v_92{aspect-ratio:16/9}}._video-frame-video-md_7p40v_102{display:none;visibility:hidden}._video-frame-video-base_7p40v_106{display:block;visibility:visible}@media (min-width: 41.0625rem){._video-frame-youtube-video_7p40v_92{border-radius:1.5rem}._video-frame-video-md_7p40v_102{display:block;visibility:visible}._video-frame-video-base_7p40v_106{display:none;visibility:hidden}}@media (min-width: 64rem){._video-frame-youtube-video_7p40v_92{max-width:85vw;max-height:85vh}}@media (min-width: 87.875rem){._video-frame-youtube-video_7p40v_92{max-width:75vw;max-height:85vh}}._video-cursor-pointer_7p40v_135:hover{cursor:pointer}._hero-video-animation-video-container_1jm9h_1{width:100%;margin:0 auto;max-width:120rem}._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_]{width:100%}._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_] video{width:100%;aspect-ratio:3 / 4}._hero-video-animation-image-container_1jm9h_13{width:100%}._hero-video-animation-image-container_1jm9h_13 picture>img{width:100%}@media only screen and (min-width: 41.0625rem){._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_] video{aspect-ratio:1}}@media only screen and (min-width: 64rem){._hero-video-animation-video-container_1jm9h_1 [class*=video-frame-wrapper_] video{aspect-ratio:2.23}}._hero-homepage-stack_khze3_2{background:var(--hero-consumer-home-page-stack-bg);overflow:clip;contain:paint;z-index:4;position:relative}._hero-homepage-stack-reduce-motion_khze3_12{height:auto}._hero-homepage-stack-reduce-motion_khze3_12 ._hero-homepage-stack-sticky-container_khze3_15{position:relative}._hero-homepage-stack-theme-white_khze3_18{--hero-consumer-home-page-stack-bg: #ffffff;--scg-linear-gradient-beg-stop--color: rgba(255, 255, 255, 0);--scg-linear-gradient-mid-stop--color: rgba(255, 255, 255, .95);--scg-linear-gradient-end-stop--color: #ffffff}._hero-homepage-stack-theme-stone_khze3_24{--hero-consumer-home-page-stack-bg: #f3f3f6;--scg-linear-gradient-beg-stop--color: rgba(243, 243, 246, 0);--scg-linear-gradient-mid-stop--color: rgba(243, 243, 246, .95);--scg-linear-gradient-end-stop--color: #f3f3f6}._hero-homepage-stack-theme-slate_khze3_30,._hero-homepage-stack-theme-slate-gradient_khze3_31{--scg-linear-gradient-beg-stop--color: rgba(0, 20, 53, 0);--scg-linear-gradient-mid-stop--color: rgba(0, 20, 53, .8);--scg-linear-gradient-end-stop--color: #001435}._hero-homepage-stack-theme-slate_khze3_30{--hero-consumer-home-page-stack-bg: #001435}._hero-homepage-stack-theme-slate-gradient_khze3_31{--hero-consumer-home-page-stack-bg: linear-gradient(180deg, #001435 43.89%, #003087 102%)}@media screen and (min-width: 64rem){._hero-homepage-stack-theme-slate-gradient_khze3_31{--hero-consumer-home-page-stack-bg: linear-gradient(220deg, #001435 69.7%, #003087 101.85%)}}@media only screen and (min-width: 64rem){._hero-homepage-stack-theme-white_khze3_18{--scg-linear-gradient-mid-stop--color: rgba(255, 255, 255, .8)}._hero-homepage-stack-theme-stone_khze3_24{--scg-linear-gradient-mid-stop--color: rgba(243, 243, 246, .8)}._hero-homepage-stack-theme-slate_khze3_30,._hero-homepage-stack-theme-slate-gradient_khze3_31{--scg-linear-gradient-mid-stop--color: rgba(0, 20, 53, .7)}}._hero-homepage-stack-segment-control-group-wrapper_khze3_59{display:flex;justify-content:center;align-items:flex-end}._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{position:-webkit-sticky;position:sticky;bottom:0;background:linear-gradient(180deg,var(--scg-linear-gradient-beg-stop--color) 0%,var(--scg-linear-gradient-mid-stop--color) 50%,var(--scg-linear-gradient-end-stop--color) 100%);min-height:12.5rem;height:30vh;padding-bottom:4rem;margin-bottom:calc(100svh - 100vh);width:100%;display:flex;justify-content:center;align-items:flex-end}._hero-homepage-stack-header-and-media-entry-animation_khze3_77{opacity:0;transform:translateY(var(--grid-fluid-clamp-value--sm));will-change:opacity,transform;animation:1s ease-in-out 1 _header-and-video-entry_khze3_1;animation-fill-mode:forwards;animation-delay:.3s}@keyframes _header-and-video-entry_khze3_1{0%{opacity:0;transform:translateY(var(--grid-fluid-clamp-value--sm))}to{opacity:1;transform:translateY(0)}}._hero-homepage-stack-segment-control-group-entry-animation_khze3_95{opacity:0;transform:translateY(40px);will-change:opacity,transform;animation:1s ease-in-out 1 _segment-control-group-entry_khze3_1;animation-fill-mode:forwards;animation-delay:.3s}@keyframes _segment-control-group-entry_khze3_1{0%{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}._hero-homepage-stack-outer_khze3_113{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}._hero-homepage-stack_khze3_2 [class*=text-group-button_]{margin-top:var(--grid-fluid-clamp-value--lg)}._hero-image-frame_khze3_120{aspect-ratio:3 / 4}@media only screen and (min-width: 23.4375rem) and (orientation: landscape){._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{padding-bottom:var(--grid-fluid-clamp-value--lg)}}@media only screen and (min-width: 41.0625rem){._hero-homepage-stack_khze3_2{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}._hero-homepage-stack-outer_khze3_113{border-bottom-left-radius:1.5rem;border-bottom-right-radius:1.5rem}._hero-image-frame_khze3_120{aspect-ratio:1}}@media only screen and (min-width: 64rem){._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{padding-bottom:2rem}._hero-homepage-stack_khze3_2 [class*=text-group-button_]{margin-top:var(--grid-fluid-clamp-value--md)}._hero-image-frame_khze3_120{aspect-ratio:16 / 9}}@media only screen and (min-width: 91.875rem){._hero-homepage-stack-segment-control-group-wrapper_khze3_59>._hero-homepage-stack-segment-control-group_khze3_59{padding-bottom:4rem}._hero-homepage-stack-outer_khze3_113{border-bottom-left-radius:2.5rem;border-bottom-right-radius:2.5rem}}.mobile-app-store-banner{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1rem 0;background-color:#fff}.mobile-app-store-banner:after{content:\\\"\\\";position:absolute;top:6.4375rem;width:100%;border-bottom:.0625rem solid rgba(198,198,198,.32)}.mobile-app-store-banner-close-button{position:relative;margin:.938rem .75rem;padding:0;background-color:#fff;border:none;display:flex;align-items:center;cursor:pointer}.mobile-app-store-banner-close-button .mobile-app-store-banner-close-icon{width:1.125rem;height:1.125rem;color:#929496}.mobile-app-store-banner-close-button.focus-visible{outline:none}.mobile-app-store-banner-close-button:focus-visible{outline:none}.mobile-app-store-banner-close-button.focus-visible:after{content:\\\"\\\";position:absolute;top:-.25rem;left:-.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #d1e5f9e6;border-radius:inherit;text-indent:-.125rem;width:calc(100% + .5rem);height:calc(100% + .5rem);pointer-events:none;border-radius:50%}.mobile-app-store-banner-close-button:focus-visible:after{content:\\\"\\\";position:absolute;top:-.25rem;left:-.25rem;border:.1875rem solid #097ff5;box-shadow:0 0 0 .375rem #d1e5f9e6;border-radius:inherit;text-indent:-.125rem;width:calc(100% + .5rem);height:calc(100% + .5rem);pointer-events:none;border-radius:50%}.mobile-app-store-banner-logo-frame{border-radius:1rem}.mobile-app-store-banner-logo-frame img{width:4.5rem;height:4.5rem;min-width:4.5rem;min-height:4.5rem;border-radius:1rem;aspect-ratio:1}.mobile-app-store-banner-text-group{display:flex;flex-direction:column;width:100%;min-width:30%;margin:0 .25rem 0 .5rem}.mobile-app-store-banner-headline{color:#001435;font-size:1.25rem;line-height:140%;letter-spacing:-.2px}.mobile-app-store-banner-description{color:#545d68;font-size:.875rem;line-height:140%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-bottom:.25rem}.mobile-app-store-banner-cta-button{margin-right:.75rem}.mobile-app-store-banner-cta-button[class*=button-type]{min-width:-webkit-max-content;min-width:-moz-max-content;min-width:max-content;font-size:.875rem;background-color:#0070e0;border:#0070e0;padding:.375rem 1rem;color:#fff}.mobile-app-store-banner-cta-button[class*=button-type].focus-visible,.mobile-app-store-banner-cta-button[class*=button-type]:hover,.mobile-app-store-banner-cta-button[class*=button-type]:visited{background-color:#0070e0;color:#fff}.mobile-app-store-banner-cta-button[class*=button-type]:focus-visible,.mobile-app-store-banner-cta-button[class*=button-type]:hover,.mobile-app-store-banner-cta-button[class*=button-type]:visited{background-color:#0070e0;color:#fff}.mobile-app-store-banner-star-rating-img,.mobile-app-store-banner-star-rating-img img{height:1.125rem}@media (min-width: 41.0625rem){.mobile-app-store-banner-close-button{margin:.938rem}.mobile-app-store-banner-text-group{margin-left:1rem}.mobile-app-store-banner-cta-button[class*=button-type]{padding:.375rem 1.938rem}}.pricing-feature-table-card-container{padding:2rem 1.5rem;border-radius:1rem}.pricing-feature-table-card .text-group{margin-bottom:2rem}.pricing-feature-table-card-row{padding:1rem 0;display:flex;gap:1rem;flex-direction:column}.pricing-feature-table-card-row .feature-list{margin-top:1rem}.pricing-feature-table-card-row .data-item+.data-item{margin-top:1rem}.pricing-feature-table-card-top-border{border-top:1px solid #929496}.pricing-feature-table-card-top-border+:not(.pricing-feature-table-card-top-border){padding-top:0}.pricing-feature-table-card .white-plate{background-color:#fff}.pricing-feature-table-card .neutral-100-plate{background-color:#faf8f5}.pricing-feature-table-card .blue-600-plate{background-color:#003087}.pricing-feature-table-card .blue-600-plate .pricing-feature-table-card-top-border{border-top:1px solid #b9effc}@media (min-width: 64rem){.pricing-feature-table-card-container{padding:clamp(3.88rem,-.7119282511210763rem + 7.174887892376682vw,5.88rem);border-radius:1.5rem}@supports not (font-size: clamp(3.88rem,-.7119282511210763rem + 7.174887892376682vw,5.88rem)){.pricing-feature-table-card-container{padding:min(max(3.88rem,-.7119282511210763rem + 7.174887892376682vw),5.88rem)}}.pricing-feature-table-card .text-group{margin-bottom:2.5rem}.pricing-feature-table-card-row{flex-direction:row;gap:1.5rem;padding:1.5rem 0}.pricing-feature-table-card-2col-row .pricing-feature-table-card-sub-item-row{width:70%}.pricing-feature-table-card-2col-row .pricing-feature-table-card-pricing-column,.pricing-feature-table-card-3col-row .pricing-feature-table-card-section-headline-row{width:30%}.pricing-feature-table-card-3col-row .pricing-feature-table-card-sub-item-row{width:40%}.pricing-feature-table-card-3col-row .pricing-feature-table-card-pricing-column,.pricing-feature-table-card-3col-media-row .pricing-feature-table-card-media{width:30%}.pricing-feature-table-card-3col-media-row .pricing-feature-table-card-sub-item-row{width:45%}.pricing-feature-table-card-3col-media-row .pricing-feature-table-card-pricing-column{width:25%}.pricing-feature-table-card-3col-mixed-row .pricing-feature-table-card-section-headline-row{width:30%}.pricing-feature-table-card-3col-mixed-row .pricing-feature-table-card-sub-item-row{width:45%}.pricing-feature-table-card-3col-mixed-row .pricing-feature-table-card-pricing-column{width:25%}}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_IMPORT___ from \"../../../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(true);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".hero-media-container {\\n margin-top: 6.5rem;\\n}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://components/HeroSection/index.css\"],\"names\":[],\"mappings\":\"AAAA;EACE,kBAAkB;AACpB\",\"sourcesContent\":[\".hero-media-container {\\n margin-top: 6.5rem;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","// Imports\nimport ___CSS_LOADER_API_IMPORT___ from \"../../node_modules/css-loader/dist/runtime/api.js\";\nvar ___CSS_LOADER_EXPORT___ = ___CSS_LOADER_API_IMPORT___(true);\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \".document-body-root {\\n background: #f1efea;\\n}\\n\\n.document-body {\\n max-width: 140rem;\\n margin: 0 auto;\\n background: #ffffff;\\n}\\n\", \"\",{\"version\":3,\"sources\":[\"webpack://index.css\"],\"names\":[],\"mappings\":\"AAAA;EACE,mBAAmB;AACrB;;AAEA;EACE,iBAAiB;EACjB,cAAc;EACd,mBAAmB;AACrB\",\"sourcesContent\":[\".document-body-root {\\n background: #f1efea;\\n}\\n\\n.document-body {\\n max-width: 140rem;\\n margin: 0 auto;\\n background: #ffffff;\\n}\\n\"],\"sourceRoot\":\"\"}]);\n// Exports\nexport default ___CSS_LOADER_EXPORT___;\n","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery, dedupe) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n if (dedupe) {\n for (var i = 0; i < this.length; i++) {\n // eslint-disable-next-line prefer-destructuring\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n\n for (var _i = 0; _i < modules.length; _i++) {\n var item = [].concat(modules[_i]);\n\n if (dedupe && alreadyImportedModules[item[0]]) {\n // eslint-disable-next-line no-continue\n continue;\n }\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}","var api = require(\"!../../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/postcss-loader/src/index.js??ruleSet[1].rules[0].oneOf[0].use[2]!./index.css\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nmodule.exports = content.locals || {};","var api = require(\"!../../../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/postcss-loader/src/index.js??ruleSet[1].rules[0].oneOf[0].use[2]!./index.css\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nmodule.exports = content.locals || {};","var api = require(\"!../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n var content = require(\"!!../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/src/index.js??ruleSet[1].rules[0].oneOf[0].use[2]!./index.css\");\n\n content = content.__esModule ? content.default : content;\n\n if (typeof content === 'string') {\n content = [[module.id, content, '']];\n }\n\nvar options = {};\n\noptions.insert = \"head\";\noptions.singleton = false;\n\nvar update = api(content, options);\n\n\n\nmodule.exports = content.locals || {};","\"use strict\";\n\nvar isOldIE = function isOldIE() {\n var memo;\n return function memorize() {\n if (typeof memo === 'undefined') {\n // Test for IE <= 9 as proposed by Browserhacks\n // @see http://browserhacks.com/#hack-e71d8692f65334173fee715c222cb805\n // Tests for existence of standard globals is to allow style-loader\n // to operate correctly into non-standard environments\n // @see https://github.com/webpack-contrib/style-loader/issues/177\n memo = Boolean(window && document && document.all && !window.atob);\n }\n\n return memo;\n };\n}();\n\nvar getTarget = function getTarget() {\n var memo = {};\n return function memorize(target) {\n if (typeof memo[target] === 'undefined') {\n var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself\n\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n\n memo[target] = styleTarget;\n }\n\n return memo[target];\n };\n}();\n\nvar stylesInDom = [];\n\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n\n for (var i = 0; i < stylesInDom.length; i++) {\n if (stylesInDom[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n\n return result;\n}\n\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var index = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3]\n };\n\n if (index !== -1) {\n stylesInDom[index].references++;\n stylesInDom[index].updater(obj);\n } else {\n stylesInDom.push({\n identifier: identifier,\n updater: addStyle(obj, options),\n references: 1\n });\n }\n\n identifiers.push(identifier);\n }\n\n return identifiers;\n}\n\nfunction insertStyleElement(options) {\n var style = document.createElement('style');\n var attributes = options.attributes || {};\n\n if (typeof attributes.nonce === 'undefined') {\n var nonce = typeof __webpack_nonce__ !== 'undefined' ? __webpack_nonce__ : null;\n\n if (nonce) {\n attributes.nonce = nonce;\n }\n }\n\n Object.keys(attributes).forEach(function (key) {\n style.setAttribute(key, attributes[key]);\n });\n\n if (typeof options.insert === 'function') {\n options.insert(style);\n } else {\n var target = getTarget(options.insert || 'head');\n\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n\n target.appendChild(style);\n }\n\n return style;\n}\n\nfunction removeStyleElement(style) {\n // istanbul ignore if\n if (style.parentNode === null) {\n return false;\n }\n\n style.parentNode.removeChild(style);\n}\n/* istanbul ignore next */\n\n\nvar replaceText = function replaceText() {\n var textStore = [];\n return function replace(index, replacement) {\n textStore[index] = replacement;\n return textStore.filter(Boolean).join('\\n');\n };\n}();\n\nfunction applyToSingletonTag(style, index, remove, obj) {\n var css = remove ? '' : obj.media ? \"@media \".concat(obj.media, \" {\").concat(obj.css, \"}\") : obj.css; // For old IE\n\n /* istanbul ignore if */\n\n if (style.styleSheet) {\n style.styleSheet.cssText = replaceText(index, css);\n } else {\n var cssNode = document.createTextNode(css);\n var childNodes = style.childNodes;\n\n if (childNodes[index]) {\n style.removeChild(childNodes[index]);\n }\n\n if (childNodes.length) {\n style.insertBefore(cssNode, childNodes[index]);\n } else {\n style.appendChild(cssNode);\n }\n }\n}\n\nfunction applyToTag(style, options, obj) {\n var css = obj.css;\n var media = obj.media;\n var sourceMap = obj.sourceMap;\n\n if (media) {\n style.setAttribute('media', media);\n } else {\n style.removeAttribute('media');\n }\n\n if (sourceMap && typeof btoa !== 'undefined') {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n } // For old IE\n\n /* istanbul ignore if */\n\n\n if (style.styleSheet) {\n style.styleSheet.cssText = css;\n } else {\n while (style.firstChild) {\n style.removeChild(style.firstChild);\n }\n\n style.appendChild(document.createTextNode(css));\n }\n}\n\nvar singleton = null;\nvar singletonCounter = 0;\n\nfunction addStyle(obj, options) {\n var style;\n var update;\n var remove;\n\n if (options.singleton) {\n var styleIndex = singletonCounter++;\n style = singleton || (singleton = insertStyleElement(options));\n update = applyToSingletonTag.bind(null, style, styleIndex, false);\n remove = applyToSingletonTag.bind(null, style, styleIndex, true);\n } else {\n style = insertStyleElement(options);\n update = applyToTag.bind(null, style, options);\n\n remove = function remove() {\n removeStyleElement(style);\n };\n }\n\n update(obj);\n return function updateStyle(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap) {\n return;\n }\n\n update(obj = newObj);\n } else {\n remove();\n }\n };\n}\n\nmodule.exports = function (list, options) {\n options = options || {}; // Force single-tag solution on IE6-9, which has a hard limit on the # of this.sectionStart && this.cbs.ontext(this.sectionStart, this.index), this.state = rt.BeforeTagName, this.sectionStart = this.index) : this.decodeEntities && t === $t.Amp && this.startEntity();\n }, e.prototype.stateSpecialStartSequence = function(t) {\n var n = this.sequenceIndex === this.currentSequence.length, r = n ? (\n // If we are at the end of the sequence, make sure the tag name has ended\n e0(t)\n ) : (\n // Otherwise, do a case-insensitive comparison\n (t | 32) === this.currentSequence[this.sequenceIndex]\n );\n if (!r)\n this.isSpecial = !1;\n else if (!n) {\n this.sequenceIndex++;\n return;\n }\n this.sequenceIndex = 0, this.state = rt.InTagName, this.stateInTagName(t);\n }, e.prototype.stateInSpecialTag = function(t) {\n if (this.sequenceIndex === this.currentSequence.length) {\n if (t === $t.Gt || ji(t)) {\n var n = this.index - this.currentSequence.length;\n if (this.sectionStart < n) {\n var r = this.index;\n this.index = n, this.cbs.ontext(this.sectionStart, n), this.index = r;\n }\n this.isSpecial = !1, this.sectionStart = n + 2, this.stateInClosingTagName(t);\n return;\n }\n this.sequenceIndex = 0;\n }\n (t | 32) === this.currentSequence[this.sequenceIndex] ? this.sequenceIndex += 1 : this.sequenceIndex === 0 ? this.currentSequence === Ar.TitleEnd ? this.decodeEntities && t === $t.Amp && this.startEntity() : this.fastForwardTo($t.Lt) && (this.sequenceIndex = 1) : this.sequenceIndex = +(t === $t.Lt);\n }, e.prototype.stateCDATASequence = function(t) {\n t === Ar.Cdata[this.sequenceIndex] ? ++this.sequenceIndex === Ar.Cdata.length && (this.state = rt.InCommentLike, this.currentSequence = Ar.CdataEnd, this.sequenceIndex = 0, this.sectionStart = this.index + 1) : (this.sequenceIndex = 0, this.state = rt.InDeclaration, this.stateInDeclaration(t));\n }, e.prototype.fastForwardTo = function(t) {\n for (; ++this.index < this.buffer.length + this.offset; )\n if (this.buffer.charCodeAt(this.index - this.offset) === t)\n return !0;\n return this.index = this.buffer.length + this.offset - 1, !1;\n }, e.prototype.stateInCommentLike = function(t) {\n t === this.currentSequence[this.sequenceIndex] ? ++this.sequenceIndex === this.currentSequence.length && (this.currentSequence === Ar.CdataEnd ? this.cbs.oncdata(this.sectionStart, this.index, 2) : this.cbs.oncomment(this.sectionStart, this.index, 2), this.sequenceIndex = 0, this.sectionStart = this.index + 1, this.state = rt.Text) : this.sequenceIndex === 0 ? this.fastForwardTo(this.currentSequence[0]) && (this.sequenceIndex = 1) : t !== this.currentSequence[this.sequenceIndex - 1] && (this.sequenceIndex = 0);\n }, e.prototype.isTagStartChar = function(t) {\n return this.xmlMode ? !e0(t) : hK(t);\n }, e.prototype.startSpecial = function(t, n) {\n this.isSpecial = !0, this.currentSequence = t, this.sequenceIndex = n, this.state = rt.SpecialStartSequence;\n }, e.prototype.stateBeforeTagName = function(t) {\n if (t === $t.ExclamationMark)\n this.state = rt.BeforeDeclaration, this.sectionStart = this.index + 1;\n else if (t === $t.Questionmark)\n this.state = rt.InProcessingInstruction, this.sectionStart = this.index + 1;\n else if (this.isTagStartChar(t)) {\n var n = t | 32;\n this.sectionStart = this.index, this.xmlMode ? this.state = rt.InTagName : n === Ar.ScriptEnd[2] ? this.state = rt.BeforeSpecialS : n === Ar.TitleEnd[2] ? this.state = rt.BeforeSpecialT : this.state = rt.InTagName;\n } else\n t === $t.Slash ? this.state = rt.BeforeClosingTagName : (this.state = rt.Text, this.stateText(t));\n }, e.prototype.stateInTagName = function(t) {\n e0(t) && (this.cbs.onopentagname(this.sectionStart, this.index), this.sectionStart = -1, this.state = rt.BeforeAttributeName, this.stateBeforeAttributeName(t));\n }, e.prototype.stateBeforeClosingTagName = function(t) {\n ji(t) || (t === $t.Gt ? this.state = rt.Text : (this.state = this.isTagStartChar(t) ? rt.InClosingTagName : rt.InSpecialComment, this.sectionStart = this.index));\n }, e.prototype.stateInClosingTagName = function(t) {\n (t === $t.Gt || ji(t)) && (this.cbs.onclosetag(this.sectionStart, this.index), this.sectionStart = -1, this.state = rt.AfterClosingTagName, this.stateAfterClosingTagName(t));\n }, e.prototype.stateAfterClosingTagName = function(t) {\n (t === $t.Gt || this.fastForwardTo($t.Gt)) && (this.state = rt.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateBeforeAttributeName = function(t) {\n t === $t.Gt ? (this.cbs.onopentagend(this.index), this.isSpecial ? (this.state = rt.InSpecialTag, this.sequenceIndex = 0) : this.state = rt.Text, this.sectionStart = this.index + 1) : t === $t.Slash ? this.state = rt.InSelfClosingTag : ji(t) || (this.state = rt.InAttributeName, this.sectionStart = this.index);\n }, e.prototype.stateInSelfClosingTag = function(t) {\n t === $t.Gt ? (this.cbs.onselfclosingtag(this.index), this.state = rt.Text, this.sectionStart = this.index + 1, this.isSpecial = !1) : ji(t) || (this.state = rt.BeforeAttributeName, this.stateBeforeAttributeName(t));\n }, e.prototype.stateInAttributeName = function(t) {\n (t === $t.Eq || e0(t)) && (this.cbs.onattribname(this.sectionStart, this.index), this.sectionStart = this.index, this.state = rt.AfterAttributeName, this.stateAfterAttributeName(t));\n }, e.prototype.stateAfterAttributeName = function(t) {\n t === $t.Eq ? this.state = rt.BeforeAttributeValue : t === $t.Slash || t === $t.Gt ? (this.cbs.onattribend(os.NoValue, this.sectionStart), this.sectionStart = -1, this.state = rt.BeforeAttributeName, this.stateBeforeAttributeName(t)) : ji(t) || (this.cbs.onattribend(os.NoValue, this.sectionStart), this.state = rt.InAttributeName, this.sectionStart = this.index);\n }, e.prototype.stateBeforeAttributeValue = function(t) {\n t === $t.DoubleQuote ? (this.state = rt.InAttributeValueDq, this.sectionStart = this.index + 1) : t === $t.SingleQuote ? (this.state = rt.InAttributeValueSq, this.sectionStart = this.index + 1) : ji(t) || (this.sectionStart = this.index, this.state = rt.InAttributeValueNq, this.stateInAttributeValueNoQuotes(t));\n }, e.prototype.handleInAttributeValue = function(t, n) {\n t === n || !this.decodeEntities && this.fastForwardTo(n) ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(n === $t.DoubleQuote ? os.Double : os.Single, this.index + 1), this.state = rt.BeforeAttributeName) : this.decodeEntities && t === $t.Amp && this.startEntity();\n }, e.prototype.stateInAttributeValueDoubleQuotes = function(t) {\n this.handleInAttributeValue(t, $t.DoubleQuote);\n }, e.prototype.stateInAttributeValueSingleQuotes = function(t) {\n this.handleInAttributeValue(t, $t.SingleQuote);\n }, e.prototype.stateInAttributeValueNoQuotes = function(t) {\n ji(t) || t === $t.Gt ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(os.Unquoted, this.index), this.state = rt.BeforeAttributeName, this.stateBeforeAttributeName(t)) : this.decodeEntities && t === $t.Amp && this.startEntity();\n }, e.prototype.stateBeforeDeclaration = function(t) {\n t === $t.OpeningSquareBracket ? (this.state = rt.CDATASequence, this.sequenceIndex = 0) : this.state = t === $t.Dash ? rt.BeforeComment : rt.InDeclaration;\n }, e.prototype.stateInDeclaration = function(t) {\n (t === $t.Gt || this.fastForwardTo($t.Gt)) && (this.cbs.ondeclaration(this.sectionStart, this.index), this.state = rt.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateInProcessingInstruction = function(t) {\n (t === $t.Gt || this.fastForwardTo($t.Gt)) && (this.cbs.onprocessinginstruction(this.sectionStart, this.index), this.state = rt.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateBeforeComment = function(t) {\n t === $t.Dash ? (this.state = rt.InCommentLike, this.currentSequence = Ar.CommentEnd, this.sequenceIndex = 2, this.sectionStart = this.index + 1) : this.state = rt.InDeclaration;\n }, e.prototype.stateInSpecialComment = function(t) {\n (t === $t.Gt || this.fastForwardTo($t.Gt)) && (this.cbs.oncomment(this.sectionStart, this.index, 0), this.state = rt.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateBeforeSpecialS = function(t) {\n var n = t | 32;\n n === Ar.ScriptEnd[3] ? this.startSpecial(Ar.ScriptEnd, 4) : n === Ar.StyleEnd[3] ? this.startSpecial(Ar.StyleEnd, 4) : (this.state = rt.InTagName, this.stateInTagName(t));\n }, e.prototype.stateBeforeSpecialT = function(t) {\n var n = t | 32;\n n === Ar.TitleEnd[3] ? this.startSpecial(Ar.TitleEnd, 4) : n === Ar.TextareaEnd[3] ? this.startSpecial(Ar.TextareaEnd, 4) : (this.state = rt.InTagName, this.stateInTagName(t));\n }, e.prototype.startEntity = function() {\n this.baseState = this.state, this.state = rt.InEntity, this.entityStart = this.index, this.entityDecoder.startEntity(this.xmlMode ? Gs.DecodingMode.Strict : this.baseState === rt.Text || this.baseState === rt.InSpecialTag ? Gs.DecodingMode.Legacy : Gs.DecodingMode.Attribute);\n }, e.prototype.stateInEntity = function() {\n var t = this.entityDecoder.write(this.buffer, this.index - this.offset);\n t >= 0 ? (this.state = this.baseState, t === 0 && (this.index = this.entityStart)) : this.index = this.offset + this.buffer.length - 1;\n }, e.prototype.cleanup = function() {\n this.running && this.sectionStart !== this.index && (this.state === rt.Text || this.state === rt.InSpecialTag && this.sequenceIndex === 0 ? (this.cbs.ontext(this.sectionStart, this.index), this.sectionStart = this.index) : (this.state === rt.InAttributeValueDq || this.state === rt.InAttributeValueSq || this.state === rt.InAttributeValueNq) && (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = this.index));\n }, e.prototype.shouldContinue = function() {\n return this.index < this.buffer.length + this.offset && this.running;\n }, e.prototype.parse = function() {\n for (; this.shouldContinue(); ) {\n var t = this.buffer.charCodeAt(this.index - this.offset);\n switch (this.state) {\n case rt.Text: {\n this.stateText(t);\n break;\n }\n case rt.SpecialStartSequence: {\n this.stateSpecialStartSequence(t);\n break;\n }\n case rt.InSpecialTag: {\n this.stateInSpecialTag(t);\n break;\n }\n case rt.CDATASequence: {\n this.stateCDATASequence(t);\n break;\n }\n case rt.InAttributeValueDq: {\n this.stateInAttributeValueDoubleQuotes(t);\n break;\n }\n case rt.InAttributeName: {\n this.stateInAttributeName(t);\n break;\n }\n case rt.InCommentLike: {\n this.stateInCommentLike(t);\n break;\n }\n case rt.InSpecialComment: {\n this.stateInSpecialComment(t);\n break;\n }\n case rt.BeforeAttributeName: {\n this.stateBeforeAttributeName(t);\n break;\n }\n case rt.InTagName: {\n this.stateInTagName(t);\n break;\n }\n case rt.InClosingTagName: {\n this.stateInClosingTagName(t);\n break;\n }\n case rt.BeforeTagName: {\n this.stateBeforeTagName(t);\n break;\n }\n case rt.AfterAttributeName: {\n this.stateAfterAttributeName(t);\n break;\n }\n case rt.InAttributeValueSq: {\n this.stateInAttributeValueSingleQuotes(t);\n break;\n }\n case rt.BeforeAttributeValue: {\n this.stateBeforeAttributeValue(t);\n break;\n }\n case rt.BeforeClosingTagName: {\n this.stateBeforeClosingTagName(t);\n break;\n }\n case rt.AfterClosingTagName: {\n this.stateAfterClosingTagName(t);\n break;\n }\n case rt.BeforeSpecialS: {\n this.stateBeforeSpecialS(t);\n break;\n }\n case rt.BeforeSpecialT: {\n this.stateBeforeSpecialT(t);\n break;\n }\n case rt.InAttributeValueNq: {\n this.stateInAttributeValueNoQuotes(t);\n break;\n }\n case rt.InSelfClosingTag: {\n this.stateInSelfClosingTag(t);\n break;\n }\n case rt.InDeclaration: {\n this.stateInDeclaration(t);\n break;\n }\n case rt.BeforeDeclaration: {\n this.stateBeforeDeclaration(t);\n break;\n }\n case rt.BeforeComment: {\n this.stateBeforeComment(t);\n break;\n }\n case rt.InProcessingInstruction: {\n this.stateInProcessingInstruction(t);\n break;\n }\n case rt.InEntity: {\n this.stateInEntity();\n break;\n }\n }\n this.index++;\n }\n this.cleanup();\n }, e.prototype.finish = function() {\n this.state === rt.InEntity && (this.entityDecoder.end(), this.state = this.baseState), this.handleTrailingData(), this.cbs.onend();\n }, e.prototype.handleTrailingData = function() {\n var t = this.buffer.length + this.offset;\n this.sectionStart >= t || (this.state === rt.InCommentLike ? this.currentSequence === Ar.CdataEnd ? this.cbs.oncdata(this.sectionStart, t, 0) : this.cbs.oncomment(this.sectionStart, t, 0) : this.state === rt.InTagName || this.state === rt.BeforeAttributeName || this.state === rt.BeforeAttributeValue || this.state === rt.AfterAttributeName || this.state === rt.InAttributeName || this.state === rt.InAttributeValueSq || this.state === rt.InAttributeValueDq || this.state === rt.InAttributeValueNq || this.state === rt.InClosingTagName || this.cbs.ontext(this.sectionStart, t));\n }, e.prototype.emitCodePoint = function(t, n) {\n this.baseState !== rt.Text && this.baseState !== rt.InSpecialTag ? (this.sectionStart < this.entityStart && this.cbs.onattribdata(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + n, this.index = this.sectionStart - 1, this.cbs.onattribentity(t)) : (this.sectionStart < this.entityStart && this.cbs.ontext(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + n, this.index = this.sectionStart - 1, this.cbs.ontextentity(t, this.sectionStart));\n }, e;\n }()\n);\nnl.default = mK;\nvar gK = pt && pt.__createBinding || (Object.create ? function(e, t, n, r) {\n r === void 0 && (r = n);\n var a = Object.getOwnPropertyDescriptor(t, n);\n (!a || (\"get\" in a ? !t.__esModule : a.writable || a.configurable)) && (a = { enumerable: !0, get: function() {\n return t[n];\n } }), Object.defineProperty(e, r, a);\n} : function(e, t, n, r) {\n r === void 0 && (r = n), e[r] = t[n];\n}), vK = pt && pt.__setModuleDefault || (Object.create ? function(e, t) {\n Object.defineProperty(e, \"default\", { enumerable: !0, value: t });\n} : function(e, t) {\n e.default = t;\n}), bK = pt && pt.__importStar || function(e) {\n if (e && e.__esModule)\n return e;\n var t = {};\n if (e != null)\n for (var n in e)\n n !== \"default\" && Object.prototype.hasOwnProperty.call(e, n) && gK(t, e, n);\n return vK(t, e), t;\n};\nObject.defineProperty(Ac, \"__esModule\", { value: !0 });\nAc.Parser = void 0;\nvar t0 = bK(nl), lS = Cb, Us = /* @__PURE__ */ new Set([\n \"input\",\n \"option\",\n \"optgroup\",\n \"select\",\n \"button\",\n \"datalist\",\n \"textarea\"\n]), wn = /* @__PURE__ */ new Set([\"p\"]), cS = /* @__PURE__ */ new Set([\"thead\", \"tbody\"]), dS = /* @__PURE__ */ new Set([\"dd\", \"dt\"]), fS = /* @__PURE__ */ new Set([\"rt\", \"rp\"]), yK = /* @__PURE__ */ new Map([\n [\"tr\", /* @__PURE__ */ new Set([\"tr\", \"th\", \"td\"])],\n [\"th\", /* @__PURE__ */ new Set([\"th\"])],\n [\"td\", /* @__PURE__ */ new Set([\"thead\", \"th\", \"td\"])],\n [\"body\", /* @__PURE__ */ new Set([\"head\", \"link\", \"script\"])],\n [\"li\", /* @__PURE__ */ new Set([\"li\"])],\n [\"p\", wn],\n [\"h1\", wn],\n [\"h2\", wn],\n [\"h3\", wn],\n [\"h4\", wn],\n [\"h5\", wn],\n [\"h6\", wn],\n [\"select\", Us],\n [\"input\", Us],\n [\"output\", Us],\n [\"button\", Us],\n [\"datalist\", Us],\n [\"textarea\", Us],\n [\"option\", /* @__PURE__ */ new Set([\"option\"])],\n [\"optgroup\", /* @__PURE__ */ new Set([\"optgroup\", \"option\"])],\n [\"dd\", dS],\n [\"dt\", dS],\n [\"address\", wn],\n [\"article\", wn],\n [\"aside\", wn],\n [\"blockquote\", wn],\n [\"details\", wn],\n [\"div\", wn],\n [\"dl\", wn],\n [\"fieldset\", wn],\n [\"figcaption\", wn],\n [\"figure\", wn],\n [\"footer\", wn],\n [\"form\", wn],\n [\"header\", wn],\n [\"hr\", wn],\n [\"main\", wn],\n [\"nav\", wn],\n [\"ol\", wn],\n [\"pre\", wn],\n [\"section\", wn],\n [\"table\", wn],\n [\"ul\", wn],\n [\"rt\", fS],\n [\"rp\", fS],\n [\"tbody\", cS],\n [\"tfoot\", cS]\n]), CK = /* @__PURE__ */ new Set([\n \"area\",\n \"base\",\n \"basefont\",\n \"br\",\n \"col\",\n \"command\",\n \"embed\",\n \"frame\",\n \"hr\",\n \"img\",\n \"input\",\n \"isindex\",\n \"keygen\",\n \"link\",\n \"meta\",\n \"param\",\n \"source\",\n \"track\",\n \"wbr\"\n]), pS = /* @__PURE__ */ new Set([\"math\", \"svg\"]), hS = /* @__PURE__ */ new Set([\n \"mi\",\n \"mo\",\n \"mn\",\n \"ms\",\n \"mtext\",\n \"annotation-xml\",\n \"foreignobject\",\n \"desc\",\n \"title\"\n]), xK = /\\s|\\//, SK = (\n /** @class */\n function() {\n function e(t, n) {\n n === void 0 && (n = {});\n var r, a, i, o, s, u;\n this.options = n, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = \"\", this.attribname = \"\", this.attribvalue = \"\", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = t ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (r = n.lowerCaseTags) !== null && r !== void 0 ? r : this.htmlMode, this.lowerCaseAttributeNames = (a = n.lowerCaseAttributeNames) !== null && a !== void 0 ? a : this.htmlMode, this.recognizeSelfClosing = (i = n.recognizeSelfClosing) !== null && i !== void 0 ? i : !this.htmlMode, this.tokenizer = new ((o = n.Tokenizer) !== null && o !== void 0 ? o : t0.default)(this.options, this), this.foreignContext = [!this.htmlMode], (u = (s = this.cbs).onparserinit) === null || u === void 0 || u.call(s, this);\n }\n return e.prototype.ontext = function(t, n) {\n var r, a, i = this.getSlice(t, n);\n this.endIndex = n - 1, (a = (r = this.cbs).ontext) === null || a === void 0 || a.call(r, i), this.startIndex = n;\n }, e.prototype.ontextentity = function(t, n) {\n var r, a;\n this.endIndex = n - 1, (a = (r = this.cbs).ontext) === null || a === void 0 || a.call(r, (0, lS.fromCodePoint)(t)), this.startIndex = n;\n }, e.prototype.isVoidElement = function(t) {\n return this.htmlMode && CK.has(t);\n }, e.prototype.onopentagname = function(t, n) {\n this.endIndex = n;\n var r = this.getSlice(t, n);\n this.lowerCaseTagNames && (r = r.toLowerCase()), this.emitOpenTag(r);\n }, e.prototype.emitOpenTag = function(t) {\n var n, r, a, i;\n this.openTagStart = this.startIndex, this.tagname = t;\n var o = this.htmlMode && yK.get(t);\n if (o)\n for (; this.stack.length > 0 && o.has(this.stack[0]); ) {\n var s = this.stack.shift();\n (r = (n = this.cbs).onclosetag) === null || r === void 0 || r.call(n, s, !0);\n }\n this.isVoidElement(t) || (this.stack.unshift(t), this.htmlMode && (pS.has(t) ? this.foreignContext.unshift(!0) : hS.has(t) && this.foreignContext.unshift(!1))), (i = (a = this.cbs).onopentagname) === null || i === void 0 || i.call(a, t), this.cbs.onopentag && (this.attribs = {});\n }, e.prototype.endOpenTag = function(t) {\n var n, r;\n this.startIndex = this.openTagStart, this.attribs && ((r = (n = this.cbs).onopentag) === null || r === void 0 || r.call(n, this.tagname, this.attribs, t), this.attribs = null), this.cbs.onclosetag && this.isVoidElement(this.tagname) && this.cbs.onclosetag(this.tagname, !0), this.tagname = \"\";\n }, e.prototype.onopentagend = function(t) {\n this.endIndex = t, this.endOpenTag(!1), this.startIndex = t + 1;\n }, e.prototype.onclosetag = function(t, n) {\n var r, a, i, o, s, u, l, c;\n this.endIndex = n;\n var d = this.getSlice(t, n);\n if (this.lowerCaseTagNames && (d = d.toLowerCase()), this.htmlMode && (pS.has(d) || hS.has(d)) && this.foreignContext.shift(), this.isVoidElement(d))\n this.htmlMode && d === \"br\" && ((o = (i = this.cbs).onopentagname) === null || o === void 0 || o.call(i, \"br\"), (u = (s = this.cbs).onopentag) === null || u === void 0 || u.call(s, \"br\", {}, !0), (c = (l = this.cbs).onclosetag) === null || c === void 0 || c.call(l, \"br\", !1));\n else {\n var p = this.stack.indexOf(d);\n if (p !== -1)\n for (var g = 0; g <= p; g++) {\n var v = this.stack.shift();\n (a = (r = this.cbs).onclosetag) === null || a === void 0 || a.call(r, v, g !== p);\n }\n else\n this.htmlMode && d === \"p\" && (this.emitOpenTag(\"p\"), this.closeCurrentTag(!0));\n }\n this.startIndex = n + 1;\n }, e.prototype.onselfclosingtag = function(t) {\n this.endIndex = t, this.recognizeSelfClosing || this.foreignContext[0] ? (this.closeCurrentTag(!1), this.startIndex = t + 1) : this.onopentagend(t);\n }, e.prototype.closeCurrentTag = function(t) {\n var n, r, a = this.tagname;\n this.endOpenTag(t), this.stack[0] === a && ((r = (n = this.cbs).onclosetag) === null || r === void 0 || r.call(n, a, !t), this.stack.shift());\n }, e.prototype.onattribname = function(t, n) {\n this.startIndex = t;\n var r = this.getSlice(t, n);\n this.attribname = this.lowerCaseAttributeNames ? r.toLowerCase() : r;\n }, e.prototype.onattribdata = function(t, n) {\n this.attribvalue += this.getSlice(t, n);\n }, e.prototype.onattribentity = function(t) {\n this.attribvalue += (0, lS.fromCodePoint)(t);\n }, e.prototype.onattribend = function(t, n) {\n var r, a;\n this.endIndex = n, (a = (r = this.cbs).onattribute) === null || a === void 0 || a.call(r, this.attribname, this.attribvalue, t === t0.QuoteType.Double ? '\"' : t === t0.QuoteType.Single ? \"'\" : t === t0.QuoteType.NoValue ? void 0 : null), this.attribs && !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname) && (this.attribs[this.attribname] = this.attribvalue), this.attribvalue = \"\";\n }, e.prototype.getInstructionName = function(t) {\n var n = t.search(xK), r = n < 0 ? t : t.substr(0, n);\n return this.lowerCaseTagNames && (r = r.toLowerCase()), r;\n }, e.prototype.ondeclaration = function(t, n) {\n this.endIndex = n;\n var r = this.getSlice(t, n);\n if (this.cbs.onprocessinginstruction) {\n var a = this.getInstructionName(r);\n this.cbs.onprocessinginstruction(\"!\".concat(a), \"!\".concat(r));\n }\n this.startIndex = n + 1;\n }, e.prototype.onprocessinginstruction = function(t, n) {\n this.endIndex = n;\n var r = this.getSlice(t, n);\n if (this.cbs.onprocessinginstruction) {\n var a = this.getInstructionName(r);\n this.cbs.onprocessinginstruction(\"?\".concat(a), \"?\".concat(r));\n }\n this.startIndex = n + 1;\n }, e.prototype.oncomment = function(t, n, r) {\n var a, i, o, s;\n this.endIndex = n, (i = (a = this.cbs).oncomment) === null || i === void 0 || i.call(a, this.getSlice(t, n - r)), (s = (o = this.cbs).oncommentend) === null || s === void 0 || s.call(o), this.startIndex = n + 1;\n }, e.prototype.oncdata = function(t, n, r) {\n var a, i, o, s, u, l, c, d, p, g;\n this.endIndex = n;\n var v = this.getSlice(t, n - r);\n !this.htmlMode || this.options.recognizeCDATA ? ((i = (a = this.cbs).oncdatastart) === null || i === void 0 || i.call(a), (s = (o = this.cbs).ontext) === null || s === void 0 || s.call(o, v), (l = (u = this.cbs).oncdataend) === null || l === void 0 || l.call(u)) : ((d = (c = this.cbs).oncomment) === null || d === void 0 || d.call(c, \"[CDATA[\".concat(v, \"]]\")), (g = (p = this.cbs).oncommentend) === null || g === void 0 || g.call(p)), this.startIndex = n + 1;\n }, e.prototype.onend = function() {\n var t, n;\n if (this.cbs.onclosetag) {\n this.endIndex = this.startIndex;\n for (var r = 0; r < this.stack.length; r++)\n this.cbs.onclosetag(this.stack[r], !0);\n }\n (n = (t = this.cbs).onend) === null || n === void 0 || n.call(t);\n }, e.prototype.reset = function() {\n var t, n, r, a;\n (n = (t = this.cbs).onreset) === null || n === void 0 || n.call(t), this.tokenizer.reset(), this.tagname = \"\", this.attribname = \"\", this.attribs = null, this.stack.length = 0, this.startIndex = 0, this.endIndex = 0, (a = (r = this.cbs).onparserinit) === null || a === void 0 || a.call(r, this), this.buffers.length = 0, this.foreignContext.length = 0, this.foreignContext.unshift(!this.htmlMode), this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1;\n }, e.prototype.parseComplete = function(t) {\n this.reset(), this.end(t);\n }, e.prototype.getSlice = function(t, n) {\n for (; t - this.bufferOffset >= this.buffers[0].length; )\n this.shiftBuffer();\n for (var r = this.buffers[0].slice(t - this.bufferOffset, n - this.bufferOffset); n - this.bufferOffset > this.buffers[0].length; )\n this.shiftBuffer(), r += this.buffers[0].slice(0, n - this.bufferOffset);\n return r;\n }, e.prototype.shiftBuffer = function() {\n this.bufferOffset += this.buffers[0].length, this.writeIndex--, this.buffers.shift();\n }, e.prototype.write = function(t) {\n var n, r;\n if (this.ended) {\n (r = (n = this.cbs).onerror) === null || r === void 0 || r.call(n, new Error(\".write() after done!\"));\n return;\n }\n this.buffers.push(t), this.tokenizer.running && (this.tokenizer.write(t), this.writeIndex++);\n }, e.prototype.end = function(t) {\n var n, r;\n if (this.ended) {\n (r = (n = this.cbs).onerror) === null || r === void 0 || r.call(n, new Error(\".end() after done!\"));\n return;\n }\n t && this.write(t), this.ended = !0, this.tokenizer.end();\n }, e.prototype.pause = function() {\n this.tokenizer.pause();\n }, e.prototype.resume = function() {\n for (this.tokenizer.resume(); this.tokenizer.running && this.writeIndex < this.buffers.length; )\n this.tokenizer.write(this.buffers[this.writeIndex++]);\n this.ended && this.tokenizer.end();\n }, e.prototype.parseChunk = function(t) {\n this.write(t);\n }, e.prototype.done = function(t) {\n this.end(t);\n }, e;\n }()\n);\nAc.Parser = SK;\nvar Ki = {}, Vo = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.Doctype = e.CDATA = e.Tag = e.Style = e.Script = e.Comment = e.Directive = e.Text = e.Root = e.isTag = e.ElementType = void 0;\n var t;\n (function(r) {\n r.Root = \"root\", r.Text = \"text\", r.Directive = \"directive\", r.Comment = \"comment\", r.Script = \"script\", r.Style = \"style\", r.Tag = \"tag\", r.CDATA = \"cdata\", r.Doctype = \"doctype\";\n })(t = e.ElementType || (e.ElementType = {}));\n function n(r) {\n return r.type === t.Tag || r.type === t.Script || r.type === t.Style;\n }\n e.isTag = n, e.Root = t.Root, e.Text = t.Text, e.Directive = t.Directive, e.Comment = t.Comment, e.Script = t.Script, e.Style = t.Style, e.Tag = t.Tag, e.CDATA = t.CDATA, e.Doctype = t.Doctype;\n})(Vo);\nvar on = {}, zo = pt && pt.__extends || function() {\n var e = function(t, n) {\n return e = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, a) {\n r.__proto__ = a;\n } || function(r, a) {\n for (var i in a)\n Object.prototype.hasOwnProperty.call(a, i) && (r[i] = a[i]);\n }, e(t, n);\n };\n return function(t, n) {\n if (typeof n != \"function\" && n !== null)\n throw new TypeError(\"Class extends value \" + String(n) + \" is not a constructor or null\");\n e(t, n);\n function r() {\n this.constructor = t;\n }\n t.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r());\n };\n}(), uc = pt && pt.__assign || function() {\n return uc = Object.assign || function(e) {\n for (var t, n = 1, r = arguments.length; n < r; n++) {\n t = arguments[n];\n for (var a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (e[a] = t[a]);\n }\n return e;\n }, uc.apply(this, arguments);\n};\nObject.defineProperty(on, \"__esModule\", { value: !0 });\non.cloneNode = on.hasChildren = on.isDocument = on.isDirective = on.isComment = on.isText = on.isCDATA = on.isTag = on.Element = on.Document = on.CDATA = on.NodeWithChildren = on.ProcessingInstruction = on.Comment = on.Text = on.DataNode = on.Node = void 0;\nvar aa = Vo, _b = (\n /** @class */\n function() {\n function e() {\n this.parent = null, this.prev = null, this.next = null, this.startIndex = null, this.endIndex = null;\n }\n return Object.defineProperty(e.prototype, \"parentNode\", {\n // Read-write aliases for properties\n /**\n * Same as {@link parent}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.parent;\n },\n set: function(t) {\n this.parent = t;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(e.prototype, \"previousSibling\", {\n /**\n * Same as {@link prev}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.prev;\n },\n set: function(t) {\n this.prev = t;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(e.prototype, \"nextSibling\", {\n /**\n * Same as {@link next}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.next;\n },\n set: function(t) {\n this.next = t;\n },\n enumerable: !1,\n configurable: !0\n }), e.prototype.cloneNode = function(t) {\n return t === void 0 && (t = !1), Eb(this, t);\n }, e;\n }()\n);\non.Node = _b;\nvar Np = (\n /** @class */\n function(e) {\n zo(t, e);\n function t(n) {\n var r = e.call(this) || this;\n return r.data = n, r;\n }\n return Object.defineProperty(t.prototype, \"nodeValue\", {\n /**\n * Same as {@link data}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.data;\n },\n set: function(n) {\n this.data = n;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(_b)\n);\non.DataNode = Np;\nvar bk = (\n /** @class */\n function(e) {\n zo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = aa.ElementType.Text, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 3;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Np)\n);\non.Text = bk;\nvar yk = (\n /** @class */\n function(e) {\n zo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = aa.ElementType.Comment, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 8;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Np)\n);\non.Comment = yk;\nvar Ck = (\n /** @class */\n function(e) {\n zo(t, e);\n function t(n, r) {\n var a = e.call(this, r) || this;\n return a.name = n, a.type = aa.ElementType.Directive, a;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 1;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Np)\n);\non.ProcessingInstruction = Ck;\nvar Op = (\n /** @class */\n function(e) {\n zo(t, e);\n function t(n) {\n var r = e.call(this) || this;\n return r.children = n, r;\n }\n return Object.defineProperty(t.prototype, \"firstChild\", {\n // Aliases\n /** First child of the node. */\n get: function() {\n var n;\n return (n = this.children[0]) !== null && n !== void 0 ? n : null;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"lastChild\", {\n /** Last child of the node. */\n get: function() {\n return this.children.length > 0 ? this.children[this.children.length - 1] : null;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"childNodes\", {\n /**\n * Same as {@link children}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.children;\n },\n set: function(n) {\n this.children = n;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(_b)\n);\non.NodeWithChildren = Op;\nvar xk = (\n /** @class */\n function(e) {\n zo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = aa.ElementType.CDATA, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 4;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Op)\n);\non.CDATA = xk;\nvar Sk = (\n /** @class */\n function(e) {\n zo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = aa.ElementType.Root, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 9;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Op)\n);\non.Document = Sk;\nvar _k = (\n /** @class */\n function(e) {\n zo(t, e);\n function t(n, r, a, i) {\n a === void 0 && (a = []), i === void 0 && (i = n === \"script\" ? aa.ElementType.Script : n === \"style\" ? aa.ElementType.Style : aa.ElementType.Tag);\n var o = e.call(this, a) || this;\n return o.name = n, o.attribs = r, o.type = i, o;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 1;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"tagName\", {\n // DOM Level 1 aliases\n /**\n * Same as {@link name}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.name;\n },\n set: function(n) {\n this.name = n;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"attributes\", {\n get: function() {\n var n = this;\n return Object.keys(this.attribs).map(function(r) {\n var a, i;\n return {\n name: r,\n value: n.attribs[r],\n namespace: (a = n[\"x-attribsNamespace\"]) === null || a === void 0 ? void 0 : a[r],\n prefix: (i = n[\"x-attribsPrefix\"]) === null || i === void 0 ? void 0 : i[r]\n };\n });\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Op)\n);\non.Element = _k;\nfunction Ek(e) {\n return (0, aa.isTag)(e);\n}\non.isTag = Ek;\nfunction wk(e) {\n return e.type === aa.ElementType.CDATA;\n}\non.isCDATA = wk;\nfunction Tk(e) {\n return e.type === aa.ElementType.Text;\n}\non.isText = Tk;\nfunction Ak(e) {\n return e.type === aa.ElementType.Comment;\n}\non.isComment = Ak;\nfunction Nk(e) {\n return e.type === aa.ElementType.Directive;\n}\non.isDirective = Nk;\nfunction Ok(e) {\n return e.type === aa.ElementType.Root;\n}\non.isDocument = Ok;\nfunction _K(e) {\n return Object.prototype.hasOwnProperty.call(e, \"children\");\n}\non.hasChildren = _K;\nfunction Eb(e, t) {\n t === void 0 && (t = !1);\n var n;\n if (Tk(e))\n n = new bk(e.data);\n else if (Ak(e))\n n = new yk(e.data);\n else if (Ek(e)) {\n var r = t ? Bm(e.children) : [], a = new _k(e.name, uc({}, e.attribs), r);\n r.forEach(function(u) {\n return u.parent = a;\n }), e.namespace != null && (a.namespace = e.namespace), e[\"x-attribsNamespace\"] && (a[\"x-attribsNamespace\"] = uc({}, e[\"x-attribsNamespace\"])), e[\"x-attribsPrefix\"] && (a[\"x-attribsPrefix\"] = uc({}, e[\"x-attribsPrefix\"])), n = a;\n } else if (wk(e)) {\n var r = t ? Bm(e.children) : [], i = new xk(r);\n r.forEach(function(l) {\n return l.parent = i;\n }), n = i;\n } else if (Ok(e)) {\n var r = t ? Bm(e.children) : [], o = new Sk(r);\n r.forEach(function(l) {\n return l.parent = o;\n }), e[\"x-mode\"] && (o[\"x-mode\"] = e[\"x-mode\"]), n = o;\n } else if (Nk(e)) {\n var s = new Ck(e.name, e.data);\n e[\"x-name\"] != null && (s[\"x-name\"] = e[\"x-name\"], s[\"x-publicId\"] = e[\"x-publicId\"], s[\"x-systemId\"] = e[\"x-systemId\"]), n = s;\n } else\n throw new Error(\"Not implemented yet: \".concat(e.type));\n return n.startIndex = e.startIndex, n.endIndex = e.endIndex, e.sourceCodeLocation != null && (n.sourceCodeLocation = e.sourceCodeLocation), n;\n}\non.cloneNode = Eb;\nfunction Bm(e) {\n for (var t = e.map(function(r) {\n return Eb(r, !0);\n }), n = 1; n < t.length; n++)\n t[n].prev = t[n - 1], t[n - 1].next = t[n];\n return t;\n}\n(function(e) {\n var t = pt && pt.__createBinding || (Object.create ? function(s, u, l, c) {\n c === void 0 && (c = l);\n var d = Object.getOwnPropertyDescriptor(u, l);\n (!d || (\"get\" in d ? !u.__esModule : d.writable || d.configurable)) && (d = { enumerable: !0, get: function() {\n return u[l];\n } }), Object.defineProperty(s, c, d);\n } : function(s, u, l, c) {\n c === void 0 && (c = l), s[c] = u[l];\n }), n = pt && pt.__exportStar || function(s, u) {\n for (var l in s)\n l !== \"default\" && !Object.prototype.hasOwnProperty.call(u, l) && t(u, s, l);\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.DomHandler = void 0;\n var r = Vo, a = on;\n n(on, e);\n var i = {\n withStartIndices: !1,\n withEndIndices: !1,\n xmlMode: !1\n }, o = (\n /** @class */\n function() {\n function s(u, l, c) {\n this.dom = [], this.root = new a.Document(this.dom), this.done = !1, this.tagStack = [this.root], this.lastNode = null, this.parser = null, typeof l == \"function\" && (c = l, l = i), typeof u == \"object\" && (l = u, u = void 0), this.callback = u ?? null, this.options = l ?? i, this.elementCB = c ?? null;\n }\n return s.prototype.onparserinit = function(u) {\n this.parser = u;\n }, s.prototype.onreset = function() {\n this.dom = [], this.root = new a.Document(this.dom), this.done = !1, this.tagStack = [this.root], this.lastNode = null, this.parser = null;\n }, s.prototype.onend = function() {\n this.done || (this.done = !0, this.parser = null, this.handleCallback(null));\n }, s.prototype.onerror = function(u) {\n this.handleCallback(u);\n }, s.prototype.onclosetag = function() {\n this.lastNode = null;\n var u = this.tagStack.pop();\n this.options.withEndIndices && (u.endIndex = this.parser.endIndex), this.elementCB && this.elementCB(u);\n }, s.prototype.onopentag = function(u, l) {\n var c = this.options.xmlMode ? r.ElementType.Tag : void 0, d = new a.Element(u, l, void 0, c);\n this.addNode(d), this.tagStack.push(d);\n }, s.prototype.ontext = function(u) {\n var l = this.lastNode;\n if (l && l.type === r.ElementType.Text)\n l.data += u, this.options.withEndIndices && (l.endIndex = this.parser.endIndex);\n else {\n var c = new a.Text(u);\n this.addNode(c), this.lastNode = c;\n }\n }, s.prototype.oncomment = function(u) {\n if (this.lastNode && this.lastNode.type === r.ElementType.Comment) {\n this.lastNode.data += u;\n return;\n }\n var l = new a.Comment(u);\n this.addNode(l), this.lastNode = l;\n }, s.prototype.oncommentend = function() {\n this.lastNode = null;\n }, s.prototype.oncdatastart = function() {\n var u = new a.Text(\"\"), l = new a.CDATA([u]);\n this.addNode(l), u.parent = l, this.lastNode = u;\n }, s.prototype.oncdataend = function() {\n this.lastNode = null;\n }, s.prototype.onprocessinginstruction = function(u, l) {\n var c = new a.ProcessingInstruction(u, l);\n this.addNode(c);\n }, s.prototype.handleCallback = function(u) {\n if (typeof this.callback == \"function\")\n this.callback(u, this.dom);\n else if (u)\n throw u;\n }, s.prototype.addNode = function(u) {\n var l = this.tagStack[this.tagStack.length - 1], c = l.children[l.children.length - 1];\n this.options.withStartIndices && (u.startIndex = this.parser.startIndex), this.options.withEndIndices && (u.endIndex = this.parser.endIndex), l.children.push(u), c && (u.prev = c, c.next = u), u.parent = l, this.lastNode = null;\n }, s;\n }()\n );\n e.DomHandler = o, e.default = o;\n})(Ki);\nvar z0 = {}, ha = {}, ud = {};\nconst EK = /* @__PURE__ */ RF(DG);\nvar Vu = {};\nObject.defineProperty(Vu, \"__esModule\", { value: !0 });\nVu.attributeNames = Vu.elementNames = void 0;\nVu.elementNames = new Map([\n \"altGlyph\",\n \"altGlyphDef\",\n \"altGlyphItem\",\n \"animateColor\",\n \"animateMotion\",\n \"animateTransform\",\n \"clipPath\",\n \"feBlend\",\n \"feColorMatrix\",\n \"feComponentTransfer\",\n \"feComposite\",\n \"feConvolveMatrix\",\n \"feDiffuseLighting\",\n \"feDisplacementMap\",\n \"feDistantLight\",\n \"feDropShadow\",\n \"feFlood\",\n \"feFuncA\",\n \"feFuncB\",\n \"feFuncG\",\n \"feFuncR\",\n \"feGaussianBlur\",\n \"feImage\",\n \"feMerge\",\n \"feMergeNode\",\n \"feMorphology\",\n \"feOffset\",\n \"fePointLight\",\n \"feSpecularLighting\",\n \"feSpotLight\",\n \"feTile\",\n \"feTurbulence\",\n \"foreignObject\",\n \"glyphRef\",\n \"linearGradient\",\n \"radialGradient\",\n \"textPath\"\n].map(function(e) {\n return [e.toLowerCase(), e];\n}));\nVu.attributeNames = new Map([\n \"definitionURL\",\n \"attributeName\",\n \"attributeType\",\n \"baseFrequency\",\n \"baseProfile\",\n \"calcMode\",\n \"clipPathUnits\",\n \"diffuseConstant\",\n \"edgeMode\",\n \"filterUnits\",\n \"glyphRef\",\n \"gradientTransform\",\n \"gradientUnits\",\n \"kernelMatrix\",\n \"kernelUnitLength\",\n \"keyPoints\",\n \"keySplines\",\n \"keyTimes\",\n \"lengthAdjust\",\n \"limitingConeAngle\",\n \"markerHeight\",\n \"markerUnits\",\n \"markerWidth\",\n \"maskContentUnits\",\n \"maskUnits\",\n \"numOctaves\",\n \"pathLength\",\n \"patternContentUnits\",\n \"patternTransform\",\n \"patternUnits\",\n \"pointsAtX\",\n \"pointsAtY\",\n \"pointsAtZ\",\n \"preserveAlpha\",\n \"preserveAspectRatio\",\n \"primitiveUnits\",\n \"refX\",\n \"refY\",\n \"repeatCount\",\n \"repeatDur\",\n \"requiredExtensions\",\n \"requiredFeatures\",\n \"specularConstant\",\n \"specularExponent\",\n \"spreadMethod\",\n \"startOffset\",\n \"stdDeviation\",\n \"stitchTiles\",\n \"surfaceScale\",\n \"systemLanguage\",\n \"tableValues\",\n \"targetX\",\n \"targetY\",\n \"textLength\",\n \"viewBox\",\n \"viewTarget\",\n \"xChannelSelector\",\n \"yChannelSelector\",\n \"zoomAndPan\"\n].map(function(e) {\n return [e.toLowerCase(), e];\n}));\nvar hu = pt && pt.__assign || function() {\n return hu = Object.assign || function(e) {\n for (var t, n = 1, r = arguments.length; n < r; n++) {\n t = arguments[n];\n for (var a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (e[a] = t[a]);\n }\n return e;\n }, hu.apply(this, arguments);\n}, wK = pt && pt.__createBinding || (Object.create ? function(e, t, n, r) {\n r === void 0 && (r = n);\n var a = Object.getOwnPropertyDescriptor(t, n);\n (!a || (\"get\" in a ? !t.__esModule : a.writable || a.configurable)) && (a = { enumerable: !0, get: function() {\n return t[n];\n } }), Object.defineProperty(e, r, a);\n} : function(e, t, n, r) {\n r === void 0 && (r = n), e[r] = t[n];\n}), TK = pt && pt.__setModuleDefault || (Object.create ? function(e, t) {\n Object.defineProperty(e, \"default\", { enumerable: !0, value: t });\n} : function(e, t) {\n e.default = t;\n}), AK = pt && pt.__importStar || function(e) {\n if (e && e.__esModule)\n return e;\n var t = {};\n if (e != null)\n for (var n in e)\n n !== \"default\" && Object.prototype.hasOwnProperty.call(e, n) && wK(t, e, n);\n return TK(t, e), t;\n};\nObject.defineProperty(ud, \"__esModule\", { value: !0 });\nud.render = void 0;\nvar Di = AK(Vo), wf = EK, Lk = Vu, NK = /* @__PURE__ */ new Set([\n \"style\",\n \"script\",\n \"xmp\",\n \"iframe\",\n \"noembed\",\n \"noframes\",\n \"plaintext\",\n \"noscript\"\n]);\nfunction OK(e) {\n return e.replace(/\"/g, \""\");\n}\nfunction LK(e, t) {\n var n;\n if (e) {\n var r = ((n = t.encodeEntities) !== null && n !== void 0 ? n : t.decodeEntities) === !1 ? OK : t.xmlMode || t.encodeEntities !== \"utf8\" ? wf.encodeXML : wf.escapeAttribute;\n return Object.keys(e).map(function(a) {\n var i, o, s = (i = e[a]) !== null && i !== void 0 ? i : \"\";\n return t.xmlMode === \"foreign\" && (a = (o = Lk.attributeNames.get(a)) !== null && o !== void 0 ? o : a), !t.emptyAttrs && !t.xmlMode && s === \"\" ? a : \"\".concat(a, '=\"').concat(r(s), '\"');\n }).join(\" \");\n }\n}\nvar mS = /* @__PURE__ */ new Set([\n \"area\",\n \"base\",\n \"basefont\",\n \"br\",\n \"col\",\n \"command\",\n \"embed\",\n \"frame\",\n \"hr\",\n \"img\",\n \"input\",\n \"isindex\",\n \"keygen\",\n \"link\",\n \"meta\",\n \"param\",\n \"source\",\n \"track\",\n \"wbr\"\n]);\nfunction Lp(e, t) {\n t === void 0 && (t = {});\n for (var n = (\"length\" in e) ? e : [e], r = \"\", a = 0; a < n.length; a++)\n r += kK(n[a], t);\n return r;\n}\nud.render = Lp;\nud.default = Lp;\nfunction kK(e, t) {\n switch (e.type) {\n case Di.Root:\n return Lp(e.children, t);\n case Di.Doctype:\n case Di.Directive:\n return MK(e);\n case Di.Comment:\n return FK(e);\n case Di.CDATA:\n return BK(e);\n case Di.Script:\n case Di.Style:\n case Di.Tag:\n return PK(e, t);\n case Di.Text:\n return RK(e, t);\n }\n}\nvar IK = /* @__PURE__ */ new Set([\n \"mi\",\n \"mo\",\n \"mn\",\n \"ms\",\n \"mtext\",\n \"annotation-xml\",\n \"foreignObject\",\n \"desc\",\n \"title\"\n]), DK = /* @__PURE__ */ new Set([\"svg\", \"math\"]);\nfunction PK(e, t) {\n var n;\n t.xmlMode === \"foreign\" && (e.name = (n = Lk.elementNames.get(e.name)) !== null && n !== void 0 ? n : e.name, e.parent && IK.has(e.parent.name) && (t = hu(hu({}, t), { xmlMode: !1 }))), !t.xmlMode && DK.has(e.name) && (t = hu(hu({}, t), { xmlMode: \"foreign\" }));\n var r = \"<\".concat(e.name), a = LK(e.attribs, t);\n return a && (r += \" \".concat(a)), e.children.length === 0 && (t.xmlMode ? (\n // In XML mode or foreign mode, and user hasn't explicitly turned off self-closing tags\n t.selfClosingTags !== !1\n ) : (\n // User explicitly asked for self-closing tags, even in HTML mode\n t.selfClosingTags && mS.has(e.name)\n )) ? (t.xmlMode || (r += \" \"), r += \"/>\") : (r += \">\", e.children.length > 0 && (r += Lp(e.children, t)), (t.xmlMode || !mS.has(e.name)) && (r += \"\".concat(e.name, \">\"))), r;\n}\nfunction MK(e) {\n return \"<\".concat(e.data, \">\");\n}\nfunction RK(e, t) {\n var n, r = e.data || \"\";\n return ((n = t.encodeEntities) !== null && n !== void 0 ? n : t.decodeEntities) !== !1 && !(!t.xmlMode && e.parent && NK.has(e.parent.name)) && (r = t.xmlMode || t.encodeEntities !== \"utf8\" ? (0, wf.encodeXML)(r) : (0, wf.escapeText)(r)), r;\n}\nfunction BK(e) {\n return \"\");\n}\nfunction FK(e) {\n return \"\");\n}\nvar jK = pt && pt.__importDefault || function(e) {\n return e && e.__esModule ? e : { default: e };\n};\nObject.defineProperty(ha, \"__esModule\", { value: !0 });\nha.innerText = ha.textContent = ha.getText = ha.getInnerHTML = ha.getOuterHTML = void 0;\nvar pi = Ki, $K = jK(ud), HK = Vo;\nfunction kk(e, t) {\n return (0, $K.default)(e, t);\n}\nha.getOuterHTML = kk;\nfunction VK(e, t) {\n return (0, pi.hasChildren)(e) ? e.children.map(function(n) {\n return kk(n, t);\n }).join(\"\") : \"\";\n}\nha.getInnerHTML = VK;\nfunction q0(e) {\n return Array.isArray(e) ? e.map(q0).join(\"\") : (0, pi.isTag)(e) ? e.name === \"br\" ? `\n` : q0(e.children) : (0, pi.isCDATA)(e) ? q0(e.children) : (0, pi.isText)(e) ? e.data : \"\";\n}\nha.getText = q0;\nfunction k1(e) {\n return Array.isArray(e) ? e.map(k1).join(\"\") : (0, pi.hasChildren)(e) && !(0, pi.isComment)(e) ? k1(e.children) : (0, pi.isText)(e) ? e.data : \"\";\n}\nha.textContent = k1;\nfunction I1(e) {\n return Array.isArray(e) ? e.map(I1).join(\"\") : (0, pi.hasChildren)(e) && (e.type === HK.ElementType.Tag || (0, pi.isCDATA)(e)) ? I1(e.children) : (0, pi.isText)(e) ? e.data : \"\";\n}\nha.innerText = I1;\nvar mr = {};\nObject.defineProperty(mr, \"__esModule\", { value: !0 });\nmr.prevElementSibling = mr.nextElementSibling = mr.getName = mr.hasAttrib = mr.getAttributeValue = mr.getSiblings = mr.getParent = mr.getChildren = void 0;\nvar wb = Ki;\nfunction Ik(e) {\n return (0, wb.hasChildren)(e) ? e.children : [];\n}\nmr.getChildren = Ik;\nfunction Dk(e) {\n return e.parent || null;\n}\nmr.getParent = Dk;\nfunction zK(e) {\n var t, n, r = Dk(e);\n if (r != null)\n return Ik(r);\n for (var a = [e], i = e.prev, o = e.next; i != null; )\n a.unshift(i), t = i, i = t.prev;\n for (; o != null; )\n a.push(o), n = o, o = n.next;\n return a;\n}\nmr.getSiblings = zK;\nfunction qK(e, t) {\n var n;\n return (n = e.attribs) === null || n === void 0 ? void 0 : n[t];\n}\nmr.getAttributeValue = qK;\nfunction GK(e, t) {\n return e.attribs != null && Object.prototype.hasOwnProperty.call(e.attribs, t) && e.attribs[t] != null;\n}\nmr.hasAttrib = GK;\nfunction UK(e) {\n return e.name;\n}\nmr.getName = UK;\nfunction WK(e) {\n for (var t, n = e.next; n !== null && !(0, wb.isTag)(n); )\n t = n, n = t.next;\n return n;\n}\nmr.nextElementSibling = WK;\nfunction KK(e) {\n for (var t, n = e.prev; n !== null && !(0, wb.isTag)(n); )\n t = n, n = t.prev;\n return n;\n}\nmr.prevElementSibling = KK;\nvar ea = {};\nObject.defineProperty(ea, \"__esModule\", { value: !0 });\nea.prepend = ea.prependChild = ea.append = ea.appendChild = ea.replaceElement = ea.removeElement = void 0;\nfunction ld(e) {\n if (e.prev && (e.prev.next = e.next), e.next && (e.next.prev = e.prev), e.parent) {\n var t = e.parent.children, n = t.lastIndexOf(e);\n n >= 0 && t.splice(n, 1);\n }\n e.next = null, e.prev = null, e.parent = null;\n}\nea.removeElement = ld;\nfunction YK(e, t) {\n var n = t.prev = e.prev;\n n && (n.next = t);\n var r = t.next = e.next;\n r && (r.prev = t);\n var a = t.parent = e.parent;\n if (a) {\n var i = a.children;\n i[i.lastIndexOf(e)] = t, e.parent = null;\n }\n}\nea.replaceElement = YK;\nfunction XK(e, t) {\n if (ld(t), t.next = null, t.parent = e, e.children.push(t) > 1) {\n var n = e.children[e.children.length - 2];\n n.next = t, t.prev = n;\n } else\n t.prev = null;\n}\nea.appendChild = XK;\nfunction ZK(e, t) {\n ld(t);\n var n = e.parent, r = e.next;\n if (t.next = r, t.prev = e, e.next = t, t.parent = n, r) {\n if (r.prev = t, n) {\n var a = n.children;\n a.splice(a.lastIndexOf(r), 0, t);\n }\n } else\n n && n.children.push(t);\n}\nea.append = ZK;\nfunction QK(e, t) {\n if (ld(t), t.parent = e, t.prev = null, e.children.unshift(t) !== 1) {\n var n = e.children[1];\n n.prev = t, t.next = n;\n } else\n t.next = null;\n}\nea.prependChild = QK;\nfunction JK(e, t) {\n ld(t);\n var n = e.parent;\n if (n) {\n var r = n.children;\n r.splice(r.indexOf(e), 0, t);\n }\n e.prev && (e.prev.next = t), t.parent = n, t.prev = e.prev, t.next = e, e.prev = t;\n}\nea.prepend = JK;\nvar qr = {};\nObject.defineProperty(qr, \"__esModule\", { value: !0 });\nqr.findAll = qr.existsOne = qr.findOne = qr.findOneChild = qr.find = qr.filter = void 0;\nvar kp = Ki;\nfunction eY(e, t, n, r) {\n return n === void 0 && (n = !0), r === void 0 && (r = 1 / 0), Pk(e, Array.isArray(t) ? t : [t], n, r);\n}\nqr.filter = eY;\nfunction Pk(e, t, n, r) {\n for (var a = [], i = [t], o = [0]; ; ) {\n if (o[0] >= i[0].length) {\n if (o.length === 1)\n return a;\n i.shift(), o.shift();\n continue;\n }\n var s = i[0][o[0]++];\n if (e(s) && (a.push(s), --r <= 0))\n return a;\n n && (0, kp.hasChildren)(s) && s.children.length > 0 && (o.unshift(0), i.unshift(s.children));\n }\n}\nqr.find = Pk;\nfunction tY(e, t) {\n return t.find(e);\n}\nqr.findOneChild = tY;\nfunction Mk(e, t, n) {\n n === void 0 && (n = !0);\n for (var r = null, a = 0; a < t.length && !r; a++) {\n var i = t[a];\n if ((0, kp.isTag)(i))\n e(i) ? r = i : n && i.children.length > 0 && (r = Mk(e, i.children, !0));\n else\n continue;\n }\n return r;\n}\nqr.findOne = Mk;\nfunction Rk(e, t) {\n return t.some(function(n) {\n return (0, kp.isTag)(n) && (e(n) || Rk(e, n.children));\n });\n}\nqr.existsOne = Rk;\nfunction nY(e, t) {\n for (var n = [], r = [t], a = [0]; ; ) {\n if (a[0] >= r[0].length) {\n if (r.length === 1)\n return n;\n r.shift(), a.shift();\n continue;\n }\n var i = r[0][a[0]++];\n (0, kp.isTag)(i) && (e(i) && n.push(i), i.children.length > 0 && (a.unshift(0), r.unshift(i.children)));\n }\n}\nqr.findAll = nY;\nvar ma = {};\nObject.defineProperty(ma, \"__esModule\", { value: !0 });\nma.getElementsByTagType = ma.getElementsByTagName = ma.getElementById = ma.getElements = ma.testElement = void 0;\nvar ss = Ki, Ip = qr, Tf = {\n tag_name: function(e) {\n return typeof e == \"function\" ? function(t) {\n return (0, ss.isTag)(t) && e(t.name);\n } : e === \"*\" ? ss.isTag : function(t) {\n return (0, ss.isTag)(t) && t.name === e;\n };\n },\n tag_type: function(e) {\n return typeof e == \"function\" ? function(t) {\n return e(t.type);\n } : function(t) {\n return t.type === e;\n };\n },\n tag_contains: function(e) {\n return typeof e == \"function\" ? function(t) {\n return (0, ss.isText)(t) && e(t.data);\n } : function(t) {\n return (0, ss.isText)(t) && t.data === e;\n };\n }\n};\nfunction Bk(e, t) {\n return typeof t == \"function\" ? function(n) {\n return (0, ss.isTag)(n) && t(n.attribs[e]);\n } : function(n) {\n return (0, ss.isTag)(n) && n.attribs[e] === t;\n };\n}\nfunction rY(e, t) {\n return function(n) {\n return e(n) || t(n);\n };\n}\nfunction Fk(e) {\n var t = Object.keys(e).map(function(n) {\n var r = e[n];\n return Object.prototype.hasOwnProperty.call(Tf, n) ? Tf[n](r) : Bk(n, r);\n });\n return t.length === 0 ? null : t.reduce(rY);\n}\nfunction aY(e, t) {\n var n = Fk(e);\n return n ? n(t) : !0;\n}\nma.testElement = aY;\nfunction iY(e, t, n, r) {\n r === void 0 && (r = 1 / 0);\n var a = Fk(e);\n return a ? (0, Ip.filter)(a, t, n, r) : [];\n}\nma.getElements = iY;\nfunction oY(e, t, n) {\n return n === void 0 && (n = !0), Array.isArray(t) || (t = [t]), (0, Ip.findOne)(Bk(\"id\", e), t, n);\n}\nma.getElementById = oY;\nfunction sY(e, t, n, r) {\n return n === void 0 && (n = !0), r === void 0 && (r = 1 / 0), (0, Ip.filter)(Tf.tag_name(e), t, n, r);\n}\nma.getElementsByTagName = sY;\nfunction uY(e, t, n, r) {\n return n === void 0 && (n = !0), r === void 0 && (r = 1 / 0), (0, Ip.filter)(Tf.tag_type(e), t, n, r);\n}\nma.getElementsByTagType = uY;\nvar jk = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.uniqueSort = e.compareDocumentPosition = e.DocumentPosition = e.removeSubsets = void 0;\n var t = Ki;\n function n(o) {\n for (var s = o.length; --s >= 0; ) {\n var u = o[s];\n if (s > 0 && o.lastIndexOf(u, s - 1) >= 0) {\n o.splice(s, 1);\n continue;\n }\n for (var l = u.parent; l; l = l.parent)\n if (o.includes(l)) {\n o.splice(s, 1);\n break;\n }\n }\n return o;\n }\n e.removeSubsets = n;\n var r;\n (function(o) {\n o[o.DISCONNECTED = 1] = \"DISCONNECTED\", o[o.PRECEDING = 2] = \"PRECEDING\", o[o.FOLLOWING = 4] = \"FOLLOWING\", o[o.CONTAINS = 8] = \"CONTAINS\", o[o.CONTAINED_BY = 16] = \"CONTAINED_BY\";\n })(r = e.DocumentPosition || (e.DocumentPosition = {}));\n function a(o, s) {\n var u = [], l = [];\n if (o === s)\n return 0;\n for (var c = (0, t.hasChildren)(o) ? o : o.parent; c; )\n u.unshift(c), c = c.parent;\n for (c = (0, t.hasChildren)(s) ? s : s.parent; c; )\n l.unshift(c), c = c.parent;\n for (var d = Math.min(u.length, l.length), p = 0; p < d && u[p] === l[p]; )\n p++;\n if (p === 0)\n return r.DISCONNECTED;\n var g = u[p - 1], v = g.children, b = u[p], C = l[p];\n return v.indexOf(b) > v.indexOf(C) ? g === s ? r.FOLLOWING | r.CONTAINED_BY : r.FOLLOWING : g === o ? r.PRECEDING | r.CONTAINS : r.PRECEDING;\n }\n e.compareDocumentPosition = a;\n function i(o) {\n return o = o.filter(function(s, u, l) {\n return !l.includes(s, u + 1);\n }), o.sort(function(s, u) {\n var l = a(s, u);\n return l & r.PRECEDING ? -1 : l & r.FOLLOWING ? 1 : 0;\n }), o;\n }\n e.uniqueSort = i;\n})(jk);\nvar Dp = {};\nObject.defineProperty(Dp, \"__esModule\", { value: !0 });\nDp.getFeed = void 0;\nvar lY = ha, cd = ma;\nfunction cY(e) {\n var t = Af(mY, e);\n return t ? t.name === \"feed\" ? dY(t) : fY(t) : null;\n}\nDp.getFeed = cY;\nfunction dY(e) {\n var t, n = e.children, r = {\n type: \"atom\",\n items: (0, cd.getElementsByTagName)(\"entry\", n).map(function(o) {\n var s, u = o.children, l = { media: $k(u) };\n Qr(l, \"id\", \"id\", u), Qr(l, \"title\", \"title\", u);\n var c = (s = Af(\"link\", u)) === null || s === void 0 ? void 0 : s.attribs.href;\n c && (l.link = c);\n var d = Oo(\"summary\", u) || Oo(\"content\", u);\n d && (l.description = d);\n var p = Oo(\"updated\", u);\n return p && (l.pubDate = new Date(p)), l;\n })\n };\n Qr(r, \"id\", \"id\", n), Qr(r, \"title\", \"title\", n);\n var a = (t = Af(\"link\", n)) === null || t === void 0 ? void 0 : t.attribs.href;\n a && (r.link = a), Qr(r, \"description\", \"subtitle\", n);\n var i = Oo(\"updated\", n);\n return i && (r.updated = new Date(i)), Qr(r, \"author\", \"email\", n, !0), r;\n}\nfunction fY(e) {\n var t, n, r = (n = (t = Af(\"channel\", e.children)) === null || t === void 0 ? void 0 : t.children) !== null && n !== void 0 ? n : [], a = {\n type: e.name.substr(0, 3),\n id: \"\",\n items: (0, cd.getElementsByTagName)(\"item\", e.children).map(function(o) {\n var s = o.children, u = { media: $k(s) };\n Qr(u, \"id\", \"guid\", s), Qr(u, \"title\", \"title\", s), Qr(u, \"link\", \"link\", s), Qr(u, \"description\", \"description\", s);\n var l = Oo(\"pubDate\", s) || Oo(\"dc:date\", s);\n return l && (u.pubDate = new Date(l)), u;\n })\n };\n Qr(a, \"title\", \"title\", r), Qr(a, \"link\", \"link\", r), Qr(a, \"description\", \"description\", r);\n var i = Oo(\"lastBuildDate\", r);\n return i && (a.updated = new Date(i)), Qr(a, \"author\", \"managingEditor\", r, !0), a;\n}\nvar pY = [\"url\", \"type\", \"lang\"], hY = [\n \"fileSize\",\n \"bitrate\",\n \"framerate\",\n \"samplingrate\",\n \"channels\",\n \"duration\",\n \"height\",\n \"width\"\n];\nfunction $k(e) {\n return (0, cd.getElementsByTagName)(\"media:content\", e).map(function(t) {\n for (var n = t.attribs, r = {\n medium: n.medium,\n isDefault: !!n.isDefault\n }, a = 0, i = pY; a < i.length; a++) {\n var o = i[a];\n n[o] && (r[o] = n[o]);\n }\n for (var s = 0, u = hY; s < u.length; s++) {\n var o = u[s];\n n[o] && (r[o] = parseInt(n[o], 10));\n }\n return n.expression && (r.expression = n.expression), r;\n });\n}\nfunction Af(e, t) {\n return (0, cd.getElementsByTagName)(e, t, !0, 1)[0];\n}\nfunction Oo(e, t, n) {\n return n === void 0 && (n = !1), (0, lY.textContent)((0, cd.getElementsByTagName)(e, t, n, 1)).trim();\n}\nfunction Qr(e, t, n, r, a) {\n a === void 0 && (a = !1);\n var i = Oo(n, r, a);\n i && (e[t] = i);\n}\nfunction mY(e) {\n return e === \"rss\" || e === \"feed\" || e === \"rdf:RDF\";\n}\n(function(e) {\n var t = pt && pt.__createBinding || (Object.create ? function(a, i, o, s) {\n s === void 0 && (s = o);\n var u = Object.getOwnPropertyDescriptor(i, o);\n (!u || (\"get\" in u ? !i.__esModule : u.writable || u.configurable)) && (u = { enumerable: !0, get: function() {\n return i[o];\n } }), Object.defineProperty(a, s, u);\n } : function(a, i, o, s) {\n s === void 0 && (s = o), a[s] = i[o];\n }), n = pt && pt.__exportStar || function(a, i) {\n for (var o in a)\n o !== \"default\" && !Object.prototype.hasOwnProperty.call(i, o) && t(i, a, o);\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.hasChildren = e.isDocument = e.isComment = e.isText = e.isCDATA = e.isTag = void 0, n(ha, e), n(mr, e), n(ea, e), n(qr, e), n(ma, e), n(jk, e), n(Dp, e);\n var r = Ki;\n Object.defineProperty(e, \"isTag\", { enumerable: !0, get: function() {\n return r.isTag;\n } }), Object.defineProperty(e, \"isCDATA\", { enumerable: !0, get: function() {\n return r.isCDATA;\n } }), Object.defineProperty(e, \"isText\", { enumerable: !0, get: function() {\n return r.isText;\n } }), Object.defineProperty(e, \"isComment\", { enumerable: !0, get: function() {\n return r.isComment;\n } }), Object.defineProperty(e, \"isDocument\", { enumerable: !0, get: function() {\n return r.isDocument;\n } }), Object.defineProperty(e, \"hasChildren\", { enumerable: !0, get: function() {\n return r.hasChildren;\n } });\n})(z0);\n(function(e) {\n var t = pt && pt.__createBinding || (Object.create ? function(_, x, S, E) {\n E === void 0 && (E = S);\n var N = Object.getOwnPropertyDescriptor(x, S);\n (!N || (\"get\" in N ? !x.__esModule : N.writable || N.configurable)) && (N = { enumerable: !0, get: function() {\n return x[S];\n } }), Object.defineProperty(_, E, N);\n } : function(_, x, S, E) {\n E === void 0 && (E = S), _[E] = x[S];\n }), n = pt && pt.__setModuleDefault || (Object.create ? function(_, x) {\n Object.defineProperty(_, \"default\", { enumerable: !0, value: x });\n } : function(_, x) {\n _.default = x;\n }), r = pt && pt.__importStar || function(_) {\n if (_ && _.__esModule)\n return _;\n var x = {};\n if (_ != null)\n for (var S in _)\n S !== \"default\" && Object.prototype.hasOwnProperty.call(_, S) && t(x, _, S);\n return n(x, _), x;\n }, a = pt && pt.__importDefault || function(_) {\n return _ && _.__esModule ? _ : { default: _ };\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.DomUtils = e.parseFeed = e.getFeed = e.ElementType = e.QuoteType = e.Tokenizer = e.createDomStream = e.createDocumentStream = e.parseDOM = e.parseDocument = e.DefaultHandler = e.DomHandler = e.Parser = void 0;\n var i = Ac, o = Ac;\n Object.defineProperty(e, \"Parser\", { enumerable: !0, get: function() {\n return o.Parser;\n } });\n var s = Ki, u = Ki;\n Object.defineProperty(e, \"DomHandler\", { enumerable: !0, get: function() {\n return u.DomHandler;\n } }), Object.defineProperty(e, \"DefaultHandler\", { enumerable: !0, get: function() {\n return u.DomHandler;\n } });\n function l(_, x) {\n var S = new s.DomHandler(void 0, x);\n return new i.Parser(S, x).end(_), S.root;\n }\n e.parseDocument = l;\n function c(_, x) {\n return l(_, x).children;\n }\n e.parseDOM = c;\n function d(_, x, S) {\n var E = new s.DomHandler(function(N) {\n return _(N, E.root);\n }, x, S);\n return new i.Parser(E, x);\n }\n e.createDocumentStream = d;\n function p(_, x, S) {\n var E = new s.DomHandler(_, x, S);\n return new i.Parser(E, x);\n }\n e.createDomStream = p;\n var g = nl;\n Object.defineProperty(e, \"Tokenizer\", { enumerable: !0, get: function() {\n return a(g).default;\n } }), Object.defineProperty(e, \"QuoteType\", { enumerable: !0, get: function() {\n return g.QuoteType;\n } }), e.ElementType = r(Vo);\n var v = z0, b = z0;\n Object.defineProperty(e, \"getFeed\", { enumerable: !0, get: function() {\n return b.getFeed;\n } });\n var C = { xmlMode: !0 };\n function w(_, x) {\n return x === void 0 && (x = C), (0, v.getFeed)(c(_, x));\n }\n e.parseFeed = w, e.DomUtils = r(z0);\n})(vk);\nvar Hk = {}, sn = {}, qo = pt && pt.__extends || function() {\n var e = function(t, n) {\n return e = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, a) {\n r.__proto__ = a;\n } || function(r, a) {\n for (var i in a)\n Object.prototype.hasOwnProperty.call(a, i) && (r[i] = a[i]);\n }, e(t, n);\n };\n return function(t, n) {\n if (typeof n != \"function\" && n !== null)\n throw new TypeError(\"Class extends value \" + String(n) + \" is not a constructor or null\");\n e(t, n);\n function r() {\n this.constructor = t;\n }\n t.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r());\n };\n}(), lc = pt && pt.__assign || function() {\n return lc = Object.assign || function(e) {\n for (var t, n = 1, r = arguments.length; n < r; n++) {\n t = arguments[n];\n for (var a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (e[a] = t[a]);\n }\n return e;\n }, lc.apply(this, arguments);\n};\nObject.defineProperty(sn, \"__esModule\", { value: !0 });\nsn.cloneNode = sn.hasChildren = sn.isDocument = sn.isDirective = sn.isComment = sn.isText = sn.isCDATA = sn.isTag = sn.Element = sn.Document = sn.CDATA = sn.NodeWithChildren = sn.ProcessingInstruction = sn.Comment = sn.Text = sn.DataNode = sn.Node = void 0;\nvar ia = Vo, Tb = (\n /** @class */\n function() {\n function e() {\n this.parent = null, this.prev = null, this.next = null, this.startIndex = null, this.endIndex = null;\n }\n return Object.defineProperty(e.prototype, \"parentNode\", {\n // Read-write aliases for properties\n /**\n * Same as {@link parent}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.parent;\n },\n set: function(t) {\n this.parent = t;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(e.prototype, \"previousSibling\", {\n /**\n * Same as {@link prev}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.prev;\n },\n set: function(t) {\n this.prev = t;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(e.prototype, \"nextSibling\", {\n /**\n * Same as {@link next}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.next;\n },\n set: function(t) {\n this.next = t;\n },\n enumerable: !1,\n configurable: !0\n }), e.prototype.cloneNode = function(t) {\n return t === void 0 && (t = !1), Ab(this, t);\n }, e;\n }()\n);\nsn.Node = Tb;\nvar Pp = (\n /** @class */\n function(e) {\n qo(t, e);\n function t(n) {\n var r = e.call(this) || this;\n return r.data = n, r;\n }\n return Object.defineProperty(t.prototype, \"nodeValue\", {\n /**\n * Same as {@link data}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.data;\n },\n set: function(n) {\n this.data = n;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Tb)\n);\nsn.DataNode = Pp;\nvar Vk = (\n /** @class */\n function(e) {\n qo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = ia.ElementType.Text, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 3;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Pp)\n);\nsn.Text = Vk;\nvar zk = (\n /** @class */\n function(e) {\n qo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = ia.ElementType.Comment, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 8;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Pp)\n);\nsn.Comment = zk;\nvar qk = (\n /** @class */\n function(e) {\n qo(t, e);\n function t(n, r) {\n var a = e.call(this, r) || this;\n return a.name = n, a.type = ia.ElementType.Directive, a;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 1;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Pp)\n);\nsn.ProcessingInstruction = qk;\nvar Mp = (\n /** @class */\n function(e) {\n qo(t, e);\n function t(n) {\n var r = e.call(this) || this;\n return r.children = n, r;\n }\n return Object.defineProperty(t.prototype, \"firstChild\", {\n // Aliases\n /** First child of the node. */\n get: function() {\n var n;\n return (n = this.children[0]) !== null && n !== void 0 ? n : null;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"lastChild\", {\n /** Last child of the node. */\n get: function() {\n return this.children.length > 0 ? this.children[this.children.length - 1] : null;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"childNodes\", {\n /**\n * Same as {@link children}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.children;\n },\n set: function(n) {\n this.children = n;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Tb)\n);\nsn.NodeWithChildren = Mp;\nvar Gk = (\n /** @class */\n function(e) {\n qo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = ia.ElementType.CDATA, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 4;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Mp)\n);\nsn.CDATA = Gk;\nvar Uk = (\n /** @class */\n function(e) {\n qo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = ia.ElementType.Root, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 9;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Mp)\n);\nsn.Document = Uk;\nvar Wk = (\n /** @class */\n function(e) {\n qo(t, e);\n function t(n, r, a, i) {\n a === void 0 && (a = []), i === void 0 && (i = n === \"script\" ? ia.ElementType.Script : n === \"style\" ? ia.ElementType.Style : ia.ElementType.Tag);\n var o = e.call(this, a) || this;\n return o.name = n, o.attribs = r, o.type = i, o;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 1;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"tagName\", {\n // DOM Level 1 aliases\n /**\n * Same as {@link name}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.name;\n },\n set: function(n) {\n this.name = n;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"attributes\", {\n get: function() {\n var n = this;\n return Object.keys(this.attribs).map(function(r) {\n var a, i;\n return {\n name: r,\n value: n.attribs[r],\n namespace: (a = n[\"x-attribsNamespace\"]) === null || a === void 0 ? void 0 : a[r],\n prefix: (i = n[\"x-attribsPrefix\"]) === null || i === void 0 ? void 0 : i[r]\n };\n });\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Mp)\n);\nsn.Element = Wk;\nfunction Kk(e) {\n return (0, ia.isTag)(e);\n}\nsn.isTag = Kk;\nfunction Yk(e) {\n return e.type === ia.ElementType.CDATA;\n}\nsn.isCDATA = Yk;\nfunction Xk(e) {\n return e.type === ia.ElementType.Text;\n}\nsn.isText = Xk;\nfunction Zk(e) {\n return e.type === ia.ElementType.Comment;\n}\nsn.isComment = Zk;\nfunction Qk(e) {\n return e.type === ia.ElementType.Directive;\n}\nsn.isDirective = Qk;\nfunction Jk(e) {\n return e.type === ia.ElementType.Root;\n}\nsn.isDocument = Jk;\nfunction gY(e) {\n return Object.prototype.hasOwnProperty.call(e, \"children\");\n}\nsn.hasChildren = gY;\nfunction Ab(e, t) {\n t === void 0 && (t = !1);\n var n;\n if (Xk(e))\n n = new Vk(e.data);\n else if (Zk(e))\n n = new zk(e.data);\n else if (Kk(e)) {\n var r = t ? Fm(e.children) : [], a = new Wk(e.name, lc({}, e.attribs), r);\n r.forEach(function(u) {\n return u.parent = a;\n }), e.namespace != null && (a.namespace = e.namespace), e[\"x-attribsNamespace\"] && (a[\"x-attribsNamespace\"] = lc({}, e[\"x-attribsNamespace\"])), e[\"x-attribsPrefix\"] && (a[\"x-attribsPrefix\"] = lc({}, e[\"x-attribsPrefix\"])), n = a;\n } else if (Yk(e)) {\n var r = t ? Fm(e.children) : [], i = new Gk(r);\n r.forEach(function(l) {\n return l.parent = i;\n }), n = i;\n } else if (Jk(e)) {\n var r = t ? Fm(e.children) : [], o = new Uk(r);\n r.forEach(function(l) {\n return l.parent = o;\n }), e[\"x-mode\"] && (o[\"x-mode\"] = e[\"x-mode\"]), n = o;\n } else if (Qk(e)) {\n var s = new qk(e.name, e.data);\n e[\"x-name\"] != null && (s[\"x-name\"] = e[\"x-name\"], s[\"x-publicId\"] = e[\"x-publicId\"], s[\"x-systemId\"] = e[\"x-systemId\"]), n = s;\n } else\n throw new Error(\"Not implemented yet: \".concat(e.type));\n return n.startIndex = e.startIndex, n.endIndex = e.endIndex, e.sourceCodeLocation != null && (n.sourceCodeLocation = e.sourceCodeLocation), n;\n}\nsn.cloneNode = Ab;\nfunction Fm(e) {\n for (var t = e.map(function(r) {\n return Ab(r, !0);\n }), n = 1; n < t.length; n++)\n t[n].prev = t[n - 1], t[n - 1].next = t[n];\n return t;\n}\n(function(e) {\n var t = pt && pt.__createBinding || (Object.create ? function(s, u, l, c) {\n c === void 0 && (c = l);\n var d = Object.getOwnPropertyDescriptor(u, l);\n (!d || (\"get\" in d ? !u.__esModule : d.writable || d.configurable)) && (d = { enumerable: !0, get: function() {\n return u[l];\n } }), Object.defineProperty(s, c, d);\n } : function(s, u, l, c) {\n c === void 0 && (c = l), s[c] = u[l];\n }), n = pt && pt.__exportStar || function(s, u) {\n for (var l in s)\n l !== \"default\" && !Object.prototype.hasOwnProperty.call(u, l) && t(u, s, l);\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.DomHandler = void 0;\n var r = Vo, a = sn;\n n(sn, e);\n var i = {\n withStartIndices: !1,\n withEndIndices: !1,\n xmlMode: !1\n }, o = (\n /** @class */\n function() {\n function s(u, l, c) {\n this.dom = [], this.root = new a.Document(this.dom), this.done = !1, this.tagStack = [this.root], this.lastNode = null, this.parser = null, typeof l == \"function\" && (c = l, l = i), typeof u == \"object\" && (l = u, u = void 0), this.callback = u ?? null, this.options = l ?? i, this.elementCB = c ?? null;\n }\n return s.prototype.onparserinit = function(u) {\n this.parser = u;\n }, s.prototype.onreset = function() {\n this.dom = [], this.root = new a.Document(this.dom), this.done = !1, this.tagStack = [this.root], this.lastNode = null, this.parser = null;\n }, s.prototype.onend = function() {\n this.done || (this.done = !0, this.parser = null, this.handleCallback(null));\n }, s.prototype.onerror = function(u) {\n this.handleCallback(u);\n }, s.prototype.onclosetag = function() {\n this.lastNode = null;\n var u = this.tagStack.pop();\n this.options.withEndIndices && (u.endIndex = this.parser.endIndex), this.elementCB && this.elementCB(u);\n }, s.prototype.onopentag = function(u, l) {\n var c = this.options.xmlMode ? r.ElementType.Tag : void 0, d = new a.Element(u, l, void 0, c);\n this.addNode(d), this.tagStack.push(d);\n }, s.prototype.ontext = function(u) {\n var l = this.lastNode;\n if (l && l.type === r.ElementType.Text)\n l.data += u, this.options.withEndIndices && (l.endIndex = this.parser.endIndex);\n else {\n var c = new a.Text(u);\n this.addNode(c), this.lastNode = c;\n }\n }, s.prototype.oncomment = function(u) {\n if (this.lastNode && this.lastNode.type === r.ElementType.Comment) {\n this.lastNode.data += u;\n return;\n }\n var l = new a.Comment(u);\n this.addNode(l), this.lastNode = l;\n }, s.prototype.oncommentend = function() {\n this.lastNode = null;\n }, s.prototype.oncdatastart = function() {\n var u = new a.Text(\"\"), l = new a.CDATA([u]);\n this.addNode(l), u.parent = l, this.lastNode = u;\n }, s.prototype.oncdataend = function() {\n this.lastNode = null;\n }, s.prototype.onprocessinginstruction = function(u, l) {\n var c = new a.ProcessingInstruction(u, l);\n this.addNode(c);\n }, s.prototype.handleCallback = function(u) {\n if (typeof this.callback == \"function\")\n this.callback(u, this.dom);\n else if (u)\n throw u;\n }, s.prototype.addNode = function(u) {\n var l = this.tagStack[this.tagStack.length - 1], c = l.children[l.children.length - 1];\n this.options.withStartIndices && (u.startIndex = this.parser.startIndex), this.options.withEndIndices && (u.endIndex = this.parser.endIndex), l.children.push(u), c && (u.prev = c, c.next = u), u.parent = l, this.lastNode = null;\n }, s;\n }()\n );\n e.DomHandler = o, e.default = o;\n})(Hk);\nfunction vY(e) {\n return !0;\n}\nvar bY = {\n shouldProcessEveryNode: vY\n}, yY = 1 / 0, CY = \"[object Symbol]\", xY = /[^\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\x7f]+/g, SY = /[\\xc0-\\xd6\\xd8-\\xf6\\xf8-\\xff\\u0100-\\u017f]/g, Rp = \"\\\\ud800-\\\\udfff\", eI = \"\\\\u0300-\\\\u036f\\\\ufe20-\\\\ufe23\", tI = \"\\\\u20d0-\\\\u20f0\", nI = \"\\\\u2700-\\\\u27bf\", rI = \"a-z\\\\xdf-\\\\xf6\\\\xf8-\\\\xff\", _Y = \"\\\\xac\\\\xb1\\\\xd7\\\\xf7\", EY = \"\\\\x00-\\\\x2f\\\\x3a-\\\\x40\\\\x5b-\\\\x60\\\\x7b-\\\\xbf\", wY = \"\\\\u2000-\\\\u206f\", TY = \" \\\\t\\\\x0b\\\\f\\\\xa0\\\\ufeff\\\\n\\\\r\\\\u2028\\\\u2029\\\\u1680\\\\u180e\\\\u2000\\\\u2001\\\\u2002\\\\u2003\\\\u2004\\\\u2005\\\\u2006\\\\u2007\\\\u2008\\\\u2009\\\\u200a\\\\u202f\\\\u205f\\\\u3000\", aI = \"A-Z\\\\xc0-\\\\xd6\\\\xd8-\\\\xde\", iI = \"\\\\ufe0e\\\\ufe0f\", oI = _Y + EY + wY + TY, Nb = \"['’]\", AY = \"[\" + Rp + \"]\", gS = \"[\" + oI + \"]\", Nf = \"[\" + eI + tI + \"]\", sI = \"\\\\d+\", NY = \"[\" + nI + \"]\", uI = \"[\" + rI + \"]\", lI = \"[^\" + Rp + oI + sI + nI + rI + aI + \"]\", D1 = \"\\\\ud83c[\\\\udffb-\\\\udfff]\", OY = \"(?:\" + Nf + \"|\" + D1 + \")\", cI = \"[^\" + Rp + \"]\", Ob = \"(?:\\\\ud83c[\\\\udde6-\\\\uddff]){2}\", Lb = \"[\\\\ud800-\\\\udbff][\\\\udc00-\\\\udfff]\", lu = \"[\" + aI + \"]\", dI = \"\\\\u200d\", vS = \"(?:\" + uI + \"|\" + lI + \")\", LY = \"(?:\" + lu + \"|\" + lI + \")\", bS = \"(?:\" + Nb + \"(?:d|ll|m|re|s|t|ve))?\", yS = \"(?:\" + Nb + \"(?:D|LL|M|RE|S|T|VE))?\", fI = OY + \"?\", pI = \"[\" + iI + \"]?\", kY = \"(?:\" + dI + \"(?:\" + [cI, Ob, Lb].join(\"|\") + \")\" + pI + fI + \")*\", hI = pI + fI + kY, IY = \"(?:\" + [NY, Ob, Lb].join(\"|\") + \")\" + hI, DY = \"(?:\" + [cI + Nf + \"?\", Nf, Ob, Lb, AY].join(\"|\") + \")\", PY = RegExp(Nb, \"g\"), MY = RegExp(Nf, \"g\"), RY = RegExp(D1 + \"(?=\" + D1 + \")|\" + DY + hI, \"g\"), BY = RegExp([\n lu + \"?\" + uI + \"+\" + bS + \"(?=\" + [gS, lu, \"$\"].join(\"|\") + \")\",\n LY + \"+\" + yS + \"(?=\" + [gS, lu + vS, \"$\"].join(\"|\") + \")\",\n lu + \"?\" + vS + \"+\" + bS,\n lu + \"+\" + yS,\n sI,\n IY\n].join(\"|\"), \"g\"), FY = RegExp(\"[\" + dI + Rp + eI + tI + iI + \"]\"), jY = /[a-z][A-Z]|[A-Z]{2,}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/, $Y = {\n // Latin-1 Supplement block.\n À: \"A\",\n Á: \"A\",\n Â: \"A\",\n Ã: \"A\",\n Ä: \"A\",\n Å: \"A\",\n à: \"a\",\n á: \"a\",\n â: \"a\",\n ã: \"a\",\n ä: \"a\",\n å: \"a\",\n Ç: \"C\",\n ç: \"c\",\n Ð: \"D\",\n ð: \"d\",\n È: \"E\",\n É: \"E\",\n Ê: \"E\",\n Ë: \"E\",\n è: \"e\",\n é: \"e\",\n ê: \"e\",\n ë: \"e\",\n Ì: \"I\",\n Í: \"I\",\n Î: \"I\",\n Ï: \"I\",\n ì: \"i\",\n í: \"i\",\n î: \"i\",\n ï: \"i\",\n Ñ: \"N\",\n ñ: \"n\",\n Ò: \"O\",\n Ó: \"O\",\n Ô: \"O\",\n Õ: \"O\",\n Ö: \"O\",\n Ø: \"O\",\n ò: \"o\",\n ó: \"o\",\n ô: \"o\",\n õ: \"o\",\n ö: \"o\",\n ø: \"o\",\n Ù: \"U\",\n Ú: \"U\",\n Û: \"U\",\n Ü: \"U\",\n ù: \"u\",\n ú: \"u\",\n û: \"u\",\n ü: \"u\",\n Ý: \"Y\",\n ý: \"y\",\n ÿ: \"y\",\n Æ: \"Ae\",\n æ: \"ae\",\n Þ: \"Th\",\n þ: \"th\",\n ß: \"ss\",\n // Latin Extended-A block.\n Ā: \"A\",\n Ă: \"A\",\n Ą: \"A\",\n ā: \"a\",\n ă: \"a\",\n ą: \"a\",\n Ć: \"C\",\n Ĉ: \"C\",\n Ċ: \"C\",\n Č: \"C\",\n ć: \"c\",\n ĉ: \"c\",\n ċ: \"c\",\n č: \"c\",\n Ď: \"D\",\n Đ: \"D\",\n ď: \"d\",\n đ: \"d\",\n Ē: \"E\",\n Ĕ: \"E\",\n Ė: \"E\",\n Ę: \"E\",\n Ě: \"E\",\n ē: \"e\",\n ĕ: \"e\",\n ė: \"e\",\n ę: \"e\",\n ě: \"e\",\n Ĝ: \"G\",\n Ğ: \"G\",\n Ġ: \"G\",\n Ģ: \"G\",\n ĝ: \"g\",\n ğ: \"g\",\n ġ: \"g\",\n ģ: \"g\",\n Ĥ: \"H\",\n Ħ: \"H\",\n ĥ: \"h\",\n ħ: \"h\",\n Ĩ: \"I\",\n Ī: \"I\",\n Ĭ: \"I\",\n Į: \"I\",\n İ: \"I\",\n ĩ: \"i\",\n ī: \"i\",\n ĭ: \"i\",\n į: \"i\",\n ı: \"i\",\n Ĵ: \"J\",\n ĵ: \"j\",\n Ķ: \"K\",\n ķ: \"k\",\n ĸ: \"k\",\n Ĺ: \"L\",\n Ļ: \"L\",\n Ľ: \"L\",\n Ŀ: \"L\",\n Ł: \"L\",\n ĺ: \"l\",\n ļ: \"l\",\n ľ: \"l\",\n ŀ: \"l\",\n ł: \"l\",\n Ń: \"N\",\n Ņ: \"N\",\n Ň: \"N\",\n Ŋ: \"N\",\n ń: \"n\",\n ņ: \"n\",\n ň: \"n\",\n ŋ: \"n\",\n Ō: \"O\",\n Ŏ: \"O\",\n Ő: \"O\",\n ō: \"o\",\n ŏ: \"o\",\n ő: \"o\",\n Ŕ: \"R\",\n Ŗ: \"R\",\n Ř: \"R\",\n ŕ: \"r\",\n ŗ: \"r\",\n ř: \"r\",\n Ś: \"S\",\n Ŝ: \"S\",\n Ş: \"S\",\n Š: \"S\",\n ś: \"s\",\n ŝ: \"s\",\n ş: \"s\",\n š: \"s\",\n Ţ: \"T\",\n Ť: \"T\",\n Ŧ: \"T\",\n ţ: \"t\",\n ť: \"t\",\n ŧ: \"t\",\n Ũ: \"U\",\n Ū: \"U\",\n Ŭ: \"U\",\n Ů: \"U\",\n Ű: \"U\",\n Ų: \"U\",\n ũ: \"u\",\n ū: \"u\",\n ŭ: \"u\",\n ů: \"u\",\n ű: \"u\",\n ų: \"u\",\n Ŵ: \"W\",\n ŵ: \"w\",\n Ŷ: \"Y\",\n ŷ: \"y\",\n Ÿ: \"Y\",\n Ź: \"Z\",\n Ż: \"Z\",\n Ž: \"Z\",\n ź: \"z\",\n ż: \"z\",\n ž: \"z\",\n IJ: \"IJ\",\n ij: \"ij\",\n Œ: \"Oe\",\n œ: \"oe\",\n ʼn: \"'n\",\n ſ: \"ss\"\n}, HY = typeof pt == \"object\" && pt && pt.Object === Object && pt, VY = typeof self == \"object\" && self && self.Object === Object && self, zY = HY || VY || Function(\"return this\")();\nfunction qY(e, t, n, r) {\n var a = -1, i = e ? e.length : 0;\n for (r && i && (n = e[++a]); ++a < i; )\n n = t(n, e[a], a, e);\n return n;\n}\nfunction GY(e) {\n return e.split(\"\");\n}\nfunction UY(e) {\n return e.match(xY) || [];\n}\nfunction WY(e) {\n return function(t) {\n return e == null ? void 0 : e[t];\n };\n}\nvar KY = WY($Y);\nfunction mI(e) {\n return FY.test(e);\n}\nfunction YY(e) {\n return jY.test(e);\n}\nfunction XY(e) {\n return mI(e) ? ZY(e) : GY(e);\n}\nfunction ZY(e) {\n return e.match(RY) || [];\n}\nfunction QY(e) {\n return e.match(BY) || [];\n}\nvar JY = Object.prototype, eX = JY.toString, CS = zY.Symbol, xS = CS ? CS.prototype : void 0, SS = xS ? xS.toString : void 0;\nfunction tX(e, t, n) {\n var r = -1, a = e.length;\n t < 0 && (t = -t > a ? 0 : a + t), n = n > a ? a : n, n < 0 && (n += a), a = t > n ? 0 : n - t >>> 0, t >>>= 0;\n for (var i = Array(a); ++r < a; )\n i[r] = e[r + t];\n return i;\n}\nfunction nX(e) {\n if (typeof e == \"string\")\n return e;\n if (sX(e))\n return SS ? SS.call(e) : \"\";\n var t = e + \"\";\n return t == \"0\" && 1 / e == -yY ? \"-0\" : t;\n}\nfunction rX(e, t, n) {\n var r = e.length;\n return n = n === void 0 ? r : n, !t && n >= r ? e : tX(e, t, n);\n}\nfunction aX(e) {\n return function(t) {\n t = Bp(t);\n var n = mI(t) ? XY(t) : void 0, r = n ? n[0] : t.charAt(0), a = n ? rX(n, 1).join(\"\") : t.slice(1);\n return r[e]() + a;\n };\n}\nfunction iX(e) {\n return function(t) {\n return qY(fX(cX(t).replace(PY, \"\")), e, \"\");\n };\n}\nfunction oX(e) {\n return !!e && typeof e == \"object\";\n}\nfunction sX(e) {\n return typeof e == \"symbol\" || oX(e) && eX.call(e) == CY;\n}\nfunction Bp(e) {\n return e == null ? \"\" : nX(e);\n}\nvar uX = iX(function(e, t, n) {\n return t = t.toLowerCase(), e + (n ? lX(t) : t);\n});\nfunction lX(e) {\n return dX(Bp(e).toLowerCase());\n}\nfunction cX(e) {\n return e = Bp(e), e && e.replace(SY, KY).replace(MY, \"\");\n}\nvar dX = aX(\"toUpperCase\");\nfunction fX(e, t, n) {\n return e = Bp(e), t = n ? void 0 : t, t === void 0 ? YY(e) ? QY(e) : UY(e) : e.match(t) || [];\n}\nvar pX = uX;\nconst hX = [\n \"accept\",\n \"acceptCharset\",\n \"accessKey\",\n \"action\",\n \"allowFullScreen\",\n \"allowTransparency\",\n \"alt\",\n \"async\",\n \"autoComplete\",\n \"autoFocus\",\n \"autoPlay\",\n \"capture\",\n \"cellPadding\",\n \"cellSpacing\",\n \"challenge\",\n \"charSet\",\n \"checked\",\n \"cite\",\n \"classID\",\n \"className\",\n \"colSpan\",\n \"cols\",\n \"content\",\n \"contentEditable\",\n \"contextMenu\",\n \"controls\",\n \"coords\",\n \"crossOrigin\",\n \"data\",\n \"dateTime\",\n \"default\",\n \"defer\",\n \"dir\",\n \"disabled\",\n \"download\",\n \"draggable\",\n \"encType\",\n \"form\",\n \"formAction\",\n \"formEncType\",\n \"formMethod\",\n \"formNoValidate\",\n \"formTarget\",\n \"frameBorder\",\n \"headers\",\n \"height\",\n \"hidden\",\n \"high\",\n \"href\",\n \"hrefLang\",\n \"htmlFor\",\n \"httpEquiv\",\n \"icon\",\n \"id\",\n \"inputMode\",\n \"integrity\",\n \"is\",\n \"keyParams\",\n \"keyType\",\n \"kind\",\n \"label\",\n \"lang\",\n \"list\",\n \"loop\",\n \"low\",\n \"manifest\",\n \"marginHeight\",\n \"marginWidth\",\n \"max\",\n \"maxLength\",\n \"media\",\n \"mediaGroup\",\n \"method\",\n \"min\",\n \"minLength\",\n \"multiple\",\n \"muted\",\n \"name\",\n \"noValidate\",\n \"nonce\",\n \"open\",\n \"optimum\",\n \"pattern\",\n \"placeholder\",\n \"poster\",\n \"preload\",\n \"profile\",\n \"radioGroup\",\n \"readOnly\",\n \"rel\",\n \"required\",\n \"reversed\",\n \"role\",\n \"rowSpan\",\n \"rows\",\n \"sandbox\",\n \"scope\",\n \"scoped\",\n \"scrolling\",\n \"seamless\",\n \"selected\",\n \"shape\",\n \"size\",\n \"sizes\",\n \"span\",\n \"spellCheck\",\n \"src\",\n \"srcDoc\",\n \"srcLang\",\n \"srcSet\",\n \"start\",\n \"step\",\n \"style\",\n \"summary\",\n \"tabIndex\",\n \"target\",\n \"title\",\n \"type\",\n \"useMap\",\n \"value\",\n \"width\",\n \"wmode\",\n \"wrap\",\n \"onClick\"\n], mX = [\n \"autoCapitalize\",\n \"autoCorrect\",\n \"color\",\n \"itemProp\",\n \"itemScope\",\n \"itemType\",\n \"itemRef\",\n \"itemID\",\n \"security\",\n \"unselectable\",\n \"results\",\n \"autoSave\"\n], gX = [\n \"accentHeight\",\n \"accumulate\",\n \"additive\",\n \"alignmentBaseline\",\n \"allowReorder\",\n \"alphabetic\",\n \"amplitude\",\n \"arabicForm\",\n \"ascent\",\n \"attributeName\",\n \"attributeType\",\n \"autoReverse\",\n \"azimuth\",\n \"baseFrequency\",\n \"baseProfile\",\n \"baselineShift\",\n \"bbox\",\n \"begin\",\n \"bias\",\n \"by\",\n \"calcMode\",\n \"capHeight\",\n \"clip\",\n \"clipPath\",\n \"clipPathUnits\",\n \"clipRule\",\n \"colorInterpolation\",\n \"colorInterpolationFilters\",\n \"colorProfile\",\n \"colorRendering\",\n \"contentScriptType\",\n \"contentStyleType\",\n \"cursor\",\n \"cx\",\n \"cy\",\n \"d\",\n \"decelerate\",\n \"descent\",\n \"diffuseConstant\",\n \"direction\",\n \"display\",\n \"divisor\",\n \"dominantBaseline\",\n \"dur\",\n \"dx\",\n \"dy\",\n \"edgeMode\",\n \"elevation\",\n \"enableBackground\",\n \"end\",\n \"exponent\",\n \"externalResourcesRequired\",\n \"fill\",\n \"fillOpacity\",\n \"fillRule\",\n \"filter\",\n \"filterRes\",\n \"filterUnits\",\n \"floodColor\",\n \"floodOpacity\",\n \"focusable\",\n \"fontFamily\",\n \"fontSize\",\n \"fontSizeAdjust\",\n \"fontStretch\",\n \"fontStyle\",\n \"fontVariant\",\n \"fontWeight\",\n \"format\",\n \"from\",\n \"fx\",\n \"fy\",\n \"g1\",\n \"g2\",\n \"glyphName\",\n \"glyphOrientationHorizontal\",\n \"glyphOrientationVertical\",\n \"glyphRef\",\n \"gradientTransform\",\n \"gradientUnits\",\n \"hanging\",\n \"horizAdvX\",\n \"horizOriginX\",\n \"ideographic\",\n \"imageRendering\",\n \"in\",\n \"in2\",\n \"intercept\",\n \"k\",\n \"k1\",\n \"k2\",\n \"k3\",\n \"k4\",\n \"kernelMatrix\",\n \"kernelUnitLength\",\n \"kerning\",\n \"keyPoints\",\n \"keySplines\",\n \"keyTimes\",\n \"lengthAdjust\",\n \"letterSpacing\",\n \"lightingColor\",\n \"limitingConeAngle\",\n \"local\",\n \"markerEnd\",\n \"markerHeight\",\n \"markerMid\",\n \"markerStart\",\n \"markerUnits\",\n \"markerWidth\",\n \"mask\",\n \"maskContentUnits\",\n \"maskUnits\",\n \"mathematical\",\n \"mode\",\n \"numOctaves\",\n \"offset\",\n \"opacity\",\n \"operator\",\n \"order\",\n \"orient\",\n \"orientation\",\n \"origin\",\n \"overflow\",\n \"overlinePosition\",\n \"overlineThickness\",\n \"paintOrder\",\n \"panose1\",\n \"pathLength\",\n \"patternContentUnits\",\n \"patternTransform\",\n \"patternUnits\",\n \"pointerEvents\",\n \"points\",\n \"pointsAtX\",\n \"pointsAtY\",\n \"pointsAtZ\",\n \"preserveAlpha\",\n \"preserveAspectRatio\",\n \"primitiveUnits\",\n \"r\",\n \"radius\",\n \"refX\",\n \"refY\",\n \"renderingIntent\",\n \"repeatCount\",\n \"repeatDur\",\n \"requiredExtensions\",\n \"requiredFeatures\",\n \"restart\",\n \"result\",\n \"rotate\",\n \"rx\",\n \"ry\",\n \"scale\",\n \"seed\",\n \"shapeRendering\",\n \"slope\",\n \"spacing\",\n \"specularConstant\",\n \"specularExponent\",\n \"speed\",\n \"spreadMethod\",\n \"startOffset\",\n \"stdDeviation\",\n \"stemh\",\n \"stemv\",\n \"stitchTiles\",\n \"stopColor\",\n \"stopOpacity\",\n \"strikethroughPosition\",\n \"strikethroughThickness\",\n \"string\",\n \"stroke\",\n \"strokeDasharray\",\n \"strokeDashoffset\",\n \"strokeLinecap\",\n \"strokeLinejoin\",\n \"strokeMiterlimit\",\n \"strokeOpacity\",\n \"strokeWidth\",\n \"surfaceScale\",\n \"systemLanguage\",\n \"tableValues\",\n \"targetX\",\n \"targetY\",\n \"textAnchor\",\n \"textDecoration\",\n \"textLength\",\n \"textRendering\",\n \"to\",\n \"transform\",\n \"u1\",\n \"u2\",\n \"underlinePosition\",\n \"underlineThickness\",\n \"unicode\",\n \"unicodeBidi\",\n \"unicodeRange\",\n \"unitsPerEm\",\n \"vAlphabetic\",\n \"vHanging\",\n \"vIdeographic\",\n \"vMathematical\",\n \"values\",\n \"vectorEffect\",\n \"version\",\n \"vertAdvY\",\n \"vertOriginX\",\n \"vertOriginY\",\n \"viewBox\",\n \"viewTarget\",\n \"visibility\",\n \"widths\",\n \"wordSpacing\",\n \"writingMode\",\n \"x\",\n \"x1\",\n \"x2\",\n \"xChannelSelector\",\n \"xHeight\",\n \"xlinkActuate\",\n \"xlinkArcrole\",\n \"xlinkHref\",\n \"xlinkRole\",\n \"xlinkShow\",\n \"xlinkTitle\",\n \"xlinkType\",\n \"xmlns\",\n \"xmlnsXlink\",\n \"xmlBase\",\n \"xmlLang\",\n \"xmlSpace\",\n \"y\",\n \"y1\",\n \"y2\",\n \"yChannelSelector\",\n \"z\",\n \"zoomAndPan\"\n], vX = hX.concat(mX).concat(gX).reduce(function(e, t) {\n const n = t.toLowerCase();\n return n !== t && (e[n] = t), e;\n}, {});\nvar bX = vX;\nconst yX = pX, CX = vt, xX = bX;\nfunction SX(e) {\n e = e || \"\";\n const t = e.split(/;(?!base64)/);\n let n, r, a, i = {};\n for (let o = 0; o < t.length; ++o)\n n = t[o].split(\":\"), n.length > 2 && (n[1] = n.slice(1).join(\":\")), r = n[0], a = n[1], typeof a == \"string\" && (a = a.trim()), r != null && a != null && r.length > 0 && a.length > 0 && (r = r.trim(), r.indexOf(\"--\") !== 0 && (r = yX(r)), i[r] = a);\n return i;\n}\nconst _X = [\n \"allowFullScreen\",\n \"allowpaymentrequest\",\n \"async\",\n \"autoFocus\",\n \"autoPlay\",\n \"checked\",\n \"controls\",\n \"default\",\n \"disabled\",\n \"formNoValidate\",\n \"hidden\",\n \"ismap\",\n \"itemScope\",\n \"loop\",\n \"multiple\",\n \"muted\",\n \"nomodule\",\n \"noValidate\",\n \"open\",\n \"playsinline\",\n \"readOnly\",\n \"required\",\n \"reversed\",\n \"selected\",\n \"truespeed\"\n];\nfunction EX(e, t, n, r) {\n let a = {\n key: t\n };\n const i = e.name.includes(\"-\");\n e.attribs && (a = Object.entries(e.attribs).reduce((s, [u, l]) => (i || (u = xX[u.replace(/[-:]/, \"\")] || u, u === \"style\" ? l = SX(l) : u === \"class\" ? u = \"className\" : u === \"for\" ? u = \"htmlFor\" : u.startsWith(\"on\") && (l = Function(l)), _X.includes(u) && (l || \"\") === \"\" && (l = u)), s[u] = l, s), a)), r = r || [];\n const o = n != null ? [n].concat(r) : r;\n return CX.createElement.apply(\n null,\n [e.name, a].concat(o)\n );\n}\nvar gI = {\n createElement: EX\n};\nconst _S = gI, wX = [\n \"area\",\n \"base\",\n \"br\",\n \"col\",\n \"embed\",\n \"hr\",\n \"img\",\n \"input\",\n \"keygen\",\n \"link\",\n \"meta\",\n \"param\",\n \"source\",\n \"track\",\n \"wbr\",\n \"menuitem\",\n \"textarea\"\n];\nfunction TX() {\n function e(t, n, r) {\n return t.type === \"text\" ? t.data : t.type === \"comment\" ? !1 : wX.indexOf(t.name) > -1 ? _S.createElement(t, r) : _S.createElement(t, r, t.data, n);\n }\n return {\n processDefaultNode: e\n };\n}\nvar vI = TX;\nconst AX = bY, NX = vI;\nfunction OX() {\n const e = new NX();\n return {\n defaultProcessingInstructions: [{\n shouldProcessNode: AX.shouldProcessEveryNode,\n processNode: e.processDefaultNode\n }]\n };\n}\nvar bI = OX;\nfunction LX() {\n return !0;\n}\nvar yI = {\n alwaysValid: LX\n};\nconst kX = vk.Parser, IX = Hk.DomHandler, DX = bI, PX = yI, MX = gI;\nfunction RX(e) {\n function t(i) {\n e = e || {}, e.decodeEntities = !0;\n const o = new IX();\n return new kX(o, e).parseComplete(i), o.dom.filter(function(u) {\n return u.type !== \"directive\";\n });\n }\n function n(i, o, s, u, l) {\n if (o(i)) {\n (u || []).forEach((d) => {\n d.shouldPreprocessNode(i) && d.preprocessNode(i, l);\n });\n const c = (s || []).find((d) => d.shouldProcessNode(i));\n if (c != null) {\n const d = (i.children || []).map((p, g) => n(\n p,\n o,\n s,\n u,\n g\n )).filter((p) => p != null && p !== !1);\n return c.replaceChildren ? MX.createElement(i, l, i.data, [\n c.processNode(i, d, l)\n ]) : c.processNode(i, d, l);\n } else\n return !1;\n } else\n return !1;\n }\n function r(i, o, s, u) {\n const c = t(i).map(function(d, p) {\n return n(\n d,\n o,\n s,\n u,\n p\n );\n });\n return c.length <= 1 ? c[0] : c;\n }\n function a(i) {\n const o = new DX();\n return r(\n i,\n PX.alwaysValid,\n o.defaultProcessingInstructions\n );\n }\n return {\n parse: a,\n parseWithInstructions: r\n };\n}\nvar BX = RX;\nconst FX = BX, jX = bI, $X = yI, HX = vI;\nvar Fp = {\n Parser: FX,\n ProcessingInstructions: jX,\n IsValidNodeDefinitions: $X,\n ProcessNodeDefinitions: HX\n};\nconst VX = (e = \"\") => e.replace(/\\s/g, \"\").toLocaleLowerCase(), CI = (e = \"\") => e.replace(/\\s/g, \"\"), zX = (e) => {\n var t;\n return !e || !e.content ? [] : (t = e.content[0]) == null ? void 0 : t.content.map(\n (n) => n.content[0].value\n );\n}, kb = (e) => e ? `-${typeof e == \"object\" ? hk(e, !1) : e}` : \"\", qX = (e, t, n, r) => r ? `${e}-${n || \"cta\"}-${r}` : `${e}-${n || \"cta\"}${kb(t)}`, GX = (e, t, n) => `${e}-Link-${n}${kb(t)}`, UX = (e, t, n) => `${e}-Button-${n}${kb(t)}`, jm = (e, t) => {\n const n = VX(t);\n return `${e}_${n}_clicked`;\n}, Nn = ({\n componentName: e = \"\",\n linkText: t = \"\",\n linkType: n = Pa.Primary,\n linkSection: r = \"Paragraph\",\n clickEvent: a,\n ariaLabel: i = \"\",\n mid: o,\n mabReward: s\n}, u = Sp.ppcom, l = ln.CTA) => {\n let c;\n if (l === ln.CTA) {\n const d = a ?? Ca.Button;\n c = {\n link: qX(e, t, n, i),\n event_name: jm(u, d),\n mid: o\n }, s && s.key && (c[s.key] = s.value);\n } else if (l === ln.Link) {\n const d = a ?? Ho.Text;\n c = {\n link: GX(e, t, r),\n event_name: jm(u, d),\n mid: o\n };\n } else {\n const d = a ?? ab.Button;\n c = {\n link: UX(e, t, r),\n event_name: jm(u, d),\n mid: o\n };\n }\n return JSON.stringify(c);\n}, xI = (e = \"\", t = \"\", n = \"\", r = \"Started\", a = Sp.ppcom) => {\n const i = {\n event_name: `${a}_${t}_${r.toLowerCase()}`,\n link: `${e}-${t}-${r}-${n}`\n };\n return JSON.stringify(i);\n}, ES = \"https://\", WX = \"https://www.paypal.com/\", KX = (e) => !!e && e.startsWith(ES) && e.length > ES.length, YX = (e) => {\n const t = /^\\//;\n return `${WX}${e.replace(t, \"\")}`;\n}, wS = (e) => {\n const t = typeof window < \"u\", n = !(e != null && e.startsWith(\"https://\"));\n if (!t || !e || !n && !KX(e))\n return !1;\n const r = /\\/+$/, { href: a, hash: i, search: o } = new URL(\n n ? YX(e) : e\n );\n return a.replace(i, \"\").replace(o, \"\").replace(r, \"\");\n}, XX = (e) => e.charAt(0) === \"/\", ZX = (e, t, n) => {\n const r = [\n /\\/bizsignup(\\/?)/,\n /\\/brc(\\/?)/,\n /\\/business(\\/?)/,\n /\\/digital-wallet(\\/?)/,\n /\\/security(\\/?)/,\n /\\/enterprise(\\/?)/,\n /\\/for-you(\\/?)/,\n /\\/non-profit(\\/?)/,\n /\\/smarthelp(\\/?)/,\n /\\/fastlane(\\/?)/,\n /webapps\\/mpp/\n ];\n let a = t;\n return n && r.some((i) => i.test(e)) && (a += `/${n.toLowerCase()}`), a += e, e = a, e;\n}, qi = (e, t = \"\", n = \"\") => XX(e) && t ? ZX(e, t, n) : e, QX = (e) => Symbol.for(\"react.fragment\") === e;\nconst JX = [\n \"paypal.com\",\n \"pypl.com\",\n \"paypal-corp.com\",\n \"concertocard.com/application/paypal\"\n], P1 = \"_self\", SI = \"_blank\", eZ = [P1, SI], _I = \"HtmlTextRenderer\", tZ = new ke(_I), nZ = Fp.Parser(), rZ = Fp.ProcessNodeDefinitions(vt), aZ = () => !0, iZ = (e) => e.startsWith(\"#\") || e.startsWith(\"/\") ? !0 : JX.some(\n (r) => e.includes(r)\n), oZ = (e, t, n) => {\n let { target: r, href: a } = e;\n return a = qi(a, t, n), r && eZ.includes(r) || (r = iZ(a) ? P1 : SI), {\n ...e,\n target: r,\n rel: r === P1 ? \"\" : \"noopener noreferrer\",\n href: a\n };\n}, M1 = (e, t) => ({\n replaceChildren: !1,\n shouldProcessNode: (n) => n.name === e,\n processNode: t\n}), sZ = (e = {}) => Object.entries(e).map(\n ([r, a]) => M1(r, a)\n), uZ = ({\n as: e,\n className: t,\n customWrapper: n,\n htmlOverrides: r = {},\n analyticsCompName: a = \"\",\n analyticsTextSection: i = \"\",\n pageSegment: o\n}) => {\n const s = sZ(r), u = M1(\n \"p\",\n ({ attribs: d = {} }, p, g) => {\n let v = e || \"p\";\n const b = { key: `wrapper-${g}` }, C = {\n ...d,\n ...b\n };\n t && (C.className = t), n && (v = n, e && (C.as = e));\n const w = QX(n) ? b : C;\n return vt.createElement(v, w, p);\n }\n ), l = M1(\n \"a\",\n ({ attribs: d = {} }, p, g) => {\n if (d.href === \"data-nosnippet\" && p.length)\n return vt.createElement(\n \"span\",\n { \"data-nosnippet\": !0 },\n p\n );\n if (!(p != null && p.length))\n return null;\n const { host: b, country: C } = Ze(Vt), w = oZ(\n d,\n b,\n C\n ), _ = \"a\", [x] = p, S = {\n componentName: a,\n linkSection: i,\n linkText: x\n };\n !!w.clickeventname && (S.clickEvent = w.clickeventname, delete w.clickeventname);\n const N = Nn(\n S,\n o,\n ln.Link\n ), P = {\n ...w,\n className: tZ.getElementClassName(\"link\"),\n key: `wrapper-${g}`,\n \"data-pa-click\": N\n };\n return t && (P.className = se(P.className, t)), vt.createElement(_, P, p);\n }\n );\n return [\n ...s,\n l,\n u,\n {\n // Anything else\n shouldProcessNode() {\n return !0;\n },\n processNode: rZ.processDefaultNode\n }\n ];\n}, EI = ({\n className: e,\n as: t,\n customWrapper: n,\n htmlString: r,\n htmlOverrides: a,\n analyticsCompName: i = \"\",\n analyticsTextSection: o = \"Paragraph\"\n}) => {\n const { pageSegment: s } = Ze(Vt);\n if (!r || typeof r != \"string\")\n return null;\n const u = uZ({\n as: t,\n className: e,\n customWrapper: n,\n htmlOverrides: a,\n analyticsCompName: i,\n analyticsTextSection: o,\n pageSegment: s\n });\n return nZ.parseWithInstructions(\n r,\n aZ,\n u\n );\n};\nEI.displayName = _I;\nconst lZ = \"ContentRenderer\", an = ({\n as: e,\n className: t,\n content: n,\n customWrapper: r,\n htmlOverrides: a,\n wrapTokenWithSpan: i = !1,\n renderMarkdownContent: o,\n renderHtmlContent: s,\n analyticsCompName: u = \"\",\n analyticsTextSection: l = \"\"\n}) => {\n if (!n)\n return null;\n const d = typeof n == \"object\" ? hk(n, i) : n;\n if (o && d)\n return o({ markdownStr: d, className: t });\n const p = lK(d);\n return s && p ? s({ htmlStr: p, className: t }) : /* @__PURE__ */ h.jsx(\n EI,\n {\n as: e,\n className: t,\n htmlString: p,\n customWrapper: r,\n htmlOverrides: a,\n analyticsCompName: u,\n analyticsTextSection: l\n }\n );\n};\nan.displayName = lZ;\nconst cZ = (e) => (e.content || []).map((n) => ({\n nodeType: ya.BLOCKS.DOCUMENT,\n content: [n],\n data: {}\n})), wI = ({\n className: e,\n text: t,\n index: n = NaN,\n paragraphSize: r = \"Caption\",\n showSupScriptIndex: a = !1,\n analyticsCompName: i = \"\",\n analyticsTextSection: o = \"\"\n}) => {\n const s = cZ(t);\n return /* @__PURE__ */ h.jsx(h.Fragment, { children: s.map((u, l) => {\n const c = `MultiLineText-${n}-${l}`, p = a && l === 0;\n return /* @__PURE__ */ h.jsxs(\n Gt,\n {\n className: se(\n e,\n \"multi-line-text\",\n !p && \"multi-line-text-wo-sup\"\n ),\n size: r,\n as: \"div\",\n children: [\n p && /* @__PURE__ */ h.jsx(\"div\", { className: \"multi-line-text-sup\", children: /* @__PURE__ */ h.jsx(\"sup\", { children: n + 1 }) }),\n /* @__PURE__ */ h.jsx(\"div\", { className: \"multi-line-text-paragraph\", children: /* @__PURE__ */ h.jsx(\n an,\n {\n customWrapper: ws,\n content: u,\n analyticsCompName: i,\n analyticsTextSection: o\n }\n ) })\n ]\n },\n c\n );\n }) });\n};\nconst TI = \"Disclosure\", dZ = new ke(TI), fZ = ({\n className: e,\n text: t,\n index: n,\n paragraphSize: r = \"Caption\",\n analyticsCompName: a = TI,\n analyticsTextSection: i = \"\"\n}) => {\n const o = se(e, dZ.getElementClassName(\"item\"));\n return /* @__PURE__ */ h.jsx(\n wI,\n {\n className: o,\n paragraphSize: r,\n text: t,\n index: n,\n showSupScriptIndex: !0,\n analyticsCompName: a,\n analyticsTextSection: i\n }\n );\n}, Ib = \"Disclosure\", TS = new ke(Ib), Db = ({\n className: e,\n collection: t = [],\n paragraphSize: n = \"Caption\",\n paragraph: r,\n analyticsCompName: a = \"Disclosure\",\n analyticsTextSection: i = \"\",\n customWrapper: o = \"div\",\n componentId: s,\n isQuantumLeap: u,\n ...l\n}) => {\n const c = e || \"disclosure-text-color\", d = \"slate gradient\", p = se(c, TS.getComponentClassName(), {\n [pn.getThemeClassName(d)]: u\n });\n return /* @__PURE__ */ h.jsxs(o, { className: p, ...l, id: s, children: [\n r && /* @__PURE__ */ h.jsx(\n wI,\n {\n text: r,\n className: se(TS.getElementClassName(\"paragraph\")),\n paragraphSize: n,\n analyticsCompName: a,\n analyticsTextSection: i\n }\n ),\n t.map((g, v) => /* @__PURE__ */ h.jsx(\n fZ,\n {\n ...g,\n index: v,\n paragraphSize: n,\n analyticsCompName: a,\n analyticsTextSection: i\n },\n `item-${v + 1}`\n ))\n ] });\n};\nDb.displayName = Ib;\nconst Ci = (e = {}) => /* @__PURE__ */ h.jsx(\n Db,\n {\n customWrapper: Wn,\n motionOptions: xf,\n ...e\n }\n);\nCi.displayName = Ib;\nvar R1 = { exports: {} };\n(function(e, t) {\n typeof navigator < \"u\" && function(n, r) {\n e.exports = r();\n }(pt, function() {\n var n = \"http://www.w3.org/2000/svg\", r = \"\", a = !1, i = -999999, o = function(m) {\n a = !!m;\n }, s = function() {\n return a;\n }, u = function(m) {\n r = m;\n }, l = function() {\n return r;\n };\n function c(f) {\n return document.createElement(f);\n }\n function d(f, m) {\n var y, A = f.length, R;\n for (y = 0; y < A; y += 1) {\n R = f[y].prototype;\n for (var M in R)\n Object.prototype.hasOwnProperty.call(R, M) && (m.prototype[M] = R[M]);\n }\n }\n function p(f) {\n function m() {\n }\n return m.prototype = f, m;\n }\n var g = function() {\n function f(m) {\n this.audios = [], this.audioFactory = m, this._volume = 1, this._isMuted = !1;\n }\n return f.prototype = {\n addAudio: function(y) {\n this.audios.push(y);\n },\n pause: function() {\n var y, A = this.audios.length;\n for (y = 0; y < A; y += 1)\n this.audios[y].pause();\n },\n resume: function() {\n var y, A = this.audios.length;\n for (y = 0; y < A; y += 1)\n this.audios[y].resume();\n },\n setRate: function(y) {\n var A, R = this.audios.length;\n for (A = 0; A < R; A += 1)\n this.audios[A].setRate(y);\n },\n createAudio: function(y) {\n return this.audioFactory ? this.audioFactory(y) : window.Howl ? new window.Howl({\n src: [y]\n }) : {\n isPlaying: !1,\n play: function() {\n this.isPlaying = !0;\n },\n seek: function() {\n this.isPlaying = !1;\n },\n playing: function() {\n },\n rate: function() {\n },\n setVolume: function() {\n }\n };\n },\n setAudioFactory: function(y) {\n this.audioFactory = y;\n },\n setVolume: function(y) {\n this._volume = y, this._updateVolume();\n },\n mute: function() {\n this._isMuted = !0, this._updateVolume();\n },\n unmute: function() {\n this._isMuted = !1, this._updateVolume();\n },\n getVolume: function() {\n return this._volume;\n },\n _updateVolume: function() {\n var y, A = this.audios.length;\n for (y = 0; y < A; y += 1)\n this.audios[y].volume(this._volume * (this._isMuted ? 0 : 1));\n }\n }, function() {\n return new f();\n };\n }(), v = function() {\n function f(y, A) {\n var R = 0, M = [], Z;\n switch (y) {\n case \"int16\":\n case \"uint8c\":\n Z = 1;\n break;\n default:\n Z = 1.1;\n break;\n }\n for (R = 0; R < A; R += 1)\n M.push(Z);\n return M;\n }\n function m(y, A) {\n return y === \"float32\" ? new Float32Array(A) : y === \"int16\" ? new Int16Array(A) : y === \"uint8c\" ? new Uint8ClampedArray(A) : f(y, A);\n }\n return typeof Uint8ClampedArray == \"function\" && typeof Float32Array == \"function\" ? m : f;\n }();\n function b(f) {\n return Array.apply(null, {\n length: f\n });\n }\n var C = !0, w = null, _ = \"\", x = /^((?!chrome|android).)*safari/i.test(navigator.userAgent), S = Math.pow, E = Math.sqrt, N = Math.floor, P = Math.min, H = 150, k = Math.PI / 180, Q = 0.5519;\n function I(f, m, y, A) {\n this.type = f, this.currentTime = m, this.totalTime = y, this.direction = A < 0 ? -1 : 1;\n }\n function G(f, m) {\n this.type = f, this.direction = m < 0 ? -1 : 1;\n }\n function $(f, m, y, A) {\n this.type = f, this.currentLoop = y, this.totalLoops = m, this.direction = A < 0 ? -1 : 1;\n }\n function z(f, m, y) {\n this.type = f, this.firstFrame = m, this.totalFrames = y;\n }\n function B(f, m) {\n this.type = f, this.target = m;\n }\n function O(f, m) {\n this.type = \"renderFrameError\", this.nativeError = f, this.currentTime = m;\n }\n function D(f) {\n this.type = \"configError\", this.nativeError = f;\n }\n var T = function() {\n var f = 0;\n return function() {\n return f += 1, _ + \"__lottie_element_\" + f;\n };\n }();\n function j(f, m, y) {\n var A, R, M, Z, pe, te, me, xe;\n switch (Z = Math.floor(f * 6), pe = f * 6 - Z, te = y * (1 - m), me = y * (1 - pe * m), xe = y * (1 - (1 - pe) * m), Z % 6) {\n case 0:\n A = y, R = xe, M = te;\n break;\n case 1:\n A = me, R = y, M = te;\n break;\n case 2:\n A = te, R = y, M = xe;\n break;\n case 3:\n A = te, R = me, M = y;\n break;\n case 4:\n A = xe, R = te, M = y;\n break;\n case 5:\n A = y, R = te, M = me;\n break;\n }\n return [A, R, M];\n }\n function F(f, m, y) {\n var A = Math.max(f, m, y), R = Math.min(f, m, y), M = A - R, Z, pe = A === 0 ? 0 : M / A, te = A / 255;\n switch (A) {\n case R:\n Z = 0;\n break;\n case f:\n Z = m - y + M * (m < y ? 6 : 0), Z /= 6 * M;\n break;\n case m:\n Z = y - f + M * 2, Z /= 6 * M;\n break;\n case y:\n Z = f - m + M * 4, Z /= 6 * M;\n break;\n }\n return [Z, pe, te];\n }\n function L(f, m) {\n var y = F(f[0] * 255, f[1] * 255, f[2] * 255);\n return y[1] += m, y[1] > 1 ? y[1] = 1 : y[1] <= 0 && (y[1] = 0), j(y[0], y[1], y[2]);\n }\n function q(f, m) {\n var y = F(f[0] * 255, f[1] * 255, f[2] * 255);\n return y[2] += m, y[2] > 1 ? y[2] = 1 : y[2] < 0 && (y[2] = 0), j(y[0], y[1], y[2]);\n }\n function W(f, m) {\n var y = F(f[0] * 255, f[1] * 255, f[2] * 255);\n return y[0] += m / 360, y[0] > 1 ? y[0] -= 1 : y[0] < 0 && (y[0] += 1), j(y[0], y[1], y[2]);\n }\n (function() {\n var f = [], m, y;\n for (m = 0; m < 256; m += 1)\n y = m.toString(16), f[m] = y.length === 1 ? \"0\" + y : y;\n return function(A, R, M) {\n return A < 0 && (A = 0), R < 0 && (R = 0), M < 0 && (M = 0), \"#\" + f[A] + f[R] + f[M];\n };\n })();\n var X = function(m) {\n C = !!m;\n }, de = function() {\n return C;\n }, Se = function(m) {\n w = m;\n }, Te = function() {\n return w;\n }, Le = function(m) {\n H = m;\n }, Ge = function() {\n return H;\n }, Ne = function(m) {\n _ = m;\n };\n function ie(f) {\n return document.createElementNS(n, f);\n }\n function Ce(f) {\n \"@babel/helpers - typeof\";\n return typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? Ce = function(y) {\n return typeof y;\n } : Ce = function(y) {\n return y && typeof Symbol == \"function\" && y.constructor === Symbol && y !== Symbol.prototype ? \"symbol\" : typeof y;\n }, Ce(f);\n }\n var ve = function() {\n var f = 1, m = [], y, A, R = {\n onmessage: function() {\n },\n postMessage: function(ye) {\n y({\n data: ye\n });\n }\n }, M = {\n postMessage: function(ye) {\n R.onmessage({\n data: ye\n });\n }\n };\n function Z(ne) {\n if (window.Worker && window.Blob && s()) {\n var ye = new Blob([\"var _workerSelf = self; self.onmessage = \", ne.toString()], {\n type: \"text/javascript\"\n }), Ee = URL.createObjectURL(ye);\n return new Worker(Ee);\n }\n return y = ne, R;\n }\n function pe() {\n A || (A = Z(function(ye) {\n function Ee() {\n function be(je, ge) {\n var ce, ee, he = je.length, Ke, Pe, Et, en;\n for (ee = 0; ee < he; ee += 1)\n if (ce = je[ee], \"ks\" in ce && !ce.completed) {\n if (ce.completed = !0, ce.hasMask) {\n var Ut = ce.masksProperties;\n for (Pe = Ut.length, Ke = 0; Ke < Pe; Ke += 1)\n if (Ut[Ke].pt.k.i)\n J(Ut[Ke].pt.k);\n else\n for (en = Ut[Ke].pt.k.length, Et = 0; Et < en; Et += 1)\n Ut[Ke].pt.k[Et].s && J(Ut[Ke].pt.k[Et].s[0]), Ut[Ke].pt.k[Et].e && J(Ut[Ke].pt.k[Et].e[0]);\n }\n ce.ty === 0 ? (ce.layers = Y(ce.refId, ge), be(ce.layers, ge)) : ce.ty === 4 ? U(ce.shapes) : ce.ty === 5 && St(ce);\n }\n }\n function ae(je, ge) {\n if (je) {\n var ce = 0, ee = je.length;\n for (ce = 0; ce < ee; ce += 1)\n je[ce].t === 1 && (je[ce].data.layers = Y(je[ce].data.refId, ge), be(je[ce].data.layers, ge));\n }\n }\n function re(je, ge) {\n for (var ce = 0, ee = ge.length; ce < ee; ) {\n if (ge[ce].id === je)\n return ge[ce];\n ce += 1;\n }\n return null;\n }\n function Y(je, ge) {\n var ce = re(je, ge);\n return ce ? ce.layers.__used ? JSON.parse(JSON.stringify(ce.layers)) : (ce.layers.__used = !0, ce.layers) : null;\n }\n function U(je) {\n var ge, ce = je.length, ee, he;\n for (ge = ce - 1; ge >= 0; ge -= 1)\n if (je[ge].ty === \"sh\")\n if (je[ge].ks.k.i)\n J(je[ge].ks.k);\n else\n for (he = je[ge].ks.k.length, ee = 0; ee < he; ee += 1)\n je[ge].ks.k[ee].s && J(je[ge].ks.k[ee].s[0]), je[ge].ks.k[ee].e && J(je[ge].ks.k[ee].e[0]);\n else\n je[ge].ty === \"gr\" && U(je[ge].it);\n }\n function J(je) {\n var ge, ce = je.i.length;\n for (ge = 0; ge < ce; ge += 1)\n je.i[ge][0] += je.v[ge][0], je.i[ge][1] += je.v[ge][1], je.o[ge][0] += je.v[ge][0], je.o[ge][1] += je.v[ge][1];\n }\n function oe(je, ge) {\n var ce = ge ? ge.split(\".\") : [100, 100, 100];\n return je[0] > ce[0] ? !0 : ce[0] > je[0] ? !1 : je[1] > ce[1] ? !0 : ce[1] > je[1] ? !1 : je[2] > ce[2] ? !0 : ce[2] > je[2] ? !1 : null;\n }\n var le = function() {\n var je = [4, 4, 14];\n function ge(ee) {\n var he = ee.t.d;\n ee.t.d = {\n k: [{\n s: he,\n t: 0\n }]\n };\n }\n function ce(ee) {\n var he, Ke = ee.length;\n for (he = 0; he < Ke; he += 1)\n ee[he].ty === 5 && ge(ee[he]);\n }\n return function(ee) {\n if (oe(je, ee.v) && (ce(ee.layers), ee.assets)) {\n var he, Ke = ee.assets.length;\n for (he = 0; he < Ke; he += 1)\n ee.assets[he].layers && ce(ee.assets[he].layers);\n }\n };\n }(), fe = function() {\n var je = [4, 7, 99];\n return function(ge) {\n if (ge.chars && !oe(je, ge.v)) {\n var ce, ee = ge.chars.length;\n for (ce = 0; ce < ee; ce += 1) {\n var he = ge.chars[ce];\n he.data && he.data.shapes && (U(he.data.shapes), he.data.ip = 0, he.data.op = 99999, he.data.st = 0, he.data.sr = 1, he.data.ks = {\n p: {\n k: [0, 0],\n a: 0\n },\n s: {\n k: [100, 100],\n a: 0\n },\n a: {\n k: [0, 0],\n a: 0\n },\n r: {\n k: 0,\n a: 0\n },\n o: {\n k: 100,\n a: 0\n }\n }, ge.chars[ce].t || (he.data.shapes.push({\n ty: \"no\"\n }), he.data.shapes[0].it.push({\n p: {\n k: [0, 0],\n a: 0\n },\n s: {\n k: [100, 100],\n a: 0\n },\n a: {\n k: [0, 0],\n a: 0\n },\n r: {\n k: 0,\n a: 0\n },\n o: {\n k: 100,\n a: 0\n },\n sk: {\n k: 0,\n a: 0\n },\n sa: {\n k: 0,\n a: 0\n },\n ty: \"tr\"\n })));\n }\n }\n };\n }(), Re = function() {\n var je = [5, 7, 15];\n function ge(ee) {\n var he = ee.t.p;\n typeof he.a == \"number\" && (he.a = {\n a: 0,\n k: he.a\n }), typeof he.p == \"number\" && (he.p = {\n a: 0,\n k: he.p\n }), typeof he.r == \"number\" && (he.r = {\n a: 0,\n k: he.r\n });\n }\n function ce(ee) {\n var he, Ke = ee.length;\n for (he = 0; he < Ke; he += 1)\n ee[he].ty === 5 && ge(ee[he]);\n }\n return function(ee) {\n if (oe(je, ee.v) && (ce(ee.layers), ee.assets)) {\n var he, Ke = ee.assets.length;\n for (he = 0; he < Ke; he += 1)\n ee.assets[he].layers && ce(ee.assets[he].layers);\n }\n };\n }(), ot = function() {\n var je = [4, 1, 9];\n function ge(ee) {\n var he, Ke = ee.length, Pe, Et;\n for (he = 0; he < Ke; he += 1)\n if (ee[he].ty === \"gr\")\n ge(ee[he].it);\n else if (ee[he].ty === \"fl\" || ee[he].ty === \"st\")\n if (ee[he].c.k && ee[he].c.k[0].i)\n for (Et = ee[he].c.k.length, Pe = 0; Pe < Et; Pe += 1)\n ee[he].c.k[Pe].s && (ee[he].c.k[Pe].s[0] /= 255, ee[he].c.k[Pe].s[1] /= 255, ee[he].c.k[Pe].s[2] /= 255, ee[he].c.k[Pe].s[3] /= 255), ee[he].c.k[Pe].e && (ee[he].c.k[Pe].e[0] /= 255, ee[he].c.k[Pe].e[1] /= 255, ee[he].c.k[Pe].e[2] /= 255, ee[he].c.k[Pe].e[3] /= 255);\n else\n ee[he].c.k[0] /= 255, ee[he].c.k[1] /= 255, ee[he].c.k[2] /= 255, ee[he].c.k[3] /= 255;\n }\n function ce(ee) {\n var he, Ke = ee.length;\n for (he = 0; he < Ke; he += 1)\n ee[he].ty === 4 && ge(ee[he].shapes);\n }\n return function(ee) {\n if (oe(je, ee.v) && (ce(ee.layers), ee.assets)) {\n var he, Ke = ee.assets.length;\n for (he = 0; he < Ke; he += 1)\n ee.assets[he].layers && ce(ee.assets[he].layers);\n }\n };\n }(), it = function() {\n var je = [4, 4, 18];\n function ge(ee) {\n var he, Ke = ee.length, Pe, Et;\n for (he = Ke - 1; he >= 0; he -= 1)\n if (ee[he].ty === \"sh\")\n if (ee[he].ks.k.i)\n ee[he].ks.k.c = ee[he].closed;\n else\n for (Et = ee[he].ks.k.length, Pe = 0; Pe < Et; Pe += 1)\n ee[he].ks.k[Pe].s && (ee[he].ks.k[Pe].s[0].c = ee[he].closed), ee[he].ks.k[Pe].e && (ee[he].ks.k[Pe].e[0].c = ee[he].closed);\n else\n ee[he].ty === \"gr\" && ge(ee[he].it);\n }\n function ce(ee) {\n var he, Ke, Pe = ee.length, Et, en, Ut, Vn;\n for (Ke = 0; Ke < Pe; Ke += 1) {\n if (he = ee[Ke], he.hasMask) {\n var Cn = he.masksProperties;\n for (en = Cn.length, Et = 0; Et < en; Et += 1)\n if (Cn[Et].pt.k.i)\n Cn[Et].pt.k.c = Cn[Et].cl;\n else\n for (Vn = Cn[Et].pt.k.length, Ut = 0; Ut < Vn; Ut += 1)\n Cn[Et].pt.k[Ut].s && (Cn[Et].pt.k[Ut].s[0].c = Cn[Et].cl), Cn[Et].pt.k[Ut].e && (Cn[Et].pt.k[Ut].e[0].c = Cn[Et].cl);\n }\n he.ty === 4 && ge(he.shapes);\n }\n }\n return function(ee) {\n if (oe(je, ee.v) && (ce(ee.layers), ee.assets)) {\n var he, Ke = ee.assets.length;\n for (he = 0; he < Ke; he += 1)\n ee.assets[he].layers && ce(ee.assets[he].layers);\n }\n };\n }();\n function tt(je) {\n je.__complete || (ot(je), le(je), fe(je), Re(je), it(je), be(je.layers, je.assets), ae(je.chars, je.assets), je.__complete = !0);\n }\n function St(je) {\n je.t.a.length === 0 && \"m\" in je.t.p;\n }\n var At = {};\n return At.completeData = tt, At.checkColors = ot, At.checkChars = fe, At.checkPathProperties = Re, At.checkShapes = it, At.completeLayers = be, At;\n }\n if (M.dataManager || (M.dataManager = Ee()), M.assetLoader || (M.assetLoader = function() {\n function be(re) {\n var Y = re.getResponseHeader(\"content-type\");\n return Y && re.responseType === \"json\" && Y.indexOf(\"json\") !== -1 || re.response && Ce(re.response) === \"object\" ? re.response : re.response && typeof re.response == \"string\" ? JSON.parse(re.response) : re.responseText ? JSON.parse(re.responseText) : null;\n }\n function ae(re, Y, U, J) {\n var oe, le = new XMLHttpRequest();\n try {\n le.responseType = \"json\";\n } catch {\n }\n le.onreadystatechange = function() {\n if (le.readyState === 4)\n if (le.status === 200)\n oe = be(le), U(oe);\n else\n try {\n oe = be(le), U(oe);\n } catch (fe) {\n J && J(fe);\n }\n };\n try {\n le.open([\"G\", \"E\", \"T\"].join(\"\"), re, !0);\n } catch {\n le.open([\"G\", \"E\", \"T\"].join(\"\"), Y + \"/\" + re, !0);\n }\n le.send();\n }\n return {\n load: ae\n };\n }()), ye.data.type === \"loadAnimation\")\n M.assetLoader.load(ye.data.path, ye.data.fullPath, function(be) {\n M.dataManager.completeData(be), M.postMessage({\n id: ye.data.id,\n payload: be,\n status: \"success\"\n });\n }, function() {\n M.postMessage({\n id: ye.data.id,\n status: \"error\"\n });\n });\n else if (ye.data.type === \"complete\") {\n var we = ye.data.animation;\n M.dataManager.completeData(we), M.postMessage({\n id: ye.data.id,\n payload: we,\n status: \"success\"\n });\n } else\n ye.data.type === \"loadData\" && M.assetLoader.load(ye.data.path, ye.data.fullPath, function(be) {\n M.postMessage({\n id: ye.data.id,\n payload: be,\n status: \"success\"\n });\n }, function() {\n M.postMessage({\n id: ye.data.id,\n status: \"error\"\n });\n });\n }), A.onmessage = function(ne) {\n var ye = ne.data, Ee = ye.id, we = m[Ee];\n m[Ee] = null, ye.status === \"success\" ? we.onComplete(ye.payload) : we.onError && we.onError();\n });\n }\n function te(ne, ye) {\n f += 1;\n var Ee = \"processId_\" + f;\n return m[Ee] = {\n onComplete: ne,\n onError: ye\n }, Ee;\n }\n function me(ne, ye, Ee) {\n pe();\n var we = te(ye, Ee);\n A.postMessage({\n type: \"loadAnimation\",\n path: ne,\n fullPath: window.location.origin + window.location.pathname,\n id: we\n });\n }\n function xe(ne, ye, Ee) {\n pe();\n var we = te(ye, Ee);\n A.postMessage({\n type: \"loadData\",\n path: ne,\n fullPath: window.location.origin + window.location.pathname,\n id: we\n });\n }\n function Me(ne, ye, Ee) {\n pe();\n var we = te(ye, Ee);\n A.postMessage({\n type: \"complete\",\n animation: ne,\n id: we\n });\n }\n return {\n loadAnimation: me,\n loadData: xe,\n completeAnimation: Me\n };\n }(), Ae = function() {\n var f = function() {\n var ae = c(\"canvas\");\n ae.width = 1, ae.height = 1;\n var re = ae.getContext(\"2d\");\n return re.fillStyle = \"rgba(0,0,0,0)\", re.fillRect(0, 0, 1, 1), ae;\n }();\n function m() {\n this.loadedAssets += 1, this.loadedAssets === this.totalImages && this.loadedFootagesCount === this.totalFootages && this.imagesLoadedCb && this.imagesLoadedCb(null);\n }\n function y() {\n this.loadedFootagesCount += 1, this.loadedAssets === this.totalImages && this.loadedFootagesCount === this.totalFootages && this.imagesLoadedCb && this.imagesLoadedCb(null);\n }\n function A(ae, re, Y) {\n var U = \"\";\n if (ae.e)\n U = ae.p;\n else if (re) {\n var J = ae.p;\n J.indexOf(\"images/\") !== -1 && (J = J.split(\"/\")[1]), U = re + J;\n } else\n U = Y, U += ae.u ? ae.u : \"\", U += ae.p;\n return U;\n }\n function R(ae) {\n var re = 0, Y = setInterval((function() {\n var U = ae.getBBox();\n (U.width || re > 500) && (this._imageLoaded(), clearInterval(Y)), re += 1;\n }).bind(this), 50);\n }\n function M(ae) {\n var re = A(ae, this.assetsPath, this.path), Y = ie(\"image\");\n x ? this.testImageLoaded(Y) : Y.addEventListener(\"load\", this._imageLoaded, !1), Y.addEventListener(\"error\", (function() {\n U.img = f, this._imageLoaded();\n }).bind(this), !1), Y.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", re), this._elementHelper.append ? this._elementHelper.append(Y) : this._elementHelper.appendChild(Y);\n var U = {\n img: Y,\n assetData: ae\n };\n return U;\n }\n function Z(ae) {\n var re = A(ae, this.assetsPath, this.path), Y = c(\"img\");\n Y.crossOrigin = \"anonymous\", Y.addEventListener(\"load\", this._imageLoaded, !1), Y.addEventListener(\"error\", (function() {\n U.img = f, this._imageLoaded();\n }).bind(this), !1), Y.src = re;\n var U = {\n img: Y,\n assetData: ae\n };\n return U;\n }\n function pe(ae) {\n var re = {\n assetData: ae\n }, Y = A(ae, this.assetsPath, this.path);\n return ve.loadData(Y, (function(U) {\n re.img = U, this._footageLoaded();\n }).bind(this), (function() {\n re.img = {}, this._footageLoaded();\n }).bind(this)), re;\n }\n function te(ae, re) {\n this.imagesLoadedCb = re;\n var Y, U = ae.length;\n for (Y = 0; Y < U; Y += 1)\n ae[Y].layers || (!ae[Y].t || ae[Y].t === \"seq\" ? (this.totalImages += 1, this.images.push(this._createImageData(ae[Y]))) : ae[Y].t === 3 && (this.totalFootages += 1, this.images.push(this.createFootageData(ae[Y]))));\n }\n function me(ae) {\n this.path = ae || \"\";\n }\n function xe(ae) {\n this.assetsPath = ae || \"\";\n }\n function Me(ae) {\n for (var re = 0, Y = this.images.length; re < Y; ) {\n if (this.images[re].assetData === ae)\n return this.images[re].img;\n re += 1;\n }\n return null;\n }\n function ne() {\n this.imagesLoadedCb = null, this.images.length = 0;\n }\n function ye() {\n return this.totalImages === this.loadedAssets;\n }\n function Ee() {\n return this.totalFootages === this.loadedFootagesCount;\n }\n function we(ae, re) {\n ae === \"svg\" ? (this._elementHelper = re, this._createImageData = this.createImageData.bind(this)) : this._createImageData = this.createImgData.bind(this);\n }\n function be() {\n this._imageLoaded = m.bind(this), this._footageLoaded = y.bind(this), this.testImageLoaded = R.bind(this), this.createFootageData = pe.bind(this), this.assetsPath = \"\", this.path = \"\", this.totalImages = 0, this.totalFootages = 0, this.loadedAssets = 0, this.loadedFootagesCount = 0, this.imagesLoadedCb = null, this.images = [];\n }\n return be.prototype = {\n loadAssets: te,\n setAssetsPath: xe,\n setPath: me,\n loadedImages: ye,\n loadedFootages: Ee,\n destroy: ne,\n getAsset: Me,\n createImgData: Z,\n createImageData: M,\n imageLoaded: m,\n footageLoaded: y,\n setCacheType: we\n }, be;\n }();\n function _e() {\n }\n _e.prototype = {\n triggerEvent: function(m, y) {\n if (this._cbs[m])\n for (var A = this._cbs[m], R = 0; R < A.length; R += 1)\n A[R](y);\n },\n addEventListener: function(m, y) {\n return this._cbs[m] || (this._cbs[m] = []), this._cbs[m].push(y), (function() {\n this.removeEventListener(m, y);\n }).bind(this);\n },\n removeEventListener: function(m, y) {\n if (!y)\n this._cbs[m] = null;\n else if (this._cbs[m]) {\n for (var A = 0, R = this._cbs[m].length; A < R; )\n this._cbs[m][A] === y && (this._cbs[m].splice(A, 1), A -= 1, R -= 1), A += 1;\n this._cbs[m].length || (this._cbs[m] = null);\n }\n }\n };\n var He = function() {\n function f(m) {\n for (var y = m.split(`\\r\n`), A = {}, R, M = 0, Z = 0; Z < y.length; Z += 1)\n R = y[Z].split(\":\"), R.length === 2 && (A[R[0]] = R[1].trim(), M += 1);\n if (M === 0)\n throw new Error();\n return A;\n }\n return function(m) {\n for (var y = [], A = 0; A < m.length; A += 1) {\n var R = m[A], M = {\n time: R.tm,\n duration: R.dr\n };\n try {\n M.payload = JSON.parse(m[A].cm);\n } catch {\n try {\n M.payload = f(m[A].cm);\n } catch {\n M.payload = {\n name: m[A].cm\n };\n }\n }\n y.push(M);\n }\n return y;\n };\n }(), Oe = function() {\n function f(m) {\n this.compositions.push(m);\n }\n return function() {\n function m(y) {\n for (var A = 0, R = this.compositions.length; A < R; ) {\n if (this.compositions[A].data && this.compositions[A].data.nm === y)\n return this.compositions[A].prepareFrame && this.compositions[A].data.xt && this.compositions[A].prepareFrame(this.currentFrame), this.compositions[A].compInterface;\n A += 1;\n }\n return null;\n }\n return m.compositions = [], m.currentFrame = 0, m.registerComposition = f, m;\n };\n }(), Be = {}, qe = function(m, y) {\n Be[m] = y;\n };\n function Ye(f) {\n return Be[f];\n }\n function Xe(f) {\n \"@babel/helpers - typeof\";\n return typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? Xe = function(y) {\n return typeof y;\n } : Xe = function(y) {\n return y && typeof Symbol == \"function\" && y.constructor === Symbol && y !== Symbol.prototype ? \"symbol\" : typeof y;\n }, Xe(f);\n }\n var Ve = function() {\n this._cbs = [], this.name = \"\", this.path = \"\", this.isLoaded = !1, this.currentFrame = 0, this.currentRawFrame = 0, this.firstFrame = 0, this.totalFrames = 0, this.frameRate = 0, this.frameMult = 0, this.playSpeed = 1, this.playDirection = 1, this.playCount = 0, this.animationData = {}, this.assets = [], this.isPaused = !0, this.autoplay = !1, this.loop = !0, this.renderer = null, this.animationID = T(), this.assetsPath = \"\", this.timeCompleted = 0, this.segmentPos = 0, this.isSubframeEnabled = de(), this.segments = [], this._idle = !0, this._completedLoop = !1, this.projectInterface = Oe(), this.imagePreloader = new Ae(), this.audioController = g(), this.markers = [], this.configAnimation = this.configAnimation.bind(this), this.onSetupError = this.onSetupError.bind(this), this.onSegmentComplete = this.onSegmentComplete.bind(this), this.drawnFrameEvent = new I(\"drawnFrame\", 0, 0, 0);\n };\n d([_e], Ve), Ve.prototype.setParams = function(f) {\n (f.wrapper || f.container) && (this.wrapper = f.wrapper || f.container);\n var m = \"svg\";\n f.animType ? m = f.animType : f.renderer && (m = f.renderer);\n var y = Ye(m);\n this.renderer = new y(this, f.rendererSettings), this.imagePreloader.setCacheType(m, this.renderer.globalData.defs), this.renderer.setProjectInterface(this.projectInterface), this.animType = m, f.loop === \"\" || f.loop === null || f.loop === void 0 || f.loop === !0 ? this.loop = !0 : f.loop === !1 ? this.loop = !1 : this.loop = parseInt(f.loop, 10), this.autoplay = \"autoplay\" in f ? f.autoplay : !0, this.name = f.name ? f.name : \"\", this.autoloadSegments = Object.prototype.hasOwnProperty.call(f, \"autoloadSegments\") ? f.autoloadSegments : !0, this.assetsPath = f.assetsPath, this.initialSegment = f.initialSegment, f.audioFactory && this.audioController.setAudioFactory(f.audioFactory), f.animationData ? this.setupAnimation(f.animationData) : f.path && (f.path.lastIndexOf(\"\\\\\") !== -1 ? this.path = f.path.substr(0, f.path.lastIndexOf(\"\\\\\") + 1) : this.path = f.path.substr(0, f.path.lastIndexOf(\"/\") + 1), this.fileName = f.path.substr(f.path.lastIndexOf(\"/\") + 1), this.fileName = this.fileName.substr(0, this.fileName.lastIndexOf(\".json\")), ve.loadAnimation(f.path, this.configAnimation, this.onSetupError));\n }, Ve.prototype.onSetupError = function() {\n this.trigger(\"data_failed\");\n }, Ve.prototype.setupAnimation = function(f) {\n ve.completeAnimation(f, this.configAnimation);\n }, Ve.prototype.setData = function(f, m) {\n m && Xe(m) !== \"object\" && (m = JSON.parse(m));\n var y = {\n wrapper: f,\n animationData: m\n }, A = f.attributes;\n y.path = A.getNamedItem(\"data-animation-path\") ? A.getNamedItem(\"data-animation-path\").value : A.getNamedItem(\"data-bm-path\") ? A.getNamedItem(\"data-bm-path\").value : A.getNamedItem(\"bm-path\") ? A.getNamedItem(\"bm-path\").value : \"\", y.animType = A.getNamedItem(\"data-anim-type\") ? A.getNamedItem(\"data-anim-type\").value : A.getNamedItem(\"data-bm-type\") ? A.getNamedItem(\"data-bm-type\").value : A.getNamedItem(\"bm-type\") ? A.getNamedItem(\"bm-type\").value : A.getNamedItem(\"data-bm-renderer\") ? A.getNamedItem(\"data-bm-renderer\").value : A.getNamedItem(\"bm-renderer\") ? A.getNamedItem(\"bm-renderer\").value : \"canvas\";\n var R = A.getNamedItem(\"data-anim-loop\") ? A.getNamedItem(\"data-anim-loop\").value : A.getNamedItem(\"data-bm-loop\") ? A.getNamedItem(\"data-bm-loop\").value : A.getNamedItem(\"bm-loop\") ? A.getNamedItem(\"bm-loop\").value : \"\";\n R === \"false\" ? y.loop = !1 : R === \"true\" ? y.loop = !0 : R !== \"\" && (y.loop = parseInt(R, 10));\n var M = A.getNamedItem(\"data-anim-autoplay\") ? A.getNamedItem(\"data-anim-autoplay\").value : A.getNamedItem(\"data-bm-autoplay\") ? A.getNamedItem(\"data-bm-autoplay\").value : A.getNamedItem(\"bm-autoplay\") ? A.getNamedItem(\"bm-autoplay\").value : !0;\n y.autoplay = M !== \"false\", y.name = A.getNamedItem(\"data-name\") ? A.getNamedItem(\"data-name\").value : A.getNamedItem(\"data-bm-name\") ? A.getNamedItem(\"data-bm-name\").value : A.getNamedItem(\"bm-name\") ? A.getNamedItem(\"bm-name\").value : \"\";\n var Z = A.getNamedItem(\"data-anim-prerender\") ? A.getNamedItem(\"data-anim-prerender\").value : A.getNamedItem(\"data-bm-prerender\") ? A.getNamedItem(\"data-bm-prerender\").value : A.getNamedItem(\"bm-prerender\") ? A.getNamedItem(\"bm-prerender\").value : \"\";\n Z === \"false\" && (y.prerender = !1), this.setParams(y);\n }, Ve.prototype.includeLayers = function(f) {\n f.op > this.animationData.op && (this.animationData.op = f.op, this.totalFrames = Math.floor(f.op - this.animationData.ip));\n var m = this.animationData.layers, y, A = m.length, R = f.layers, M, Z = R.length;\n for (M = 0; M < Z; M += 1)\n for (y = 0; y < A; ) {\n if (m[y].id === R[M].id) {\n m[y] = R[M];\n break;\n }\n y += 1;\n }\n if ((f.chars || f.fonts) && (this.renderer.globalData.fontManager.addChars(f.chars), this.renderer.globalData.fontManager.addFonts(f.fonts, this.renderer.globalData.defs)), f.assets)\n for (A = f.assets.length, y = 0; y < A; y += 1)\n this.animationData.assets.push(f.assets[y]);\n this.animationData.__complete = !1, ve.completeAnimation(this.animationData, this.onSegmentComplete);\n }, Ve.prototype.onSegmentComplete = function(f) {\n this.animationData = f;\n var m = Te();\n m && m.initExpressions(this), this.loadNextSegment();\n }, Ve.prototype.loadNextSegment = function() {\n var f = this.animationData.segments;\n if (!f || f.length === 0 || !this.autoloadSegments) {\n this.trigger(\"data_ready\"), this.timeCompleted = this.totalFrames;\n return;\n }\n var m = f.shift();\n this.timeCompleted = m.time * this.frameRate;\n var y = this.path + this.fileName + \"_\" + this.segmentPos + \".json\";\n this.segmentPos += 1, ve.loadData(y, this.includeLayers.bind(this), (function() {\n this.trigger(\"data_failed\");\n }).bind(this));\n }, Ve.prototype.loadSegments = function() {\n var f = this.animationData.segments;\n f || (this.timeCompleted = this.totalFrames), this.loadNextSegment();\n }, Ve.prototype.imagesLoaded = function() {\n this.trigger(\"loaded_images\"), this.checkLoaded();\n }, Ve.prototype.preloadImages = function() {\n this.imagePreloader.setAssetsPath(this.assetsPath), this.imagePreloader.setPath(this.path), this.imagePreloader.loadAssets(this.animationData.assets, this.imagesLoaded.bind(this));\n }, Ve.prototype.configAnimation = function(f) {\n if (this.renderer)\n try {\n this.animationData = f, this.initialSegment ? (this.totalFrames = Math.floor(this.initialSegment[1] - this.initialSegment[0]), this.firstFrame = Math.round(this.initialSegment[0])) : (this.totalFrames = Math.floor(this.animationData.op - this.animationData.ip), this.firstFrame = Math.round(this.animationData.ip)), this.renderer.configAnimation(f), f.assets || (f.assets = []), this.assets = this.animationData.assets, this.frameRate = this.animationData.fr, this.frameMult = this.animationData.fr / 1e3, this.renderer.searchExtraCompositions(f.assets), this.markers = He(f.markers || []), this.trigger(\"config_ready\"), this.preloadImages(), this.loadSegments(), this.updaFrameModifier(), this.waitForFontsLoaded(), this.isPaused && this.audioController.pause();\n } catch (m) {\n this.triggerConfigError(m);\n }\n }, Ve.prototype.waitForFontsLoaded = function() {\n this.renderer && (this.renderer.globalData.fontManager.isLoaded ? this.checkLoaded() : setTimeout(this.waitForFontsLoaded.bind(this), 20));\n }, Ve.prototype.checkLoaded = function() {\n if (!this.isLoaded && this.renderer.globalData.fontManager.isLoaded && (this.imagePreloader.loadedImages() || this.renderer.rendererType !== \"canvas\") && this.imagePreloader.loadedFootages()) {\n this.isLoaded = !0;\n var f = Te();\n f && f.initExpressions(this), this.renderer.initItems(), setTimeout((function() {\n this.trigger(\"DOMLoaded\");\n }).bind(this), 0), this.gotoFrame(), this.autoplay && this.play();\n }\n }, Ve.prototype.resize = function(f, m) {\n var y = typeof f == \"number\" ? f : void 0, A = typeof m == \"number\" ? m : void 0;\n this.renderer.updateContainerSize(y, A);\n }, Ve.prototype.setSubframe = function(f) {\n this.isSubframeEnabled = !!f;\n }, Ve.prototype.gotoFrame = function() {\n this.currentFrame = this.isSubframeEnabled ? this.currentRawFrame : ~~this.currentRawFrame, this.timeCompleted !== this.totalFrames && this.currentFrame > this.timeCompleted && (this.currentFrame = this.timeCompleted), this.trigger(\"enterFrame\"), this.renderFrame(), this.trigger(\"drawnFrame\");\n }, Ve.prototype.renderFrame = function() {\n if (!(this.isLoaded === !1 || !this.renderer))\n try {\n this.renderer.renderFrame(this.currentFrame + this.firstFrame);\n } catch (f) {\n this.triggerRenderFrameError(f);\n }\n }, Ve.prototype.play = function(f) {\n f && this.name !== f || this.isPaused === !0 && (this.isPaused = !1, this.trigger(\"_pause\"), this.audioController.resume(), this._idle && (this._idle = !1, this.trigger(\"_active\")));\n }, Ve.prototype.pause = function(f) {\n f && this.name !== f || this.isPaused === !1 && (this.isPaused = !0, this.trigger(\"_play\"), this._idle = !0, this.trigger(\"_idle\"), this.audioController.pause());\n }, Ve.prototype.togglePause = function(f) {\n f && this.name !== f || (this.isPaused === !0 ? this.play() : this.pause());\n }, Ve.prototype.stop = function(f) {\n f && this.name !== f || (this.pause(), this.playCount = 0, this._completedLoop = !1, this.setCurrentRawFrameValue(0));\n }, Ve.prototype.getMarkerData = function(f) {\n for (var m, y = 0; y < this.markers.length; y += 1)\n if (m = this.markers[y], m.payload && m.payload.name === f)\n return m;\n return null;\n }, Ve.prototype.goToAndStop = function(f, m, y) {\n if (!(y && this.name !== y)) {\n var A = Number(f);\n if (isNaN(A)) {\n var R = this.getMarkerData(f);\n R && this.goToAndStop(R.time, !0);\n } else\n m ? this.setCurrentRawFrameValue(f) : this.setCurrentRawFrameValue(f * this.frameModifier);\n this.pause();\n }\n }, Ve.prototype.goToAndPlay = function(f, m, y) {\n if (!(y && this.name !== y)) {\n var A = Number(f);\n if (isNaN(A)) {\n var R = this.getMarkerData(f);\n R && (R.duration ? this.playSegments([R.time, R.time + R.duration], !0) : this.goToAndStop(R.time, !0));\n } else\n this.goToAndStop(A, m, y);\n this.play();\n }\n }, Ve.prototype.advanceTime = function(f) {\n if (!(this.isPaused === !0 || this.isLoaded === !1)) {\n var m = this.currentRawFrame + f * this.frameModifier, y = !1;\n m >= this.totalFrames - 1 && this.frameModifier > 0 ? !this.loop || this.playCount === this.loop ? this.checkSegments(m > this.totalFrames ? m % this.totalFrames : 0) || (y = !0, m = this.totalFrames - 1) : m >= this.totalFrames ? (this.playCount += 1, this.checkSegments(m % this.totalFrames) || (this.setCurrentRawFrameValue(m % this.totalFrames), this._completedLoop = !0, this.trigger(\"loopComplete\"))) : this.setCurrentRawFrameValue(m) : m < 0 ? this.checkSegments(m % this.totalFrames) || (this.loop && !(this.playCount-- <= 0 && this.loop !== !0) ? (this.setCurrentRawFrameValue(this.totalFrames + m % this.totalFrames), this._completedLoop ? this.trigger(\"loopComplete\") : this._completedLoop = !0) : (y = !0, m = 0)) : this.setCurrentRawFrameValue(m), y && (this.setCurrentRawFrameValue(m), this.pause(), this.trigger(\"complete\"));\n }\n }, Ve.prototype.adjustSegment = function(f, m) {\n this.playCount = 0, f[1] < f[0] ? (this.frameModifier > 0 && (this.playSpeed < 0 ? this.setSpeed(-this.playSpeed) : this.setDirection(-1)), this.totalFrames = f[0] - f[1], this.timeCompleted = this.totalFrames, this.firstFrame = f[1], this.setCurrentRawFrameValue(this.totalFrames - 1e-3 - m)) : f[1] > f[0] && (this.frameModifier < 0 && (this.playSpeed < 0 ? this.setSpeed(-this.playSpeed) : this.setDirection(1)), this.totalFrames = f[1] - f[0], this.timeCompleted = this.totalFrames, this.firstFrame = f[0], this.setCurrentRawFrameValue(1e-3 + m)), this.trigger(\"segmentStart\");\n }, Ve.prototype.setSegment = function(f, m) {\n var y = -1;\n this.isPaused && (this.currentRawFrame + this.firstFrame < f ? y = f : this.currentRawFrame + this.firstFrame > m && (y = m - f)), this.firstFrame = f, this.totalFrames = m - f, this.timeCompleted = this.totalFrames, y !== -1 && this.goToAndStop(y, !0);\n }, Ve.prototype.playSegments = function(f, m) {\n if (m && (this.segments.length = 0), Xe(f[0]) === \"object\") {\n var y, A = f.length;\n for (y = 0; y < A; y += 1)\n this.segments.push(f[y]);\n } else\n this.segments.push(f);\n this.segments.length && m && this.adjustSegment(this.segments.shift(), 0), this.isPaused && this.play();\n }, Ve.prototype.resetSegments = function(f) {\n this.segments.length = 0, this.segments.push([this.animationData.ip, this.animationData.op]), f && this.checkSegments(0);\n }, Ve.prototype.checkSegments = function(f) {\n return this.segments.length ? (this.adjustSegment(this.segments.shift(), f), !0) : !1;\n }, Ve.prototype.destroy = function(f) {\n f && this.name !== f || !this.renderer || (this.renderer.destroy(), this.imagePreloader.destroy(), this.trigger(\"destroy\"), this._cbs = null, this.onEnterFrame = null, this.onLoopComplete = null, this.onComplete = null, this.onSegmentStart = null, this.onDestroy = null, this.renderer = null, this.renderer = null, this.imagePreloader = null, this.projectInterface = null);\n }, Ve.prototype.setCurrentRawFrameValue = function(f) {\n this.currentRawFrame = f, this.gotoFrame();\n }, Ve.prototype.setSpeed = function(f) {\n this.playSpeed = f, this.updaFrameModifier();\n }, Ve.prototype.setDirection = function(f) {\n this.playDirection = f < 0 ? -1 : 1, this.updaFrameModifier();\n }, Ve.prototype.setLoop = function(f) {\n this.loop = f;\n }, Ve.prototype.setVolume = function(f, m) {\n m && this.name !== m || this.audioController.setVolume(f);\n }, Ve.prototype.getVolume = function() {\n return this.audioController.getVolume();\n }, Ve.prototype.mute = function(f) {\n f && this.name !== f || this.audioController.mute();\n }, Ve.prototype.unmute = function(f) {\n f && this.name !== f || this.audioController.unmute();\n }, Ve.prototype.updaFrameModifier = function() {\n this.frameModifier = this.frameMult * this.playSpeed * this.playDirection, this.audioController.setRate(this.playSpeed * this.playDirection);\n }, Ve.prototype.getPath = function() {\n return this.path;\n }, Ve.prototype.getAssetsPath = function(f) {\n var m = \"\";\n if (f.e)\n m = f.p;\n else if (this.assetsPath) {\n var y = f.p;\n y.indexOf(\"images/\") !== -1 && (y = y.split(\"/\")[1]), m = this.assetsPath + y;\n } else\n m = this.path, m += f.u ? f.u : \"\", m += f.p;\n return m;\n }, Ve.prototype.getAssetData = function(f) {\n for (var m = 0, y = this.assets.length; m < y; ) {\n if (f === this.assets[m].id)\n return this.assets[m];\n m += 1;\n }\n return null;\n }, Ve.prototype.hide = function() {\n this.renderer.hide();\n }, Ve.prototype.show = function() {\n this.renderer.show();\n }, Ve.prototype.getDuration = function(f) {\n return f ? this.totalFrames : this.totalFrames / this.frameRate;\n }, Ve.prototype.updateDocumentData = function(f, m, y) {\n try {\n var A = this.renderer.getElementByPath(f);\n A.updateDocumentData(m, y);\n } catch {\n }\n }, Ve.prototype.trigger = function(f) {\n if (this._cbs && this._cbs[f])\n switch (f) {\n case \"enterFrame\":\n this.triggerEvent(f, new I(f, this.currentFrame, this.totalFrames, this.frameModifier));\n break;\n case \"drawnFrame\":\n this.drawnFrameEvent.currentTime = this.currentFrame, this.drawnFrameEvent.totalTime = this.totalFrames, this.drawnFrameEvent.direction = this.frameModifier, this.triggerEvent(f, this.drawnFrameEvent);\n break;\n case \"loopComplete\":\n this.triggerEvent(f, new $(f, this.loop, this.playCount, this.frameMult));\n break;\n case \"complete\":\n this.triggerEvent(f, new G(f, this.frameMult));\n break;\n case \"segmentStart\":\n this.triggerEvent(f, new z(f, this.firstFrame, this.totalFrames));\n break;\n case \"destroy\":\n this.triggerEvent(f, new B(f, this));\n break;\n default:\n this.triggerEvent(f);\n }\n f === \"enterFrame\" && this.onEnterFrame && this.onEnterFrame.call(this, new I(f, this.currentFrame, this.totalFrames, this.frameMult)), f === \"loopComplete\" && this.onLoopComplete && this.onLoopComplete.call(this, new $(f, this.loop, this.playCount, this.frameMult)), f === \"complete\" && this.onComplete && this.onComplete.call(this, new G(f, this.frameMult)), f === \"segmentStart\" && this.onSegmentStart && this.onSegmentStart.call(this, new z(f, this.firstFrame, this.totalFrames)), f === \"destroy\" && this.onDestroy && this.onDestroy.call(this, new B(f, this));\n }, Ve.prototype.triggerRenderFrameError = function(f) {\n var m = new O(f, this.currentFrame);\n this.triggerEvent(\"error\", m), this.onError && this.onError.call(this, m);\n }, Ve.prototype.triggerConfigError = function(f) {\n var m = new D(f, this.currentFrame);\n this.triggerEvent(\"error\", m), this.onError && this.onError.call(this, m);\n };\n var $e = function() {\n var f = {}, m = [], y = 0, A = 0, R = 0, M = !0, Z = !1;\n function pe(ge) {\n for (var ce = 0, ee = ge.target; ce < A; )\n m[ce].animation === ee && (m.splice(ce, 1), ce -= 1, A -= 1, ee.isPaused || Me()), ce += 1;\n }\n function te(ge, ce) {\n if (!ge)\n return null;\n for (var ee = 0; ee < A; ) {\n if (m[ee].elem === ge && m[ee].elem !== null)\n return m[ee].animation;\n ee += 1;\n }\n var he = new Ve();\n return ne(he, ge), he.setData(ge, ce), he;\n }\n function me() {\n var ge, ce = m.length, ee = [];\n for (ge = 0; ge < ce; ge += 1)\n ee.push(m[ge].animation);\n return ee;\n }\n function xe() {\n R += 1, ot();\n }\n function Me() {\n R -= 1;\n }\n function ne(ge, ce) {\n ge.addEventListener(\"destroy\", pe), ge.addEventListener(\"_active\", xe), ge.addEventListener(\"_idle\", Me), m.push({\n elem: ce,\n animation: ge\n }), A += 1;\n }\n function ye(ge) {\n var ce = new Ve();\n return ne(ce, null), ce.setParams(ge), ce;\n }\n function Ee(ge, ce) {\n var ee;\n for (ee = 0; ee < A; ee += 1)\n m[ee].animation.setSpeed(ge, ce);\n }\n function we(ge, ce) {\n var ee;\n for (ee = 0; ee < A; ee += 1)\n m[ee].animation.setDirection(ge, ce);\n }\n function be(ge) {\n var ce;\n for (ce = 0; ce < A; ce += 1)\n m[ce].animation.play(ge);\n }\n function ae(ge) {\n var ce = ge - y, ee;\n for (ee = 0; ee < A; ee += 1)\n m[ee].animation.advanceTime(ce);\n y = ge, R && !Z ? window.requestAnimationFrame(ae) : M = !0;\n }\n function re(ge) {\n y = ge, window.requestAnimationFrame(ae);\n }\n function Y(ge) {\n var ce;\n for (ce = 0; ce < A; ce += 1)\n m[ce].animation.pause(ge);\n }\n function U(ge, ce, ee) {\n var he;\n for (he = 0; he < A; he += 1)\n m[he].animation.goToAndStop(ge, ce, ee);\n }\n function J(ge) {\n var ce;\n for (ce = 0; ce < A; ce += 1)\n m[ce].animation.stop(ge);\n }\n function oe(ge) {\n var ce;\n for (ce = 0; ce < A; ce += 1)\n m[ce].animation.togglePause(ge);\n }\n function le(ge) {\n var ce;\n for (ce = A - 1; ce >= 0; ce -= 1)\n m[ce].animation.destroy(ge);\n }\n function fe(ge, ce, ee) {\n var he = [].concat([].slice.call(document.getElementsByClassName(\"lottie\")), [].slice.call(document.getElementsByClassName(\"bodymovin\"))), Ke, Pe = he.length;\n for (Ke = 0; Ke < Pe; Ke += 1)\n ee && he[Ke].setAttribute(\"data-bm-type\", ee), te(he[Ke], ge);\n if (ce && Pe === 0) {\n ee || (ee = \"svg\");\n var Et = document.getElementsByTagName(\"body\")[0];\n Et.innerText = \"\";\n var en = c(\"div\");\n en.style.width = \"100%\", en.style.height = \"100%\", en.setAttribute(\"data-bm-type\", ee), Et.appendChild(en), te(en, ge);\n }\n }\n function Re() {\n var ge;\n for (ge = 0; ge < A; ge += 1)\n m[ge].animation.resize();\n }\n function ot() {\n !Z && R && M && (window.requestAnimationFrame(re), M = !1);\n }\n function it() {\n Z = !0;\n }\n function tt() {\n Z = !1, ot();\n }\n function St(ge, ce) {\n var ee;\n for (ee = 0; ee < A; ee += 1)\n m[ee].animation.setVolume(ge, ce);\n }\n function At(ge) {\n var ce;\n for (ce = 0; ce < A; ce += 1)\n m[ce].animation.mute(ge);\n }\n function je(ge) {\n var ce;\n for (ce = 0; ce < A; ce += 1)\n m[ce].animation.unmute(ge);\n }\n return f.registerAnimation = te, f.loadAnimation = ye, f.setSpeed = Ee, f.setDirection = we, f.play = be, f.pause = Y, f.stop = J, f.togglePause = oe, f.searchAnimations = fe, f.resize = Re, f.goToAndStop = U, f.destroy = le, f.freeze = it, f.unfreeze = tt, f.setVolume = St, f.mute = At, f.unmute = je, f.getRegisteredAnimations = me, f;\n }(), Je = function() {\n var f = {};\n f.getBezierEasing = y;\n var m = {};\n function y(re, Y, U, J, oe) {\n var le = oe || (\"bez_\" + re + \"_\" + Y + \"_\" + U + \"_\" + J).replace(/\\./g, \"p\");\n if (m[le])\n return m[le];\n var fe = new ae([re, Y, U, J]);\n return m[le] = fe, fe;\n }\n var A = 4, R = 1e-3, M = 1e-7, Z = 10, pe = 11, te = 1 / (pe - 1), me = typeof Float32Array == \"function\";\n function xe(re, Y) {\n return 1 - 3 * Y + 3 * re;\n }\n function Me(re, Y) {\n return 3 * Y - 6 * re;\n }\n function ne(re) {\n return 3 * re;\n }\n function ye(re, Y, U) {\n return ((xe(Y, U) * re + Me(Y, U)) * re + ne(Y)) * re;\n }\n function Ee(re, Y, U) {\n return 3 * xe(Y, U) * re * re + 2 * Me(Y, U) * re + ne(Y);\n }\n function we(re, Y, U, J, oe) {\n var le, fe, Re = 0;\n do\n fe = Y + (U - Y) / 2, le = ye(fe, J, oe) - re, le > 0 ? U = fe : Y = fe;\n while (Math.abs(le) > M && ++Re < Z);\n return fe;\n }\n function be(re, Y, U, J) {\n for (var oe = 0; oe < A; ++oe) {\n var le = Ee(Y, U, J);\n if (le === 0)\n return Y;\n var fe = ye(Y, U, J) - re;\n Y -= fe / le;\n }\n return Y;\n }\n function ae(re) {\n this._p = re, this._mSampleValues = me ? new Float32Array(pe) : new Array(pe), this._precomputed = !1, this.get = this.get.bind(this);\n }\n return ae.prototype = {\n get: function(Y) {\n var U = this._p[0], J = this._p[1], oe = this._p[2], le = this._p[3];\n return this._precomputed || this._precompute(), U === J && oe === le ? Y : Y === 0 ? 0 : Y === 1 ? 1 : ye(this._getTForX(Y), J, le);\n },\n // Private part\n _precompute: function() {\n var Y = this._p[0], U = this._p[1], J = this._p[2], oe = this._p[3];\n this._precomputed = !0, (Y !== U || J !== oe) && this._calcSampleValues();\n },\n _calcSampleValues: function() {\n for (var Y = this._p[0], U = this._p[2], J = 0; J < pe; ++J)\n this._mSampleValues[J] = ye(J * te, Y, U);\n },\n /**\n * getTForX chose the fastest heuristic to determine the percentage value precisely from a given X projection.\n */\n _getTForX: function(Y) {\n for (var U = this._p[0], J = this._p[2], oe = this._mSampleValues, le = 0, fe = 1, Re = pe - 1; fe !== Re && oe[fe] <= Y; ++fe)\n le += te;\n --fe;\n var ot = (Y - oe[fe]) / (oe[fe + 1] - oe[fe]), it = le + ot * te, tt = Ee(it, U, J);\n return tt >= R ? be(Y, it, U, J) : tt === 0 ? it : we(Y, le, le + te, U, J);\n }\n }, f;\n }(), Tt = function() {\n function f(m) {\n return m.concat(b(m.length));\n }\n return {\n double: f\n };\n }(), ct = function() {\n return function(f, m, y) {\n var A = 0, R = f, M = b(R), Z = {\n newElement: pe,\n release: te\n };\n function pe() {\n var me;\n return A ? (A -= 1, me = M[A]) : me = m(), me;\n }\n function te(me) {\n A === R && (M = Tt.double(M), R *= 2), y && y(me), M[A] = me, A += 1;\n }\n return Z;\n };\n }(), Dt = function() {\n function f() {\n return {\n addedLength: 0,\n percents: v(\"float32\", Ge()),\n lengths: v(\"float32\", Ge())\n };\n }\n return ct(8, f);\n }(), mt = function() {\n function f() {\n return {\n lengths: [],\n totalLength: 0\n };\n }\n function m(y) {\n var A, R = y.lengths.length;\n for (A = 0; A < R; A += 1)\n Dt.release(y.lengths[A]);\n y.lengths.length = 0;\n }\n return ct(8, f, m);\n }();\n function et() {\n var f = Math;\n function m(ne, ye, Ee, we, be, ae) {\n var re = ne * we + ye * be + Ee * ae - be * we - ae * ne - Ee * ye;\n return re > -1e-3 && re < 1e-3;\n }\n function y(ne, ye, Ee, we, be, ae, re, Y, U) {\n if (Ee === 0 && ae === 0 && U === 0)\n return m(ne, ye, we, be, re, Y);\n var J = f.sqrt(f.pow(we - ne, 2) + f.pow(be - ye, 2) + f.pow(ae - Ee, 2)), oe = f.sqrt(f.pow(re - ne, 2) + f.pow(Y - ye, 2) + f.pow(U - Ee, 2)), le = f.sqrt(f.pow(re - we, 2) + f.pow(Y - be, 2) + f.pow(U - ae, 2)), fe;\n return J > oe ? J > le ? fe = J - oe - le : fe = le - oe - J : le > oe ? fe = le - oe - J : fe = oe - J - le, fe > -1e-4 && fe < 1e-4;\n }\n var A = function() {\n return function(ne, ye, Ee, we) {\n var be = Ge(), ae, re, Y, U, J, oe = 0, le, fe = [], Re = [], ot = Dt.newElement();\n for (Y = Ee.length, ae = 0; ae < be; ae += 1) {\n for (J = ae / (be - 1), le = 0, re = 0; re < Y; re += 1)\n U = S(1 - J, 3) * ne[re] + 3 * S(1 - J, 2) * J * Ee[re] + 3 * (1 - J) * S(J, 2) * we[re] + S(J, 3) * ye[re], fe[re] = U, Re[re] !== null && (le += S(fe[re] - Re[re], 2)), Re[re] = fe[re];\n le && (le = E(le), oe += le), ot.percents[ae] = J, ot.lengths[ae] = oe;\n }\n return ot.addedLength = oe, ot;\n };\n }();\n function R(ne) {\n var ye = mt.newElement(), Ee = ne.c, we = ne.v, be = ne.o, ae = ne.i, re, Y = ne._length, U = ye.lengths, J = 0;\n for (re = 0; re < Y - 1; re += 1)\n U[re] = A(we[re], we[re + 1], be[re], ae[re + 1]), J += U[re].addedLength;\n return Ee && Y && (U[re] = A(we[re], we[0], be[re], ae[0]), J += U[re].addedLength), ye.totalLength = J, ye;\n }\n function M(ne) {\n this.segmentLength = 0, this.points = new Array(ne);\n }\n function Z(ne, ye) {\n this.partialLength = ne, this.point = ye;\n }\n var pe = function() {\n var ne = {};\n return function(ye, Ee, we, be) {\n var ae = (ye[0] + \"_\" + ye[1] + \"_\" + Ee[0] + \"_\" + Ee[1] + \"_\" + we[0] + \"_\" + we[1] + \"_\" + be[0] + \"_\" + be[1]).replace(/\\./g, \"p\");\n if (!ne[ae]) {\n var re = Ge(), Y, U, J, oe, le, fe = 0, Re, ot, it = null;\n ye.length === 2 && (ye[0] !== Ee[0] || ye[1] !== Ee[1]) && m(ye[0], ye[1], Ee[0], Ee[1], ye[0] + we[0], ye[1] + we[1]) && m(ye[0], ye[1], Ee[0], Ee[1], Ee[0] + be[0], Ee[1] + be[1]) && (re = 2);\n var tt = new M(re);\n for (J = we.length, Y = 0; Y < re; Y += 1) {\n for (ot = b(J), le = Y / (re - 1), Re = 0, U = 0; U < J; U += 1)\n oe = S(1 - le, 3) * ye[U] + 3 * S(1 - le, 2) * le * (ye[U] + we[U]) + 3 * (1 - le) * S(le, 2) * (Ee[U] + be[U]) + S(le, 3) * Ee[U], ot[U] = oe, it !== null && (Re += S(ot[U] - it[U], 2));\n Re = E(Re), fe += Re, tt.points[Y] = new Z(Re, ot), it = ot;\n }\n tt.segmentLength = fe, ne[ae] = tt;\n }\n return ne[ae];\n };\n }();\n function te(ne, ye) {\n var Ee = ye.percents, we = ye.lengths, be = Ee.length, ae = N((be - 1) * ne), re = ne * ye.addedLength, Y = 0;\n if (ae === be - 1 || ae === 0 || re === we[ae])\n return Ee[ae];\n for (var U = we[ae] > re ? -1 : 1, J = !0; J; )\n if (we[ae] <= re && we[ae + 1] > re ? (Y = (re - we[ae]) / (we[ae + 1] - we[ae]), J = !1) : ae += U, ae < 0 || ae >= be - 1) {\n if (ae === be - 1)\n return Ee[ae];\n J = !1;\n }\n return Ee[ae] + (Ee[ae + 1] - Ee[ae]) * Y;\n }\n function me(ne, ye, Ee, we, be, ae) {\n var re = te(be, ae), Y = 1 - re, U = f.round((Y * Y * Y * ne[0] + (re * Y * Y + Y * re * Y + Y * Y * re) * Ee[0] + (re * re * Y + Y * re * re + re * Y * re) * we[0] + re * re * re * ye[0]) * 1e3) / 1e3, J = f.round((Y * Y * Y * ne[1] + (re * Y * Y + Y * re * Y + Y * Y * re) * Ee[1] + (re * re * Y + Y * re * re + re * Y * re) * we[1] + re * re * re * ye[1]) * 1e3) / 1e3;\n return [U, J];\n }\n var xe = v(\"float32\", 8);\n function Me(ne, ye, Ee, we, be, ae, re) {\n be < 0 ? be = 0 : be > 1 && (be = 1);\n var Y = te(be, re);\n ae = ae > 1 ? 1 : ae;\n var U = te(ae, re), J, oe = ne.length, le = 1 - Y, fe = 1 - U, Re = le * le * le, ot = Y * le * le * 3, it = Y * Y * le * 3, tt = Y * Y * Y, St = le * le * fe, At = Y * le * fe + le * Y * fe + le * le * U, je = Y * Y * fe + le * Y * U + Y * le * U, ge = Y * Y * U, ce = le * fe * fe, ee = Y * fe * fe + le * U * fe + le * fe * U, he = Y * U * fe + le * U * U + Y * fe * U, Ke = Y * U * U, Pe = fe * fe * fe, Et = U * fe * fe + fe * U * fe + fe * fe * U, en = U * U * fe + fe * U * U + U * fe * U, Ut = U * U * U;\n for (J = 0; J < oe; J += 1)\n xe[J * 4] = f.round((Re * ne[J] + ot * Ee[J] + it * we[J] + tt * ye[J]) * 1e3) / 1e3, xe[J * 4 + 1] = f.round((St * ne[J] + At * Ee[J] + je * we[J] + ge * ye[J]) * 1e3) / 1e3, xe[J * 4 + 2] = f.round((ce * ne[J] + ee * Ee[J] + he * we[J] + Ke * ye[J]) * 1e3) / 1e3, xe[J * 4 + 3] = f.round((Pe * ne[J] + Et * Ee[J] + en * we[J] + Ut * ye[J]) * 1e3) / 1e3;\n return xe;\n }\n return {\n getSegmentsLength: R,\n getNewSegment: Me,\n getPointInSegment: me,\n buildBezierData: pe,\n pointOnLine2D: m,\n pointOnLine3D: y\n };\n }\n var dt = et(), Fe = function() {\n var f = i, m = Math.abs;\n function y(be, ae) {\n var re = this.offsetTime, Y;\n this.propType === \"multidimensional\" && (Y = v(\"float32\", this.pv.length));\n for (var U = ae.lastIndex, J = U, oe = this.keyframes.length - 1, le = !0, fe, Re, ot; le; ) {\n if (fe = this.keyframes[J], Re = this.keyframes[J + 1], J === oe - 1 && be >= Re.t - re) {\n fe.h && (fe = Re), U = 0;\n break;\n }\n if (Re.t - re > be) {\n U = J;\n break;\n }\n J < oe - 1 ? J += 1 : (U = 0, le = !1);\n }\n ot = this.keyframesMetadata[J] || {};\n var it, tt, St, At, je, ge, ce = Re.t - re, ee = fe.t - re, he;\n if (fe.to) {\n ot.bezierData || (ot.bezierData = dt.buildBezierData(fe.s, Re.s || fe.e, fe.to, fe.ti));\n var Ke = ot.bezierData;\n if (be >= ce || be < ee) {\n var Pe = be >= ce ? Ke.points.length - 1 : 0;\n for (tt = Ke.points[Pe].point.length, it = 0; it < tt; it += 1)\n Y[it] = Ke.points[Pe].point[it];\n } else {\n ot.__fnct ? ge = ot.__fnct : (ge = Je.getBezierEasing(fe.o.x, fe.o.y, fe.i.x, fe.i.y, fe.n).get, ot.__fnct = ge), St = ge((be - ee) / (ce - ee));\n var Et = Ke.segmentLength * St, en, Ut = ae.lastFrame < be && ae._lastKeyframeIndex === J ? ae._lastAddedLength : 0;\n for (je = ae.lastFrame < be && ae._lastKeyframeIndex === J ? ae._lastPoint : 0, le = !0, At = Ke.points.length; le; ) {\n if (Ut += Ke.points[je].partialLength, Et === 0 || St === 0 || je === Ke.points.length - 1) {\n for (tt = Ke.points[je].point.length, it = 0; it < tt; it += 1)\n Y[it] = Ke.points[je].point[it];\n break;\n } else if (Et >= Ut && Et < Ut + Ke.points[je + 1].partialLength) {\n for (en = (Et - Ut) / Ke.points[je + 1].partialLength, tt = Ke.points[je].point.length, it = 0; it < tt; it += 1)\n Y[it] = Ke.points[je].point[it] + (Ke.points[je + 1].point[it] - Ke.points[je].point[it]) * en;\n break;\n }\n je < At - 1 ? je += 1 : le = !1;\n }\n ae._lastPoint = je, ae._lastAddedLength = Ut - Ke.points[je].partialLength, ae._lastKeyframeIndex = J;\n }\n } else {\n var Vn, Cn, $r, Yr, Xr;\n if (oe = fe.s.length, he = Re.s || fe.e, this.sh && fe.h !== 1)\n if (be >= ce)\n Y[0] = he[0], Y[1] = he[1], Y[2] = he[2];\n else if (be <= ee)\n Y[0] = fe.s[0], Y[1] = fe.s[1], Y[2] = fe.s[2];\n else {\n var Mr = M(fe.s), ar = M(he), Hr = (be - ee) / (ce - ee);\n R(Y, A(Mr, ar, Hr));\n }\n else\n for (J = 0; J < oe; J += 1)\n fe.h !== 1 && (be >= ce ? St = 1 : be < ee ? St = 0 : (fe.o.x.constructor === Array ? (ot.__fnct || (ot.__fnct = []), ot.__fnct[J] ? ge = ot.__fnct[J] : (Vn = fe.o.x[J] === void 0 ? fe.o.x[0] : fe.o.x[J], Cn = fe.o.y[J] === void 0 ? fe.o.y[0] : fe.o.y[J], $r = fe.i.x[J] === void 0 ? fe.i.x[0] : fe.i.x[J], Yr = fe.i.y[J] === void 0 ? fe.i.y[0] : fe.i.y[J], ge = Je.getBezierEasing(Vn, Cn, $r, Yr).get, ot.__fnct[J] = ge)) : ot.__fnct ? ge = ot.__fnct : (Vn = fe.o.x, Cn = fe.o.y, $r = fe.i.x, Yr = fe.i.y, ge = Je.getBezierEasing(Vn, Cn, $r, Yr).get, fe.keyframeMetadata = ge), St = ge((be - ee) / (ce - ee)))), he = Re.s || fe.e, Xr = fe.h === 1 ? fe.s[J] : fe.s[J] + (he[J] - fe.s[J]) * St, this.propType === \"multidimensional\" ? Y[J] = Xr : Y = Xr;\n }\n return ae.lastIndex = U, Y;\n }\n function A(be, ae, re) {\n var Y = [], U = be[0], J = be[1], oe = be[2], le = be[3], fe = ae[0], Re = ae[1], ot = ae[2], it = ae[3], tt, St, At, je, ge;\n return St = U * fe + J * Re + oe * ot + le * it, St < 0 && (St = -St, fe = -fe, Re = -Re, ot = -ot, it = -it), 1 - St > 1e-6 ? (tt = Math.acos(St), At = Math.sin(tt), je = Math.sin((1 - re) * tt) / At, ge = Math.sin(re * tt) / At) : (je = 1 - re, ge = re), Y[0] = je * U + ge * fe, Y[1] = je * J + ge * Re, Y[2] = je * oe + ge * ot, Y[3] = je * le + ge * it, Y;\n }\n function R(be, ae) {\n var re = ae[0], Y = ae[1], U = ae[2], J = ae[3], oe = Math.atan2(2 * Y * J - 2 * re * U, 1 - 2 * Y * Y - 2 * U * U), le = Math.asin(2 * re * Y + 2 * U * J), fe = Math.atan2(2 * re * J - 2 * Y * U, 1 - 2 * re * re - 2 * U * U);\n be[0] = oe / k, be[1] = le / k, be[2] = fe / k;\n }\n function M(be) {\n var ae = be[0] * k, re = be[1] * k, Y = be[2] * k, U = Math.cos(ae / 2), J = Math.cos(re / 2), oe = Math.cos(Y / 2), le = Math.sin(ae / 2), fe = Math.sin(re / 2), Re = Math.sin(Y / 2), ot = U * J * oe - le * fe * Re, it = le * fe * oe + U * J * Re, tt = le * J * oe + U * fe * Re, St = U * fe * oe - le * J * Re;\n return [it, tt, St, ot];\n }\n function Z() {\n var be = this.comp.renderedFrame - this.offsetTime, ae = this.keyframes[0].t - this.offsetTime, re = this.keyframes[this.keyframes.length - 1].t - this.offsetTime;\n if (!(be === this._caching.lastFrame || this._caching.lastFrame !== f && (this._caching.lastFrame >= re && be >= re || this._caching.lastFrame < ae && be < ae))) {\n this._caching.lastFrame >= be && (this._caching._lastKeyframeIndex = -1, this._caching.lastIndex = 0);\n var Y = this.interpolateValue(be, this._caching);\n this.pv = Y;\n }\n return this._caching.lastFrame = be, this.pv;\n }\n function pe(be) {\n var ae;\n if (this.propType === \"unidimensional\")\n ae = be * this.mult, m(this.v - ae) > 1e-5 && (this.v = ae, this._mdf = !0);\n else\n for (var re = 0, Y = this.v.length; re < Y; )\n ae = be[re] * this.mult, m(this.v[re] - ae) > 1e-5 && (this.v[re] = ae, this._mdf = !0), re += 1;\n }\n function te() {\n if (!(this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length)) {\n if (this.lock) {\n this.setVValue(this.pv);\n return;\n }\n this.lock = !0, this._mdf = this._isFirstFrame;\n var be, ae = this.effectsSequence.length, re = this.kf ? this.pv : this.data.k;\n for (be = 0; be < ae; be += 1)\n re = this.effectsSequence[be](re);\n this.setVValue(re), this._isFirstFrame = !1, this.lock = !1, this.frameId = this.elem.globalData.frameId;\n }\n }\n function me(be) {\n this.effectsSequence.push(be), this.container.addDynamicProperty(this);\n }\n function xe(be, ae, re, Y) {\n this.propType = \"unidimensional\", this.mult = re || 1, this.data = ae, this.v = re ? ae.k * re : ae.k, this.pv = ae.k, this._mdf = !1, this.elem = be, this.container = Y, this.comp = be.comp, this.k = !1, this.kf = !1, this.vel = 0, this.effectsSequence = [], this._isFirstFrame = !0, this.getValue = te, this.setVValue = pe, this.addEffect = me;\n }\n function Me(be, ae, re, Y) {\n this.propType = \"multidimensional\", this.mult = re || 1, this.data = ae, this._mdf = !1, this.elem = be, this.container = Y, this.comp = be.comp, this.k = !1, this.kf = !1, this.frameId = -1;\n var U, J = ae.k.length;\n for (this.v = v(\"float32\", J), this.pv = v(\"float32\", J), this.vel = v(\"float32\", J), U = 0; U < J; U += 1)\n this.v[U] = ae.k[U] * this.mult, this.pv[U] = ae.k[U];\n this._isFirstFrame = !0, this.effectsSequence = [], this.getValue = te, this.setVValue = pe, this.addEffect = me;\n }\n function ne(be, ae, re, Y) {\n this.propType = \"unidimensional\", this.keyframes = ae.k, this.keyframesMetadata = [], this.offsetTime = be.data.st, this.frameId = -1, this._caching = {\n lastFrame: f,\n lastIndex: 0,\n value: 0,\n _lastKeyframeIndex: -1\n }, this.k = !0, this.kf = !0, this.data = ae, this.mult = re || 1, this.elem = be, this.container = Y, this.comp = be.comp, this.v = f, this.pv = f, this._isFirstFrame = !0, this.getValue = te, this.setVValue = pe, this.interpolateValue = y, this.effectsSequence = [Z.bind(this)], this.addEffect = me;\n }\n function ye(be, ae, re, Y) {\n this.propType = \"multidimensional\";\n var U, J = ae.k.length, oe, le, fe, Re;\n for (U = 0; U < J - 1; U += 1)\n ae.k[U].to && ae.k[U].s && ae.k[U + 1] && ae.k[U + 1].s && (oe = ae.k[U].s, le = ae.k[U + 1].s, fe = ae.k[U].to, Re = ae.k[U].ti, (oe.length === 2 && !(oe[0] === le[0] && oe[1] === le[1]) && dt.pointOnLine2D(oe[0], oe[1], le[0], le[1], oe[0] + fe[0], oe[1] + fe[1]) && dt.pointOnLine2D(oe[0], oe[1], le[0], le[1], le[0] + Re[0], le[1] + Re[1]) || oe.length === 3 && !(oe[0] === le[0] && oe[1] === le[1] && oe[2] === le[2]) && dt.pointOnLine3D(oe[0], oe[1], oe[2], le[0], le[1], le[2], oe[0] + fe[0], oe[1] + fe[1], oe[2] + fe[2]) && dt.pointOnLine3D(oe[0], oe[1], oe[2], le[0], le[1], le[2], le[0] + Re[0], le[1] + Re[1], le[2] + Re[2])) && (ae.k[U].to = null, ae.k[U].ti = null), oe[0] === le[0] && oe[1] === le[1] && fe[0] === 0 && fe[1] === 0 && Re[0] === 0 && Re[1] === 0 && (oe.length === 2 || oe[2] === le[2] && fe[2] === 0 && Re[2] === 0) && (ae.k[U].to = null, ae.k[U].ti = null));\n this.effectsSequence = [Z.bind(this)], this.data = ae, this.keyframes = ae.k, this.keyframesMetadata = [], this.offsetTime = be.data.st, this.k = !0, this.kf = !0, this._isFirstFrame = !0, this.mult = re || 1, this.elem = be, this.container = Y, this.comp = be.comp, this.getValue = te, this.setVValue = pe, this.interpolateValue = y, this.frameId = -1;\n var ot = ae.k[0].s.length;\n for (this.v = v(\"float32\", ot), this.pv = v(\"float32\", ot), U = 0; U < ot; U += 1)\n this.v[U] = f, this.pv[U] = f;\n this._caching = {\n lastFrame: f,\n lastIndex: 0,\n value: v(\"float32\", ot)\n }, this.addEffect = me;\n }\n function Ee(be, ae, re, Y, U) {\n var J;\n if (!ae.k.length)\n J = new xe(be, ae, Y, U);\n else if (typeof ae.k[0] == \"number\")\n J = new Me(be, ae, Y, U);\n else\n switch (re) {\n case 0:\n J = new ne(be, ae, Y, U);\n break;\n case 1:\n J = new ye(be, ae, Y, U);\n break;\n }\n return J.effectsSequence.length && U.addDynamicProperty(J), J;\n }\n var we = {\n getProp: Ee\n };\n return we;\n }();\n function Ot() {\n }\n Ot.prototype = {\n addDynamicProperty: function(m) {\n this.dynamicProperties.indexOf(m) === -1 && (this.dynamicProperties.push(m), this.container.addDynamicProperty(this), this._isAnimated = !0);\n },\n iterateDynamicProperties: function() {\n this._mdf = !1;\n var m, y = this.dynamicProperties.length;\n for (m = 0; m < y; m += 1)\n this.dynamicProperties[m].getValue(), this.dynamicProperties[m]._mdf && (this._mdf = !0);\n },\n initDynamicPropertyContainer: function(m) {\n this.container = m, this.dynamicProperties = [], this._mdf = !1, this._isAnimated = !1;\n }\n };\n var nt = function() {\n function f() {\n return v(\"float32\", 2);\n }\n return ct(8, f);\n }();\n function Ie() {\n this.c = !1, this._length = 0, this._maxLength = 8, this.v = b(this._maxLength), this.o = b(this._maxLength), this.i = b(this._maxLength);\n }\n Ie.prototype.setPathData = function(f, m) {\n this.c = f, this.setLength(m);\n for (var y = 0; y < m; )\n this.v[y] = nt.newElement(), this.o[y] = nt.newElement(), this.i[y] = nt.newElement(), y += 1;\n }, Ie.prototype.setLength = function(f) {\n for (; this._maxLength < f; )\n this.doubleArrayLength();\n this._length = f;\n }, Ie.prototype.doubleArrayLength = function() {\n this.v = this.v.concat(b(this._maxLength)), this.i = this.i.concat(b(this._maxLength)), this.o = this.o.concat(b(this._maxLength)), this._maxLength *= 2;\n }, Ie.prototype.setXYAt = function(f, m, y, A, R) {\n var M;\n switch (this._length = Math.max(this._length, A + 1), this._length >= this._maxLength && this.doubleArrayLength(), y) {\n case \"v\":\n M = this.v;\n break;\n case \"i\":\n M = this.i;\n break;\n case \"o\":\n M = this.o;\n break;\n default:\n M = [];\n break;\n }\n (!M[A] || M[A] && !R) && (M[A] = nt.newElement()), M[A][0] = f, M[A][1] = m;\n }, Ie.prototype.setTripleAt = function(f, m, y, A, R, M, Z, pe) {\n this.setXYAt(f, m, \"v\", Z, pe), this.setXYAt(y, A, \"o\", Z, pe), this.setXYAt(R, M, \"i\", Z, pe);\n }, Ie.prototype.reverse = function() {\n var f = new Ie();\n f.setPathData(this.c, this._length);\n var m = this.v, y = this.o, A = this.i, R = 0;\n this.c && (f.setTripleAt(m[0][0], m[0][1], A[0][0], A[0][1], y[0][0], y[0][1], 0, !1), R = 1);\n var M = this._length - 1, Z = this._length, pe;\n for (pe = R; pe < Z; pe += 1)\n f.setTripleAt(m[M][0], m[M][1], A[M][0], A[M][1], y[M][0], y[M][1], pe, !1), M -= 1;\n return f;\n }, Ie.prototype.length = function() {\n return this._length;\n };\n var st = function() {\n function f() {\n return new Ie();\n }\n function m(R) {\n var M = R._length, Z;\n for (Z = 0; Z < M; Z += 1)\n nt.release(R.v[Z]), nt.release(R.i[Z]), nt.release(R.o[Z]), R.v[Z] = null, R.i[Z] = null, R.o[Z] = null;\n R._length = 0, R.c = !1;\n }\n function y(R) {\n var M = A.newElement(), Z, pe = R._length === void 0 ? R.v.length : R._length;\n for (M.setLength(pe), M.c = R.c, Z = 0; Z < pe; Z += 1)\n M.setTripleAt(R.v[Z][0], R.v[Z][1], R.o[Z][0], R.o[Z][1], R.i[Z][0], R.i[Z][1], Z);\n return M;\n }\n var A = ct(4, f, m);\n return A.clone = y, A;\n }();\n function kt() {\n this._length = 0, this._maxLength = 4, this.shapes = b(this._maxLength);\n }\n kt.prototype.addShape = function(f) {\n this._length === this._maxLength && (this.shapes = this.shapes.concat(b(this._maxLength)), this._maxLength *= 2), this.shapes[this._length] = f, this._length += 1;\n }, kt.prototype.releaseShapes = function() {\n var f;\n for (f = 0; f < this._length; f += 1)\n st.release(this.shapes[f]);\n this._length = 0;\n };\n var Mt = function() {\n var f = {\n newShapeCollection: R,\n release: M\n }, m = 0, y = 4, A = b(y);\n function R() {\n var Z;\n return m ? (m -= 1, Z = A[m]) : Z = new kt(), Z;\n }\n function M(Z) {\n var pe, te = Z._length;\n for (pe = 0; pe < te; pe += 1)\n st.release(Z.shapes[pe]);\n Z._length = 0, m === y && (A = Tt.double(A), y *= 2), A[m] = Z, m += 1;\n }\n return f;\n }(), Kt = function() {\n var f = -999999;\n function m(ae, re, Y) {\n var U = Y.lastIndex, J, oe, le, fe, Re, ot, it, tt, St, At = this.keyframes;\n if (ae < At[0].t - this.offsetTime)\n J = At[0].s[0], le = !0, U = 0;\n else if (ae >= At[At.length - 1].t - this.offsetTime)\n J = At[At.length - 1].s ? At[At.length - 1].s[0] : At[At.length - 2].e[0], le = !0;\n else {\n for (var je = U, ge = At.length - 1, ce = !0, ee, he, Ke; ce && (ee = At[je], he = At[je + 1], !(he.t - this.offsetTime > ae)); )\n je < ge - 1 ? je += 1 : ce = !1;\n if (Ke = this.keyframesMetadata[je] || {}, le = ee.h === 1, U = je, !le) {\n if (ae >= he.t - this.offsetTime)\n tt = 1;\n else if (ae < ee.t - this.offsetTime)\n tt = 0;\n else {\n var Pe;\n Ke.__fnct ? Pe = Ke.__fnct : (Pe = Je.getBezierEasing(ee.o.x, ee.o.y, ee.i.x, ee.i.y).get, Ke.__fnct = Pe), tt = Pe((ae - (ee.t - this.offsetTime)) / (he.t - this.offsetTime - (ee.t - this.offsetTime)));\n }\n oe = he.s ? he.s[0] : ee.e[0];\n }\n J = ee.s[0];\n }\n for (ot = re._length, it = J.i[0].length, Y.lastIndex = U, fe = 0; fe < ot; fe += 1)\n for (Re = 0; Re < it; Re += 1)\n St = le ? J.i[fe][Re] : J.i[fe][Re] + (oe.i[fe][Re] - J.i[fe][Re]) * tt, re.i[fe][Re] = St, St = le ? J.o[fe][Re] : J.o[fe][Re] + (oe.o[fe][Re] - J.o[fe][Re]) * tt, re.o[fe][Re] = St, St = le ? J.v[fe][Re] : J.v[fe][Re] + (oe.v[fe][Re] - J.v[fe][Re]) * tt, re.v[fe][Re] = St;\n }\n function y() {\n var ae = this.comp.renderedFrame - this.offsetTime, re = this.keyframes[0].t - this.offsetTime, Y = this.keyframes[this.keyframes.length - 1].t - this.offsetTime, U = this._caching.lastFrame;\n return U !== f && (U < re && ae < re || U > Y && ae > Y) || (this._caching.lastIndex = U < ae ? this._caching.lastIndex : 0, this.interpolateShape(ae, this.pv, this._caching)), this._caching.lastFrame = ae, this.pv;\n }\n function A() {\n this.paths = this.localShapeCollection;\n }\n function R(ae, re) {\n if (ae._length !== re._length || ae.c !== re.c)\n return !1;\n var Y, U = ae._length;\n for (Y = 0; Y < U; Y += 1)\n if (ae.v[Y][0] !== re.v[Y][0] || ae.v[Y][1] !== re.v[Y][1] || ae.o[Y][0] !== re.o[Y][0] || ae.o[Y][1] !== re.o[Y][1] || ae.i[Y][0] !== re.i[Y][0] || ae.i[Y][1] !== re.i[Y][1])\n return !1;\n return !0;\n }\n function M(ae) {\n R(this.v, ae) || (this.v = st.clone(ae), this.localShapeCollection.releaseShapes(), this.localShapeCollection.addShape(this.v), this._mdf = !0, this.paths = this.localShapeCollection);\n }\n function Z() {\n if (this.elem.globalData.frameId !== this.frameId) {\n if (!this.effectsSequence.length) {\n this._mdf = !1;\n return;\n }\n if (this.lock) {\n this.setVValue(this.pv);\n return;\n }\n this.lock = !0, this._mdf = !1;\n var ae;\n this.kf ? ae = this.pv : this.data.ks ? ae = this.data.ks.k : ae = this.data.pt.k;\n var re, Y = this.effectsSequence.length;\n for (re = 0; re < Y; re += 1)\n ae = this.effectsSequence[re](ae);\n this.setVValue(ae), this.lock = !1, this.frameId = this.elem.globalData.frameId;\n }\n }\n function pe(ae, re, Y) {\n this.propType = \"shape\", this.comp = ae.comp, this.container = ae, this.elem = ae, this.data = re, this.k = !1, this.kf = !1, this._mdf = !1;\n var U = Y === 3 ? re.pt.k : re.ks.k;\n this.v = st.clone(U), this.pv = st.clone(this.v), this.localShapeCollection = Mt.newShapeCollection(), this.paths = this.localShapeCollection, this.paths.addShape(this.v), this.reset = A, this.effectsSequence = [];\n }\n function te(ae) {\n this.effectsSequence.push(ae), this.container.addDynamicProperty(this);\n }\n pe.prototype.interpolateShape = m, pe.prototype.getValue = Z, pe.prototype.setVValue = M, pe.prototype.addEffect = te;\n function me(ae, re, Y) {\n this.propType = \"shape\", this.comp = ae.comp, this.elem = ae, this.container = ae, this.offsetTime = ae.data.st, this.keyframes = Y === 3 ? re.pt.k : re.ks.k, this.keyframesMetadata = [], this.k = !0, this.kf = !0;\n var U = this.keyframes[0].s[0].i.length;\n this.v = st.newElement(), this.v.setPathData(this.keyframes[0].s[0].c, U), this.pv = st.clone(this.v), this.localShapeCollection = Mt.newShapeCollection(), this.paths = this.localShapeCollection, this.paths.addShape(this.v), this.lastFrame = f, this.reset = A, this._caching = {\n lastFrame: f,\n lastIndex: 0\n }, this.effectsSequence = [y.bind(this)];\n }\n me.prototype.getValue = Z, me.prototype.interpolateShape = m, me.prototype.setVValue = M, me.prototype.addEffect = te;\n var xe = function() {\n var ae = Q;\n function re(Y, U) {\n this.v = st.newElement(), this.v.setPathData(!0, 4), this.localShapeCollection = Mt.newShapeCollection(), this.paths = this.localShapeCollection, this.localShapeCollection.addShape(this.v), this.d = U.d, this.elem = Y, this.comp = Y.comp, this.frameId = -1, this.initDynamicPropertyContainer(Y), this.p = Fe.getProp(Y, U.p, 1, 0, this), this.s = Fe.getProp(Y, U.s, 1, 0, this), this.dynamicProperties.length ? this.k = !0 : (this.k = !1, this.convertEllToPath());\n }\n return re.prototype = {\n reset: A,\n getValue: function() {\n this.elem.globalData.frameId !== this.frameId && (this.frameId = this.elem.globalData.frameId, this.iterateDynamicProperties(), this._mdf && this.convertEllToPath());\n },\n convertEllToPath: function() {\n var U = this.p.v[0], J = this.p.v[1], oe = this.s.v[0] / 2, le = this.s.v[1] / 2, fe = this.d !== 3, Re = this.v;\n Re.v[0][0] = U, Re.v[0][1] = J - le, Re.v[1][0] = fe ? U + oe : U - oe, Re.v[1][1] = J, Re.v[2][0] = U, Re.v[2][1] = J + le, Re.v[3][0] = fe ? U - oe : U + oe, Re.v[3][1] = J, Re.i[0][0] = fe ? U - oe * ae : U + oe * ae, Re.i[0][1] = J - le, Re.i[1][0] = fe ? U + oe : U - oe, Re.i[1][1] = J - le * ae, Re.i[2][0] = fe ? U + oe * ae : U - oe * ae, Re.i[2][1] = J + le, Re.i[3][0] = fe ? U - oe : U + oe, Re.i[3][1] = J + le * ae, Re.o[0][0] = fe ? U + oe * ae : U - oe * ae, Re.o[0][1] = J - le, Re.o[1][0] = fe ? U + oe : U - oe, Re.o[1][1] = J + le * ae, Re.o[2][0] = fe ? U - oe * ae : U + oe * ae, Re.o[2][1] = J + le, Re.o[3][0] = fe ? U - oe : U + oe, Re.o[3][1] = J - le * ae;\n }\n }, d([Ot], re), re;\n }(), Me = function() {\n function ae(re, Y) {\n this.v = st.newElement(), this.v.setPathData(!0, 0), this.elem = re, this.comp = re.comp, this.data = Y, this.frameId = -1, this.d = Y.d, this.initDynamicPropertyContainer(re), Y.sy === 1 ? (this.ir = Fe.getProp(re, Y.ir, 0, 0, this), this.is = Fe.getProp(re, Y.is, 0, 0.01, this), this.convertToPath = this.convertStarToPath) : this.convertToPath = this.convertPolygonToPath, this.pt = Fe.getProp(re, Y.pt, 0, 0, this), this.p = Fe.getProp(re, Y.p, 1, 0, this), this.r = Fe.getProp(re, Y.r, 0, k, this), this.or = Fe.getProp(re, Y.or, 0, 0, this), this.os = Fe.getProp(re, Y.os, 0, 0.01, this), this.localShapeCollection = Mt.newShapeCollection(), this.localShapeCollection.addShape(this.v), this.paths = this.localShapeCollection, this.dynamicProperties.length ? this.k = !0 : (this.k = !1, this.convertToPath());\n }\n return ae.prototype = {\n reset: A,\n getValue: function() {\n this.elem.globalData.frameId !== this.frameId && (this.frameId = this.elem.globalData.frameId, this.iterateDynamicProperties(), this._mdf && this.convertToPath());\n },\n convertStarToPath: function() {\n var Y = Math.floor(this.pt.v) * 2, U = Math.PI * 2 / Y, J = !0, oe = this.or.v, le = this.ir.v, fe = this.os.v, Re = this.is.v, ot = 2 * Math.PI * oe / (Y * 2), it = 2 * Math.PI * le / (Y * 2), tt, St, At, je, ge = -Math.PI / 2;\n ge += this.r.v;\n var ce = this.data.d === 3 ? -1 : 1;\n for (this.v._length = 0, tt = 0; tt < Y; tt += 1) {\n St = J ? oe : le, At = J ? fe : Re, je = J ? ot : it;\n var ee = St * Math.cos(ge), he = St * Math.sin(ge), Ke = ee === 0 && he === 0 ? 0 : he / Math.sqrt(ee * ee + he * he), Pe = ee === 0 && he === 0 ? 0 : -ee / Math.sqrt(ee * ee + he * he);\n ee += +this.p.v[0], he += +this.p.v[1], this.v.setTripleAt(ee, he, ee - Ke * je * At * ce, he - Pe * je * At * ce, ee + Ke * je * At * ce, he + Pe * je * At * ce, tt, !0), J = !J, ge += U * ce;\n }\n },\n convertPolygonToPath: function() {\n var Y = Math.floor(this.pt.v), U = Math.PI * 2 / Y, J = this.or.v, oe = this.os.v, le = 2 * Math.PI * J / (Y * 4), fe, Re = -Math.PI * 0.5, ot = this.data.d === 3 ? -1 : 1;\n for (Re += this.r.v, this.v._length = 0, fe = 0; fe < Y; fe += 1) {\n var it = J * Math.cos(Re), tt = J * Math.sin(Re), St = it === 0 && tt === 0 ? 0 : tt / Math.sqrt(it * it + tt * tt), At = it === 0 && tt === 0 ? 0 : -it / Math.sqrt(it * it + tt * tt);\n it += +this.p.v[0], tt += +this.p.v[1], this.v.setTripleAt(it, tt, it - St * le * oe * ot, tt - At * le * oe * ot, it + St * le * oe * ot, tt + At * le * oe * ot, fe, !0), Re += U * ot;\n }\n this.paths.length = 0, this.paths[0] = this.v;\n }\n }, d([Ot], ae), ae;\n }(), ne = function() {\n function ae(re, Y) {\n this.v = st.newElement(), this.v.c = !0, this.localShapeCollection = Mt.newShapeCollection(), this.localShapeCollection.addShape(this.v), this.paths = this.localShapeCollection, this.elem = re, this.comp = re.comp, this.frameId = -1, this.d = Y.d, this.initDynamicPropertyContainer(re), this.p = Fe.getProp(re, Y.p, 1, 0, this), this.s = Fe.getProp(re, Y.s, 1, 0, this), this.r = Fe.getProp(re, Y.r, 0, 0, this), this.dynamicProperties.length ? this.k = !0 : (this.k = !1, this.convertRectToPath());\n }\n return ae.prototype = {\n convertRectToPath: function() {\n var Y = this.p.v[0], U = this.p.v[1], J = this.s.v[0] / 2, oe = this.s.v[1] / 2, le = P(J, oe, this.r.v), fe = le * (1 - Q);\n this.v._length = 0, this.d === 2 || this.d === 1 ? (this.v.setTripleAt(Y + J, U - oe + le, Y + J, U - oe + le, Y + J, U - oe + fe, 0, !0), this.v.setTripleAt(Y + J, U + oe - le, Y + J, U + oe - fe, Y + J, U + oe - le, 1, !0), le !== 0 ? (this.v.setTripleAt(Y + J - le, U + oe, Y + J - le, U + oe, Y + J - fe, U + oe, 2, !0), this.v.setTripleAt(Y - J + le, U + oe, Y - J + fe, U + oe, Y - J + le, U + oe, 3, !0), this.v.setTripleAt(Y - J, U + oe - le, Y - J, U + oe - le, Y - J, U + oe - fe, 4, !0), this.v.setTripleAt(Y - J, U - oe + le, Y - J, U - oe + fe, Y - J, U - oe + le, 5, !0), this.v.setTripleAt(Y - J + le, U - oe, Y - J + le, U - oe, Y - J + fe, U - oe, 6, !0), this.v.setTripleAt(Y + J - le, U - oe, Y + J - fe, U - oe, Y + J - le, U - oe, 7, !0)) : (this.v.setTripleAt(Y - J, U + oe, Y - J + fe, U + oe, Y - J, U + oe, 2), this.v.setTripleAt(Y - J, U - oe, Y - J, U - oe + fe, Y - J, U - oe, 3))) : (this.v.setTripleAt(Y + J, U - oe + le, Y + J, U - oe + fe, Y + J, U - oe + le, 0, !0), le !== 0 ? (this.v.setTripleAt(Y + J - le, U - oe, Y + J - le, U - oe, Y + J - fe, U - oe, 1, !0), this.v.setTripleAt(Y - J + le, U - oe, Y - J + fe, U - oe, Y - J + le, U - oe, 2, !0), this.v.setTripleAt(Y - J, U - oe + le, Y - J, U - oe + le, Y - J, U - oe + fe, 3, !0), this.v.setTripleAt(Y - J, U + oe - le, Y - J, U + oe - fe, Y - J, U + oe - le, 4, !0), this.v.setTripleAt(Y - J + le, U + oe, Y - J + le, U + oe, Y - J + fe, U + oe, 5, !0), this.v.setTripleAt(Y + J - le, U + oe, Y + J - fe, U + oe, Y + J - le, U + oe, 6, !0), this.v.setTripleAt(Y + J, U + oe - le, Y + J, U + oe - le, Y + J, U + oe - fe, 7, !0)) : (this.v.setTripleAt(Y - J, U - oe, Y - J + fe, U - oe, Y - J, U - oe, 1, !0), this.v.setTripleAt(Y - J, U + oe, Y - J, U + oe - fe, Y - J, U + oe, 2, !0), this.v.setTripleAt(Y + J, U + oe, Y + J - fe, U + oe, Y + J, U + oe, 3, !0)));\n },\n getValue: function() {\n this.elem.globalData.frameId !== this.frameId && (this.frameId = this.elem.globalData.frameId, this.iterateDynamicProperties(), this._mdf && this.convertRectToPath());\n },\n reset: A\n }, d([Ot], ae), ae;\n }();\n function ye(ae, re, Y) {\n var U;\n if (Y === 3 || Y === 4) {\n var J = Y === 3 ? re.pt : re.ks, oe = J.k;\n oe.length ? U = new me(ae, re, Y) : U = new pe(ae, re, Y);\n } else\n Y === 5 ? U = new ne(ae, re) : Y === 6 ? U = new xe(ae, re) : Y === 7 && (U = new Me(ae, re));\n return U.k && ae.addDynamicProperty(U), U;\n }\n function Ee() {\n return pe;\n }\n function we() {\n return me;\n }\n var be = {};\n return be.getShapeProp = ye, be.getConstructorFunction = Ee, be.getKeyframedConstructorFunction = we, be;\n }();\n /*!\n Transformation Matrix v2.0\n (c) Epistemex 2014-2015\n www.epistemex.com\n By Ken Fyrstenberg\n Contributions by leeoniya.\n License: MIT, header required.\n */\n var Rt = function() {\n var f = Math.cos, m = Math.sin, y = Math.tan, A = Math.round;\n function R() {\n return this.props[0] = 1, this.props[1] = 0, this.props[2] = 0, this.props[3] = 0, this.props[4] = 0, this.props[5] = 1, this.props[6] = 0, this.props[7] = 0, this.props[8] = 0, this.props[9] = 0, this.props[10] = 1, this.props[11] = 0, this.props[12] = 0, this.props[13] = 0, this.props[14] = 0, this.props[15] = 1, this;\n }\n function M(ce) {\n if (ce === 0)\n return this;\n var ee = f(ce), he = m(ce);\n return this._t(ee, -he, 0, 0, he, ee, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n }\n function Z(ce) {\n if (ce === 0)\n return this;\n var ee = f(ce), he = m(ce);\n return this._t(1, 0, 0, 0, 0, ee, -he, 0, 0, he, ee, 0, 0, 0, 0, 1);\n }\n function pe(ce) {\n if (ce === 0)\n return this;\n var ee = f(ce), he = m(ce);\n return this._t(ee, 0, he, 0, 0, 1, 0, 0, -he, 0, ee, 0, 0, 0, 0, 1);\n }\n function te(ce) {\n if (ce === 0)\n return this;\n var ee = f(ce), he = m(ce);\n return this._t(ee, -he, 0, 0, he, ee, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n }\n function me(ce, ee) {\n return this._t(1, ee, ce, 1, 0, 0);\n }\n function xe(ce, ee) {\n return this.shear(y(ce), y(ee));\n }\n function Me(ce, ee) {\n var he = f(ee), Ke = m(ee);\n return this._t(he, Ke, 0, 0, -Ke, he, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)._t(1, 0, 0, 0, y(ce), 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)._t(he, -Ke, 0, 0, Ke, he, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);\n }\n function ne(ce, ee, he) {\n return !he && he !== 0 && (he = 1), ce === 1 && ee === 1 && he === 1 ? this : this._t(ce, 0, 0, 0, 0, ee, 0, 0, 0, 0, he, 0, 0, 0, 0, 1);\n }\n function ye(ce, ee, he, Ke, Pe, Et, en, Ut, Vn, Cn, $r, Yr, Xr, Mr, ar, Hr) {\n return this.props[0] = ce, this.props[1] = ee, this.props[2] = he, this.props[3] = Ke, this.props[4] = Pe, this.props[5] = Et, this.props[6] = en, this.props[7] = Ut, this.props[8] = Vn, this.props[9] = Cn, this.props[10] = $r, this.props[11] = Yr, this.props[12] = Xr, this.props[13] = Mr, this.props[14] = ar, this.props[15] = Hr, this;\n }\n function Ee(ce, ee, he) {\n return he = he || 0, ce !== 0 || ee !== 0 || he !== 0 ? this._t(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, ce, ee, he, 1) : this;\n }\n function we(ce, ee, he, Ke, Pe, Et, en, Ut, Vn, Cn, $r, Yr, Xr, Mr, ar, Hr) {\n var Nt = this.props;\n if (ce === 1 && ee === 0 && he === 0 && Ke === 0 && Pe === 0 && Et === 1 && en === 0 && Ut === 0 && Vn === 0 && Cn === 0 && $r === 1 && Yr === 0)\n return Nt[12] = Nt[12] * ce + Nt[15] * Xr, Nt[13] = Nt[13] * Et + Nt[15] * Mr, Nt[14] = Nt[14] * $r + Nt[15] * ar, Nt[15] *= Hr, this._identityCalculated = !1, this;\n var Fn = Nt[0], Ni = Nt[1], io = Nt[2], Oi = Nt[3], ei = Nt[4], Li = Nt[5], ki = Nt[6], Zr = Nt[7], oo = Nt[8], so = Nt[9], Fa = Nt[10], uo = Nt[11], ja = Nt[12], Xo = Nt[13], $d = Nt[14], Hd = Nt[15];\n return Nt[0] = Fn * ce + Ni * Pe + io * Vn + Oi * Xr, Nt[1] = Fn * ee + Ni * Et + io * Cn + Oi * Mr, Nt[2] = Fn * he + Ni * en + io * $r + Oi * ar, Nt[3] = Fn * Ke + Ni * Ut + io * Yr + Oi * Hr, Nt[4] = ei * ce + Li * Pe + ki * Vn + Zr * Xr, Nt[5] = ei * ee + Li * Et + ki * Cn + Zr * Mr, Nt[6] = ei * he + Li * en + ki * $r + Zr * ar, Nt[7] = ei * Ke + Li * Ut + ki * Yr + Zr * Hr, Nt[8] = oo * ce + so * Pe + Fa * Vn + uo * Xr, Nt[9] = oo * ee + so * Et + Fa * Cn + uo * Mr, Nt[10] = oo * he + so * en + Fa * $r + uo * ar, Nt[11] = oo * Ke + so * Ut + Fa * Yr + uo * Hr, Nt[12] = ja * ce + Xo * Pe + $d * Vn + Hd * Xr, Nt[13] = ja * ee + Xo * Et + $d * Cn + Hd * Mr, Nt[14] = ja * he + Xo * en + $d * $r + Hd * ar, Nt[15] = ja * Ke + Xo * Ut + $d * Yr + Hd * Hr, this._identityCalculated = !1, this;\n }\n function be() {\n return this._identityCalculated || (this._identity = !(this.props[0] !== 1 || this.props[1] !== 0 || this.props[2] !== 0 || this.props[3] !== 0 || this.props[4] !== 0 || this.props[5] !== 1 || this.props[6] !== 0 || this.props[7] !== 0 || this.props[8] !== 0 || this.props[9] !== 0 || this.props[10] !== 1 || this.props[11] !== 0 || this.props[12] !== 0 || this.props[13] !== 0 || this.props[14] !== 0 || this.props[15] !== 1), this._identityCalculated = !0), this._identity;\n }\n function ae(ce) {\n for (var ee = 0; ee < 16; ) {\n if (ce.props[ee] !== this.props[ee])\n return !1;\n ee += 1;\n }\n return !0;\n }\n function re(ce) {\n var ee;\n for (ee = 0; ee < 16; ee += 1)\n ce.props[ee] = this.props[ee];\n return ce;\n }\n function Y(ce) {\n var ee;\n for (ee = 0; ee < 16; ee += 1)\n this.props[ee] = ce[ee];\n }\n function U(ce, ee, he) {\n return {\n x: ce * this.props[0] + ee * this.props[4] + he * this.props[8] + this.props[12],\n y: ce * this.props[1] + ee * this.props[5] + he * this.props[9] + this.props[13],\n z: ce * this.props[2] + ee * this.props[6] + he * this.props[10] + this.props[14]\n };\n }\n function J(ce, ee, he) {\n return ce * this.props[0] + ee * this.props[4] + he * this.props[8] + this.props[12];\n }\n function oe(ce, ee, he) {\n return ce * this.props[1] + ee * this.props[5] + he * this.props[9] + this.props[13];\n }\n function le(ce, ee, he) {\n return ce * this.props[2] + ee * this.props[6] + he * this.props[10] + this.props[14];\n }\n function fe() {\n var ce = this.props[0] * this.props[5] - this.props[1] * this.props[4], ee = this.props[5] / ce, he = -this.props[1] / ce, Ke = -this.props[4] / ce, Pe = this.props[0] / ce, Et = (this.props[4] * this.props[13] - this.props[5] * this.props[12]) / ce, en = -(this.props[0] * this.props[13] - this.props[1] * this.props[12]) / ce, Ut = new Rt();\n return Ut.props[0] = ee, Ut.props[1] = he, Ut.props[4] = Ke, Ut.props[5] = Pe, Ut.props[12] = Et, Ut.props[13] = en, Ut;\n }\n function Re(ce) {\n var ee = this.getInverseMatrix();\n return ee.applyToPointArray(ce[0], ce[1], ce[2] || 0);\n }\n function ot(ce) {\n var ee, he = ce.length, Ke = [];\n for (ee = 0; ee < he; ee += 1)\n Ke[ee] = Re(ce[ee]);\n return Ke;\n }\n function it(ce, ee, he) {\n var Ke = v(\"float32\", 6);\n if (this.isIdentity())\n Ke[0] = ce[0], Ke[1] = ce[1], Ke[2] = ee[0], Ke[3] = ee[1], Ke[4] = he[0], Ke[5] = he[1];\n else {\n var Pe = this.props[0], Et = this.props[1], en = this.props[4], Ut = this.props[5], Vn = this.props[12], Cn = this.props[13];\n Ke[0] = ce[0] * Pe + ce[1] * en + Vn, Ke[1] = ce[0] * Et + ce[1] * Ut + Cn, Ke[2] = ee[0] * Pe + ee[1] * en + Vn, Ke[3] = ee[0] * Et + ee[1] * Ut + Cn, Ke[4] = he[0] * Pe + he[1] * en + Vn, Ke[5] = he[0] * Et + he[1] * Ut + Cn;\n }\n return Ke;\n }\n function tt(ce, ee, he) {\n var Ke;\n return this.isIdentity() ? Ke = [ce, ee, he] : Ke = [ce * this.props[0] + ee * this.props[4] + he * this.props[8] + this.props[12], ce * this.props[1] + ee * this.props[5] + he * this.props[9] + this.props[13], ce * this.props[2] + ee * this.props[6] + he * this.props[10] + this.props[14]], Ke;\n }\n function St(ce, ee) {\n if (this.isIdentity())\n return ce + \",\" + ee;\n var he = this.props;\n return Math.round((ce * he[0] + ee * he[4] + he[12]) * 100) / 100 + \",\" + Math.round((ce * he[1] + ee * he[5] + he[13]) * 100) / 100;\n }\n function At() {\n for (var ce = 0, ee = this.props, he = \"matrix3d(\", Ke = 1e4; ce < 16; )\n he += A(ee[ce] * Ke) / Ke, he += ce === 15 ? \")\" : \",\", ce += 1;\n return he;\n }\n function je(ce) {\n var ee = 1e4;\n return ce < 1e-6 && ce > 0 || ce > -1e-6 && ce < 0 ? A(ce * ee) / ee : ce;\n }\n function ge() {\n var ce = this.props, ee = je(ce[0]), he = je(ce[1]), Ke = je(ce[4]), Pe = je(ce[5]), Et = je(ce[12]), en = je(ce[13]);\n return \"matrix(\" + ee + \",\" + he + \",\" + Ke + \",\" + Pe + \",\" + Et + \",\" + en + \")\";\n }\n return function() {\n this.reset = R, this.rotate = M, this.rotateX = Z, this.rotateY = pe, this.rotateZ = te, this.skew = xe, this.skewFromAxis = Me, this.shear = me, this.scale = ne, this.setTransform = ye, this.translate = Ee, this.transform = we, this.applyToPoint = U, this.applyToX = J, this.applyToY = oe, this.applyToZ = le, this.applyToPointArray = tt, this.applyToTriplePoints = it, this.applyToPointStringified = St, this.toCSS = At, this.to2dCSS = ge, this.clone = re, this.cloneFromProps = Y, this.equals = ae, this.inversePoints = ot, this.inversePoint = Re, this.getInverseMatrix = fe, this._t = this.transform, this.isIdentity = be, this._identity = !0, this._identityCalculated = !1, this.props = v(\"float32\", 16), this.reset();\n };\n }();\n function jt(f) {\n \"@babel/helpers - typeof\";\n return typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? jt = function(y) {\n return typeof y;\n } : jt = function(y) {\n return y && typeof Symbol == \"function\" && y.constructor === Symbol && y !== Symbol.prototype ? \"symbol\" : typeof y;\n }, jt(f);\n }\n var _t = {};\n function _n(f) {\n u(f);\n }\n function Rn() {\n $e.searchAnimations();\n }\n function rr(f) {\n X(f);\n }\n function Jn(f) {\n Ne(f);\n }\n function yt(f) {\n return $e.loadAnimation(f);\n }\n function Yt(f) {\n if (typeof f == \"string\")\n switch (f) {\n case \"high\":\n Le(200);\n break;\n default:\n case \"medium\":\n Le(50);\n break;\n case \"low\":\n Le(10);\n break;\n }\n else\n !isNaN(f) && f > 1 && Le(f);\n }\n function dn() {\n return typeof navigator < \"u\";\n }\n function Er(f, m) {\n f === \"expressions\" && Se(m);\n }\n function cr(f) {\n switch (f) {\n case \"propertyFactory\":\n return Fe;\n case \"shapePropertyFactory\":\n return Kt;\n case \"matrix\":\n return Rt;\n default:\n return null;\n }\n }\n _t.play = $e.play, _t.pause = $e.pause, _t.setLocationHref = _n, _t.togglePause = $e.togglePause, _t.setSpeed = $e.setSpeed, _t.setDirection = $e.setDirection, _t.stop = $e.stop, _t.searchAnimations = Rn, _t.registerAnimation = $e.registerAnimation, _t.loadAnimation = yt, _t.setSubframeRendering = rr, _t.resize = $e.resize, _t.goToAndStop = $e.goToAndStop, _t.destroy = $e.destroy, _t.setQuality = Yt, _t.inBrowser = dn, _t.installPlugin = Er, _t.freeze = $e.freeze, _t.unfreeze = $e.unfreeze, _t.setVolume = $e.setVolume, _t.mute = $e.mute, _t.unmute = $e.unmute, _t.getRegisteredAnimations = $e.getRegisteredAnimations, _t.useWebWorker = o, _t.setIDPrefix = Jn, _t.__getFactory = cr, _t.version = \"5.10.2\";\n function wr() {\n document.readyState === \"complete\" && (clearInterval(ft), Rn());\n }\n function Ta(f) {\n for (var m = Ct.split(\"&\"), y = 0; y < m.length; y += 1) {\n var A = m[y].split(\"=\");\n if (decodeURIComponent(A[0]) == f)\n return decodeURIComponent(A[1]);\n }\n return null;\n }\n var Ct = \"\";\n {\n var Wt = document.getElementsByTagName(\"script\"), On = Wt.length - 1, Bt = Wt[On] || {\n src: \"\"\n };\n Ct = Bt.src ? Bt.src.replace(/^[^\\?]+\\??/, \"\") : \"\", Ta(\"renderer\");\n }\n var ft = setInterval(wr, 100);\n try {\n jt(t) !== \"object\" && (window.bodymovin = _t);\n } catch {\n }\n var xt = function() {\n var f = {}, m = {};\n f.registerModifier = y, f.getModifier = A;\n function y(R, M) {\n m[R] || (m[R] = M);\n }\n function A(R, M, Z) {\n return new m[R](M, Z);\n }\n return f;\n }();\n function nn() {\n }\n nn.prototype.initModifierProperties = function() {\n }, nn.prototype.addShapeToModifier = function() {\n }, nn.prototype.addShape = function(f) {\n if (!this.closed) {\n f.sh.container.addDynamicProperty(f.sh);\n var m = {\n shape: f.sh,\n data: f,\n localShapeCollection: Mt.newShapeCollection()\n };\n this.shapes.push(m), this.addShapeToModifier(m), this._isAnimated && f.setAsAnimated();\n }\n }, nn.prototype.init = function(f, m) {\n this.shapes = [], this.elem = f, this.initDynamicPropertyContainer(f), this.initModifierProperties(f, m), this.frameId = i, this.closed = !1, this.k = !1, this.dynamicProperties.length ? this.k = !0 : this.getValue(!0);\n }, nn.prototype.processKeys = function() {\n this.elem.globalData.frameId !== this.frameId && (this.frameId = this.elem.globalData.frameId, this.iterateDynamicProperties());\n }, d([Ot], nn);\n function Pn() {\n }\n d([nn], Pn), Pn.prototype.initModifierProperties = function(f, m) {\n this.s = Fe.getProp(f, m.s, 0, 0.01, this), this.e = Fe.getProp(f, m.e, 0, 0.01, this), this.o = Fe.getProp(f, m.o, 0, 0, this), this.sValue = 0, this.eValue = 0, this.getValue = this.processKeys, this.m = m.m, this._isAnimated = !!this.s.effectsSequence.length || !!this.e.effectsSequence.length || !!this.o.effectsSequence.length;\n }, Pn.prototype.addShapeToModifier = function(f) {\n f.pathsData = [];\n }, Pn.prototype.calculateShapeEdges = function(f, m, y, A, R) {\n var M = [];\n m <= 1 ? M.push({\n s: f,\n e: m\n }) : f >= 1 ? M.push({\n s: f - 1,\n e: m - 1\n }) : (M.push({\n s: f,\n e: 1\n }), M.push({\n s: 0,\n e: m - 1\n }));\n var Z = [], pe, te = M.length, me;\n for (pe = 0; pe < te; pe += 1)\n if (me = M[pe], !(me.e * R < A || me.s * R > A + y)) {\n var xe, Me;\n me.s * R <= A ? xe = 0 : xe = (me.s * R - A) / y, me.e * R >= A + y ? Me = 1 : Me = (me.e * R - A) / y, Z.push([xe, Me]);\n }\n return Z.length || Z.push([0, 0]), Z;\n }, Pn.prototype.releasePathsData = function(f) {\n var m, y = f.length;\n for (m = 0; m < y; m += 1)\n mt.release(f[m]);\n return f.length = 0, f;\n }, Pn.prototype.processShapes = function(f) {\n var m, y;\n if (this._mdf || f) {\n var A = this.o.v % 360 / 360;\n if (A < 0 && (A += 1), this.s.v > 1 ? m = 1 + A : this.s.v < 0 ? m = 0 + A : m = this.s.v + A, this.e.v > 1 ? y = 1 + A : this.e.v < 0 ? y = 0 + A : y = this.e.v + A, m > y) {\n var R = m;\n m = y, y = R;\n }\n m = Math.round(m * 1e4) * 1e-4, y = Math.round(y * 1e4) * 1e-4, this.sValue = m, this.eValue = y;\n } else\n m = this.sValue, y = this.eValue;\n var M, Z, pe = this.shapes.length, te, me, xe, Me, ne, ye = 0;\n if (y === m)\n for (Z = 0; Z < pe; Z += 1)\n this.shapes[Z].localShapeCollection.releaseShapes(), this.shapes[Z].shape._mdf = !0, this.shapes[Z].shape.paths = this.shapes[Z].localShapeCollection, this._mdf && (this.shapes[Z].pathsData.length = 0);\n else if (y === 1 && m === 0 || y === 0 && m === 1) {\n if (this._mdf)\n for (Z = 0; Z < pe; Z += 1)\n this.shapes[Z].pathsData.length = 0, this.shapes[Z].shape._mdf = !0;\n } else {\n var Ee = [], we, be;\n for (Z = 0; Z < pe; Z += 1)\n if (we = this.shapes[Z], !we.shape._mdf && !this._mdf && !f && this.m !== 2)\n we.shape.paths = we.localShapeCollection;\n else {\n if (M = we.shape.paths, me = M._length, ne = 0, !we.shape._mdf && we.pathsData.length)\n ne = we.totalShapeLength;\n else {\n for (xe = this.releasePathsData(we.pathsData), te = 0; te < me; te += 1)\n Me = dt.getSegmentsLength(M.shapes[te]), xe.push(Me), ne += Me.totalLength;\n we.totalShapeLength = ne, we.pathsData = xe;\n }\n ye += ne, we.shape._mdf = !0;\n }\n var ae = m, re = y, Y = 0, U;\n for (Z = pe - 1; Z >= 0; Z -= 1)\n if (we = this.shapes[Z], we.shape._mdf) {\n for (be = we.localShapeCollection, be.releaseShapes(), this.m === 2 && pe > 1 ? (U = this.calculateShapeEdges(m, y, we.totalShapeLength, Y, ye), Y += we.totalShapeLength) : U = [[ae, re]], me = U.length, te = 0; te < me; te += 1) {\n ae = U[te][0], re = U[te][1], Ee.length = 0, re <= 1 ? Ee.push({\n s: we.totalShapeLength * ae,\n e: we.totalShapeLength * re\n }) : ae >= 1 ? Ee.push({\n s: we.totalShapeLength * (ae - 1),\n e: we.totalShapeLength * (re - 1)\n }) : (Ee.push({\n s: we.totalShapeLength * ae,\n e: we.totalShapeLength\n }), Ee.push({\n s: 0,\n e: we.totalShapeLength * (re - 1)\n }));\n var J = this.addShapes(we, Ee[0]);\n if (Ee[0].s !== Ee[0].e) {\n if (Ee.length > 1) {\n var oe = we.shape.paths.shapes[we.shape.paths._length - 1];\n if (oe.c) {\n var le = J.pop();\n this.addPaths(J, be), J = this.addShapes(we, Ee[1], le);\n } else\n this.addPaths(J, be), J = this.addShapes(we, Ee[1]);\n }\n this.addPaths(J, be);\n }\n }\n we.shape.paths = be;\n }\n }\n }, Pn.prototype.addPaths = function(f, m) {\n var y, A = f.length;\n for (y = 0; y < A; y += 1)\n m.addShape(f[y]);\n }, Pn.prototype.addSegment = function(f, m, y, A, R, M, Z) {\n R.setXYAt(m[0], m[1], \"o\", M), R.setXYAt(y[0], y[1], \"i\", M + 1), Z && R.setXYAt(f[0], f[1], \"v\", M), R.setXYAt(A[0], A[1], \"v\", M + 1);\n }, Pn.prototype.addSegmentFromArray = function(f, m, y, A) {\n m.setXYAt(f[1], f[5], \"o\", y), m.setXYAt(f[2], f[6], \"i\", y + 1), A && m.setXYAt(f[0], f[4], \"v\", y), m.setXYAt(f[3], f[7], \"v\", y + 1);\n }, Pn.prototype.addShapes = function(f, m, y) {\n var A = f.pathsData, R = f.shape.paths.shapes, M, Z = f.shape.paths._length, pe, te, me = 0, xe, Me, ne, ye, Ee = [], we, be = !0;\n for (y ? (Me = y._length, we = y._length) : (y = st.newElement(), Me = 0, we = 0), Ee.push(y), M = 0; M < Z; M += 1) {\n for (ne = A[M].lengths, y.c = R[M].c, te = R[M].c ? ne.length : ne.length + 1, pe = 1; pe < te; pe += 1)\n if (xe = ne[pe - 1], me + xe.addedLength < m.s)\n me += xe.addedLength, y.c = !1;\n else if (me > m.e) {\n y.c = !1;\n break;\n } else\n m.s <= me && m.e >= me + xe.addedLength ? (this.addSegment(R[M].v[pe - 1], R[M].o[pe - 1], R[M].i[pe], R[M].v[pe], y, Me, be), be = !1) : (ye = dt.getNewSegment(R[M].v[pe - 1], R[M].v[pe], R[M].o[pe - 1], R[M].i[pe], (m.s - me) / xe.addedLength, (m.e - me) / xe.addedLength, ne[pe - 1]), this.addSegmentFromArray(ye, y, Me, be), be = !1, y.c = !1), me += xe.addedLength, Me += 1;\n if (R[M].c && ne.length) {\n if (xe = ne[pe - 1], me <= m.e) {\n var ae = ne[pe - 1].addedLength;\n m.s <= me && m.e >= me + ae ? (this.addSegment(R[M].v[pe - 1], R[M].o[pe - 1], R[M].i[0], R[M].v[0], y, Me, be), be = !1) : (ye = dt.getNewSegment(R[M].v[pe - 1], R[M].v[0], R[M].o[pe - 1], R[M].i[0], (m.s - me) / ae, (m.e - me) / ae, ne[pe - 1]), this.addSegmentFromArray(ye, y, Me, be), be = !1, y.c = !1);\n } else\n y.c = !1;\n me += xe.addedLength, Me += 1;\n }\n if (y._length && (y.setXYAt(y.v[we][0], y.v[we][1], \"i\", we), y.setXYAt(y.v[y._length - 1][0], y.v[y._length - 1][1], \"o\", y._length - 1)), me > m.e)\n break;\n M < Z - 1 && (y = st.newElement(), be = !0, Ee.push(y), Me = 0);\n }\n return Ee;\n };\n function Tr() {\n }\n d([nn], Tr), Tr.prototype.initModifierProperties = function(f, m) {\n this.getValue = this.processKeys, this.amount = Fe.getProp(f, m.a, 0, null, this), this._isAnimated = !!this.amount.effectsSequence.length;\n }, Tr.prototype.processPath = function(f, m) {\n var y = m / 100, A = [0, 0], R = f._length, M = 0;\n for (M = 0; M < R; M += 1)\n A[0] += f.v[M][0], A[1] += f.v[M][1];\n A[0] /= R, A[1] /= R;\n var Z = st.newElement();\n Z.c = f.c;\n var pe, te, me, xe, Me, ne;\n for (M = 0; M < R; M += 1)\n pe = f.v[M][0] + (A[0] - f.v[M][0]) * y, te = f.v[M][1] + (A[1] - f.v[M][1]) * y, me = f.o[M][0] + (A[0] - f.o[M][0]) * -y, xe = f.o[M][1] + (A[1] - f.o[M][1]) * -y, Me = f.i[M][0] + (A[0] - f.i[M][0]) * -y, ne = f.i[M][1] + (A[1] - f.i[M][1]) * -y, Z.setTripleAt(pe, te, me, xe, Me, ne, M);\n return Z;\n }, Tr.prototype.processShapes = function(f) {\n var m, y, A = this.shapes.length, R, M, Z = this.amount.v;\n if (Z !== 0) {\n var pe, te;\n for (y = 0; y < A; y += 1) {\n if (pe = this.shapes[y], te = pe.localShapeCollection, !(!pe.shape._mdf && !this._mdf && !f))\n for (te.releaseShapes(), pe.shape._mdf = !0, m = pe.shape.paths.shapes, M = pe.shape.paths._length, R = 0; R < M; R += 1)\n te.addShape(this.processPath(m[R], Z));\n pe.shape.paths = pe.localShapeCollection;\n }\n }\n this.dynamicProperties.length || (this._mdf = !1);\n };\n var ht = function() {\n var f = [0, 0];\n function m(te) {\n var me = this._mdf;\n this.iterateDynamicProperties(), this._mdf = this._mdf || me, this.a && te.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]), this.s && te.scale(this.s.v[0], this.s.v[1], this.s.v[2]), this.sk && te.skewFromAxis(-this.sk.v, this.sa.v), this.r ? te.rotate(-this.r.v) : te.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]), this.data.p.s ? this.data.p.z ? te.translate(this.px.v, this.py.v, -this.pz.v) : te.translate(this.px.v, this.py.v, 0) : te.translate(this.p.v[0], this.p.v[1], -this.p.v[2]);\n }\n function y(te) {\n if (this.elem.globalData.frameId !== this.frameId) {\n if (this._isDirty && (this.precalculateMatrix(), this._isDirty = !1), this.iterateDynamicProperties(), this._mdf || te) {\n var me;\n if (this.v.cloneFromProps(this.pre.props), this.appliedTransformations < 1 && this.v.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]), this.appliedTransformations < 2 && this.v.scale(this.s.v[0], this.s.v[1], this.s.v[2]), this.sk && this.appliedTransformations < 3 && this.v.skewFromAxis(-this.sk.v, this.sa.v), this.r && this.appliedTransformations < 4 ? this.v.rotate(-this.r.v) : !this.r && this.appliedTransformations < 4 && this.v.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]), this.autoOriented) {\n var xe, Me;\n if (me = this.elem.globalData.frameRate, this.p && this.p.keyframes && this.p.getValueAtTime)\n this.p._caching.lastFrame + this.p.offsetTime <= this.p.keyframes[0].t ? (xe = this.p.getValueAtTime((this.p.keyframes[0].t + 0.01) / me, 0), Me = this.p.getValueAtTime(this.p.keyframes[0].t / me, 0)) : this.p._caching.lastFrame + this.p.offsetTime >= this.p.keyframes[this.p.keyframes.length - 1].t ? (xe = this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length - 1].t / me, 0), Me = this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length - 1].t - 0.05) / me, 0)) : (xe = this.p.pv, Me = this.p.getValueAtTime((this.p._caching.lastFrame + this.p.offsetTime - 0.01) / me, this.p.offsetTime));\n else if (this.px && this.px.keyframes && this.py.keyframes && this.px.getValueAtTime && this.py.getValueAtTime) {\n xe = [], Me = [];\n var ne = this.px, ye = this.py;\n ne._caching.lastFrame + ne.offsetTime <= ne.keyframes[0].t ? (xe[0] = ne.getValueAtTime((ne.keyframes[0].t + 0.01) / me, 0), xe[1] = ye.getValueAtTime((ye.keyframes[0].t + 0.01) / me, 0), Me[0] = ne.getValueAtTime(ne.keyframes[0].t / me, 0), Me[1] = ye.getValueAtTime(ye.keyframes[0].t / me, 0)) : ne._caching.lastFrame + ne.offsetTime >= ne.keyframes[ne.keyframes.length - 1].t ? (xe[0] = ne.getValueAtTime(ne.keyframes[ne.keyframes.length - 1].t / me, 0), xe[1] = ye.getValueAtTime(ye.keyframes[ye.keyframes.length - 1].t / me, 0), Me[0] = ne.getValueAtTime((ne.keyframes[ne.keyframes.length - 1].t - 0.01) / me, 0), Me[1] = ye.getValueAtTime((ye.keyframes[ye.keyframes.length - 1].t - 0.01) / me, 0)) : (xe = [ne.pv, ye.pv], Me[0] = ne.getValueAtTime((ne._caching.lastFrame + ne.offsetTime - 0.01) / me, ne.offsetTime), Me[1] = ye.getValueAtTime((ye._caching.lastFrame + ye.offsetTime - 0.01) / me, ye.offsetTime));\n } else\n Me = f, xe = Me;\n this.v.rotate(-Math.atan2(xe[1] - Me[1], xe[0] - Me[0]));\n }\n this.data.p && this.data.p.s ? this.data.p.z ? this.v.translate(this.px.v, this.py.v, -this.pz.v) : this.v.translate(this.px.v, this.py.v, 0) : this.v.translate(this.p.v[0], this.p.v[1], -this.p.v[2]);\n }\n this.frameId = this.elem.globalData.frameId;\n }\n }\n function A() {\n if (!this.a.k)\n this.pre.translate(-this.a.v[0], -this.a.v[1], this.a.v[2]), this.appliedTransformations = 1;\n else\n return;\n if (!this.s.effectsSequence.length)\n this.pre.scale(this.s.v[0], this.s.v[1], this.s.v[2]), this.appliedTransformations = 2;\n else\n return;\n if (this.sk)\n if (!this.sk.effectsSequence.length && !this.sa.effectsSequence.length)\n this.pre.skewFromAxis(-this.sk.v, this.sa.v), this.appliedTransformations = 3;\n else\n return;\n this.r ? this.r.effectsSequence.length || (this.pre.rotate(-this.r.v), this.appliedTransformations = 4) : !this.rz.effectsSequence.length && !this.ry.effectsSequence.length && !this.rx.effectsSequence.length && !this.or.effectsSequence.length && (this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]), this.appliedTransformations = 4);\n }\n function R() {\n }\n function M(te) {\n this._addDynamicProperty(te), this.elem.addDynamicProperty(te), this._isDirty = !0;\n }\n function Z(te, me, xe) {\n if (this.elem = te, this.frameId = -1, this.propType = \"transform\", this.data = me, this.v = new Rt(), this.pre = new Rt(), this.appliedTransformations = 0, this.initDynamicPropertyContainer(xe || te), me.p && me.p.s ? (this.px = Fe.getProp(te, me.p.x, 0, 0, this), this.py = Fe.getProp(te, me.p.y, 0, 0, this), me.p.z && (this.pz = Fe.getProp(te, me.p.z, 0, 0, this))) : this.p = Fe.getProp(te, me.p || {\n k: [0, 0, 0]\n }, 1, 0, this), me.rx) {\n if (this.rx = Fe.getProp(te, me.rx, 0, k, this), this.ry = Fe.getProp(te, me.ry, 0, k, this), this.rz = Fe.getProp(te, me.rz, 0, k, this), me.or.k[0].ti) {\n var Me, ne = me.or.k.length;\n for (Me = 0; Me < ne; Me += 1)\n me.or.k[Me].to = null, me.or.k[Me].ti = null;\n }\n this.or = Fe.getProp(te, me.or, 1, k, this), this.or.sh = !0;\n } else\n this.r = Fe.getProp(te, me.r || {\n k: 0\n }, 0, k, this);\n me.sk && (this.sk = Fe.getProp(te, me.sk, 0, k, this), this.sa = Fe.getProp(te, me.sa, 0, k, this)), this.a = Fe.getProp(te, me.a || {\n k: [0, 0, 0]\n }, 1, 0, this), this.s = Fe.getProp(te, me.s || {\n k: [100, 100, 100]\n }, 1, 0.01, this), me.o ? this.o = Fe.getProp(te, me.o, 0, 0.01, te) : this.o = {\n _mdf: !1,\n v: 1\n }, this._isDirty = !0, this.dynamicProperties.length || this.getValue(!0);\n }\n Z.prototype = {\n applyToMatrix: m,\n getValue: y,\n precalculateMatrix: A,\n autoOrient: R\n }, d([Ot], Z), Z.prototype.addDynamicProperty = M, Z.prototype._addDynamicProperty = Ot.prototype.addDynamicProperty;\n function pe(te, me, xe) {\n return new Z(te, me, xe);\n }\n return {\n getTransformProperty: pe\n };\n }();\n function gt() {\n }\n d([nn], gt), gt.prototype.initModifierProperties = function(f, m) {\n this.getValue = this.processKeys, this.c = Fe.getProp(f, m.c, 0, null, this), this.o = Fe.getProp(f, m.o, 0, null, this), this.tr = ht.getTransformProperty(f, m.tr, this), this.so = Fe.getProp(f, m.tr.so, 0, 0.01, this), this.eo = Fe.getProp(f, m.tr.eo, 0, 0.01, this), this.data = m, this.dynamicProperties.length || this.getValue(!0), this._isAnimated = !!this.dynamicProperties.length, this.pMatrix = new Rt(), this.rMatrix = new Rt(), this.sMatrix = new Rt(), this.tMatrix = new Rt(), this.matrix = new Rt();\n }, gt.prototype.applyTransforms = function(f, m, y, A, R, M) {\n var Z = M ? -1 : 1, pe = A.s.v[0] + (1 - A.s.v[0]) * (1 - R), te = A.s.v[1] + (1 - A.s.v[1]) * (1 - R);\n f.translate(A.p.v[0] * Z * R, A.p.v[1] * Z * R, A.p.v[2]), m.translate(-A.a.v[0], -A.a.v[1], A.a.v[2]), m.rotate(-A.r.v * Z * R), m.translate(A.a.v[0], A.a.v[1], A.a.v[2]), y.translate(-A.a.v[0], -A.a.v[1], A.a.v[2]), y.scale(M ? 1 / pe : pe, M ? 1 / te : te), y.translate(A.a.v[0], A.a.v[1], A.a.v[2]);\n }, gt.prototype.init = function(f, m, y, A) {\n for (this.elem = f, this.arr = m, this.pos = y, this.elemsData = A, this._currentCopies = 0, this._elements = [], this._groups = [], this.frameId = -1, this.initDynamicPropertyContainer(f), this.initModifierProperties(f, m[y]); y > 0; )\n y -= 1, this._elements.unshift(m[y]);\n this.dynamicProperties.length ? this.k = !0 : this.getValue(!0);\n }, gt.prototype.resetElements = function(f) {\n var m, y = f.length;\n for (m = 0; m < y; m += 1)\n f[m]._processed = !1, f[m].ty === \"gr\" && this.resetElements(f[m].it);\n }, gt.prototype.cloneElements = function(f) {\n var m = JSON.parse(JSON.stringify(f));\n return this.resetElements(m), m;\n }, gt.prototype.changeGroupRender = function(f, m) {\n var y, A = f.length;\n for (y = 0; y < A; y += 1)\n f[y]._render = m, f[y].ty === \"gr\" && this.changeGroupRender(f[y].it, m);\n }, gt.prototype.processShapes = function(f) {\n var m, y, A, R, M, Z = !1;\n if (this._mdf || f) {\n var pe = Math.ceil(this.c.v);\n if (this._groups.length < pe) {\n for (; this._groups.length < pe; ) {\n var te = {\n it: this.cloneElements(this._elements),\n ty: \"gr\"\n };\n te.it.push({\n a: {\n a: 0,\n ix: 1,\n k: [0, 0]\n },\n nm: \"Transform\",\n o: {\n a: 0,\n ix: 7,\n k: 100\n },\n p: {\n a: 0,\n ix: 2,\n k: [0, 0]\n },\n r: {\n a: 1,\n ix: 6,\n k: [{\n s: 0,\n e: 0,\n t: 0\n }, {\n s: 0,\n e: 0,\n t: 1\n }]\n },\n s: {\n a: 0,\n ix: 3,\n k: [100, 100]\n },\n sa: {\n a: 0,\n ix: 5,\n k: 0\n },\n sk: {\n a: 0,\n ix: 4,\n k: 0\n },\n ty: \"tr\"\n }), this.arr.splice(0, 0, te), this._groups.splice(0, 0, te), this._currentCopies += 1;\n }\n this.elem.reloadShapes(), Z = !0;\n }\n M = 0;\n var me;\n for (A = 0; A <= this._groups.length - 1; A += 1) {\n if (me = M < pe, this._groups[A]._render = me, this.changeGroupRender(this._groups[A].it, me), !me) {\n var xe = this.elemsData[A].it, Me = xe[xe.length - 1];\n Me.transform.op.v !== 0 ? (Me.transform.op._mdf = !0, Me.transform.op.v = 0) : Me.transform.op._mdf = !1;\n }\n M += 1;\n }\n this._currentCopies = pe;\n var ne = this.o.v, ye = ne % 1, Ee = ne > 0 ? Math.floor(ne) : Math.ceil(ne), we = this.pMatrix.props, be = this.rMatrix.props, ae = this.sMatrix.props;\n this.pMatrix.reset(), this.rMatrix.reset(), this.sMatrix.reset(), this.tMatrix.reset(), this.matrix.reset();\n var re = 0;\n if (ne > 0) {\n for (; re < Ee; )\n this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, !1), re += 1;\n ye && (this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, ye, !1), re += ye);\n } else if (ne < 0) {\n for (; re > Ee; )\n this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, !0), re -= 1;\n ye && (this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, -ye, !0), re -= ye);\n }\n A = this.data.m === 1 ? 0 : this._currentCopies - 1, R = this.data.m === 1 ? 1 : -1, M = this._currentCopies;\n for (var Y, U; M; ) {\n if (m = this.elemsData[A].it, y = m[m.length - 1].transform.mProps.v.props, U = y.length, m[m.length - 1].transform.mProps._mdf = !0, m[m.length - 1].transform.op._mdf = !0, m[m.length - 1].transform.op.v = this._currentCopies === 1 ? this.so.v : this.so.v + (this.eo.v - this.so.v) * (A / (this._currentCopies - 1)), re !== 0) {\n for ((A !== 0 && R === 1 || A !== this._currentCopies - 1 && R === -1) && this.applyTransforms(this.pMatrix, this.rMatrix, this.sMatrix, this.tr, 1, !1), this.matrix.transform(be[0], be[1], be[2], be[3], be[4], be[5], be[6], be[7], be[8], be[9], be[10], be[11], be[12], be[13], be[14], be[15]), this.matrix.transform(ae[0], ae[1], ae[2], ae[3], ae[4], ae[5], ae[6], ae[7], ae[8], ae[9], ae[10], ae[11], ae[12], ae[13], ae[14], ae[15]), this.matrix.transform(we[0], we[1], we[2], we[3], we[4], we[5], we[6], we[7], we[8], we[9], we[10], we[11], we[12], we[13], we[14], we[15]), Y = 0; Y < U; Y += 1)\n y[Y] = this.matrix.props[Y];\n this.matrix.reset();\n } else\n for (this.matrix.reset(), Y = 0; Y < U; Y += 1)\n y[Y] = this.matrix.props[Y];\n re += 1, M -= 1, A += R;\n }\n } else\n for (M = this._currentCopies, A = 0, R = 1; M; )\n m = this.elemsData[A].it, y = m[m.length - 1].transform.mProps.v.props, m[m.length - 1].transform.mProps._mdf = !1, m[m.length - 1].transform.op._mdf = !1, M -= 1, A += R;\n return Z;\n }, gt.prototype.addShape = function() {\n };\n function Jt() {\n }\n d([nn], Jt), Jt.prototype.initModifierProperties = function(f, m) {\n this.getValue = this.processKeys, this.rd = Fe.getProp(f, m.r, 0, null, this), this._isAnimated = !!this.rd.effectsSequence.length;\n }, Jt.prototype.processPath = function(f, m) {\n var y = st.newElement();\n y.c = f.c;\n var A, R = f._length, M, Z, pe, te, me, xe, Me = 0, ne, ye, Ee, we, be, ae;\n for (A = 0; A < R; A += 1)\n M = f.v[A], pe = f.o[A], Z = f.i[A], M[0] === pe[0] && M[1] === pe[1] && M[0] === Z[0] && M[1] === Z[1] ? (A === 0 || A === R - 1) && !f.c ? (y.setTripleAt(M[0], M[1], pe[0], pe[1], Z[0], Z[1], Me), Me += 1) : (A === 0 ? te = f.v[R - 1] : te = f.v[A - 1], me = Math.sqrt(Math.pow(M[0] - te[0], 2) + Math.pow(M[1] - te[1], 2)), xe = me ? Math.min(me / 2, m) / me : 0, be = M[0] + (te[0] - M[0]) * xe, ne = be, ae = M[1] - (M[1] - te[1]) * xe, ye = ae, Ee = ne - (ne - M[0]) * Q, we = ye - (ye - M[1]) * Q, y.setTripleAt(ne, ye, Ee, we, be, ae, Me), Me += 1, A === R - 1 ? te = f.v[0] : te = f.v[A + 1], me = Math.sqrt(Math.pow(M[0] - te[0], 2) + Math.pow(M[1] - te[1], 2)), xe = me ? Math.min(me / 2, m) / me : 0, Ee = M[0] + (te[0] - M[0]) * xe, ne = Ee, we = M[1] + (te[1] - M[1]) * xe, ye = we, be = ne - (ne - M[0]) * Q, ae = ye - (ye - M[1]) * Q, y.setTripleAt(ne, ye, Ee, we, be, ae, Me), Me += 1) : (y.setTripleAt(f.v[A][0], f.v[A][1], f.o[A][0], f.o[A][1], f.i[A][0], f.i[A][1], Me), Me += 1);\n return y;\n }, Jt.prototype.processShapes = function(f) {\n var m, y, A = this.shapes.length, R, M, Z = this.rd.v;\n if (Z !== 0) {\n var pe, te;\n for (y = 0; y < A; y += 1) {\n if (pe = this.shapes[y], te = pe.localShapeCollection, !(!pe.shape._mdf && !this._mdf && !f))\n for (te.releaseShapes(), pe.shape._mdf = !0, m = pe.shape.paths.shapes, M = pe.shape.paths._length, R = 0; R < M; R += 1)\n te.addShape(this.processPath(m[R], Z));\n pe.shape.paths = pe.localShapeCollection;\n }\n }\n this.dynamicProperties.length || (this._mdf = !1);\n };\n function It(f, m) {\n return Math.abs(f - m) * 1e5 <= Math.min(Math.abs(f), Math.abs(m));\n }\n function rn(f) {\n return Math.abs(f) <= 1e-5;\n }\n function eo(f, m, y) {\n return f * (1 - y) + m * y;\n }\n function Aa(f, m, y) {\n return [eo(f[0], m[0], y), eo(f[1], m[1], y)];\n }\n function am(f, m, y) {\n if (f === 0)\n return [];\n var A = m * m - 4 * f * y;\n if (A < 0)\n return [];\n var R = -m / (2 * f);\n if (A === 0)\n return [R];\n var M = Math.sqrt(A) / (2 * f);\n return [R - M, R + M];\n }\n function Md(f, m, y, A) {\n return [-f + 3 * m - 3 * y + A, 3 * f - 6 * m + 3 * y, -3 * f + 3 * m, f];\n }\n function J2(f) {\n return new Kn(f, f, f, f, !1);\n }\n function Kn(f, m, y, A, R) {\n R && Fs(f, m) && (m = Aa(f, A, 1 / 3)), R && Fs(y, A) && (y = Aa(f, A, 2 / 3));\n var M = Md(f[0], m[0], y[0], A[0]), Z = Md(f[1], m[1], y[1], A[1]);\n this.a = [M[0], Z[0]], this.b = [M[1], Z[1]], this.c = [M[2], Z[2]], this.d = [M[3], Z[3]], this.points = [f, m, y, A];\n }\n Kn.prototype.point = function(f) {\n return [((this.a[0] * f + this.b[0]) * f + this.c[0]) * f + this.d[0], ((this.a[1] * f + this.b[1]) * f + this.c[1]) * f + this.d[1]];\n }, Kn.prototype.derivative = function(f) {\n return [(3 * f * this.a[0] + 2 * this.b[0]) * f + this.c[0], (3 * f * this.a[1] + 2 * this.b[1]) * f + this.c[1]];\n }, Kn.prototype.tangentAngle = function(f) {\n var m = this.derivative(f);\n return Math.atan2(m[1], m[0]);\n }, Kn.prototype.normalAngle = function(f) {\n var m = this.derivative(f);\n return Math.atan2(m[0], m[1]);\n }, Kn.prototype.inflectionPoints = function() {\n var f = this.a[1] * this.b[0] - this.a[0] * this.b[1];\n if (rn(f))\n return [];\n var m = -0.5 * (this.a[1] * this.c[0] - this.a[0] * this.c[1]) / f, y = m * m - 1 / 3 * (this.b[1] * this.c[0] - this.b[0] * this.c[1]) / f;\n if (y < 0)\n return [];\n var A = Math.sqrt(y);\n return rn(A) ? A > 0 && A < 1 ? [m] : [] : [m - A, m + A].filter(function(R) {\n return R > 0 && R < 1;\n });\n }, Kn.prototype.split = function(f) {\n if (f <= 0)\n return [J2(this.points[0]), this];\n if (f >= 1)\n return [this, J2(this.points[this.points.length - 1])];\n var m = Aa(this.points[0], this.points[1], f), y = Aa(this.points[1], this.points[2], f), A = Aa(this.points[2], this.points[3], f), R = Aa(m, y, f), M = Aa(y, A, f), Z = Aa(R, M, f);\n return [new Kn(this.points[0], m, R, Z, !0), new Kn(Z, M, A, this.points[3], !0)];\n };\n function eC(f, m) {\n var y = f.points[0][m], A = f.points[f.points.length - 1][m];\n if (y > A) {\n var R = A;\n A = y, y = R;\n }\n for (var M = am(3 * f.a[m], 2 * f.b[m], f.c[m]), Z = 0; Z < M.length; Z += 1)\n if (M[Z] > 0 && M[Z] < 1) {\n var pe = f.point(M[Z])[m];\n pe < y ? y = pe : pe > A && (A = pe);\n }\n return {\n min: y,\n max: A\n };\n }\n Kn.prototype.bounds = function() {\n return {\n x: eC(this, 0),\n y: eC(this, 1)\n };\n }, Kn.prototype.boundingBox = function() {\n var f = this.bounds();\n return {\n left: f.x.min,\n right: f.x.max,\n top: f.y.min,\n bottom: f.y.max,\n width: f.x.max - f.x.min,\n height: f.y.max - f.y.min,\n cx: (f.x.max + f.x.min) / 2,\n cy: (f.y.max + f.y.min) / 2\n };\n };\n function Rd(f, m, y) {\n var A = f.boundingBox();\n return {\n cx: A.cx,\n cy: A.cy,\n width: A.width,\n height: A.height,\n bez: f,\n t: (m + y) / 2,\n t1: m,\n t2: y\n };\n }\n function tC(f) {\n var m = f.bez.split(0.5);\n return [Rd(m[0], f.t1, f.t), Rd(m[1], f.t, f.t2)];\n }\n function JB(f, m) {\n return Math.abs(f.cx - m.cx) * 2 < f.width + m.width && Math.abs(f.cy - m.cy) * 2 < f.height + m.height;\n }\n function hl(f, m, y, A, R, M) {\n if (JB(f, m)) {\n if (y >= M || f.width <= A && f.height <= A && m.width <= A && m.height <= A) {\n R.push([f.t, m.t]);\n return;\n }\n var Z = tC(f), pe = tC(m);\n hl(Z[0], pe[0], y + 1, A, R, M), hl(Z[0], pe[1], y + 1, A, R, M), hl(Z[1], pe[0], y + 1, A, R, M), hl(Z[1], pe[1], y + 1, A, R, M);\n }\n }\n Kn.prototype.intersections = function(f, m, y) {\n m === void 0 && (m = 2), y === void 0 && (y = 7);\n var A = [];\n return hl(Rd(this, 0, 1), Rd(f, 0, 1), 0, m, A, y), A;\n }, Kn.shapeSegment = function(f, m) {\n var y = (m + 1) % f.length();\n return new Kn(f.v[m], f.o[m], f.i[y], f.v[y], !0);\n }, Kn.shapeSegmentInverted = function(f, m) {\n var y = (m + 1) % f.length();\n return new Kn(f.v[y], f.i[y], f.o[m], f.v[m], !0);\n };\n function im(f, m) {\n return [f[1] * m[2] - f[2] * m[1], f[2] * m[0] - f[0] * m[2], f[0] * m[1] - f[1] * m[0]];\n }\n function Bd(f, m, y, A) {\n var R = [f[0], f[1], 1], M = [m[0], m[1], 1], Z = [y[0], y[1], 1], pe = [A[0], A[1], 1], te = im(im(R, M), im(Z, pe));\n return rn(te[2]) ? null : [te[0] / te[2], te[1] / te[2]];\n }\n function Bs(f, m, y) {\n return [f[0] + Math.cos(m) * y, f[1] - Math.sin(m) * y];\n }\n function om(f, m) {\n return Math.hypot(f[0] - m[0], f[1] - m[1]);\n }\n function Fs(f, m) {\n return It(f[0], m[0]) && It(f[1], m[1]);\n }\n function ml() {\n }\n d([nn], ml), ml.prototype.initModifierProperties = function(f, m) {\n this.getValue = this.processKeys, this.amplitude = Fe.getProp(f, m.s, 0, null, this), this.frequency = Fe.getProp(f, m.r, 0, null, this), this.pointsType = Fe.getProp(f, m.pt, 0, null, this), this._isAnimated = this.amplitude.effectsSequence.length !== 0 || this.frequency.effectsSequence.length !== 0 || this.pointsType.effectsSequence.length !== 0;\n };\n function nC(f, m, y, A, R, M, Z) {\n var pe = y - Math.PI / 2, te = y + Math.PI / 2, me = m[0] + Math.cos(y) * A * R, xe = m[1] - Math.sin(y) * A * R;\n f.setTripleAt(me, xe, me + Math.cos(pe) * M, xe - Math.sin(pe) * M, me + Math.cos(te) * Z, xe - Math.sin(te) * Z, f.length());\n }\n function eF(f, m) {\n var y = [m[0] - f[0], m[1] - f[1]], A = -Math.PI * 0.5, R = [Math.cos(A) * y[0] - Math.sin(A) * y[1], Math.sin(A) * y[0] + Math.cos(A) * y[1]];\n return R;\n }\n function tF(f, m) {\n var y = m === 0 ? f.length() - 1 : m - 1, A = (m + 1) % f.length(), R = f.v[y], M = f.v[A], Z = eF(R, M);\n return Math.atan2(0, 1) - Math.atan2(Z[1], Z[0]);\n }\n function rC(f, m, y, A, R, M, Z) {\n var pe = tF(m, y), te = m.v[y % m._length], me = m.v[y === 0 ? m._length - 1 : y - 1], xe = m.v[(y + 1) % m._length], Me = M === 2 ? Math.sqrt(Math.pow(te[0] - me[0], 2) + Math.pow(te[1] - me[1], 2)) : 0, ne = M === 2 ? Math.sqrt(Math.pow(te[0] - xe[0], 2) + Math.pow(te[1] - xe[1], 2)) : 0;\n nC(f, m.v[y % m._length], pe, Z, A, ne / ((R + 1) * 2), Me / ((R + 1) * 2));\n }\n function nF(f, m, y, A, R, M) {\n for (var Z = 0; Z < A; Z += 1) {\n var pe = (Z + 1) / (A + 1), te = R === 2 ? Math.sqrt(Math.pow(m.points[3][0] - m.points[0][0], 2) + Math.pow(m.points[3][1] - m.points[0][1], 2)) : 0, me = m.normalAngle(pe), xe = m.point(pe);\n nC(f, xe, me, M, y, te / ((A + 1) * 2), te / ((A + 1) * 2)), M = -M;\n }\n return M;\n }\n ml.prototype.processPath = function(f, m, y, A) {\n var R = f._length, M = st.newElement();\n if (M.c = f.c, f.c || (R -= 1), R === 0)\n return M;\n var Z = -1, pe = Kn.shapeSegment(f, 0);\n rC(M, f, 0, m, y, A, Z);\n for (var te = 0; te < R; te += 1)\n Z = nF(M, pe, m, y, A, -Z), te === R - 1 && !f.c ? pe = null : pe = Kn.shapeSegment(f, (te + 1) % R), rC(M, f, te + 1, m, y, A, Z);\n return M;\n }, ml.prototype.processShapes = function(f) {\n var m, y, A = this.shapes.length, R, M, Z = this.amplitude.v, pe = Math.max(0, Math.round(this.frequency.v)), te = this.pointsType.v;\n if (Z !== 0) {\n var me, xe;\n for (y = 0; y < A; y += 1) {\n if (me = this.shapes[y], xe = me.localShapeCollection, !(!me.shape._mdf && !this._mdf && !f))\n for (xe.releaseShapes(), me.shape._mdf = !0, m = me.shape.paths.shapes, M = me.shape.paths._length, R = 0; R < M; R += 1)\n xe.addShape(this.processPath(m[R], Z, pe, te));\n me.shape.paths = me.localShapeCollection;\n }\n }\n this.dynamicProperties.length || (this._mdf = !1);\n };\n function sm(f, m, y) {\n var A = Math.atan2(m[0] - f[0], m[1] - f[1]);\n return [Bs(f, A, y), Bs(m, A, y)];\n }\n function js(f, m) {\n var y, A, R, M, Z, pe, te;\n te = sm(f.points[0], f.points[1], m), y = te[0], A = te[1], te = sm(f.points[1], f.points[2], m), R = te[0], M = te[1], te = sm(f.points[2], f.points[3], m), Z = te[0], pe = te[1];\n var me = Bd(y, A, R, M);\n me === null && (me = A);\n var xe = Bd(Z, pe, R, M);\n return xe === null && (xe = Z), new Kn(y, me, xe, pe);\n }\n function aC(f, m, y, A, R) {\n var M = m.points[3], Z = y.points[0];\n if (A === 3 || Fs(M, Z))\n return M;\n if (A === 2) {\n var pe = -m.tangentAngle(1), te = -y.tangentAngle(0) + Math.PI, me = Bd(M, Bs(M, pe + Math.PI / 2, 100), Z, Bs(Z, pe + Math.PI / 2, 100)), xe = me ? om(me, M) : om(M, Z) / 2, Me = Bs(M, pe, 2 * xe * Q);\n return f.setXYAt(Me[0], Me[1], \"o\", f.length() - 1), Me = Bs(Z, te, 2 * xe * Q), f.setTripleAt(Z[0], Z[1], Z[0], Z[1], Me[0], Me[1], f.length()), Z;\n }\n var ne = Fs(M, m.points[2]) ? m.points[0] : m.points[2], ye = Fs(Z, y.points[1]) ? y.points[3] : y.points[1], Ee = Bd(ne, M, Z, ye);\n return Ee && om(Ee, M) < R ? (f.setTripleAt(Ee[0], Ee[1], Ee[0], Ee[1], Ee[0], Ee[1], f.length()), Ee) : M;\n }\n function iC(f, m) {\n var y = f.intersections(m);\n return y.length && It(y[0][0], 1) && y.shift(), y.length ? y[0] : null;\n }\n function oC(f, m) {\n var y = f.slice(), A = m.slice(), R = iC(f[f.length - 1], m[0]);\n return R && (y[f.length - 1] = f[f.length - 1].split(R[0])[0], A[0] = m[0].split(R[1])[1]), f.length > 1 && m.length > 1 && (R = iC(f[0], m[m.length - 1]), R) ? [[f[0].split(R[0])[0]], [m[m.length - 1].split(R[1])[1]]] : [y, A];\n }\n function rF(f) {\n for (var m, y = 1; y < f.length; y += 1)\n m = oC(f[y - 1], f[y]), f[y - 1] = m[0], f[y] = m[1];\n return f.length > 1 && (m = oC(f[f.length - 1], f[0]), f[f.length - 1] = m[0], f[0] = m[1]), f;\n }\n function sC(f, m) {\n var y = f.inflectionPoints(), A, R, M, Z;\n if (y.length === 0)\n return [js(f, m)];\n if (y.length === 1 || It(y[1], 1))\n return M = f.split(y[0]), A = M[0], R = M[1], [js(A, m), js(R, m)];\n M = f.split(y[0]), A = M[0];\n var pe = (y[1] - y[0]) / (1 - y[0]);\n return M = M[1].split(pe), Z = M[0], R = M[1], [js(A, m), js(Z, m), js(R, m)];\n }\n function gl() {\n }\n d([nn], gl), gl.prototype.initModifierProperties = function(f, m) {\n this.getValue = this.processKeys, this.amount = Fe.getProp(f, m.a, 0, null, this), this.miterLimit = Fe.getProp(f, m.ml, 0, null, this), this.lineJoin = m.lj, this._isAnimated = this.amount.effectsSequence.length !== 0;\n }, gl.prototype.processPath = function(f, m, y, A) {\n var R = st.newElement();\n R.c = f.c;\n var M = f.length();\n f.c || (M -= 1);\n var Z, pe, te, me = [];\n for (Z = 0; Z < M; Z += 1)\n te = Kn.shapeSegment(f, Z), me.push(sC(te, m));\n if (!f.c)\n for (Z = M - 1; Z >= 0; Z -= 1)\n te = Kn.shapeSegmentInverted(f, Z), me.push(sC(te, m));\n me = rF(me);\n var xe = null, Me = null;\n for (Z = 0; Z < me.length; Z += 1) {\n var ne = me[Z];\n for (Me && (xe = aC(R, Me, ne[0], y, A)), Me = ne[ne.length - 1], pe = 0; pe < ne.length; pe += 1)\n te = ne[pe], xe && Fs(te.points[0], xe) ? R.setXYAt(te.points[1][0], te.points[1][1], \"o\", R.length() - 1) : R.setTripleAt(te.points[0][0], te.points[0][1], te.points[1][0], te.points[1][1], te.points[0][0], te.points[0][1], R.length()), R.setTripleAt(te.points[3][0], te.points[3][1], te.points[3][0], te.points[3][1], te.points[2][0], te.points[2][1], R.length()), xe = te.points[3];\n }\n return me.length && aC(R, Me, me[0][0], y, A), R;\n }, gl.prototype.processShapes = function(f) {\n var m, y, A = this.shapes.length, R, M, Z = this.amount.v, pe = this.miterLimit.v, te = this.lineJoin;\n if (Z !== 0) {\n var me, xe;\n for (y = 0; y < A; y += 1) {\n if (me = this.shapes[y], xe = me.localShapeCollection, !(!me.shape._mdf && !this._mdf && !f))\n for (xe.releaseShapes(), me.shape._mdf = !0, m = me.shape.paths.shapes, M = me.shape.paths._length, R = 0; R < M; R += 1)\n xe.addShape(this.processPath(m[R], Z, te, pe));\n me.shape.paths = me.localShapeCollection;\n }\n }\n this.dynamicProperties.length || (this._mdf = !1);\n };\n function uC(f) {\n for (var m = f.fStyle ? f.fStyle.split(\" \") : [], y = \"normal\", A = \"normal\", R = m.length, M, Z = 0; Z < R; Z += 1)\n switch (M = m[Z].toLowerCase(), M) {\n case \"italic\":\n A = \"italic\";\n break;\n case \"bold\":\n y = \"700\";\n break;\n case \"black\":\n y = \"900\";\n break;\n case \"medium\":\n y = \"500\";\n break;\n case \"regular\":\n case \"normal\":\n y = \"400\";\n break;\n case \"light\":\n case \"thin\":\n y = \"200\";\n break;\n }\n return {\n style: A,\n weight: f.fWeight || y\n };\n }\n var vl = function() {\n var f = 5e3, m = {\n w: 0,\n size: 0,\n shapes: [],\n data: {\n shapes: []\n }\n }, y = [];\n y = y.concat([2304, 2305, 2306, 2307, 2362, 2363, 2364, 2364, 2366, 2367, 2368, 2369, 2370, 2371, 2372, 2373, 2374, 2375, 2376, 2377, 2378, 2379, 2380, 2381, 2382, 2383, 2387, 2388, 2389, 2390, 2391, 2402, 2403]);\n var A = [\"d83cdffb\", \"d83cdffc\", \"d83cdffd\", \"d83cdffe\", \"d83cdfff\"], R = [65039, 8205];\n function M(U) {\n var J = U.split(\",\"), oe, le = J.length, fe = [];\n for (oe = 0; oe < le; oe += 1)\n J[oe] !== \"sans-serif\" && J[oe] !== \"monospace\" && fe.push(J[oe]);\n return fe.join(\",\");\n }\n function Z(U, J) {\n var oe = c(\"span\");\n oe.setAttribute(\"aria-hidden\", !0), oe.style.fontFamily = J;\n var le = c(\"span\");\n le.innerText = \"giItT1WQy@!-/#\", oe.style.position = \"absolute\", oe.style.left = \"-10000px\", oe.style.top = \"-10000px\", oe.style.fontSize = \"300px\", oe.style.fontVariant = \"normal\", oe.style.fontStyle = \"normal\", oe.style.fontWeight = \"normal\", oe.style.letterSpacing = \"0\", oe.appendChild(le), document.body.appendChild(oe);\n var fe = le.offsetWidth;\n return le.style.fontFamily = M(U) + \", \" + J, {\n node: le,\n w: fe,\n parent: oe\n };\n }\n function pe() {\n var U, J = this.fonts.length, oe, le, fe = J;\n for (U = 0; U < J; U += 1)\n this.fonts[U].loaded ? fe -= 1 : this.fonts[U].fOrigin === \"n\" || this.fonts[U].origin === 0 ? this.fonts[U].loaded = !0 : (oe = this.fonts[U].monoCase.node, le = this.fonts[U].monoCase.w, oe.offsetWidth !== le ? (fe -= 1, this.fonts[U].loaded = !0) : (oe = this.fonts[U].sansCase.node, le = this.fonts[U].sansCase.w, oe.offsetWidth !== le && (fe -= 1, this.fonts[U].loaded = !0)), this.fonts[U].loaded && (this.fonts[U].sansCase.parent.parentNode.removeChild(this.fonts[U].sansCase.parent), this.fonts[U].monoCase.parent.parentNode.removeChild(this.fonts[U].monoCase.parent)));\n fe !== 0 && Date.now() - this.initTime < f ? setTimeout(this.checkLoadedFontsBinded, 20) : setTimeout(this.setIsLoadedBinded, 10);\n }\n function te(U, J) {\n var oe = document.body && J ? \"svg\" : \"canvas\", le, fe = uC(U);\n if (oe === \"svg\") {\n var Re = ie(\"text\");\n Re.style.fontSize = \"100px\", Re.setAttribute(\"font-family\", U.fFamily), Re.setAttribute(\"font-style\", fe.style), Re.setAttribute(\"font-weight\", fe.weight), Re.textContent = \"1\", U.fClass ? (Re.style.fontFamily = \"inherit\", Re.setAttribute(\"class\", U.fClass)) : Re.style.fontFamily = U.fFamily, J.appendChild(Re), le = Re;\n } else {\n var ot = new OffscreenCanvas(500, 500).getContext(\"2d\");\n ot.font = fe.style + \" \" + fe.weight + \" 100px \" + U.fFamily, le = ot;\n }\n function it(tt) {\n return oe === \"svg\" ? (le.textContent = tt, le.getComputedTextLength()) : le.measureText(tt).width;\n }\n return {\n measureText: it\n };\n }\n function me(U, J) {\n if (!U) {\n this.isLoaded = !0;\n return;\n }\n if (this.chars) {\n this.isLoaded = !0, this.fonts = U.list;\n return;\n }\n if (!document.body) {\n this.isLoaded = !0, U.list.forEach(function(ge) {\n ge.helper = te(ge), ge.cache = {};\n }), this.fonts = U.list;\n return;\n }\n var oe = U.list, le, fe = oe.length, Re = fe;\n for (le = 0; le < fe; le += 1) {\n var ot = !0, it, tt;\n if (oe[le].loaded = !1, oe[le].monoCase = Z(oe[le].fFamily, \"monospace\"), oe[le].sansCase = Z(oe[le].fFamily, \"sans-serif\"), !oe[le].fPath)\n oe[le].loaded = !0, Re -= 1;\n else if (oe[le].fOrigin === \"p\" || oe[le].origin === 3) {\n if (it = document.querySelectorAll('style[f-forigin=\"p\"][f-family=\"' + oe[le].fFamily + '\"], style[f-origin=\"3\"][f-family=\"' + oe[le].fFamily + '\"]'), it.length > 0 && (ot = !1), ot) {\n var St = c(\"style\");\n St.setAttribute(\"f-forigin\", oe[le].fOrigin), St.setAttribute(\"f-origin\", oe[le].origin), St.setAttribute(\"f-family\", oe[le].fFamily), St.type = \"text/css\", St.innerText = \"@font-face {font-family: \" + oe[le].fFamily + \"; font-style: normal; src: url('\" + oe[le].fPath + \"');}\", J.appendChild(St);\n }\n } else if (oe[le].fOrigin === \"g\" || oe[le].origin === 1) {\n for (it = document.querySelectorAll('link[f-forigin=\"g\"], link[f-origin=\"1\"]'), tt = 0; tt < it.length; tt += 1)\n it[tt].href.indexOf(oe[le].fPath) !== -1 && (ot = !1);\n if (ot) {\n var At = c(\"link\");\n At.setAttribute(\"f-forigin\", oe[le].fOrigin), At.setAttribute(\"f-origin\", oe[le].origin), At.type = \"text/css\", At.rel = \"stylesheet\", At.href = oe[le].fPath, document.body.appendChild(At);\n }\n } else if (oe[le].fOrigin === \"t\" || oe[le].origin === 2) {\n for (it = document.querySelectorAll('script[f-forigin=\"t\"], script[f-origin=\"2\"]'), tt = 0; tt < it.length; tt += 1)\n oe[le].fPath === it[tt].src && (ot = !1);\n if (ot) {\n var je = c(\"link\");\n je.setAttribute(\"f-forigin\", oe[le].fOrigin), je.setAttribute(\"f-origin\", oe[le].origin), je.setAttribute(\"rel\", \"stylesheet\"), je.setAttribute(\"href\", oe[le].fPath), J.appendChild(je);\n }\n }\n oe[le].helper = te(oe[le], J), oe[le].cache = {}, this.fonts.push(oe[le]);\n }\n Re === 0 ? this.isLoaded = !0 : setTimeout(this.checkLoadedFonts.bind(this), 100);\n }\n function xe(U) {\n if (U) {\n this.chars || (this.chars = []);\n var J, oe = U.length, le, fe = this.chars.length, Re;\n for (J = 0; J < oe; J += 1) {\n for (le = 0, Re = !1; le < fe; )\n this.chars[le].style === U[J].style && this.chars[le].fFamily === U[J].fFamily && this.chars[le].ch === U[J].ch && (Re = !0), le += 1;\n Re || (this.chars.push(U[J]), fe += 1);\n }\n }\n }\n function Me(U, J, oe) {\n for (var le = 0, fe = this.chars.length; le < fe; ) {\n if (this.chars[le].ch === U && this.chars[le].style === J && this.chars[le].fFamily === oe)\n return this.chars[le];\n le += 1;\n }\n return (typeof U == \"string\" && U.charCodeAt(0) !== 13 || !U) && console && console.warn && !this._warned && (this._warned = !0, console.warn(\"Missing character from exported characters list: \", U, J, oe)), m;\n }\n function ne(U, J, oe) {\n var le = this.getFontByName(J), fe = U.charCodeAt(0);\n if (!le.cache[fe + 1]) {\n var Re = le.helper;\n if (U === \" \") {\n var ot = Re.measureText(\"|\" + U + \"|\"), it = Re.measureText(\"||\");\n le.cache[fe + 1] = (ot - it) / 100;\n } else\n le.cache[fe + 1] = Re.measureText(U) / 100;\n }\n return le.cache[fe + 1] * oe;\n }\n function ye(U) {\n for (var J = 0, oe = this.fonts.length; J < oe; ) {\n if (this.fonts[J].fName === U)\n return this.fonts[J];\n J += 1;\n }\n return this.fonts[0];\n }\n function Ee(U, J) {\n var oe = U.toString(16) + J.toString(16);\n return A.indexOf(oe) !== -1;\n }\n function we(U, J) {\n return J ? U === R[0] && J === R[1] : U === R[1];\n }\n function be(U) {\n return y.indexOf(U) !== -1;\n }\n function ae() {\n this.isLoaded = !0;\n }\n var re = function() {\n this.fonts = [], this.chars = null, this.typekitLoaded = 0, this.isLoaded = !1, this._warned = !1, this.initTime = Date.now(), this.setIsLoadedBinded = this.setIsLoaded.bind(this), this.checkLoadedFontsBinded = this.checkLoadedFonts.bind(this);\n };\n re.isModifier = Ee, re.isZeroWidthJoiner = we, re.isCombinedCharacter = be;\n var Y = {\n addChars: xe,\n addFonts: me,\n getCharData: Me,\n getFontByName: ye,\n measureText: ne,\n checkLoadedFonts: pe,\n setIsLoaded: ae\n };\n return re.prototype = Y, re;\n }();\n function Fd() {\n }\n Fd.prototype = {\n initRenderable: function() {\n this.isInRange = !1, this.hidden = !1, this.isTransparent = !1, this.renderableComponents = [];\n },\n addRenderableComponent: function(m) {\n this.renderableComponents.indexOf(m) === -1 && this.renderableComponents.push(m);\n },\n removeRenderableComponent: function(m) {\n this.renderableComponents.indexOf(m) !== -1 && this.renderableComponents.splice(this.renderableComponents.indexOf(m), 1);\n },\n prepareRenderableFrame: function(m) {\n this.checkLayerLimits(m);\n },\n checkTransparency: function() {\n this.finalTransform.mProp.o.v <= 0 ? !this.isTransparent && this.globalData.renderConfig.hideOnTransparent && (this.isTransparent = !0, this.hide()) : this.isTransparent && (this.isTransparent = !1, this.show());\n },\n /**\n * @function\n * Initializes frame related properties.\n *\n * @param {number} num\n * current frame number in Layer's time\n *\n */\n checkLayerLimits: function(m) {\n this.data.ip - this.data.st <= m && this.data.op - this.data.st > m ? this.isInRange !== !0 && (this.globalData._mdf = !0, this._mdf = !0, this.isInRange = !0, this.show()) : this.isInRange !== !1 && (this.globalData._mdf = !0, this.isInRange = !1, this.hide());\n },\n renderRenderable: function() {\n var m, y = this.renderableComponents.length;\n for (m = 0; m < y; m += 1)\n this.renderableComponents[m].renderFrame(this._isFirstFrame);\n },\n sourceRectAtTime: function() {\n return {\n top: 0,\n left: 0,\n width: 100,\n height: 100\n };\n },\n getLayerSize: function() {\n return this.data.ty === 5 ? {\n w: this.data.textData.width,\n h: this.data.textData.height\n } : {\n w: this.data.width,\n h: this.data.height\n };\n }\n };\n var um = function() {\n var f = {\n 0: \"source-over\",\n 1: \"multiply\",\n 2: \"screen\",\n 3: \"overlay\",\n 4: \"darken\",\n 5: \"lighten\",\n 6: \"color-dodge\",\n 7: \"color-burn\",\n 8: \"hard-light\",\n 9: \"soft-light\",\n 10: \"difference\",\n 11: \"exclusion\",\n 12: \"hue\",\n 13: \"saturation\",\n 14: \"color\",\n 15: \"luminosity\"\n };\n return function(m) {\n return f[m] || \"\";\n };\n }();\n function aF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 0, 0, y);\n }\n function iF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 0, 0, y);\n }\n function oF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 1, 0, y);\n }\n function sF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 1, 0, y);\n }\n function uF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 0, 0, y);\n }\n function lF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 0, 0, y);\n }\n function cF(f, m, y) {\n this.p = Fe.getProp(m, f.v, 0, 0, y);\n }\n function dF() {\n this.p = {};\n }\n function lC(f, m) {\n var y = f.ef || [];\n this.effectElements = [];\n var A, R = y.length, M;\n for (A = 0; A < R; A += 1)\n M = new bl(y[A], m), this.effectElements.push(M);\n }\n function bl(f, m) {\n this.init(f, m);\n }\n d([Ot], bl), bl.prototype.getValue = bl.prototype.iterateDynamicProperties, bl.prototype.init = function(f, m) {\n this.data = f, this.effectElements = [], this.initDynamicPropertyContainer(m);\n var y, A = this.data.ef.length, R, M = this.data.ef;\n for (y = 0; y < A; y += 1) {\n switch (R = null, M[y].ty) {\n case 0:\n R = new aF(M[y], m, this);\n break;\n case 1:\n R = new iF(M[y], m, this);\n break;\n case 2:\n R = new oF(M[y], m, this);\n break;\n case 3:\n R = new sF(M[y], m, this);\n break;\n case 4:\n case 7:\n R = new cF(M[y], m, this);\n break;\n case 10:\n R = new uF(M[y], m, this);\n break;\n case 11:\n R = new lF(M[y], m, this);\n break;\n case 5:\n R = new lC(M[y], m);\n break;\n default:\n R = new dF(M[y]);\n break;\n }\n R && this.effectElements.push(R);\n }\n };\n function to() {\n }\n to.prototype = {\n checkMasks: function() {\n if (!this.data.hasMask)\n return !1;\n for (var m = 0, y = this.data.masksProperties.length; m < y; ) {\n if (this.data.masksProperties[m].mode !== \"n\" && this.data.masksProperties[m].cl !== !1)\n return !0;\n m += 1;\n }\n return !1;\n },\n initExpressions: function() {\n },\n setBlendMode: function() {\n var m = um(this.data.bm), y = this.baseElement || this.layerElement;\n y.style[\"mix-blend-mode\"] = m;\n },\n initBaseData: function(m, y, A) {\n this.globalData = y, this.comp = A, this.data = m, this.layerId = T(), this.data.sr || (this.data.sr = 1), this.effectsManager = new lC(this.data, this, this.dynamicProperties);\n },\n getType: function() {\n return this.type;\n },\n sourceRectAtTime: function() {\n }\n };\n function no() {\n }\n no.prototype = {\n /**\n * @function\n * Initializes frame related properties.\n *\n */\n initFrame: function() {\n this._isFirstFrame = !1, this.dynamicProperties = [], this._mdf = !1;\n },\n /**\n * @function\n * Calculates all dynamic values\n *\n * @param {number} num\n * current frame number in Layer's time\n * @param {boolean} isVisible\n * if layers is currently in range\n *\n */\n prepareProperties: function(m, y) {\n var A, R = this.dynamicProperties.length;\n for (A = 0; A < R; A += 1)\n (y || this._isParent && this.dynamicProperties[A].propType === \"transform\") && (this.dynamicProperties[A].getValue(), this.dynamicProperties[A]._mdf && (this.globalData._mdf = !0, this._mdf = !0));\n },\n addDynamicProperty: function(m) {\n this.dynamicProperties.indexOf(m) === -1 && this.dynamicProperties.push(m);\n }\n };\n function ro(f, m, y) {\n this.initFrame(), this.initRenderable(), this.assetData = m.getAssetData(f.refId), this.footageData = m.imageLoader.getAsset(this.assetData), this.initBaseData(f, m, y);\n }\n ro.prototype.prepareFrame = function() {\n }, d([Fd, to, no], ro), ro.prototype.getBaseElement = function() {\n return null;\n }, ro.prototype.renderFrame = function() {\n }, ro.prototype.destroy = function() {\n }, ro.prototype.initExpressions = function() {\n }, ro.prototype.getFootageData = function() {\n return this.footageData;\n };\n function Kr(f, m, y) {\n this.initFrame(), this.initRenderable(), this.assetData = m.getAssetData(f.refId), this.initBaseData(f, m, y), this._isPlaying = !1, this._canPlay = !1;\n var A = this.globalData.getAssetsPath(this.assetData);\n this.audio = this.globalData.audioController.createAudio(A), this._currentTime = 0, this.globalData.audioController.addAudio(this), this._volumeMultiplier = 1, this._volume = 1, this._previousVolume = null, this.tm = f.tm ? Fe.getProp(this, f.tm, 0, m.frameRate, this) : {\n _placeholder: !0\n }, this.lv = Fe.getProp(this, f.au && f.au.lv ? f.au.lv : {\n k: [100]\n }, 1, 0.01, this);\n }\n Kr.prototype.prepareFrame = function(f) {\n if (this.prepareRenderableFrame(f, !0), this.prepareProperties(f, !0), this.tm._placeholder)\n this._currentTime = f / this.data.sr;\n else {\n var m = this.tm.v;\n this._currentTime = m;\n }\n this._volume = this.lv.v[0];\n var y = this._volume * this._volumeMultiplier;\n this._previousVolume !== y && (this._previousVolume = y, this.audio.volume(y));\n }, d([Fd, to, no], Kr), Kr.prototype.renderFrame = function() {\n this.isInRange && this._canPlay && (this._isPlaying ? (!this.audio.playing() || Math.abs(this._currentTime / this.globalData.frameRate - this.audio.seek()) > 0.1) && this.audio.seek(this._currentTime / this.globalData.frameRate) : (this.audio.play(), this.audio.seek(this._currentTime / this.globalData.frameRate), this._isPlaying = !0));\n }, Kr.prototype.show = function() {\n }, Kr.prototype.hide = function() {\n this.audio.pause(), this._isPlaying = !1;\n }, Kr.prototype.pause = function() {\n this.audio.pause(), this._isPlaying = !1, this._canPlay = !1;\n }, Kr.prototype.resume = function() {\n this._canPlay = !0;\n }, Kr.prototype.setRate = function(f) {\n this.audio.rate(f);\n }, Kr.prototype.volume = function(f) {\n this._volumeMultiplier = f, this._previousVolume = f * this._volume, this.audio.volume(this._previousVolume);\n }, Kr.prototype.getBaseElement = function() {\n return null;\n }, Kr.prototype.destroy = function() {\n }, Kr.prototype.sourceRectAtTime = function() {\n }, Kr.prototype.initExpressions = function() {\n };\n function Pr() {\n }\n Pr.prototype.checkLayers = function(f) {\n var m, y = this.layers.length, A;\n for (this.completeLayers = !0, m = y - 1; m >= 0; m -= 1)\n this.elements[m] || (A = this.layers[m], A.ip - A.st <= f - this.layers[m].st && A.op - A.st > f - this.layers[m].st && this.buildItem(m)), this.completeLayers = this.elements[m] ? this.completeLayers : !1;\n this.checkPendingElements();\n }, Pr.prototype.createItem = function(f) {\n switch (f.ty) {\n case 2:\n return this.createImage(f);\n case 0:\n return this.createComp(f);\n case 1:\n return this.createSolid(f);\n case 3:\n return this.createNull(f);\n case 4:\n return this.createShape(f);\n case 5:\n return this.createText(f);\n case 6:\n return this.createAudio(f);\n case 13:\n return this.createCamera(f);\n case 15:\n return this.createFootage(f);\n default:\n return this.createNull(f);\n }\n }, Pr.prototype.createCamera = function() {\n throw new Error(\"You're using a 3d camera. Try the html renderer.\");\n }, Pr.prototype.createAudio = function(f) {\n return new Kr(f, this.globalData, this);\n }, Pr.prototype.createFootage = function(f) {\n return new ro(f, this.globalData, this);\n }, Pr.prototype.buildAllItems = function() {\n var f, m = this.layers.length;\n for (f = 0; f < m; f += 1)\n this.buildItem(f);\n this.checkPendingElements();\n }, Pr.prototype.includeLayers = function(f) {\n this.completeLayers = !1;\n var m, y = f.length, A, R = this.layers.length;\n for (m = 0; m < y; m += 1)\n for (A = 0; A < R; ) {\n if (this.layers[A].id === f[m].id) {\n this.layers[A] = f[m];\n break;\n }\n A += 1;\n }\n }, Pr.prototype.setProjectInterface = function(f) {\n this.globalData.projectInterface = f;\n }, Pr.prototype.initItems = function() {\n this.globalData.progressiveLoad || this.buildAllItems();\n }, Pr.prototype.buildElementParenting = function(f, m, y) {\n for (var A = this.elements, R = this.layers, M = 0, Z = R.length; M < Z; )\n R[M].ind == m && (!A[M] || A[M] === !0 ? (this.buildItem(M), this.addPendingElement(f)) : (y.push(A[M]), A[M].setAsParent(), R[M].parent !== void 0 ? this.buildElementParenting(f, R[M].parent, y) : f.setHierarchy(y))), M += 1;\n }, Pr.prototype.addPendingElement = function(f) {\n this.pendingElements.push(f);\n }, Pr.prototype.searchExtraCompositions = function(f) {\n var m, y = f.length;\n for (m = 0; m < y; m += 1)\n if (f[m].xt) {\n var A = this.createComp(f[m]);\n A.initExpressions(), this.globalData.projectInterface.registerComposition(A);\n }\n }, Pr.prototype.getElementById = function(f) {\n var m, y = this.elements.length;\n for (m = 0; m < y; m += 1)\n if (this.elements[m].data.ind === f)\n return this.elements[m];\n return null;\n }, Pr.prototype.getElementByPath = function(f) {\n var m = f.shift(), y;\n if (typeof m == \"number\")\n y = this.elements[m];\n else {\n var A, R = this.elements.length;\n for (A = 0; A < R; A += 1)\n if (this.elements[A].data.nm === m) {\n y = this.elements[A];\n break;\n }\n }\n return f.length === 0 ? y : y.getElementByPath(f);\n }, Pr.prototype.setupGlobalData = function(f, m) {\n this.globalData.fontManager = new vl(), this.globalData.fontManager.addChars(f.chars), this.globalData.fontManager.addFonts(f.fonts, m), this.globalData.getAssetData = this.animationItem.getAssetData.bind(this.animationItem), this.globalData.getAssetsPath = this.animationItem.getAssetsPath.bind(this.animationItem), this.globalData.imageLoader = this.animationItem.imagePreloader, this.globalData.audioController = this.animationItem.audioController, this.globalData.frameId = 0, this.globalData.frameRate = f.fr, this.globalData.nm = f.nm, this.globalData.compSize = {\n w: f.w,\n h: f.h\n };\n };\n function $s() {\n }\n $s.prototype = {\n initTransform: function() {\n this.finalTransform = {\n mProp: this.data.ks ? ht.getTransformProperty(this, this.data.ks, this) : {\n o: 0\n },\n _matMdf: !1,\n _opMdf: !1,\n mat: new Rt()\n }, this.data.ao && (this.finalTransform.mProp.autoOriented = !0), this.data.ty;\n },\n renderTransform: function() {\n if (this.finalTransform._opMdf = this.finalTransform.mProp.o._mdf || this._isFirstFrame, this.finalTransform._matMdf = this.finalTransform.mProp._mdf || this._isFirstFrame, this.hierarchy) {\n var m, y = this.finalTransform.mat, A = 0, R = this.hierarchy.length;\n if (!this.finalTransform._matMdf)\n for (; A < R; ) {\n if (this.hierarchy[A].finalTransform.mProp._mdf) {\n this.finalTransform._matMdf = !0;\n break;\n }\n A += 1;\n }\n if (this.finalTransform._matMdf)\n for (m = this.finalTransform.mProp.v.props, y.cloneFromProps(m), A = 0; A < R; A += 1)\n m = this.hierarchy[A].finalTransform.mProp.v.props, y.transform(m[0], m[1], m[2], m[3], m[4], m[5], m[6], m[7], m[8], m[9], m[10], m[11], m[12], m[13], m[14], m[15]);\n }\n },\n globalToLocal: function(m) {\n var y = [];\n y.push(this.finalTransform);\n for (var A = !0, R = this.comp; A; )\n R.finalTransform ? (R.data.hasMask && y.splice(0, 0, R.finalTransform), R = R.comp) : A = !1;\n var M, Z = y.length, pe;\n for (M = 0; M < Z; M += 1)\n pe = y[M].mat.applyToPointArray(0, 0, 0), m = [m[0] - pe[0], m[1] - pe[1], 0];\n return m;\n },\n mHelper: new Rt()\n };\n function Ko(f, m, y) {\n this.data = f, this.element = m, this.globalData = y, this.storedData = [], this.masksProperties = this.data.masksProperties || [], this.maskElement = null;\n var A = this.globalData.defs, R, M = this.masksProperties ? this.masksProperties.length : 0;\n this.viewData = b(M), this.solidPath = \"\";\n var Z, pe = this.masksProperties, te = 0, me = [], xe, Me, ne = T(), ye, Ee, we, be, ae = \"clipPath\", re = \"clip-path\";\n for (R = 0; R < M; R += 1)\n if ((pe[R].mode !== \"a\" && pe[R].mode !== \"n\" || pe[R].inv || pe[R].o.k !== 100 || pe[R].o.x) && (ae = \"mask\", re = \"mask\"), (pe[R].mode === \"s\" || pe[R].mode === \"i\") && te === 0 ? (ye = ie(\"rect\"), ye.setAttribute(\"fill\", \"#ffffff\"), ye.setAttribute(\"width\", this.element.comp.data.w || 0), ye.setAttribute(\"height\", this.element.comp.data.h || 0), me.push(ye)) : ye = null, Z = ie(\"path\"), pe[R].mode === \"n\")\n this.viewData[R] = {\n op: Fe.getProp(this.element, pe[R].o, 0, 0.01, this.element),\n prop: Kt.getShapeProp(this.element, pe[R], 3),\n elem: Z,\n lastPath: \"\"\n }, A.appendChild(Z);\n else {\n te += 1, Z.setAttribute(\"fill\", pe[R].mode === \"s\" ? \"#000000\" : \"#ffffff\"), Z.setAttribute(\"clip-rule\", \"nonzero\");\n var Y;\n if (pe[R].x.k !== 0 ? (ae = \"mask\", re = \"mask\", be = Fe.getProp(this.element, pe[R].x, 0, null, this.element), Y = T(), Ee = ie(\"filter\"), Ee.setAttribute(\"id\", Y), we = ie(\"feMorphology\"), we.setAttribute(\"operator\", \"erode\"), we.setAttribute(\"in\", \"SourceGraphic\"), we.setAttribute(\"radius\", \"0\"), Ee.appendChild(we), A.appendChild(Ee), Z.setAttribute(\"stroke\", pe[R].mode === \"s\" ? \"#000000\" : \"#ffffff\")) : (we = null, be = null), this.storedData[R] = {\n elem: Z,\n x: be,\n expan: we,\n lastPath: \"\",\n lastOperator: \"\",\n filterId: Y,\n lastRadius: 0\n }, pe[R].mode === \"i\") {\n Me = me.length;\n var U = ie(\"g\");\n for (xe = 0; xe < Me; xe += 1)\n U.appendChild(me[xe]);\n var J = ie(\"mask\");\n J.setAttribute(\"mask-type\", \"alpha\"), J.setAttribute(\"id\", ne + \"_\" + te), J.appendChild(Z), A.appendChild(J), U.setAttribute(\"mask\", \"url(\" + l() + \"#\" + ne + \"_\" + te + \")\"), me.length = 0, me.push(U);\n } else\n me.push(Z);\n pe[R].inv && !this.solidPath && (this.solidPath = this.createLayerSolidPath()), this.viewData[R] = {\n elem: Z,\n lastPath: \"\",\n op: Fe.getProp(this.element, pe[R].o, 0, 0.01, this.element),\n prop: Kt.getShapeProp(this.element, pe[R], 3),\n invRect: ye\n }, this.viewData[R].prop.k || this.drawPath(pe[R], this.viewData[R].prop.v, this.viewData[R]);\n }\n for (this.maskElement = ie(ae), M = me.length, R = 0; R < M; R += 1)\n this.maskElement.appendChild(me[R]);\n te > 0 && (this.maskElement.setAttribute(\"id\", ne), this.element.maskedElement.setAttribute(re, \"url(\" + l() + \"#\" + ne + \")\"), A.appendChild(this.maskElement)), this.viewData.length && this.element.addRenderableComponent(this);\n }\n Ko.prototype.getMaskProperty = function(f) {\n return this.viewData[f].prop;\n }, Ko.prototype.renderFrame = function(f) {\n var m = this.element.finalTransform.mat, y, A = this.masksProperties.length;\n for (y = 0; y < A; y += 1)\n if ((this.viewData[y].prop._mdf || f) && this.drawPath(this.masksProperties[y], this.viewData[y].prop.v, this.viewData[y]), (this.viewData[y].op._mdf || f) && this.viewData[y].elem.setAttribute(\"fill-opacity\", this.viewData[y].op.v), this.masksProperties[y].mode !== \"n\" && (this.viewData[y].invRect && (this.element.finalTransform.mProp._mdf || f) && this.viewData[y].invRect.setAttribute(\"transform\", m.getInverseMatrix().to2dCSS()), this.storedData[y].x && (this.storedData[y].x._mdf || f))) {\n var R = this.storedData[y].expan;\n this.storedData[y].x.v < 0 ? (this.storedData[y].lastOperator !== \"erode\" && (this.storedData[y].lastOperator = \"erode\", this.storedData[y].elem.setAttribute(\"filter\", \"url(\" + l() + \"#\" + this.storedData[y].filterId + \")\")), R.setAttribute(\"radius\", -this.storedData[y].x.v)) : (this.storedData[y].lastOperator !== \"dilate\" && (this.storedData[y].lastOperator = \"dilate\", this.storedData[y].elem.setAttribute(\"filter\", null)), this.storedData[y].elem.setAttribute(\"stroke-width\", this.storedData[y].x.v * 2));\n }\n }, Ko.prototype.getMaskelement = function() {\n return this.maskElement;\n }, Ko.prototype.createLayerSolidPath = function() {\n var f = \"M0,0 \";\n return f += \" h\" + this.globalData.compSize.w, f += \" v\" + this.globalData.compSize.h, f += \" h-\" + this.globalData.compSize.w, f += \" v-\" + this.globalData.compSize.h + \" \", f;\n }, Ko.prototype.drawPath = function(f, m, y) {\n var A = \" M\" + m.v[0][0] + \",\" + m.v[0][1], R, M;\n for (M = m._length, R = 1; R < M; R += 1)\n A += \" C\" + m.o[R - 1][0] + \",\" + m.o[R - 1][1] + \" \" + m.i[R][0] + \",\" + m.i[R][1] + \" \" + m.v[R][0] + \",\" + m.v[R][1];\n if (m.c && M > 1 && (A += \" C\" + m.o[R - 1][0] + \",\" + m.o[R - 1][1] + \" \" + m.i[0][0] + \",\" + m.i[0][1] + \" \" + m.v[0][0] + \",\" + m.v[0][1]), y.lastPath !== A) {\n var Z = \"\";\n y.elem && (m.c && (Z = f.inv ? this.solidPath + A : A), y.elem.setAttribute(\"d\", Z)), y.lastPath = A;\n }\n }, Ko.prototype.destroy = function() {\n this.element = null, this.globalData = null, this.maskElement = null, this.data = null, this.masksProperties = null;\n };\n var yl = function() {\n var f = {};\n f.createFilter = m, f.createAlphaToLuminanceFilter = y;\n function m(A, R) {\n var M = ie(\"filter\");\n return M.setAttribute(\"id\", A), R !== !0 && (M.setAttribute(\"filterUnits\", \"objectBoundingBox\"), M.setAttribute(\"x\", \"0%\"), M.setAttribute(\"y\", \"0%\"), M.setAttribute(\"width\", \"100%\"), M.setAttribute(\"height\", \"100%\")), M;\n }\n function y() {\n var A = ie(\"feColorMatrix\");\n return A.setAttribute(\"type\", \"matrix\"), A.setAttribute(\"color-interpolation-filters\", \"sRGB\"), A.setAttribute(\"values\", \"0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1\"), A;\n }\n return f;\n }(), cC = function() {\n var f = {\n maskType: !0,\n svgLumaHidden: !0,\n offscreenCanvas: typeof OffscreenCanvas < \"u\"\n };\n return (/MSIE 10/i.test(navigator.userAgent) || /MSIE 9/i.test(navigator.userAgent) || /rv:11.0/i.test(navigator.userAgent) || /Edge\\/\\d./i.test(navigator.userAgent)) && (f.maskType = !1), /firefox/i.test(navigator.userAgent) && (f.svgLumaHidden = !1), f;\n }(), lm = {}, dC = \"filter_result_\";\n function fC(f) {\n var m, y = \"SourceGraphic\", A = f.data.ef ? f.data.ef.length : 0, R = T(), M = yl.createFilter(R, !0), Z = 0;\n this.filters = [];\n var pe;\n for (m = 0; m < A; m += 1) {\n pe = null;\n var te = f.data.ef[m].ty;\n if (lm[te]) {\n var me = lm[te].effect;\n pe = new me(M, f.effectsManager.effectElements[m], f, dC + Z, y), y = dC + Z, lm[te].countsAsEffect && (Z += 1);\n }\n pe && this.filters.push(pe);\n }\n Z && (f.globalData.defs.appendChild(M), f.layerElement.setAttribute(\"filter\", \"url(\" + l() + \"#\" + R + \")\")), this.filters.length && f.addRenderableComponent(this);\n }\n fC.prototype.renderFrame = function(f) {\n var m, y = this.filters.length;\n for (m = 0; m < y; m += 1)\n this.filters[m].renderFrame(f);\n };\n function Cl() {\n }\n Cl.prototype = {\n initRendererElement: function() {\n this.layerElement = ie(\"g\");\n },\n createContainerElements: function() {\n this.matteElement = ie(\"g\"), this.transformedElement = this.layerElement, this.maskedElement = this.layerElement, this._sizeChanged = !1;\n var m = null;\n if (this.data.td) {\n this.matteMasks = {};\n var y = ie(\"g\");\n y.setAttribute(\"id\", this.layerId), y.appendChild(this.layerElement), m = y, this.globalData.defs.appendChild(y);\n } else\n this.data.tt ? (this.matteElement.appendChild(this.layerElement), m = this.matteElement, this.baseElement = this.matteElement) : this.baseElement = this.layerElement;\n if (this.data.ln && this.layerElement.setAttribute(\"id\", this.data.ln), this.data.cl && this.layerElement.setAttribute(\"class\", this.data.cl), this.data.ty === 0 && !this.data.hd) {\n var A = ie(\"clipPath\"), R = ie(\"path\");\n R.setAttribute(\"d\", \"M0,0 L\" + this.data.w + \",0 L\" + this.data.w + \",\" + this.data.h + \" L0,\" + this.data.h + \"z\");\n var M = T();\n if (A.setAttribute(\"id\", M), A.appendChild(R), this.globalData.defs.appendChild(A), this.checkMasks()) {\n var Z = ie(\"g\");\n Z.setAttribute(\"clip-path\", \"url(\" + l() + \"#\" + M + \")\"), Z.appendChild(this.layerElement), this.transformedElement = Z, m ? m.appendChild(this.transformedElement) : this.baseElement = this.transformedElement;\n } else\n this.layerElement.setAttribute(\"clip-path\", \"url(\" + l() + \"#\" + M + \")\");\n }\n this.data.bm !== 0 && this.setBlendMode();\n },\n renderElement: function() {\n this.finalTransform._matMdf && this.transformedElement.setAttribute(\"transform\", this.finalTransform.mat.to2dCSS()), this.finalTransform._opMdf && this.transformedElement.setAttribute(\"opacity\", this.finalTransform.mProp.o.v);\n },\n destroyBaseElement: function() {\n this.layerElement = null, this.matteElement = null, this.maskManager.destroy();\n },\n getBaseElement: function() {\n return this.data.hd ? null : this.baseElement;\n },\n createRenderableComponents: function() {\n this.maskManager = new Ko(this.data, this, this.globalData), this.renderableEffectsManager = new fC(this);\n },\n getMatte: function(m) {\n if (this.matteMasks || (this.matteMasks = {}), !this.matteMasks[m]) {\n var y = this.layerId + \"_\" + m, A, R, M, Z;\n if (m === 1 || m === 3) {\n var pe = ie(\"mask\");\n pe.setAttribute(\"id\", y), pe.setAttribute(\"mask-type\", m === 3 ? \"luminance\" : \"alpha\"), M = ie(\"use\"), M.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", \"#\" + this.layerId), pe.appendChild(M), this.globalData.defs.appendChild(pe), !cC.maskType && m === 1 && (pe.setAttribute(\"mask-type\", \"luminance\"), A = T(), R = yl.createFilter(A), this.globalData.defs.appendChild(R), R.appendChild(yl.createAlphaToLuminanceFilter()), Z = ie(\"g\"), Z.appendChild(M), pe.appendChild(Z), Z.setAttribute(\"filter\", \"url(\" + l() + \"#\" + A + \")\"));\n } else if (m === 2) {\n var te = ie(\"mask\");\n te.setAttribute(\"id\", y), te.setAttribute(\"mask-type\", \"alpha\");\n var me = ie(\"g\");\n te.appendChild(me), A = T(), R = yl.createFilter(A);\n var xe = ie(\"feComponentTransfer\");\n xe.setAttribute(\"in\", \"SourceGraphic\"), R.appendChild(xe);\n var Me = ie(\"feFuncA\");\n Me.setAttribute(\"type\", \"table\"), Me.setAttribute(\"tableValues\", \"1.0 0.0\"), xe.appendChild(Me), this.globalData.defs.appendChild(R);\n var ne = ie(\"rect\");\n ne.setAttribute(\"width\", this.comp.data.w), ne.setAttribute(\"height\", this.comp.data.h), ne.setAttribute(\"x\", \"0\"), ne.setAttribute(\"y\", \"0\"), ne.setAttribute(\"fill\", \"#ffffff\"), ne.setAttribute(\"opacity\", \"0\"), me.setAttribute(\"filter\", \"url(\" + l() + \"#\" + A + \")\"), me.appendChild(ne), M = ie(\"use\"), M.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", \"#\" + this.layerId), me.appendChild(M), cC.maskType || (te.setAttribute(\"mask-type\", \"luminance\"), R.appendChild(yl.createAlphaToLuminanceFilter()), Z = ie(\"g\"), me.appendChild(ne), Z.appendChild(this.layerElement), me.appendChild(Z)), this.globalData.defs.appendChild(te);\n }\n this.matteMasks[m] = y;\n }\n return this.matteMasks[m];\n },\n setMatte: function(m) {\n this.matteElement && this.matteElement.setAttribute(\"mask\", \"url(\" + l() + \"#\" + m + \")\");\n }\n };\n function Hs() {\n }\n Hs.prototype = {\n /**\n * @function\n * Initializes hierarchy properties\n *\n */\n initHierarchy: function() {\n this.hierarchy = [], this._isParent = !1, this.checkParenting();\n },\n /**\n * @function\n * Sets layer's hierarchy.\n * @param {array} hierarch\n * layer's parent list\n *\n */\n setHierarchy: function(m) {\n this.hierarchy = m;\n },\n /**\n * @function\n * Sets layer as parent.\n *\n */\n setAsParent: function() {\n this._isParent = !0;\n },\n /**\n * @function\n * Searches layer's parenting chain\n *\n */\n checkParenting: function() {\n this.data.parent !== void 0 && this.comp.buildElementParenting(this, this.data.parent, []);\n }\n };\n function xl() {\n }\n (function() {\n var f = {\n initElement: function(y, A, R) {\n this.initFrame(), this.initBaseData(y, A, R), this.initTransform(y, A, R), this.initHierarchy(), this.initRenderable(), this.initRendererElement(), this.createContainerElements(), this.createRenderableComponents(), this.createContent(), this.hide();\n },\n hide: function() {\n if (!this.hidden && (!this.isInRange || this.isTransparent)) {\n var y = this.baseElement || this.layerElement;\n y.style.display = \"none\", this.hidden = !0;\n }\n },\n show: function() {\n if (this.isInRange && !this.isTransparent) {\n if (!this.data.hd) {\n var y = this.baseElement || this.layerElement;\n y.style.display = \"block\";\n }\n this.hidden = !1, this._isFirstFrame = !0;\n }\n },\n renderFrame: function() {\n this.data.hd || this.hidden || (this.renderTransform(), this.renderRenderable(), this.renderElement(), this.renderInnerContent(), this._isFirstFrame && (this._isFirstFrame = !1));\n },\n renderInnerContent: function() {\n },\n prepareFrame: function(y) {\n this._mdf = !1, this.prepareRenderableFrame(y), this.prepareProperties(y, this.isInRange), this.checkTransparency();\n },\n destroy: function() {\n this.innerElem = null, this.destroyBaseElement();\n }\n };\n d([Fd, p(f)], xl);\n })();\n function Sl(f, m, y) {\n this.assetData = m.getAssetData(f.refId), this.initElement(f, m, y), this.sourceRect = {\n top: 0,\n left: 0,\n width: this.assetData.w,\n height: this.assetData.h\n };\n }\n d([to, $s, Cl, Hs, no, xl], Sl), Sl.prototype.createContent = function() {\n var f = this.globalData.getAssetsPath(this.assetData);\n this.innerElem = ie(\"image\"), this.innerElem.setAttribute(\"width\", this.assetData.w + \"px\"), this.innerElem.setAttribute(\"height\", this.assetData.h + \"px\"), this.innerElem.setAttribute(\"preserveAspectRatio\", this.assetData.pr || this.globalData.renderConfig.imagePreserveAspectRatio), this.innerElem.setAttributeNS(\"http://www.w3.org/1999/xlink\", \"href\", f), this.layerElement.appendChild(this.innerElem);\n }, Sl.prototype.sourceRectAtTime = function() {\n return this.sourceRect;\n };\n function fF(f, m) {\n this.elem = f, this.pos = m;\n }\n function pC() {\n }\n pC.prototype = {\n addShapeToModifiers: function(m) {\n var y, A = this.shapeModifiers.length;\n for (y = 0; y < A; y += 1)\n this.shapeModifiers[y].addShape(m);\n },\n isShapeInAnimatedModifiers: function(m) {\n for (var y = 0, A = this.shapeModifiers.length; y < A; )\n if (this.shapeModifiers[y].isAnimatedWithShape(m))\n return !0;\n return !1;\n },\n renderModifiers: function() {\n if (this.shapeModifiers.length) {\n var m, y = this.shapes.length;\n for (m = 0; m < y; m += 1)\n this.shapes[m].sh.reset();\n y = this.shapeModifiers.length;\n var A;\n for (m = y - 1; m >= 0 && (A = this.shapeModifiers[m].processShapes(this._isFirstFrame), !A); m -= 1)\n ;\n }\n },\n searchProcessedElement: function(m) {\n for (var y = this.processedElements, A = 0, R = y.length; A < R; ) {\n if (y[A].elem === m)\n return y[A].pos;\n A += 1;\n }\n return 0;\n },\n addProcessedElement: function(m, y) {\n for (var A = this.processedElements, R = A.length; R; )\n if (R -= 1, A[R].elem === m) {\n A[R].pos = y;\n return;\n }\n A.push(new fF(m, y));\n },\n prepareFrame: function(m) {\n this.prepareRenderableFrame(m), this.prepareProperties(m, this.isInRange);\n }\n };\n var hC = {\n 1: \"butt\",\n 2: \"round\",\n 3: \"square\"\n }, mC = {\n 1: \"miter\",\n 2: \"round\",\n 3: \"bevel\"\n };\n function gC(f, m, y) {\n this.caches = [], this.styles = [], this.transformers = f, this.lStr = \"\", this.sh = y, this.lvl = m, this._isAnimated = !!y.k;\n for (var A = 0, R = f.length; A < R; ) {\n if (f[A].mProps.dynamicProperties.length) {\n this._isAnimated = !0;\n break;\n }\n A += 1;\n }\n }\n gC.prototype.setAsAnimated = function() {\n this._isAnimated = !0;\n };\n function vC(f, m) {\n this.data = f, this.type = f.ty, this.d = \"\", this.lvl = m, this._mdf = !1, this.closed = f.hd === !0, this.pElem = ie(\"path\"), this.msElem = null;\n }\n vC.prototype.reset = function() {\n this.d = \"\", this._mdf = !1;\n };\n function jd(f, m, y, A) {\n this.elem = f, this.frameId = -1, this.dataProps = b(m.length), this.renderer = y, this.k = !1, this.dashStr = \"\", this.dashArray = v(\"float32\", m.length ? m.length - 1 : 0), this.dashoffset = v(\"float32\", 1), this.initDynamicPropertyContainer(A);\n var R, M = m.length || 0, Z;\n for (R = 0; R < M; R += 1)\n Z = Fe.getProp(f, m[R].v, 0, 0, this), this.k = Z.k || this.k, this.dataProps[R] = {\n n: m[R].n,\n p: Z\n };\n this.k || this.getValue(!0), this._isAnimated = this.k;\n }\n jd.prototype.getValue = function(f) {\n if (!(this.elem.globalData.frameId === this.frameId && !f) && (this.frameId = this.elem.globalData.frameId, this.iterateDynamicProperties(), this._mdf = this._mdf || f, this._mdf)) {\n var m = 0, y = this.dataProps.length;\n for (this.renderer === \"svg\" && (this.dashStr = \"\"), m = 0; m < y; m += 1)\n this.dataProps[m].n !== \"o\" ? this.renderer === \"svg\" ? this.dashStr += \" \" + this.dataProps[m].p.v : this.dashArray[m] = this.dataProps[m].p.v : this.dashoffset[0] = this.dataProps[m].p.v;\n }\n }, d([Ot], jd);\n function bC(f, m, y) {\n this.initDynamicPropertyContainer(f), this.getValue = this.iterateDynamicProperties, this.o = Fe.getProp(f, m.o, 0, 0.01, this), this.w = Fe.getProp(f, m.w, 0, null, this), this.d = new jd(f, m.d || {}, \"svg\", this), this.c = Fe.getProp(f, m.c, 1, 255, this), this.style = y, this._isAnimated = !!this._isAnimated;\n }\n d([Ot], bC);\n function yC(f, m, y) {\n this.initDynamicPropertyContainer(f), this.getValue = this.iterateDynamicProperties, this.o = Fe.getProp(f, m.o, 0, 0.01, this), this.c = Fe.getProp(f, m.c, 1, 255, this), this.style = y;\n }\n d([Ot], yC);\n function CC(f, m, y) {\n this.initDynamicPropertyContainer(f), this.getValue = this.iterateDynamicProperties, this.style = y;\n }\n d([Ot], CC);\n function _l(f, m, y) {\n this.data = m, this.c = v(\"uint8c\", m.p * 4);\n var A = m.k.k[0].s ? m.k.k[0].s.length - m.p * 4 : m.k.k.length - m.p * 4;\n this.o = v(\"float32\", A), this._cmdf = !1, this._omdf = !1, this._collapsable = this.checkCollapsable(), this._hasOpacity = A, this.initDynamicPropertyContainer(y), this.prop = Fe.getProp(f, m.k, 1, null, this), this.k = this.prop.k, this.getValue(!0);\n }\n _l.prototype.comparePoints = function(f, m) {\n for (var y = 0, A = this.o.length / 2, R; y < A; ) {\n if (R = Math.abs(f[y * 4] - f[m * 4 + y * 2]), R > 0.01)\n return !1;\n y += 1;\n }\n return !0;\n }, _l.prototype.checkCollapsable = function() {\n if (this.o.length / 2 !== this.c.length / 4)\n return !1;\n if (this.data.k.k[0].s)\n for (var f = 0, m = this.data.k.k.length; f < m; ) {\n if (!this.comparePoints(this.data.k.k[f].s, this.data.p))\n return !1;\n f += 1;\n }\n else if (!this.comparePoints(this.data.k.k, this.data.p))\n return !1;\n return !0;\n }, _l.prototype.getValue = function(f) {\n if (this.prop.getValue(), this._mdf = !1, this._cmdf = !1, this._omdf = !1, this.prop._mdf || f) {\n var m, y = this.data.p * 4, A, R;\n for (m = 0; m < y; m += 1)\n A = m % 4 === 0 ? 100 : 255, R = Math.round(this.prop.v[m] * A), this.c[m] !== R && (this.c[m] = R, this._cmdf = !f);\n if (this.o.length)\n for (y = this.prop.v.length, m = this.data.p * 4; m < y; m += 1)\n A = m % 2 === 0 ? 100 : 1, R = m % 2 === 0 ? Math.round(this.prop.v[m] * 100) : this.prop.v[m], this.o[m - this.data.p * 4] !== R && (this.o[m - this.data.p * 4] = R, this._omdf = !f);\n this._mdf = !f;\n }\n }, d([Ot], _l);\n function Vs(f, m, y) {\n this.initDynamicPropertyContainer(f), this.getValue = this.iterateDynamicProperties, this.initGradientData(f, m, y);\n }\n Vs.prototype.initGradientData = function(f, m, y) {\n this.o = Fe.getProp(f, m.o, 0, 0.01, this), this.s = Fe.getProp(f, m.s, 1, null, this), this.e = Fe.getProp(f, m.e, 1, null, this), this.h = Fe.getProp(f, m.h || {\n k: 0\n }, 0, 0.01, this), this.a = Fe.getProp(f, m.a || {\n k: 0\n }, 0, k, this), this.g = new _l(f, m.g, this), this.style = y, this.stops = [], this.setGradientData(y.pElem, m), this.setGradientOpacity(m, y), this._isAnimated = !!this._isAnimated;\n }, Vs.prototype.setGradientData = function(f, m) {\n var y = T(), A = ie(m.t === 1 ? \"linearGradient\" : \"radialGradient\");\n A.setAttribute(\"id\", y), A.setAttribute(\"spreadMethod\", \"pad\"), A.setAttribute(\"gradientUnits\", \"userSpaceOnUse\");\n var R = [], M, Z, pe;\n for (pe = m.g.p * 4, Z = 0; Z < pe; Z += 4)\n M = ie(\"stop\"), A.appendChild(M), R.push(M);\n f.setAttribute(m.ty === \"gf\" ? \"fill\" : \"stroke\", \"url(\" + l() + \"#\" + y + \")\"), this.gf = A, this.cst = R;\n }, Vs.prototype.setGradientOpacity = function(f, m) {\n if (this.g._hasOpacity && !this.g._collapsable) {\n var y, A, R, M = ie(\"mask\"), Z = ie(\"path\");\n M.appendChild(Z);\n var pe = T(), te = T();\n M.setAttribute(\"id\", te);\n var me = ie(f.t === 1 ? \"linearGradient\" : \"radialGradient\");\n me.setAttribute(\"id\", pe), me.setAttribute(\"spreadMethod\", \"pad\"), me.setAttribute(\"gradientUnits\", \"userSpaceOnUse\"), R = f.g.k.k[0].s ? f.g.k.k[0].s.length : f.g.k.k.length;\n var xe = this.stops;\n for (A = f.g.p * 4; A < R; A += 2)\n y = ie(\"stop\"), y.setAttribute(\"stop-color\", \"rgb(255,255,255)\"), me.appendChild(y), xe.push(y);\n Z.setAttribute(f.ty === \"gf\" ? \"fill\" : \"stroke\", \"url(\" + l() + \"#\" + pe + \")\"), f.ty === \"gs\" && (Z.setAttribute(\"stroke-linecap\", hC[f.lc || 2]), Z.setAttribute(\"stroke-linejoin\", mC[f.lj || 2]), f.lj === 1 && Z.setAttribute(\"stroke-miterlimit\", f.ml)), this.of = me, this.ms = M, this.ost = xe, this.maskId = te, m.msElem = Z;\n }\n }, d([Ot], Vs);\n function xC(f, m, y) {\n this.initDynamicPropertyContainer(f), this.getValue = this.iterateDynamicProperties, this.w = Fe.getProp(f, m.w, 0, null, this), this.d = new jd(f, m.d || {}, \"svg\", this), this.initGradientData(f, m, y), this._isAnimated = !!this._isAnimated;\n }\n d([Vs, Ot], xC);\n function pF() {\n this.it = [], this.prevViewData = [], this.gr = ie(\"g\");\n }\n function hF(f, m, y) {\n this.transform = {\n mProps: f,\n op: m,\n container: y\n }, this.elements = [], this._isAnimated = this.transform.mProps.dynamicProperties.length || this.transform.op.effectsSequence.length;\n }\n var SC = function(m, y, A, R) {\n if (y === 0)\n return \"\";\n var M = m.o, Z = m.i, pe = m.v, te, me = \" M\" + R.applyToPointStringified(pe[0][0], pe[0][1]);\n for (te = 1; te < y; te += 1)\n me += \" C\" + R.applyToPointStringified(M[te - 1][0], M[te - 1][1]) + \" \" + R.applyToPointStringified(Z[te][0], Z[te][1]) + \" \" + R.applyToPointStringified(pe[te][0], pe[te][1]);\n return A && y && (me += \" C\" + R.applyToPointStringified(M[te - 1][0], M[te - 1][1]) + \" \" + R.applyToPointStringified(Z[0][0], Z[0][1]) + \" \" + R.applyToPointStringified(pe[0][0], pe[0][1]), me += \"z\"), me;\n }, mF = function() {\n var f = new Rt(), m = new Rt(), y = {\n createRenderFunction: A\n };\n function A(Me) {\n switch (Me.ty) {\n case \"fl\":\n return pe;\n case \"gf\":\n return me;\n case \"gs\":\n return te;\n case \"st\":\n return xe;\n case \"sh\":\n case \"el\":\n case \"rc\":\n case \"sr\":\n return Z;\n case \"tr\":\n return R;\n case \"no\":\n return M;\n default:\n return null;\n }\n }\n function R(Me, ne, ye) {\n (ye || ne.transform.op._mdf) && ne.transform.container.setAttribute(\"opacity\", ne.transform.op.v), (ye || ne.transform.mProps._mdf) && ne.transform.container.setAttribute(\"transform\", ne.transform.mProps.v.to2dCSS());\n }\n function M() {\n }\n function Z(Me, ne, ye) {\n var Ee, we, be, ae, re, Y, U = ne.styles.length, J = ne.lvl, oe, le, fe, Re, ot;\n for (Y = 0; Y < U; Y += 1) {\n if (ae = ne.sh._mdf || ye, ne.styles[Y].lvl < J) {\n for (le = m.reset(), Re = J - ne.styles[Y].lvl, ot = ne.transformers.length - 1; !ae && Re > 0; )\n ae = ne.transformers[ot].mProps._mdf || ae, Re -= 1, ot -= 1;\n if (ae)\n for (Re = J - ne.styles[Y].lvl, ot = ne.transformers.length - 1; Re > 0; )\n fe = ne.transformers[ot].mProps.v.props, le.transform(fe[0], fe[1], fe[2], fe[3], fe[4], fe[5], fe[6], fe[7], fe[8], fe[9], fe[10], fe[11], fe[12], fe[13], fe[14], fe[15]), Re -= 1, ot -= 1;\n } else\n le = f;\n if (oe = ne.sh.paths, we = oe._length, ae) {\n for (be = \"\", Ee = 0; Ee < we; Ee += 1)\n re = oe.shapes[Ee], re && re._length && (be += SC(re, re._length, re.c, le));\n ne.caches[Y] = be;\n } else\n be = ne.caches[Y];\n ne.styles[Y].d += Me.hd === !0 ? \"\" : be, ne.styles[Y]._mdf = ae || ne.styles[Y]._mdf;\n }\n }\n function pe(Me, ne, ye) {\n var Ee = ne.style;\n (ne.c._mdf || ye) && Ee.pElem.setAttribute(\"fill\", \"rgb(\" + N(ne.c.v[0]) + \",\" + N(ne.c.v[1]) + \",\" + N(ne.c.v[2]) + \")\"), (ne.o._mdf || ye) && Ee.pElem.setAttribute(\"fill-opacity\", ne.o.v);\n }\n function te(Me, ne, ye) {\n me(Me, ne, ye), xe(Me, ne, ye);\n }\n function me(Me, ne, ye) {\n var Ee = ne.gf, we = ne.g._hasOpacity, be = ne.s.v, ae = ne.e.v;\n if (ne.o._mdf || ye) {\n var re = Me.ty === \"gf\" ? \"fill-opacity\" : \"stroke-opacity\";\n ne.style.pElem.setAttribute(re, ne.o.v);\n }\n if (ne.s._mdf || ye) {\n var Y = Me.t === 1 ? \"x1\" : \"cx\", U = Y === \"x1\" ? \"y1\" : \"cy\";\n Ee.setAttribute(Y, be[0]), Ee.setAttribute(U, be[1]), we && !ne.g._collapsable && (ne.of.setAttribute(Y, be[0]), ne.of.setAttribute(U, be[1]));\n }\n var J, oe, le, fe;\n if (ne.g._cmdf || ye) {\n J = ne.cst;\n var Re = ne.g.c;\n for (le = J.length, oe = 0; oe < le; oe += 1)\n fe = J[oe], fe.setAttribute(\"offset\", Re[oe * 4] + \"%\"), fe.setAttribute(\"stop-color\", \"rgb(\" + Re[oe * 4 + 1] + \",\" + Re[oe * 4 + 2] + \",\" + Re[oe * 4 + 3] + \")\");\n }\n if (we && (ne.g._omdf || ye)) {\n var ot = ne.g.o;\n for (ne.g._collapsable ? J = ne.cst : J = ne.ost, le = J.length, oe = 0; oe < le; oe += 1)\n fe = J[oe], ne.g._collapsable || fe.setAttribute(\"offset\", ot[oe * 2] + \"%\"), fe.setAttribute(\"stop-opacity\", ot[oe * 2 + 1]);\n }\n if (Me.t === 1)\n (ne.e._mdf || ye) && (Ee.setAttribute(\"x2\", ae[0]), Ee.setAttribute(\"y2\", ae[1]), we && !ne.g._collapsable && (ne.of.setAttribute(\"x2\", ae[0]), ne.of.setAttribute(\"y2\", ae[1])));\n else {\n var it;\n if ((ne.s._mdf || ne.e._mdf || ye) && (it = Math.sqrt(Math.pow(be[0] - ae[0], 2) + Math.pow(be[1] - ae[1], 2)), Ee.setAttribute(\"r\", it), we && !ne.g._collapsable && ne.of.setAttribute(\"r\", it)), ne.e._mdf || ne.h._mdf || ne.a._mdf || ye) {\n it || (it = Math.sqrt(Math.pow(be[0] - ae[0], 2) + Math.pow(be[1] - ae[1], 2)));\n var tt = Math.atan2(ae[1] - be[1], ae[0] - be[0]), St = ne.h.v;\n St >= 1 ? St = 0.99 : St <= -1 && (St = -0.99);\n var At = it * St, je = Math.cos(tt + ne.a.v) * At + be[0], ge = Math.sin(tt + ne.a.v) * At + be[1];\n Ee.setAttribute(\"fx\", je), Ee.setAttribute(\"fy\", ge), we && !ne.g._collapsable && (ne.of.setAttribute(\"fx\", je), ne.of.setAttribute(\"fy\", ge));\n }\n }\n }\n function xe(Me, ne, ye) {\n var Ee = ne.style, we = ne.d;\n we && (we._mdf || ye) && we.dashStr && (Ee.pElem.setAttribute(\"stroke-dasharray\", we.dashStr), Ee.pElem.setAttribute(\"stroke-dashoffset\", we.dashoffset[0])), ne.c && (ne.c._mdf || ye) && Ee.pElem.setAttribute(\"stroke\", \"rgb(\" + N(ne.c.v[0]) + \",\" + N(ne.c.v[1]) + \",\" + N(ne.c.v[2]) + \")\"), (ne.o._mdf || ye) && Ee.pElem.setAttribute(\"stroke-opacity\", ne.o.v), (ne.w._mdf || ye) && (Ee.pElem.setAttribute(\"stroke-width\", ne.w.v), Ee.msElem && Ee.msElem.setAttribute(\"stroke-width\", ne.w.v));\n }\n return y;\n }();\n function er(f, m, y) {\n this.shapes = [], this.shapesData = f.shapes, this.stylesList = [], this.shapeModifiers = [], this.itemsData = [], this.processedElements = [], this.animatedContents = [], this.initElement(f, m, y), this.prevViewData = [];\n }\n d([to, $s, Cl, pC, Hs, no, xl], er), er.prototype.initSecondaryElement = function() {\n }, er.prototype.identityMatrix = new Rt(), er.prototype.buildExpressionInterface = function() {\n }, er.prototype.createContent = function() {\n this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, this.layerElement, 0, [], !0), this.filterUniqueShapes();\n }, er.prototype.filterUniqueShapes = function() {\n var f, m = this.shapes.length, y, A, R = this.stylesList.length, M, Z = [], pe = !1;\n for (A = 0; A < R; A += 1) {\n for (M = this.stylesList[A], pe = !1, Z.length = 0, f = 0; f < m; f += 1)\n y = this.shapes[f], y.styles.indexOf(M) !== -1 && (Z.push(y), pe = y._isAnimated || pe);\n Z.length > 1 && pe && this.setShapesAsAnimated(Z);\n }\n }, er.prototype.setShapesAsAnimated = function(f) {\n var m, y = f.length;\n for (m = 0; m < y; m += 1)\n f[m].setAsAnimated();\n }, er.prototype.createStyleElement = function(f, m) {\n var y, A = new vC(f, m), R = A.pElem;\n if (f.ty === \"st\")\n y = new bC(this, f, A);\n else if (f.ty === \"fl\")\n y = new yC(this, f, A);\n else if (f.ty === \"gf\" || f.ty === \"gs\") {\n var M = f.ty === \"gf\" ? Vs : xC;\n y = new M(this, f, A), this.globalData.defs.appendChild(y.gf), y.maskId && (this.globalData.defs.appendChild(y.ms), this.globalData.defs.appendChild(y.of), R.setAttribute(\"mask\", \"url(\" + l() + \"#\" + y.maskId + \")\"));\n } else\n f.ty === \"no\" && (y = new CC(this, f, A));\n return (f.ty === \"st\" || f.ty === \"gs\") && (R.setAttribute(\"stroke-linecap\", hC[f.lc || 2]), R.setAttribute(\"stroke-linejoin\", mC[f.lj || 2]), R.setAttribute(\"fill-opacity\", \"0\"), f.lj === 1 && R.setAttribute(\"stroke-miterlimit\", f.ml)), f.r === 2 && R.setAttribute(\"fill-rule\", \"evenodd\"), f.ln && R.setAttribute(\"id\", f.ln), f.cl && R.setAttribute(\"class\", f.cl), f.bm && (R.style[\"mix-blend-mode\"] = um(f.bm)), this.stylesList.push(A), this.addToAnimatedContents(f, y), y;\n }, er.prototype.createGroupElement = function(f) {\n var m = new pF();\n return f.ln && m.gr.setAttribute(\"id\", f.ln), f.cl && m.gr.setAttribute(\"class\", f.cl), f.bm && (m.gr.style[\"mix-blend-mode\"] = um(f.bm)), m;\n }, er.prototype.createTransformElement = function(f, m) {\n var y = ht.getTransformProperty(this, f, this), A = new hF(y, y.o, m);\n return this.addToAnimatedContents(f, A), A;\n }, er.prototype.createShapeElement = function(f, m, y) {\n var A = 4;\n f.ty === \"rc\" ? A = 5 : f.ty === \"el\" ? A = 6 : f.ty === \"sr\" && (A = 7);\n var R = Kt.getShapeProp(this, f, A, this), M = new gC(m, y, R);\n return this.shapes.push(M), this.addShapeToModifiers(M), this.addToAnimatedContents(f, M), M;\n }, er.prototype.addToAnimatedContents = function(f, m) {\n for (var y = 0, A = this.animatedContents.length; y < A; ) {\n if (this.animatedContents[y].element === m)\n return;\n y += 1;\n }\n this.animatedContents.push({\n fn: mF.createRenderFunction(f),\n element: m,\n data: f\n });\n }, er.prototype.setElementStyles = function(f) {\n var m = f.styles, y, A = this.stylesList.length;\n for (y = 0; y < A; y += 1)\n this.stylesList[y].closed || m.push(this.stylesList[y]);\n }, er.prototype.reloadShapes = function() {\n this._isFirstFrame = !0;\n var f, m = this.itemsData.length;\n for (f = 0; f < m; f += 1)\n this.prevViewData[f] = this.itemsData[f];\n for (this.searchShapes(this.shapesData, this.itemsData, this.prevViewData, this.layerElement, 0, [], !0), this.filterUniqueShapes(), m = this.dynamicProperties.length, f = 0; f < m; f += 1)\n this.dynamicProperties[f].getValue();\n this.renderModifiers();\n }, er.prototype.searchShapes = function(f, m, y, A, R, M, Z) {\n var pe = [].concat(M), te, me = f.length - 1, xe, Me, ne = [], ye = [], Ee, we, be;\n for (te = me; te >= 0; te -= 1) {\n if (be = this.searchProcessedElement(f[te]), be ? m[te] = y[be - 1] : f[te]._render = Z, f[te].ty === \"fl\" || f[te].ty === \"st\" || f[te].ty === \"gf\" || f[te].ty === \"gs\" || f[te].ty === \"no\")\n be ? m[te].style.closed = !1 : m[te] = this.createStyleElement(f[te], R), f[te]._render && m[te].style.pElem.parentNode !== A && A.appendChild(m[te].style.pElem), ne.push(m[te].style);\n else if (f[te].ty === \"gr\") {\n if (!be)\n m[te] = this.createGroupElement(f[te]);\n else\n for (Me = m[te].it.length, xe = 0; xe < Me; xe += 1)\n m[te].prevViewData[xe] = m[te].it[xe];\n this.searchShapes(f[te].it, m[te].it, m[te].prevViewData, m[te].gr, R + 1, pe, Z), f[te]._render && m[te].gr.parentNode !== A && A.appendChild(m[te].gr);\n } else\n f[te].ty === \"tr\" ? (be || (m[te] = this.createTransformElement(f[te], A)), Ee = m[te].transform, pe.push(Ee)) : f[te].ty === \"sh\" || f[te].ty === \"rc\" || f[te].ty === \"el\" || f[te].ty === \"sr\" ? (be || (m[te] = this.createShapeElement(f[te], pe, R)), this.setElementStyles(m[te])) : f[te].ty === \"tm\" || f[te].ty === \"rd\" || f[te].ty === \"ms\" || f[te].ty === \"pb\" || f[te].ty === \"zz\" || f[te].ty === \"op\" ? (be ? (we = m[te], we.closed = !1) : (we = xt.getModifier(f[te].ty), we.init(this, f[te]), m[te] = we, this.shapeModifiers.push(we)), ye.push(we)) : f[te].ty === \"rp\" && (be ? (we = m[te], we.closed = !0) : (we = xt.getModifier(f[te].ty), m[te] = we, we.init(this, f, te, m), this.shapeModifiers.push(we), Z = !1), ye.push(we));\n this.addProcessedElement(f[te], te + 1);\n }\n for (me = ne.length, te = 0; te < me; te += 1)\n ne[te].closed = !0;\n for (me = ye.length, te = 0; te < me; te += 1)\n ye[te].closed = !0;\n }, er.prototype.renderInnerContent = function() {\n this.renderModifiers();\n var f, m = this.stylesList.length;\n for (f = 0; f < m; f += 1)\n this.stylesList[f].reset();\n for (this.renderShape(), f = 0; f < m; f += 1)\n (this.stylesList[f]._mdf || this._isFirstFrame) && (this.stylesList[f].msElem && (this.stylesList[f].msElem.setAttribute(\"d\", this.stylesList[f].d), this.stylesList[f].d = \"M0 0\" + this.stylesList[f].d), this.stylesList[f].pElem.setAttribute(\"d\", this.stylesList[f].d || \"M0 0\"));\n }, er.prototype.renderShape = function() {\n var f, m = this.animatedContents.length, y;\n for (f = 0; f < m; f += 1)\n y = this.animatedContents[f], (this._isFirstFrame || y.element._isAnimated) && y.data !== !0 && y.fn(y.data, y.element, this._isFirstFrame);\n }, er.prototype.destroy = function() {\n this.destroyBaseElement(), this.shapesData = null, this.itemsData = null;\n };\n function cm(f, m, y, A, R, M) {\n this.o = f, this.sw = m, this.sc = y, this.fc = A, this.m = R, this.p = M, this._mdf = {\n o: !0,\n sw: !!m,\n sc: !!y,\n fc: !!A,\n m: !0,\n p: !0\n };\n }\n cm.prototype.update = function(f, m, y, A, R, M) {\n this._mdf.o = !1, this._mdf.sw = !1, this._mdf.sc = !1, this._mdf.fc = !1, this._mdf.m = !1, this._mdf.p = !1;\n var Z = !1;\n return this.o !== f && (this.o = f, this._mdf.o = !0, Z = !0), this.sw !== m && (this.sw = m, this._mdf.sw = !0, Z = !0), this.sc !== y && (this.sc = y, this._mdf.sc = !0, Z = !0), this.fc !== A && (this.fc = A, this._mdf.fc = !0, Z = !0), this.m !== R && (this.m = R, this._mdf.m = !0, Z = !0), M.length && (this.p[0] !== M[0] || this.p[1] !== M[1] || this.p[4] !== M[4] || this.p[5] !== M[5] || this.p[12] !== M[12] || this.p[13] !== M[13]) && (this.p = M, this._mdf.p = !0, Z = !0), Z;\n };\n function jr(f, m) {\n this._frameId = i, this.pv = \"\", this.v = \"\", this.kf = !1, this._isFirstFrame = !0, this._mdf = !1, this.data = m, this.elem = f, this.comp = this.elem.comp, this.keysIndex = 0, this.canResize = !1, this.minimumFontSize = 1, this.effectsSequence = [], this.currentData = {\n ascent: 0,\n boxWidth: this.defaultBoxWidth,\n f: \"\",\n fStyle: \"\",\n fWeight: \"\",\n fc: \"\",\n j: \"\",\n justifyOffset: \"\",\n l: [],\n lh: 0,\n lineWidths: [],\n ls: \"\",\n of: \"\",\n s: \"\",\n sc: \"\",\n sw: 0,\n t: 0,\n tr: 0,\n sz: 0,\n ps: null,\n fillColorAnim: !1,\n strokeColorAnim: !1,\n strokeWidthAnim: !1,\n yOffset: 0,\n finalSize: 0,\n finalText: [],\n finalLineHeight: 0,\n __complete: !1\n }, this.copyData(this.currentData, this.data.d.k[0].s), this.searchProperty() || this.completeTextData(this.currentData);\n }\n jr.prototype.defaultBoxWidth = [0, 0], jr.prototype.copyData = function(f, m) {\n for (var y in m)\n Object.prototype.hasOwnProperty.call(m, y) && (f[y] = m[y]);\n return f;\n }, jr.prototype.setCurrentData = function(f) {\n f.__complete || this.completeTextData(f), this.currentData = f, this.currentData.boxWidth = this.currentData.boxWidth || this.defaultBoxWidth, this._mdf = !0;\n }, jr.prototype.searchProperty = function() {\n return this.searchKeyframes();\n }, jr.prototype.searchKeyframes = function() {\n return this.kf = this.data.d.k.length > 1, this.kf && this.addEffect(this.getKeyframeValue.bind(this)), this.kf;\n }, jr.prototype.addEffect = function(f) {\n this.effectsSequence.push(f), this.elem.addDynamicProperty(this);\n }, jr.prototype.getValue = function(f) {\n if (!((this.elem.globalData.frameId === this.frameId || !this.effectsSequence.length) && !f)) {\n this.currentData.t = this.data.d.k[this.keysIndex].s.t;\n var m = this.currentData, y = this.keysIndex;\n if (this.lock) {\n this.setCurrentData(this.currentData);\n return;\n }\n this.lock = !0, this._mdf = !1;\n var A, R = this.effectsSequence.length, M = f || this.data.d.k[this.keysIndex].s;\n for (A = 0; A < R; A += 1)\n y !== this.keysIndex ? M = this.effectsSequence[A](M, M.t) : M = this.effectsSequence[A](this.currentData, M.t);\n m !== M && this.setCurrentData(M), this.v = this.currentData, this.pv = this.v, this.lock = !1, this.frameId = this.elem.globalData.frameId;\n }\n }, jr.prototype.getKeyframeValue = function() {\n for (var f = this.data.d.k, m = this.elem.comp.renderedFrame, y = 0, A = f.length; y <= A - 1 && !(y === A - 1 || f[y + 1].t > m); )\n y += 1;\n return this.keysIndex !== y && (this.keysIndex = y), this.data.d.k[this.keysIndex].s;\n }, jr.prototype.buildFinalText = function(f) {\n for (var m = [], y = 0, A = f.length, R, M, Z = !1; y < A; )\n R = f.charCodeAt(y), vl.isCombinedCharacter(R) ? m[m.length - 1] += f.charAt(y) : R >= 55296 && R <= 56319 ? (M = f.charCodeAt(y + 1), M >= 56320 && M <= 57343 ? (Z || vl.isModifier(R, M) ? (m[m.length - 1] += f.substr(y, 2), Z = !1) : m.push(f.substr(y, 2)), y += 1) : m.push(f.charAt(y))) : R > 56319 ? (M = f.charCodeAt(y + 1), vl.isZeroWidthJoiner(R, M) ? (Z = !0, m[m.length - 1] += f.substr(y, 2), y += 1) : m.push(f.charAt(y))) : vl.isZeroWidthJoiner(R) ? (m[m.length - 1] += f.charAt(y), Z = !0) : m.push(f.charAt(y)), y += 1;\n return m;\n }, jr.prototype.completeTextData = function(f) {\n f.__complete = !0;\n var m = this.elem.globalData.fontManager, y = this.data, A = [], R, M, Z, pe = 0, te, me = y.m.g, xe = 0, Me = 0, ne = 0, ye = [], Ee = 0, we = 0, be, ae, re = m.getFontByName(f.f), Y, U = 0, J = uC(re);\n f.fWeight = J.weight, f.fStyle = J.style, f.finalSize = f.s, f.finalText = this.buildFinalText(f.t), M = f.finalText.length, f.finalLineHeight = f.lh;\n var oe = f.tr / 1e3 * f.finalSize, le;\n if (f.sz)\n for (var fe = !0, Re = f.sz[0], ot = f.sz[1], it, tt; fe; ) {\n tt = this.buildFinalText(f.t), it = 0, Ee = 0, M = tt.length, oe = f.tr / 1e3 * f.finalSize;\n var St = -1;\n for (R = 0; R < M; R += 1)\n le = tt[R].charCodeAt(0), Z = !1, tt[R] === \" \" ? St = R : (le === 13 || le === 3) && (Ee = 0, Z = !0, it += f.finalLineHeight || f.finalSize * 1.2), m.chars ? (Y = m.getCharData(tt[R], re.fStyle, re.fFamily), U = Z ? 0 : Y.w * f.finalSize / 100) : U = m.measureText(tt[R], f.f, f.finalSize), Ee + U > Re && tt[R] !== \" \" ? (St === -1 ? M += 1 : R = St, it += f.finalLineHeight || f.finalSize * 1.2, tt.splice(R, St === R ? 1 : 0, \"\\r\"), St = -1, Ee = 0) : (Ee += U, Ee += oe);\n it += re.ascent * f.finalSize / 100, this.canResize && f.finalSize > this.minimumFontSize && ot < it ? (f.finalSize -= 1, f.finalLineHeight = f.finalSize * f.lh / f.s) : (f.finalText = tt, M = f.finalText.length, fe = !1);\n }\n Ee = -oe, U = 0;\n var At = 0, je;\n for (R = 0; R < M; R += 1)\n if (Z = !1, je = f.finalText[R], le = je.charCodeAt(0), le === 13 || le === 3 ? (At = 0, ye.push(Ee), we = Ee > we ? Ee : we, Ee = -2 * oe, te = \"\", Z = !0, ne += 1) : te = je, m.chars ? (Y = m.getCharData(je, re.fStyle, m.getFontByName(f.f).fFamily), U = Z ? 0 : Y.w * f.finalSize / 100) : U = m.measureText(te, f.f, f.finalSize), je === \" \" ? At += U + oe : (Ee += U + oe + At, At = 0), A.push({\n l: U,\n an: U,\n add: xe,\n n: Z,\n anIndexes: [],\n val: te,\n line: ne,\n animatorJustifyOffset: 0\n }), me == 2) {\n if (xe += U, te === \"\" || te === \" \" || R === M - 1) {\n for ((te === \"\" || te === \" \") && (xe -= U); Me <= R; )\n A[Me].an = xe, A[Me].ind = pe, A[Me].extra = U, Me += 1;\n pe += 1, xe = 0;\n }\n } else if (me == 3) {\n if (xe += U, te === \"\" || R === M - 1) {\n for (te === \"\" && (xe -= U); Me <= R; )\n A[Me].an = xe, A[Me].ind = pe, A[Me].extra = U, Me += 1;\n xe = 0, pe += 1;\n }\n } else\n A[pe].ind = pe, A[pe].extra = 0, pe += 1;\n if (f.l = A, we = Ee > we ? Ee : we, ye.push(Ee), f.sz)\n f.boxWidth = f.sz[0], f.justifyOffset = 0;\n else\n switch (f.boxWidth = we, f.j) {\n case 1:\n f.justifyOffset = -f.boxWidth;\n break;\n case 2:\n f.justifyOffset = -f.boxWidth / 2;\n break;\n default:\n f.justifyOffset = 0;\n }\n f.lineWidths = ye;\n var ge = y.a, ce, ee;\n ae = ge.length;\n var he, Ke, Pe = [];\n for (be = 0; be < ae; be += 1) {\n for (ce = ge[be], ce.a.sc && (f.strokeColorAnim = !0), ce.a.sw && (f.strokeWidthAnim = !0), (ce.a.fc || ce.a.fh || ce.a.fs || ce.a.fb) && (f.fillColorAnim = !0), Ke = 0, he = ce.s.b, R = 0; R < M; R += 1)\n ee = A[R], ee.anIndexes[be] = Ke, (he == 1 && ee.val !== \"\" || he == 2 && ee.val !== \"\" && ee.val !== \" \" || he == 3 && (ee.n || ee.val == \" \" || R == M - 1) || he == 4 && (ee.n || R == M - 1)) && (ce.s.rn === 1 && Pe.push(Ke), Ke += 1);\n y.a[be].s.totalChars = Ke;\n var Et = -1, en;\n if (ce.s.rn === 1)\n for (R = 0; R < M; R += 1)\n ee = A[R], Et != ee.anIndexes[be] && (Et = ee.anIndexes[be], en = Pe.splice(Math.floor(Math.random() * Pe.length), 1)[0]), ee.anIndexes[be] = en;\n }\n f.yOffset = f.finalLineHeight || f.finalSize * 1.2, f.ls = f.ls || 0, f.ascent = re.ascent * f.finalSize / 100;\n }, jr.prototype.updateDocumentData = function(f, m) {\n m = m === void 0 ? this.keysIndex : m;\n var y = this.copyData({}, this.data.d.k[m].s);\n y = this.copyData(y, f), this.data.d.k[m].s = y, this.recalculate(m), this.elem.addDynamicProperty(this);\n }, jr.prototype.recalculate = function(f) {\n var m = this.data.d.k[f].s;\n m.__complete = !1, this.keysIndex = 0, this._isFirstFrame = !0, this.getValue(m);\n }, jr.prototype.canResizeFont = function(f) {\n this.canResize = f, this.recalculate(this.keysIndex), this.elem.addDynamicProperty(this);\n }, jr.prototype.setMinimumFontSize = function(f) {\n this.minimumFontSize = Math.floor(f) || 1, this.recalculate(this.keysIndex), this.elem.addDynamicProperty(this);\n };\n var gF = function() {\n var f = Math.max, m = Math.min, y = Math.floor;\n function A(M, Z) {\n this._currentTextLength = -1, this.k = !1, this.data = Z, this.elem = M, this.comp = M.comp, this.finalS = 0, this.finalE = 0, this.initDynamicPropertyContainer(M), this.s = Fe.getProp(M, Z.s || {\n k: 0\n }, 0, 0, this), \"e\" in Z ? this.e = Fe.getProp(M, Z.e, 0, 0, this) : this.e = {\n v: 100\n }, this.o = Fe.getProp(M, Z.o || {\n k: 0\n }, 0, 0, this), this.xe = Fe.getProp(M, Z.xe || {\n k: 0\n }, 0, 0, this), this.ne = Fe.getProp(M, Z.ne || {\n k: 0\n }, 0, 0, this), this.sm = Fe.getProp(M, Z.sm || {\n k: 100\n }, 0, 0, this), this.a = Fe.getProp(M, Z.a, 0, 0.01, this), this.dynamicProperties.length || this.getValue();\n }\n A.prototype = {\n getMult: function(Z) {\n this._currentTextLength !== this.elem.textProperty.currentData.l.length && this.getValue();\n var pe = 0, te = 0, me = 1, xe = 1;\n this.ne.v > 0 ? pe = this.ne.v / 100 : te = -this.ne.v / 100, this.xe.v > 0 ? me = 1 - this.xe.v / 100 : xe = 1 + this.xe.v / 100;\n var Me = Je.getBezierEasing(pe, te, me, xe).get, ne = 0, ye = this.finalS, Ee = this.finalE, we = this.data.sh;\n if (we === 2)\n Ee === ye ? ne = Z >= Ee ? 1 : 0 : ne = f(0, m(0.5 / (Ee - ye) + (Z - ye) / (Ee - ye), 1)), ne = Me(ne);\n else if (we === 3)\n Ee === ye ? ne = Z >= Ee ? 0 : 1 : ne = 1 - f(0, m(0.5 / (Ee - ye) + (Z - ye) / (Ee - ye), 1)), ne = Me(ne);\n else if (we === 4)\n Ee === ye ? ne = 0 : (ne = f(0, m(0.5 / (Ee - ye) + (Z - ye) / (Ee - ye), 1)), ne < 0.5 ? ne *= 2 : ne = 1 - 2 * (ne - 0.5)), ne = Me(ne);\n else if (we === 5) {\n if (Ee === ye)\n ne = 0;\n else {\n var be = Ee - ye;\n Z = m(f(0, Z + 0.5 - ye), Ee - ye);\n var ae = -be / 2 + Z, re = be / 2;\n ne = Math.sqrt(1 - ae * ae / (re * re));\n }\n ne = Me(ne);\n } else\n we === 6 ? (Ee === ye ? ne = 0 : (Z = m(f(0, Z + 0.5 - ye), Ee - ye), ne = (1 + Math.cos(Math.PI + Math.PI * 2 * Z / (Ee - ye))) / 2), ne = Me(ne)) : (Z >= y(ye) && (Z - ye < 0 ? ne = f(0, m(m(Ee, 1) - (ye - Z), 1)) : ne = f(0, m(Ee - Z, 1))), ne = Me(ne));\n if (this.sm.v !== 100) {\n var Y = this.sm.v * 0.01;\n Y === 0 && (Y = 1e-8);\n var U = 0.5 - Y * 0.5;\n ne < U ? ne = 0 : (ne = (ne - U) / Y, ne > 1 && (ne = 1));\n }\n return ne * this.a.v;\n },\n getValue: function(Z) {\n this.iterateDynamicProperties(), this._mdf = Z || this._mdf, this._currentTextLength = this.elem.textProperty.currentData.l.length || 0, Z && this.data.r === 2 && (this.e.v = this._currentTextLength);\n var pe = this.data.r === 2 ? 1 : 100 / this.data.totalChars, te = this.o.v / pe, me = this.s.v / pe + te, xe = this.e.v / pe + te;\n if (me > xe) {\n var Me = me;\n me = xe, xe = Me;\n }\n this.finalS = me, this.finalE = xe;\n }\n }, d([Ot], A);\n function R(M, Z, pe) {\n return new A(M, Z);\n }\n return {\n getTextSelectorProp: R\n };\n }();\n function vF(f, m, y) {\n var A = {\n propType: !1\n }, R = Fe.getProp, M = m.a;\n this.a = {\n r: M.r ? R(f, M.r, 0, k, y) : A,\n rx: M.rx ? R(f, M.rx, 0, k, y) : A,\n ry: M.ry ? R(f, M.ry, 0, k, y) : A,\n sk: M.sk ? R(f, M.sk, 0, k, y) : A,\n sa: M.sa ? R(f, M.sa, 0, k, y) : A,\n s: M.s ? R(f, M.s, 1, 0.01, y) : A,\n a: M.a ? R(f, M.a, 1, 0, y) : A,\n o: M.o ? R(f, M.o, 0, 0.01, y) : A,\n p: M.p ? R(f, M.p, 1, 0, y) : A,\n sw: M.sw ? R(f, M.sw, 0, 0, y) : A,\n sc: M.sc ? R(f, M.sc, 1, 0, y) : A,\n fc: M.fc ? R(f, M.fc, 1, 0, y) : A,\n fh: M.fh ? R(f, M.fh, 0, 0, y) : A,\n fs: M.fs ? R(f, M.fs, 0, 0.01, y) : A,\n fb: M.fb ? R(f, M.fb, 0, 0.01, y) : A,\n t: M.t ? R(f, M.t, 0, 0, y) : A\n }, this.s = gF.getTextSelectorProp(f, m.s, y), this.s.t = m.s.t;\n }\n function Yo(f, m, y) {\n this._isFirstFrame = !0, this._hasMaskedPath = !1, this._frameId = -1, this._textData = f, this._renderType = m, this._elem = y, this._animatorsData = b(this._textData.a.length), this._pathData = {}, this._moreOptions = {\n alignment: {}\n }, this.renderedLetters = [], this.lettersChangedFlag = !1, this.initDynamicPropertyContainer(y);\n }\n Yo.prototype.searchProperties = function() {\n var f, m = this._textData.a.length, y, A = Fe.getProp;\n for (f = 0; f < m; f += 1)\n y = this._textData.a[f], this._animatorsData[f] = new vF(this._elem, y, this);\n this._textData.p && \"m\" in this._textData.p ? (this._pathData = {\n a: A(this._elem, this._textData.p.a, 0, 0, this),\n f: A(this._elem, this._textData.p.f, 0, 0, this),\n l: A(this._elem, this._textData.p.l, 0, 0, this),\n r: A(this._elem, this._textData.p.r, 0, 0, this),\n p: A(this._elem, this._textData.p.p, 0, 0, this),\n m: this._elem.maskManager.getMaskProperty(this._textData.p.m)\n }, this._hasMaskedPath = !0) : this._hasMaskedPath = !1, this._moreOptions.alignment = A(this._elem, this._textData.m.a, 1, 0, this);\n }, Yo.prototype.getMeasures = function(f, m) {\n if (this.lettersChangedFlag = m, !(!this._mdf && !this._isFirstFrame && !m && (!this._hasMaskedPath || !this._pathData.m._mdf))) {\n this._isFirstFrame = !1;\n var y = this._moreOptions.alignment.v, A = this._animatorsData, R = this._textData, M = this.mHelper, Z = this._renderType, pe = this.renderedLetters.length, te, me, xe, Me, ne = f.l, ye, Ee, we, be, ae, re, Y, U, J, oe, le, fe, Re, ot, it;\n if (this._hasMaskedPath) {\n if (it = this._pathData.m, !this._pathData.n || this._pathData._mdf) {\n var tt = it.v;\n this._pathData.r.v && (tt = tt.reverse()), ye = {\n tLength: 0,\n segments: []\n }, Me = tt._length - 1;\n var St;\n for (fe = 0, xe = 0; xe < Me; xe += 1)\n St = dt.buildBezierData(tt.v[xe], tt.v[xe + 1], [tt.o[xe][0] - tt.v[xe][0], tt.o[xe][1] - tt.v[xe][1]], [tt.i[xe + 1][0] - tt.v[xe + 1][0], tt.i[xe + 1][1] - tt.v[xe + 1][1]]), ye.tLength += St.segmentLength, ye.segments.push(St), fe += St.segmentLength;\n xe = Me, it.v.c && (St = dt.buildBezierData(tt.v[xe], tt.v[0], [tt.o[xe][0] - tt.v[xe][0], tt.o[xe][1] - tt.v[xe][1]], [tt.i[0][0] - tt.v[0][0], tt.i[0][1] - tt.v[0][1]]), ye.tLength += St.segmentLength, ye.segments.push(St), fe += St.segmentLength), this._pathData.pi = ye;\n }\n if (ye = this._pathData.pi, Ee = this._pathData.f.v, Y = 0, re = 1, be = 0, ae = !0, oe = ye.segments, Ee < 0 && it.v.c)\n for (ye.tLength < Math.abs(Ee) && (Ee = -Math.abs(Ee) % ye.tLength), Y = oe.length - 1, J = oe[Y].points, re = J.length - 1; Ee < 0; )\n Ee += J[re].partialLength, re -= 1, re < 0 && (Y -= 1, J = oe[Y].points, re = J.length - 1);\n J = oe[Y].points, U = J[re - 1], we = J[re], le = we.partialLength;\n }\n Me = ne.length, te = 0, me = 0;\n var At = f.finalSize * 1.2 * 0.714, je = !0, ge, ce, ee, he, Ke;\n he = A.length;\n var Pe, Et = -1, en, Ut, Vn, Cn = Ee, $r = Y, Yr = re, Xr = -1, Mr, ar, Hr, Nt, Fn, Ni, io, Oi, ei = \"\", Li = this.defaultPropsArray, ki;\n if (f.j === 2 || f.j === 1) {\n var Zr = 0, oo = 0, so = f.j === 2 ? -0.5 : -1, Fa = 0, uo = !0;\n for (xe = 0; xe < Me; xe += 1)\n if (ne[xe].n) {\n for (Zr && (Zr += oo); Fa < xe; )\n ne[Fa].animatorJustifyOffset = Zr, Fa += 1;\n Zr = 0, uo = !0;\n } else {\n for (ee = 0; ee < he; ee += 1)\n ge = A[ee].a, ge.t.propType && (uo && f.j === 2 && (oo += ge.t.v * so), ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), Pe.length ? Zr += ge.t.v * Pe[0] * so : Zr += ge.t.v * Pe * so);\n uo = !1;\n }\n for (Zr && (Zr += oo); Fa < xe; )\n ne[Fa].animatorJustifyOffset = Zr, Fa += 1;\n }\n for (xe = 0; xe < Me; xe += 1) {\n if (M.reset(), Mr = 1, ne[xe].n)\n te = 0, me += f.yOffset, me += je ? 1 : 0, Ee = Cn, je = !1, this._hasMaskedPath && (Y = $r, re = Yr, J = oe[Y].points, U = J[re - 1], we = J[re], le = we.partialLength, be = 0), ei = \"\", Oi = \"\", Ni = \"\", ki = \"\", Li = this.defaultPropsArray;\n else {\n if (this._hasMaskedPath) {\n if (Xr !== ne[xe].line) {\n switch (f.j) {\n case 1:\n Ee += fe - f.lineWidths[ne[xe].line];\n break;\n case 2:\n Ee += (fe - f.lineWidths[ne[xe].line]) / 2;\n break;\n }\n Xr = ne[xe].line;\n }\n Et !== ne[xe].ind && (ne[Et] && (Ee += ne[Et].extra), Ee += ne[xe].an / 2, Et = ne[xe].ind), Ee += y[0] * ne[xe].an * 5e-3;\n var ja = 0;\n for (ee = 0; ee < he; ee += 1)\n ge = A[ee].a, ge.p.propType && (ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), Pe.length ? ja += ge.p.v[0] * Pe[0] : ja += ge.p.v[0] * Pe), ge.a.propType && (ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), Pe.length ? ja += ge.a.v[0] * Pe[0] : ja += ge.a.v[0] * Pe);\n for (ae = !0, this._pathData.a.v && (Ee = ne[0].an * 0.5 + (fe - this._pathData.f.v - ne[0].an * 0.5 - ne[ne.length - 1].an * 0.5) * Et / (Me - 1), Ee += this._pathData.f.v); ae; )\n be + le >= Ee + ja || !J ? (Re = (Ee + ja - be) / we.partialLength, Ut = U.point[0] + (we.point[0] - U.point[0]) * Re, Vn = U.point[1] + (we.point[1] - U.point[1]) * Re, M.translate(-y[0] * ne[xe].an * 5e-3, -(y[1] * At) * 0.01), ae = !1) : J && (be += we.partialLength, re += 1, re >= J.length && (re = 0, Y += 1, oe[Y] ? J = oe[Y].points : it.v.c ? (re = 0, Y = 0, J = oe[Y].points) : (be -= we.partialLength, J = null)), J && (U = we, we = J[re], le = we.partialLength));\n en = ne[xe].an / 2 - ne[xe].add, M.translate(-en, 0, 0);\n } else\n en = ne[xe].an / 2 - ne[xe].add, M.translate(-en, 0, 0), M.translate(-y[0] * ne[xe].an * 5e-3, -y[1] * At * 0.01, 0);\n for (ee = 0; ee < he; ee += 1)\n ge = A[ee].a, ge.t.propType && (ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), (te !== 0 || f.j !== 0) && (this._hasMaskedPath ? Pe.length ? Ee += ge.t.v * Pe[0] : Ee += ge.t.v * Pe : Pe.length ? te += ge.t.v * Pe[0] : te += ge.t.v * Pe));\n for (f.strokeWidthAnim && (Hr = f.sw || 0), f.strokeColorAnim && (f.sc ? ar = [f.sc[0], f.sc[1], f.sc[2]] : ar = [0, 0, 0]), f.fillColorAnim && f.fc && (Nt = [f.fc[0], f.fc[1], f.fc[2]]), ee = 0; ee < he; ee += 1)\n ge = A[ee].a, ge.a.propType && (ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), Pe.length ? M.translate(-ge.a.v[0] * Pe[0], -ge.a.v[1] * Pe[1], ge.a.v[2] * Pe[2]) : M.translate(-ge.a.v[0] * Pe, -ge.a.v[1] * Pe, ge.a.v[2] * Pe));\n for (ee = 0; ee < he; ee += 1)\n ge = A[ee].a, ge.s.propType && (ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), Pe.length ? M.scale(1 + (ge.s.v[0] - 1) * Pe[0], 1 + (ge.s.v[1] - 1) * Pe[1], 1) : M.scale(1 + (ge.s.v[0] - 1) * Pe, 1 + (ge.s.v[1] - 1) * Pe, 1));\n for (ee = 0; ee < he; ee += 1) {\n if (ge = A[ee].a, ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), ge.sk.propType && (Pe.length ? M.skewFromAxis(-ge.sk.v * Pe[0], ge.sa.v * Pe[1]) : M.skewFromAxis(-ge.sk.v * Pe, ge.sa.v * Pe)), ge.r.propType && (Pe.length ? M.rotateZ(-ge.r.v * Pe[2]) : M.rotateZ(-ge.r.v * Pe)), ge.ry.propType && (Pe.length ? M.rotateY(ge.ry.v * Pe[1]) : M.rotateY(ge.ry.v * Pe)), ge.rx.propType && (Pe.length ? M.rotateX(ge.rx.v * Pe[0]) : M.rotateX(ge.rx.v * Pe)), ge.o.propType && (Pe.length ? Mr += (ge.o.v * Pe[0] - Mr) * Pe[0] : Mr += (ge.o.v * Pe - Mr) * Pe), f.strokeWidthAnim && ge.sw.propType && (Pe.length ? Hr += ge.sw.v * Pe[0] : Hr += ge.sw.v * Pe), f.strokeColorAnim && ge.sc.propType)\n for (Fn = 0; Fn < 3; Fn += 1)\n Pe.length ? ar[Fn] += (ge.sc.v[Fn] - ar[Fn]) * Pe[0] : ar[Fn] += (ge.sc.v[Fn] - ar[Fn]) * Pe;\n if (f.fillColorAnim && f.fc) {\n if (ge.fc.propType)\n for (Fn = 0; Fn < 3; Fn += 1)\n Pe.length ? Nt[Fn] += (ge.fc.v[Fn] - Nt[Fn]) * Pe[0] : Nt[Fn] += (ge.fc.v[Fn] - Nt[Fn]) * Pe;\n ge.fh.propType && (Pe.length ? Nt = W(Nt, ge.fh.v * Pe[0]) : Nt = W(Nt, ge.fh.v * Pe)), ge.fs.propType && (Pe.length ? Nt = L(Nt, ge.fs.v * Pe[0]) : Nt = L(Nt, ge.fs.v * Pe)), ge.fb.propType && (Pe.length ? Nt = q(Nt, ge.fb.v * Pe[0]) : Nt = q(Nt, ge.fb.v * Pe));\n }\n }\n for (ee = 0; ee < he; ee += 1)\n ge = A[ee].a, ge.p.propType && (ce = A[ee].s, Pe = ce.getMult(ne[xe].anIndexes[ee], R.a[ee].s.totalChars), this._hasMaskedPath ? Pe.length ? M.translate(0, ge.p.v[1] * Pe[0], -ge.p.v[2] * Pe[1]) : M.translate(0, ge.p.v[1] * Pe, -ge.p.v[2] * Pe) : Pe.length ? M.translate(ge.p.v[0] * Pe[0], ge.p.v[1] * Pe[1], -ge.p.v[2] * Pe[2]) : M.translate(ge.p.v[0] * Pe, ge.p.v[1] * Pe, -ge.p.v[2] * Pe));\n if (f.strokeWidthAnim && (Ni = Hr < 0 ? 0 : Hr), f.strokeColorAnim && (io = \"rgb(\" + Math.round(ar[0] * 255) + \",\" + Math.round(ar[1] * 255) + \",\" + Math.round(ar[2] * 255) + \")\"), f.fillColorAnim && f.fc && (Oi = \"rgb(\" + Math.round(Nt[0] * 255) + \",\" + Math.round(Nt[1] * 255) + \",\" + Math.round(Nt[2] * 255) + \")\"), this._hasMaskedPath) {\n if (M.translate(0, -f.ls), M.translate(0, y[1] * At * 0.01 + me, 0), this._pathData.p.v) {\n ot = (we.point[1] - U.point[1]) / (we.point[0] - U.point[0]);\n var Xo = Math.atan(ot) * 180 / Math.PI;\n we.point[0] < U.point[0] && (Xo += 180), M.rotate(-Xo * Math.PI / 180);\n }\n M.translate(Ut, Vn, 0), Ee -= y[0] * ne[xe].an * 5e-3, ne[xe + 1] && Et !== ne[xe + 1].ind && (Ee += ne[xe].an / 2, Ee += f.tr * 1e-3 * f.finalSize);\n } else {\n switch (M.translate(te, me, 0), f.ps && M.translate(f.ps[0], f.ps[1] + f.ascent, 0), f.j) {\n case 1:\n M.translate(ne[xe].animatorJustifyOffset + f.justifyOffset + (f.boxWidth - f.lineWidths[ne[xe].line]), 0, 0);\n break;\n case 2:\n M.translate(ne[xe].animatorJustifyOffset + f.justifyOffset + (f.boxWidth - f.lineWidths[ne[xe].line]) / 2, 0, 0);\n break;\n }\n M.translate(0, -f.ls), M.translate(en, 0, 0), M.translate(y[0] * ne[xe].an * 5e-3, y[1] * At * 0.01, 0), te += ne[xe].l + f.tr * 1e-3 * f.finalSize;\n }\n Z === \"html\" ? ei = M.toCSS() : Z === \"svg\" ? ei = M.to2dCSS() : Li = [M.props[0], M.props[1], M.props[2], M.props[3], M.props[4], M.props[5], M.props[6], M.props[7], M.props[8], M.props[9], M.props[10], M.props[11], M.props[12], M.props[13], M.props[14], M.props[15]], ki = Mr;\n }\n pe <= xe ? (Ke = new cm(ki, Ni, io, Oi, ei, Li), this.renderedLetters.push(Ke), pe += 1, this.lettersChangedFlag = !0) : (Ke = this.renderedLetters[xe], this.lettersChangedFlag = Ke.update(ki, Ni, io, Oi, ei, Li) || this.lettersChangedFlag);\n }\n }\n }, Yo.prototype.getValue = function() {\n this._elem.globalData.frameId !== this._frameId && (this._frameId = this._elem.globalData.frameId, this.iterateDynamicProperties());\n }, Yo.prototype.mHelper = new Rt(), Yo.prototype.defaultPropsArray = [], d([Ot], Yo);\n function Ba() {\n }\n Ba.prototype.initElement = function(f, m, y) {\n this.lettersChangedFlag = !0, this.initFrame(), this.initBaseData(f, m, y), this.textProperty = new jr(this, f.t, this.dynamicProperties), this.textAnimator = new Yo(f.t, this.renderType, this), this.initTransform(f, m, y), this.initHierarchy(), this.initRenderable(), this.initRendererElement(), this.createContainerElements(), this.createRenderableComponents(), this.createContent(), this.hide(), this.textAnimator.searchProperties(this.dynamicProperties);\n }, Ba.prototype.prepareFrame = function(f) {\n this._mdf = !1, this.prepareRenderableFrame(f), this.prepareProperties(f, this.isInRange), (this.textProperty._mdf || this.textProperty._isFirstFrame) && (this.buildNewText(), this.textProperty._isFirstFrame = !1, this.textProperty._mdf = !1);\n }, Ba.prototype.createPathShape = function(f, m) {\n var y, A = m.length, R, M = \"\";\n for (y = 0; y < A; y += 1)\n m[y].ty === \"sh\" && (R = m[y].ks.k, M += SC(R, R.i.length, !0, f));\n return M;\n }, Ba.prototype.updateDocumentData = function(f, m) {\n this.textProperty.updateDocumentData(f, m);\n }, Ba.prototype.canResizeFont = function(f) {\n this.textProperty.canResizeFont(f);\n }, Ba.prototype.setMinimumFontSize = function(f) {\n this.textProperty.setMinimumFontSize(f);\n }, Ba.prototype.applyTextPropertiesToMatrix = function(f, m, y, A, R) {\n switch (f.ps && m.translate(f.ps[0], f.ps[1] + f.ascent, 0), m.translate(0, -f.ls, 0), f.j) {\n case 1:\n m.translate(f.justifyOffset + (f.boxWidth - f.lineWidths[y]), 0, 0);\n break;\n case 2:\n m.translate(f.justifyOffset + (f.boxWidth - f.lineWidths[y]) / 2, 0, 0);\n break;\n }\n m.translate(A, R, 0);\n }, Ba.prototype.buildColor = function(f) {\n return \"rgb(\" + Math.round(f[0] * 255) + \",\" + Math.round(f[1] * 255) + \",\" + Math.round(f[2] * 255) + \")\";\n }, Ba.prototype.emptyProp = new cm(), Ba.prototype.destroy = function() {\n };\n var bF = {\n shapes: []\n };\n function Ti(f, m, y) {\n this.textSpans = [], this.renderType = \"svg\", this.initElement(f, m, y);\n }\n d([to, $s, Cl, Hs, no, xl, Ba], Ti), Ti.prototype.createContent = function() {\n this.data.singleShape && !this.globalData.fontManager.chars && (this.textContainer = ie(\"text\"));\n }, Ti.prototype.buildTextContents = function(f) {\n for (var m = 0, y = f.length, A = [], R = \"\"; m < y; )\n f[m] === String.fromCharCode(13) || f[m] === String.fromCharCode(3) ? (A.push(R), R = \"\") : R += f[m], m += 1;\n return A.push(R), A;\n }, Ti.prototype.buildShapeData = function(f, m) {\n if (f.shapes && f.shapes.length) {\n var y = f.shapes[0];\n if (y.it) {\n var A = y.it[y.it.length - 1];\n A.s && (A.s.k[0] = m, A.s.k[1] = m);\n }\n }\n return f;\n }, Ti.prototype.buildNewText = function() {\n this.addDynamicProperty(this);\n var f, m, y = this.textProperty.currentData;\n this.renderedLetters = b(y ? y.l.length : 0), y.fc ? this.layerElement.setAttribute(\"fill\", this.buildColor(y.fc)) : this.layerElement.setAttribute(\"fill\", \"rgba(0,0,0,0)\"), y.sc && (this.layerElement.setAttribute(\"stroke\", this.buildColor(y.sc)), this.layerElement.setAttribute(\"stroke-width\", y.sw)), this.layerElement.setAttribute(\"font-size\", y.finalSize);\n var A = this.globalData.fontManager.getFontByName(y.f);\n if (A.fClass)\n this.layerElement.setAttribute(\"class\", A.fClass);\n else {\n this.layerElement.setAttribute(\"font-family\", A.fFamily);\n var R = y.fWeight, M = y.fStyle;\n this.layerElement.setAttribute(\"font-style\", M), this.layerElement.setAttribute(\"font-weight\", R);\n }\n this.layerElement.setAttribute(\"aria-label\", y.t);\n var Z = y.l || [], pe = !!this.globalData.fontManager.chars;\n m = Z.length;\n var te, me = this.mHelper, xe = \"\", Me = this.data.singleShape, ne = 0, ye = 0, Ee = !0, we = y.tr * 1e-3 * y.finalSize;\n if (Me && !pe && !y.sz) {\n var be = this.textContainer, ae = \"start\";\n switch (y.j) {\n case 1:\n ae = \"end\";\n break;\n case 2:\n ae = \"middle\";\n break;\n default:\n ae = \"start\";\n break;\n }\n be.setAttribute(\"text-anchor\", ae), be.setAttribute(\"letter-spacing\", we);\n var re = this.buildTextContents(y.finalText);\n for (m = re.length, ye = y.ps ? y.ps[1] + y.ascent : 0, f = 0; f < m; f += 1)\n te = this.textSpans[f].span || ie(\"tspan\"), te.textContent = re[f], te.setAttribute(\"x\", 0), te.setAttribute(\"y\", ye), te.style.display = \"inherit\", be.appendChild(te), this.textSpans[f] || (this.textSpans[f] = {\n span: null,\n glyph: null\n }), this.textSpans[f].span = te, ye += y.finalLineHeight;\n this.layerElement.appendChild(be);\n } else {\n var Y = this.textSpans.length, U;\n for (f = 0; f < m; f += 1) {\n if (this.textSpans[f] || (this.textSpans[f] = {\n span: null,\n childSpan: null,\n glyph: null\n }), !pe || !Me || f === 0) {\n if (te = Y > f ? this.textSpans[f].span : ie(pe ? \"g\" : \"text\"), Y <= f) {\n if (te.setAttribute(\"stroke-linecap\", \"butt\"), te.setAttribute(\"stroke-linejoin\", \"round\"), te.setAttribute(\"stroke-miterlimit\", \"4\"), this.textSpans[f].span = te, pe) {\n var J = ie(\"g\");\n te.appendChild(J), this.textSpans[f].childSpan = J;\n }\n this.textSpans[f].span = te, this.layerElement.appendChild(te);\n }\n te.style.display = \"inherit\";\n }\n if (me.reset(), Me && (Z[f].n && (ne = -we, ye += y.yOffset, ye += Ee ? 1 : 0, Ee = !1), this.applyTextPropertiesToMatrix(y, me, Z[f].line, ne, ye), ne += Z[f].l || 0, ne += we), pe) {\n U = this.globalData.fontManager.getCharData(y.finalText[f], A.fStyle, this.globalData.fontManager.getFontByName(y.f).fFamily);\n var oe;\n if (U.t === 1)\n oe = new El(U.data, this.globalData, this);\n else {\n var le = bF;\n U.data && U.data.shapes && (le = this.buildShapeData(U.data, y.finalSize)), oe = new er(le, this.globalData, this);\n }\n if (this.textSpans[f].glyph) {\n var fe = this.textSpans[f].glyph;\n this.textSpans[f].childSpan.removeChild(fe.layerElement), fe.destroy();\n }\n this.textSpans[f].glyph = oe, oe._debug = !0, oe.prepareFrame(0), oe.renderFrame(), this.textSpans[f].childSpan.appendChild(oe.layerElement), U.t === 1 && this.textSpans[f].childSpan.setAttribute(\"transform\", \"scale(\" + y.finalSize / 100 + \",\" + y.finalSize / 100 + \")\");\n } else\n Me && te.setAttribute(\"transform\", \"translate(\" + me.props[12] + \",\" + me.props[13] + \")\"), te.textContent = Z[f].val, te.setAttributeNS(\"http://www.w3.org/XML/1998/namespace\", \"xml:space\", \"preserve\");\n }\n Me && te && te.setAttribute(\"d\", xe);\n }\n for (; f < this.textSpans.length; )\n this.textSpans[f].span.style.display = \"none\", f += 1;\n this._sizeChanged = !0;\n }, Ti.prototype.sourceRectAtTime = function() {\n if (this.prepareFrame(this.comp.renderedFrame - this.data.st), this.renderInnerContent(), this._sizeChanged) {\n this._sizeChanged = !1;\n var f = this.layerElement.getBBox();\n this.bbox = {\n top: f.y,\n left: f.x,\n width: f.width,\n height: f.height\n };\n }\n return this.bbox;\n }, Ti.prototype.getValue = function() {\n var f, m = this.textSpans.length, y;\n for (this.renderedFrame = this.comp.renderedFrame, f = 0; f < m; f += 1)\n y = this.textSpans[f].glyph, y && (y.prepareFrame(this.comp.renderedFrame - this.data.st), y._mdf && (this._mdf = !0));\n }, Ti.prototype.renderInnerContent = function() {\n if ((!this.data.singleShape || this._mdf) && (this.textAnimator.getMeasures(this.textProperty.currentData, this.lettersChangedFlag), this.lettersChangedFlag || this.textAnimator.lettersChangedFlag)) {\n this._sizeChanged = !0;\n var f, m, y = this.textAnimator.renderedLetters, A = this.textProperty.currentData.l;\n m = A.length;\n var R, M, Z;\n for (f = 0; f < m; f += 1)\n A[f].n || (R = y[f], M = this.textSpans[f].span, Z = this.textSpans[f].glyph, Z && Z.renderFrame(), R._mdf.m && M.setAttribute(\"transform\", R.m), R._mdf.o && M.setAttribute(\"opacity\", R.o), R._mdf.sw && M.setAttribute(\"stroke-width\", R.sw), R._mdf.sc && M.setAttribute(\"stroke\", R.sc), R._mdf.fc && M.setAttribute(\"fill\", R.fc));\n }\n };\n function dm(f, m, y) {\n this.initElement(f, m, y);\n }\n d([Sl], dm), dm.prototype.createContent = function() {\n var f = ie(\"rect\");\n f.setAttribute(\"width\", this.data.sw), f.setAttribute(\"height\", this.data.sh), f.setAttribute(\"fill\", this.data.sc), this.layerElement.appendChild(f);\n };\n function ao(f, m, y) {\n this.initFrame(), this.initBaseData(f, m, y), this.initFrame(), this.initTransform(f, m, y), this.initHierarchy();\n }\n ao.prototype.prepareFrame = function(f) {\n this.prepareProperties(f, !0);\n }, ao.prototype.renderFrame = function() {\n }, ao.prototype.getBaseElement = function() {\n return null;\n }, ao.prototype.destroy = function() {\n }, ao.prototype.sourceRectAtTime = function() {\n }, ao.prototype.hide = function() {\n }, d([to, $s, Hs, no], ao);\n function dr() {\n }\n d([Pr], dr), dr.prototype.createNull = function(f) {\n return new ao(f, this.globalData, this);\n }, dr.prototype.createShape = function(f) {\n return new er(f, this.globalData, this);\n }, dr.prototype.createText = function(f) {\n return new Ti(f, this.globalData, this);\n }, dr.prototype.createImage = function(f) {\n return new Sl(f, this.globalData, this);\n }, dr.prototype.createSolid = function(f) {\n return new dm(f, this.globalData, this);\n }, dr.prototype.configAnimation = function(f) {\n this.svgElement.setAttribute(\"xmlns\", \"http://www.w3.org/2000/svg\"), this.svgElement.setAttribute(\"xmlns:xlink\", \"http://www.w3.org/1999/xlink\"), this.renderConfig.viewBoxSize ? this.svgElement.setAttribute(\"viewBox\", this.renderConfig.viewBoxSize) : this.svgElement.setAttribute(\"viewBox\", \"0 0 \" + f.w + \" \" + f.h), this.renderConfig.viewBoxOnly || (this.svgElement.setAttribute(\"width\", f.w), this.svgElement.setAttribute(\"height\", f.h), this.svgElement.style.width = \"100%\", this.svgElement.style.height = \"100%\", this.svgElement.style.transform = \"translate3d(0,0,0)\", this.svgElement.style.contentVisibility = this.renderConfig.contentVisibility), this.renderConfig.width && this.svgElement.setAttribute(\"width\", this.renderConfig.width), this.renderConfig.height && this.svgElement.setAttribute(\"height\", this.renderConfig.height), this.renderConfig.className && this.svgElement.setAttribute(\"class\", this.renderConfig.className), this.renderConfig.id && this.svgElement.setAttribute(\"id\", this.renderConfig.id), this.renderConfig.focusable !== void 0 && this.svgElement.setAttribute(\"focusable\", this.renderConfig.focusable), this.svgElement.setAttribute(\"preserveAspectRatio\", this.renderConfig.preserveAspectRatio), this.animationItem.wrapper.appendChild(this.svgElement);\n var m = this.globalData.defs;\n this.setupGlobalData(f, m), this.globalData.progressiveLoad = this.renderConfig.progressiveLoad, this.data = f;\n var y = ie(\"clipPath\"), A = ie(\"rect\");\n A.setAttribute(\"width\", f.w), A.setAttribute(\"height\", f.h), A.setAttribute(\"x\", 0), A.setAttribute(\"y\", 0);\n var R = T();\n y.setAttribute(\"id\", R), y.appendChild(A), this.layerElement.setAttribute(\"clip-path\", \"url(\" + l() + \"#\" + R + \")\"), m.appendChild(y), this.layers = f.layers, this.elements = b(f.layers.length);\n }, dr.prototype.destroy = function() {\n this.animationItem.wrapper && (this.animationItem.wrapper.innerText = \"\"), this.layerElement = null, this.globalData.defs = null;\n var f, m = this.layers ? this.layers.length : 0;\n for (f = 0; f < m; f += 1)\n this.elements[f] && this.elements[f].destroy();\n this.elements.length = 0, this.destroyed = !0, this.animationItem = null;\n }, dr.prototype.updateContainerSize = function() {\n }, dr.prototype.findIndexByInd = function(f) {\n var m = 0, y = this.layers.length;\n for (m = 0; m < y; m += 1)\n if (this.layers[m].ind === f)\n return m;\n return -1;\n }, dr.prototype.buildItem = function(f) {\n var m = this.elements;\n if (!(m[f] || this.layers[f].ty === 99)) {\n m[f] = !0;\n var y = this.createItem(this.layers[f]);\n if (m[f] = y, Te() && (this.layers[f].ty === 0 && this.globalData.projectInterface.registerComposition(y), y.initExpressions()), this.appendElementInPos(y, f), this.layers[f].tt) {\n var A = \"tp\" in this.layers[f] ? this.findIndexByInd(this.layers[f].tp) : f - 1;\n if (A === -1)\n return;\n if (!this.elements[A] || this.elements[A] === !0)\n this.buildItem(A), this.addPendingElement(y);\n else {\n var R = m[A], M = R.getMatte(this.layers[f].tt);\n y.setMatte(M);\n }\n }\n }\n }, dr.prototype.checkPendingElements = function() {\n for (; this.pendingElements.length; ) {\n var f = this.pendingElements.pop();\n if (f.checkParenting(), f.data.tt)\n for (var m = 0, y = this.elements.length; m < y; ) {\n if (this.elements[m] === f) {\n var A = \"tp\" in f.data ? this.findIndexByInd(f.data.tp) : m - 1, R = this.elements[A], M = R.getMatte(this.layers[m].tt);\n f.setMatte(M);\n break;\n }\n m += 1;\n }\n }\n }, dr.prototype.renderFrame = function(f) {\n if (!(this.renderedFrame === f || this.destroyed)) {\n f === null ? f = this.renderedFrame : this.renderedFrame = f, this.globalData.frameNum = f, this.globalData.frameId += 1, this.globalData.projectInterface.currentFrame = f, this.globalData._mdf = !1;\n var m, y = this.layers.length;\n for (this.completeLayers || this.checkLayers(f), m = y - 1; m >= 0; m -= 1)\n (this.completeLayers || this.elements[m]) && this.elements[m].prepareFrame(f - this.layers[m].st);\n if (this.globalData._mdf)\n for (m = 0; m < y; m += 1)\n (this.completeLayers || this.elements[m]) && this.elements[m].renderFrame();\n }\n }, dr.prototype.appendElementInPos = function(f, m) {\n var y = f.getBaseElement();\n if (y) {\n for (var A = 0, R; A < m; )\n this.elements[A] && this.elements[A] !== !0 && this.elements[A].getBaseElement() && (R = this.elements[A].getBaseElement()), A += 1;\n R ? this.layerElement.insertBefore(y, R) : this.layerElement.appendChild(y);\n }\n }, dr.prototype.hide = function() {\n this.layerElement.style.display = \"none\";\n }, dr.prototype.show = function() {\n this.layerElement.style.display = \"block\";\n };\n function Ai() {\n }\n d([to, $s, Hs, no, xl], Ai), Ai.prototype.initElement = function(f, m, y) {\n this.initFrame(), this.initBaseData(f, m, y), this.initTransform(f, m, y), this.initRenderable(), this.initHierarchy(), this.initRendererElement(), this.createContainerElements(), this.createRenderableComponents(), (this.data.xt || !m.progressiveLoad) && this.buildAllItems(), this.hide();\n }, Ai.prototype.prepareFrame = function(f) {\n if (this._mdf = !1, this.prepareRenderableFrame(f), this.prepareProperties(f, this.isInRange), !(!this.isInRange && !this.data.xt)) {\n if (this.tm._placeholder)\n this.renderedFrame = f / this.data.sr;\n else {\n var m = this.tm.v;\n m === this.data.op && (m = this.data.op - 1), this.renderedFrame = m;\n }\n var y, A = this.elements.length;\n for (this.completeLayers || this.checkLayers(this.renderedFrame), y = A - 1; y >= 0; y -= 1)\n (this.completeLayers || this.elements[y]) && (this.elements[y].prepareFrame(this.renderedFrame - this.layers[y].st), this.elements[y]._mdf && (this._mdf = !0));\n }\n }, Ai.prototype.renderInnerContent = function() {\n var f, m = this.layers.length;\n for (f = 0; f < m; f += 1)\n (this.completeLayers || this.elements[f]) && this.elements[f].renderFrame();\n }, Ai.prototype.setElements = function(f) {\n this.elements = f;\n }, Ai.prototype.getElements = function() {\n return this.elements;\n }, Ai.prototype.destroyElements = function() {\n var f, m = this.layers.length;\n for (f = 0; f < m; f += 1)\n this.elements[f] && this.elements[f].destroy();\n }, Ai.prototype.destroy = function() {\n this.destroyElements(), this.destroyBaseElement();\n };\n function El(f, m, y) {\n this.layers = f.layers, this.supports3d = !0, this.completeLayers = !1, this.pendingElements = [], this.elements = this.layers ? b(this.layers.length) : [], this.initElement(f, m, y), this.tm = f.tm ? Fe.getProp(this, f.tm, 0, m.frameRate, this) : {\n _placeholder: !0\n };\n }\n d([dr, Ai, Cl], El), El.prototype.createComp = function(f) {\n return new El(f, this.globalData, this);\n };\n function fm(f, m) {\n this.animationItem = f, this.layers = null, this.renderedFrame = -1, this.svgElement = ie(\"svg\");\n var y = \"\";\n if (m && m.title) {\n var A = ie(\"title\"), R = T();\n A.setAttribute(\"id\", R), A.textContent = m.title, this.svgElement.appendChild(A), y += R;\n }\n if (m && m.description) {\n var M = ie(\"desc\"), Z = T();\n M.setAttribute(\"id\", Z), M.textContent = m.description, this.svgElement.appendChild(M), y += \" \" + Z;\n }\n y && this.svgElement.setAttribute(\"aria-labelledby\", y);\n var pe = ie(\"defs\");\n this.svgElement.appendChild(pe);\n var te = ie(\"g\");\n this.svgElement.appendChild(te), this.layerElement = te, this.renderConfig = {\n preserveAspectRatio: m && m.preserveAspectRatio || \"xMidYMid meet\",\n imagePreserveAspectRatio: m && m.imagePreserveAspectRatio || \"xMidYMid slice\",\n contentVisibility: m && m.contentVisibility || \"visible\",\n progressiveLoad: m && m.progressiveLoad || !1,\n hideOnTransparent: !(m && m.hideOnTransparent === !1),\n viewBoxOnly: m && m.viewBoxOnly || !1,\n viewBoxSize: m && m.viewBoxSize || !1,\n className: m && m.className || \"\",\n id: m && m.id || \"\",\n focusable: m && m.focusable,\n filterSize: {\n width: m && m.filterSize && m.filterSize.width || \"100%\",\n height: m && m.filterSize && m.filterSize.height || \"100%\",\n x: m && m.filterSize && m.filterSize.x || \"0%\",\n y: m && m.filterSize && m.filterSize.y || \"0%\"\n },\n width: m && m.width,\n height: m && m.height,\n runExpressions: !m || m.runExpressions === void 0 || m.runExpressions\n }, this.globalData = {\n _mdf: !1,\n frameNum: -1,\n defs: pe,\n renderConfig: this.renderConfig\n }, this.elements = [], this.pendingElements = [], this.destroyed = !1, this.rendererType = \"svg\";\n }\n return d([dr], fm), fm.prototype.createComp = function(f) {\n return new El(f, this.globalData, this);\n }, qe(\"svg\", fm), xt.registerModifier(\"tm\", Pn), xt.registerModifier(\"pb\", Tr), xt.registerModifier(\"rp\", gt), xt.registerModifier(\"rd\", Jt), xt.registerModifier(\"zz\", ml), xt.registerModifier(\"op\", gl), _t;\n });\n})(R1, R1.exports);\nvar pZ = R1.exports, hZ = function e(t, n) {\n if (t === n)\n return !0;\n if (t && n && typeof t == \"object\" && typeof n == \"object\") {\n if (t.constructor !== n.constructor)\n return !1;\n var r, a, i;\n if (Array.isArray(t)) {\n if (r = t.length, r != n.length)\n return !1;\n for (a = r; a-- !== 0; )\n if (!e(t[a], n[a]))\n return !1;\n return !0;\n }\n if (t instanceof Map && n instanceof Map) {\n if (t.size !== n.size)\n return !1;\n for (a of t.entries())\n if (!n.has(a[0]))\n return !1;\n for (a of t.entries())\n if (!e(a[1], n.get(a[0])))\n return !1;\n return !0;\n }\n if (t instanceof Set && n instanceof Set) {\n if (t.size !== n.size)\n return !1;\n for (a of t.entries())\n if (!n.has(a[0]))\n return !1;\n return !0;\n }\n if (ArrayBuffer.isView(t) && ArrayBuffer.isView(n)) {\n if (r = t.length, r != n.length)\n return !1;\n for (a = r; a-- !== 0; )\n if (t[a] !== n[a])\n return !1;\n return !0;\n }\n if (t.constructor === RegExp)\n return t.source === n.source && t.flags === n.flags;\n if (t.valueOf !== Object.prototype.valueOf)\n return t.valueOf() === n.valueOf();\n if (t.toString !== Object.prototype.toString)\n return t.toString() === n.toString();\n if (i = Object.keys(t), r = i.length, r !== Object.keys(n).length)\n return !1;\n for (a = r; a-- !== 0; )\n if (!Object.prototype.hasOwnProperty.call(n, i[a]))\n return !1;\n for (a = r; a-- !== 0; ) {\n var o = i[a];\n if (!(o === \"_owner\" && t.$$typeof) && !e(t[o], n[o]))\n return !1;\n }\n return !0;\n }\n return t !== t && n !== n;\n}, mZ = gZ;\nfunction Tu(e) {\n return e instanceof Buffer ? Buffer.from(e) : new e.constructor(e.buffer.slice(), e.byteOffset, e.length);\n}\nfunction gZ(e) {\n if (e = e || {}, e.circles)\n return vZ(e);\n return e.proto ? r : n;\n function t(a, i) {\n for (var o = Object.keys(a), s = new Array(o.length), u = 0; u < o.length; u++) {\n var l = o[u], c = a[l];\n typeof c != \"object\" || c === null ? s[l] = c : c instanceof Date ? s[l] = new Date(c) : ArrayBuffer.isView(c) ? s[l] = Tu(c) : s[l] = i(c);\n }\n return s;\n }\n function n(a) {\n if (typeof a != \"object\" || a === null)\n return a;\n if (a instanceof Date)\n return new Date(a);\n if (Array.isArray(a))\n return t(a, n);\n if (a instanceof Map)\n return new Map(t(Array.from(a), n));\n if (a instanceof Set)\n return new Set(t(Array.from(a), n));\n var i = {};\n for (var o in a)\n if (Object.hasOwnProperty.call(a, o) !== !1) {\n var s = a[o];\n typeof s != \"object\" || s === null ? i[o] = s : s instanceof Date ? i[o] = new Date(s) : s instanceof Map ? i[o] = new Map(t(Array.from(s), n)) : s instanceof Set ? i[o] = new Set(t(Array.from(s), n)) : ArrayBuffer.isView(s) ? i[o] = Tu(s) : i[o] = n(s);\n }\n return i;\n }\n function r(a) {\n if (typeof a != \"object\" || a === null)\n return a;\n if (a instanceof Date)\n return new Date(a);\n if (Array.isArray(a))\n return t(a, r);\n if (a instanceof Map)\n return new Map(t(Array.from(a), r));\n if (a instanceof Set)\n return new Set(t(Array.from(a), r));\n var i = {};\n for (var o in a) {\n var s = a[o];\n typeof s != \"object\" || s === null ? i[o] = s : s instanceof Date ? i[o] = new Date(s) : s instanceof Map ? i[o] = new Map(t(Array.from(s), r)) : s instanceof Set ? i[o] = new Set(t(Array.from(s), r)) : ArrayBuffer.isView(s) ? i[o] = Tu(s) : i[o] = r(s);\n }\n return i;\n }\n}\nfunction vZ(e) {\n var t = [], n = [];\n return e.proto ? i : a;\n function r(o, s) {\n for (var u = Object.keys(o), l = new Array(u.length), c = 0; c < u.length; c++) {\n var d = u[c], p = o[d];\n if (typeof p != \"object\" || p === null)\n l[d] = p;\n else if (p instanceof Date)\n l[d] = new Date(p);\n else if (ArrayBuffer.isView(p))\n l[d] = Tu(p);\n else {\n var g = t.indexOf(p);\n g !== -1 ? l[d] = n[g] : l[d] = s(p);\n }\n }\n return l;\n }\n function a(o) {\n if (typeof o != \"object\" || o === null)\n return o;\n if (o instanceof Date)\n return new Date(o);\n if (Array.isArray(o))\n return r(o, a);\n if (o instanceof Map)\n return new Map(r(Array.from(o), a));\n if (o instanceof Set)\n return new Set(r(Array.from(o), a));\n var s = {};\n t.push(o), n.push(s);\n for (var u in o)\n if (Object.hasOwnProperty.call(o, u) !== !1) {\n var l = o[u];\n if (typeof l != \"object\" || l === null)\n s[u] = l;\n else if (l instanceof Date)\n s[u] = new Date(l);\n else if (l instanceof Map)\n s[u] = new Map(r(Array.from(l), a));\n else if (l instanceof Set)\n s[u] = new Set(r(Array.from(l), a));\n else if (ArrayBuffer.isView(l))\n s[u] = Tu(l);\n else {\n var c = t.indexOf(l);\n c !== -1 ? s[u] = n[c] : s[u] = a(l);\n }\n }\n return t.pop(), n.pop(), s;\n }\n function i(o) {\n if (typeof o != \"object\" || o === null)\n return o;\n if (o instanceof Date)\n return new Date(o);\n if (Array.isArray(o))\n return r(o, i);\n if (o instanceof Map)\n return new Map(r(Array.from(o), i));\n if (o instanceof Set)\n return new Set(r(Array.from(o), i));\n var s = {};\n t.push(o), n.push(s);\n for (var u in o) {\n var l = o[u];\n if (typeof l != \"object\" || l === null)\n s[u] = l;\n else if (l instanceof Date)\n s[u] = new Date(l);\n else if (l instanceof Map)\n s[u] = new Map(r(Array.from(l), i));\n else if (l instanceof Set)\n s[u] = new Set(r(Array.from(l), i));\n else if (ArrayBuffer.isView(l))\n s[u] = Tu(l);\n else {\n var c = t.indexOf(l);\n c !== -1 ? s[u] = n[c] : s[u] = i(l);\n }\n }\n return t.pop(), n.pop(), s;\n }\n}\nvar bZ = mZ();\nfunction jp(e) {\n return e && typeof e == \"object\" && \"default\" in e ? e.default : e;\n}\nvar yZ = jp(pZ), En = vt, CZ = jp(En), AS = jp(hZ), NS = jp(bZ);\nfunction B1() {\n return B1 = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n }, B1.apply(this, arguments);\n}\nfunction xZ(e, t) {\n if (e == null)\n return {};\n var n = {}, r = Object.keys(e), a, i;\n for (i = 0; i < r.length; i++)\n a = r[i], !(t.indexOf(a) >= 0) && (n[a] = e[a]);\n return n;\n}\nfunction Pb(e, t) {\n return t = { exports: {} }, e(t, t.exports), t.exports;\n}\n/** @license React v16.13.1\n * react-is.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\nvar _r = typeof Symbol == \"function\" && Symbol.for, Mb = _r ? Symbol.for(\"react.element\") : 60103, Rb = _r ? Symbol.for(\"react.portal\") : 60106, $p = _r ? Symbol.for(\"react.fragment\") : 60107, Hp = _r ? Symbol.for(\"react.strict_mode\") : 60108, Vp = _r ? Symbol.for(\"react.profiler\") : 60114, zp = _r ? Symbol.for(\"react.provider\") : 60109, qp = _r ? Symbol.for(\"react.context\") : 60110, Bb = _r ? Symbol.for(\"react.async_mode\") : 60111, Gp = _r ? Symbol.for(\"react.concurrent_mode\") : 60111, Up = _r ? Symbol.for(\"react.forward_ref\") : 60112, Wp = _r ? Symbol.for(\"react.suspense\") : 60113, SZ = _r ? Symbol.for(\"react.suspense_list\") : 60120, Kp = _r ? Symbol.for(\"react.memo\") : 60115, Yp = _r ? Symbol.for(\"react.lazy\") : 60116, _Z = _r ? Symbol.for(\"react.block\") : 60121, EZ = _r ? Symbol.for(\"react.fundamental\") : 60117, wZ = _r ? Symbol.for(\"react.responder\") : 60118, TZ = _r ? Symbol.for(\"react.scope\") : 60119;\nfunction Ea(e) {\n if (typeof e == \"object\" && e !== null) {\n var t = e.$$typeof;\n switch (t) {\n case Mb:\n switch (e = e.type, e) {\n case Bb:\n case Gp:\n case $p:\n case Vp:\n case Hp:\n case Wp:\n return e;\n default:\n switch (e = e && e.$$typeof, e) {\n case qp:\n case Up:\n case Yp:\n case Kp:\n case zp:\n return e;\n default:\n return t;\n }\n }\n case Rb:\n return t;\n }\n }\n}\nfunction AI(e) {\n return Ea(e) === Gp;\n}\nvar AZ = Bb, NZ = Gp, OZ = qp, LZ = zp, kZ = Mb, IZ = Up, DZ = $p, PZ = Yp, MZ = Kp, RZ = Rb, BZ = Vp, FZ = Hp, jZ = Wp, $Z = function(e) {\n return AI(e) || Ea(e) === Bb;\n}, HZ = AI, VZ = function(e) {\n return Ea(e) === qp;\n}, zZ = function(e) {\n return Ea(e) === zp;\n}, qZ = function(e) {\n return typeof e == \"object\" && e !== null && e.$$typeof === Mb;\n}, GZ = function(e) {\n return Ea(e) === Up;\n}, UZ = function(e) {\n return Ea(e) === $p;\n}, WZ = function(e) {\n return Ea(e) === Yp;\n}, KZ = function(e) {\n return Ea(e) === Kp;\n}, YZ = function(e) {\n return Ea(e) === Rb;\n}, XZ = function(e) {\n return Ea(e) === Vp;\n}, ZZ = function(e) {\n return Ea(e) === Hp;\n}, QZ = function(e) {\n return Ea(e) === Wp;\n}, JZ = function(e) {\n return typeof e == \"string\" || typeof e == \"function\" || e === $p || e === Gp || e === Vp || e === Hp || e === Wp || e === SZ || typeof e == \"object\" && e !== null && (e.$$typeof === Yp || e.$$typeof === Kp || e.$$typeof === zp || e.$$typeof === qp || e.$$typeof === Up || e.$$typeof === EZ || e.$$typeof === wZ || e.$$typeof === TZ || e.$$typeof === _Z);\n}, eQ = Ea, tQ = {\n AsyncMode: AZ,\n ConcurrentMode: NZ,\n ContextConsumer: OZ,\n ContextProvider: LZ,\n Element: kZ,\n ForwardRef: IZ,\n Fragment: DZ,\n Lazy: PZ,\n Memo: MZ,\n Portal: RZ,\n Profiler: BZ,\n StrictMode: FZ,\n Suspense: jZ,\n isAsyncMode: $Z,\n isConcurrentMode: HZ,\n isContextConsumer: VZ,\n isContextProvider: zZ,\n isElement: qZ,\n isForwardRef: GZ,\n isFragment: UZ,\n isLazy: WZ,\n isMemo: KZ,\n isPortal: YZ,\n isProfiler: XZ,\n isStrictMode: ZZ,\n isSuspense: QZ,\n isValidElementType: JZ,\n typeOf: eQ\n};\nPb(function(e, t) {\n});\nPb(function(e) {\n e.exports = tQ;\n});\n/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\nvar OS = Object.getOwnPropertySymbols, nQ = Object.prototype.hasOwnProperty, rQ = Object.prototype.propertyIsEnumerable;\nfunction aQ(e) {\n if (e == null)\n throw new TypeError(\"Object.assign cannot be called with null or undefined\");\n return Object(e);\n}\nfunction iQ() {\n try {\n if (!Object.assign)\n return !1;\n var e = new String(\"abc\");\n if (e[5] = \"de\", Object.getOwnPropertyNames(e)[0] === \"5\")\n return !1;\n for (var t = {}, n = 0; n < 10; n++)\n t[\"_\" + String.fromCharCode(n)] = n;\n var r = Object.getOwnPropertyNames(t).map(function(i) {\n return t[i];\n });\n if (r.join(\"\") !== \"0123456789\")\n return !1;\n var a = {};\n return \"abcdefghijklmnopqrst\".split(\"\").forEach(function(i) {\n a[i] = i;\n }), Object.keys(Object.assign({}, a)).join(\"\") === \"abcdefghijklmnopqrst\";\n } catch {\n return !1;\n }\n}\niQ();\nvar oQ = \"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\", sQ = oQ;\nFunction.call.bind(Object.prototype.hasOwnProperty);\nfunction NI() {\n}\nfunction OI() {\n}\nOI.resetWarningCache = NI;\nvar uQ = function() {\n function e(r, a, i, o, s, u) {\n if (u !== sQ) {\n var l = new Error(\n \"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types\"\n );\n throw l.name = \"Invariant Violation\", l;\n }\n }\n e.isRequired = e;\n function t() {\n return e;\n }\n var n = {\n array: e,\n bigint: e,\n bool: e,\n func: e,\n number: e,\n object: e,\n string: e,\n symbol: e,\n any: e,\n arrayOf: t,\n element: e,\n elementType: e,\n instanceOf: t,\n node: e,\n objectOf: t,\n oneOf: t,\n oneOfType: t,\n shape: t,\n exact: t,\n checkPropTypes: OI,\n resetWarningCache: NI\n };\n return n.PropTypes = n, n;\n}, Yn = Pb(function(e) {\n e.exports = uQ();\n}), lQ = {\n animationData: Yn.object,\n path: Yn.string,\n play: Yn.bool,\n goTo: Yn.number,\n speed: Yn.number,\n direction: Yn.number,\n loop: Yn.oneOfType([Yn.number, Yn.bool]),\n useSubframes: Yn.bool,\n segments: Yn.oneOfType([Yn.arrayOf(Yn.number), Yn.bool]),\n rendererSettings: Yn.object,\n renderer: Yn.string,\n audioFactory: Yn.func,\n onComplete: Yn.func,\n onLoopComplete: Yn.func,\n onEnterFrame: Yn.func,\n onSegmentStart: Yn.func\n}, cQ = {\n animationData: null,\n path: null,\n play: null,\n segments: null,\n goTo: null,\n useSubframes: !0,\n speed: 1,\n direction: 1,\n loop: !0,\n rendererSettings: {},\n renderer: \"svg\",\n audioFactory: null,\n onLoad: function() {\n },\n onComplete: function() {\n },\n onLoopComplete: function() {\n },\n onEnterFrame: function() {\n },\n onSegmentStart: function() {\n }\n}, dQ = function(t) {\n var n = t.loadAnimation, r = En.memo(En.forwardRef(function(a, i) {\n var o = a.animationData, s = a.path, u = a.play, l = a.speed, c = a.direction, d = a.segments, p = a.goTo, g = a.useSubframes, v = a.renderer, b = a.loop, C = a.rendererSettings, w = a.audioFactory, _ = a.onLoad, x = a.onComplete, S = a.onLoopComplete, E = a.onEnterFrame, N = a.onSegmentStart, P = xZ(a, [\"animationData\", \"path\", \"play\", \"speed\", \"direction\", \"segments\", \"goTo\", \"useSubframes\", \"renderer\", \"loop\", \"rendererSettings\", \"audioFactory\", \"onLoad\", \"onComplete\", \"onLoopComplete\", \"onEnterFrame\", \"onSegmentStart\"]), H = En.useRef(), k = En.useRef(), Q = En.useState(!1), I = Q[0], G = Q[1], $ = En.useState(d), z = $[0], B = $[1];\n En.useEffect(function() {\n AS(z, d) || B(d);\n }, [d, z]);\n var O = En.useState(C), D = O[0], T = O[1];\n En.useEffect(function() {\n AS(D, C) || T(C);\n }, [C, D]), En.useEffect(function() {\n return function() {\n return k.current.removeEventListener(\"complete\", x);\n };\n }, [x]), En.useEffect(function() {\n return function() {\n return k.current.removeEventListener(\"loopComplete\", S);\n };\n }, [S]), En.useEffect(function() {\n return function() {\n return k.current.removeEventListener(\"enterFrame\", E);\n };\n }, [E]), En.useEffect(function() {\n return function() {\n return k.current.removeEventListener(\"segmentStart\", N);\n };\n }, [N]), En.useEffect(function() {\n return function() {\n return k.current.removeEventListener(\"DOMLoaded\", _);\n };\n }, [_]);\n var j = En.useCallback(function(L) {\n k.current = L, i && (i.current = L);\n }, []);\n En.useEffect(function() {\n function L() {\n return o == null || typeof o != \"object\" ? o : typeof o.default == \"object\" ? NS(o.default) : NS(o);\n }\n var q = n({\n animationData: L(),\n path: s,\n container: H.current,\n renderer: v,\n loop: !1,\n autoplay: !1,\n rendererSettings: D,\n audioFactory: w\n });\n j(q);\n var W = function() {\n return G(!0);\n };\n return k.current.addEventListener(\"DOMLoaded\", W), function() {\n k.current.removeEventListener(\"DOMLoaded\", W), G(!1), k.current.destroy(), j(void 0);\n };\n }, [b, v, D, o, s, w, j]), En.useEffect(function() {\n k.current.addEventListener(\"DOMLoaded\", _);\n }, [_]), En.useEffect(function() {\n k.current.addEventListener(\"complete\", x);\n }, [x]), En.useEffect(function() {\n k.current.addEventListener(\"loopComplete\", S);\n }, [S]), En.useEffect(function() {\n k.current.addEventListener(\"enterFrame\", E);\n }, [E]), En.useEffect(function() {\n k.current.addEventListener(\"segmentStart\", N);\n }, [N]), En.useEffect(function() {\n I && (k.current.loop = b);\n }, [I, b]);\n var F = En.useRef(!1);\n return En.useEffect(function() {\n if (!I)\n return;\n function L(de) {\n k.current.goToAndPlay(de, !0), k.current.setDirection(c);\n }\n if (u === !0) {\n var q = !0;\n if (z) {\n if (k.current.playSegments(z, q), F.current = !0, c === -1) {\n var W = z[1];\n L(W);\n }\n } else if (F.current && k.current.resetSegments(q), F.current = !1, c === -1) {\n var X = k.current.getDuration(!0);\n L(X);\n } else\n k.current.play();\n } else\n u === !1 && k.current.pause();\n }, [u, z, I, c]), En.useEffect(function() {\n I && (Number.isNaN(l) || k.current.setSpeed(l));\n }, [l, I]), En.useEffect(function() {\n I && k.current.setDirection(c);\n }, [c, I]), En.useEffect(function() {\n if (I && p != null) {\n var L = !0;\n u ? k.current.goToAndPlay(p, L) : k.current.goToAndStop(p, L);\n }\n }, [p, u, I]), En.useEffect(function() {\n k.current.setSubframe && k.current.setSubframe(g);\n }, [g]), /* @__PURE__ */ CZ.createElement(\"div\", B1({}, P, {\n ref: H\n }));\n }));\n return r.propTypes = lQ, r.defaultProps = cQ, r;\n}, fQ = dQ(yZ), pQ = fQ;\nconst hQ = /* @__PURE__ */ dp(pQ), mQ = \"/lottie-data/graphic-left-curve-large/data.json\", gQ = \"/lottie-data/graphic-left-curve-medium/data.json\", vQ = \"/lottie-data/graphic-left-curve-small/data.json\", bQ = \"/lottie-data/graphic-left-large/data.json\", yQ = \"/lottie-data/graphic-left-mini/data.json\", CQ = \"/lottie-data/graphic-left-small/data.json\", xQ = \"/lottie-data/graphic-overlap-01/data.json\", SQ = \"/lottie-data/graphic-overlap-02/data.json\", _Q = \"/lottie-data/graphic-overlap-03/data.json\", EQ = \"/lottie-data/graphic-overlap-04/data.json\", wQ = \"/lottie-data/graphic-overlap-05/data.json\", TQ = \"/lottie-data/graphic-overlap-06/data.json\", AQ = \"/lottie-data/graphic-overlap-07/data.json\", NQ = \"/lottie-data/graphic-right-curve-large/data.json\", OQ = \"/lottie-data/graphic-right-curve-mini/data.json\", LQ = \"/lottie-data/graphic-right-curve-small/data.json\", kQ = \"/lottie-data/graphic-right-large/data.json\", IQ = \"/lottie-data/graphic-right-small/data.json\", DQ = \"/lottie-data/hero-split-01-large-upper/data.json\", PQ = \"/lottie-data/hero-split-01-medium-upper/data.json\", MQ = \"/lottie-data/hero-split-02-large-upper/data.json\", RQ = \"/lottie-data/hero-split-02-medium-upper/data.json\", BQ = \"/lottie-data/hero-tall-01/data.json\", FQ = \"/lottie-data/hero-tall-02/data.json\", jQ = \"/lottie-data/split-left-large/data.json\", $Q = \"/lottie-data/split-left-small/data.json\", HQ = \"/lottie-data/split-right-large/data.json\", VQ = \"/lottie-data/split-right-small/data.json\", zQ = \"/lottie-data/split-tall-01/data.json\", qQ = \"/lottie-data/split-tall-02/data.json\", GQ = \"/lottie-data-compact/graphic-left-curve-large/data.json\", UQ = \"/lottie-data-compact/graphic-left-curve-medium/data.json\", WQ = \"/lottie-data-compact/graphic-left-curve-small/data.json\", KQ = \"/lottie-data-compact/graphic-left-large/data.json\", YQ = \"/lottie-data-compact/graphic-left-mini/data.json\", XQ = \"/lottie-data-compact/graphic-left-small/data.json\", ZQ = \"/lottie-data-compact/graphic-right-curve-mini/data.json\", QQ = \"/lottie-data-compact/graphic-right-curve-small/data.json\", JQ = \"/lottie-data-compact/graphic-right-large/data.json\", eJ = \"/lottie-data-compact/hero-split-01-large-upper/data.json\", tJ = \"/lottie-data-compact/hero-split-01-medium-upper/data.json\", nJ = \"/lottie-data-compact/hero-split-01-xlarge-upper/data.json\", rJ = \"/lottie-data-compact/hero-split-02-large-upper/data.json\", aJ = \"/lottie-data-compact/hero-split-02-medium-upper/data.json\", iJ = \"/lottie-data-compact/hero-split-02-xlarge-upper/data.json\", oJ = \"/lottie-data-compact/hero-tall-02/data.json\", sJ = \"/lottie-data-compact/split-left-large/data.json\", uJ = \"/lottie-data-compact/split-left-medium/data.json\", lJ = \"/lottie-data-compact/split-left-small/data.json\", cJ = \"/lottie-data-compact/split-right-large/data.json\", dJ = \"/lottie-data-compact/split-right-medium/data.json\", xn = {\n GraphicLeftCurveLarge: mQ,\n GraphicLeftCurveMedium: gQ,\n GraphicLeftCurveSmall: vQ,\n GraphicLeftLarge: bQ,\n GraphicLeftSmall: CQ,\n GraphicLeftMini: yQ,\n GraphicOverlap01: xQ,\n GraphicOverlap02: SQ,\n GraphicOverlap03: _Q,\n GraphicOverlap04: EQ,\n GraphicOverlap05: wQ,\n GraphicOverlap06: TQ,\n GraphicOverlap07: AQ,\n GraphicRightCurveLarge: NQ,\n GraphicRightCurveMini: OQ,\n GraphicRightCurveSmall: LQ,\n GraphicRightLarge: kQ,\n GraphicRightSmall: IQ,\n HeroSplit01Medium: PQ,\n HeroSplit01Large: DQ,\n HeroSplit02MediumUpper: RQ,\n HeroSplit02LargeUpper: MQ,\n HeroTall01: BQ,\n HeroTall02: FQ,\n SplitRightLarge: HQ,\n SplitRightSmall: VQ,\n SplitLeftLarge: jQ,\n SplitLeftSmall: $Q,\n SplitTall01: zQ,\n SplitTall02: qQ\n}, Hn = {\n GraphicLeftCurveLarge: GQ,\n GraphicLeftCurveMedium: UQ,\n GraphicLeftCurveSmall: WQ,\n GraphicLeftLarge: KQ,\n GraphicLeftSmall: XQ,\n GraphicLeftMini: YQ,\n GraphicRightCurveMini: ZQ,\n GraphicRightCurveSmall: QQ,\n GraphicRightLarge: JQ,\n HeroSplit01Medium: tJ,\n HeroSplit01Large: eJ,\n HeroSplit02MediumUpper: aJ,\n HeroSplit02LargeUpper: rJ,\n HeroTall02: oJ,\n SplitRightLarge: cJ,\n SplitRightMedium: dJ,\n SplitLeftSmall: lJ,\n SplitLeftMedium: uJ,\n SplitLeftLarge: sJ,\n HeroSplit01XLargeUpper: nJ,\n HeroSplit02XLargeUpper: iJ\n}, fJ = \"https://www.paypalobjects.com/marketing/pp-com-components/graphic-lottie\", Pt = {\n gold: Zo.sysColorFeaturedMain,\n blue_500: Zo.sysColorSecondaryMain,\n blue_600: Zo.sysColorPrimaryMain,\n blue_700: Zo.sysColorPrimaryMainActive,\n white: Zo.sysColorBackgroundSurface,\n neutral_100: Zo.sysColorBackgroundMain,\n slate: Zo.sysColorSystemMain\n}, pJ = {\n GoldOnWhite: {\n primary: Pt.gold,\n secondary: Pt.blue_600,\n overlap: Pt.blue_500,\n background: Pt.white\n },\n GoldBlue500OnWhite: {\n primary: Pt.gold,\n secondary: Pt.blue_500,\n overlap: Pt.blue_600,\n background: Pt.white\n },\n Blue500OnWhite: {\n primary: Pt.blue_500,\n secondary: Pt.gold,\n overlap: Pt.blue_600,\n background: Pt.white\n },\n Blue600OnWhite: {\n primary: Pt.blue_600,\n secondary: Pt.gold,\n overlap: Pt.blue_500,\n background: Pt.white\n },\n Blue500Blue600OnWhite: {\n primary: Pt.blue_500,\n secondary: Pt.blue_600,\n overlap: Pt.blue_700,\n background: Pt.white\n },\n Blue600Blue500OnWhite: {\n primary: Pt.blue_600,\n secondary: Pt.blue_700,\n overlap: Pt.blue_500,\n background: Pt.white\n },\n WhiteOnBlue600: {\n primary: Pt.white,\n secondary: Pt.gold,\n overlap: Pt.blue_500,\n background: Pt.blue_600\n },\n GoldOnNeutral100: {\n primary: Pt.gold,\n secondary: Pt.blue_600,\n overlap: Pt.blue_500,\n background: Pt.neutral_100\n },\n GoldBlue500OnNeutral100: {\n primary: Pt.gold,\n secondary: Pt.blue_500,\n overlap: Pt.blue_600,\n background: Pt.neutral_100\n },\n Blue500OnNeutral100: {\n primary: Pt.blue_500,\n secondary: Pt.gold,\n overlap: Pt.blue_600,\n background: Pt.neutral_100\n },\n Blue600OnNeutral100: {\n primary: Pt.blue_600,\n secondary: Pt.gold,\n overlap: Pt.blue_500,\n background: Pt.neutral_100\n },\n Blue500Blue600OnNeutral100: {\n primary: Pt.blue_500,\n secondary: Pt.blue_600,\n overlap: Pt.blue_700,\n background: Pt.neutral_100\n },\n Blue600Blue500OnNeutral100: {\n primary: Pt.blue_600,\n secondary: Pt.blue_700,\n overlap: Pt.blue_500,\n background: Pt.neutral_100\n },\n SlateOnWhite: {\n primary: Pt.slate,\n secondary: Pt.blue_600,\n overlap: Pt.blue_500,\n background: Pt.white\n }\n}, LI = {\n HeroSplit01Large: {\n lottie: xn.HeroSplit01Large,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit01Medium: {\n lottie: xn.HeroSplit01Medium,\n graphicHeight: \"75%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit02LargeUpper: {\n lottie: xn.HeroSplit02LargeUpper,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit02MediumUpper: {\n lottie: xn.HeroSplit02MediumUpper,\n graphicHeight: \"75%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit01XLargeUpper: {\n lottie: Hn.HeroSplit01XLargeUpper,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit02XLargeUpper: {\n lottie: Hn.HeroSplit02XLargeUpper,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n /**\n * @deprecated discontinue use of this graphic version\n */\n HeroTall01: {\n lottie: xn.HeroTall01,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\"\n },\n /**\n * @deprecated discontinue use of this graphic version\n */\n HeroTall02: {\n lottie: xn.HeroTall02,\n graphicHeight: \"100%\",\n graphicOffset: \"12%\"\n },\n SplitRightLarge: {\n lottie: xn.SplitRightLarge,\n graphicHeight: \"75%\",\n graphicOffset: \"-15.8%\",\n ratioType: \"meet\",\n canUseImage: !0\n // can have a background image\n },\n SplitRightMedium: {\n // Note: no regular version, reusing compact for both\n lottie: Hn.SplitRightMedium,\n ratioType: \"meet\",\n canUseImage: !0,\n // can have a background image\n svgRatio: 3.66666667\n },\n SplitRightSmall: {\n lottie: xn.SplitRightSmall,\n graphicHeight: \"75%\",\n graphicOffset: \"-14.3%\",\n canUseImage: !0\n // can have a background image\n },\n SplitLeftLarge: {\n lottie: xn.SplitLeftLarge,\n graphicHeight: \"75%\",\n graphicOffset: \"14.3%\",\n ratioType: \"meet\",\n canUseImage: !0\n // can have a background image\n },\n SplitLeftMedium: {\n // Note: no regular version, reusing compact for both\n lottie: Hn.SplitLeftMedium,\n ratioType: \"meet\",\n canUseImage: !0,\n // can have a background image\n svgRatio: 3.66666667\n },\n SplitLeftSmall: {\n lottie: xn.SplitLeftSmall,\n graphicHeight: \"75%\",\n graphicOffset: \"14.3%\",\n canUseImage: !0\n // can have a background image\n },\n GraphicLeftCurveLarge: {\n lottie: xn.GraphicLeftCurveLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicLeftCurveMedium: {\n lottie: xn.GraphicLeftCurveMedium,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicLeftCurveSmall: {\n lottie: xn.GraphicLeftCurveSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicLeftLarge: {\n lottie: xn.GraphicLeftLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"21.45%\"\n },\n GraphicLeftSmall: {\n lottie: xn.GraphicLeftSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"21.45%\"\n },\n GraphicLeftMini: {\n lottie: xn.GraphicLeftMini,\n graphicHeight: \"100%\",\n graphicOffset: \"21.45%\"\n },\n GraphicOverlap01: {\n lottie: xn.GraphicOverlap01,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicOverlap02: {\n lottie: xn.GraphicOverlap02,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicOverlap03: {\n lottie: xn.GraphicOverlap03,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicOverlap04: {\n lottie: xn.GraphicOverlap04,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicOverlap05: {\n lottie: xn.GraphicOverlap05,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicOverlap06: {\n lottie: xn.GraphicOverlap06,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicOverlap07: {\n lottie: xn.GraphicOverlap07,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicRightCurveLarge: {\n lottie: xn.GraphicRightCurveLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"-13.3%\"\n },\n GraphicRightCurveMini: {\n lottie: xn.GraphicRightCurveMini,\n graphicHeight: \"100%\",\n graphicOffset: \"-13.3%\"\n },\n GraphicRightCurveSmall: {\n lottie: xn.GraphicRightCurveSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"-17.25%\"\n },\n GraphicRightLarge: {\n lottie: xn.GraphicRightLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"-21.45%\"\n },\n GraphicRightSmall: {\n lottie: xn.GraphicRightSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"-21.45%\"\n },\n /**\n * @deprecated discontinue use of this graphic version\n */\n SplitTall01: {\n lottie: xn.SplitTall01,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\",\n canUseImage: !0\n // can have a background image\n },\n /**\n * @deprecated discontinue use of this graphic version\n */\n SplitTall02: {\n lottie: xn.SplitTall02,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\",\n canUseImage: !0\n // can have a background image\n }\n}, hJ = {\n ...LI,\n GraphicLeftCurveLarge: {\n lottie: Hn.GraphicLeftCurveLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicLeftCurveMedium: {\n lottie: Hn.GraphicLeftCurveMedium,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicLeftCurveSmall: {\n lottie: Hn.GraphicLeftCurveSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"0%\"\n },\n GraphicLeftMini: {\n lottie: Hn.GraphicLeftMini,\n graphicHeight: \"100%\",\n graphicOffset: \"21.45%\"\n },\n GraphicLeftSmall: {\n lottie: Hn.GraphicLeftSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"21.45%\"\n },\n GraphicRightCurveMini: {\n lottie: Hn.GraphicRightCurveMini,\n graphicHeight: \"100%\",\n graphicOffset: \"-13.3%\"\n },\n GraphicRightCurveSmall: {\n lottie: Hn.GraphicRightCurveSmall,\n graphicHeight: \"100%\",\n graphicOffset: \"-17.25%\"\n },\n GraphicLeftLarge: {\n lottie: Hn.GraphicLeftLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"21.45%\"\n },\n HeroSplit01Large: {\n lottie: Hn.HeroSplit01Large,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit01Medium: {\n lottie: Hn.HeroSplit01Medium,\n graphicHeight: \"75%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit02LargeUpper: {\n lottie: Hn.HeroSplit02LargeUpper,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit02MediumUpper: {\n lottie: Hn.HeroSplit02MediumUpper,\n graphicHeight: \"75%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit01XLargeUpper: {\n lottie: Hn.HeroSplit01XLargeUpper,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroSplit02XLargeUpper: {\n lottie: Hn.HeroSplit02XLargeUpper,\n graphicHeight: \"100%\",\n graphicOffset: \"-12%\",\n canUseImage: !0\n // can have a background image\n },\n HeroTall02: {\n lottie: Hn.HeroTall02,\n graphicHeight: \"100%\",\n graphicOffset: \"12%\"\n },\n SplitRightLarge: {\n lottie: Hn.SplitRightLarge,\n ratioType: \"meet\",\n canUseImage: !0,\n // can have a background image\n svgRatio: 3.66666667\n },\n SplitLeftLarge: {\n lottie: Hn.SplitLeftLarge,\n ratioType: \"meet\",\n canUseImage: !0,\n // can have a background image\n svgRatio: 3.66666667\n },\n GraphicRightLarge: {\n lottie: Hn.GraphicRightLarge,\n graphicHeight: \"100%\",\n graphicOffset: \"-21.45%\"\n },\n SplitLeftSmall: {\n lottie: Hn.SplitLeftSmall,\n canUseImage: !0,\n // can have a background image\n graphicHeight: \"75%\",\n graphicOffset: \"14.3%\"\n }\n};\nconst mJ = new ke(\"GraphicLottie\"), gJ = ({\n graphic: e,\n play: t,\n goTo: n,\n loop: r = !1,\n speed: a = 0.75,\n direction: i = 1,\n ...o\n}) => {\n const s = Ji(), u = `${fJ}${e.lottie}`;\n return /* @__PURE__ */ h.jsx(\n hQ,\n {\n path: u,\n \"aria-hidden\": !0,\n loop: r,\n play: t,\n goTo: s ? 9999 : n,\n speed: a,\n direction: i,\n className: mJ.getElementClassName(\"lottie-player\"),\n renderer: \"svg\",\n rendererSettings: {\n preserveAspectRatio: (e == null ? void 0 : e.ratioType) === \"meet\" ? \"xMidYMid meet\" : \"xMidYMid slice\"\n },\n ...o\n }\n );\n};\nconst vJ = \"GraphicShape\", mi = ({\n renderBackgroundImage: e,\n graphicVersion: t,\n graphicColor: n,\n speed: r,\n direction: a,\n goTo: i,\n play: o = !1,\n replay: s = !0,\n ...u\n}) => {\n const { foundationTheme: l } = Ze(lr), [c, d] = ze(o), p = Ue(), v = (l === \"compact\" ? hJ : LI)[t || \"HeroSplit01Large\"], b = pJ[n || \"GoldOnWhite\"], C = v == null ? void 0 : v.canUseImage, w = () => s ? d(!1) : null;\n let _ = C ? \"var(--color-primary)\" : \"var(--color-background)\";\n C && e && (_ = \"unset\");\n const x = Ji(), S = n === \"WhiteOnBlue600\" ? \"unset\" : \"var(--color-background)\";\n return /* @__PURE__ */ ue(td, { features: nd }, /* @__PURE__ */ ue(\n Cr.div,\n {\n ref: p,\n css: V`\n --graphic-offset: ${(v == null ? void 0 : v.graphicOffset) || 0};\n --graphic-height: ${(v == null ? void 0 : v.graphicHeight) || \"100%\"};\n --color-primary: ${b == null ? void 0 : b.primary};\n --color-secondary: ${b == null ? void 0 : b.secondary};\n --color-overlap: ${b == null ? void 0 : b.overlap};\n --color-background: ${b == null ? void 0 : b.background};\n --color-svg-background: ${_};\n --height: 100vw;\n --min-height: unset;\n --image: 100%;\n --svg-height: 72%;\n --svg-ratio: ${(v == null ? void 0 : v.svgRatio) || \" 2.333\"};\n\n @media (min-width: ${bn.md}) {\n --graphic-offset: 0%;\n }\n\n @media (max-width: ${oi.sm}) {\n height: var(--height);\n }\n\n @media (min-width: ${bn.lg}) {\n --height: 50vw;\n }\n\n @media (min-width: ${bn[\"2xl\"]}) {\n --height: 60rem;\n }\n\n position: relative;\n overflow: hidden;\n display: flex;\n align-items: center;\n justify-content: center;\n height: var(--height);\n min-height: var(--min-height);\n backface-visibility: hidden;\n margin-top: -1px;\n margin-bottom: -1px;\n z-index: 0;\n\n // before and after elements cover the background color bleed\n ::before {\n position: absolute;\n top: -1px;\n background-color: ${S};\n display: block;\n width: 100%;\n height: 1.5px;\n content: '';\n z-index: 2;\n background-blend-mode: lighten;\n }\n ::after {\n position: absolute;\n bottom: -1px;\n background-color: ${S};\n display: block;\n width: 100%;\n height: 2px;\n content: '';\n z-index: 2;\n background-blend-mode: lighten;\n }\n\n // fine tunings of color bleed fix for some components\n &.split-graphic-background {\n ::after {\n height: 1.5px;\n }\n @media (min-width: ${bn.md}) {\n height: calc(var(--height) + 1.5px);\n }\n }\n &.section-wrapper-graphics-top,\n &.section-wrapper-graphics-bottom {\n ::before {\n height: 0;\n }\n ::after {\n height: 0;\n }\n }\n `,\n onViewportEnter: () => d(!0),\n onViewportLeave: w,\n initial: {\n opacity: x ? 1 : 0\n },\n animate: {\n opacity: 1\n },\n transition: {\n delay: x ? 0 : 0.02\n },\n ...u\n },\n /* @__PURE__ */ ue(\n gJ,\n {\n graphic: v,\n play: c,\n speed: r,\n goTo: i,\n direction: a\n }\n ),\n e && e(p)\n ));\n};\nmi.displayName = vJ;\nconst kI = \"SectionWrapperGraphics\", $m = new ke(kI), II = ({\n graphicShapeOptions: e = {}\n}) => {\n if (!e.top && !e.bottom)\n return null;\n const n = V`\n --height: 43vw;\n --min-height: unset;\n --image: 100%;\n --color-background: transparent;\n --graphic-offset: 0;\n position: absolute;\n width: 100%;\n z-index: 0;\n\n @media (min-width: ${bn.md}) {\n --height: 45vw;\n }\n\n @media (min-width: ${bn.xl}) {\n --height: 43vw;\n }\n @media (min-width: ${bn[\"2xl\"]}) {\n --height: 61rem;\n\n .graphic-lottie-lottie-player {\n width: 100%;\n }\n }\n `;\n return /* @__PURE__ */ ue(\"div\", { className: $m.getElementClassName(\"container\") }, (e == null ? void 0 : e.top) && /* @__PURE__ */ ue(\n mi,\n {\n className: $m.getElementClassName(\"top\"),\n css: V`\n ${n}\n top: 0;\n `,\n ...e.top,\n replay: !1\n }\n ), (e == null ? void 0 : e.bottom) && /* @__PURE__ */ ue(\n mi,\n {\n className: $m.getElementClassName(\"bottom\"),\n css: V`\n ${n}\n bottom: 0;\n `,\n ...e.bottom,\n replay: !1\n }\n ));\n};\nII.displayName = kI;\nconst Fb = \"SectionWrapper\", bJ = new ke(Fb), DI = ({\n children: e,\n disclosure: t,\n className: n,\n messageId: r,\n theme: a = \"white\",\n isThemeEnabled: i = !0,\n gridProps: o = {},\n renderBottomContent: s,\n disclosureWrapper: u,\n disclosureGridItemProps: l,\n id: c,\n rootRef: d\n}) => {\n const p = se(\n n,\n bJ.getComponentClassName(),\n i && pn.getThemeClassName(a)\n ), g = {\n ...l,\n options: {\n topSpacing: \"4vw\",\n ...l == null ? void 0 : l.options\n }\n };\n return /* @__PURE__ */ h.jsxs(\n Yc,\n {\n ref: d,\n className: p,\n \"data-messageid\": r,\n id: c,\n ...o,\n children: [\n e,\n t && /* @__PURE__ */ h.jsx(lt, { ...g, children: /* @__PURE__ */ h.jsx(u, { ...t }) }),\n s && s()\n ]\n }\n );\n}, yJ = Lt(\n (e, t) => /* @__PURE__ */ h.jsx(Wn, { as: \"section\", rootRef: t, ...e })\n), CJ = (e) => {\n if ({\n ...e,\n motion: e.motion ?? \"default\"\n }.motion === \"none\")\n return {};\n let n;\n return e.motion === \"custom\" ? n = e.motionOptions ?? xf : n = xf, {\n /* This prop be used by the Grid emotion render function to determine what root element to render */\n as: yJ,\n /* This prop will be used directly by the `MotionSection`, which ends up leveraging the `Motion` component */\n motionOptions: n\n };\n}, xJ = ({\n graphicVersionTop: e,\n graphicColorTop: t,\n graphicVersionBottom: n,\n graphicColorBottom: r\n}) => ({ graphicShapeOptions: {\n top: e && {\n graphicVersion: e,\n graphicColor: t\n },\n bottom: n && {\n graphicVersion: n,\n graphicColor: r\n }\n} }), SJ = ({\n options: e = {},\n mdOptions: t = {},\n lgOptions: n = {},\n ...r\n}) => {\n const a = {\n as: \"section\",\n options: e,\n mdOptions: t,\n lgOptions: n\n }, i = CJ(r);\n return Object.assign(a, i);\n}, cn = Lt(\n ({\n children: e,\n disclosure: t,\n className: n,\n messageId: r,\n theme: a = \"white\",\n isThemeEnabled: i = !0,\n disclosureGridItemProps: o,\n id: s,\n ...u\n }, l) => {\n const c = SJ(u), d = xJ(u), p = () => /* @__PURE__ */ h.jsx(II, { ...d });\n return /* @__PURE__ */ h.jsx(\n DI,\n {\n className: n,\n messageId: r,\n disclosure: t,\n theme: a,\n isThemeEnabled: i,\n gridProps: c,\n renderBottomContent: p,\n disclosureWrapper: Ci,\n disclosureGridItemProps: o,\n id: s,\n rootRef: l,\n children: e\n }\n );\n }\n);\ncn.displayName = Fb;\nconst PI = \"IconButton\", Hm = new ke(PI), Xp = Lt(\n ({\n inverse: e = !1,\n closeAriaLabel: t = \"Close\",\n analyticsCompName: n,\n iconClick: r,\n clickDataEvent: a\n }, i) => {\n const { pageSegment: o } = Ze(Vt), s = () => a || (n ? Nn(\n {\n componentName: n,\n ariaLabel: t,\n clickEvent: Ca.Button\n },\n o,\n ln.CTA\n ) : \"\"), u = se(Hm.getElementClassName(\"wrapper\")), l = () => {\n const c = se({\n [Hm.getElementClassName(\"circle-inverse\")]: e\n }), d = se({\n [Hm.getElementClassName(\"close-incerse\")]: e\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n width: \"48\",\n height: \"48\",\n viewBox: \"0 0 48 48\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-hidden\": \"true\",\n children: [\n /* @__PURE__ */ h.jsx(\"title\", { children: \"button\" }),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: c,\n d: \"M0 24C0 10.7452 10.7452 0 24 0C37.2548 0 48 10.7452 48 24C48 37.2548 37.2548 48 24 48C10.7452 48 0 37.2548 0 24Z\",\n fill: \"#001C64\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: d,\n d: \"M30.5016 20.6014C30.8921 20.2109 30.8921 19.5777 30.5016 19.1872C30.1111 18.7967 29.4779 18.7967 29.0874 19.1872L24.8453 23.4293L20.6033 19.1873C20.2128 18.7968 19.5796 18.7968 19.1891 19.1873C18.7986 19.5779 18.7986 20.211 19.1891 20.6015L23.4311 24.8435L19.1879 29.0867C18.7974 29.4772 18.7974 30.1104 19.1879 30.5009C19.5784 30.8914 20.2116 30.8914 20.6021 30.5009L24.8453 26.2577L29.0886 30.501C29.4791 30.8916 30.1123 30.8916 30.5028 30.501C30.8934 30.1105 30.8934 29.4774 30.5028 29.0868L26.2595 24.8435L30.5016 20.6014Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n };\n return /* @__PURE__ */ h.jsx(\n \"button\",\n {\n \"aria-label\": t,\n type: \"button\",\n \"data-pa-click\": s(),\n className: u,\n onClick: r,\n ref: i,\n children: l()\n }\n );\n }\n);\nXp.displayName = PI;\nconst MI = \"Modal\", Il = new ke(MI);\nvar A8;\nconst Dl = typeof window < \"u\" ? (A8 = window == null ? void 0 : window.document) == null ? void 0 : A8.createElement(\"div\") : null, RI = ({\n isShowing: e,\n hide: t,\n children: n,\n ariaLabel: r,\n ariaLabelCloseBtn: a,\n clickDataEventCloseBtn: i,\n additionalElmtProps: o = {\n overlay: {},\n headerElmt: {},\n bodyElmt: {}\n },\n customWrapper: s = \"div\"\n}) => {\n const u = Ue(null), l = Ue(null), c = Ue(null), d = Ue(null), p = {\n role: \"dialog\",\n \"aria-modal\": \"true\",\n \"aria-hidden\": !1,\n \"aria-label\": r\n };\n return We(() => {\n const v = (b) => {\n b.key === \"Escape\" && e && t();\n };\n return window.addEventListener(\"keydown\", v), () => window.removeEventListener(\"keydown\", v);\n }, [e, t]), We(() => {\n const v = (b) => {\n var C, w;\n u != null && u.current && !((C = u == null ? void 0 : u.current) != null && C.contains(b.target)) && !((w = c == null ? void 0 : c.current) != null && w.contains(b.target)) && t();\n };\n return window.addEventListener(\"mousedown\", v), () => window.removeEventListener(\"mousedown\", v);\n }, [t]), We(() => {\n var v, b;\n return Dl && e && (d.current = document.activeElement, Dl.id = \"portal-root\", (v = document == null ? void 0 : document.body) == null || v.appendChild(Dl), (b = l.current) == null || b.focus()), e ? document.body.style.overflow = \"hidden\" : document.body.style.overflow = \"auto\", () => {\n d.current && d.current.focus();\n };\n }, [e]), e && Dl ? wF((() => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\n s,\n {\n className: Il.getElementClassName(\"overlay\"),\n ...o == null ? void 0 : o.overlay\n }\n ),\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: Il.getElementClassName(\"modal\"),\n ...p,\n children: [\n /* @__PURE__ */ h.jsx(\n s,\n {\n className: Il.getElementClassName(\"header\"),\n ...o == null ? void 0 : o.header,\n children: /* @__PURE__ */ h.jsx(\n Xp,\n {\n closeAriaLabel: a,\n clickDataEvent: i,\n inverse: !0,\n iconClick: t,\n ref: l\n }\n )\n }\n ),\n /* @__PURE__ */ h.jsx(\n s,\n {\n className: Il.getElementClassName(\"body\"),\n ...o == null ? void 0 : o.body,\n children: /* @__PURE__ */ h.jsx(\"div\", { ref: c, children: n })\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"div\",\n {\n ref: u,\n className: Il.getElementClassName(\"footer\")\n }\n )\n ]\n }\n )\n ] }))(), Dl) : null;\n}, _J = {\n motionOptions: {\n motionFeel: \"Expressive\",\n motionIntensity: \"sm\",\n motionTypePreset: \"appear\"\n }\n}, EJ = {\n motionOptions: {\n motionFeel: \"Expressive\",\n motionIntensity: \"md\",\n motionTypePreset: \"relativeMoveUp\"\n }\n}, wJ = {\n motionOptions: {\n motionFeel: \"Expressive\",\n motionIntensity: \"md\",\n motionTypePreset: \"relativeMoveUp\"\n }\n}, jb = ({\n isShowing: e,\n hide: t,\n children: n,\n ariaLabel: r,\n ariaLabelCloseBtn: a,\n clickDataEventCloseBtn: i\n}) => /* @__PURE__ */ h.jsx(\n RI,\n {\n isShowing: e,\n hide: t,\n ariaLabel: r,\n ariaLabelCloseBtn: a,\n clickDataEventCloseBtn: i,\n customWrapper: Wn,\n additionalElmtProps: {\n overlay: _J,\n body: wJ,\n header: EJ\n },\n children: n\n }\n);\njb.displayName = MI;\nconst BI = () => {\n const [e, t] = ze(!1);\n function n() {\n t(!e);\n }\n return {\n isShowing: e,\n toggle: n\n };\n};\nvar Cs = /* @__PURE__ */ ((e) => (e[e.UNSTARTED = -1] = \"UNSTARTED\", e[e.ENDED = 0] = \"ENDED\", e[e.PLAYING = 1] = \"PLAYING\", e[e.PAUSED = 2] = \"PAUSED\", e[e.BUFFERING = 3] = \"BUFFERING\", e[e.CUED = 5] = \"CUED\", e))(Cs || {}), cu = /* @__PURE__ */ ((e) => (e.playVideo = \"playVideo\", e.pauseVideo = \"pauseVideo\", e.seekTo = \"seekTo\", e.mute = \"mute\", e.unMute = \"unMute\", e))(cu || {});\nconst TJ = (e) => `https://www.youtube-nocookie.com/embed/${e}?autoplay=1&rel=0&autohide=2&border=0&wmode=opaque&showinfo=0&hd=1&playsinline=1&enablejsapi=1`, LS = new ke(\"YoutubeVideo\"), $b = ({\n videoId: e,\n onReady: t,\n onStateChange: n,\n className: r,\n roundedStyle: a = !1,\n /*\n TODO:\n Add this prop to the VideoFrame and EndCardCollection content models so\n it comes from ECM. This needs to be localized.\n */\n title: i = \"YouTube Video Player\"\n}) => {\n const o = Ue(null);\n function s(g, v, ...b) {\n let C;\n g === \"listening\" ? C = '{\"event\": \"listening\"}' : C = JSON.stringify({\n event: \"command\",\n func: v,\n args: b\n }), setTimeout(() => {\n var w, _;\n (_ = (w = o == null ? void 0 : o.current) == null ? void 0 : w.contentWindow) == null || _.postMessage(\n C,\n \"https://www.youtube-nocookie.com\"\n );\n });\n }\n function u(g) {\n if (g.origin !== \"https://www.youtube-nocookie.com\")\n return !1;\n const v = JSON.parse(g.data);\n if (!v.info)\n return !1;\n const { playerState: b } = v.info;\n return typeof b == \"number\" && b > Cs.UNSTARTED && b < Cs.CUED;\n }\n function l(g) {\n if (!u(g))\n return;\n const { playerState: v } = JSON.parse(g.data).info;\n typeof t == \"function\" && (n == null || n(v));\n }\n const c = {\n playVideo() {\n s(\"command\", cu.playVideo);\n },\n pauseVideo() {\n s(\"command\", cu.pauseVideo);\n },\n seekTo: (g) => {\n s(\"command\", cu.seekTo, g);\n },\n mute() {\n s(\"command\", cu.mute);\n },\n unMute() {\n s(\"command\", cu.unMute);\n }\n };\n function d() {\n s(\"listening\"), t == null || t(c);\n }\n if (We(() => {\n const g = o.current;\n return window.addEventListener(\"message\", l), g == null || g.addEventListener(\"load\", d), () => {\n window.removeEventListener(\"message\", l), g == null || g.removeEventListener(\"load\", d);\n };\n }, []), !e)\n return null;\n const p = se(\n r,\n LS.getComponentClassName(),\n a && LS.getElementClassName(\"rounded-dimensions\")\n );\n return /* @__PURE__ */ h.jsx(\"div\", { className: p, children: /* @__PURE__ */ h.jsx(\n \"iframe\",\n {\n ref: o,\n title: i,\n src: TJ(e),\n allow: \"autoplay; fullscreen\",\n sandbox: \"allow-scripts allow-same-origin allow-presentation\"\n }\n ) });\n};\nconst dd = \"InlinePlayButton\", Au = new ke(dd), FI = () => {\n const e = se(Au.getElementClassName(\"play-svg\")), t = se(Au.getElementClassName(\"circle\")), n = se(Au.getElementClassName(\"triangle\"));\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: e,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: t,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207V0.512207C62.0914 0.512207 80 18.4208 80 40.5122V40.5122C80 62.6036 62.0914 80.5122 40 80.5122V80.5122C17.9086 80.5122 0 62.6036 0 40.5122V40.5122Z\",\n fill: \"none\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: n,\n d: \"M29.3164 50.4622V32.1643C29.3164 28.8916 32.9162 26.8965 35.6914 28.631L50.3297 37.7799C52.9409 39.4119 52.9409 43.2146 50.3297 44.8466L35.6914 53.9955C32.9162 55.73 29.3164 53.7349 29.3164 50.4622Z\",\n fill: \"none\"\n }\n )\n ]\n }\n );\n}, AJ = () => {\n const e = se(Au.getElementClassName(\"replay-svg\"));\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: e,\n width: \"41\",\n height: \"40\",\n viewBox: \"0 0 41 40\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\"rect\", { x: \"0.5\", width: \"40\", height: \"40\", rx: \"20\", fill: \"white\" }),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M27.4295 20.997C27.5075 20.4503 27.9477 20 28.5 20C29.0523 20 29.5058 20.4494 29.4452 20.9984C28.9485 25.4991 25.1331 29 20.5 29C15.5294 29 11.5 24.9706 11.5 20C11.5 15.0294 15.5294 11 20.5 11C23.3273 11 25.85 12.3037 27.5 14.3427V12C27.5 11.4477 27.9477 11 28.5 11C29.0523 11 29.5 11.4477 29.5 12V17C29.5 17.5523 29.0523 18 28.5 18H23.5C22.9477 18 22.5 17.5523 22.5 17C22.5 16.4477 22.9477 16 23.5 16H26.2453C24.9804 14.1865 22.8787 13 20.5 13C16.634 13 13.5 16.134 13.5 20C13.5 23.866 16.634 27 20.5 27C24.0275 27 26.9456 24.3908 27.4295 20.997Z\",\n fill: \"#545D68\"\n }\n )\n ]\n }\n );\n}, Hb = ({\n className: e,\n text: t = \"\",\n youTubeId: n,\n analyticsCompName: r = dd,\n ariaLabel: a = \"\",\n clickEventName: i,\n mid: o,\n modalWrapper: s,\n iconType: u = \"Play\",\n onClick: l\n}) => {\n const c = se(\n Au.getElementClassName(\"theme\"),\n Au.getComponentClassName(),\n e\n ), { isShowing: d, toggle: p } = BI(), { pageSegment: g } = Ze(Vt), v = Nn(\n {\n componentName: r,\n linkText: t,\n clickEvent: i,\n ariaLabel: a,\n mid: o\n },\n g,\n ln.CTA\n );\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n n && /* @__PURE__ */ h.jsxs(\n \"button\",\n {\n onClick: l || p,\n \"aria-label\": a,\n className: c,\n \"data-pa-click\": r && v,\n type: \"button\",\n children: [\n u === \"Play\" ? FI() : AJ(),\n t\n ]\n }\n ),\n u === \"Play\" && /* @__PURE__ */ h.jsx(s, { isShowing: d, hide: p, children: /* @__PURE__ */ h.jsx($b, { roundedStyle: !0, videoId: n }) })\n ] });\n};\nHb.displayName = dd;\nconst Vb = (e = {}) => /* @__PURE__ */ h.jsx(Hb, { ...e, modalWrapper: jb });\nVb.displayName = dd;\nfunction bt() {\n return bt = Object.assign ? Object.assign.bind() : function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n }, bt.apply(this, arguments);\n}\nfunction NJ(e, t) {\n if (e == null)\n return {};\n var n = {}, r = Object.keys(e), a, i;\n for (i = 0; i < r.length; i++)\n a = r[i], !(t.indexOf(a) >= 0) && (n[a] = e[a]);\n return n;\n}\nfunction Qt(e, t) {\n if (e == null)\n return {};\n var n = NJ(e, t), r, a;\n if (Object.getOwnPropertySymbols) {\n var i = Object.getOwnPropertySymbols(e);\n for (a = 0; a < i.length; a++)\n r = i[a], !(t.indexOf(r) >= 0) && Object.prototype.propertyIsEnumerable.call(e, r) && (n[r] = e[r]);\n }\n return n;\n}\nfunction K(e, t) {\n return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, {\n raw: {\n value: Object.freeze(t)\n }\n }));\n}\nfunction OJ(e) {\n if (e === void 0)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return e;\n}\nfunction Nc(e, t) {\n return Nc = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(r, a) {\n return r.__proto__ = a, r;\n }, Nc(e, t);\n}\nfunction jI(e, t) {\n e.prototype = Object.create(t.prototype), e.prototype.constructor = e, Nc(e, t);\n}\nfunction F1(e) {\n return F1 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(n) {\n return n.__proto__ || Object.getPrototypeOf(n);\n }, F1(e);\n}\nfunction LJ(e) {\n return Function.toString.call(e).indexOf(\"[native code]\") !== -1;\n}\nfunction kJ() {\n if (typeof Reflect > \"u\" || !Reflect.construct || Reflect.construct.sham)\n return !1;\n if (typeof Proxy == \"function\")\n return !0;\n try {\n return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {\n })), !0;\n } catch {\n return !1;\n }\n}\nfunction G0(e, t, n) {\n return kJ() ? G0 = Reflect.construct.bind() : G0 = function(a, i, o) {\n var s = [null];\n s.push.apply(s, i);\n var u = Function.bind.apply(a, s), l = new u();\n return o && Nc(l, o.prototype), l;\n }, G0.apply(null, arguments);\n}\nfunction j1(e) {\n var t = typeof Map == \"function\" ? /* @__PURE__ */ new Map() : void 0;\n return j1 = function(r) {\n if (r === null || !LJ(r))\n return r;\n if (typeof r != \"function\")\n throw new TypeError(\"Super expression must either be null or a function\");\n if (typeof t < \"u\") {\n if (t.has(r))\n return t.get(r);\n t.set(r, a);\n }\n function a() {\n return G0(r, arguments, F1(this).constructor);\n }\n return a.prototype = Object.create(r.prototype, {\n constructor: {\n value: a,\n enumerable: !1,\n writable: !0,\n configurable: !0\n }\n }), Nc(a, r);\n }, j1(e);\n}\nfunction kS() {\n var e;\n return e = arguments.length - 1, e < 0 || arguments.length <= e ? void 0 : arguments[e];\n}\nfunction IJ(e) {\n return -e;\n}\nfunction DJ(e, t) {\n return e + t;\n}\nfunction PJ(e, t) {\n return e - t;\n}\nfunction MJ(e, t) {\n return e * t;\n}\nfunction RJ(e, t) {\n return e / t;\n}\nfunction BJ() {\n return Math.max.apply(Math, arguments);\n}\nfunction FJ() {\n return Math.min.apply(Math, arguments);\n}\nfunction jJ() {\n return Array.of.apply(Array, arguments);\n}\nvar $J = {\n symbols: {\n \"*\": {\n infix: {\n symbol: \"*\",\n f: MJ,\n notation: \"infix\",\n precedence: 4,\n rightToLeft: 0,\n argCount: 2\n },\n symbol: \"*\",\n regSymbol: \"\\\\*\"\n },\n \"/\": {\n infix: {\n symbol: \"/\",\n f: RJ,\n notation: \"infix\",\n precedence: 4,\n rightToLeft: 0,\n argCount: 2\n },\n symbol: \"/\",\n regSymbol: \"/\"\n },\n \"+\": {\n infix: {\n symbol: \"+\",\n f: DJ,\n notation: \"infix\",\n precedence: 2,\n rightToLeft: 0,\n argCount: 2\n },\n prefix: {\n symbol: \"+\",\n f: kS,\n notation: \"prefix\",\n precedence: 3,\n rightToLeft: 0,\n argCount: 1\n },\n symbol: \"+\",\n regSymbol: \"\\\\+\"\n },\n \"-\": {\n infix: {\n symbol: \"-\",\n f: PJ,\n notation: \"infix\",\n precedence: 2,\n rightToLeft: 0,\n argCount: 2\n },\n prefix: {\n symbol: \"-\",\n f: IJ,\n notation: \"prefix\",\n precedence: 3,\n rightToLeft: 0,\n argCount: 1\n },\n symbol: \"-\",\n regSymbol: \"-\"\n },\n \",\": {\n infix: {\n symbol: \",\",\n f: jJ,\n notation: \"infix\",\n precedence: 1,\n rightToLeft: 0,\n argCount: 2\n },\n symbol: \",\",\n regSymbol: \",\"\n },\n \"(\": {\n prefix: {\n symbol: \"(\",\n f: kS,\n notation: \"prefix\",\n precedence: 0,\n rightToLeft: 0,\n argCount: 1\n },\n symbol: \"(\",\n regSymbol: \"\\\\(\"\n },\n \")\": {\n postfix: {\n symbol: \")\",\n f: void 0,\n notation: \"postfix\",\n precedence: 0,\n rightToLeft: 0,\n argCount: 1\n },\n symbol: \")\",\n regSymbol: \"\\\\)\"\n },\n min: {\n func: {\n symbol: \"min\",\n f: FJ,\n notation: \"func\",\n precedence: 0,\n rightToLeft: 0,\n argCount: 1\n },\n symbol: \"min\",\n regSymbol: \"min\\\\b\"\n },\n max: {\n func: {\n symbol: \"max\",\n f: BJ,\n notation: \"func\",\n precedence: 0,\n rightToLeft: 0,\n argCount: 1\n },\n symbol: \"max\",\n regSymbol: \"max\\\\b\"\n }\n }\n}, IS = $J, Lr = /* @__PURE__ */ function(e) {\n jI(t, e);\n function t(n) {\n var r;\n return r = e.call(this, \"An error occurred. See https://github.com/styled-components/polished/blob/main/src/internalHelpers/errors.md#\" + n + \" for more information.\") || this, OJ(r);\n }\n return t;\n}(/* @__PURE__ */ j1(Error)), DS = /((?!\\w)a|na|hc|mc|dg|me[r]?|xe|ni(?![a-zA-Z])|mm|cp|tp|xp|q(?!s)|hv|xamv|nimv|wv|sm|s(?!\\D|$)|ged|darg?|nrut)/g;\nfunction HJ(e) {\n var t = {};\n return t.symbols = e ? bt({}, IS.symbols, e.symbols) : bt({}, IS.symbols), t;\n}\nfunction PS(e, t) {\n var n, r = e.pop();\n return t.push(r.f.apply(r, (n = []).concat.apply(n, t.splice(-r.argCount)))), r.precedence;\n}\nfunction VJ(e, t) {\n var n = HJ(t), r, a = [n.symbols[\"(\"].prefix], i = [], o = new RegExp(\n // Pattern for numbers\n \"\\\\d+(?:\\\\.\\\\d+)?|\" + // ...and patterns for individual operators/function names\n Object.keys(n.symbols).map(function(C) {\n return n.symbols[C];\n }).sort(function(C, w) {\n return w.symbol.length - C.symbol.length;\n }).map(function(C) {\n return C.regSymbol;\n }).join(\"|\") + \"|(\\\\S)\",\n \"g\"\n );\n o.lastIndex = 0;\n var s = !1;\n do {\n r = o.exec(e);\n var u = r || [\")\", void 0], l = u[0], c = u[1], d = n.symbols[l], p = d && !d.prefix && !d.func, g = !d || !d.postfix && !d.infix;\n if (c || (s ? g : p))\n throw new Lr(37, r ? r.index : e.length, e);\n if (s) {\n var v = d.postfix || d.infix;\n do {\n var b = a[a.length - 1];\n if ((v.precedence - b.precedence || b.rightToLeft) > 0)\n break;\n } while (PS(a, i));\n s = v.notation === \"postfix\", v.symbol !== \")\" && (a.push(v), s && PS(a, i));\n } else if (d) {\n if (a.push(d.prefix || d.func), d.func && (r = o.exec(e), !r || r[0] !== \"(\"))\n throw new Lr(38, r ? r.index : e.length, e);\n } else\n i.push(+l), s = !0;\n } while (r && a.length);\n if (a.length)\n throw new Lr(39, r ? r.index : e.length, e);\n if (r)\n throw new Lr(40, r ? r.index : e.length, e);\n return i.pop();\n}\nfunction Vm(e) {\n return e.split(\"\").reverse().join(\"\");\n}\nfunction De(e, t) {\n var n = Vm(e), r = n.match(DS);\n if (r && !r.every(function(i) {\n return i === r[0];\n }))\n throw new Lr(41);\n var a = Vm(n.replace(DS, \"\"));\n return \"\" + VJ(a, t) + (r ? Vm(r[0]) : \"\");\n}\nfunction MS(e, t) {\n return e.substr(-t.length) === t;\n}\nvar zJ = /^([+-]?(?:\\d+|\\d*\\.\\d+))([a-z]*|%)$/;\nfunction vs(e) {\n if (typeof e != \"string\")\n return e;\n var t = e.match(zJ);\n return t ? parseFloat(e) : e;\n}\nvar qJ = function(t) {\n return function(n, r) {\n r === void 0 && (r = \"16px\");\n var a = n, i = r;\n if (typeof n == \"string\") {\n if (!MS(n, \"px\"))\n throw new Lr(69, t, n);\n a = vs(n);\n }\n if (typeof r == \"string\") {\n if (!MS(r, \"px\"))\n throw new Lr(70, t, r);\n i = vs(r);\n }\n if (typeof a == \"string\")\n throw new Lr(71, n, t);\n if (typeof i == \"string\")\n throw new Lr(72, r, t);\n return \"\" + a / i + t;\n };\n}, GJ = qJ, UJ = /^([+-]?(?:\\d+|\\d*\\.\\d+))([a-z]*|%)$/;\nfunction $I(e) {\n if (typeof e != \"string\")\n return [e, \"\"];\n var t = e.match(UJ);\n return t ? [parseFloat(e), t[2]] : [e, void 0];\n}\nvar WJ = /* @__PURE__ */ GJ(\"rem\"), fs = WJ, $1 = 16;\nfunction HI(e) {\n var t = $I(e);\n if (t[1] === \"px\")\n return parseFloat(e);\n if (t[1] === \"%\")\n return parseFloat(e) / 100 * $1;\n throw new Lr(78, t[1]);\n}\nfunction KJ() {\n if (typeof document < \"u\" && document.documentElement !== null) {\n var e = getComputedStyle(document.documentElement).fontSize;\n return e ? HI(e) : $1;\n }\n return $1;\n}\nfunction Mo(e, t) {\n var n = $I(e);\n if (n[1] !== \"rem\" && n[1] !== \"\")\n throw new Lr(77, n[1]);\n var r = t ? HI(t) : KJ();\n return n[0] * r + \"px\";\n}\nfunction zm(e) {\n return Math.round(e * 255);\n}\nfunction YJ(e, t, n) {\n return zm(e) + \",\" + zm(t) + \",\" + zm(n);\n}\nfunction RS(e, t, n, r) {\n if (r === void 0 && (r = YJ), t === 0)\n return r(n, n, n);\n var a = (e % 360 + 360) % 360 / 60, i = (1 - Math.abs(2 * n - 1)) * t, o = i * (1 - Math.abs(a % 2 - 1)), s = 0, u = 0, l = 0;\n a >= 0 && a < 1 ? (s = i, u = o) : a >= 1 && a < 2 ? (s = o, u = i) : a >= 2 && a < 3 ? (u = i, l = o) : a >= 3 && a < 4 ? (u = o, l = i) : a >= 4 && a < 5 ? (s = o, l = i) : a >= 5 && a < 6 && (s = i, l = o);\n var c = n - i / 2, d = s + c, p = u + c, g = l + c;\n return r(d, p, g);\n}\nvar BS = {\n aliceblue: \"f0f8ff\",\n antiquewhite: \"faebd7\",\n aqua: \"00ffff\",\n aquamarine: \"7fffd4\",\n azure: \"f0ffff\",\n beige: \"f5f5dc\",\n bisque: \"ffe4c4\",\n black: \"000\",\n blanchedalmond: \"ffebcd\",\n blue: \"0000ff\",\n blueviolet: \"8a2be2\",\n brown: \"a52a2a\",\n burlywood: \"deb887\",\n cadetblue: \"5f9ea0\",\n chartreuse: \"7fff00\",\n chocolate: \"d2691e\",\n coral: \"ff7f50\",\n cornflowerblue: \"6495ed\",\n cornsilk: \"fff8dc\",\n crimson: \"dc143c\",\n cyan: \"00ffff\",\n darkblue: \"00008b\",\n darkcyan: \"008b8b\",\n darkgoldenrod: \"b8860b\",\n darkgray: \"a9a9a9\",\n darkgreen: \"006400\",\n darkgrey: \"a9a9a9\",\n darkkhaki: \"bdb76b\",\n darkmagenta: \"8b008b\",\n darkolivegreen: \"556b2f\",\n darkorange: \"ff8c00\",\n darkorchid: \"9932cc\",\n darkred: \"8b0000\",\n darksalmon: \"e9967a\",\n darkseagreen: \"8fbc8f\",\n darkslateblue: \"483d8b\",\n darkslategray: \"2f4f4f\",\n darkslategrey: \"2f4f4f\",\n darkturquoise: \"00ced1\",\n darkviolet: \"9400d3\",\n deeppink: \"ff1493\",\n deepskyblue: \"00bfff\",\n dimgray: \"696969\",\n dimgrey: \"696969\",\n dodgerblue: \"1e90ff\",\n firebrick: \"b22222\",\n floralwhite: \"fffaf0\",\n forestgreen: \"228b22\",\n fuchsia: \"ff00ff\",\n gainsboro: \"dcdcdc\",\n ghostwhite: \"f8f8ff\",\n gold: \"ffd700\",\n goldenrod: \"daa520\",\n gray: \"808080\",\n green: \"008000\",\n greenyellow: \"adff2f\",\n grey: \"808080\",\n honeydew: \"f0fff0\",\n hotpink: \"ff69b4\",\n indianred: \"cd5c5c\",\n indigo: \"4b0082\",\n ivory: \"fffff0\",\n khaki: \"f0e68c\",\n lavender: \"e6e6fa\",\n lavenderblush: \"fff0f5\",\n lawngreen: \"7cfc00\",\n lemonchiffon: \"fffacd\",\n lightblue: \"add8e6\",\n lightcoral: \"f08080\",\n lightcyan: \"e0ffff\",\n lightgoldenrodyellow: \"fafad2\",\n lightgray: \"d3d3d3\",\n lightgreen: \"90ee90\",\n lightgrey: \"d3d3d3\",\n lightpink: \"ffb6c1\",\n lightsalmon: \"ffa07a\",\n lightseagreen: \"20b2aa\",\n lightskyblue: \"87cefa\",\n lightslategray: \"789\",\n lightslategrey: \"789\",\n lightsteelblue: \"b0c4de\",\n lightyellow: \"ffffe0\",\n lime: \"0f0\",\n limegreen: \"32cd32\",\n linen: \"faf0e6\",\n magenta: \"f0f\",\n maroon: \"800000\",\n mediumaquamarine: \"66cdaa\",\n mediumblue: \"0000cd\",\n mediumorchid: \"ba55d3\",\n mediumpurple: \"9370db\",\n mediumseagreen: \"3cb371\",\n mediumslateblue: \"7b68ee\",\n mediumspringgreen: \"00fa9a\",\n mediumturquoise: \"48d1cc\",\n mediumvioletred: \"c71585\",\n midnightblue: \"191970\",\n mintcream: \"f5fffa\",\n mistyrose: \"ffe4e1\",\n moccasin: \"ffe4b5\",\n navajowhite: \"ffdead\",\n navy: \"000080\",\n oldlace: \"fdf5e6\",\n olive: \"808000\",\n olivedrab: \"6b8e23\",\n orange: \"ffa500\",\n orangered: \"ff4500\",\n orchid: \"da70d6\",\n palegoldenrod: \"eee8aa\",\n palegreen: \"98fb98\",\n paleturquoise: \"afeeee\",\n palevioletred: \"db7093\",\n papayawhip: \"ffefd5\",\n peachpuff: \"ffdab9\",\n peru: \"cd853f\",\n pink: \"ffc0cb\",\n plum: \"dda0dd\",\n powderblue: \"b0e0e6\",\n purple: \"800080\",\n rebeccapurple: \"639\",\n red: \"f00\",\n rosybrown: \"bc8f8f\",\n royalblue: \"4169e1\",\n saddlebrown: \"8b4513\",\n salmon: \"fa8072\",\n sandybrown: \"f4a460\",\n seagreen: \"2e8b57\",\n seashell: \"fff5ee\",\n sienna: \"a0522d\",\n silver: \"c0c0c0\",\n skyblue: \"87ceeb\",\n slateblue: \"6a5acd\",\n slategray: \"708090\",\n slategrey: \"708090\",\n snow: \"fffafa\",\n springgreen: \"00ff7f\",\n steelblue: \"4682b4\",\n tan: \"d2b48c\",\n teal: \"008080\",\n thistle: \"d8bfd8\",\n tomato: \"ff6347\",\n turquoise: \"40e0d0\",\n violet: \"ee82ee\",\n wheat: \"f5deb3\",\n white: \"fff\",\n whitesmoke: \"f5f5f5\",\n yellow: \"ff0\",\n yellowgreen: \"9acd32\"\n};\nfunction XJ(e) {\n if (typeof e != \"string\")\n return e;\n var t = e.toLowerCase();\n return BS[t] ? \"#\" + BS[t] : e;\n}\nvar ZJ = /^#[a-fA-F0-9]{6}$/, QJ = /^#[a-fA-F0-9]{8}$/, JJ = /^#[a-fA-F0-9]{3}$/, eee = /^#[a-fA-F0-9]{4}$/, qm = /^rgb\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*\\)$/i, tee = /^rgb(?:a)?\\(\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,)?\\s*(\\d{1,3})\\s*(?:,|\\/)\\s*([-+]?\\d*[.]?\\d+[%]?)\\s*\\)$/i, nee = /^hsl\\(\\s*(\\d{0,3}[.]?[0-9]+(?:deg)?)\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*\\)$/i, ree = /^hsl(?:a)?\\(\\s*(\\d{0,3}[.]?[0-9]+(?:deg)?)\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*(?:,)?\\s*(\\d{1,3}[.]?[0-9]?)%\\s*(?:,|\\/)\\s*([-+]?\\d*[.]?\\d+[%]?)\\s*\\)$/i;\nfunction aee(e) {\n if (typeof e != \"string\")\n throw new Lr(3);\n var t = XJ(e);\n if (t.match(ZJ))\n return {\n red: parseInt(\"\" + t[1] + t[2], 16),\n green: parseInt(\"\" + t[3] + t[4], 16),\n blue: parseInt(\"\" + t[5] + t[6], 16)\n };\n if (t.match(QJ)) {\n var n = parseFloat((parseInt(\"\" + t[7] + t[8], 16) / 255).toFixed(2));\n return {\n red: parseInt(\"\" + t[1] + t[2], 16),\n green: parseInt(\"\" + t[3] + t[4], 16),\n blue: parseInt(\"\" + t[5] + t[6], 16),\n alpha: n\n };\n }\n if (t.match(JJ))\n return {\n red: parseInt(\"\" + t[1] + t[1], 16),\n green: parseInt(\"\" + t[2] + t[2], 16),\n blue: parseInt(\"\" + t[3] + t[3], 16)\n };\n if (t.match(eee)) {\n var r = parseFloat((parseInt(\"\" + t[4] + t[4], 16) / 255).toFixed(2));\n return {\n red: parseInt(\"\" + t[1] + t[1], 16),\n green: parseInt(\"\" + t[2] + t[2], 16),\n blue: parseInt(\"\" + t[3] + t[3], 16),\n alpha: r\n };\n }\n var a = qm.exec(t);\n if (a)\n return {\n red: parseInt(\"\" + a[1], 10),\n green: parseInt(\"\" + a[2], 10),\n blue: parseInt(\"\" + a[3], 10)\n };\n var i = tee.exec(t.substring(0, 50));\n if (i)\n return {\n red: parseInt(\"\" + i[1], 10),\n green: parseInt(\"\" + i[2], 10),\n blue: parseInt(\"\" + i[3], 10),\n alpha: parseFloat(\"\" + i[4]) > 1 ? parseFloat(\"\" + i[4]) / 100 : parseFloat(\"\" + i[4])\n };\n var o = nee.exec(t);\n if (o) {\n var s = parseInt(\"\" + o[1], 10), u = parseInt(\"\" + o[2], 10) / 100, l = parseInt(\"\" + o[3], 10) / 100, c = \"rgb(\" + RS(s, u, l) + \")\", d = qm.exec(c);\n if (!d)\n throw new Lr(4, t, c);\n return {\n red: parseInt(\"\" + d[1], 10),\n green: parseInt(\"\" + d[2], 10),\n blue: parseInt(\"\" + d[3], 10)\n };\n }\n var p = ree.exec(t.substring(0, 50));\n if (p) {\n var g = parseInt(\"\" + p[1], 10), v = parseInt(\"\" + p[2], 10) / 100, b = parseInt(\"\" + p[3], 10) / 100, C = \"rgb(\" + RS(g, v, b) + \")\", w = qm.exec(C);\n if (!w)\n throw new Lr(4, t, C);\n return {\n red: parseInt(\"\" + w[1], 10),\n green: parseInt(\"\" + w[2], 10),\n blue: parseInt(\"\" + w[3], 10),\n alpha: parseFloat(\"\" + p[4]) > 1 ? parseFloat(\"\" + p[4]) / 100 : parseFloat(\"\" + p[4])\n };\n }\n throw new Lr(5);\n}\nvar iee = function(t) {\n return t.length === 7 && t[1] === t[2] && t[3] === t[4] && t[5] === t[6] ? \"#\" + t[1] + t[3] + t[5] : t;\n}, FS = iee;\nfunction Ws(e) {\n var t = e.toString(16);\n return t.length === 1 ? \"0\" + t : t;\n}\nfunction jS(e, t, n) {\n if (typeof e == \"number\" && typeof t == \"number\" && typeof n == \"number\")\n return FS(\"#\" + Ws(e) + Ws(t) + Ws(n));\n if (typeof e == \"object\" && t === void 0 && n === void 0)\n return FS(\"#\" + Ws(e.red) + Ws(e.green) + Ws(e.blue));\n throw new Lr(6);\n}\nfunction Gm(e, t, n, r) {\n if (typeof e == \"string\" && typeof t == \"number\") {\n var a = aee(e);\n return \"rgba(\" + a.red + \",\" + a.green + \",\" + a.blue + \",\" + t + \")\";\n } else {\n if (typeof e == \"number\" && typeof t == \"number\" && typeof n == \"number\" && typeof r == \"number\")\n return r >= 1 ? jS(e, t, n) : \"rgba(\" + e + \",\" + t + \",\" + n + \",\" + r + \")\";\n if (typeof e == \"object\" && t === void 0 && n === void 0 && r === void 0)\n return e.alpha >= 1 ? jS(e.red, e.green, e.blue) : \"rgba(\" + e.red + \",\" + e.green + \",\" + e.blue + \",\" + e.alpha + \")\";\n }\n throw new Lr(7);\n}\nfunction oee(e) {\n if (Array.isArray(e))\n return e;\n}\nfunction see(e, t) {\n var n = e == null ? null : typeof Symbol < \"u\" && e[Symbol.iterator] || e[\"@@iterator\"];\n if (n != null) {\n var r, a, i, o, s = [], u = !0, l = !1;\n try {\n if (i = (n = n.call(e)).next, t === 0) {\n if (Object(n) !== n)\n return;\n u = !1;\n } else\n for (; !(u = (r = i.call(n)).done) && (s.push(r.value), s.length !== t); u = !0)\n ;\n } catch (c) {\n l = !0, a = c;\n } finally {\n try {\n if (!u && n.return != null && (o = n.return(), Object(o) !== o))\n return;\n } finally {\n if (l)\n throw a;\n }\n }\n return s;\n }\n}\nfunction $S(e, t) {\n (t == null || t > e.length) && (t = e.length);\n for (var n = 0, r = new Array(t); n < t; n++)\n r[n] = e[n];\n return r;\n}\nfunction uee(e, t) {\n if (e) {\n if (typeof e == \"string\")\n return $S(e, t);\n var n = Object.prototype.toString.call(e).slice(8, -1);\n if (n === \"Object\" && e.constructor && (n = e.constructor.name), n === \"Map\" || n === \"Set\")\n return Array.from(e);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))\n return $S(e, t);\n }\n}\nfunction lee() {\n throw new TypeError(`Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);\n}\nfunction fn(e, t) {\n return oee(e) || see(e, t) || uee(e, t) || lee();\n}\nfunction cee(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction Oc(e) {\n \"@babel/helpers - typeof\";\n return Oc = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(t) {\n return typeof t;\n } : function(t) {\n return t && typeof Symbol == \"function\" && t.constructor === Symbol && t !== Symbol.prototype ? \"symbol\" : typeof t;\n }, Oc(e);\n}\nfunction dee(e, t) {\n if (Oc(e) !== \"object\" || e === null)\n return e;\n var n = e[Symbol.toPrimitive];\n if (n !== void 0) {\n var r = n.call(e, t || \"default\");\n if (Oc(r) !== \"object\")\n return r;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (t === \"string\" ? String : Number)(e);\n}\nfunction VI(e) {\n var t = dee(e, \"string\");\n return Oc(t) === \"symbol\" ? t : String(t);\n}\nfunction HS(e, t) {\n for (var n = 0; n < t.length; n++) {\n var r = t[n];\n r.enumerable = r.enumerable || !1, r.configurable = !0, \"value\" in r && (r.writable = !0), Object.defineProperty(e, VI(r.key), r);\n }\n}\nfunction fee(e, t, n) {\n return t && HS(e.prototype, t), n && HS(e, n), Object.defineProperty(e, \"prototype\", {\n writable: !1\n }), e;\n}\nfunction Zt(e, t, n) {\n return t = VI(t), t in e ? Object.defineProperty(e, t, {\n value: n,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }) : e[t] = n, e;\n}\nvar VS, zS, qS, GS, US, WS;\nfunction pee(e) {\n if (!Object.keys(e).length)\n return {};\n var t = e.sysColorBackgroundSurface, n = e.sysColorStructureFocus, r = e.sysBorderThicknessEmphasis, a = e.sysColorStructureFocusOutline, i = e.sysColorErrorMain, o = e.sysColorStructureErrorOutline, s = e.sysBorderThicknessNormal, u = n, l = De(\"\".concat(s, \" + \").concat(r)), c = a, d = De(\"2 * \".concat(l));\n function p() {\n var x = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, S = x.radius, E = S === void 0 ? \"inherit\" : S, N = x.width, P = N === void 0 ? \"100%\" : N, H = x.height, k = H === void 0 ? \"100%\" : H, Q = x.border, I = Q === void 0 ? \"none\" : Q, G = x.top, $ = G === void 0 ? \"0\" : G, z = x.left, B = z === void 0 ? \"0\" : z, O = x.right, D = O === void 0 ? \"0\" : O, T = x.boxShadowColor, j = T === void 0 ? c : T;\n return V(VS || (VS = K([`\n content: '';\n position: absolute;\n top: `, `;\n left: `, `;\n right: `, `;\n border: `, `;\n box-shadow: 0 0 0 `, \" \", `;\n border-radius: `, `;\n width: `, `;\n height: `, `;\n pointer-events: none;\n `])), $, B, D, I, d, j, E, P, k);\n }\n function g() {\n var x = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, S = x.radius, E = S === void 0 ? \"inherit\" : S, N = x.width, P = N === void 0 ? \"100%\" : N, H = x.height, k = H === void 0 ? \"100%\" : H, Q = x.horizontalOffset, I = Q === void 0 ? s : Q, G = x.verticalOffset, $ = G === void 0 ? s : G, z = x.borderColor, B = z === void 0 ? u : z, O = x.boxShadowColor, D = O === void 0 ? c : O, T = De(\"\".concat(I, \" * 2\")), j = De(\"\".concat($, \" * 2\"));\n return V(zS || (zS = K([`\n content: '';\n position: absolute;\n top: `, `;\n left: `, `;\n border: `, \" solid \", `;\n box-shadow: 0 0 0 `, \" \", `;\n border-radius: `, `;\n text-indent: `, `;\n width: calc(`, \" - \", `);\n height: calc(`, \" - \", `);\n pointer-events: none;\n `])), $, I, l, B, d, D, E, I, P, T, k, j);\n }\n function v() {\n var x = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, S = x.radius, E = S === void 0 ? \"inherit\" : S, N = x.colorInner, P = N === void 0 ? u : N, H = x.colorOuter, k = H === void 0 ? c : H, Q = De(\"\".concat(l, \" + \").concat(d));\n return V(qS || (qS = K([`\n box-shadow: 0 0 0 `, \" \", `,\n 0 0 0 `, \" \", `;\n outline: `, ` solid transparent;\n border-radius: `, `;\n `])), l, P, Q, k, l, E);\n }\n var b = \"calc(\".concat(r, \" + \").concat(r, \")\"), C = V(GS || (GS = K([`\n outline: `, \" solid \", `;\n `])), r, n), w = V(US || (US = K([`\n box-shadow: 0 0 0 `, \" \", `;\n outline-offset: `, `;\n `, `;\n `])), r, t, r, C), _ = V(WS || (WS = K([`\n box-shadow: 0 0 0 `, ` inset\n `, `;\n outline-offset: -`, `;\n `, `;\n `])), b, t, r, C);\n return {\n stateFocusBorderColorOuter: c,\n stateFocusBorderWidthOuter: d,\n stateFocusBorderColorInner: u,\n stateFocusBorderWidthInner: l,\n stateErrorFocusBorderColorInner: i,\n stateErrorFocusBorderColorOuter: o,\n focusAfter: p,\n offsetFocusAfter: g,\n focusInline: v,\n focusElement: C,\n focusOffsetElement: w,\n focusInlineElement: _\n };\n}\nvar KS, YS, XS, ZS;\nfunction zI(e) {\n if (!Object.keys(e).length)\n return {};\n var t = e.sysBorderThicknessNormal, n = e.sysBorderRadiusLg, r = e.sysColorStructureShimmer, a = e.sysColorStructureShimmerInverse, i = e.sysColorStructureSheen, o = e.sysMotionDurationLoopStandard, s = e.sysMotionEasingLoopStandard, u = \"cubic-bezier(\".concat(s, \")\"), l = lp(KS || (KS = K([`\n from {\n background-position: 100% 0;\n }\n to {\n background-position: -100% 0;\n }\n `]))), c = V(YS || (YS = K([`\n label: shimmer_base;\n background-color: `, `;\n border: `, ` solid transparent;\n background-image: linear-gradient(\n to right,\n `, ` 0%,\n `, ` 50%,\n `, ` 100%\n );\n background-position: 100% 0;\n background-size: 200%;\n animation: `, \" \", `\n `, ` infinite;\n `])), r, t, r, i, r, l, o, u), d = V(XS || (XS = K([`\n label: inverse;\n background-color: `, `;\n background-image: linear-gradient(\n to right,\n `, ` 0%,\n `, ` 50%,\n `, ` 100%\n );\n `])), a, a, i, a);\n function p() {\n var g = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, v = g.borderRadius, b = v === void 0 ? n : v, C = g.width, w = C === void 0 ? \"100%\" : C, _ = g.height, x = _ === void 0 ? \"100%\" : _;\n return V(ZS || (ZS = K([`\n label: default;\n border-radius: `, `;\n width: `, `;\n height: `, `;\n `])), b, w, x);\n }\n return {\n base: c,\n inverse: d,\n defaults: p\n };\n}\nvar QS, JS, e_, t_, n_, r_, a_, i_, o_;\nfunction hee(e) {\n if (!Object.keys(e).length)\n return {};\n var t = e.sysColorStructureShadow, n = e.sysColorBackgroundSurface, r = e.sysElevationHorizontalOffsetRatio, a = e.sysElevationOpacity, i = e.sysElevationVerticalOffsetRatio, o = e.sysElevationBlurCurve, s = e.sysElevationBlurSlope, u = e.sysElevationBlurBase, l = e.sysElevationBrightenFactor;\n function c(k) {\n return fs(r * k);\n }\n function d(k) {\n return fs(i * k - 1);\n }\n function p(k) {\n var Q = fs(k * k * o + k * s);\n return De(\"\".concat(Q, \" + \").concat(u));\n }\n var g = Gm(t, a), v = function(k) {\n return \"background-image: linear-gradient(\".concat(Gm(n, k * l), \", \").concat(Gm(n, k * l), \")\");\n }, b = function(k) {\n return \"\".concat(c(k), \" \").concat(d(k), \" \").concat(p(k), \" \").concat(g);\n }, C = function(k) {\n return V(QS || (QS = K([`\n box-shadow: `, `;\n `, `;\n `])), b(k), v(k));\n }, w = V(JS || (JS = K([`\n label: elevation_level1;\n `, `\n `])), C(1)), _ = V(e_ || (e_ = K([`\n label: elevation_level2;\n `, `\n `])), C(2)), x = V(t_ || (t_ = K([`\n label: elevation_level3;\n `, `\n `])), C(3)), S = V(n_ || (n_ = K([`\n label: drop_shadow1;\n filter: drop-shadow(`, `);\n `])), b(1)), E = V(r_ || (r_ = K([`\n label: drop_shadow2;\n filter: drop-shadow(`, `);\n `])), b(2)), N = V(a_ || (a_ = K([`\n label: drop_shadow3;\n filter: drop-shadow(`, `);\n `])), b(3)), P = V(i_ || (i_ = K([`\n label: fixed_elevation;\n box-shadow: 0 0 `, \" \", `;\n `])), p(0.33), g), H = V(o_ || (o_ = K([`\n label: elevation_level3_above;\n box-shadow: `, \" -\", \" \", \" \", `;\n `, `;\n transform: translateZ(0);\n `])), c(3), d(3), p(3), g, v(3));\n return {\n level1: w,\n level2: _,\n level3: x,\n level1Horizontal: P,\n level3Above: H,\n filterLevel1: S,\n filterLevel2: E,\n filterLevel3: N\n };\n}\nvar s_, u_, l_, c_, d_, f_, p_, h_;\nfunction mee(e) {\n if (!Object.keys(e).length)\n return {};\n var t = e.sysSpaceSm, n = e.sysSpaceMd, r = e.sysSpaceLg, a = function(p) {\n return V(s_ || (s_ = K([`\n &:before {\n content: '';\n position: absolute;\n background-color: inherit;\n width: `, `;\n height: `, `;\n transform: scale(0.72) rotate(45deg);\n box-shadow: inherit;\n z-index: 0;\n }\n\n //hack to cover top part of rotated skewed square and get triangle shape:\n &:after {\n content: '';\n position: absolute;\n background-color: inherit;\n width: 2.5rem;\n height: `, `;\n }\n `])), p, p, r);\n }, i = function(p) {\n return V(u_ || (u_ = K([`\n &:before {\n top: auto;\n bottom: -`, `;\n }\n &:after {\n top: auto;\n bottom: 0;\n }\n `])), p);\n }, o = function(p) {\n return V(l_ || (l_ = K([`\n &:before {\n top: -`, `;\n bottom: auto;\n }\n &:after {\n top: 0;\n bottom: auto;\n }\n `])), p);\n }, s = function(p) {\n return V(c_ || (c_ = K([`\n &:before {\n left: calc(50% - `, ` / 2);\n right: auto;\n }\n &:after {\n left: calc(50% - 1.25rem);\n right: auto;\n }\n `])), p);\n }, u = function(p) {\n return V(d_ || (d_ = K([`\n &:before {\n left: `, `;\n right: auto;\n }\n &:after {\n left: `, `;\n right: auto;\n }\n `])), p, t);\n }, l = function(p) {\n return V(f_ || (f_ = K([`\n &:before {\n left: auto;\n right: `, `;\n }\n &:after {\n left: auto;\n right: `, `;\n }\n `])), p, t);\n }, c = function(p) {\n return V(p_ || (p_ = K([`\n &:before {\n top: calc(50% - `, `);\n bottom: auto;\n left: -`, `;\n right: auto;\n }\n &:after {\n transform: rotate(90deg);\n top: calc(50% - `, `);\n bottom: auto;\n left: -`, `;\n right: auto;\n }\n `])), p, p, p, n);\n }, d = function(p) {\n return V(h_ || (h_ = K([`\n &:before {\n top: calc(50% - `, `);\n bottom: auto;\n left: auto;\n right: -`, `;\n }\n &:after {\n transform: rotate(90deg);\n top: calc(50% - `, `);\n bottom: auto;\n left: auto;\n right: -`, `;\n }\n `])), p, p, p, n);\n };\n return {\n base: a,\n positionBottom: i,\n positionTop: o,\n positionCenter: s,\n positionShiftLeft: u,\n positionShiftRight: l,\n positionLeft: c,\n positionRight: d\n };\n}\nvar Of;\n(function(e) {\n e.LEFT = \"left\", e.RIGHT = \"right\";\n})(Of || (Of = {}));\nvar qI = 1060, gee = 1070, Lf = 1090, vee = /\\${(\\w+)}/g, bee = function(e, t) {\n return e.replace(vee, function(n, r) {\n var a;\n return (a = t[r]) !== null && a !== void 0 ? a : \"${\".concat(r, \"}\");\n });\n}, m_, g_, v_, b_, y_, C_;\nfunction GI(e) {\n if (!Object.keys(e).length)\n return {};\n var t = e.sysMotionTimingX1, n = e.sysMotionTimingY1, r = e.sysMotionTimingX2, a = e.sysMotionTimingY2, i = e.sysMotionEasingLoopStandard, o = e.sysMotionEasingEnterSmall, s = e.sysMotionEasingExitSmall, u = e.sysMotionEasingMoveSmall;\n return {\n ppuiEaseInOut: `cubic-bezier(\n `.concat(t, `,\n `).concat(n, `,\n `).concat(r, `,\n `).concat(a, `\n )`),\n ppuiEaseLoopStandard: `cubic-bezier(\n `.concat(i, `\n )`),\n ppuiEaseEnterSmall: \"cubic-bezier(\".concat(o, \")\"),\n ppuiEaseExitSmall: \"cubic-bezier(\".concat(s, \")\"),\n ppuiEaseMoveSmall: `cubic-bezier(\n `.concat(u, `\n )`)\n };\n}\nfunction yee(e) {\n if (!Object.keys(e).length)\n return {};\n var t = GI(e), n = t.ppuiEaseInOut, r = V(m_ || (m_ = K([`\n label: motion_animation;\n animation-timing-function: `, `;\n `])), n), a = V(g_ || (g_ = K([`\n label: motion_transition;\n transition-timing-function: `, `;\n `])), n);\n return {\n animationTiming: r,\n transitionTiming: a\n };\n}\nfunction xr(e) {\n if (!Object.keys(e).length)\n return {};\n var t = GI(e), n = pee(e), r = zI(e), a = yee(e), i = hee(e), o = mee(e), s = V(v_ || (v_ = K([`\n label: screenReader;\n position: absolute;\n clip: rect(1px, 1px, 1px, 1px);\n padding: 0;\n border: 0;\n width: 1px;\n height: 1px;\n overflow: hidden;\n `]))), u = V(b_ || (b_ = K([`\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden;\n `]))), l = function(d) {\n var p = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : e.sysSizeMediaMd, g = typeof d == \"string\" ? d : d.styles;\n return V(y_ || (y_ = K([`\n @media screen and (max-width: `, `) {\n `, `\n }\n `])), p, bee(g, e));\n }, c = function() {\n var d = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : Of.RIGHT, p = d === Of.RIGHT ? \"-100%\" : \"100%\";\n return lp(C_ || (C_ = K([`\n 0% {\n transform: translateX(`, `);\n }\n\n 100% {\n transform: translateX(0);\n }\n `])), p);\n };\n return {\n variables: t,\n focusStyles: n,\n shimmerStyles: r,\n motionTimings: a,\n elevationStyles: i,\n caretStyles: o,\n mediaQuery: l,\n screenReader: s,\n ellipsis: u,\n slideTo: c\n };\n}\nvar Cee = [\"as\", \"className\", \"children\"], xee = function(e) {\n var t = e.as, n = t === void 0 ? \"div\" : t, r = e.className, a = e.children, i = Qt(e, Cee), o = gn(), s = wt(function() {\n return xr(o);\n }, [o]), u = s.screenReader;\n return ue(n, bt({\n css: u,\n className: r\n }, i), a);\n}, See = [\"as\", \"isInverse\", \"className\", \"hasStyleDefaults\", \"children\"], Zp = function(e) {\n var t, n = e.as, r = n === void 0 ? \"div\" : n, a = e.isInverse, i = e.className, o = e.hasStyleDefaults, s = o === void 0 ? !0 : o, u = e.children, l = Qt(e, See), c = gn(), d = wt(function() {\n return zI(c);\n }, [c]), p = [d.base, a && d.inverse, s && ((t = d.defaults) === null || t === void 0 ? void 0 : t.call(d))];\n return ue(r, bt({\n css: p,\n className: i\n }, l), ue(xee, {\n as: \"span\"\n }, u));\n}, Qp = vt.createContext(null), Xt = function(e, t, n) {\n var r, a, i;\n switch (n) {\n case \"contrast\":\n return e != null && e.contrast ? e.contrast : t;\n case \"active\":\n return (r = e == null ? void 0 : e.active) !== null && r !== void 0 ? r : t;\n case \"hover\":\n return (a = e == null ? void 0 : e.hover) !== null && a !== void 0 ? a : t;\n case \"main\":\n return (i = e == null ? void 0 : e.main) !== null && i !== void 0 ? i : t;\n default:\n return t;\n }\n}, Jp = function() {\n return typeof window < \"u\";\n}, _ee = function() {\n return typeof navigator < \"u\";\n}, Eee = function() {\n return typeof document < \"u\";\n}, wee = function() {\n var e;\n return Jp() && \"ontouchstart\" in window ? !0 : !!(_ee() && ((e = navigator.maxTouchPoints) !== null && e !== void 0 ? e : navigator.msMaxTouchPoints));\n}, Tee = function() {\n return Jp() ? getComputedStyle(document.body).direction === \"rtl\" : !1;\n}, x_ = \"ppui\", Um = {};\nfunction Za() {\n var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : x_;\n Um[e] || (Um[e] = 0);\n var t = ++Um[e];\n return e === x_ ? \"\".concat(t) : \"\".concat(e).concat(t);\n}\nvar yn = /* @__PURE__ */ function() {\n function e(t) {\n cee(this, e), Zt(this, \"key\", void 0), this.key = t;\n }\n return fee(e, [{\n key: \"IS_ARROW_LEFT\",\n get: function() {\n return [\"ArrowLeft\", e.NAME_ARROW_LEFT, e.CODE_ARROW_LEFT].includes(this.key);\n }\n }, {\n key: \"IS_ARROW_RIGHT\",\n get: function() {\n return [\"ArrowRight\", e.NAME_ARROW_RIGHT, e.CODE_ARROW_RIGHT].includes(this.key);\n }\n }, {\n key: \"IS_ARROW_UP\",\n get: function() {\n return [\"ArrowUp\", e.NAME_ARROW_UP, e.CODE_ARROW_UP].includes(this.key);\n }\n }, {\n key: \"IS_ARROW_DOWN\",\n get: function() {\n return [\"ArrowDown\", e.NAME_ARROW_DOWN, e.CODE_ARROW_DOWN].includes(this.key);\n }\n }, {\n key: \"IS_ENTER\",\n get: function() {\n return [e.NAME_ENTER, e.CODE_ENTER].includes(this.key);\n }\n }, {\n key: \"IS_SPACEBAR\",\n get: function() {\n return [e.NAME_SPACE, e.CODE_SPACE].includes(this.key);\n }\n }, {\n key: \"IS_TAB\",\n get: function() {\n return [e.NAME_TAB, e.CODE_TAB].includes(this.key);\n }\n }, {\n key: \"IS_ESC\",\n get: function() {\n return [\"Escape\", e.NAME_ESC, e.CODE_ESC].includes(this.key);\n }\n }, {\n key: \"IS_HOME\",\n get: function() {\n return [e.NAME_HOME, e.CODE_HOME].includes(this.key);\n }\n }, {\n key: \"IS_END\",\n get: function() {\n return [e.NAME_END, e.CODE_END].includes(this.key);\n }\n }, {\n key: \"IS_BACKSPACE\",\n get: function() {\n return [e.NAME_BACKSPACE, e.CODE_BACKSPACE].includes(this.key);\n }\n }, {\n key: \"IS_DELETE\",\n get: function() {\n return [e.NAME_DELETE, e.CODE_DELETE].includes(this.key);\n }\n }, {\n key: \"IS_SIDE_NAVIGATION\",\n get: function() {\n return this.IS_ARROW_LEFT || this.IS_ARROW_RIGHT || this.IS_END || this.IS_HOME;\n }\n }, {\n key: \"IS_ARROW_KEY\",\n get: function() {\n return this.IS_ARROW_LEFT || this.IS_ARROW_RIGHT || this.IS_ARROW_UP || this.IS_ARROW_DOWN;\n }\n }]), e;\n}();\nZt(yn, \"CODE_ARROW_UP\", 38);\nZt(yn, \"CODE_ARROW_DOWN\", 40);\nZt(yn, \"CODE_ARROW_LEFT\", 37);\nZt(yn, \"CODE_ARROW_RIGHT\", 39);\nZt(yn, \"CODE_ENTER\", 13);\nZt(yn, \"CODE_SPACE\", 32);\nZt(yn, \"CODE_ESC\", 27);\nZt(yn, \"CODE_TAB\", 9);\nZt(yn, \"CODE_CAPS_LOCK\", 20);\nZt(yn, \"CODE_HOME\", 36);\nZt(yn, \"CODE_END\", 35);\nZt(yn, \"CODE_BACKSPACE\", 8);\nZt(yn, \"CODE_DELETE\", 46);\nZt(yn, \"NAME_ARROW_UP\", \"Up\");\nZt(yn, \"NAME_ARROW_DOWN\", \"Down\");\nZt(yn, \"NAME_ARROW_LEFT\", \"Left\");\nZt(yn, \"NAME_ARROW_RIGHT\", \"Right\");\nZt(yn, \"NAME_ENTER\", \"Enter\");\nZt(yn, \"NAME_SPACE\", \" \");\nZt(yn, \"NAME_ESC\", \"Esc\");\nZt(yn, \"NAME_TAB\", \"Tab\");\nZt(yn, \"NAME_HOME\", \"Home\");\nZt(yn, \"NAME_END\", \"End\");\nZt(yn, \"NAME_BACKSPACE\", \"Backspace\");\nZt(yn, \"NAME_DELETE\", \"Delete\");\nvar S_, __, E_;\nfunction Aee(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = xr(e), n = t.screenReader, r = \"2.5rem\", a = V(S_ || (S_ = K([`\n label: appbadge_base;\n line-height: 0;\n `]))), i = V(__ || (__ = K([`\n label: ios;\n height: `, `;\n width: `, `;\n vertical-align: bottom;\n `])), r, \"7.5rem\"), o = V(E_ || (E_ = K([`\n label: android;\n height: `, `;\n width: `, `;\n vertical-align: bottom;\n `])), r, \"8.4375rem\");\n return {\n base: a,\n ios: i,\n android: o,\n screenReader: n\n };\n}\nvar Nee = [\"url\", \"platform\", \"locale\", \"className\", \"imageClassName\", \"cdnHost\", \"children\"], Oee = \"en-US\", Lee = function(e, t) {\n var n = e.toString().replace(\"-\", \"_\");\n return {\n locale: n,\n ios: \"https://\".concat(t, \"/appbadges/badges/\").concat(n, \"/ios.svg\"),\n ios_white: \"https://\".concat(t, \"/appbadges/badges/\").concat(n, \"/ios_white.svg\"),\n android: \"https://\".concat(t, \"/appbadges/badges/\").concat(n, \"/android-no-padding.svg\")\n };\n}, kee = function(e) {\n var t = e.url, n = e.platform, r = e.locale, a = r === void 0 ? Oee : r, i = e.className, o = e.imageClassName, s = e.cdnHost, u = s === void 0 ? \"www.paypalobjects.com\" : s, l = e.children, c = Qt(e, Nee);\n t || console.warn(\"Required prop `url` is missing.\");\n var d = gn(), p = wt(function() {\n return Aee(d);\n }, [d]), g = n === \"android\" ? p.android : p.ios, v = wt(function() {\n return Lee(a, u);\n }, [a]), b = v[n];\n return ue(\"a\", bt({\n href: t,\n css: p.base,\n className: i,\n \"data-ppui-info\": \"appbadge_2.2.3\"\n }, c), ue(\"span\", {\n css: p.screenReader,\n \"data-ppui\": \"true\"\n }, l), ue(\"img\", {\n alt: n,\n css: g,\n className: o,\n src: b,\n \"aria-hidden\": \"true\",\n \"data-ppui\": \"true\"\n }));\n}, Zl = /* @__PURE__ */ ((e) => (e.ios = \"ios\", e.android = \"android\", e))(Zl || {});\nconst Iee = \"AppstoreButton\", Dee = new ke(Iee), Pee = ({\n url: e = \"\",\n ariaLabel: t = \"\",\n className: n = \"\",\n target: r = \"_self\",\n analyticsCompName: a = \"\",\n platform: i,\n ...o\n}) => {\n const { pageSegment: s, clientInfo: u } = Ze(Vt), { buttonStyle: l, ...c } = o, d = (u == null ? void 0 : u.clientLocale) || \"en_US\", p = se(Dee.getComponentClassName(), n), g = (v, b, C) => {\n const w = Nn(\n {\n componentName: a,\n linkText: v,\n linkType: Pa.AppDownload,\n clickEvent: Ca.GetTheApp\n },\n s,\n ln.CTA\n );\n return /* @__PURE__ */ h.jsx(\n kee,\n {\n platform: C,\n url: b,\n locale: d,\n className: p,\n target: r,\n \"aria-label\": v,\n \"data-pa-click\": a && w,\n ...c,\n children: v\n }\n );\n };\n return i === Zl.android ? g(t, e, Zl.android) : i === Zl.ios ? g(t, e, Zl.ios) : null;\n};\nconst Mee = \"ArrowIcon\", Ks = new ke(Mee), Go = ({ size: e = \"Large\", className: t = \"\" }) => {\n const n = se(\n Ks.getComponentClassName(),\n Ks.getElementClassName(\"theme\"),\n Ks.getPropsValueClassName(\"size\", e),\n t\n ), r = se(Ks.getElementClassName(\"stroke\"));\n return /* @__PURE__ */ h.jsxs(\"span\", { className: n, children: [\n \" \",\n /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: Ks.getElementClassName(\"arrow\"),\n width: \"28\",\n height: \"17\",\n viewBox: \"0 0 28 17\",\n fill: \"none\",\n preserveAspectRatio: \"xMinYMin meet\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-hidden\": \"true\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: r,\n d: \"M26 8.01221H1\",\n strokeWidth: \"2\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: r,\n d: \"M19.5 1.01221L26.5 8.01221L19.5 15.0122\",\n strokeWidth: \"2\",\n strokeLinecap: \"round\",\n strokeLinejoin: \"round\"\n }\n )\n ]\n }\n ),\n /* @__PURE__ */ h.jsx(\"span\", { className: Ks.getElementClassName(\"circle\") })\n ] });\n}, eh = (e, t = \"\", n = \"\", r = \"\", a = \"\") => !n || !e || ![Cf.mobile, Cf.portable].includes(\n e\n) ? qi(t, r, a) : qi(n, r, a);\nconst UI = \"InlineButton\", Wm = new ke(UI), WI = (e, t, n) => {\n if (!t)\n return e;\n const a = e.trim().split(\" \"), i = a[a.length - 1];\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n `${a.slice(0, -1).join(\" \")} `,\n /* @__PURE__ */ h.jsxs(\"span\", { className: \"text-with-arrow\", children: [\n i,\n \" \",\n /* @__PURE__ */ h.jsx(Go, { size: n })\n ] })\n ] });\n}, Ree = ({\n className: e,\n size: t = \"Large\",\n text: n = \"\",\n ariaLabel: r = \"\",\n url: a = \"\",\n mobileUrl: i = \"\",\n target: o = \"_self\",\n analyticsCompName: s = \"\",\n clickEventName: u = Ca.Button,\n mid: l,\n showArrowIcon: c = !0,\n mabReward: d\n}) => {\n const { pageSegment: p, clientInfo: g, host: v, country: b } = Ze(Vt), { clientType: C } = g || {}, _ = {\n href: eh(C, a, i, v, b),\n target: o\n };\n if (r && (_[\"aria-label\"] = r), s) {\n const x = Nn(\n {\n componentName: s,\n linkText: n,\n clickEvent: u,\n ariaLabel: r,\n mid: l,\n mabReward: d\n },\n p,\n ln.CTA\n );\n _[\"data-pa-click\"] = x;\n }\n return /* @__PURE__ */ h.jsx(\"a\", { className: e, ..._, children: WI(n, c, t) });\n}, xi = (e) => {\n const {\n className: t,\n size: n = \"Large\",\n text: r = \"\",\n type: a = \"link\",\n showArrowIcon: i = !0\n } = e, o = se(\n Wm.getElementClassName(\"theme\"),\n Wm.getComponentClassName(),\n Wm.getPropsValueClassName(\"size\", n),\n t,\n \"arrow-icon-active-hover\",\n i ? \"\" : \"inline-button-without-arrow\"\n );\n if (a === \"span\")\n return /* @__PURE__ */ h.jsx(\"span\", { className: o, children: WI(r, i, n) });\n const s = {\n ...e,\n /* We want to overwrite the \"className\" prop as we already used it */\n className: o\n };\n return /* @__PURE__ */ h.jsx(Ree, { ...s });\n};\nxi.displayName = UI;\nvar w_, T_, A_, N_, O_, L_, k_, I_, D_;\nfunction Fr(e, t) {\n if (!Object.keys(e).length)\n return {};\n var n = e.sysColorBackgroundHighContrast, r = e.sysColorBackgroundMediumContrast, a = e.sysTypographyDisplayFamily, i = e.sysTypographyDisplaySize, o = e.sysTypographyDisplayWeight, s = e.sysTypographyDisplayLineHeight, u = e.sysTypographyDisplayMaxScaleFactor, l = e.sysTypographyHeadingLgFamily, c = e.sysTypographyHeadingLgSize, d = e.sysTypographyHeadingLgWeight, p = e.sysTypographyHeadingLgLineHeight, g = e.sysTypographyHeadingLgMaxScaleFactor, v = e.sysTypographyHeadingSmFamily, b = e.sysTypographyHeadingSmSize, C = e.sysTypographyHeadingSmWeight, w = e.sysTypographyHeadingSmLineHeight, _ = e.sysTypographyHeadingSmMaxScaleFactor, x = e.sysTypographyTitleStrongFamily, S = e.sysTypographyTitleStrongSize, E = e.sysTypographyTitleStrongWeight, N = e.sysTypographyTitleStrongLineHeight, P = e.sysTypographyTitleStrongMaxScaleFactor, H = e.sysTypographyTitleFamily, k = e.sysTypographyTitleSize, Q = e.sysTypographyTitleWeight, I = e.sysTypographyTitleLineHeight, G = e.sysTypographyTitleMaxScaleFactor, $ = e.sysTypographyBodyStrongFamily, z = e.sysTypographyBodyStrongSize, B = e.sysTypographyBodyStrongWeight, O = e.sysTypographyBodyStrongLineHeight, D = e.sysTypographyBodyStrongMaxScaleFactor, T = e.sysTypographyBodyFamily, j = e.sysTypographyBodySize, F = e.sysTypographyBodyWeight, L = e.sysTypographyBodyLineHeight, q = e.sysTypographyBodyMaxScaleFactor, W = e.sysTypographyCaptionFamily, X = e.sysTypographyCaptionSize, de = e.sysTypographyCaptionWeight, Se = e.sysTypographyCaptionLineHeight, Te = e.sysTypographyCaptionMaxScaleFactor, Le = e.sysTypographyCaptionStrongFamily, Ge = e.sysTypographyCaptionStrongSize, Ne = e.sysTypographyCaptionStrongWeight, ie = e.sysTypographyCaptionStrongLineHeight, Ce = e.sysTypographyCaptionStrongMaxScaleFactor, ve = e.sysTypographyButtonLgFamily, Ae = e.sysTypographyButtonLgSize, _e = e.sysTypographyButtonLgWeight, He = e.sysTypographyButtonLgLineHeight, Oe = e.sysTypographyButtonLgMaxScaleFactor, Be = e.sysTypographyButtonSmFamily, qe = e.sysTypographyButtonSmSize, Ye = e.sysTypographyButtonSmWeight, Xe = e.sysTypographyButtonSmLineHeight, Ve = e.sysTypographyButtonSmMaxScaleFactor, $e = e.sysTypographyFieldLabelLgFamily, Je = e.sysTypographyFieldLabelLgSize, Tt = e.sysTypographyFieldLabelLgWeight, ct = e.sysTypographyFieldLabelLgLineHeight, Dt = e.sysTypographyFieldLabelLgMaxScaleFactor, mt = e.sysTypographyFieldLabelSmFamily, et = e.sysTypographyFieldLabelSmSize, dt = e.sysTypographyFieldLabelSmWeight, Fe = e.sysTypographyFieldLabelSmLineHeight, Ot = e.sysTypographyFieldLabelSmMaxScaleFactor, nt = e.sysTypographyFieldValueXlFamily, Ie = e.sysTypographyFieldValueXlSize, st = e.sysTypographyFieldValueXlWeight, kt = e.sysTypographyFieldValueXlLineHeight, Mt = e.sysTypographyFieldValueXlMaxScaleFactor, Kt = e.sysTypographyFieldValueLgFamily, Rt = e.sysTypographyFieldValueLgSize, jt = e.sysTypographyFieldValueLgWeight, _t = e.sysTypographyFieldValueLgLineHeight, _n = e.sysTypographyFieldValueLgMaxScaleFactor, Rn = e.sysTypographyFieldValueSmFamily, rr = e.sysTypographyFieldValueSmSize, Jn = e.sysTypographyFieldValueSmWeight, yt = e.sysTypographyFieldValueSmLineHeight, Yt = e.sysTypographyFieldValueSmMaxScaleFactor, dn = e.sysSizeMediaMd, Er = xr(e), cr = Er.shimmerStyles, wr = \"16px\";\n function Ta(ht, gt) {\n var Jt = De(\"\".concat(ht, \"*\").concat(gt)), It = Mo(Jt, wr);\n return \"min(\".concat(ht, \", \").concat(It, \")\");\n }\n function Ct(ht, gt, Jt, It, rn, eo, Aa) {\n var am = \"\".concat(Jt, ', \"Helvetica Neue\", Arial, sans-serif'), Md = Mo(dn, wr);\n return V(w_ || (w_ = K([`\n label: `, `;\n color: `, `;\n font-family: `, `;\n font-size: `, `;\n line-height: `, `;\n font-weight: `, `;\n\n @media screen and (max-width: `, `) {\n font-size: `, `;\n line-height: `, `;\n }\n `])), ht, Xt(t, gt, \"contrast\"), am, It, eo, Aa, Md, Ta(It, rn), Ta(eo, rn));\n }\n function Wt(ht) {\n var gt = ht > 4 ? 4 : ht;\n return V(T_ || (T_ = K([`\n label: `, `;\n display: -webkit-box;\n -webkit-box-orient: vertical;\n overflow: hidden;\n -webkit-line-clamp: `, `;\n `])), \"line_clamp_\".concat(gt), gt);\n }\n var On = V(A_ || (A_ = K([`\n label: text_shimmer;\n `, `\n `])), cr.defaults()), Bt = V(N_ || (N_ = K([`\n label: display;\n height: `, `;\n `])), s), ft = V(O_ || (O_ = K([`\n label: heading_lg;\n height: `, `;\n `])), p), xt = V(L_ || (L_ = K([`\n label: heading_sm;\n height: `, `;\n `])), w), nn = V(k_ || (k_ = K([`\n label: body;\n height: `, `;\n `])), L), Pn = V(I_ || (I_ = K([`\n label: caption;\n height: `, `;\n `])), Se), Tr = V(D_ || (D_ = K([`\n label: title;\n height: `, `;\n `])), I);\n return {\n body: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? L : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_body\", rn, T, j, q, Jt, F);\n },\n bodyStrong: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? O : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_body_strong\", rn, $, z, D, Jt, B);\n },\n caption: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? Se : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_caption\", rn, W, X, Te, Jt, de);\n },\n captionStrong: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? ie : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_caption_strong\", rn, Le, Ge, Ce, Jt, Ne);\n },\n headingSm: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? w : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_heading_sm\", rn, v, b, _, Jt, C);\n },\n headingLg: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? p : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_heading_lg\", rn, l, c, g, Jt, d);\n },\n display: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? s : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_display\", rn, a, i, u, Jt, o);\n },\n title: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? I : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_title\", rn, H, k, G, Jt, Q);\n },\n titleStrong: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? N : gt, It = ht.color, rn = It === void 0 ? n : It, eo = ht.label, Aa = eo === void 0 ? \"text_title_strong\" : eo;\n return Ct(Aa, rn, x, S, P, Jt, E);\n },\n buttonLg: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? He : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_button_lg\", rn, ve, Ae, Oe, Jt, _e);\n },\n buttonSm: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? Xe : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_button_sm\", rn, Be, qe, Ve, Jt, Ye);\n },\n fieldLabelSm: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? Fe : gt, It = ht.color, rn = It === void 0 ? r : It;\n return Ct(\"text_field_label_sm\", rn, mt, et, Ot, Jt, dt);\n },\n fieldLabelLg: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? ct : gt, It = ht.color, rn = It === void 0 ? r : It;\n return Ct(\"text_field_label_lg\", rn, $e, Je, Dt, Jt, Tt);\n },\n fieldValueSm: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? yt : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_field_value_sm\", rn, Rn, rr, Yt, Jt, Jn);\n },\n fieldValueLg: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? _t : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_field_value_lg\", rn, Kt, Rt, _n, Jt, jt);\n },\n fieldValueXl: function() {\n var ht = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, gt = ht.lineHeight, Jt = gt === void 0 ? kt : gt, It = ht.color, rn = It === void 0 ? n : It;\n return Ct(\"text_field_value_xl\", rn, nt, Ie, Mt, Jt, st);\n },\n lineClamping: Wt,\n shimmer: On,\n shimmerDisplay: Bt,\n shimmerHeadingLg: ft,\n shimmerHeadingSm: xt,\n shimmerBody: nn,\n shimmerCaption: Pn,\n shimmerTitle: Tr\n };\n}\nvar Bee = [\"as\", \"strong\", \"className\", \"isLoading\", \"isInverse\", \"clampAtLine\", \"children\"], KI = function(e) {\n var t, n = e.as, r = n === void 0 ? \"div\" : n, a = e.strong, i = e.className, o = e.isLoading, s = e.isInverse, u = e.clampAtLine, l = e.children, c = Qt(e, Bee), d = gn(), p = vt.useContext(Qp), g = wt(function() {\n return Fr(d, p);\n }, [d, p]);\n if (o)\n return ue(Zp, bt({\n css: [g.shimmer, g.shimmerBody],\n className: i,\n hasStyleDefaults: !1,\n isInverse: s\n }, c, {\n \"data-ppui\": \"true\"\n }), l);\n var v = [!a && g.body, a && g.bodyStrong, u && ((t = g.lineClamping) === null || t === void 0 ? void 0 : t.call(g, u))];\n return ue(r, bt({\n css: v,\n className: i,\n \"data-ppui-info\": \"body-text_6.7.4\"\n }, c), l);\n}, Fee = [\"as\", \"strong\", \"clampAtLine\", \"className\", \"isLoading\", \"isInverse\", \"children\"], zb = function(e) {\n var t, n = e.as, r = n === void 0 ? \"div\" : n, a = e.strong, i = e.clampAtLine, o = e.className, s = e.isLoading, u = e.isInverse, l = e.children, c = Qt(e, Fee), d = gn(), p = vt.useContext(Qp), g = wt(function() {\n return Fr(d, p);\n }, [d, p]);\n if (s)\n return ue(Zp, bt({\n css: [g.shimmer, g.shimmerCaption],\n className: o,\n hasStyleDefaults: !1,\n isInverse: u\n }, c, {\n \"data-ppui\": \"true\"\n }), l);\n var v = [!a && g.caption, a && g.captionStrong, i && ((t = g.lineClamping) === null || t === void 0 ? void 0 : t.call(g, i))];\n return ue(r, bt({\n css: v,\n className: o,\n \"data-ppui-info\": \"caption-text_6.7.4\"\n }, c), l);\n}, P_, M_, R_, B_, F_, j_, $_;\nfunction jee(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysColorPrimaryMain, n = e.sysColorPrimaryContrast, r = e.sysSizeCircleXs, a = e.sysSizeCircleSm, i = e.sysSizeCircleMd, o = e.sysSizeCircleXl, s = e.sysBorderThicknessEmphasis, u = lp(P_ || (P_ = K([`\n to {\n transform: rotate(360deg);\n }\n `]))), l = xr(e), c = l.screenReader, d = V(M_ || (M_ = K([`\n label: loading-spinner_base;\n width: `, `;\n height: `, `;\n color: `, `;\n animation: `, ` 1s linear infinite;\n border: `, ` solid currentColor;\n border-radius: 50%;\n clip-path: polygon(50% 0%, 50% 50%, 100% 50%, 100% 100%, 0 100%, 0 0);\n `])), r, r, t, u, s), p = V(R_ || (R_ = K([`\n label: size_xs;\n width: `, `;\n height: `, `;\n `])), r, r), g = V(B_ || (B_ = K([`\n label: size_md;\n width: `, `;\n height: `, `;\n `])), a, a), v = V(F_ || (F_ = K([`\n label: size_lg;\n width: `, `;\n height: `, `;\n `])), i, i), b = V(j_ || (j_ = K([`\n label: size_xl;\n width: `, `;\n height: `, `;\n `])), o, o), C = V($_ || ($_ = K([`\n label: inverse;\n color: `, `;\n `])), n);\n return {\n base: d,\n sizeXs: p,\n sizeMd: g,\n sizeLg: v,\n sizeXl: b,\n inverse: C,\n screenReader: c\n };\n}\nvar $ee = [\"as\", \"className\", \"inverse\", \"size\", \"screenReaderText\"], th = function(e) {\n var t = e.as, n = t === void 0 ? \"p\" : t, r = e.className, a = e.inverse, i = e.size, o = e.screenReaderText, s = Qt(e, $ee), u = gn(), l = wt(function() {\n return jee(u);\n }, [u]), c = {\n xs: l.sizeXs,\n // to be used for stateful buttons ONLY.\n sm: \"\",\n md: l.sizeMd,\n lg: l.sizeLg,\n xl: l.sizeXl\n }, d = [l.base, a && l.inverse, c[i]];\n return ue(n, bt({\n css: d,\n className: r,\n \"data-ppui-info\": \"loading-spinner_3.1.15\"\n }, s, {\n role: \"alert\"\n }), ue(\"span\", {\n css: l.screenReader,\n \"data-ppui\": \"true\"\n }, o));\n};\nfunction H_(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction Hee(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? H_(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : H_(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar YI = function(e) {\n var t = e.id, n = t === void 0 ? Za(\"animatee#\") : t, r = e.shouldHide, a = r === void 0 ? !1 : r, i = e.onOpen, o = e.onClose, s = e.onCloseComplete, u = s === void 0 ? o : s, l = e.phaseProps, c = l === void 0 ? {\n initial: {\n isHidden: !0\n },\n showing: {\n isHidden: !1\n },\n hiding: {\n isHidden: !0\n }\n } : l, d = e.children, p = ze(\"initial\"), g = fn(p, 2), v = g[0], b = g[1], C = Ue({\n event: null,\n closeMethod: \"\"\n }), w = Ue(n);\n We(function() {\n }), We(function() {\n var S;\n return !a && v === \"initial\" && (S = setTimeout(function() {\n return b(\"showing\");\n }, 10)), a && v !== \"initial\" && (C.current.closeMethod = \"caller\", b(\"hiding\")), function() {\n S && clearTimeout(S);\n };\n }, [a]);\n var _ = function(S) {\n if (S.target.dataset.animatee === w.current) {\n if (v === \"hiding\") {\n var E = C.current || {}, N = E.event, P = E.closeMethod;\n typeof u == \"function\" && u(N, P), b(\"initial\");\n } else\n typeof i == \"function\" && i(S);\n S.stopPropagation(), S.nativeEvent.stopImmediatePropagation();\n }\n };\n if (a && v === \"initial\")\n return null;\n var x = Hee({\n requestClose: function(E, N) {\n C.current.event = E, C.current.closeMethod = N, b(\"hiding\");\n },\n \"data-animatee\": w.current\n }, c[v]);\n return /* @__PURE__ */ vt.createElement(\"div\", {\n \"data-testid\": \"animator\",\n onTransitionEnd: _,\n onAnimationEnd: _,\n \"data-ppui\": \"true\"\n }, d(x));\n}, XI = { exports: {} }, ZI = { exports: {} };\n(function(e) {\n function t(n) {\n \"@babel/helpers - typeof\";\n return e.exports = t = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(r) {\n return typeof r;\n } : function(r) {\n return r && typeof Symbol == \"function\" && r.constructor === Symbol && r !== Symbol.prototype ? \"symbol\" : typeof r;\n }, e.exports.__esModule = !0, e.exports.default = e.exports, t(n);\n }\n e.exports = t, e.exports.__esModule = !0, e.exports.default = e.exports;\n})(ZI);\nvar Vee = ZI.exports;\n(function(e) {\n var t = Vee.default;\n function n() {\n e.exports = n = function() {\n return r;\n }, e.exports.__esModule = !0, e.exports.default = e.exports;\n var r = {}, a = Object.prototype, i = a.hasOwnProperty, o = Object.defineProperty || function(B, O, D) {\n B[O] = D.value;\n }, s = typeof Symbol == \"function\" ? Symbol : {}, u = s.iterator || \"@@iterator\", l = s.asyncIterator || \"@@asyncIterator\", c = s.toStringTag || \"@@toStringTag\";\n function d(B, O, D) {\n return Object.defineProperty(B, O, {\n value: D,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }), B[O];\n }\n try {\n d({}, \"\");\n } catch {\n d = function(D, T, j) {\n return D[T] = j;\n };\n }\n function p(B, O, D, T) {\n var j = O && O.prototype instanceof b ? O : b, F = Object.create(j.prototype), L = new G(T || []);\n return o(F, \"_invoke\", {\n value: H(B, D, L)\n }), F;\n }\n function g(B, O, D) {\n try {\n return {\n type: \"normal\",\n arg: B.call(O, D)\n };\n } catch (T) {\n return {\n type: \"throw\",\n arg: T\n };\n }\n }\n r.wrap = p;\n var v = {};\n function b() {\n }\n function C() {\n }\n function w() {\n }\n var _ = {};\n d(_, u, function() {\n return this;\n });\n var x = Object.getPrototypeOf, S = x && x(x($([])));\n S && S !== a && i.call(S, u) && (_ = S);\n var E = w.prototype = b.prototype = Object.create(_);\n function N(B) {\n [\"next\", \"throw\", \"return\"].forEach(function(O) {\n d(B, O, function(D) {\n return this._invoke(O, D);\n });\n });\n }\n function P(B, O) {\n function D(j, F, L, q) {\n var W = g(B[j], B, F);\n if (W.type !== \"throw\") {\n var X = W.arg, de = X.value;\n return de && t(de) == \"object\" && i.call(de, \"__await\") ? O.resolve(de.__await).then(function(Se) {\n D(\"next\", Se, L, q);\n }, function(Se) {\n D(\"throw\", Se, L, q);\n }) : O.resolve(de).then(function(Se) {\n X.value = Se, L(X);\n }, function(Se) {\n return D(\"throw\", Se, L, q);\n });\n }\n q(W.arg);\n }\n var T;\n o(this, \"_invoke\", {\n value: function(F, L) {\n function q() {\n return new O(function(W, X) {\n D(F, L, W, X);\n });\n }\n return T = T ? T.then(q, q) : q();\n }\n });\n }\n function H(B, O, D) {\n var T = \"suspendedStart\";\n return function(j, F) {\n if (T === \"executing\")\n throw new Error(\"Generator is already running\");\n if (T === \"completed\") {\n if (j === \"throw\")\n throw F;\n return z();\n }\n for (D.method = j, D.arg = F; ; ) {\n var L = D.delegate;\n if (L) {\n var q = k(L, D);\n if (q) {\n if (q === v)\n continue;\n return q;\n }\n }\n if (D.method === \"next\")\n D.sent = D._sent = D.arg;\n else if (D.method === \"throw\") {\n if (T === \"suspendedStart\")\n throw T = \"completed\", D.arg;\n D.dispatchException(D.arg);\n } else\n D.method === \"return\" && D.abrupt(\"return\", D.arg);\n T = \"executing\";\n var W = g(B, O, D);\n if (W.type === \"normal\") {\n if (T = D.done ? \"completed\" : \"suspendedYield\", W.arg === v)\n continue;\n return {\n value: W.arg,\n done: D.done\n };\n }\n W.type === \"throw\" && (T = \"completed\", D.method = \"throw\", D.arg = W.arg);\n }\n };\n }\n function k(B, O) {\n var D = O.method, T = B.iterator[D];\n if (T === void 0)\n return O.delegate = null, D === \"throw\" && B.iterator.return && (O.method = \"return\", O.arg = void 0, k(B, O), O.method === \"throw\") || D !== \"return\" && (O.method = \"throw\", O.arg = new TypeError(\"The iterator does not provide a '\" + D + \"' method\")), v;\n var j = g(T, B.iterator, O.arg);\n if (j.type === \"throw\")\n return O.method = \"throw\", O.arg = j.arg, O.delegate = null, v;\n var F = j.arg;\n return F ? F.done ? (O[B.resultName] = F.value, O.next = B.nextLoc, O.method !== \"return\" && (O.method = \"next\", O.arg = void 0), O.delegate = null, v) : F : (O.method = \"throw\", O.arg = new TypeError(\"iterator result is not an object\"), O.delegate = null, v);\n }\n function Q(B) {\n var O = {\n tryLoc: B[0]\n };\n 1 in B && (O.catchLoc = B[1]), 2 in B && (O.finallyLoc = B[2], O.afterLoc = B[3]), this.tryEntries.push(O);\n }\n function I(B) {\n var O = B.completion || {};\n O.type = \"normal\", delete O.arg, B.completion = O;\n }\n function G(B) {\n this.tryEntries = [{\n tryLoc: \"root\"\n }], B.forEach(Q, this), this.reset(!0);\n }\n function $(B) {\n if (B) {\n var O = B[u];\n if (O)\n return O.call(B);\n if (typeof B.next == \"function\")\n return B;\n if (!isNaN(B.length)) {\n var D = -1, T = function j() {\n for (; ++D < B.length; )\n if (i.call(B, D))\n return j.value = B[D], j.done = !1, j;\n return j.value = void 0, j.done = !0, j;\n };\n return T.next = T;\n }\n }\n return {\n next: z\n };\n }\n function z() {\n return {\n value: void 0,\n done: !0\n };\n }\n return C.prototype = w, o(E, \"constructor\", {\n value: w,\n configurable: !0\n }), o(w, \"constructor\", {\n value: C,\n configurable: !0\n }), C.displayName = d(w, c, \"GeneratorFunction\"), r.isGeneratorFunction = function(B) {\n var O = typeof B == \"function\" && B.constructor;\n return !!O && (O === C || (O.displayName || O.name) === \"GeneratorFunction\");\n }, r.mark = function(B) {\n return Object.setPrototypeOf ? Object.setPrototypeOf(B, w) : (B.__proto__ = w, d(B, c, \"GeneratorFunction\")), B.prototype = Object.create(E), B;\n }, r.awrap = function(B) {\n return {\n __await: B\n };\n }, N(P.prototype), d(P.prototype, l, function() {\n return this;\n }), r.AsyncIterator = P, r.async = function(B, O, D, T, j) {\n j === void 0 && (j = Promise);\n var F = new P(p(B, O, D, T), j);\n return r.isGeneratorFunction(O) ? F : F.next().then(function(L) {\n return L.done ? L.value : F.next();\n });\n }, N(E), d(E, c, \"Generator\"), d(E, u, function() {\n return this;\n }), d(E, \"toString\", function() {\n return \"[object Generator]\";\n }), r.keys = function(B) {\n var O = Object(B), D = [];\n for (var T in O)\n D.push(T);\n return D.reverse(), function j() {\n for (; D.length; ) {\n var F = D.pop();\n if (F in O)\n return j.value = F, j.done = !1, j;\n }\n return j.done = !0, j;\n };\n }, r.values = $, G.prototype = {\n constructor: G,\n reset: function(O) {\n if (this.prev = 0, this.next = 0, this.sent = this._sent = void 0, this.done = !1, this.delegate = null, this.method = \"next\", this.arg = void 0, this.tryEntries.forEach(I), !O)\n for (var D in this)\n D.charAt(0) === \"t\" && i.call(this, D) && !isNaN(+D.slice(1)) && (this[D] = void 0);\n },\n stop: function() {\n this.done = !0;\n var O = this.tryEntries[0].completion;\n if (O.type === \"throw\")\n throw O.arg;\n return this.rval;\n },\n dispatchException: function(O) {\n if (this.done)\n throw O;\n var D = this;\n function T(X, de) {\n return L.type = \"throw\", L.arg = O, D.next = X, de && (D.method = \"next\", D.arg = void 0), !!de;\n }\n for (var j = this.tryEntries.length - 1; j >= 0; --j) {\n var F = this.tryEntries[j], L = F.completion;\n if (F.tryLoc === \"root\")\n return T(\"end\");\n if (F.tryLoc <= this.prev) {\n var q = i.call(F, \"catchLoc\"), W = i.call(F, \"finallyLoc\");\n if (q && W) {\n if (this.prev < F.catchLoc)\n return T(F.catchLoc, !0);\n if (this.prev < F.finallyLoc)\n return T(F.finallyLoc);\n } else if (q) {\n if (this.prev < F.catchLoc)\n return T(F.catchLoc, !0);\n } else {\n if (!W)\n throw new Error(\"try statement without catch or finally\");\n if (this.prev < F.finallyLoc)\n return T(F.finallyLoc);\n }\n }\n }\n },\n abrupt: function(O, D) {\n for (var T = this.tryEntries.length - 1; T >= 0; --T) {\n var j = this.tryEntries[T];\n if (j.tryLoc <= this.prev && i.call(j, \"finallyLoc\") && this.prev < j.finallyLoc) {\n var F = j;\n break;\n }\n }\n F && (O === \"break\" || O === \"continue\") && F.tryLoc <= D && D <= F.finallyLoc && (F = null);\n var L = F ? F.completion : {};\n return L.type = O, L.arg = D, F ? (this.method = \"next\", this.next = F.finallyLoc, v) : this.complete(L);\n },\n complete: function(O, D) {\n if (O.type === \"throw\")\n throw O.arg;\n return O.type === \"break\" || O.type === \"continue\" ? this.next = O.arg : O.type === \"return\" ? (this.rval = this.arg = O.arg, this.method = \"return\", this.next = \"end\") : O.type === \"normal\" && D && (this.next = D), v;\n },\n finish: function(O) {\n for (var D = this.tryEntries.length - 1; D >= 0; --D) {\n var T = this.tryEntries[D];\n if (T.finallyLoc === O)\n return this.complete(T.completion, T.afterLoc), I(T), v;\n }\n },\n catch: function(O) {\n for (var D = this.tryEntries.length - 1; D >= 0; --D) {\n var T = this.tryEntries[D];\n if (T.tryLoc === O) {\n var j = T.completion;\n if (j.type === \"throw\") {\n var F = j.arg;\n I(T);\n }\n return F;\n }\n }\n throw new Error(\"illegal catch attempt\");\n },\n delegateYield: function(O, D, T) {\n return this.delegate = {\n iterator: $(O),\n resultName: D,\n nextLoc: T\n }, this.method === \"next\" && (this.arg = void 0), v;\n }\n }, r;\n }\n e.exports = n, e.exports.__esModule = !0, e.exports.default = e.exports;\n})(XI);\nvar zee = XI.exports, U0 = zee(), qee = U0;\ntry {\n regeneratorRuntime = U0;\n} catch {\n typeof globalThis == \"object\" ? globalThis.regeneratorRuntime = U0 : Function(\"r\", \"regeneratorRuntime = r\")(U0);\n}\nconst kf = /* @__PURE__ */ dp(qee);\nfunction V_(e, t, n, r, a, i, o) {\n try {\n var s = e[i](o), u = s.value;\n } catch (l) {\n n(l);\n return;\n }\n s.done ? t(u) : Promise.resolve(u).then(r, a);\n}\nfunction QI(e) {\n return function() {\n var t = this, n = arguments;\n return new Promise(function(r, a) {\n var i = e.apply(t, n);\n function o(u) {\n V_(i, r, a, o, s, \"next\", u);\n }\n function s(u) {\n V_(i, r, a, o, s, \"throw\", u);\n }\n o(void 0);\n });\n };\n}\nvar W0 = \"right-scroll-bar-position\", K0 = \"width-before-scroll-bar\", Gee = \"with-scroll-bars-hidden\", Uee = \"--removed-body-scroll-bar-size\";\nfunction Wee(e, t) {\n return typeof e == \"function\" ? e(t) : e && (e.current = t), e;\n}\nfunction Kee(e, t) {\n var n = ze(function() {\n return {\n // value\n value: e,\n // last callback\n callback: t,\n // \"memoized\" public interface\n facade: {\n get current() {\n return n.value;\n },\n set current(r) {\n var a = n.value;\n a !== r && (n.value = r, n.callback(r, a));\n }\n }\n };\n })[0];\n return n.callback = t, n.facade;\n}\nfunction JI(e, t) {\n return Kee(t || null, function(n) {\n return e.forEach(function(r) {\n return Wee(r, n);\n });\n });\n}\nfunction eD(e) {\n return e;\n}\nfunction tD(e, t) {\n t === void 0 && (t = eD);\n var n = [], r = !1, a = {\n read: function() {\n if (r)\n throw new Error(\"Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.\");\n return n.length ? n[n.length - 1] : e;\n },\n useMedium: function(i) {\n var o = t(i, r);\n return n.push(o), function() {\n n = n.filter(function(s) {\n return s !== o;\n });\n };\n },\n assignSyncMedium: function(i) {\n for (r = !0; n.length; ) {\n var o = n;\n n = [], o.forEach(i);\n }\n n = {\n push: function(s) {\n return i(s);\n },\n filter: function() {\n return n;\n }\n };\n },\n assignMedium: function(i) {\n r = !0;\n var o = [];\n if (n.length) {\n var s = n;\n n = [], s.forEach(i), o = n;\n }\n var u = function() {\n var c = o;\n o = [], c.forEach(i);\n }, l = function() {\n return Promise.resolve().then(u);\n };\n l(), n = {\n push: function(c) {\n o.push(c), l();\n },\n filter: function(c) {\n return o = o.filter(c), n;\n }\n };\n }\n };\n return a;\n}\nfunction qb(e, t) {\n return t === void 0 && (t = eD), tD(e, t);\n}\nfunction Gb(e) {\n e === void 0 && (e = {});\n var t = tD(null);\n return t.options = Qe({ async: !0, ssr: !1 }, e), t;\n}\nvar nD = function(e) {\n var t = e.sideCar, n = nr(e, [\"sideCar\"]);\n if (!t)\n throw new Error(\"Sidecar: please provide `sideCar` property to import the right car\");\n var r = t.read();\n if (!r)\n throw new Error(\"Sidecar medium not found\");\n return ut.createElement(r, Qe({}, n));\n};\nnD.isSideCarExport = !0;\nfunction Ub(e, t) {\n return e.useMedium(t), nD;\n}\nvar rD = Gb(), Km = function() {\n}, Wb = ut.forwardRef(function(e, t) {\n var n = ut.useRef(null), r = ut.useState({\n onScrollCapture: Km,\n onWheelCapture: Km,\n onTouchMoveCapture: Km\n }), a = r[0], i = r[1], o = e.forwardProps, s = e.children, u = e.className, l = e.removeScrollBar, c = e.enabled, d = e.shards, p = e.sideCar, g = e.noIsolation, v = e.inert, b = e.allowPinchZoom, C = e.as, w = C === void 0 ? \"div\" : C, _ = e.gapMode, x = nr(e, [\"forwardProps\", \"children\", \"className\", \"removeScrollBar\", \"enabled\", \"shards\", \"sideCar\", \"noIsolation\", \"inert\", \"allowPinchZoom\", \"as\", \"gapMode\"]), S = p, E = JI([n, t]), N = Qe(Qe({}, x), a);\n return ut.createElement(\n ut.Fragment,\n null,\n c && ut.createElement(S, { sideCar: rD, removeScrollBar: l, shards: d, noIsolation: g, inert: v, setCallbacks: i, allowPinchZoom: !!b, lockRef: n, gapMode: _ }),\n o ? ut.cloneElement(ut.Children.only(s), Qe(Qe({}, N), { ref: E })) : ut.createElement(w, Qe({}, N, { className: u, ref: E }), s)\n );\n});\nWb.defaultProps = {\n enabled: !0,\n removeScrollBar: !0,\n inert: !1\n};\nWb.classNames = {\n fullWidth: K0,\n zeroRight: W0\n};\nvar aD = { exports: {} }, Yee = \"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\", Xee = Yee, Zee = Xee;\nfunction iD() {\n}\nfunction oD() {\n}\noD.resetWarningCache = iD;\nvar Qee = function() {\n function e(r, a, i, o, s, u) {\n if (u !== Zee) {\n var l = new Error(\n \"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types\"\n );\n throw l.name = \"Invariant Violation\", l;\n }\n }\n e.isRequired = e;\n function t() {\n return e;\n }\n var n = {\n array: e,\n bigint: e,\n bool: e,\n func: e,\n number: e,\n object: e,\n string: e,\n symbol: e,\n any: e,\n arrayOf: t,\n element: e,\n elementType: e,\n instanceOf: t,\n node: e,\n objectOf: t,\n oneOf: t,\n oneOfType: t,\n shape: t,\n exact: t,\n checkPropTypes: oD,\n resetWarningCache: iD\n };\n return n.PropTypes = n, n;\n};\naD.exports = Qee();\nvar nh = aD.exports, H1 = \"data-focus-lock\", sD = \"data-focus-lock-disabled\", Jee = \"data-no-focus-lock\", ete = \"data-autofocus-inside\", tte = \"data-no-autofocus\", Ym = {\n width: \"1px\",\n height: \"0px\",\n padding: 0,\n overflow: \"hidden\",\n position: \"fixed\",\n top: \"1px\",\n left: \"1px\"\n}, uD = qb({}, function(e) {\n var t = e.target, n = e.currentTarget;\n return {\n target: t,\n currentTarget: n\n };\n}), lD = qb(), nte = qb(), cD = Gb({\n async: !0\n // focus-lock sidecar is not required on the server\n // however, it might be required for JSDOM tests\n // ssr: true,\n}), rte = [], Kb = /* @__PURE__ */ ut.forwardRef(function(t, n) {\n var r, a = ut.useState(), i = a[0], o = a[1], s = ut.useRef(), u = ut.useRef(!1), l = ut.useRef(null), c = t.children, d = t.disabled, p = t.noFocusGuards, g = t.persistentFocus, v = t.crossFrame, b = t.autoFocus;\n t.allowTextSelection;\n var C = t.group, w = t.className, _ = t.whiteList, x = t.hasPositiveIndices, S = t.shards, E = S === void 0 ? rte : S, N = t.as, P = N === void 0 ? \"div\" : N, H = t.lockProps, k = H === void 0 ? {} : H, Q = t.sideCar, I = t.returnFocus, G = t.focusOptions, $ = t.onActivation, z = t.onDeactivation, B = ut.useState({}), O = B[0], D = ut.useCallback(function() {\n l.current = l.current || document && document.activeElement, s.current && $ && $(s.current), u.current = !0;\n }, [$]), T = ut.useCallback(function() {\n u.current = !1, z && z(s.current);\n }, [z]);\n We(function() {\n d || (l.current = null);\n }, []);\n var j = ut.useCallback(function(Te) {\n var Le = l.current;\n if (Le && Le.focus) {\n var Ge = typeof I == \"function\" ? I(Le) : I;\n if (Ge) {\n var Ne = typeof Ge == \"object\" ? Ge : void 0;\n l.current = null, Te ? Promise.resolve().then(function() {\n return Le.focus(Ne);\n }) : Le.focus(Ne);\n }\n }\n }, [I]), F = ut.useCallback(function(Te) {\n u.current && uD.useMedium(Te);\n }, []), L = lD.useMedium, q = ut.useCallback(function(Te) {\n s.current !== Te && (s.current = Te, o(Te));\n }, []), W = bt((r = {}, r[sD] = d && \"disabled\", r[H1] = C, r), k), X = p !== !0, de = X && p !== \"tail\", Se = JI([n, q]);\n return /* @__PURE__ */ ut.createElement(ut.Fragment, null, X && [\n // nearest focus guard\n /* @__PURE__ */ ut.createElement(\"div\", {\n key: \"guard-first\",\n \"data-focus-guard\": !0,\n tabIndex: d ? -1 : 0,\n style: Ym\n }),\n // first tabbed element guard\n x ? /* @__PURE__ */ ut.createElement(\"div\", {\n key: \"guard-nearest\",\n \"data-focus-guard\": !0,\n tabIndex: d ? -1 : 1,\n style: Ym\n }) : null\n ], !d && /* @__PURE__ */ ut.createElement(Q, {\n id: O,\n sideCar: cD,\n observed: i,\n disabled: d,\n persistentFocus: g,\n crossFrame: v,\n autoFocus: b,\n whiteList: _,\n shards: E,\n onActivation: D,\n onDeactivation: T,\n returnFocus: j,\n focusOptions: G\n }), /* @__PURE__ */ ut.createElement(P, bt({\n ref: Se\n }, W, {\n className: w,\n onBlur: L,\n onFocus: F\n }), c), de && /* @__PURE__ */ ut.createElement(\"div\", {\n \"data-focus-guard\": !0,\n tabIndex: d ? -1 : 0,\n style: Ym\n }));\n});\nKb.propTypes = {};\nKb.defaultProps = {\n children: void 0,\n disabled: !1,\n returnFocus: !1,\n focusOptions: void 0,\n noFocusGuards: !1,\n autoFocus: !0,\n persistentFocus: !1,\n crossFrame: !0,\n hasPositiveIndices: void 0,\n allowTextSelection: void 0,\n group: void 0,\n className: void 0,\n whiteList: void 0,\n shards: void 0,\n as: \"div\",\n lockProps: {},\n onActivation: void 0,\n onDeactivation: void 0\n};\nconst ate = Kb;\nfunction dD(e) {\n var t = window, n = t.setImmediate;\n typeof n < \"u\" ? n(e) : setTimeout(e, 1);\n}\nvar fD = Gb(), pD = \"data-focus-on-hidden\", ite = ut.forwardRef(function(e, t) {\n var n = ut.useState(!1), r = n[0], a = n[1], i = e.children, o = e.autoFocus, s = e.shards, u = e.enabled, l = u === void 0 ? !0 : u, c = e.scrollLock, d = c === void 0 ? !0 : c, p = e.focusLock, g = p === void 0 ? !0 : p, v = e.returnFocus, b = v === void 0 ? !0 : v, C = e.inert, w = e.allowPinchZoom, _ = e.sideCar, x = e.className, S = e.shouldIgnore, E = e.preventScrollOnFocus, N = e.style, P = e.as, H = e.gapMode, k = nr(e, [\"children\", \"autoFocus\", \"shards\", \"enabled\", \"scrollLock\", \"focusLock\", \"returnFocus\", \"inert\", \"allowPinchZoom\", \"sideCar\", \"className\", \"shouldIgnore\", \"preventScrollOnFocus\", \"style\", \"as\", \"gapMode\"]), Q = _, I = r.onActivation, G = r.onDeactivation, $ = nr(r, [\"onActivation\", \"onDeactivation\"]), z = Qe(Qe({}, $), {\n as: P,\n style: N,\n sideCar: _,\n shards: s,\n allowPinchZoom: w,\n gapMode: H,\n inert: C,\n enabled: l && d\n });\n return ut.createElement(\n ut.Fragment,\n null,\n ut.createElement(ate, { ref: t, sideCar: _, disabled: !(r && l && g), returnFocus: b, autoFocus: o, shards: s, onActivation: I, onDeactivation: G, className: x, whiteList: S, lockProps: z, focusOptions: E ? { preventScroll: !0 } : void 0, as: Wb }, i),\n l && ut.createElement(Q, Qe({}, k, { sideCar: fD, setLockProps: a, shards: s }))\n );\n});\nfunction ote(e, t) {\n function n(r) {\n return r.displayName || r.name || \"Component\";\n }\n return function(a) {\n var i = [], o;\n function s() {\n o = e(i.map(function(l) {\n return l.props;\n })), t(o);\n }\n var u = /* @__PURE__ */ function(l) {\n jI(c, l);\n function c() {\n return l.apply(this, arguments) || this;\n }\n c.peek = function() {\n return o;\n };\n var d = c.prototype;\n return d.componentDidMount = function() {\n i.push(this), s();\n }, d.componentDidUpdate = function() {\n s();\n }, d.componentWillUnmount = function() {\n var g = i.indexOf(this);\n i.splice(g, 1), s();\n }, d.render = function() {\n return /* @__PURE__ */ vt.createElement(a, this.props);\n }, c;\n }(_F);\n return Zt(u, \"displayName\", \"SideEffect(\" + n(a) + \")\"), u;\n };\n}\nvar Si = function(e) {\n for (var t = Array(e.length), n = 0; n < e.length; ++n)\n t[n] = e[n];\n return t;\n}, If = function(e) {\n return Array.isArray(e) ? e : [e];\n}, hD = function(e) {\n return Array.isArray(e) ? e[0] : e;\n}, ste = function(e) {\n if (e.nodeType !== Node.ELEMENT_NODE)\n return !1;\n var t = window.getComputedStyle(e, null);\n return !t || !t.getPropertyValue ? !1 : t.getPropertyValue(\"display\") === \"none\" || t.getPropertyValue(\"visibility\") === \"hidden\";\n}, mD = function(e) {\n return e.parentNode && e.parentNode.nodeType === Node.DOCUMENT_FRAGMENT_NODE ? (\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n e.parentNode.host\n ) : e.parentNode;\n}, gD = function(e) {\n return e === document || e && e.nodeType === Node.DOCUMENT_NODE;\n}, ute = function(e, t) {\n return !e || gD(e) || !ste(e) && t(mD(e));\n}, vD = function(e, t) {\n var n = e.get(t);\n if (n !== void 0)\n return n;\n var r = ute(t, vD.bind(void 0, e));\n return e.set(t, r), r;\n}, lte = function(e, t) {\n return e && !gD(e) ? fte(e) ? t(mD(e)) : !1 : !0;\n}, bD = function(e, t) {\n var n = e.get(t);\n if (n !== void 0)\n return n;\n var r = lte(t, bD.bind(void 0, e));\n return e.set(t, r), r;\n}, yD = function(e) {\n return e.dataset;\n}, cte = function(e) {\n return e.tagName === \"BUTTON\";\n}, CD = function(e) {\n return e.tagName === \"INPUT\";\n}, xD = function(e) {\n return CD(e) && e.type === \"radio\";\n}, dte = function(e) {\n return !((CD(e) || cte(e)) && (e.type === \"hidden\" || e.disabled));\n}, fte = function(e) {\n var t = e.getAttribute(tte);\n return ![!0, \"true\", \"\"].includes(t);\n}, Yb = function(e) {\n var t;\n return !!(e && (!((t = yD(e)) === null || t === void 0) && t.focusGuard));\n}, Df = function(e) {\n return !Yb(e);\n}, pte = function(e) {\n return !!e;\n}, hte = function(e, t) {\n var n = e.tabIndex - t.tabIndex, r = e.index - t.index;\n if (n) {\n if (!e.tabIndex)\n return 1;\n if (!t.tabIndex)\n return -1;\n }\n return n || r;\n}, SD = function(e, t, n) {\n return Si(e).map(function(r, a) {\n return {\n node: r,\n index: a,\n tabIndex: n && r.tabIndex === -1 ? (r.dataset || {}).focusGuard ? 0 : -1 : r.tabIndex\n };\n }).filter(function(r) {\n return !t || r.tabIndex >= 0;\n }).sort(hte);\n}, mte = [\n \"button:enabled\",\n \"select:enabled\",\n \"textarea:enabled\",\n \"input:enabled\",\n // elements with explicit roles will also use explicit tabindex\n // '[role=\"button\"]',\n \"a[href]\",\n \"area[href]\",\n \"summary\",\n \"iframe\",\n \"object\",\n \"embed\",\n \"audio[controls]\",\n \"video[controls]\",\n \"[tabindex]\",\n \"[contenteditable]\",\n \"[autofocus]\"\n], Xb = mte.join(\",\"), gte = \"\".concat(Xb, \", [data-focus-guard]\"), _D = function(e, t) {\n return Si((e.shadowRoot || e).children).reduce(function(n, r) {\n return n.concat(r.matches(t ? gte : Xb) ? [r] : [], _D(r));\n }, []);\n}, vte = function(e, t) {\n var n;\n return e instanceof HTMLIFrameElement && (!((n = e.contentDocument) === null || n === void 0) && n.body) ? rh([e.contentDocument.body], t) : [e];\n}, rh = function(e, t) {\n return e.reduce(function(n, r) {\n var a, i = _D(r, t), o = (a = []).concat.apply(a, i.map(function(s) {\n return vte(s, t);\n }));\n return n.concat(\n // add all tabbables inside and within shadow DOMs in DOM order\n o,\n // add if node is tabbable itself\n r.parentNode ? Si(r.parentNode.querySelectorAll(Xb)).filter(function(s) {\n return s === r;\n }) : []\n );\n }, []);\n}, bte = function(e) {\n var t = e.querySelectorAll(\"[\".concat(ete, \"]\"));\n return Si(t).map(function(n) {\n return rh([n]);\n }).reduce(function(n, r) {\n return n.concat(r);\n }, []);\n}, Zb = function(e, t) {\n return Si(e).filter(function(n) {\n return vD(t, n);\n }).filter(function(n) {\n return dte(n);\n });\n}, z_ = function(e, t) {\n return t === void 0 && (t = /* @__PURE__ */ new Map()), Si(e).filter(function(n) {\n return bD(t, n);\n });\n}, V1 = function(e, t, n) {\n return SD(Zb(rh(e, n), t), !0, n);\n}, q_ = function(e, t) {\n return SD(Zb(rh(e), t), !1);\n}, yte = function(e, t) {\n return Zb(bte(e), t);\n}, Nu = function(e, t) {\n return e.shadowRoot ? Nu(e.shadowRoot, t) : Object.getPrototypeOf(e).contains !== void 0 && Object.getPrototypeOf(e).contains.call(e, t) ? !0 : Si(e.children).some(function(n) {\n var r;\n if (n instanceof HTMLIFrameElement) {\n var a = (r = n.contentDocument) === null || r === void 0 ? void 0 : r.body;\n return a ? Nu(a, t) : !1;\n }\n return Nu(n, t);\n });\n}, Cte = function(e) {\n for (var t = /* @__PURE__ */ new Set(), n = e.length, r = 0; r < n; r += 1)\n for (var a = r + 1; a < n; a += 1) {\n var i = e[r].compareDocumentPosition(e[a]);\n (i & Node.DOCUMENT_POSITION_CONTAINED_BY) > 0 && t.add(a), (i & Node.DOCUMENT_POSITION_CONTAINS) > 0 && t.add(r);\n }\n return e.filter(function(o, s) {\n return !t.has(s);\n });\n}, ED = function(e) {\n return e.parentNode ? ED(e.parentNode) : e;\n}, Qb = function(e) {\n var t = If(e);\n return t.filter(Boolean).reduce(function(n, r) {\n var a = r.getAttribute(H1);\n return n.push.apply(n, a ? Cte(Si(ED(r).querySelectorAll(\"[\".concat(H1, '=\"').concat(a, '\"]:not([').concat(sD, '=\"disabled\"])')))) : [r]), n;\n }, []);\n}, xte = function(e) {\n try {\n return e();\n } catch {\n return;\n }\n}, Lc = function(e) {\n if (e === void 0 && (e = document), !(!e || !e.activeElement)) {\n var t = e.activeElement;\n return t.shadowRoot ? Lc(t.shadowRoot) : t instanceof HTMLIFrameElement && xte(function() {\n return t.contentWindow.document;\n }) ? Lc(t.contentWindow.document) : t;\n }\n}, Ste = function(e, t) {\n return e === t;\n}, _te = function(e, t) {\n return !!Si(e.querySelectorAll(\"iframe\")).some(function(n) {\n return Ste(n, t);\n });\n}, wD = function(e, t) {\n return t === void 0 && (t = Lc(hD(e).ownerDocument)), !t || t.dataset && t.dataset.focusGuard ? !1 : Qb(e).some(function(n) {\n return Nu(n, t) || _te(n, t);\n });\n}, Ete = function(e) {\n e === void 0 && (e = document);\n var t = Lc(e);\n return t ? Si(e.querySelectorAll(\"[\".concat(Jee, \"]\"))).some(function(n) {\n return Nu(n, t);\n }) : !1;\n}, wte = function(e, t) {\n return t.filter(xD).filter(function(n) {\n return n.name === e.name;\n }).filter(function(n) {\n return n.checked;\n })[0] || e;\n}, Jb = function(e, t) {\n return xD(e) && e.name ? wte(e, t) : e;\n}, Tte = function(e) {\n var t = /* @__PURE__ */ new Set();\n return e.forEach(function(n) {\n return t.add(Jb(n, e));\n }), e.filter(function(n) {\n return t.has(n);\n });\n}, G_ = function(e) {\n return e[0] && e.length > 1 ? Jb(e[0], e) : e[0];\n}, U_ = function(e, t) {\n return e.length > 1 ? e.indexOf(Jb(e[t], e)) : t;\n}, TD = \"NEW_FOCUS\", Ate = function(e, t, n, r) {\n var a = e.length, i = e[0], o = e[a - 1], s = Yb(n);\n if (!(n && e.indexOf(n) >= 0)) {\n var u = n !== void 0 ? t.indexOf(n) : -1, l = r ? t.indexOf(r) : u, c = r ? e.indexOf(r) : -1, d = u - l, p = t.indexOf(i), g = t.indexOf(o), v = Tte(t), b = n !== void 0 ? v.indexOf(n) : -1, C = b - (r ? v.indexOf(r) : u), w = U_(e, 0), _ = U_(e, a - 1);\n if (u === -1 || c === -1)\n return TD;\n if (!d && c >= 0)\n return c;\n if (u <= p && s && Math.abs(d) > 1)\n return _;\n if (u >= g && s && Math.abs(d) > 1)\n return w;\n if (d && Math.abs(C) > 1)\n return c;\n if (u <= p)\n return _;\n if (u > g)\n return w;\n if (d)\n return Math.abs(d) > 1 ? c : (a + c + d) % a;\n }\n}, Nte = function(e) {\n return function(t) {\n var n, r = (n = yD(t)) === null || n === void 0 ? void 0 : n.autofocus;\n return (\n // @ts-expect-error\n t.autofocus || //\n r !== void 0 && r !== \"false\" || //\n e.indexOf(t) >= 0\n );\n };\n}, Ote = function(e, t, n) {\n var r = e.map(function(i) {\n var o = i.node;\n return o;\n }), a = z_(r.filter(Nte(n)));\n return a && a.length ? G_(a) : G_(z_(t));\n}, z1 = function(e, t) {\n return t === void 0 && (t = []), t.push(e), e.parentNode && z1(e.parentNode.host || e.parentNode, t), t;\n}, Xm = function(e, t) {\n for (var n = z1(e), r = z1(t), a = 0; a < n.length; a += 1) {\n var i = n[a];\n if (r.indexOf(i) >= 0)\n return i;\n }\n return !1;\n}, AD = function(e, t, n) {\n var r = If(e), a = If(t), i = r[0], o = !1;\n return a.filter(Boolean).forEach(function(s) {\n o = Xm(o || s, s) || o, n.filter(Boolean).forEach(function(u) {\n var l = Xm(i, u);\n l && (!o || Nu(l, o) ? o = l : o = Xm(l, o));\n });\n }), o;\n}, Lte = function(e, t) {\n return e.reduce(function(n, r) {\n return n.concat(yte(r, t));\n }, []);\n}, kte = function(e, t) {\n var n = /* @__PURE__ */ new Map();\n return t.forEach(function(r) {\n return n.set(r.node, r);\n }), e.map(function(r) {\n return n.get(r);\n }).filter(pte);\n}, Ite = function(e, t) {\n var n = Lc(If(e).length > 0 ? document : hD(e).ownerDocument), r = Qb(e).filter(Df), a = AD(n || e, e, r), i = /* @__PURE__ */ new Map(), o = q_(r, i), s = V1(r, i).filter(function(g) {\n var v = g.node;\n return Df(v);\n });\n if (!(!s[0] && (s = o, !s[0]))) {\n var u = q_([a], i).map(function(g) {\n var v = g.node;\n return v;\n }), l = kte(u, s), c = l.map(function(g) {\n var v = g.node;\n return v;\n }), d = Ate(c, u, n, t);\n if (d === TD) {\n var p = Ote(o, c, Lte(r, i));\n if (p)\n return { node: p };\n console.warn(\"focus-lock: cannot find any node to move focus into\");\n return;\n }\n return d === void 0 ? d : l[d];\n }\n}, Dte = function(e) {\n var t = Qb(e).filter(Df), n = AD(e, e, t), r = /* @__PURE__ */ new Map(), a = V1([n], r, !0), i = V1(t, r).filter(function(o) {\n var s = o.node;\n return Df(s);\n }).map(function(o) {\n var s = o.node;\n return s;\n });\n return a.map(function(o) {\n var s = o.node, u = o.index;\n return {\n node: s,\n index: u,\n lockItem: i.indexOf(s) >= 0,\n guard: Yb(s)\n };\n });\n}, Pte = function(e, t) {\n \"focus\" in e && e.focus(t), \"contentWindow\" in e && e.contentWindow && e.contentWindow.focus();\n}, Zm = 0, Qm = !1, ND = function(e, t, n) {\n n === void 0 && (n = {});\n var r = Ite(e, t);\n if (!Qm && r) {\n if (Zm > 2) {\n console.error(\"FocusLock: focus-fighting detected. Only one focus management system could be active. See https://github.com/theKashey/focus-lock/#focus-fighting\"), Qm = !0, setTimeout(function() {\n Qm = !1;\n }, 1);\n return;\n }\n Zm++, Pte(r.node, n.focusOptions), Zm--;\n }\n}, Mte = function() {\n return document && document.activeElement === document.body;\n}, Rte = function() {\n return Mte() || Ete();\n}, Ou = null, mu = null, Lu = null, kc = !1, Bte = function() {\n return !0;\n}, Fte = function(t) {\n return (Ou.whiteList || Bte)(t);\n}, jte = function(t, n) {\n Lu = {\n observerNode: t,\n portaledElement: n\n };\n}, $te = function(t) {\n return Lu && Lu.portaledElement === t;\n};\nfunction W_(e, t, n, r) {\n var a = null, i = e;\n do {\n var o = r[i];\n if (o.guard)\n o.node.dataset.focusAutoGuard && (a = o);\n else if (o.lockItem) {\n if (i !== e)\n return;\n a = null;\n } else\n break;\n } while ((i += n) !== t);\n a && (a.node.tabIndex = 0);\n}\nvar Hte = function(t) {\n return t && \"current\" in t ? t.current : t;\n}, Vte = function(t) {\n return t ? !!kc : kc === \"meanwhile\";\n}, zte = function e(t, n, r) {\n return n && // find host equal to active element and check nested active element\n (n.host === t && (!n.activeElement || r.contains(n.activeElement)) || n.parentNode && e(t, n.parentNode, r));\n}, qte = function(t, n) {\n return n.some(function(r) {\n return zte(t, r, r);\n });\n}, Pf = function() {\n var t = !1;\n if (Ou) {\n var n = Ou, r = n.observed, a = n.persistentFocus, i = n.autoFocus, o = n.shards, s = n.crossFrame, u = n.focusOptions, l = r || Lu && Lu.portaledElement, c = document && document.activeElement;\n if (l) {\n var d = [l].concat(o.map(Hte).filter(Boolean));\n if ((!c || Fte(c)) && (a || Vte(s) || !Rte() || !mu && i) && (l && !// active element is \"inside\" working area\n (wD(d) || // check for shadow-dom contained elements\n c && qte(c, d) || $te(c)) && (document && !mu && c && !i ? (c.blur && c.blur(), document.body.focus()) : (t = ND(d, mu, {\n focusOptions: u\n }), Lu = {})), kc = !1, mu = document && document.activeElement), document) {\n var p = document && document.activeElement, g = Dte(d), v = g.map(function(b) {\n var C = b.node;\n return C;\n }).indexOf(p);\n v > -1 && (g.filter(function(b) {\n var C = b.guard, w = b.node;\n return C && w.dataset.focusAutoGuard;\n }).forEach(function(b) {\n var C = b.node;\n return C.removeAttribute(\"tabIndex\");\n }), W_(v, g.length, 1, g), W_(v, -1, -1, g));\n }\n }\n }\n return t;\n}, OD = function(t) {\n Pf() && t && (t.stopPropagation(), t.preventDefault());\n}, ey = function() {\n return dD(Pf);\n}, Gte = function(t) {\n var n = t.target, r = t.currentTarget;\n r.contains(n) || jte(r, n);\n}, Ute = function() {\n return null;\n}, LD = function() {\n kc = \"just\", setTimeout(function() {\n kc = \"meanwhile\";\n }, 0);\n}, Wte = function() {\n document.addEventListener(\"focusin\", OD), document.addEventListener(\"focusout\", ey), window.addEventListener(\"blur\", LD);\n}, Kte = function() {\n document.removeEventListener(\"focusin\", OD), document.removeEventListener(\"focusout\", ey), window.removeEventListener(\"blur\", LD);\n};\nfunction Yte(e) {\n return e.filter(function(t) {\n var n = t.disabled;\n return !n;\n });\n}\nfunction Xte(e) {\n var t = e.slice(-1)[0];\n t && !Ou && Wte();\n var n = Ou, r = n && t && t.id === n.id;\n Ou = t, n && !r && (n.onDeactivation(), e.filter(function(a) {\n var i = a.id;\n return i === n.id;\n }).length || n.returnFocus(!t)), t ? (mu = null, (!r || n.observed !== t.observed) && t.onActivation(), Pf(), dD(Pf)) : (Kte(), mu = null);\n}\nuD.assignSyncMedium(Gte);\nlD.assignMedium(ey);\nnte.assignMedium(function(e) {\n return e({\n moveFocusInside: ND,\n focusInside: wD\n });\n});\nconst Zte = ote(Yte, Xte)(Ute);\nUb(cD, Zte);\nvar K_, Qte = function() {\n if (K_)\n return K_;\n if (typeof __webpack_nonce__ < \"u\")\n return __webpack_nonce__;\n};\nfunction Jte() {\n if (!document)\n return null;\n var e = document.createElement(\"style\");\n e.type = \"text/css\";\n var t = Qte();\n return t && e.setAttribute(\"nonce\", t), e;\n}\nfunction ene(e, t) {\n e.styleSheet ? e.styleSheet.cssText = t : e.appendChild(document.createTextNode(t));\n}\nfunction tne(e) {\n var t = document.head || document.getElementsByTagName(\"head\")[0];\n t.appendChild(e);\n}\nvar nne = function() {\n var e = 0, t = null;\n return {\n add: function(n) {\n e == 0 && (t = Jte()) && (ene(t, n), tne(t)), e++;\n },\n remove: function() {\n e--, !e && t && (t.parentNode && t.parentNode.removeChild(t), t = null);\n }\n };\n}, rne = function() {\n var e = nne();\n return function(t, n) {\n ut.useEffect(function() {\n return e.add(t), function() {\n e.remove();\n };\n }, [t && n]);\n };\n}, ty = function() {\n var e = rne(), t = function(n) {\n var r = n.styles, a = n.dynamic;\n return e(r, a), null;\n };\n return t;\n}, ane = {\n left: 0,\n top: 0,\n right: 0,\n gap: 0\n}, Jm = function(e) {\n return parseInt(e || \"\", 10) || 0;\n}, ine = function(e) {\n var t = window.getComputedStyle(document.body), n = t[e === \"padding\" ? \"paddingLeft\" : \"marginLeft\"], r = t[e === \"padding\" ? \"paddingTop\" : \"marginTop\"], a = t[e === \"padding\" ? \"paddingRight\" : \"marginRight\"];\n return [Jm(n), Jm(r), Jm(a)];\n}, one = function(e) {\n if (e === void 0 && (e = \"margin\"), typeof window > \"u\")\n return ane;\n var t = ine(e), n = document.documentElement.clientWidth, r = window.innerWidth;\n return {\n left: t[0],\n top: t[1],\n right: t[2],\n gap: Math.max(0, r - n + t[2] - t[0])\n };\n}, sne = ty(), une = function(e, t, n, r) {\n var a = e.left, i = e.top, o = e.right, s = e.gap;\n return n === void 0 && (n = \"margin\"), `\n .`.concat(Gee, ` {\n overflow: hidden `).concat(r, `;\n padding-right: `).concat(s, \"px \").concat(r, `;\n }\n body {\n overflow: hidden `).concat(r, `;\n overscroll-behavior: contain;\n `).concat([\n t && \"position: relative \".concat(r, \";\"),\n n === \"margin\" && `\n padding-left: `.concat(a, `px;\n padding-top: `).concat(i, `px;\n padding-right: `).concat(o, `px;\n margin-left:0;\n margin-top:0;\n margin-right: `).concat(s, \"px \").concat(r, `;\n `),\n n === \"padding\" && \"padding-right: \".concat(s, \"px \").concat(r, \";\")\n ].filter(Boolean).join(\"\"), `\n }\n \n .`).concat(W0, ` {\n right: `).concat(s, \"px \").concat(r, `;\n }\n \n .`).concat(K0, ` {\n margin-right: `).concat(s, \"px \").concat(r, `;\n }\n \n .`).concat(W0, \" .\").concat(W0, ` {\n right: 0 `).concat(r, `;\n }\n \n .`).concat(K0, \" .\").concat(K0, ` {\n margin-right: 0 `).concat(r, `;\n }\n \n body {\n `).concat(Uee, \": \").concat(s, `px;\n }\n`);\n}, lne = function(e) {\n var t = e.noRelative, n = e.noImportant, r = e.gapMode, a = r === void 0 ? \"margin\" : r, i = ut.useMemo(function() {\n return one(a);\n }, [a]);\n return ut.createElement(sne, { styles: une(i, !t, a, n ? \"\" : \"!important\") });\n}, q1 = !1;\nif (typeof window < \"u\")\n try {\n var n0 = Object.defineProperty({}, \"passive\", {\n get: function() {\n return q1 = !0, !0;\n }\n });\n window.addEventListener(\"test\", n0, n0), window.removeEventListener(\"test\", n0, n0);\n } catch {\n q1 = !1;\n }\nvar Ys = q1 ? { passive: !1 } : !1, cne = function(e) {\n return e.tagName === \"TEXTAREA\";\n}, kD = function(e, t) {\n var n = window.getComputedStyle(e);\n return (\n // not-not-scrollable\n n[t] !== \"hidden\" && // contains scroll inside self\n !(n.overflowY === n.overflowX && !cne(e) && n[t] === \"visible\")\n );\n}, dne = function(e) {\n return kD(e, \"overflowY\");\n}, fne = function(e) {\n return kD(e, \"overflowX\");\n}, Y_ = function(e, t) {\n var n = t.ownerDocument, r = t;\n do {\n typeof ShadowRoot < \"u\" && r instanceof ShadowRoot && (r = r.host);\n var a = ID(e, r);\n if (a) {\n var i = DD(e, r), o = i[1], s = i[2];\n if (o > s)\n return !0;\n }\n r = r.parentNode;\n } while (r && r !== n.body);\n return !1;\n}, pne = function(e) {\n var t = e.scrollTop, n = e.scrollHeight, r = e.clientHeight;\n return [\n t,\n n,\n r\n ];\n}, hne = function(e) {\n var t = e.scrollLeft, n = e.scrollWidth, r = e.clientWidth;\n return [\n t,\n n,\n r\n ];\n}, ID = function(e, t) {\n return e === \"v\" ? dne(t) : fne(t);\n}, DD = function(e, t) {\n return e === \"v\" ? pne(t) : hne(t);\n}, mne = function(e, t) {\n return e === \"h\" && t === \"rtl\" ? -1 : 1;\n}, gne = function(e, t, n, r, a) {\n var i = mne(e, window.getComputedStyle(t).direction), o = i * r, s = n.target, u = t.contains(s), l = !1, c = o > 0, d = 0, p = 0;\n do {\n var g = DD(e, s), v = g[0], b = g[1], C = g[2], w = b - C - i * v;\n (v || w) && ID(e, s) && (d += w, p += v), s = s.parentNode;\n } while (\n // portaled content\n !u && s !== document.body || // self content\n u && (t.contains(s) || t === s)\n );\n return (c && (a && d === 0 || !a && o > d) || !c && (a && p === 0 || !a && -o > p)) && (l = !0), l;\n}, r0 = function(e) {\n return \"changedTouches\" in e ? [e.changedTouches[0].clientX, e.changedTouches[0].clientY] : [0, 0];\n}, X_ = function(e) {\n return [e.deltaX, e.deltaY];\n}, Z_ = function(e) {\n return e && \"current\" in e ? e.current : e;\n}, vne = function(e, t) {\n return e[0] === t[0] && e[1] === t[1];\n}, bne = function(e) {\n return `\n .block-interactivity-`.concat(e, ` {pointer-events: none;}\n .allow-interactivity-`).concat(e, ` {pointer-events: all;}\n`);\n}, yne = 0, Xs = [];\nfunction Cne(e) {\n var t = ut.useRef([]), n = ut.useRef([0, 0]), r = ut.useRef(), a = ut.useState(yne++)[0], i = ut.useState(ty)[0], o = ut.useRef(e);\n ut.useEffect(function() {\n o.current = e;\n }, [e]), ut.useEffect(function() {\n if (e.inert) {\n document.body.classList.add(\"block-interactivity-\".concat(a));\n var b = ra([e.lockRef.current], (e.shards || []).map(Z_), !0).filter(Boolean);\n return b.forEach(function(C) {\n return C.classList.add(\"allow-interactivity-\".concat(a));\n }), function() {\n document.body.classList.remove(\"block-interactivity-\".concat(a)), b.forEach(function(C) {\n return C.classList.remove(\"allow-interactivity-\".concat(a));\n });\n };\n }\n }, [e.inert, e.lockRef.current, e.shards]);\n var s = ut.useCallback(function(b, C) {\n if (\"touches\" in b && b.touches.length === 2)\n return !o.current.allowPinchZoom;\n var w = r0(b), _ = n.current, x = \"deltaX\" in b ? b.deltaX : _[0] - w[0], S = \"deltaY\" in b ? b.deltaY : _[1] - w[1], E, N = b.target, P = Math.abs(x) > Math.abs(S) ? \"h\" : \"v\";\n if (\"touches\" in b && P === \"h\" && N.type === \"range\")\n return !1;\n var H = Y_(P, N);\n if (!H)\n return !0;\n if (H ? E = P : (E = P === \"v\" ? \"h\" : \"v\", H = Y_(P, N)), !H)\n return !1;\n if (!r.current && \"changedTouches\" in b && (x || S) && (r.current = E), !E)\n return !0;\n var k = r.current || E;\n return gne(k, C, b, k === \"h\" ? x : S, !0);\n }, []), u = ut.useCallback(function(b) {\n var C = b;\n if (!(!Xs.length || Xs[Xs.length - 1] !== i)) {\n var w = \"deltaY\" in C ? X_(C) : r0(C), _ = t.current.filter(function(E) {\n return E.name === C.type && E.target === C.target && vne(E.delta, w);\n })[0];\n if (_ && _.should) {\n C.cancelable && C.preventDefault();\n return;\n }\n if (!_) {\n var x = (o.current.shards || []).map(Z_).filter(Boolean).filter(function(E) {\n return E.contains(C.target);\n }), S = x.length > 0 ? s(C, x[0]) : !o.current.noIsolation;\n S && C.cancelable && C.preventDefault();\n }\n }\n }, []), l = ut.useCallback(function(b, C, w, _) {\n var x = { name: b, delta: C, target: w, should: _ };\n t.current.push(x), setTimeout(function() {\n t.current = t.current.filter(function(S) {\n return S !== x;\n });\n }, 1);\n }, []), c = ut.useCallback(function(b) {\n n.current = r0(b), r.current = void 0;\n }, []), d = ut.useCallback(function(b) {\n l(b.type, X_(b), b.target, s(b, e.lockRef.current));\n }, []), p = ut.useCallback(function(b) {\n l(b.type, r0(b), b.target, s(b, e.lockRef.current));\n }, []);\n ut.useEffect(function() {\n return Xs.push(i), e.setCallbacks({\n onScrollCapture: d,\n onWheelCapture: d,\n onTouchMoveCapture: p\n }), document.addEventListener(\"wheel\", u, Ys), document.addEventListener(\"touchmove\", u, Ys), document.addEventListener(\"touchstart\", c, Ys), function() {\n Xs = Xs.filter(function(b) {\n return b !== i;\n }), document.removeEventListener(\"wheel\", u, Ys), document.removeEventListener(\"touchmove\", u, Ys), document.removeEventListener(\"touchstart\", c, Ys);\n };\n }, []);\n var g = e.removeScrollBar, v = e.inert;\n return ut.createElement(\n ut.Fragment,\n null,\n v ? ut.createElement(i, { styles: bne(a) }) : null,\n g ? ut.createElement(lne, { gapMode: e.gapMode }) : null\n );\n}\nUb(rD, Cne);\nvar xne = function(e) {\n if (typeof document > \"u\")\n return null;\n var t = Array.isArray(e) ? e[0] : e;\n return t.ownerDocument.body;\n}, Zs = /* @__PURE__ */ new WeakMap(), a0 = /* @__PURE__ */ new WeakMap(), i0 = {}, eg = 0, PD = function(e) {\n return e && (e.host || PD(e.parentNode));\n}, Sne = function(e, t) {\n return t.map(function(n) {\n if (e.contains(n))\n return n;\n var r = PD(n);\n return r && e.contains(r) ? r : (console.error(\"aria-hidden\", n, \"in not contained inside\", e, \". Doing nothing\"), null);\n }).filter(function(n) {\n return !!n;\n });\n}, _ne = function(e, t, n, r) {\n var a = Sne(t, Array.isArray(e) ? e : [e]);\n i0[n] || (i0[n] = /* @__PURE__ */ new WeakMap());\n var i = i0[n], o = [], s = /* @__PURE__ */ new Set(), u = new Set(a), l = function(d) {\n !d || s.has(d) || (s.add(d), l(d.parentNode));\n };\n a.forEach(l);\n var c = function(d) {\n !d || u.has(d) || Array.prototype.forEach.call(d.children, function(p) {\n if (s.has(p))\n c(p);\n else {\n var g = p.getAttribute(r), v = g !== null && g !== \"false\", b = (Zs.get(p) || 0) + 1, C = (i.get(p) || 0) + 1;\n Zs.set(p, b), i.set(p, C), o.push(p), b === 1 && v && a0.set(p, !0), C === 1 && p.setAttribute(n, \"true\"), v || p.setAttribute(r, \"true\");\n }\n });\n };\n return c(t), s.clear(), eg++, function() {\n o.forEach(function(d) {\n var p = Zs.get(d) - 1, g = i.get(d) - 1;\n Zs.set(d, p), i.set(d, g), p || (a0.has(d) || d.removeAttribute(r), a0.delete(d)), g || d.removeAttribute(n);\n }), eg--, eg || (Zs = /* @__PURE__ */ new WeakMap(), Zs = /* @__PURE__ */ new WeakMap(), a0 = /* @__PURE__ */ new WeakMap(), i0 = {});\n };\n}, Ene = function(e, t, n) {\n n === void 0 && (n = \"data-aria-hidden\");\n var r = Array.from(Array.isArray(e) ? e : [e]), a = t || xne(e);\n return a ? (r.push.apply(r, Array.from(a.querySelectorAll(\"[aria-live]\"))), _ne(r, a, n, \"aria-hidden\")) : function() {\n return null;\n };\n}, wne = ty(), Tne = `\n [` + pD + `] {\n pointer-events: none !important;\n }\n`, Ane = function() {\n return ut.createElement(wne, { styles: Tne });\n}, Q_ = function(e) {\n return \"current\" in e ? e.current : e;\n};\nfunction Nne(e) {\n var t = e.setLockProps, n = e.onEscapeKey, r = e.onClickOutside, a = e.shards, i = e.onActivation, o = e.onDeactivation, s = e.noIsolation, u = ze(void 0), l = u[0], c = u[1], d = Ue(null), p = Ue(0);\n return ut.useEffect(function() {\n var g = function(w) {\n w.defaultPrevented || (w.code === \"Escape\" || w.key === \"Escape\" || w.keyCode === 27) && n && n(w);\n }, v = function(w) {\n w.defaultPrevented || w.target === d.current || w instanceof MouseEvent && w.button !== 0 || a && a.map(Q_).some(function(_) {\n return _ && _.contains(w.target) || _ === w.target;\n }) || r && r(w);\n }, b = function(w) {\n v(w), p.current = w.touches.length;\n }, C = function(w) {\n p.current = w.touches.length;\n };\n if (l)\n return document.addEventListener(\"keydown\", g), document.addEventListener(\"mousedown\", v), document.addEventListener(\"touchstart\", b), document.addEventListener(\"touchend\", C), function() {\n document.removeEventListener(\"keydown\", g), document.removeEventListener(\"mousedown\", v), document.removeEventListener(\"touchstart\", b), document.removeEventListener(\"touchend\", C);\n };\n }, [l, r, n]), We(function() {\n if (l)\n return i && i(l), function() {\n o && o();\n };\n }, [!!l]), We(function() {\n var g = function() {\n return null;\n }, v = !1, b = function(w) {\n s || (g = Ene(gj([w], (a || []).map(Q_)), document.body, pD)), c(function() {\n return w;\n });\n }, C = function() {\n g(), v || c(null);\n };\n return t({\n onMouseDown: function(w) {\n d.current = w.target;\n },\n onTouchStart: function(w) {\n d.current = w.target;\n },\n onActivation: b,\n onDeactivation: C\n }), function() {\n v = !0, t(!1);\n };\n }, []), ut.createElement(Ane, null);\n}\nconst One = Ub(fD, Nne);\nvar Lne = function(e) {\n return ut.createElement(One, Qe({}, e));\n}, MD = ut.forwardRef(function(e, t) {\n return ut.createElement(ite, Qe({}, e, { ref: t, sideCar: Lne }));\n}), J_, e3, t3, n3, r3, a3, i3, o3, s3, u3, l3, c3, d3, f3, p3, h3, m3, g3, v3, b3;\nfunction kne(e, t) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var n = e.sysSpaceSm, r = e.sysSpaceLg, a = e.sysSpaceMd, i = e.sysSizeIconSm, o = e.sysSizeTapTargetXs, s = e.sysSizeTapTargetSm, u = e.sysSizeCircleLg, l = e.sysBorderRadiusSm, c = e.sysBorderRadiusInteractive, d = e.sysColorOverlayMain, p = e.sysColorOverlayContrast, g = e.sysColorOverlayMainHover, v = e.sysColorOverlayMainActive, b = e.sysColorPrimaryMain, C = e.sysColorPrimaryContrast, w = e.sysColorPrimaryMainHover, _ = e.sysColorPrimaryMainActive, x = e.sysColorPrimaryContrastActive, S = e.sysColorPrimaryContrastHover, E = e.sysColorTertiaryMain, N = e.sysColorTertiaryContrast, P = e.sysColorTertiaryMainHover, H = e.sysColorTertiaryMainActive, k = e.sysColorBackgroundMediumContrast, Q = e.sysColorBackgroundHighContrast, I = e.sysColorBackgroundSurfaceActive, G = e.sysColorBackgroundSurfaceHover, $ = e.sysColorSuccessMain, z = e.sysColorSuccessContrast, B = xr(e), O = B.screenReader, D = B.focusStyles, T = B.shimmerStyles, j = Fr(e), F = j.caption, L = D.offsetFocusAfter, q = T.defaults, W = De(\"\".concat(s, \" - \").concat(o)), X = De(\"\".concat(i, ` + 2 *\n `).concat(a)), de = V(J_ || (J_ = K([`\n label: icon-button_base;\n position: relative;\n cursor: pointer;\n border-radius: `, `;\n padding: `, `;\n border: none;\n background-color: transparent;\n text-decoration: none;\n display: inline-flex;\n &:focus {\n outline: none;\n &:after {\n `, `;\n }\n }\n `])), c, a, L({\n radius: c,\n horizontalOffset: \"0rem\",\n verticalOffset: \"0rem\"\n })), Se = V(e3 || (e3 = K([`\n label: icon-button_container;\n position: relative;\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: `, ` 0;\n width: `, `;\n word-wrap: break-word;\n `, `\n border: none;\n background-color: transparent;\n\n &:focus,\n &:hover {\n cursor: pointer;\n -webkit-text-stroke-width: `, `;\n }\n\n &:focus {\n outline: none;\n &:after {\n `, `\n }\n }\n\n &:hover {\n span:last-of-type {\n text-decoration: underline;\n }\n }\n\n &:hover > div:first-of-type {\n background: `, `;\n }\n `])), a, \"6rem\", F({\n color: Xt(t, Q, \"contrast\")\n }), \"0.0421875rem\", L({\n radius: l\n }), P), Te = V(t3 || (t3 = K([`\n label: processing_container;\n &:hover {\n cursor: default;\n }\n `]))), Le = V(n3 || (n3 = K([`\n label: success_container;\n &:hover {\n cursor: default;\n }\n &:hover > div:first-of-type {\n background-color: `, `;\n }\n `])), Xt(t, $, \"main\")), Ge = V(r3 || (r3 = K([`\n label: primary;\n color: `, `;\n background: `, `;\n &:hover {\n background: `, `;\n }\n &:active {\n background: `, `;\n }\n `])), Xt(t, C, \"contrast\"), Xt(t, b, \"main\"), Xt(t, w, \"hover\"), Xt(t, _, \"active\")), Ne = V(a3 || (a3 = K([`\n label: inverse;\n color: `, `;\n `])), Xt(t, C, \"contrast\")), ie = V(i3 || (i3 = K([`\n label: size_sm;\n padding: `, `;\n &:before {\n content: '';\n position: absolute;\n border-radius: `, `;\n top: -`, `;\n right: -`, `;\n bottom: -`, `;\n left: -`, `;\n }\n `])), n, c, De(\"\".concat(W, \" / 2\")), De(\"\".concat(W, \" / 2\")), De(\"\".concat(W, \" / 2\")), De(\"\".concat(W, \" / 2\"))), Ce = V(o3 || (o3 = K([`\n label: size_xl;\n `, `\n padding: `, `;\n `])), ie, r), ve = V(s3 || (s3 = K([`\n label: secondary;\n color: `, `;\n background: `, `;\n &:active {\n background: `, `;\n }\n &:hover {\n background: `, `;\n }\n `])), Xt(t, N, \"contrast\"), Xt(t, E, \"main\"), Xt(t, H, \"active\"), Xt(t, P, \"hover\")), Ae = V(u3 || (u3 = K([`\n label: secondary_inverse;\n background: `, `;\n color: `, `;\n &:hover {\n background: `, `;\n }\n &:active {\n background: `, `;\n }\n `])), Xt(t, C, \"contrast\"), Xt(t, b, \"main\"), Xt(t, S, \"hover\"), Xt(t, x, \"active\")), _e = V(l3 || (l3 = K([`\n label: tertiary;\n color: `, `;\n &:hover {\n background: `, `;\n }\n &:active {\n background: `, `;\n }\n `])), Xt(t, k, \"contrast\"), Xt(t, G, \"hover\"), Xt(t, I, \"active\")), He = V(c3 || (c3 = K([`\n label: tertiary_inverse;\n color: `, `;\n background: `, `;\n &:hover {\n background: `, `;\n }\n &:active {\n background: `, `;\n }\n `])), Xt(t, p, \"contrast\"), Xt(t, d, \"main\"), Xt(t, g, \"hover\"), Xt(t, v, \"active\")), Oe = V(d3 || (d3 = K([`\n label: icon;\n pointer-events: none;\n `]))), Be = V(f3 || (f3 = K([`\n label: shimmer;\n `, `\n `])), q({\n borderRadius: c,\n width: X,\n height: X\n })), qe = V(p3 || (p3 = K([`\n label: shimmer_size_sm;\n width: `, `;\n height: `, `;\n &:before {\n display: none; //tap-target is not needed in shimmer state\n }\n `])), o, o), Ye = V(h3 || (h3 = K([`\n label: shimmer_size_xl;\n width: `, `;\n height: `, `;\n &:before {\n display: none; //tap-target is not needed in shimmer state\n }\n `])), u, u), Xe = V(m3 || (m3 = K([`\n label: loading_spinner;\n margin: 0;\n `]))), Ve = V(g3 || (g3 = K([`\n label: processing_state;\n pointer-events: none;\n `]))), $e = V(v3 || (v3 = K([`\n label: success_state;\n pointer-events: none;\n background-color: `, `;\n color: `, `;\n &:hover {\n background: `, `;\n cursor: default;\n }\n &:active {\n background: `, `;\n }\n `])), Xt(t, $, \"main\"), Xt(t, z, \"contrast\"), Xt(t, $, \"main\"), Xt(t, $, \"main\")), Je = V(b3 || (b3 = K([`\n label: icon-button_label;\n display: block;\n text-align: center;\n padding: `, \" \", \" 0 \", `;\n width: inherit;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n -webkit-box-orient: vertical;\n overflow: hidden;\n `])), n, n, n);\n return {\n base: de,\n container: Se,\n successContainer: Le,\n processingContainer: Te,\n primary: Ge,\n inverse: Ne,\n sizeSm: ie,\n sizeXl: Ce,\n secondary: ve,\n secondaryInverse: Ae,\n tertiary: _e,\n tertiaryInverse: He,\n screenReader: O,\n icon: Oe,\n shimmer: Be,\n shimmerSizeSm: qe,\n shimmerSizeXl: Ye,\n loadingSpinner: Xe,\n processingState: Ve,\n successState: $e,\n label: Je\n };\n}\nvar Ine = [\"as\", \"iconName\", \"svgIconComponent\", \"className\", \"label\", \"iconClassName\", \"children\", \"buttonType\", \"btnState\", \"screenReaderText\", \"inverse\", \"size\", \"isLoading\"];\nfunction y3(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction C3(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? y3(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : y3(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar ny = Lt(function(e, t) {\n var n = e.as, r = e.iconName, a = e.svgIconComponent, i = e.className, o = e.label, s = e.iconClassName, u = e.children, l = e.buttonType, c = l === void 0 ? \"primary\" : l, d = e.btnState, p = d === void 0 ? \"initial\" : d, g = e.screenReaderText, v = e.inverse, b = e.size, C = e.isLoading, w = Qt(e, Ine), _ = gn(), x = vt.useContext(Qp), S = wt(function() {\n return kne(_, x);\n }, [_, x]);\n if (C) {\n var E = {\n sm: S.shimmerSizeSm,\n xl: S.shimmerSizeXl\n }, N = [S.shimmer, E[b]];\n return ue(Zp, {\n css: N,\n className: i,\n isInverse: v,\n hasStyleDefaults: !1,\n \"data-ppui\": \"true\"\n }, u);\n }\n var P = b === \"xl\" ? \"md\" : \"sm\", H = {\n sm: S.sizeSm,\n xl: S.sizeXl\n }, k = [S.base, H[b], c === \"primary\" && S.primary, c === \"secondary\" && S.secondary, c === \"tertiary\" && S.tertiary, v && S.inverse, c === \"secondary\" && v && S.secondaryInverse, c === \"tertiary\" && v && S.tertiaryInverse, p === \"success\" && S.successState, p === \"processing\" && S.processingState], Q = [S.base, b === \"sm\" ? \"\" : H[b], S.secondary, p === \"success\" && S.successState, p === \"processing\" && S.processingState], I = n || \"button\";\n o && (I = \"div\");\n var G = I === \"button\" ? \"button\" : null, $ = a ? ue(a, {\n css: S.icon,\n className: s,\n name: r,\n size: P,\n \"aria-hidden\": \"true\",\n \"data-ppui\": \"true\"\n }) : null, z = o ? {} : C3({}, w), B = C3({\n className: i,\n css: o ? Q : k,\n ref: t,\n type: G,\n disabled: p && p !== \"initial\"\n }, z), O = ue(I, bt({\n \"data-ppui-info\": \"icon-button_3.4.5\"\n }, B), p !== \"initial\" ? function() {\n var T = {\n css: S.icon\n }, j = ue(Ev, bt({\n size: P\n }, T, {\n \"data-ppui\": \"true\"\n }));\n if (p === \"processing\") {\n var F = {\n css: [S.icon, S.loadingSpinner],\n inverse: o ? !1 : c === \"primary\" || c === \"tertiary\" && v\n };\n j = ue(th, bt({\n size: P\n }, F, {\n \"data-ppui\": \"true\"\n }));\n }\n return ue(vt.Fragment, null, j, ue(\"span\", {\n css: S.screenReader,\n role: \"status\",\n \"data-ppui\": \"true\"\n }, g || p));\n }() : ue(vt.Fragment, null, $, !o && ue(\"span\", {\n css: S.screenReader,\n \"data-ppui\": \"true\"\n }, u)));\n return o ? ue(vt.Fragment, null, function() {\n var T = n ?? \"button\";\n return ue(T, bt({\n css: [S.container, p === \"success\" && S.successContainer, p === \"processing\" && S.processingContainer],\n className: i,\n tabIndex: 0\n }, w, {\n \"data-ppui\": \"true\"\n }), O, ue(\"span\", {\n css: S.label,\n \"data-ppui\": \"true\"\n }, o));\n }()) : ue(vt.Fragment, null, O);\n}), x3, S3, _3, E3, w3, T3, A3, N3, O3, L3, k3, I3, D3, P3, M3, R3, B3, F3, j3, $3, H3, V3, z3, q3, G3, U3, W3, K3, Y3, X3, Z3, Q3, J3, eE, tE, nE, rE, aE, iE, oE, sE, uE, lE;\nfunction Dne(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSpaceLg, n = e.sysTypographyDisplaySize, r = e.sysSizeIconLg, a = e.sysSizeTapTargetDefault, i = e.sysSpaceXl, o = e.sysSpaceSm, s = e.sysSizeMediaMd, u = e.sysSizeMediaSm, l = e.sysColorBackgroundSurface, c = e.sysSizeMediaLg, d = e.sysMotionDurationDepart, p = e.sysBorderRadiusLg, g = e.sysSpaceMd, v = e.sysSpaceXs, b = e.sysMotionDurationArrive, C = e.sysSizeIconSm, w = e.sysSizeIconMd, _ = e.sysColorOverlayMainHover, x = e.sysSizeIndicatorMd, S = e.sysSizeIconXl, E = e.sysSpaceJumbo, N = e.sysSizeMediaXl, P = xr(e), H = P.elevationStyles, k = P.variables, Q = P.screenReader, I = k.ppuiEaseInOut, G = Fr(e), $ = G.body, z = De(\"8 * \".concat(t)), B = n, O = r, D = \"75%\", T = De(\"\".concat(N, \" * 0.75\")), j = De(\"\".concat(i, \" * 2\")), F = De(\"\".concat(t, \" * 2\")), L = De(\"\".concat(r, \" + (2 * \").concat(v, \")\")), q = De(\"\".concat(S, \" + (2 * \").concat(v, \")\")), W = \"100vw\", X = C + g * 2, de = function() {\n var dn = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"center\";\n return V(x3 || (x3 = K([`\n label: container_center;\n display: flex;\n align-items: `, `;\n justify-content: space-around;\n `])), dn);\n }, Se = V(S3 || (S3 = K([`\n label: container_middle;\n `, `;\n width: `, `;\n max-width: `, `;\n\n @media screen and (max-width: `, `) {\n width: calc(100% - `, `);\n }\n\n @media screen and (max-width: `, `) {\n width: calc(100% - `, `);\n }\n `])), de(), D, T, s, j, u, F), Te = V(_3 || (_3 = K([`\n label: container_bottom;\n `, `;\n width: `, `;\n\n @media screen and (max-width: `, `) {\n width: `, `;\n }\n @media screen and (max-width: `, `) {\n width: `, `;\n }\n `])), de(\"flex-end\"), s, c, u, s, W), Le = V(E3 || (E3 = K([`\n label: base;\n background-color: `, `;\n display: grid;\n grid-template-rows: auto 1fr auto;\n position: relative;\n flex-basis: 100%;\n `])), l), Ge = V(w3 || (w3 = K([`\n label: modal_no_container;\n width: `, `;\n max-width: `, `;\n `])), D, T), Ne = V(T3 || (T3 = K([`\n label: modal_dialog;\n min-height: `, `;\n border-radius: `, `;\n max-height: `, `;\n `, `;\n opacity: 0;\n will-change: opacity;\n transition: opacity `, \" \", `;\n `])), z, p, \"75vh\", H.level3, d, I), ie = V(A3 || (A3 = K([`\n label: modal_sheet;\n height: 100vh;\n width: auto;\n `, `;\n will-change: transform;\n transition: transform `, \" \", `,\n height `, \" \", `;\n transform: translateZ(0) translateY(100%);\n\n @media screen and (max-width: `, `) {\n width: `, `;\n height: auto;\n min-height: `, `;\n max-height: `, `; /* Fallback for browsers that do not support Custom Properties */\n max-height: calc(var(--vh, 1vh) * 90);\n border-top-left-radius: `, `;\n border-top-right-radius: `, `;\n }\n `])), H.level3, d, I, d, I, s, W, a, \"90vh\", p, p), Ce = V(N3 || (N3 = K([`\n label: modal_sheet_show;\n transform: translateZ(0) translateY(0);\n `]))), ve = V(O3 || (O3 = K([`\n label: modal_backdrop;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: `, `;\n visibility: hidden;\n opacity: 0;\n will-change: opacity;\n transition: opacity `, ` ease-in-out,\n visibility `, \" \", `;\n background-color: `, `;\n `, `;\n box-shadow: none;\n\n &[aria-hidden='false'] {\n transition-duration: `, `;\n }\n\n &[aria-hidden='true'] {\n transition-duration: `, `;\n }\n `])), Lf, d, d, d, _, de(\"center\"), b, b), Ae = V(L3 || (L3 = K([`\n label: modal_backdrop_show;\n visibility: visible;\n opacity: 1;\n transition: opacity `, ` ease-in-out;\n `])), d), _e = V(k3 || (k3 = K([`\n label: modal_backdrop_show_dialog;\n opacity: 1;\n transition: opacity `, ` ease-in-out\n `, `;\n `])), d, d), He = V(I3 || (I3 = K([`\n label: scrim;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: `, `;\n visibility: hidden;\n transition: visibility `, \" \", `;\n `, `;\n\n &::before {\n content: ' ';\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n opacity: 0;\n will-change: opacity;\n transition: opacity `, ` ease-in-out;\n background-color: `, `;\n }\n `])), Lf, d, d, de(\"flex-end\"), d, _), Oe = V(D3 || (D3 = K([`\n label: scrim_show;\n visibility: visible;\n transition: none; /* visibility should not be animated when coming in */\n\n &::before {\n opacity: 1;\n transition-duration: `, `;\n }\n `])), b), Be = V(P3 || (P3 = K([`\n label: modal_contents;\n flex: 1 1 auto;\n overflow: auto;\n\n position: relative;\n border-radius: inherit;\n `, `;\n\n @media screen and (max-width: `, `) {\n padding: 0 `, \" \", `;\n }\n `])), $(), s, i, i), qe = V(M3 || (M3 = K([`\n label: modal_content_with_header;\n @media screen and (max-width: `, `) {\n border-radius: 0;\n }\n `])), s), Ye = V(R3 || (R3 = K([`\n label: modal_content_sheet;\n padding: 0 `, `;\n\n @media screen and (max-width: `, `) {\n padding: 0 `, `;\n }\n @media screen and (max-width: `, `) {\n padding: 0 `, \" \", `;\n }\n `])), \"8.5rem\", c, \"5rem\", s, t, t), Xe = V(B3 || (B3 = K([`\n label: modal_content_dialog;\n max-height: `, `;\n padding: 0 `, `;\n `])), \"70vh\", E), Ve = V(F3 || (F3 = K([`\n label: modal_content_no_padding;\n padding: 0;\n @media screen and (max-width: `, `) {\n padding: 0;\n }\n `])), c), $e = V(j3 || (j3 = K([`\n label: modal_content_dialog_no_padding;\n @media screen and (max-width: `, `) {\n padding: 0 `, \" \", `;\n }\n `])), u, t, i), Je = V($3 || ($3 = K([`\n label: modal_content_center;\n text-align: center;\n `]))), Tt = V(H3 || (H3 = K([`\n label: modal_header;\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n position: relative;\n flex: 0 0 auto;\n z-index: 1;\n min-height: `, `;\n padding: `, `;\n `])), B, g), ct = V(V3 || (V3 = K([`\n label: modal_header_sheet;\n min-height: `, `;\n\n @media screen and (max-width: `, `) {\n min-height: `, `;\n }\n `])), q, s, L), Dt = V(z3 || (z3 = K([`\n label: modal_header_sheet_action;\n min-height: `, `;\n padding: `, `;\n margin: 0;\n\n @media screen and (max-width: `, `) {\n min-height: `, `;\n padding: `, `;\n margin: 0;\n }\n `])), q, g, s, L, o), mt = V(q3 || (q3 = K([`\n label: modal_header_scrolled;\n `, `\n `])), H.level3), et = V(G3 || (G3 = K([`\n label: modal_header_action;\n flex: 0 0 `, `;\n flex-basis: `, `;\n `])), O, X), dt = V(U3 || (U3 = K([`\n label: modal_header_title;\n flex: 1 1 3rem;\n margin: `, `;\n text-align: center;\n `, `;\n `])), o, $()), Fe = V(W3 || (W3 = K([`\n label: modal_header_close;\n flex: 0 0 `, `;\n text-align: right;\n flex-basis: `, `;\n `])), O, X), Ot = V(K3 || (K3 = K([`\n label: modal_header_work_area;\n flex: 0 0 100%;\n padding: `, \" \", `;\n `])), o, t), nt = V(Y3 || (Y3 = K([`\n label: modal_header_logo;\n display: flex;\n flex: 1 1 3rem;\n justify-content: center;\n margin-top: `, `;\n `])), o), Ie = V(X3 || (X3 = K([`\n label: modal_header_logo_image;\n width: `, `;\n height: `, `;\n `])), w, w), st = V(Z3 || (Z3 = K([`\n label: modal_content_close;\n position: absolute;\n right: `, `;\n top: `, `;\n z-index: 2;\n\n [dir='rtl'] & {\n left: `, `;\n right: auto;\n\n @media screen and (min-width: `, `) {\n left: `, `;\n }\n }\n\n @media screen and (min-width: `, `) {\n right: `, `;\n top: `, `;\n }\n `])), v, v, v, s, x, s, x, g), kt = V(Q3 || (Q3 = K([`\n label: modal_footer;\n min-height: `, `;\n padding: `, `;\n position: relative;\n flex: 1 0 auto;\n `])), B, t), Mt = V(J3 || (J3 = K([`\n label: modal_footer_scrolled;\n `, `\n border-bottom-left-radius: inherit;\n border-bottom-right-radius: inherit;\n `])), H.level3Above), Kt = V(eE || (eE = K([`\n label: modal_footer_align_center;\n text-align: center;\n `]))), Rt = V(tE || (tE = K([`\n label: modal_footer_align_right;\n text-align: right;\n `]))), jt = V(nE || (nE = K([`\n label: modal_sheet_height_90;\n @media screen and (max-width: `, `) {\n height: 90vh; /* Fallback for browsers that do not support Custom Properties */\n height: calc(var(--vh, 1vh) * 90);\n border-top-left-radius: `, `;\n border-top-right-radius: `, `;\n }\n `])), s, p, p), _t = V(rE || (rE = K([`\n label: sheet_right_side;\n @media screen and (min-width: `, `) {\n justify-content: flex-end;\n }\n `])), s), _n = V(aE || (aE = K([`\n @media screen and (min-width: `, `) {\n width: `, `;\n }\n `])), s, \"35.5rem\"), Rn = V(iE || (iE = K([`\n label: container;\n @media screen and (min-width: `, `) {\n will-change: transform;\n transition: transform `, `;\n bottom: inherit;\n\n &[aria-hidden='false'] {\n transform: translateZ(0) translateX(0);\n }\n }\n `])), s, d), rr = V(oE || (oE = K([`\n label: container_right;\n `, `\n @media screen and (min-width: `, `) {\n transform: translateZ(0) translateX(100%);\n }\n `])), Rn, s), Jn = V(sE || (sE = K([`\n label: container_left;\n `, `\n @media screen and (min-width: `, `) {\n transform: translateZ(0) translateX(-100%);\n }\n `])), Rn, s), yt = V(uE || (uE = K([`\n label: drawer_container;\n @media screen and (min-width: `, `) {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), s, De(\"\".concat(i, \" * 2\")), De(\"\".concat(i, \" * 2\"))), Yt = V(lE || (lE = K([`\n label: modal_sheet_height_50;\n @media screen and (max-width: `, `) {\n height: 50vh; /* Fallback for browsers that do not support Custom Properties */\n height: calc(var(--vh, 1vh) * 50);\n border-top-left-radius: `, `;\n border-top-right-radius: `, `;\n }\n `])), s, p, p);\n return {\n base: Le,\n modalContents: Be,\n modalContentsCenter: Je,\n modalContentsNoPadding: Ve,\n modalHeader: Tt,\n modalHeaderScrolled: mt,\n modalHeaderClose: Fe,\n modalHeaderAction: et,\n modalHeaderTitle: dt,\n modalHeaderLogo: nt,\n modalHeaderLogoImage: Ie,\n modalFooter: kt,\n modalFooterScrolled: Mt,\n modalFooterAlignCenter: Kt,\n modalFooterAlignRight: Rt,\n screenReader: Q,\n // Dialog specific styles\n modalDialog: Ne,\n modalBackdrop: ve,\n modalBackdropShow: Ae,\n modalBackdropShowDialog: _e,\n modalContentsClose: st,\n modalContentsDialog: Xe,\n containerMiddle: Se,\n modalContentDialogPadding: $e,\n // Sheet Specific\n modalSheet: ie,\n modalSheetShow: Ce,\n modalSheetHeight90: jt,\n modalSheetHeight50: Yt,\n modalNoContainer: Ge,\n modalHeaderSheet: ct,\n modalHeaderSheetAction: Dt,\n modalHeaderWorkArea: Ot,\n modalContentsSheet: Ye,\n modalContentWithHeader: qe,\n scrim: He,\n scrimShow: Oe,\n containerBottom: Te,\n justifyRight: _t,\n containerRightWidth: _n,\n containerRight: rr,\n containerLeft: Jn,\n drawerContainer: yt\n };\n}\nvar Pne = [\"requestClose\", \"onBeforeClose\", \"className\", \"isHidden\", \"center\", \"noPadding\", \"closeButtonLabel\", \"noCloseButton\", \"closeButtonProps\", \"hideTitle\", \"showLogo\", \"mobileFixedHeight\", \"title\", \"id\", \"action\", \"headerContents\", \"footerContents\", \"footerAlign\", \"children\", \"returnFocusToTrigger\", \"headerClassName\", \"containerClassName\", \"contentContainerRef\", \"wrapperClassName\", \"footerClassName\", \"skipFormFocus\", \"contentScrollTop\", \"onContentScroll\", \"showDrawer\"], Mne = function() {\n return !0;\n}, Rne = function(e) {\n var t = e.requestClose, n = e.onBeforeClose, r = n === void 0 ? Mne : n, a = e.className, i = e.isHidden, o = e.center, s = e.noPadding, u = e.closeButtonLabel, l = u === void 0 ? \"close sheet\" : u, c = e.noCloseButton, d = e.closeButtonProps, p = d === void 0 ? {} : d, g = e.hideTitle, v = e.showLogo, b = e.mobileFixedHeight, C = e.title, w = e.id, _ = e.action, x = e.headerContents, S = e.footerContents, E = e.footerAlign, N = e.children, P = e.returnFocusToTrigger, H = P === void 0 ? !0 : P, k = e.headerClassName, Q = e.containerClassName, I = e.contentContainerRef, G = e.wrapperClassName, $ = e.footerClassName, z = e.skipFormFocus, B = e.contentScrollTop, O = B === void 0 ? 0 : B, D = e.onContentScroll, T = e.showDrawer, j = T === void 0 ? !1 : T, F = Qt(e, Pne), L = ze(!1), q = fn(L, 2), W = q[0], X = q[1], de = ze(!1), Se = fn(de, 2), Te = Se[0], Le = Se[1], Ge = ze(0.5), Ne = fn(Ge, 2), ie = Ne[0], Ce = Ne[1], ve = Ue(), Ae = Ue(), _e = Ue(), He = Ue(), Oe = I || He, Be = Ue(), qe = Tee(), Ye, Xe, Ve = b === \"dynamic\", $e = gn(), Je = wt(function() {\n return Dne($e);\n }, [$e]), Tt = $e.sysSizeMediaMd, ct = vs(Mo(Tt, \"16px\")), Dt = Jp() ? window && window.innerWidth < ct : !1, mt = v && !Dt, et = w ?? Za(), dt = !!_ || !c || !g || !!x || mt, Fe = function() {\n if (Oe && Oe.current) {\n var ft = Oe.current, xt = ft.scrollTop !== 0;\n if (xt !== W && X(xt), S) {\n var nn = ft.scrollTop + ft.offsetHeight !== ft.scrollHeight;\n nn !== Te && Le(nn);\n }\n }\n }, Ot = function() {\n var ft = ve.current;\n if (ft) {\n var xt = window.innerHeight * 0.9;\n b === \"90\" ? ft.style.height = \"\".concat(xt, \"px\") : b === \"50\" ? ft.style.height = \"\".concat(window.innerHeight * 0.5, \"px\") : ft.style.maxHeight = \"\".concat(xt, \"px\");\n }\n }, nt = function() {\n var ft = ve.current;\n ft && (ft.style.height = \"\".concat(window.innerHeight * ie, \"px\"), ft.style.maxHeight = \"fit-content\");\n }, Ie = /* @__PURE__ */ function() {\n var ft = QI(/* @__PURE__ */ kf.mark(function xt() {\n return kf.wrap(function(nn) {\n for (; ; )\n switch (nn.prev = nn.next) {\n case 0:\n Ce(0.9);\n case 1:\n case \"end\":\n return nn.stop();\n }\n }, xt);\n }));\n return function() {\n return ft.apply(this, arguments);\n };\n }(), st = function() {\n Ce(0.5);\n }, kt = function() {\n var ft = Oe && Oe.current;\n ie === 0.5 && (ft.style.overflow = \"hidden\"), ie === 0.9 && (ft.style.overflow = \"scroll\");\n };\n We(function() {\n if (!i) {\n var ft;\n Fe(), (ft = window) === null || ft === void 0 || ft.setTimeout(function() {\n var xt = !1;\n if (Be && Be.current) {\n var nn = Be.current.querySelector(\"input\");\n nn && (nn.focus(), xt = !0);\n }\n if (!xt && !z && Oe && Oe.current) {\n var Pn = Oe.current.querySelectorAll(\"a, button, textarea, input, select\");\n Pn.length > 0 && (Pn[0].focus(), xt = !0);\n }\n if (!xt && dt)\n if (_ && _e && _e.current) {\n var Tr = _e.current.querySelectorAll(\"a, button, select\");\n Tr.length > 0 && Tr[0].focus();\n } else {\n var ht = Ae.current;\n ht && ht.focus();\n }\n }, 500), wee() && window.innerHeight && (window.addEventListener(\"resize\", Ot, !1), Ve ? (nt(), kt()) : Ot());\n }\n return function() {\n window.removeEventListener(\"resize\", Ot, !1);\n };\n }, [i, ie]), We(function() {\n if (!i && Oe.current) {\n var ft = Oe.current;\n ft.scrollTop = O;\n }\n }, [O, i]);\n var Mt = [Je.scrim, !i && Je.scrimShow, j && Je.justifyRight], Kt = [Je.base, Je.modalNoContainer, Je.modalSheet, b === \"90\" && Je.modalSheetHeight90, b === \"50\" && Je.modalSheetHeight50, Ve && Je.modalSheetHeight50, !i && Je.modalSheetShow, j && !qe && Je.containerRight, j && qe && Je.containerLeft], Rt = [Je.modalContents, Je.modalContentsSheet, o && Je.modalContentsCenter, s && Je.modalContentsNoPadding, dt && Je.modalContentWithHeader, j && Je.drawerContainer], jt = i ? \"true\" : \"false\", _t = function(ft, xt) {\n var nn = r(xt);\n nn && (t(ft, xt), Ye = null, Xe = null);\n }, _n = c ? null : ue(ny, bt({\n svgIconComponent: Uc,\n onClick: function(xt) {\n _t(xt, \"closeButton\");\n },\n ref: Ae,\n buttonType: \"tertiary\"\n }, p, {\n \"data-ppui\": \"true\"\n }), l), Rn = function(ft, xt) {\n var nn = ft.changedTouches[0], Pn = nn.pageX, Tr = nn.pageY, ht = Ye - Pn, gt = Xe - Tr;\n Math.abs(gt) > Math.abs(ht) && (gt < 0 && (!xt || xt.scrollTop === 0) && (Ve ? (st(), (gt < -150 || ie === 0.5) && _t(ft, \"swipeDown\")) : _t(ft, \"swipeDown\")), gt > 0 && Ve && Ie()), Ye = null, Xe = null;\n }, rr = function(ft) {\n ft.preventDefault();\n }, Jn = function(ft) {\n if (!Xe && !Ye) {\n var xt = ft.changedTouches[0];\n Xe = xt.pageY, Ye = xt.pageX;\n }\n }, yt = \"header_\".concat(et), Yt = {\n role: \"dialog\",\n className: G,\n \"aria-modal\": \"true\",\n \"aria-hidden\": jt\n };\n mt || g ? Yt[\"aria-label\"] = C : Yt[\"aria-labelledby\"] = yt;\n var dn = _ ? ue(\"div\", {\n css: [Je.modalHeaderClose],\n \"data-ppui\": \"true\"\n }) : null, Er = _n ? ue(\"div\", {\n css: [Je.modalHeaderAction],\n \"data-ppui\": \"true\"\n }) : null, cr = _n ? ue(\"div\", {\n css: [Je.modalHeaderClose],\n \"data-ppui\": \"true\"\n }, _n) : dn, wr = _ ? ue(\"div\", {\n css: [Je.modalHeaderAction],\n ref: _e,\n \"data-ppui\": \"true\"\n }, _) : Er, Ta = [mt ? Je.modalHeaderLogo : Je.modalHeaderTitle], Ct = ue(\"div\", {\n css: Ta,\n id: yt,\n \"data-ppui\": \"true\"\n }, function() {\n return mt ? ue(\"img\", {\n src: \"https://www.paypalobjects.com/paypal-ui/logos/svg/paypal-mark-color.svg\",\n alt: \"paypal-logo\",\n css: Je.modalHeaderLogoImage,\n \"data-ppui\": \"true\"\n }) : g ? null : C;\n }()), Wt = x ? ue(\"div\", {\n css: Je.modalHeaderWorkArea,\n ref: Be,\n \"data-ppui\": \"true\"\n }, x) : null, On = dt ? ue(\"header\", {\n className: k,\n css: [Je.modalHeader, Je.modalHeaderSheet, W && Je.modalHeaderScrolled, wr && Je.modalHeaderSheetAction],\n onTouchStart: Jn,\n onTouchMove: rr,\n onTouchEnd: function(xt) {\n Rn(xt, null);\n },\n \"data-ppui\": \"true\"\n }, wr, Ct, cr, Wt) : null, Bt = S ? ue(\"footer\", {\n className: $,\n css: [\n Je.modalFooter,\n /* istanbul ignore next */\n Te && Je.modalFooterScrolled,\n E === \"center\" && Je.modalFooterAlignCenter,\n E === \"right\" && Je.modalFooterAlignRight\n ],\n \"data-ppui\": \"true\"\n }, S) : null;\n return ue(\"div\", bt({}, Yt, {\n css: Mt,\n \"data-ppui-info\": \"sheet_3.9.0\"\n }), ue(MD, {\n enabled: !i,\n onEscapeKey: function(xt) {\n xt.preventDefault(), _t(xt, \"ESC\");\n },\n onClickOutside: function(xt) {\n _t(xt, \"backdropClick\");\n },\n returnFocus: H,\n css: [Je.containerBottom, j && Je.containerRightWidth],\n \"data-ppui\": \"true\"\n }, ue(\"article\", bt({\n css: Kt,\n className: Q\n }, F, {\n ref: ve,\n \"aria-hidden\": jt,\n \"data-ppui\": \"true\"\n }), On, ue(\"section\", {\n css: Rt,\n className: a,\n onScroll: function() {\n if (Oe && Oe.current) {\n var xt = Oe.current;\n D && D(xt.scrollTop);\n }\n Fe();\n },\n ref: Oe,\n onTouchStart: Jn,\n onTouchMove: rr,\n onTouchEnd: function(xt) {\n var nn = Oe && Oe.current;\n Ve && Rn(xt, nn);\n },\n \"data-ppui\": \"true\"\n }, N), Bt)));\n}, Bne = [\"isOpen\", \"onOpen\", \"onClose\", \"onCloseComplete\", \"containerRef\"], Fne = function(e) {\n var t = e.isOpen, n = e.onOpen, r = e.onClose, a = e.onCloseComplete, i = a === void 0 ? r : a, o = e.containerRef, s = Qt(e, Bne), u = ze(!1), l = fn(u, 2), c = l[0], d = l[1];\n We(function() {\n d(!0);\n }, []);\n var p = /* @__PURE__ */ vt.createElement(YI, {\n shouldHide: !t,\n onOpen: n,\n onCloseComplete: i,\n \"data-ppui\": \"true\"\n }, function(b) {\n return /* @__PURE__ */ vt.createElement(Rne, bt({}, b, s, {\n \"data-ppui\": \"true\"\n }));\n }), g = o && o.current;\n return c && cp.createPortal(p, g || document.body);\n}, cE, dE, fE, pE, hE, mE, gE, vE;\nfunction bE(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysColorBackgroundSurface, n = e.sysColorBackgroundSurfaceHover, r = e.sysColorBackgroundSurfaceActive, a = e.sysColorBackgroundMediumContrast, i = e.sysBorderRadiusSm, o = e.sysBorderRadiusLg, s = e.sysSpaceXs, u = e.sysSpaceSm, l = e.sysSpaceMd, c = e.sysSpaceLg, d = e.sysBorderThicknessNormal, p = e.sysBorderThicknessFocusOutline, g = e.sysSizeMediaMd, v = xr(e), b = v.elevationStyles, C = v.focusStyles, w = Fr(e), _ = w.body, x = w.caption, S = \"8rem\";\n function E() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.borderRadius, B = z === void 0 ? o : z, O = $.backgroundColor, D = O === void 0 ? t : O, T = $.marginTop, j = T === void 0 ? s : T, F = $.maxHeight, L = F === void 0 ? \"30rem\" : F, q = $.minWidth, W = q === void 0 ? S : q, X = $.outline, de = X === void 0 ? d : X;\n return V(cE || (cE = K([`\n label: menu_container;\n border-radius: `, `;\n min-width: `, `;\n max-height: `, `;\n overflow-y: auto;\n overflow-x: hidden;\n position: absolute;\n margin-top: `, `;\n `, `;\n background-color: `, `;\n outline: `, ` solid transparent; // for HCM View\n z-index: `, `;\n `])), B, W, L, j, b.level3, D, de, qI);\n }\n function N() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.paddingBottom, B = z === void 0 ? \"2.125rem\" : z, O = $.paddingTop, D = O === void 0 ? u : O, T = $.desktopPaddingBottom, j = T === void 0 ? u : T, F = $.desktopPaddingTop, L = F === void 0 ? u : F;\n return V(dE || (dE = K([`\n label: list;\n list-style: none;\n margin: 0;\n padding: `, \" 0 \", ` 0;\n background-color: transparent;\n @media (min-width: `, `) {\n padding-bottom: `, `;\n padding-top: `, `;\n }\n `])), D, B, g, j, L);\n }\n function P() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.paddingTop, B = z === void 0 ? l : z, O = $.paddingRight, D = O === void 0 ? c : O, T = $.paddingBottom, j = T === void 0 ? l : T, F = $.paddingLeft, L = F === void 0 ? c : F, q = $.desktopPaddingBottom, W = q === void 0 ? u : q, X = $.desktopPaddingTop, de = X === void 0 ? u : X, Se = $.hoverBgColor, Te = Se === void 0 ? n : Se, Le = $.activeBgColor, Ge = Le === void 0 ? r : Le;\n return V(fE || (fE = K([`\n label: list_item;\n padding: `, \" \", \" \", \" \", `;\n outline: none;\n position: relative;\n display: flex;\n align-items: center;\n cursor: pointer;\n\n @media (min-width: `, `) {\n padding-bottom: `, `;\n padding-top: `, `;\n }\n\n &:hover {\n background-color: `, `;\n }\n\n &:active {\n background-color: `, `;\n }\n `])), B, D, j, L, g, W, de, Te, Ge);\n }\n function H() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.marginRightLeft, B = z === void 0 ? l : z;\n return V(pE || (pE = K([`\n label: thumbnail;\n display: flex;\n align-items: center;\n margin-right: `, `;\n min-height: auto;\n [dir='rtl'] & {\n margin-right: 0;\n margin-left: `, `;\n }\n pointer-events: none;\n `])), B, B);\n }\n function k() {\n return V(hE || (hE = K([`\n label: item_text;\n margin: 0; /* overwrite default margin */\n pointer-events: none;\n `, `;\n `])), _());\n }\n function Q() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.paddingTop, B = z === void 0 ? s : z;\n return V(mE || (mE = K([`\n label: secondary_text;\n display: -webkit-box;\n padding-top: `, `;\n pointer-events: none;\n `, `;\n `])), B, x({\n color: a\n }));\n }\n function I() {\n return V(gE || (gE = K([`\n label: loading_container;\n display: flex;\n height: 100%;\n align-items: center;\n justify-content: center;\n `])));\n }\n function G() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, z = $.horizontalOffset, B = z === void 0 ? p : z, O = $.radius, D = O === void 0 ? i : O;\n return V(vE || (vE = K([`\n label: keyboard_active;\n &:focus {\n &:after {\n `, `\n z-index: 1; // to keep focus indicator on top of hover\n }\n }\n `])), C.offsetFocusAfter({\n horizontalOffset: B,\n radius: D,\n verticalOffset: \"0rem\"\n }));\n }\n return {\n menuContainer: E,\n menuList: N,\n menuListItem: P,\n menuItemThumbnail: H,\n menuItemText: k,\n menuSecondaryText: Q,\n menuLoadingContainer: I,\n menuKeyboardActive: G,\n menuListWidthMin: S,\n menuListWidthMax: \"67.5rem\"\n };\n}\nvar yE, CE, xE, SE, _E, EE;\nfunction RD(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSpaceSm, n = e.sysSpaceLg, r = e.sysSizeCircleSm, a = e.sysSizeIconSm, i = e.sysColorBackgroundSurfaceHover, o = bE(e), s = o.menuContainer, u = o.menuList, l = o.menuListItem, c = o.menuItemThumbnail, d = o.menuItemText, p = o.menuSecondaryText, g = o.menuLoadingContainer, v = o.menuKeyboardActive, b = De(\"\".concat(a, \" + \").concat(t)), C = V(yE || (yE = K([`\n `, `;\n `])), u({\n paddingTop: 0\n })), w = V(CE || (CE = K([`\n `, `;\n margin-right: `, `;\n\n [dir='rtl'] & {\n margin-right: 0;\n margin-left: `, `;\n }\n `])), d(), b, b), _ = V(xE || (xE = K([`\n label: selected_icon;\n position: absolute;\n top: 50%;\n right: `, `;\n transform: translateY(-50%);\n\n [dir='rtl'] & {\n left: `, `;\n right: auto;\n }\n `])), n, n), x = V(SE || (SE = K([`\n label: thumbnail_image;\n width: `, `;\n `])), r), S = V(_E || (_E = K([`\n label: hilite;\n background-color: `, `;\n `])), i), E = V(EE || (EE = K([`\n label: unselectable;\n pointer-events: none;\n `])));\n return {\n menuContainer: s,\n menuList: u,\n menuListItem: l,\n menuItemText: d,\n menuSecondaryText: p,\n menuItemThumbnail: c,\n menuLoadingContainer: g,\n menuKeyboardActive: v,\n selectionMenuList: C,\n selectionMenuItemText: w,\n selectedIcon: _,\n itemThumbnailImage: x,\n itemHilite: S,\n unselectable: E,\n menuListStyles: bE\n };\n}\nvar jne = [\"menuName\", \"primaryText\", \"primaryTextLineClamp\", \"secondaryText\", \"secondaryTextLineClamp\", \"decoration\", \"id\", \"value\", \"isFocused\", \"isHilite\", \"isSelected\", \"onItemClick\", \"className\", \"unselectable\", \"isLoadingOptions\", \"isMobile\", \"keyboardActive\"], $ne = [\"name\", \"value\", \"className\", \"containerClassName\", \"itemClassName\", \"mobileHeaderClassName\", \"sheetClassName\", \"sheetWrapperClassName\", \"id\", \"initialItemFocus\", \"isOpen\", \"ignoreKeyboard\", \"mobileTitle\", \"mobileHeaderContents\", \"outsideClickCheck\", \"onOpen\", \"onClose\", \"onSelection\", \"options\", \"returnFocusToTrigger\", \"selectedIndex\", \"activeItem\", \"triggerElementId\", \"triggerElementRef\", \"rtl\", \"isLoadingOptions\", \"searchEnabled\", \"mobileFixedHeight\"], Hne = 310, Vne = function(e) {\n var t = e.menuName, n = e.primaryText, r = e.primaryTextLineClamp, a = e.secondaryText, i = e.secondaryTextLineClamp, o = e.decoration, s = e.id, u = e.value, l = e.isFocused, c = e.isHilite, d = e.isSelected, p = e.onItemClick, g = e.className, v = e.unselectable;\n e.isLoadingOptions;\n var b = e.isMobile, C = e.keyboardActive, w = Qt(e, jne), _ = Ue(null), x = s || \"\".concat(t, \"_item_\").concat(u), S = gn(), E = wt(function() {\n return RD(S);\n }, [S]), N = [E.menuListItem, C && E.menuKeyboardActive, v && E.unselectable, c && E.itemHilite], P = function(k) {\n var Q, I = k == null || (Q = k.parentElement) === null || Q === void 0 ? void 0 : Q.parentElement;\n if (I) {\n var G = I.getBoundingClientRect(), $ = k.getBoundingClientRect();\n ($.bottom > G.bottom || $.top < G.top) && k.scrollIntoView({\n block: \"nearest\",\n behavior: \"smooth\"\n });\n }\n };\n We(function() {\n if (_ && _.current) {\n var k = _.current;\n l && k.focus(), (l || c) && P(k);\n }\n }, [c, l]), We(function() {\n setTimeout(function() {\n if (_ && _.current && b) {\n var k = _.current;\n l && P(k);\n }\n }, Hne);\n }, []);\n var H = o && ue(\"div\", {\n css: E.menuItemThumbnail,\n \"data-ppui\": \"true\"\n }, o);\n return ue(\"li\", bt({\n css: N,\n className: g,\n id: x,\n role: \"option\",\n \"aria-selected\": d,\n tabIndex: -1,\n \"data-value\": u,\n ref: _,\n onClick: p\n }, w, {\n \"data-ppui\": \"true\"\n }), H, ue(\"p\", {\n css: E.selectionMenuItemText,\n \"data-ppui\": \"true\"\n }, ue(KI, {\n strong: d,\n as: \"span\",\n clampAtLine: r,\n \"data-ppui\": \"true\"\n }, n), a && ue(zb, {\n css: E.menuSecondaryText,\n as: \"span\",\n clampAtLine: i,\n \"data-ppui\": \"true\"\n }, a), d && ue(Ev, {\n size: \"sm\",\n css: E.selectedIcon,\n color: \"SelectedMain\",\n \"data-ppui\": \"true\"\n })));\n}, zne = function(e, t) {\n return e.findIndex(function(n) {\n return t === n.value || t === n.primaryText;\n });\n};\nfunction qne(e) {\n var t = vt.useState(e), n = fn(t, 2), r = n[0], a = n[1], i = vt.useRef(r);\n return [i, function(s) {\n i.current = s, a(s);\n }];\n}\nvar BD = function(e) {\n var t, n = e.name, r = n === void 0 ? \"smenu\" : n, a = e.value, i = e.className, o = e.containerClassName, s = e.itemClassName, u = e.mobileHeaderClassName, l = e.sheetClassName, c = e.sheetWrapperClassName, d = e.id, p = d === void 0 ? Za(\"selectionMenu_\") : d, g = e.initialItemFocus, v = g === void 0 ? !0 : g, b = e.isOpen, C = e.ignoreKeyboard, w = e.mobileTitle, _ = e.mobileHeaderContents, x = e.outsideClickCheck, S = e.onOpen, E = e.onClose, N = e.onSelection, P = e.options, H = e.returnFocusToTrigger, k = H === void 0 ? !0 : H, Q = e.selectedIndex, I = Q === void 0 ? 0 : Q, G = e.activeItem, $ = G === void 0 ? -1 : G, z = e.triggerElementId, B = e.triggerElementRef, O = e.rtl, D = O === void 0 ? !1 : O, T = e.isLoadingOptions, j = T === void 0 ? !1 : T, F = e.searchEnabled, L = F === void 0 ? !1 : F, q = e.mobileFixedHeight, W = Qt(e, $ne), X = Ue(), de = Ue(), Se = Ue(), Te = Ue(\"\"), Le, Ge = P && P.length, Ne = qne(v ? I : -1), ie = fn(Ne, 2), Ce = ie[0], ve = ie[1], Ae = ze(!0), _e = fn(Ae, 2), He = _e[0], Oe = _e[1], Be = gn(), qe = wt(function() {\n return RD(Be);\n }, [Be]), Ye = ((t = qe.menuListStyles) === null || t === void 0 ? void 0 : t.call(qe, Be)) || {}, Xe = Ye.menuListWidthMin, Ve = Ye.menuListWidthMax, $e = Be.sysSizeMediaMd, Je = vs(Mo(Xe, \"16px\")), Tt = vs(Mo(Ve, \"16px\")), ct = \"\".concat(vs(Mo($e, \"16px\"))), Dt = Jp() ? window.innerWidth < parseInt(ct, 10) : !1, mt = function(yt) {\n return (\n /* istanbul ignore next */\n yt && yt.current ? yt.current : null\n );\n }, et = function() {\n var Yt = mt(B);\n return Yt || (z && Eee() ? document.getElementById(z) : null);\n }(), dt = function() {\n var yt = et == null ? void 0 : et.getBoundingClientRect().width;\n if (j) {\n var Yt = mt(Se);\n Yt.style.width = yt ? \"\".concat(yt, \"px\") : \"\".concat(Tt, \"px\");\n } else {\n var dn = mt(de), Er = dn && dn.getBoundingClientRect().width;\n yt > Je && yt > Er && (dn.style.width = \"\".concat(yt, \"px\"));\n }\n }, Fe = function(yt) {\n ve(yt);\n }, Ot = function(yt) {\n var Yt = Math.min(Math.max(Ce.current + yt, 0), P.length - 1);\n Fe(Yt);\n }, nt = function(yt) {\n var Yt = mt(X), dn = et == null ? void 0 : et.contains(yt.target);\n (!x || x(yt)) && !dn && Yt && !Yt.contains(yt.target) && E(yt, \"backdropClick\");\n }, Ie = function(yt) {\n var Yt = yt.target, dn = zne(P, Yt.dataset.value);\n Fe(dn), N(dn);\n }, st = function() {\n var yt = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [], Yt = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : \"\";\n return yt.findIndex(function(dn) {\n return dn.primaryText.toLowerCase().startsWith(Yt.toLowerCase());\n });\n }, kt = function(yt) {\n yt.preventDefault();\n var Yt = Ce.current, dn = new yn(yt.key || yt.keyCode);\n if (dn.IS_ARROW_UP)\n Oe(!0), Ot(-1);\n else if (dn.IS_ARROW_DOWN)\n Oe(!0), Ot(1);\n else if (dn.IS_ENTER)\n N(Yt);\n else if (dn.IS_TAB || dn.IS_ESC) {\n var Er = dn.IS_TAB ? yn.NAME_TAB : yn.NAME_ESC;\n typeof E == \"function\" && !Dt && E(yt, Er), et == null || et.focus();\n } else if (L && yt.key.length === 1) {\n clearTimeout(Le), Te.current = Te.current + yt.key, Le = setTimeout(function() {\n Te.current = \"\";\n }, 700);\n var cr = st(P, Te.current);\n cr >= 0 && (Oe(!0), Fe(cr));\n }\n }, Mt = function(yt) {\n kt(yt);\n }, Kt = function(Yt, dn) {\n return Yt !== void 0 ? Yt : I !== void 0 && I >= 0 && P && P[I] && P[I].value !== void 0 ? P[I].value : dn;\n }(a), Rt = function(yt) {\n return yt && typeof yt == \"string\" ? ue(\"img\", {\n css: qe.itemThumbnailImage,\n src: yt,\n role: \"none\",\n \"data-ppui\": \"true\"\n }) : yt;\n }, jt = C ? -1 : Ce.current, _t = b && Ge && P.map(function(yt, Yt) {\n var dn = yt.hasOwnProperty(\"value\") ? yt.value : yt.primaryText, Er = !yt.unselectable && (Kt === void 0 ? I === Yt : dn === Kt), cr = Rt(yt.decoration || yt.imgSrc);\n return ue(Vne, bt({\n menuName: r\n }, yt, {\n value: dn,\n isSelected: Er,\n isFocused: jt === Yt,\n isHilite: $ === Yt,\n className: s,\n decoration: cr,\n key: \"smenu_\".concat(Yt),\n isMobile: Dt,\n keyboardActive: He,\n onItemClick: Ie,\n \"data-ppui\": \"true\"\n }));\n });\n Yi(function() {\n return b && (document.addEventListener(\"click\", nt), C || document.body.addEventListener(\"keydown\", Mt), Dt ? Oe(!1) : (dt(), Oe(v), jt < 0 && Fe(0)), typeof S == \"function\" && S(Dt)), function() {\n document.removeEventListener(\"click\", nt), C || document.body.removeEventListener(\"keydown\", Mt), Oe(!1);\n };\n }, [b, j]);\n var _n = D ? \"rtl\" : null, Rn = ue(\"ul\", bt({\n css: qe.selectionMenuList,\n className: i,\n id: p,\n tabIndex: 0,\n role: \"listbox\",\n \"aria-hidden\": !b,\n ref: de,\n dir: _n\n }, W, {\n \"data-ppui\": \"true\"\n }), _t), rr = ue(\"div\", {\n ref: Se,\n css: qe.menuLoadingContainer,\n \"data-ppui\": \"true\"\n }, ue(th, {\n screenReaderText: \"loading\",\n size: \"md\",\n \"data-ppui\": \"true\"\n })), Jn = j ? rr : Rn;\n return function() {\n if (Dt) {\n var Yt = _ ? \"90\" : void 0;\n return ue(Fne, {\n isOpen: b,\n onCloseComplete: E,\n title: w,\n headerClassName: u,\n headerContents: _,\n noPadding: !0,\n noCloseButton: !1,\n mobileFixedHeight: q || Yt,\n className: l,\n wrapperClassName: c,\n returnFocusToTrigger: k,\n \"data-ppui\": \"true\"\n }, Jn);\n }\n return b && ue(\"div\", {\n ref: X,\n css: qe.menuContainer,\n className: o,\n \"data-ppui-info\": \"selection-menu_3.8.2\"\n }, Jn);\n }();\n}, wE, TE, AE, NE, OE, LE, kE, IE, DE, PE, ME, RE, BE, FE, jE, $E, HE, VE, zE, qE, GE;\nfunction Gne(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSpaceSm, n = e.sysSpaceMd, r = e.sysSpaceLg, a = e.sysSpaceJumbo, i = e.sysBorderThicknessEmphasis, o = e.sysBorderThicknessNormal, s = e.sysSizeIndicatorMd, u = e.sysMotionDurationAction, l = e.sysColorPrimaryMain, c = e.sysColorPrimaryContrast, d = e.sysColorPrimaryMainHover, p = e.sysColorPrimaryMainActive, g = e.sysColorPrimaryContrastHover, v = e.sysColorPrimaryContrastActive, b = e.sysColorOverlayContrast, C = e.sysColorOverlayMainHover, w = e.sysColorOverlayMainActive, _ = e.sysColorFeaturedMain, x = e.sysColorFeaturedMainHover, S = e.sysColorFeaturedMainActive, E = e.sysColorFeaturedContrast, N = e.sysColorSecondaryMain, P = e.sysColorSuccessMain, H = e.sysMotionDurationHover, k = e.sysSizeMediaMd, Q = e.sysSizeMediaSm, I = \"-\".concat(i), G = xr(e), $ = G.screenReader, z = G.focusStyles, B = Fr(e), O = B.buttonLg, D = B.buttonSm, T = z.offsetFocusAfter, j = V(wE || (wE = K([`\n label: button_base;\n position: relative;\n border-radius: 1000px;\n color: `, `;\n cursor: pointer;\n display: inline-block;\n min-width: `, `;\n text-align: center;\n text-decoration: none;\n transition: color `, ` ease,\n background-color `, ` ease,\n border-color `, ` ease,\n box-shadow `, ` ease;\n border: `, \" solid \", `;\n `, `;\n background-color: `, `;\n padding: `, `\n `, `;\n\n &:hover,\n &:active,\n &:visited {\n color: `, `;\n }\n\n &:hover {\n text-decoration: none;\n background-color: `, `;\n border-color: `, `;\n }\n\n &:active {\n outline: none;\n background-color: `, `;\n border-color: `, `;\n }\n\n &:focus {\n outline: none;\n &:after {\n `, `\n }\n }\n\n [dir='rtl'] &:focus:after {\n left: 0;\n right: `, `;\n }\n `])), c, \"6rem\", u, u, u, u, i, l, O({\n color: c\n }), l, De(\"\".concat(n, \" - \").concat(i)), De(\"\".concat(a, \" - \").concat(i)), c, d, d, p, p, T({\n horizontalOffset: I,\n verticalOffset: I\n }), I), F = V(TE || (TE = K([`\n label: inverse;\n background-color: `, `;\n border-color: `, `;\n color: `, `;\n\n &:hover,\n &:active,\n &:visited {\n color: `, `;\n }\n\n &:hover {\n background: `, `;\n border-color: `, `;\n }\n\n &:active {\n background: `, `;\n border-color: `, `;\n }\n\n [dir='rtl'] &:focus:after {\n left: 0;\n right: `, `;\n }\n `])), c, c, l, l, g, g, v, v, I), L = V(AE || (AE = K([`\n label: secondary;\n background: transparent;\n border-color: `, `;\n color: `, `;\n box-shadow: 0 0 0 `, ` transparent inset;\n\n &:visited {\n color: `, `;\n }\n\n &:hover {\n background: transparent;\n color: `, `;\n border-color: `, `;\n box-shadow: none;\n }\n\n &:active {\n background: transparent;\n color: `, `;\n border-color: `, `;\n box-shadow: none;\n }\n `])), l, l, o, l, d, d, p, p), q = V(NE || (NE = K([`\n label: secondary_inverse;\n border-color: `, `;\n color: `, `;\n background-color: transparent;\n\n &:visited {\n color: `, `;\n }\n\n &:hover {\n background: `, `;\n color: `, `;\n border-color: `, `;\n box-shadow: none;\n }\n\n &:active {\n background: `, `;\n color: `, `;\n border-color: `, `;\n box-shadow: none;\n }\n `])), b, b, b, C, b, b, w, b, b), W = V(OE || (OE = K([`\n label: branded;\n background: `, `;\n border-color: `, `;\n color: `, `;\n\n &:hover,\n &:active,\n &:visited {\n color: `, `;\n }\n\n &:hover {\n background: `, `;\n border-color: `, `;\n }\n\n &:active {\n background: `, `;\n border-color: `, `;\n }\n `])), _, _, E, E, x, x, S, S), X = V(LE || (LE = K([`\n label: tertiary;\n position: relative;\n cursor: pointer;\n display: inline-block;\n background: transparent;\n border: none;\n `, `\n padding: `, \" \", `;\n\n &:hover,\n &:active {\n color: `, `;\n background: transparent;\n }\n\n &:hover,\n &:focus {\n text-decoration: underline;\n }\n\n &:active {\n text-decoration: none;\n }\n\n &:focus {\n outline: none;\n color: `, `;\n &:after {\n `, `\n }\n }\n `])), O({\n color: N\n }), n, t, N, N, T({\n radius: \"0.25rem\",\n horizontalOffset: \"0rem\",\n verticalOffset: \"0rem\"\n })), de = V(kE || (kE = K([`\n label: icon;\n vertical-align: top;\n margin-inline-end: `, `;\n margin-inline-start: 0;\n `])), t), Se = V(IE || (IE = K([`\n label: affordance;\n margin-inline-start: `, `;\n margin-inline-end: 0;\n vertical-align: top;\n position: relative;\n pointer-events: none;\n `])), t), Te = V(DE || (DE = K([`\n label: menu-wrap;\n position: relative;\n `]))), Le = V(PE || (PE = K([`\n label: size_sm;\n `, `\n min-width: `, `;\n padding: `, `\n `, `;\n `])), D({\n color: c\n }), \"3.75rem\", De(\"\".concat(s, \" - \").concat(i)), De(\"\".concat(r, \" - \").concat(i))), Ge = V(ME || (ME = K([`\n label: success_state;\n border-color: `, `;\n background-color: `, `;\n pointer-events: none;\n `])), P, P), Ne = V(RE || (RE = K([`\n label: processing_state;\n color: transparent;\n pointer-events: none;\n\n &:hover,\n &:active,\n &:visited {\n color: transparent;\n }\n `]))), ie = lp(BE || (BE = K([`\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n `]))), Ce = V(FE || (FE = K([`\n label: overlay;\n position: absolute;\n top: 0;\n bottom: 0;\n left: 0;\n right: 0;\n border-radius: inherit;\n text-align: center;\n opacity: 0;\n animation: `, \" \", ` ease-in forwards;\n display: flex;\n justify-content: center;\n align-items: center;\n padding-right: 0;\n `])), ie, H), ve = V(jE || (jE = K([`\n label: success_state_overlay;\n background-color: `, `;\n `])), P), Ae = V($E || ($E = K([`\n label: success_state_icon;\n line-height: `, `;\n color: `, `;\n `])), 2, c), _e = V(HE || (HE = K([`\n label: success_state_icon_sm;\n line-height: `, `;\n `])), 1.6), He = V(VE || (VE = K([`\n label: button_group;\n display: inline-grid;\n grid-template-columns: 1fr 1fr;\n gap: `, `;\n padding: `, \" \", `;\n `])), r, n, r), Oe = V(zE || (zE = K([`\n label: solo;\n grid-template-columns: 1fr;\n `]))), Be = V(qE || (qE = K([`\n label: btn_full_width;\n @media (max-width: `, `) {\n width: 100%;\n }\n `])), k), qe = V(GE || (GE = K([`\n label: btn_group_full_width;\n @media (max-width: `, `) {\n grid-template-columns: none;\n width: 100%;\n }\n `])), Q);\n return {\n base: j,\n secondary: L,\n inverse: F,\n secondaryInverse: q,\n branded: W,\n tertiary: X,\n icon: de,\n affordance: Se,\n menuWrapper: Te,\n sizeSm: Le,\n successState: Ge,\n processingState: Ne,\n screenReader: $,\n overlay: Ce,\n successStateOverlay: ve,\n successStateIcon: Ae,\n successStateIconSm: _e,\n buttonGroup: He,\n buttonGroupSolo: Oe,\n btnFullWidth: Be,\n btnGroupFullWidth: qe\n };\n}\nvar Une = [\"isMenu\", \"isOpen\", \"isSmall\"], Wne = [\"size\", \"inverse\", \"secondary\", \"branded\", \"tertiary\", \"isMenu\", \"isOpen\", \"btnState\", \"screenReaderText\", \"className\", \"children\", \"as\", \"iconComponent\", \"fullWidthOnMobile\"];\nfunction UE(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction Kne(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? UE(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : UE(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar Yne = function(e) {\n var t = e.isMenu, n = e.isOpen, r = e.isSmall, a = Qt(e, Une);\n if (!t)\n return null;\n var i = n ? wv : Tv;\n return ue(i, bt({}, a, {\n size: r ? \"xs\" : \"sm\",\n \"data-ppui\": \"true\"\n }));\n}, ry = Lt(function(e, t) {\n var n = e.size, r = e.inverse, a = e.secondary, i = e.branded, o = e.tertiary, s = e.isMenu, u = e.isOpen, l = e.btnState, c = l === void 0 ? \"initial\" : l, d = e.screenReaderText, p = e.className, g = e.children, v = e.as, b = e.iconComponent, C = e.fullWidthOnMobile, w = C === void 0 ? !0 : C, _ = Qt(e, Wne), x = gn(), S = wt(function() {\n return Gne(x);\n }, [x]), E = {};\n c === \"processing\" && (E.as = \"span\", n === \"sm\" && (E.size = \"xs\"), (a && r || !a && !r) && (E.inverse = !0));\n var N;\n i ? N = [S.base, S.branded] : o ? N = [S.tertiary] : N = [S.base, w && S.btnFullWidth, n === \"sm\" && S.sizeSm, r && S.inverse, a && S.secondary, a && r && S.secondaryInverse, c === \"success\" && S.successState, c === \"processing\" && S.processingState];\n var P = Kne({}, _);\n return u !== void 0 && (P[\"aria-expanded\"] = u), ue(v || \"button\", bt({\n css: N,\n className: p,\n disabled: c && c !== \"initial\",\n ref: t,\n \"data-ppui-info\": \"buttons_7.4.0\"\n }, P), function() {\n var k;\n c !== \"initial\" && (k = d || c);\n var Q = n === \"sm\" ? \"sm\" : \"md\", I = [S.successStateIcon, n === \"sm\" && S.successStateIconSm], G = ue(Ev, {\n css: I,\n size: Q,\n \"data-ppui\": \"true\"\n }), $ = null;\n if (b) {\n var z = n === \"sm\" ? \"xs\" : \"sm\";\n $ = ue(b, {\n css: S.icon,\n size: z,\n \"data-ppui\": \"true\"\n });\n }\n var B = [S.overlay, c === \"success\" && S.successStateOverlay], O = c !== \"initial\" ? ue(\"span\", {\n css: B,\n \"data-ppui\": \"true\"\n }, c === \"success\" && G, c === \"processing\" && ue(th, bt({}, E, {\n \"data-ppui\": \"true\"\n }))) : null, D = k ? ue(\"span\", {\n role: \"status\",\n css: S.screenReader,\n \"data-ppui\": \"true\"\n }, g, \" \", k) : null;\n return ue(vt.Fragment, null, $, g, ue(Yne, {\n isMenu: s,\n isOpen: u,\n isSmall: n === \"sm\",\n css: S.affordance,\n \"data-ppui\": \"true\"\n }), O, D);\n }());\n});\nconst FD = \"Button\", Xne = new ke(FD), ua = ({\n ariaLabel: e,\n className: t,\n target: n,\n text: r,\n type: a = Pa.Primary,\n analyticsCompName: i = \"\",\n clickEventName: o,\n url: s,\n mobileUrl: u = \"\",\n size: l = \"Large\",\n onClick: c,\n onFocus: d,\n as: p = \"a\",\n mid: g,\n mabReward: v\n}) => {\n const b = se(\n t,\n Xne.getPropsValueClassName(\"type\", a)\n ), { pageSegment: C, clientInfo: w, host: _, country: x } = Ze(Vt), { clientType: S } = w || {}, E = eh(S, s, u, _, x), N = Nn(\n {\n componentName: i,\n linkText: r,\n linkType: a,\n clickEvent: o,\n ariaLabel: e,\n mid: g,\n mabReward: v\n },\n C,\n ln.CTA\n ), P = {\n Small: \"sm\",\n Large: \"lg\"\n }, H = E ? { href: E } : {};\n return /* @__PURE__ */ h.jsx(\n ry,\n {\n as: p,\n \"aria-label\": e,\n className: b,\n target: n,\n secondary: a === \"Secondary\",\n branded: a === \"Branded\",\n tertiary: a === \"Tertiary\",\n \"data-pa-click\": i && N,\n size: P[l],\n onClick: c,\n onFocus: d,\n fullWidthOnMobile: !1,\n ...H,\n children: r\n }\n );\n};\nua.displayName = FD;\nconst ay = \"Button-Group\", Ql = new ke(ay), Zne = ({\n disclosureType: e,\n analyticsCompName: t,\n disclosureWrapper: n\n}) => e ? /* @__PURE__ */ h.jsx(\n n,\n {\n ...e,\n className: Ql.getElementClassName(\"legalText\"),\n paragraphSize: \"Caption\",\n analyticsCompName: t,\n analyticsTextSection: \"legalText\"\n }\n) : null, iy = ({\n button: e = [],\n className: t = \"\",\n alignment: n = \"Start\",\n legalPosition: r = \"Bottom\",\n disclosureType: a,\n analyticsCompName: i = \"\",\n disclosureWrapper: o,\n inlinePlayButtonWrapper: s,\n ...u\n}) => {\n const l = se(\n Ql.getComponentClassName(),\n Ql.getPropsValueClassName(\"align\", n),\n Ql.getPropsValueClassName(\"legalPosition\", r),\n t\n ), c = Ql.getPropsValueClassName(\n \"alignment\",\n n\n ), d = Zne({\n disclosureType: a,\n analyticsCompName: i,\n disclosureWrapper: o\n });\n return /* @__PURE__ */ h.jsxs(\"div\", { className: l, children: [\n r === \"Top\" && d,\n /* @__PURE__ */ h.jsx(\"div\", { className: c, children: e.map((p, g) => {\n switch (p.buttonStyle) {\n case \"inline\":\n return /* @__PURE__ */ h.jsx(\n xi,\n {\n analyticsCompName: i,\n ...p,\n ...u\n },\n `item-${g + 1}`\n );\n case \"ppreact\":\n return /* @__PURE__ */ h.jsx(\n ua,\n {\n analyticsCompName: i,\n ...p,\n ...u\n },\n `item-${g + 1}`\n );\n case \"inlinePlay\":\n return /* @__PURE__ */ h.jsx(\n s,\n {\n analyticsCompName: i,\n ...p,\n ...u\n },\n `item-${g + 1}`\n );\n case \"appstore\":\n return /* @__PURE__ */ h.jsx(\n Pee,\n {\n analyticsCompName: i,\n ...u,\n ariaLabel: p.ariaLabel,\n url: p.url,\n target: p.target,\n platform: p.platform\n },\n `item-${g + 1}`\n );\n default:\n return null;\n }\n }) }),\n r === \"Bottom\" && d\n ] });\n};\niy.displayName = ay;\nconst Ns = (e = {}) => /* @__PURE__ */ h.jsx(\n iy,\n {\n disclosureWrapper: Ci,\n inlinePlayButtonWrapper: Vb,\n ...e\n }\n);\nNs.displayName = ay;\n(function() {\n if (typeof window != \"object\")\n return;\n if (\"IntersectionObserver\" in window && \"IntersectionObserverEntry\" in window && \"intersectionRatio\" in window.IntersectionObserverEntry.prototype) {\n \"isIntersecting\" in window.IntersectionObserverEntry.prototype || Object.defineProperty(\n window.IntersectionObserverEntry.prototype,\n \"isIntersecting\",\n {\n get: function() {\n return this.intersectionRatio > 0;\n }\n }\n );\n return;\n }\n function e(x) {\n try {\n return x.defaultView && x.defaultView.frameElement || null;\n } catch {\n return null;\n }\n }\n var t = function(x) {\n for (var S = x, E = e(S); E; )\n S = E.ownerDocument, E = e(S);\n return S;\n }(window.document), n = [], r = null, a = null;\n function i(x) {\n this.time = x.time, this.target = x.target, this.rootBounds = v(x.rootBounds), this.boundingClientRect = v(x.boundingClientRect), this.intersectionRect = v(x.intersectionRect || g()), this.isIntersecting = !!x.intersectionRect;\n var S = this.boundingClientRect, E = S.width * S.height, N = this.intersectionRect, P = N.width * N.height;\n E ? this.intersectionRatio = Number((P / E).toFixed(4)) : this.intersectionRatio = this.isIntersecting ? 1 : 0;\n }\n function o(x, S) {\n var E = S || {};\n if (typeof x != \"function\")\n throw new Error(\"callback must be a function\");\n if (E.root && E.root.nodeType != 1 && E.root.nodeType != 9)\n throw new Error(\"root must be a Document or Element\");\n this._checkForIntersections = u(\n this._checkForIntersections.bind(this),\n this.THROTTLE_TIMEOUT\n ), this._callback = x, this._observationTargets = [], this._queuedEntries = [], this._rootMarginValues = this._parseRootMargin(E.rootMargin), this.thresholds = this._initThresholds(E.threshold), this.root = E.root || null, this.rootMargin = this._rootMarginValues.map(function(N) {\n return N.value + N.unit;\n }).join(\" \"), this._monitoringDocuments = [], this._monitoringUnsubscribes = [];\n }\n o.prototype.THROTTLE_TIMEOUT = 100, o.prototype.POLL_INTERVAL = null, o.prototype.USE_MUTATION_OBSERVER = !0, o._setupCrossOriginUpdater = function() {\n return r || (r = function(x, S) {\n !x || !S ? a = g() : a = b(x, S), n.forEach(function(E) {\n E._checkForIntersections();\n });\n }), r;\n }, o._resetCrossOriginUpdater = function() {\n r = null, a = null;\n }, o.prototype.observe = function(x) {\n var S = this._observationTargets.some(function(E) {\n return E.element == x;\n });\n if (!S) {\n if (!(x && x.nodeType == 1))\n throw new Error(\"target must be an Element\");\n this._registerInstance(), this._observationTargets.push({ element: x, entry: null }), this._monitorIntersections(x.ownerDocument), this._checkForIntersections();\n }\n }, o.prototype.unobserve = function(x) {\n this._observationTargets = this._observationTargets.filter(function(S) {\n return S.element != x;\n }), this._unmonitorIntersections(x.ownerDocument), this._observationTargets.length == 0 && this._unregisterInstance();\n }, o.prototype.disconnect = function() {\n this._observationTargets = [], this._unmonitorAllIntersections(), this._unregisterInstance();\n }, o.prototype.takeRecords = function() {\n var x = this._queuedEntries.slice();\n return this._queuedEntries = [], x;\n }, o.prototype._initThresholds = function(x) {\n var S = x || [0];\n return Array.isArray(S) || (S = [S]), S.sort().filter(function(E, N, P) {\n if (typeof E != \"number\" || isNaN(E) || E < 0 || E > 1)\n throw new Error(\"threshold must be a number between 0 and 1 inclusively\");\n return E !== P[N - 1];\n });\n }, o.prototype._parseRootMargin = function(x) {\n var S = x || \"0px\", E = S.split(/\\s+/).map(function(N) {\n var P = /^(-?\\d*\\.?\\d+)(px|%)$/.exec(N);\n if (!P)\n throw new Error(\"rootMargin must be specified in pixels or percent\");\n return { value: parseFloat(P[1]), unit: P[2] };\n });\n return E[1] = E[1] || E[0], E[2] = E[2] || E[0], E[3] = E[3] || E[1], E;\n }, o.prototype._monitorIntersections = function(x) {\n var S = x.defaultView;\n if (S && this._monitoringDocuments.indexOf(x) == -1) {\n var E = this._checkForIntersections, N = null, P = null;\n this.POLL_INTERVAL ? N = S.setInterval(E, this.POLL_INTERVAL) : (l(S, \"resize\", E, !0), l(x, \"scroll\", E, !0), this.USE_MUTATION_OBSERVER && \"MutationObserver\" in S && (P = new S.MutationObserver(E), P.observe(x, {\n attributes: !0,\n childList: !0,\n characterData: !0,\n subtree: !0\n }))), this._monitoringDocuments.push(x), this._monitoringUnsubscribes.push(function() {\n var Q = x.defaultView;\n Q && (N && Q.clearInterval(N), c(Q, \"resize\", E, !0)), c(x, \"scroll\", E, !0), P && P.disconnect();\n });\n var H = this.root && (this.root.ownerDocument || this.root) || t;\n if (x != H) {\n var k = e(x);\n k && this._monitorIntersections(k.ownerDocument);\n }\n }\n }, o.prototype._unmonitorIntersections = function(x) {\n var S = this._monitoringDocuments.indexOf(x);\n if (S != -1) {\n var E = this.root && (this.root.ownerDocument || this.root) || t, N = this._observationTargets.some(function(k) {\n var Q = k.element.ownerDocument;\n if (Q == x)\n return !0;\n for (; Q && Q != E; ) {\n var I = e(Q);\n if (Q = I && I.ownerDocument, Q == x)\n return !0;\n }\n return !1;\n });\n if (!N) {\n var P = this._monitoringUnsubscribes[S];\n if (this._monitoringDocuments.splice(S, 1), this._monitoringUnsubscribes.splice(S, 1), P(), x != E) {\n var H = e(x);\n H && this._unmonitorIntersections(H.ownerDocument);\n }\n }\n }\n }, o.prototype._unmonitorAllIntersections = function() {\n var x = this._monitoringUnsubscribes.slice(0);\n this._monitoringDocuments.length = 0, this._monitoringUnsubscribes.length = 0;\n for (var S = 0; S < x.length; S++)\n x[S]();\n }, o.prototype._checkForIntersections = function() {\n if (!(!this.root && r && !a)) {\n var x = this._rootIsInDom(), S = x ? this._getRootRect() : g();\n this._observationTargets.forEach(function(E) {\n var N = E.element, P = p(N), H = this._rootContainsTarget(N), k = E.entry, Q = x && H && this._computeTargetAndRootIntersection(N, P, S), I = null;\n this._rootContainsTarget(N) ? (!r || this.root) && (I = S) : I = g();\n var G = E.entry = new i({\n time: s(),\n target: N,\n boundingClientRect: P,\n rootBounds: I,\n intersectionRect: Q\n });\n k ? x && H ? this._hasCrossedThreshold(k, G) && this._queuedEntries.push(G) : k && k.isIntersecting && this._queuedEntries.push(G) : this._queuedEntries.push(G);\n }, this), this._queuedEntries.length && this._callback(this.takeRecords(), this);\n }\n }, o.prototype._computeTargetAndRootIntersection = function(x, S, E) {\n if (window.getComputedStyle(x).display != \"none\") {\n for (var N = S, P = w(x), H = !1; !H && P; ) {\n var k = null, Q = P.nodeType == 1 ? window.getComputedStyle(P) : {};\n if (Q.display == \"none\")\n return null;\n if (P == this.root || P.nodeType == /* DOCUMENT */\n 9)\n if (H = !0, P == this.root || P == t)\n r && !this.root ? !a || a.width == 0 && a.height == 0 ? (P = null, k = null, N = null) : k = a : k = E;\n else {\n var I = w(P), G = I && p(I), $ = I && this._computeTargetAndRootIntersection(I, G, E);\n G && $ ? (P = I, k = b(G, $)) : (P = null, N = null);\n }\n else {\n var z = P.ownerDocument;\n P != z.body && P != z.documentElement && Q.overflow != \"visible\" && (k = p(P));\n }\n if (k && (N = d(k, N)), !N)\n break;\n P = P && w(P);\n }\n return N;\n }\n }, o.prototype._getRootRect = function() {\n var x;\n if (this.root && !_(this.root))\n x = p(this.root);\n else {\n var S = _(this.root) ? this.root : t, E = S.documentElement, N = S.body;\n x = {\n top: 0,\n left: 0,\n right: E.clientWidth || N.clientWidth,\n width: E.clientWidth || N.clientWidth,\n bottom: E.clientHeight || N.clientHeight,\n height: E.clientHeight || N.clientHeight\n };\n }\n return this._expandRectByRootMargin(x);\n }, o.prototype._expandRectByRootMargin = function(x) {\n var S = this._rootMarginValues.map(function(N, P) {\n return N.unit == \"px\" ? N.value : N.value * (P % 2 ? x.width : x.height) / 100;\n }), E = {\n top: x.top - S[0],\n right: x.right + S[1],\n bottom: x.bottom + S[2],\n left: x.left - S[3]\n };\n return E.width = E.right - E.left, E.height = E.bottom - E.top, E;\n }, o.prototype._hasCrossedThreshold = function(x, S) {\n var E = x && x.isIntersecting ? x.intersectionRatio || 0 : -1, N = S.isIntersecting ? S.intersectionRatio || 0 : -1;\n if (E !== N)\n for (var P = 0; P < this.thresholds.length; P++) {\n var H = this.thresholds[P];\n if (H == E || H == N || H < E != H < N)\n return !0;\n }\n }, o.prototype._rootIsInDom = function() {\n return !this.root || C(t, this.root);\n }, o.prototype._rootContainsTarget = function(x) {\n var S = this.root && (this.root.ownerDocument || this.root) || t;\n return C(S, x) && (!this.root || S == x.ownerDocument);\n }, o.prototype._registerInstance = function() {\n n.indexOf(this) < 0 && n.push(this);\n }, o.prototype._unregisterInstance = function() {\n var x = n.indexOf(this);\n x != -1 && n.splice(x, 1);\n };\n function s() {\n return window.performance && performance.now && performance.now();\n }\n function u(x, S) {\n var E = null;\n return function() {\n E || (E = setTimeout(function() {\n x(), E = null;\n }, S));\n };\n }\n function l(x, S, E, N) {\n typeof x.addEventListener == \"function\" ? x.addEventListener(S, E, N || !1) : typeof x.attachEvent == \"function\" && x.attachEvent(\"on\" + S, E);\n }\n function c(x, S, E, N) {\n typeof x.removeEventListener == \"function\" ? x.removeEventListener(S, E, N || !1) : typeof x.detachEvent == \"function\" && x.detachEvent(\"on\" + S, E);\n }\n function d(x, S) {\n var E = Math.max(x.top, S.top), N = Math.min(x.bottom, S.bottom), P = Math.max(x.left, S.left), H = Math.min(x.right, S.right), k = H - P, Q = N - E;\n return k >= 0 && Q >= 0 && {\n top: E,\n bottom: N,\n left: P,\n right: H,\n width: k,\n height: Q\n } || null;\n }\n function p(x) {\n var S;\n try {\n S = x.getBoundingClientRect();\n } catch {\n }\n return S ? (S.width && S.height || (S = {\n top: S.top,\n right: S.right,\n bottom: S.bottom,\n left: S.left,\n width: S.right - S.left,\n height: S.bottom - S.top\n }), S) : g();\n }\n function g() {\n return {\n top: 0,\n bottom: 0,\n left: 0,\n right: 0,\n width: 0,\n height: 0\n };\n }\n function v(x) {\n return !x || \"x\" in x ? x : {\n top: x.top,\n y: x.top,\n bottom: x.bottom,\n left: x.left,\n x: x.left,\n right: x.right,\n width: x.width,\n height: x.height\n };\n }\n function b(x, S) {\n var E = S.top - x.top, N = S.left - x.left;\n return {\n top: E,\n left: N,\n height: S.height,\n width: S.width,\n bottom: E + S.height,\n right: N + S.width\n };\n }\n function C(x, S) {\n for (var E = S; E; ) {\n if (E == x)\n return !0;\n E = w(E);\n }\n return !1;\n }\n function w(x) {\n var S = x.parentNode;\n return x.nodeType == /* DOCUMENT */\n 9 && x != t ? e(x) : (S && S.assignedSlot && (S = S.assignedSlot.parentNode), S && S.nodeType == 11 && S.host ? S.host : S);\n }\n function _(x) {\n return x && x.nodeType === 9;\n }\n window.IntersectionObserver = o, window.IntersectionObserverEntry = i;\n})();\nvar G1 = /* @__PURE__ */ new Map(), o0 = /* @__PURE__ */ new WeakMap(), WE = 0, Qne = void 0;\nfunction Jne(e) {\n return e ? (o0.has(e) || (WE += 1, o0.set(e, WE.toString())), o0.get(e)) : \"0\";\n}\nfunction ere(e) {\n return Object.keys(e).sort().filter(function(t) {\n return e[t] !== void 0;\n }).map(function(t) {\n return t + \"_\" + (t === \"root\" ? Jne(e.root) : e[t]);\n }).toString();\n}\nfunction tre(e) {\n var t = ere(e), n = G1.get(t);\n if (!n) {\n var r = /* @__PURE__ */ new Map(), a, i = new IntersectionObserver(function(o) {\n o.forEach(function(s) {\n var u, l = s.isIntersecting && a.some(function(c) {\n return s.intersectionRatio >= c;\n });\n e.trackVisibility && typeof s.isVisible > \"u\" && (s.isVisible = l), (u = r.get(s.target)) == null || u.forEach(function(c) {\n c(l, s);\n });\n });\n }, e);\n a = i.thresholds || (Array.isArray(e.threshold) ? e.threshold : [e.threshold || 0]), n = {\n id: t,\n observer: i,\n elements: r\n }, G1.set(t, n);\n }\n return n;\n}\nfunction nre(e, t, n, r) {\n if (n === void 0 && (n = {}), r === void 0 && (r = Qne), typeof window.IntersectionObserver > \"u\" && r !== void 0) {\n var a = e.getBoundingClientRect();\n return t(r, {\n isIntersecting: r,\n target: e,\n intersectionRatio: typeof n.threshold == \"number\" ? n.threshold : 0,\n time: 0,\n boundingClientRect: a,\n intersectionRect: a,\n rootBounds: a\n }), function() {\n };\n }\n var i = tre(n), o = i.id, s = i.observer, u = i.elements, l = u.get(e) || [];\n return u.has(e) || u.set(e, l), l.push(t), s.observe(e), function() {\n l.splice(l.indexOf(t), 1), l.length === 0 && (u.delete(e), s.unobserve(e)), u.size === 0 && (s.disconnect(), G1.delete(o));\n };\n}\nfunction ah(e) {\n var t = e === void 0 ? {} : e, n = t.threshold, r = t.delay, a = t.trackVisibility, i = t.rootMargin, o = t.root, s = t.triggerOnce, u = t.skip, l = t.initialInView, c = t.fallbackInView, d = ut.useRef(), p = ut.useState({\n inView: !!l\n }), g = p[0], v = p[1], b = ut.useCallback(\n function(w) {\n d.current !== void 0 && (d.current(), d.current = void 0), !u && w && (d.current = nre(w, function(_, x) {\n v({\n inView: _,\n entry: x\n }), x.isIntersecting && s && d.current && (d.current(), d.current = void 0);\n }, {\n root: o,\n rootMargin: i,\n threshold: n,\n // @ts-ignore\n trackVisibility: a,\n // @ts-ignore\n delay: r\n }, c));\n },\n // We break the rule here, because we aren't including the actual `threshold` variable\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [\n // If the threshold is an array, convert it to a string so it won't change between renders.\n // eslint-disable-next-line react-hooks/exhaustive-deps\n Array.isArray(n) ? n.toString() : n,\n o,\n i,\n s,\n u,\n a,\n c,\n r\n ]\n );\n We(function() {\n !d.current && g.entry && !s && !u && v({\n inView: !!l\n });\n });\n var C = [b, g.inView, g.entry];\n return C.ref = C[0], C.inView = C[1], C.entry = C[2], C;\n}\nconst jD = {\n minHeight: \"18.75rem\",\n minWidth: \"auto\"\n}, $D = ({\n rootMargin: e = \"700px 0px\"\n}) => ({\n rootMargin: e,\n triggerOnce: !0,\n threshold: 0\n}), oy = ({\n children: e,\n className: t,\n containerDimensions: n = jD,\n motionOptions: r,\n isAnimated: a,\n rootMargin: i\n}) => {\n const { inView: o, ref: s } = ah($D({ rootMargin: i }));\n return /* @__PURE__ */ h.jsx(\n Wn,\n {\n motionOptions: r || CL,\n className: t,\n rootRef: s,\n style: n,\n isAnimated: a,\n children: o && e\n }\n );\n}, rre = ({\n mediaQueryTypeKeys: e,\n mediaQueryMap: t,\n setViewportType: n\n}) => e.map((a) => [t[a], (s) => {\n s.matches && n(a);\n}]), Qn = () => {\n const { clientInfo: e } = Ze(Vt), [t, n] = ze(\n (e == null ? void 0 : e.initialViewPort) || \"sm\"\n );\n return We(() => {\n const r = {\n xs: window.matchMedia(`(max-width: ${oi.xs})`),\n sm: window.matchMedia(\n `(min-width: ${bn.sm}) and (max-width: ${oi.sm})`\n ),\n md: window.matchMedia(\n `(min-width: ${bn.md}) and (max-width: ${oi.md})`\n ),\n lg: window.matchMedia(\n `(min-width: ${bn.lg}) and (max-width: ${oi.lg})`\n ),\n xl: window.matchMedia(\n `(min-width: ${bn.xl}) and (max-width: ${oi.xl})`\n ),\n \"2xl\": window.matchMedia(`(min-width: ${bn[\"2xl\"]})`)\n }, a = Object.keys(r), i = rre({\n mediaQueryTypeKeys: a,\n mediaQueryMap: r,\n setViewportType: n\n });\n i.forEach(([s, u]) => {\n s.addEventListener ? s.addEventListener(\"change\", u) : s.addListener(u);\n });\n const o = a.find((s) => r[s].matches);\n return n(o || \"sm\"), () => {\n i.forEach(([s, u]) => {\n s.removeEventListener ? s.removeEventListener(\"change\", u) : s.removeListener(u);\n });\n };\n }, []), t;\n}, are = ({\n src: e,\n qual: t,\n format: n,\n width: r\n}) => {\n const a = e.split(\"?\")[0];\n let i = `?quality=${t.toString()}&width=${r.toString()}`;\n return n && (i = `${i}&format=${n}`), `${a}${i}`;\n}, HD = ({\n src: e,\n qual: t = \"50\",\n width: n = 1e3,\n format: r,\n stripQueryParams: a = !1\n}) => {\n if (e)\n try {\n if (a)\n return are({\n src: e,\n qual: t,\n width: n,\n format: r\n });\n const i = new URL(e);\n return i.searchParams.set(\"quality\", t.toString()), i.searchParams.set(\"width\", n.toString()), r && i.searchParams.set(\"format\", r.toString()), i.toString();\n } catch {\n return e;\n }\n}, ire = ({\n src: e,\n maxWidth: t,\n qual: n,\n format: r,\n stripQueryParams: a\n}) => {\n const o = t || 1200, s = [];\n for (let u = 300; u < o; u += 300)\n s.push(\n `${HD({\n src: e,\n qual: n,\n width: u,\n format: r,\n stripQueryParams: a\n })} ${u}w`\n );\n return s;\n}, Qs = ({\n src: e,\n maxWidth: t,\n format: n,\n qual: r = 75,\n stripQueryParams: a\n}) => {\n if (!e)\n return {};\n const i = HD({\n src: e,\n qual: r,\n width: 300,\n format: n,\n stripQueryParams: a\n }), o = ire({\n src: e,\n maxWidth: t,\n qual: r,\n format: n,\n stripQueryParams: a\n }).join();\n return {\n ...(() => n ? {} : {\n src: i\n })(),\n srcSet: o\n };\n};\nconst VD = \"ImageFrame\", s0 = new ke(VD), zD = ({\n className: e,\n imageAltText: t = \"\",\n loading: n = \"lazy\",\n fetchPriority: r = \"auto\",\n baseImage: a = \"\",\n mdImage: i = \"\",\n dimensions: o = {\n minHeight: \"12.5rem\",\n minWidth: \"auto\"\n },\n imageLink: s,\n target: u = \"_self\",\n analyticsCompName: l = \"\",\n ariaHidden: c = !1,\n ariaDescribedBy: d,\n roundedCorners: p = !1,\n maxSrcSetWidth: g = 1e3,\n customWrapper: v,\n lazyLoadWrapper: b,\n lazyLoadRootMargin: C,\n imageServerKnobs: w = {},\n dataPaClick: _,\n verticalAlign: x = \"center\",\n imageLinkAttrs: S,\n stripQueryParams: E = !1,\n rootRef: N,\n pictureRef: P,\n ...H\n}) => {\n const { pageSegment: k } = Ze(Vt), Q = Qn(), { quality: I = 75, maxWidth: G = g } = w, $ = se(\n e,\n s0.getComponentClassName(),\n s0.getPropsValueClassName(\"roundedCorners\", p)\n ), z = se({\n [s0.getElementClassName(\"img-v-align-top\")]: x === \"top\",\n [s0.getElementClassName(\"img-v-align-bottom\")]: x === \"bottom\"\n }), B = () => _ || (l ? Nn(\n {\n componentName: l,\n linkText: t,\n linkSection: \"Image\"\n },\n k,\n ln.Link\n ) : \"\"), O = [\"xs\", \"sm\"].includes(Q), D = Qs({\n stripQueryParams: E,\n src: i || a,\n maxWidth: G,\n qual: I\n }), T = Qs({\n stripQueryParams: E,\n src: a,\n maxWidth: G,\n qual: I\n }), j = Qs({\n stripQueryParams: E,\n src: i || a,\n maxWidth: G,\n format: \"webp\",\n // query for format property https://developer.fastly.com/reference/io/format#allowed-values\n qual: I\n }), F = Qs({\n stripQueryParams: E,\n src: a,\n maxWidth: G,\n format: \"webp\",\n // query for format property https://developer.fastly.com/reference/io/format#allowed-values\n qual: I\n }), L = Qs({\n stripQueryParams: E,\n src: i || a,\n maxWidth: G,\n format: \"avif\",\n // query for format property https://developer.fastly.com/reference/io/format#allowed-values\n qual: I\n }), q = Qs({\n stripQueryParams: E,\n src: a,\n maxWidth: G,\n format: \"avif\",\n // query for format property https://developer.fastly.com/reference/io/format#allowed-values\n qual: I\n }), W = O ? T : D, X = O ? F : j, de = O ? q : L, Se = {\n ...W\n };\n n === \"lazy\" && (Se.loading = \"lazy\", Se.decoding = \"async\"), r === \"high\" && (Se.fetchpriority = \"high\");\n const Te = /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"source\", { type: \"image/webp\", ...X }),\n /* @__PURE__ */ h.jsx(\"source\", { type: \"image/avif\", ...de }),\n /* @__PURE__ */ h.jsx(\n \"img\",\n {\n alt: t,\n \"aria-hidden\": c,\n \"aria-describedby\": d,\n className: z || void 0,\n ...Se\n }\n )\n ] }), Le = u === \"_blank\" ? { rel: \"noopener\" } : {}, Ge = s ? /* @__PURE__ */ h.jsx(\n \"a\",\n {\n ...Le,\n className: $,\n href: s,\n \"data-pa-click\": B(),\n target: u,\n ...S,\n children: Te\n }\n ) : Te, Ne = /* @__PURE__ */ h.jsx(\"picture\", { ref: P, children: Ge });\n if (n === \"lazy\")\n return /* @__PURE__ */ h.jsx(\n b,\n {\n className: $,\n containerDimensions: o,\n rootRef: N,\n rootMargin: C,\n ...H,\n children: Ne\n }\n );\n const ie = {\n className: $,\n style: o,\n ref: N,\n ...H\n }, Ce = v || \"div\";\n return vt.createElement(Ce, ie, Ne);\n}, ur = Lt(({ motionOptions: e, isAnimated: t = !0, ...n }, r) => {\n const i = {\n ...e || CL,\n scrollTriggerOptions: {\n triggerOnce: !0\n }\n };\n return /* @__PURE__ */ h.jsx(\n zD,\n {\n ...n,\n rootRef: r,\n customWrapper: Wn,\n lazyLoadWrapper: oy,\n motionOptions: i,\n isAnimated: t\n }\n );\n});\nur.displayName = VD;\nvar rl = vt.createContext(null);\nfunction KE(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction YE(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? KE(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : KE(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar ore = function(e, t, n, r) {\n return n ? e && e.messageFormatter ? e.messageFormatter({\n id: n\n }).format(r) : n : t;\n}, sre = function(e, t, n) {\n if (e && e.currencyFormatter) {\n var r = e.currencyFormatter({\n currency: n\n }), a = r.formatToParts(1e3), i = ure(a), o = i.intlMaskOptions, s = i.intlCurrencyPrefix, u = i.intlCurrencySuffix, l = r.resolvedOptions();\n return l.maximumFractionDigits === 0 && (o.padFractionalZeros = !1, o.scale = 0), {\n currencyMaskOptions: YE(YE({\n padFractionalZeros: !0\n }, o), t),\n intlCurrencyPrefix: s,\n intlCurrencySuffix: u\n };\n }\n return {\n currencyMaskOptions: t\n };\n};\nfunction ure(e) {\n var t = {\n mask: Number\n }, n = \"\", r = \"\";\n return e.forEach(function(a, i) {\n var o = a.type, s = a.value;\n switch (o) {\n case \"currencySymbol\":\n i === 0 ? n = s : r = s;\n break;\n case \"currency\":\n i === 0 ? n = s : r = s;\n break;\n case \"group\":\n t.thousandsSeparator = s;\n break;\n case \"fraction\":\n t.scale = s.length;\n break;\n case \"decimal\":\n t.radix = s;\n break;\n }\n }), {\n intlMaskOptions: t,\n intlCurrencyPrefix: n,\n intlCurrencySuffix: r\n };\n}\nvar XE, ZE, QE, JE, ew, tw, nw, rw, aw, iw, ow, sw, uw, lw, cw, dw, fw, pw, hw, mw, gw, vw, bw, yw, Cw, xw, Sw, _w, Ew, ww, Tw, Aw, Nw, Ow, Lw, kw, Iw, Dw, Pw, Mw, Rw, Bw, Fw, jw, $w, Hw, Vw, zw, qw, Gw, Uw, Ww, Kw, Yw, Xw, Zw, Qw;\nfunction fd(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysBorderThicknessNormal, n = e.sysBorderThicknessEmphasis, r = e.sysBorderRadiusSm, a = e.sysColorBackgroundSurface, i = e.sysColorBackgroundMediumContrast, o = e.sysSpaceTiny, s = e.sysSpaceXs, u = e.sysSpaceSm, l = e.sysSpaceMd, c = e.sysSpaceXl, d = e.sysMotionDurationHover, p = e.sysSizeTapTargetDefault, g = e.sysColorStructureBorderHighContrast, v = e.sysColorErrorMain, b = e.sysColorSuccessMain, C = e.sysTypographyBodyLineHeight, w = e.sysTypographyCaptionLineHeight, _ = e.sysColorBackgroundHighContrast, x = e.sysSizeFieldLg, S = De(\"(\".concat(x, \" - \").concat(C, \") / 2\")), E = De(\"(\".concat(x, \" - \").concat(C, \") / 2\")), N = De(\"\".concat(x, \" - \").concat(u, \" - \").concat(w, \" - \").concat(o, \" - \").concat(C)), P = De(\"4rem - 0.125rem\"), H = xr(e), k = H.focusStyles, Q = H.ellipsis, I = H.screenReader, G = Fr(e), $ = G.caption, z = G.body, B = G.fieldLabelSm, O = k.stateFocusBorderColorInner, D = k.stateFocusBorderWidthInner, T = k.stateFocusBorderColorOuter, j = k.stateFocusBorderWidthOuter, F = k.stateErrorFocusBorderColorOuter, L = k.stateErrorFocusBorderColorInner;\n function q() {\n return V(XE || (XE = K([`\n border-color: `, `;\n box-shadow: 0 0 0\n `, `\n `, ` inset,\n 0 0 0 `, \" \", `;\n `])), O, De(\"\".concat(D, \" - \").concat(t)), O, j, T);\n }\n function W() {\n return V(ZE || (ZE = K([`\n border-width: `, `;\n border-color: `, `;\n box-shadow: 0 0 0\n `, `\n `, ` inset,\n 0 0 0 `, \" \", `;\n `])), n, L, De(\"\".concat(D, \" - \").concat(n)), L, j, F);\n }\n function X() {\n return V(QE || (QE = K([`\n `, `;\n display: flex;\n margin: `, ` 0 0;\n `])), $({\n color: i\n }), s);\n }\n function de() {\n return V(JE || (JE = K([`\n text-decoration: none;\n position: absolute;\n `])));\n }\n var Se = V(ew || (ew = K([`\n label: label;\n `, `\n `, `;\n pointer-events: none;\n position: absolute;\n top: `, `;\n transition: font-size `, ` ease-in-out,\n top `, ` ease-in-out,\n background-color 10ms `, ` linear;\n right: `, `;\n left: `, `;\n background-clip: padding-box;\n `])), B({\n color: i\n }), Q, u, d, d, d, l, l), Te = V(tw || (tw = K([`\n label: label_placeholder_shown_and_not_focused;\n :placeholder-shown:not(:focus) ~ label {\n `, `;\n top: `, `;\n background-color: transparent;\n margin-bottom: 0;\n }\n `])), z({\n color: i\n }), S), Le = V(nw || (nw = K([`\n label: label_screenreader;\n `, `\n `])), I), Ge = V(rw || (rw = K([`\n label: helper_text;\n `, `\n display: block;\n list-style: none;\n padding: 0;\n overflow-wrap: break-word;\n `])), X()), Ne = V(aw || (aw = K([`\n label: text_input_base;\n `, `;\n padding: 0;\n position: relative;\n text-align: left;\n [dir='rtl'] & {\n text-align: right;\n }\n `])), z()), ie = V(iw || (iw = K([`\n label: icon_right;\n `, `\n width: `, `;\n height: `, `;\n display: flex;\n justify-content: center;\n align-items: center;\n top: `, `;\n right: `, `;\n left: auto;\n [dir='rtl'] & {\n left: `, `;\n right: auto;\n }\n `])), de(), p, p, u, u, u), Ce = V(ow || (ow = K([`\n label: icon_left;\n pointer-events: none;\n z-index: 1;\n `, `\n inset: `, \" auto \", \" \", `;\n color: `, `;\n [dir='rtl'] & {\n inset: `, \" \", \" \", ` auto;\n }\n `])), de(), S, S, l, i, S, l, S), ve = V(sw || (sw = K([`\n label: text_input_control;\n padding: `, `\n `, `\n `, `\n `, `;\n `, `;\n text-overflow: ellipsis;\n box-sizing: border-box;\n width: 100%;\n border: `, ` solid\n `, `;\n border-radius: `, `;\n background-color: `, `;\n &::placeholder {\n color: `, `;\n }\n &:placeholder-shown:not(:focus)::-webkit-input-placeholder {\n opacity: 0;\n transition: opacity `, ` ease-in-out;\n }\n &:placeholder-shown:not(:focus)::-moz-placeholder {\n opacity: 0;\n transition: opacity `, ` ease-in-out;\n }\n &:first-line {\n line-height: `, `;\n }\n &::-ms-reveal, &::-ms-clear{\n display: none;\n }\n\n margin: 0;\n outline: none;\n position: relative;\n\n &:focus {\n `, `;\n }\n\n -webkit-appearance: none;\n -moz-appearance: none;\n\n min-height: `, `; // Replace later\n &::-webkit-input-placeholder {\n color: `, `;\n opacity: 1;\n }\n &:-moz-placeholder {\n color: `, `;\n opacity: 1;\n transition: opacity `, ` ease-in-out;\n }\n `])), De(\"\".concat(S, \" + \").concat(u)), De(\"\".concat(l, \" - \").concat(t)), N, De(\"\".concat(l, \" - \").concat(t)), z(), g, t, r, a, i, d, d, C, q(), x, i, i, d), Ae = V(uw || (uw = K([`\n label: no_label_text_input_control;\n padding: `, `\n `, `\n `, `\n `, `;\n &:placeholder-shown:not(:focus)::placeholder {\n opacity: 1;\n }\n `])), De(\"\".concat(S, \" - \").concat(t)), De(\"\".concat(l, \" - \").concat(t)), De(\"\".concat(E, \" - \").concat(t)), De(\"\".concat(l, \" - \").concat(t))), _e = V(lw || (lw = K([`\n label: error_text_input_control;\n border: `, \" solid \", `;\n padding: `, `\n `, `\n `, `\n `, `;\n\n &:focus {\n `, `;\n }\n `])), n, v, De(\"\".concat(S, \" + \").concat(u, \" - \").concat(n, \" / 2\")), De(\"\".concat(l, \" - \").concat(n)), De(\"\".concat(N, \" - \").concat(n, \" / 2\")), De(\"\".concat(l, \" - \").concat(n)), W()), He = V(cw || (cw = K([`\n label: text_input_control_error_with_icon_right;\n padding-right: `, `;\n padding-left: `, `;\n [dir='rtl'] & {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), De(\"\".concat(l, ` +\n `).concat(p, \" - \").concat(n)), De(\"\".concat(l, ` -\n `).concat(n)), De(\"\".concat(l, ` +\n `).concat(p, \" - \").concat(n)), De(\"\".concat(l, ` -\n `).concat(n))), Oe = V(dw || (dw = K([`\n label: text_input_control_error_with_icon_left;\n padding-left: `, `;\n padding-right: `, `;\n [dir='rtl'] & {\n padding-right: `, `;\n padding-left: `, `;\n }\n `])), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(n)), De(\"\".concat(l, ` -\n `).concat(n)), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(n)), De(\"\".concat(l, ` -\n `).concat(n))), Be = V(fw || (fw = K([`\n label: text_input_control_error_with_icon_left_and_right;\n padding-right: `, `;\n padding-left: `, `;\n [dir='rtl'] & {\n padding-right: `, `;\n padding-left: `, `;\n }\n `])), De(\"\".concat(l, ` +\n `).concat(p, \" - \").concat(n)), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(n)), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(n)), De(\"\".concat(l, ` +\n `).concat(p, \" - \").concat(n))), qe = V(pw || (pw = K([`\n label: no_label_text_input_control_error;\n padding: `, `\n `, `\n `, `\n `, `;\n `])), De(\"\".concat(S, \" - \").concat(n)), De(\"\".concat(l, \" - \").concat(n)), De(\"\".concat(E, \" - \").concat(n)), De(\"\".concat(l, \" - \").concat(n))), Ye = V(hw || (hw = K([`\n label: text_input_control_with_icon_right;\n padding-right: `, `;\n padding-left: `, `;\n [dir='rtl'] & {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), De(\"\".concat(l, \" + \").concat(u, \" + \").concat(p, \" - \").concat(t)), De(\"\".concat(l, \" - \").concat(t)), De(\"\".concat(l, \" + \").concat(u, \" + \").concat(p, \" - \").concat(t)), De(\"\".concat(l, \" - \").concat(t))), Xe = V(mw || (mw = K([`\n label: text_input_control_with_icon_left;\n padding-left: `, `;\n padding-right: `, `;\n [dir='rtl'] & {\n padding-right: `, `;\n padding-left: `, `;\n }\n `])), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(t)), De(\"\".concat(l, ` -\n `).concat(t)), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(t)), De(\"\".concat(l, ` -\n `).concat(t))), Ve = V(gw || (gw = K([`\n label: text_input_control_with_icon_left_and_right;\n padding-left: `, `;\n padding-right: `, `;\n [dir='rtl'] & {\n padding-right: `, `;\n padding-left: `, `;\n }\n `])), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(t)), De(\"\".concat(l, ` +\n `).concat(p, \" - \").concat(t)), De(\"2 * \".concat(l, \" + \").concat(c, ` -\n `).concat(t)), De(\"\".concat(l, ` +\n `).concat(p, \" - \").concat(t))), $e = V(vw || (vw = K([`\n label: label_with_icon_right;\n left: `, `;\n right: `, `;\n [dir='rtl'] & {\n left: `, `;\n right: `, `;\n }\n `])), l, De(\"\".concat(l, ` +\n `).concat(p)), De(\"\".concat(l, \" + \").concat(p)), l), Je = V(bw || (bw = K([`\n label: label_with_icon_left;\n left: `, `;\n right: `, `;\n [dir='rtl'] & {\n right: `, `;\n left: `, `;\n }\n `])), De(\"2 * \".concat(l, \" + \").concat(c)), l, De(\"2 * \".concat(l, \" + \").concat(c)), l), Tt = V(yw || (yw = K([`\n label: error_text;\n `, `\n align-items: center;\n `])), X()), ct = V(Cw || (Cw = K([`\n label: error_icon;\n color: `, `;\n margin-right: `, `;\n margin-left: 0;\n align-self: flex-start;\n [dir='rtl'] & {\n margin-left: `, `;\n margin-right: 0;\n }\n `])), v, s, s), Dt = V(xw || (xw = K([`\n label: success_icon;\n color: `, `;\n margin-right: `, `;\n margin-left: initial;\n align-self: flex-start;\n [dir='rtl'] & {\n margin-left: `, `;\n margin-right: 0;\n }\n `])), b, s, s), mt = V(Sw || (Sw = K([`\n label: multi_line_error;\n list-style: none;\n padding: 0;\n margin: 0;\n `]))), et = V(_w || (_w = K([`\n label: prefix_wrapper;\n position: relative;\n display: flex;\n background-color: `, `;\n &:after {\n content: ' ';\n position: absolute;\n height: 100%;\n width: 100%;\n top: 0;\n left: 0;\n border: `, ` solid\n `, `;\n border-radius: `, `;\n pointer-events: none;\n }\n padding: `, `;\n `])), a, t, g, r, t), dt = V(Ew || (Ew = K([`\n label: prefix_wrapper_error;\n &:after {\n border: `, \" solid \", `;\n }\n padding: `, \" \", `;\n `])), n, v, t, n), Fe = V(ww || (ww = K([`\n label: prefix_wrapper_focus_error;\n &:after {\n `, `\n }\n `])), W()), Ot = V(Tw || (Tw = K([`\n label: prefix_suffix;\n white-space: nowrap;\n color: `, `;\n padding: `, \" \", `\n `, \" \", `;\n `])), _, De(\"\".concat(S, \" + \").concat(u)), o, N, o), nt = V(Aw || (Aw = K([`\n label: prefix_wrapper_control;\n border: none;\n min-height: `, `;\n &:focus {\n border: none;\n box-shadow: none;\n outline: none;\n }\n &:placeholder-shown:not(:focus) ~ div {\n opacity: 0;\n }\n `])), P), Ie = V(Nw || (Nw = K([`\n label: prefix;\n order: -1;\n `, `\n padding-left: `, `;\n [dir='rtl'] & {\n `, `\n padding-right: `, `;\n }\n `])), Ot, l, Ot, l), st = V(Ow || (Ow = K([`\n label: suffix;\n `, `\n padding-right: `, `;\n [dir='rtl'] & {\n `, `\n padding-left: `, `;\n }\n `])), Ot, l, Ot, l), kt = V(Lw || (Lw = K([`\n label: no_label_suffix_or_prefix;\n padding-top: `, `;\n padding-bottom: `, `;\n [dir='rtl'] & {\n padding-top: `, `;\n padding-bottom: `, `;\n }\n `])), De(\"\".concat(S, \" - \").concat(t)), De(\"\".concat(E, \" - \").concat(t)), De(\"\".concat(S, \" - \").concat(t)), De(\"\".concat(E, \" - \").concat(t))), Mt = V(kw || (kw = K([`\n label: prefix_wrapper_control_with_prefix;\n padding-left: 0;\n [dir='rtl'] & {\n padding-right: 0;\n padding-left: `, `;\n }\n `])), l), Kt = V(Iw || (Iw = K([`\n label: prefix_wrapper_control_with_prefix;\n padding-right: 0;\n [dir='rtl'] & {\n padding-left: 0;\n padding-right: `, `;\n }\n `])), l), Rt = V(Dw || (Dw = K([`\n label: prefix_wrapper_control_with_prefix_suffix;\n padding-left: 0;\n padding-right: 0;\n [dir='rtl'] & {\n padding-left: 0;\n padding-right: 0;\n }\n `]))), jt = V(Pw || (Pw = K([`\n label: prefix_wrapper_focus;\n &:after {\n `, `\n }\n `])), q()), _t = V(Mw || (Mw = K([`\n label: text_area_control;\n height: auto;\n background-color: `, `;\n outline: none;\n box-shadow: none;\n resize: none;\n display: block;\n &:placeholder-shown:not(:focus) {\n ~ label {\n padding-top: 0;\n }\n }\n &:focus {\n ~ label {\n border-top: `, ` solid transparent;\n padding-top: `, `;\n }\n }\n `])), a, De(\"\".concat(D, ` -\n `).concat(t)), De(\"\".concat(u, ` -\n `).concat(D))), _n = V(Rw || (Rw = K([`\n label: text_area_control_error;\n &:focus {\n ~ label {\n border-top: `, ` solid transparent;\n }\n }\n `])), De(\"\".concat(D, ` -\n `).concat(n))), Rn = V(Bw || (Bw = K([`\n label: text_area_control_label;\n background-color: `, `;\n top: `, `;\n padding-top: `, `;\n `])), a, t, De(\"\".concat(u, ` -\n `).concat(t))), rr = V(Fw || (Fw = K([`\n label: text_area_control_error_label;\n top: `, `;\n padding-top: `, `;\n `])), n, De(\"\".concat(u, ` -\n `).concat(n))), Jn = V(jw || (jw = K([`\n label: text_area_counter_wrapper;\n cursor: text;\n position: relative;\n padding: `, `;\n &:after {\n content: ' ';\n position: absolute;\n height: 100%;\n width: 100%;\n top: 0;\n left: 0;\n border: `, ` solid\n `, `;\n border-radius: `, `;\n pointer-events: none;\n }\n textarea:focus,\n textarea:not(:focus) {\n border: none;\n outline: none;\n box-shadow: none;\n }\n `])), t, t, g, r), yt = V($w || ($w = K([`\n label: text_area_counter_wrapper_focus;\n &:after {\n `, `\n }\n `])), q()), Yt = V(Hw || (Hw = K([`\n label: text_area_counter_text;\n `, `\n padding: `, `\n `, `\n `, `\n `, `;\n text-align: right;\n background-color: `, `;\n [dir='rtl'] & {\n text-align: left;\n }\n `])), $({\n color: i\n }), u, De(\"\".concat(l, \" - \").concat(t)), De(\"\".concat(u, \" - \").concat(t)), De(\"\".concat(l, \" - \").concat(t)), a), dn = V(Vw || (Vw = K([`\n label: text_area_error_counter_wrapper;\n padding-left: `, `;\n padding-right: `, `;\n\n &:after {\n border: `, \" solid \", `;\n }\n `])), n, n, n, v), Er = V(zw || (zw = K([`\n label: text_area_error_counter_wrapper_focus;\n &:after {\n `, `\n }\n `])), W()), cr = V(qw || (qw = K([`\n label: text_area_error_counter_text;\n color: `, `;\n padding-left: `, `;\n padding-right: `, `;\n `])), v, De(\"\".concat(l, ` -\n `).concat(n)), De(\"\".concat(l, ` -\n `).concat(n))), wr = De(\"\".concat(p, \" + \").concat(l)), Ta = De(\"\".concat(w, \" + \").concat(o)), Ct = V(Gw || (Gw = K([`\n label: text_display_no_label_control;\n padding-top: `, `;\n padding-bottom: `, `;\n padding-left: 0;\n [dir='rtl'] & {\n padding-left: `, `;\n }\n `])), l, l, wr), Wt = V(Uw || (Uw = K([`\n label: text_display_control;\n border: 0;\n padding-left: 0;\n padding-top: `, `;\n padding-bottom: 0;\n min-height: `, `;\n display: block;\n background-color: transparent;\n overflow-wrap: break-word;\n [dir='rtl'] & {\n padding-right: 0;\n }\n `])), Ta, \"2.875rem\"), On = V(Ww || (Ww = K([`\n label: text_display_label;\n top: 0;\n left: 0;\n [dir='rtl'] & {\n left: `, `;\n right: 0;\n }\n `])), wr), Bt = V(Kw || (Kw = K([`\n label: text_display_icon_right;\n top: 0;\n `]))), ft = V(Yw || (Yw = K([`\n label: text_display_label_icon_right;\n right: `, `;\n `])), wr), xt = V(Xw || (Xw = K([`\n label: text_display_control_icon_right;\n padding-right: `, `;\n\n [dir='rtl'] & {\n padding-left: `, `;\n }\n `])), De(\"\".concat(wr, \" - \").concat(t)), De(\"\".concat(wr, \" - \").concat(t))), nn = V(Zw || (Zw = K([`\n label: placemat;\n `, `\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n padding: `, `\n `, `\n `, `\n `, `;\n background-color: `, `;\n white-space: nowrap;\n & + input:focus {\n background-color: transparent;\n }\n [dir='rtl'] & {\n transform: translateX(-`, `);\n }\n `])), z({\n color: i\n }), De(\"\".concat(S, \" + \").concat(u, \" + \").concat(t)), l, De(\"\".concat(N, \" + \").concat(t)), l, a, t), Pn = V(Qw || (Qw = K([`\n label: no_label_placemat;\n padding-top: `, `;\n `])), S);\n return {\n label: Se,\n labelWithScreenreader: Le,\n helperText: Ge,\n base: Ne,\n iconRight: ie,\n iconLeft: Ce,\n control: ve,\n nolabelControl: Ae,\n errorControl: _e,\n prefixWrapperError: dt,\n prefixWrapperFocusError: Fe,\n controlErrorWithIconRight: He,\n controlErrorWithIconLeft: Oe,\n controlErrorWithIconLeftAndRight: Be,\n noLabelControlError: qe,\n placemat: nn,\n noLabelPlacemat: Pn,\n controlWithIconRight: Ye,\n controlWithIconLeft: Xe,\n controlWithIconLeftAndRight: Ve,\n labelWithIconRight: $e,\n labelWithIconLeft: Je,\n errorText: Tt,\n errorIcon: ct,\n successIcon: Dt,\n multiLineError: mt,\n prefixWrapper: et,\n prefixSuffix: Ot,\n PrefixWrapperControl: nt,\n prefix: Ie,\n suffix: st,\n noLabelSuffixOrPrefix: kt,\n prefixWrapperControlWithPrefix: Mt,\n prefixWrapperControlWithSuffix: Kt,\n prefixWrapperControlWithPrefixSuffix: Rt,\n prefixWrapperFocus: jt,\n labelWhenPlaceholderShownAndInputNotFocused: Te,\n textAreaControl: _t,\n textAreaControlError: _n,\n textAreaControlLabel: Rn,\n textAreaControlErrorLabel: rr,\n textAreaCounterWrapper: Jn,\n textAreaCounterWrapperFocus: yt,\n textAreaCounterText: Yt,\n textAreaErrorCounterWrapper: dn,\n textAreaErrorCounterWrapperFocus: Er,\n textAreaErrorCounterText: cr,\n textDisplayNoLabelControl: Ct,\n textDisplayControl: Wt,\n textDisplayLabel: On,\n textDisplayIconRight: Bt,\n textDisplaylabelIconRight: ft,\n textDisplayControlIconRight: xt\n };\n}\nvar lre = [\"setFocus\", \"className\", \"inputClassName\", \"labelClassName\", \"successText\", \"successIconAriaLabel\", \"errorText\", \"error\", \"errorIconAriaLabel\", \"helperText\", \"value\", \"name\", \"id\", \"label\", \"isLabelHidden\", \"placeholder\", \"placemat\", \"leftIcon\", \"rightIcon\", \"onChange\", \"children\", \"renderContent\", \"removeBorderRadiusLeft\", \"removeBorderRadiusRight\", \"removeBorderRadiusBoth\", \"dir\", \"leftIconCSS\", \"rightIconCSS\"];\nfunction Jw(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction u0(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? Jw(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : Jw(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar cre = function(e) {\n var t = e.messageId, n = e.helperText, r = e.errorText, a = e.errorIconAriaLabel, i = e.successText, o = e.successIconAriaLabel, s = gn(), u = wt(function() {\n return fd(s);\n }, [s]);\n if (r || i) {\n var l, c = r || i, d = Array.isArray(c) ? ue(\"ul\", {\n css: u.multiLineError,\n \"data-ppui\": \"true\"\n }, c.map(function(_, x) {\n return ue(\"li\", {\n key: \"msg\".concat(t, \"-\").concat(x),\n \"data-ppui\": \"true\"\n }, _);\n })) : c, p, g;\n if (r) {\n var v = {\n css: u.errorIcon,\n role: \"img\",\n \"aria-label\": a\n };\n p = ue(Zi, bt({\n size: \"sm\"\n }, v, {\n \"data-ppui\": \"true\"\n }));\n }\n if (!r) {\n var b = {\n css: u.successIcon,\n role: \"img\",\n \"aria-label\": o\n };\n g = ue(Wc, bt({\n size: \"sm\"\n }, b, {\n \"data-ppui\": \"true\"\n }));\n }\n return ue(\"div\", {\n css: u.errorText,\n id: t,\n role: \"alert\",\n \"data-ppui\": \"true\"\n }, (l = p) !== null && l !== void 0 ? l : g, d);\n }\n if (n) {\n var C = [u.helperText], w = Array.isArray(n) ? ue(\"ul\", {\n css: C,\n id: t,\n \"data-ppui\": \"true\"\n }, n.map(function(_, x) {\n return ue(\"li\", {\n key: \"msg\".concat(t, \"-\").concat(x),\n \"data-ppui\": \"true\"\n }, _);\n })) : ue(\"div\", {\n css: C,\n id: t,\n \"data-ppui\": \"true\"\n }, n);\n return w;\n }\n return null;\n}, e6 = function(e, t, n, r) {\n return e ? ue(\"div\", {\n css: [t === \"left\" && r.iconLeft, t === \"right\" && r.iconRight, n],\n key: \"icon-\".concat(t),\n \"data-ppui\": \"true\"\n }, e) : null;\n}, qD = function(e) {\n var t = e.setFocus, n = e.className, r = e.inputClassName, a = e.labelClassName, i = e.successText, o = e.successIconAriaLabel, s = o === void 0 ? \"Success\" : o, u = e.errorText, l = e.error, c = l === void 0 ? !!u : l, d = e.errorIconAriaLabel, p = d === void 0 ? \"Error\" : d, g = e.helperText, v = e.value, b = e.name, C = e.id, w = C === void 0 ? \"text-input-\".concat(b) : C, _ = e.label, x = e.isLabelHidden, S = e.placeholder, E = S === void 0 ? \" \" : S, N = e.placemat, P = e.leftIcon, H = P === void 0 ? null : P, k = e.rightIcon, Q = k === void 0 ? null : k, I = e.onChange;\n e.children;\n var G = e.renderContent;\n e.removeBorderRadiusLeft, e.removeBorderRadiusRight, e.removeBorderRadiusBoth;\n var $ = e.dir, z = e.leftIconCSS, B = e.rightIconCSS, O = Qt(e, lre), D = gn(), T = wt(function() {\n return fd(D);\n }, [D]), j = [T.base], F = \"message_\".concat(w), L = I ? {\n onChange: I,\n value: v\n } : {\n defaultValue: v\n }, q = g || u ? {\n \"aria-describedby\": F\n } : {}, W = u0(u0(u0({}, q), L), O);\n return ue(\"div\", {\n className: n,\n css: j,\n dir: $,\n \"data-ppui-info\": \"text-input_5.1.10\"\n }, e6(H, \"left\", z, T), G(u0({\n inputClassName: r,\n name: b,\n id: w,\n setFocus: t,\n hasError: c,\n placeholder: E,\n placemat: N,\n label: _,\n labelClassName: a,\n isLabelHidden: x,\n inputTag: \"input\",\n leftIcon: H,\n rightIcon: Q\n }, W)), ue(cre, {\n errorText: u,\n errorIconAriaLabel: p,\n successText: i,\n successIconAriaLabel: s,\n helperText: g,\n messageId: F,\n \"data-ppui\": \"true\"\n }), e6(Q, \"right\", B, T));\n}, dre = [\"inputClassName\", \"inputTag\", \"name\", \"id\", \"setFocus\", \"inputRef\", \"hasError\", \"placeholder\", \"placemat\", \"label\", \"labelClassName\", \"isLabelHidden\", \"rightIcon\", \"leftIcon\", \"prefix\", \"suffix\"], fre = function() {\n var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"\", t = arguments.length > 1 ? arguments[1] : void 0, n = e.length, r = t.length;\n return n >= r ? e : e.concat(t.substring(n));\n}, pre = function(e) {\n var t = e.placeholder, n = e.value, r = n === void 0 ? \"\" : n, a = e.isLabelHidden, i = a === void 0 ? !1 : a, o = e.styles, s = fre(r, t), u = [o.placemat, i && o.noLabelPlacemat];\n return ue(\"div\", {\n css: u,\n \"data-ppui\": \"true\"\n }, s);\n}, hre = function(e) {\n var t = e ?? \" \";\n return t === \"\" ? \" \" : t;\n}, sy = function(e) {\n var t = e.inputClassName, n = e.inputTag, r = e.name, a = e.id, i = e.setFocus, o = e.inputRef, s = e.hasError, u = e.placeholder, l = e.placemat, c = e.label, d = e.labelClassName, p = e.isLabelHidden, g = e.rightIcon, v = e.leftIcon, b = e.prefix, C = e.suffix, w = Qt(e, dre), _ = gn(), x = wt(function() {\n return fd(_);\n }, [_]), S = !c || c === \"\" || p, E = [x.control, S && x.nolabelControl, g && x.controlWithIconRight, v && x.controlWithIconLeft, g && v && x.controlWithIconLeftAndRight, x.labelWhenPlaceholderShownAndInputNotFocused, s && x.errorControl, s && S && x.noLabelControlError, s && g && x.controlErrorWithIconRight, s && v && x.controlErrorWithIconLeft, s && v && g && x.controlErrorWithIconLeftAndRight, b || C ? x.PrefixWrapperControl : null, s && S && (b || C) ? x.noLabelControlError : null, b && x.prefixWrapperControlWithPrefix, C && x.prefixWrapperControlWithSuffix, b && C && x.prefixWrapperControlWithPrefixSuffix], N = [x.label, g && x.labelWithIconRight, v && x.labelWithIconLeft, S && x.labelWithScreenreader], P = w.value;\n return We(function() {\n var H = o.current;\n i && H && H.focus();\n }, [i]), ue(vt.Fragment, null, !!l && ue(pre, {\n placeholder: l,\n value: P,\n isLabelHidden: S,\n styles: x,\n \"data-ppui\": \"true\"\n }), ue(n, bt({\n className: t,\n css: E,\n name: r,\n id: a,\n ref: o,\n \"aria-invalid\": s,\n placeholder: hre(u)\n }, w, {\n \"data-ppui\": \"true\"\n })), c && ue(\"label\", {\n htmlFor: a,\n id: \"\".concat(a, \"-label\"),\n className: d,\n css: N,\n \"data-ppui\": \"true\"\n }, c));\n}, mre = [\"label\", \"id\", \"prefix\", \"suffix\", \"prefixClassName\", \"suffixClassName\", \"inputClassName\", \"inputRef\", \"onBlur\", \"onFocus\", \"hasError\", \"isLabelHidden\"], gre = function(e) {\n var t = e.label, n = e.id, r = e.prefix, a = e.suffix, i = e.prefixClassName, o = e.suffixClassName, s = e.inputClassName, u = e.inputRef, l = e.onBlur, c = l === void 0 ? null : l, d = e.onFocus, p = d === void 0 ? null : d, g = e.hasError, v = e.isLabelHidden, b = Qt(e, mre), C = gn(), w = wt(function() {\n return fd(C);\n }, [C]), _ = u, x = ze(!1), S = fn(x, 2), E = S[0], N = S[1], P = !t || t === \"\" || v, H = [w.prefix, P && w.noLabelSuffixOrPrefix], k = [w.suffix, P && w.noLabelSuffixOrPrefix], Q = [w.prefixWrapper, E && w.prefixWrapperFocus, g && w.prefixWrapperError, g && E && w.prefixWrapperFocusError], I = t ? \"\".concat(n, \"-label \") : \"\", G = r ? \"\".concat(n, \"-prefix \") : \"\", $ = a ? \"\".concat(n, \"-suffix\") : \"\", z = \"\".concat(I).concat(G).concat($);\n return ue(\"div\", {\n css: Q,\n onClick: function() {\n if (_.current) {\n var O = _.current;\n O.focus();\n }\n },\n \"data-ppui\": \"true\"\n }, ue(sy, bt({\n label: t,\n id: n,\n prefix: r,\n suffix: a,\n inputClassName: s,\n inputRef: u,\n onFocus: function(O) {\n N(!0), p && p(O);\n },\n onBlur: function(O) {\n N(!1), c && c(O);\n },\n \"aria-labelledby\": z.trim(),\n hasError: g,\n isLabelHidden: P\n }, b, {\n \"data-ppui\": \"true\"\n })), r && ue(\"div\", {\n id: G.trim(),\n css: H,\n className: i,\n \"data-ppui\": \"true\"\n }, r), a && ue(\"div\", {\n id: $.trim(),\n css: k,\n className: o,\n \"data-ppui\": \"true\"\n }, a));\n}, vre = [\"prefix\", \"suffix\", \"prefixClassName\", \"suffixClassName\"], bre = [\"inputClassName\", \"name\", \"id\", \"setFocus\", \"hasError\", \"placeholder\", \"placemat\", \"label\", \"labelClassName\", \"inputTag\"], zu = Lt(function(e, t) {\n var n = e.prefix, r = e.suffix, a = e.prefixClassName, i = e.suffixClassName, o = Qt(e, vre), s = Ue(), u = t || s;\n return /* @__PURE__ */ vt.createElement(qD, bt({\n renderContent: function(c) {\n var d = c.inputClassName, p = c.name, g = c.id, v = c.setFocus, b = c.hasError, C = c.placeholder, w = c.placemat, _ = c.label, x = c.labelClassName, S = c.inputTag, E = Qt(c, bre);\n return n || r ? /* @__PURE__ */ vt.createElement(gre, bt({\n inputClassName: d,\n inputTag: S,\n name: p,\n id: g,\n setFocus: v,\n inputRef: u,\n hasError: b,\n placeholder: C,\n label: _,\n labelClassName: x,\n prefix: n,\n suffix: r,\n prefixClassName: a,\n suffixClassName: i\n }, E, {\n \"data-ppui\": \"true\"\n })) : /* @__PURE__ */ vt.createElement(sy, bt({\n inputClassName: d,\n inputTag: S,\n name: p,\n id: g,\n setFocus: v,\n inputRef: u,\n hasError: b,\n placeholder: C,\n placemat: w,\n label: _,\n labelClassName: x\n }, E, {\n \"data-ppui\": \"true\"\n }));\n }\n }, o, {\n \"data-ppui\": \"true\"\n }));\n}), yre = [\"className\", \"minRows\", \"maxRows\", \"showCharacterCounter\", \"maxCharacters\", \"counterStatusText\", \"onChange\", \"onBlur\", \"onFocus\", \"value\", \"errorText\", \"successText\"], Cre = [\"inputClassName\", \"name\", \"id\", \"setFocus\", \"hasError\", \"placeholder\", \"label\", \"labelClassName\", \"inputTag\", \"placemat\"], tg = 2, ng = 6, xre = Lt(function(e, t) {\n var n = e.className, r = e.minRows, a = r === void 0 ? tg : r, i = e.maxRows, o = i === void 0 ? ng : i, s = e.showCharacterCounter, u = s === void 0 ? !1 : s, l = e.maxCharacters, c = e.counterStatusText, d = e.onChange, p = d === void 0 ? null : d, g = e.onBlur, v = g === void 0 ? null : g, b = e.onFocus, C = b === void 0 ? null : b, w = e.value, _ = e.errorText, x = e.successText, S = Qt(e, yre), E = gn(), N = wt(function() {\n return fd(E);\n }, [E]), P = Mo(\n // @ts-ignore\n E.sysTypographyFieldLabelLgLineHeight\n ).split(\"px\")[0], H = o ? Math.min(o, ng) : ng, k = a ? Math.max(a, tg) : tg, Q = ze(w ? w.length : 0), I = fn(Q, 2), G = I[0], $ = I[1], z = ze(!1), B = fn(z, 2), O = B[0], D = B[1], T = ze(!1), j = fn(T, 2), F = j[0], L = j[1], q = Ue(), W = t || q, X = Ze(rl), de = Ue(0), Se = Ue(P * H), Te = Ue(P * k), Le = function() {\n var Ne = W.current;\n Ne.style.height = \"auto\";\n var ie = Ne.scrollHeight + de.current;\n ie > Se.current ? Ne.style.height = \"\".concat(Se.current, \"px\") : ie > Te.current ? Ne.style.height = \"\".concat(ie, \"px\") : Ne.style.height = \"\".concat(Te.current, \"px\");\n };\n We(function() {\n if (W.current) {\n var Ne = W.current, ie = Ne.offsetHeight, Ce = Ne.clientHeight, ve = window.getComputedStyle(Ne), Ae = Number(ve.getPropertyValue(\"line-height\").split(\"px\")[0]), _e = Number(ve.getPropertyValue(\"padding-bottom\").split(\"px\")[0]), He = Number(ve.getPropertyValue(\"padding-top\").split(\"px\")[0]), Oe = Number.isNaN(Ae) ? P : Ae, Be = Number.isNaN(_e) ? 0 : _e, qe = Number.isNaN(He) ? 0 : He;\n de.current = ie - Ce, Se.current = de.current + qe + Be + Oe * H, Te.current = de.current + qe + Be + Oe * k, Le(), D(ve.direction === \"rtl\");\n }\n }, [k, H, w]);\n var Ge = function() {\n if (W.current) {\n var Ne = W.current;\n Ne.focus();\n }\n };\n return ue(qD, bt({\n className: n,\n value: w,\n onChange: function(ie) {\n var Ce = ie.target;\n $(Ce.value.length), p && p(ie);\n },\n onFocus: function(ie) {\n L(!0), C && C(ie);\n },\n onBlur: function(ie) {\n L(!1), v && v(ie);\n },\n renderContent: function(ie) {\n var Ce = ie.inputClassName, ve = ie.name, Ae = ie.id, _e = ie.setFocus, He = ie.hasError, Oe = ie.placeholder, Be = ie.label, qe = ie.labelClassName;\n ie.inputTag, ie.placemat;\n var Ye = Qt(ie, Cre), Xe = ue(ys, {\n \"data-ppui\": \"true\"\n }, function(Dt) {\n var mt = Dt.css, et = Dt.cx;\n return ue(sy, bt({\n inputClassName: et(Ce, Zt({}, mt(N.textAreaControl), !0), Zt({}, mt(N.textAreaControlError), He)),\n inputTag: \"textarea\",\n name: ve,\n id: Ae,\n setFocus: _e,\n inputRef: W,\n hasError: He,\n placeholder: Oe,\n label: Be,\n labelClassName: et(qe, Zt({}, mt(N.textAreaControlLabel), !0), Zt({}, mt(N.textAreaControlErrorLabel), He))\n }, Ye, {\n \"data-ppui\": \"true\"\n }));\n });\n if (u) {\n var Ve = \"\";\n l && (Ve = O ? \"\".concat(l, \"/\") : \"/\".concat(l));\n var $e = O ? \"\".concat(Ve).concat(G) : \"\".concat(G).concat(Ve), Je = ore(X, \"\".concat(G, \" out of \").concat(l, \" characters used\"), c, {\n charCount: G,\n maxCharacters: l\n }), Tt = [N.textAreaCounterWrapper, F && N.textAreaCounterWrapperFocus, He && N.textAreaErrorCounterWrapper, He && F && N.textAreaErrorCounterWrapperFocus], ct = [N.textAreaCounterText, He && N.textAreaErrorCounterText];\n return ue(\"div\", {\n css: Tt,\n onClick: Ge,\n \"data-ppui\": \"true\"\n }, Xe, ue(\"div\", {\n css: ct,\n role: \"status\",\n \"aria-live\": \"polite\",\n \"aria-atomic\": \"true\",\n \"aria-label\": Je,\n \"data-ppui\": \"true\"\n }, $e));\n }\n return Xe;\n },\n errorText: _,\n successText: x,\n \"data-ppui-info\": \"text-area_5.1.10\"\n }, S));\n}), uy = { exports: {} }, GD = function(t, n) {\n return function() {\n for (var a = new Array(arguments.length), i = 0; i < a.length; i++)\n a[i] = arguments[i];\n return t.apply(n, a);\n };\n}, Sre = GD, ly = Object.prototype.toString, cy = function(e) {\n return function(t) {\n var n = ly.call(t);\n return e[n] || (e[n] = n.slice(8, -1).toLowerCase());\n };\n}(/* @__PURE__ */ Object.create(null));\nfunction Os(e) {\n return e = e.toLowerCase(), function(n) {\n return cy(n) === e;\n };\n}\nfunction dy(e) {\n return Array.isArray(e);\n}\nfunction Mf(e) {\n return typeof e > \"u\";\n}\nfunction _re(e) {\n return e !== null && !Mf(e) && e.constructor !== null && !Mf(e.constructor) && typeof e.constructor.isBuffer == \"function\" && e.constructor.isBuffer(e);\n}\nvar UD = Os(\"ArrayBuffer\");\nfunction Ere(e) {\n var t;\n return typeof ArrayBuffer < \"u\" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && UD(e.buffer), t;\n}\nfunction wre(e) {\n return typeof e == \"string\";\n}\nfunction Tre(e) {\n return typeof e == \"number\";\n}\nfunction WD(e) {\n return e !== null && typeof e == \"object\";\n}\nfunction Y0(e) {\n if (cy(e) !== \"object\")\n return !1;\n var t = Object.getPrototypeOf(e);\n return t === null || t === Object.prototype;\n}\nvar Are = Os(\"Date\"), Nre = Os(\"File\"), Ore = Os(\"Blob\"), Lre = Os(\"FileList\");\nfunction fy(e) {\n return ly.call(e) === \"[object Function]\";\n}\nfunction kre(e) {\n return WD(e) && fy(e.pipe);\n}\nfunction Ire(e) {\n var t = \"[object FormData]\";\n return e && (typeof FormData == \"function\" && e instanceof FormData || ly.call(e) === t || fy(e.toString) && e.toString() === t);\n}\nvar Dre = Os(\"URLSearchParams\");\nfunction Pre(e) {\n return e.trim ? e.trim() : e.replace(/^\\s+|\\s+$/g, \"\");\n}\nfunction Mre() {\n return typeof navigator < \"u\" && (navigator.product === \"ReactNative\" || navigator.product === \"NativeScript\" || navigator.product === \"NS\") ? !1 : typeof window < \"u\" && typeof document < \"u\";\n}\nfunction py(e, t) {\n if (!(e === null || typeof e > \"u\"))\n if (typeof e != \"object\" && (e = [e]), dy(e))\n for (var n = 0, r = e.length; n < r; n++)\n t.call(null, e[n], n, e);\n else\n for (var a in e)\n Object.prototype.hasOwnProperty.call(e, a) && t.call(null, e[a], a, e);\n}\nfunction U1() {\n var e = {};\n function t(a, i) {\n Y0(e[i]) && Y0(a) ? e[i] = U1(e[i], a) : Y0(a) ? e[i] = U1({}, a) : dy(a) ? e[i] = a.slice() : e[i] = a;\n }\n for (var n = 0, r = arguments.length; n < r; n++)\n py(arguments[n], t);\n return e;\n}\nfunction Rre(e, t, n) {\n return py(t, function(a, i) {\n n && typeof a == \"function\" ? e[i] = Sre(a, n) : e[i] = a;\n }), e;\n}\nfunction Bre(e) {\n return e.charCodeAt(0) === 65279 && (e = e.slice(1)), e;\n}\nfunction Fre(e, t, n, r) {\n e.prototype = Object.create(t.prototype, r), e.prototype.constructor = e, n && Object.assign(e.prototype, n);\n}\nfunction jre(e, t, n) {\n var r, a, i, o = {};\n t = t || {};\n do {\n for (r = Object.getOwnPropertyNames(e), a = r.length; a-- > 0; )\n i = r[a], o[i] || (t[i] = e[i], o[i] = !0);\n e = Object.getPrototypeOf(e);\n } while (e && (!n || n(e, t)) && e !== Object.prototype);\n return t;\n}\nfunction $re(e, t, n) {\n e = String(e), (n === void 0 || n > e.length) && (n = e.length), n -= t.length;\n var r = e.indexOf(t, n);\n return r !== -1 && r === n;\n}\nfunction Hre(e) {\n if (!e)\n return null;\n var t = e.length;\n if (Mf(t))\n return null;\n for (var n = new Array(t); t-- > 0; )\n n[t] = e[t];\n return n;\n}\nvar Vre = function(e) {\n return function(t) {\n return e && t instanceof e;\n };\n}(typeof Uint8Array < \"u\" && Object.getPrototypeOf(Uint8Array)), kr = {\n isArray: dy,\n isArrayBuffer: UD,\n isBuffer: _re,\n isFormData: Ire,\n isArrayBufferView: Ere,\n isString: wre,\n isNumber: Tre,\n isObject: WD,\n isPlainObject: Y0,\n isUndefined: Mf,\n isDate: Are,\n isFile: Nre,\n isBlob: Ore,\n isFunction: fy,\n isStream: kre,\n isURLSearchParams: Dre,\n isStandardBrowserEnv: Mre,\n forEach: py,\n merge: U1,\n extend: Rre,\n trim: Pre,\n stripBOM: Bre,\n inherits: Fre,\n toFlatObject: jre,\n kindOf: cy,\n kindOfTest: Os,\n endsWith: $re,\n toArray: Hre,\n isTypedArray: Vre,\n isFileList: Lre\n}, Js = kr;\nfunction t6(e) {\n return encodeURIComponent(e).replace(/%3A/gi, \":\").replace(/%24/g, \"$\").replace(/%2C/gi, \",\").replace(/%20/g, \"+\").replace(/%5B/gi, \"[\").replace(/%5D/gi, \"]\");\n}\nvar KD = function(t, n, r) {\n if (!n)\n return t;\n var a;\n if (r)\n a = r(n);\n else if (Js.isURLSearchParams(n))\n a = n.toString();\n else {\n var i = [];\n Js.forEach(n, function(u, l) {\n u === null || typeof u > \"u\" || (Js.isArray(u) ? l = l + \"[]\" : u = [u], Js.forEach(u, function(d) {\n Js.isDate(d) ? d = d.toISOString() : Js.isObject(d) && (d = JSON.stringify(d)), i.push(t6(l) + \"=\" + t6(d));\n }));\n }), a = i.join(\"&\");\n }\n if (a) {\n var o = t.indexOf(\"#\");\n o !== -1 && (t = t.slice(0, o)), t += (t.indexOf(\"?\") === -1 ? \"?\" : \"&\") + a;\n }\n return t;\n}, zre = kr;\nfunction ih() {\n this.handlers = [];\n}\nih.prototype.use = function(t, n, r) {\n return this.handlers.push({\n fulfilled: t,\n rejected: n,\n synchronous: r ? r.synchronous : !1,\n runWhen: r ? r.runWhen : null\n }), this.handlers.length - 1;\n};\nih.prototype.eject = function(t) {\n this.handlers[t] && (this.handlers[t] = null);\n};\nih.prototype.forEach = function(t) {\n zre.forEach(this.handlers, function(r) {\n r !== null && t(r);\n });\n};\nvar qre = ih, Gre = kr, Ure = function(t, n) {\n Gre.forEach(t, function(a, i) {\n i !== n && i.toUpperCase() === n.toUpperCase() && (t[n] = a, delete t[i]);\n });\n}, YD = kr;\nfunction qu(e, t, n, r, a) {\n Error.call(this), this.message = e, this.name = \"AxiosError\", t && (this.code = t), n && (this.config = n), r && (this.request = r), a && (this.response = a);\n}\nYD.inherits(qu, Error, {\n toJSON: function() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code,\n status: this.response && this.response.status ? this.response.status : null\n };\n }\n});\nvar XD = qu.prototype, ZD = {};\n[\n \"ERR_BAD_OPTION_VALUE\",\n \"ERR_BAD_OPTION\",\n \"ECONNABORTED\",\n \"ETIMEDOUT\",\n \"ERR_NETWORK\",\n \"ERR_FR_TOO_MANY_REDIRECTS\",\n \"ERR_DEPRECATED\",\n \"ERR_BAD_RESPONSE\",\n \"ERR_BAD_REQUEST\",\n \"ERR_CANCELED\"\n // eslint-disable-next-line func-names\n].forEach(function(e) {\n ZD[e] = { value: e };\n});\nObject.defineProperties(qu, ZD);\nObject.defineProperty(XD, \"isAxiosError\", { value: !0 });\nqu.from = function(e, t, n, r, a, i) {\n var o = Object.create(XD);\n return YD.toFlatObject(e, o, function(u) {\n return u !== Error.prototype;\n }), qu.call(o, e.message, t, n, r, a), o.name = e.name, i && Object.assign(o, i), o;\n};\nvar al = qu, QD = {\n silentJSONParsing: !0,\n forcedJSONParsing: !0,\n clarifyTimeoutError: !1\n}, Ha = kr;\nfunction Wre(e, t) {\n t = t || new FormData();\n var n = [];\n function r(i) {\n return i === null ? \"\" : Ha.isDate(i) ? i.toISOString() : Ha.isArrayBuffer(i) || Ha.isTypedArray(i) ? typeof Blob == \"function\" ? new Blob([i]) : Buffer.from(i) : i;\n }\n function a(i, o) {\n if (Ha.isPlainObject(i) || Ha.isArray(i)) {\n if (n.indexOf(i) !== -1)\n throw Error(\"Circular reference detected in \" + o);\n n.push(i), Ha.forEach(i, function(u, l) {\n if (!Ha.isUndefined(u)) {\n var c = o ? o + \".\" + l : l, d;\n if (u && !o && typeof u == \"object\") {\n if (Ha.endsWith(l, \"{}\"))\n u = JSON.stringify(u);\n else if (Ha.endsWith(l, \"[]\") && (d = Ha.toArray(u))) {\n d.forEach(function(p) {\n !Ha.isUndefined(p) && t.append(c, r(p));\n });\n return;\n }\n }\n a(u, c);\n }\n }), n.pop();\n } else\n t.append(o, r(i));\n }\n return a(e), t;\n}\nvar JD = Wre, rg, n6;\nfunction Kre() {\n if (n6)\n return rg;\n n6 = 1;\n var e = al;\n return rg = function(n, r, a) {\n var i = a.config.validateStatus;\n !a.status || !i || i(a.status) ? n(a) : r(new e(\n \"Request failed with status code \" + a.status,\n [e.ERR_BAD_REQUEST, e.ERR_BAD_RESPONSE][Math.floor(a.status / 100) - 4],\n a.config,\n a.request,\n a\n ));\n }, rg;\n}\nvar ag, r6;\nfunction Yre() {\n if (r6)\n return ag;\n r6 = 1;\n var e = kr;\n return ag = e.isStandardBrowserEnv() ? (\n // Standard browser envs support document.cookie\n function() {\n return {\n write: function(r, a, i, o, s, u) {\n var l = [];\n l.push(r + \"=\" + encodeURIComponent(a)), e.isNumber(i) && l.push(\"expires=\" + new Date(i).toGMTString()), e.isString(o) && l.push(\"path=\" + o), e.isString(s) && l.push(\"domain=\" + s), u === !0 && l.push(\"secure\"), document.cookie = l.join(\"; \");\n },\n read: function(r) {\n var a = document.cookie.match(new RegExp(\"(^|;\\\\s*)(\" + r + \")=([^;]*)\"));\n return a ? decodeURIComponent(a[3]) : null;\n },\n remove: function(r) {\n this.write(r, \"\", Date.now() - 864e5);\n }\n };\n }()\n ) : (\n // Non standard browser env (web workers, react-native) lack needed support.\n function() {\n return {\n write: function() {\n },\n read: function() {\n return null;\n },\n remove: function() {\n }\n };\n }()\n ), ag;\n}\nvar Xre = function(t) {\n return /^([a-z][a-z\\d+\\-.]*:)?\\/\\//i.test(t);\n}, Zre = function(t, n) {\n return n ? t.replace(/\\/+$/, \"\") + \"/\" + n.replace(/^\\/+/, \"\") : t;\n}, Qre = Xre, Jre = Zre, e9 = function(t, n) {\n return t && !Qre(n) ? Jre(t, n) : n;\n}, ig, a6;\nfunction eae() {\n if (a6)\n return ig;\n a6 = 1;\n var e = kr, t = [\n \"age\",\n \"authorization\",\n \"content-length\",\n \"content-type\",\n \"etag\",\n \"expires\",\n \"from\",\n \"host\",\n \"if-modified-since\",\n \"if-unmodified-since\",\n \"last-modified\",\n \"location\",\n \"max-forwards\",\n \"proxy-authorization\",\n \"referer\",\n \"retry-after\",\n \"user-agent\"\n ];\n return ig = function(r) {\n var a = {}, i, o, s;\n return r && e.forEach(r.split(`\n`), function(l) {\n if (s = l.indexOf(\":\"), i = e.trim(l.substr(0, s)).toLowerCase(), o = e.trim(l.substr(s + 1)), i) {\n if (a[i] && t.indexOf(i) >= 0)\n return;\n i === \"set-cookie\" ? a[i] = (a[i] ? a[i] : []).concat([o]) : a[i] = a[i] ? a[i] + \", \" + o : o;\n }\n }), a;\n }, ig;\n}\nvar og, i6;\nfunction tae() {\n if (i6)\n return og;\n i6 = 1;\n var e = kr;\n return og = e.isStandardBrowserEnv() ? (\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n function() {\n var n = /(msie|trident)/i.test(navigator.userAgent), r = document.createElement(\"a\"), a;\n function i(o) {\n var s = o;\n return n && (r.setAttribute(\"href\", s), s = r.href), r.setAttribute(\"href\", s), {\n href: r.href,\n protocol: r.protocol ? r.protocol.replace(/:$/, \"\") : \"\",\n host: r.host,\n search: r.search ? r.search.replace(/^\\?/, \"\") : \"\",\n hash: r.hash ? r.hash.replace(/^#/, \"\") : \"\",\n hostname: r.hostname,\n port: r.port,\n pathname: r.pathname.charAt(0) === \"/\" ? r.pathname : \"/\" + r.pathname\n };\n }\n return a = i(window.location.href), function(s) {\n var u = e.isString(s) ? i(s) : s;\n return u.protocol === a.protocol && u.host === a.host;\n };\n }()\n ) : (\n // Non standard browser envs (web workers, react-native) lack needed support.\n function() {\n return function() {\n return !0;\n };\n }()\n ), og;\n}\nvar sg, o6;\nfunction oh() {\n if (o6)\n return sg;\n o6 = 1;\n var e = al, t = kr;\n function n(r) {\n e.call(this, r ?? \"canceled\", e.ERR_CANCELED), this.name = \"CanceledError\";\n }\n return t.inherits(n, e, {\n __CANCEL__: !0\n }), sg = n, sg;\n}\nvar ug, s6;\nfunction nae() {\n return s6 || (s6 = 1, ug = function(t) {\n var n = /^([-+\\w]{1,25})(:?\\/\\/|:)/.exec(t);\n return n && n[1] || \"\";\n }), ug;\n}\nvar lg, u6;\nfunction l6() {\n if (u6)\n return lg;\n u6 = 1;\n var e = kr, t = Kre(), n = Yre(), r = KD, a = e9, i = eae(), o = tae(), s = QD, u = al, l = oh(), c = nae();\n return lg = function(p) {\n return new Promise(function(v, b) {\n var C = p.data, w = p.headers, _ = p.responseType, x;\n function S() {\n p.cancelToken && p.cancelToken.unsubscribe(x), p.signal && p.signal.removeEventListener(\"abort\", x);\n }\n e.isFormData(C) && e.isStandardBrowserEnv() && delete w[\"Content-Type\"];\n var E = new XMLHttpRequest();\n if (p.auth) {\n var N = p.auth.username || \"\", P = p.auth.password ? unescape(encodeURIComponent(p.auth.password)) : \"\";\n w.Authorization = \"Basic \" + btoa(N + \":\" + P);\n }\n var H = a(p.baseURL, p.url);\n E.open(p.method.toUpperCase(), r(H, p.params, p.paramsSerializer), !0), E.timeout = p.timeout;\n function k() {\n if (E) {\n var G = \"getAllResponseHeaders\" in E ? i(E.getAllResponseHeaders()) : null, $ = !_ || _ === \"text\" || _ === \"json\" ? E.responseText : E.response, z = {\n data: $,\n status: E.status,\n statusText: E.statusText,\n headers: G,\n config: p,\n request: E\n };\n t(function(O) {\n v(O), S();\n }, function(O) {\n b(O), S();\n }, z), E = null;\n }\n }\n if (\"onloadend\" in E ? E.onloadend = k : E.onreadystatechange = function() {\n !E || E.readyState !== 4 || E.status === 0 && !(E.responseURL && E.responseURL.indexOf(\"file:\") === 0) || setTimeout(k);\n }, E.onabort = function() {\n E && (b(new u(\"Request aborted\", u.ECONNABORTED, p, E)), E = null);\n }, E.onerror = function() {\n b(new u(\"Network Error\", u.ERR_NETWORK, p, E, E)), E = null;\n }, E.ontimeout = function() {\n var $ = p.timeout ? \"timeout of \" + p.timeout + \"ms exceeded\" : \"timeout exceeded\", z = p.transitional || s;\n p.timeoutErrorMessage && ($ = p.timeoutErrorMessage), b(new u(\n $,\n z.clarifyTimeoutError ? u.ETIMEDOUT : u.ECONNABORTED,\n p,\n E\n )), E = null;\n }, e.isStandardBrowserEnv()) {\n var Q = (p.withCredentials || o(H)) && p.xsrfCookieName ? n.read(p.xsrfCookieName) : void 0;\n Q && (w[p.xsrfHeaderName] = Q);\n }\n \"setRequestHeader\" in E && e.forEach(w, function($, z) {\n typeof C > \"u\" && z.toLowerCase() === \"content-type\" ? delete w[z] : E.setRequestHeader(z, $);\n }), e.isUndefined(p.withCredentials) || (E.withCredentials = !!p.withCredentials), _ && _ !== \"json\" && (E.responseType = p.responseType), typeof p.onDownloadProgress == \"function\" && E.addEventListener(\"progress\", p.onDownloadProgress), typeof p.onUploadProgress == \"function\" && E.upload && E.upload.addEventListener(\"progress\", p.onUploadProgress), (p.cancelToken || p.signal) && (x = function(G) {\n E && (b(!G || G && G.type ? new l() : G), E.abort(), E = null);\n }, p.cancelToken && p.cancelToken.subscribe(x), p.signal && (p.signal.aborted ? x() : p.signal.addEventListener(\"abort\", x))), C || (C = null);\n var I = c(H);\n if (I && [\"http\", \"https\", \"file\"].indexOf(I) === -1) {\n b(new u(\"Unsupported protocol \" + I + \":\", u.ERR_BAD_REQUEST, p));\n return;\n }\n E.send(C);\n });\n }, lg;\n}\nvar cg, c6;\nfunction rae() {\n return c6 || (c6 = 1, cg = null), cg;\n}\nvar hr = kr, d6 = Ure, f6 = al, aae = QD, iae = JD, oae = {\n \"Content-Type\": \"application/x-www-form-urlencoded\"\n};\nfunction p6(e, t) {\n !hr.isUndefined(e) && hr.isUndefined(e[\"Content-Type\"]) && (e[\"Content-Type\"] = t);\n}\nfunction sae() {\n var e;\n return (typeof XMLHttpRequest < \"u\" || typeof process < \"u\" && Object.prototype.toString.call(process) === \"[object process]\") && (e = l6()), e;\n}\nfunction uae(e, t, n) {\n if (hr.isString(e))\n try {\n return (t || JSON.parse)(e), hr.trim(e);\n } catch (r) {\n if (r.name !== \"SyntaxError\")\n throw r;\n }\n return (n || JSON.stringify)(e);\n}\nvar sh = {\n transitional: aae,\n adapter: sae(),\n transformRequest: [function(t, n) {\n if (d6(n, \"Accept\"), d6(n, \"Content-Type\"), hr.isFormData(t) || hr.isArrayBuffer(t) || hr.isBuffer(t) || hr.isStream(t) || hr.isFile(t) || hr.isBlob(t))\n return t;\n if (hr.isArrayBufferView(t))\n return t.buffer;\n if (hr.isURLSearchParams(t))\n return p6(n, \"application/x-www-form-urlencoded;charset=utf-8\"), t.toString();\n var r = hr.isObject(t), a = n && n[\"Content-Type\"], i;\n if ((i = hr.isFileList(t)) || r && a === \"multipart/form-data\") {\n var o = this.env && this.env.FormData;\n return iae(i ? { \"files[]\": t } : t, o && new o());\n } else if (r || a === \"application/json\")\n return p6(n, \"application/json\"), uae(t);\n return t;\n }],\n transformResponse: [function(t) {\n var n = this.transitional || sh.transitional, r = n && n.silentJSONParsing, a = n && n.forcedJSONParsing, i = !r && this.responseType === \"json\";\n if (i || a && hr.isString(t) && t.length)\n try {\n return JSON.parse(t);\n } catch (o) {\n if (i)\n throw o.name === \"SyntaxError\" ? f6.from(o, f6.ERR_BAD_RESPONSE, this, null, this.response) : o;\n }\n return t;\n }],\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n xsrfCookieName: \"XSRF-TOKEN\",\n xsrfHeaderName: \"X-XSRF-TOKEN\",\n maxContentLength: -1,\n maxBodyLength: -1,\n env: {\n FormData: rae()\n },\n validateStatus: function(t) {\n return t >= 200 && t < 300;\n },\n headers: {\n common: {\n Accept: \"application/json, text/plain, */*\"\n }\n }\n};\nhr.forEach([\"delete\", \"get\", \"head\"], function(t) {\n sh.headers[t] = {};\n});\nhr.forEach([\"post\", \"put\", \"patch\"], function(t) {\n sh.headers[t] = hr.merge(oae);\n});\nvar hy = sh, lae = kr, cae = hy, dae = function(t, n, r) {\n var a = this || cae;\n return lae.forEach(r, function(o) {\n t = o.call(a, t, n);\n }), t;\n}, dg, h6;\nfunction t9() {\n return h6 || (h6 = 1, dg = function(t) {\n return !!(t && t.__CANCEL__);\n }), dg;\n}\nvar m6 = kr, fg = dae, fae = t9(), pae = hy, hae = oh();\nfunction pg(e) {\n if (e.cancelToken && e.cancelToken.throwIfRequested(), e.signal && e.signal.aborted)\n throw new hae();\n}\nvar mae = function(t) {\n pg(t), t.headers = t.headers || {}, t.data = fg.call(\n t,\n t.data,\n t.headers,\n t.transformRequest\n ), t.headers = m6.merge(\n t.headers.common || {},\n t.headers[t.method] || {},\n t.headers\n ), m6.forEach(\n [\"delete\", \"get\", \"head\", \"post\", \"put\", \"patch\", \"common\"],\n function(a) {\n delete t.headers[a];\n }\n );\n var n = t.adapter || pae.adapter;\n return n(t).then(function(a) {\n return pg(t), a.data = fg.call(\n t,\n a.data,\n a.headers,\n t.transformResponse\n ), a;\n }, function(a) {\n return fae(a) || (pg(t), a && a.response && (a.response.data = fg.call(\n t,\n a.response.data,\n a.response.headers,\n t.transformResponse\n ))), Promise.reject(a);\n });\n}, fa = kr, n9 = function(t, n) {\n n = n || {};\n var r = {};\n function a(c, d) {\n return fa.isPlainObject(c) && fa.isPlainObject(d) ? fa.merge(c, d) : fa.isPlainObject(d) ? fa.merge({}, d) : fa.isArray(d) ? d.slice() : d;\n }\n function i(c) {\n if (fa.isUndefined(n[c])) {\n if (!fa.isUndefined(t[c]))\n return a(void 0, t[c]);\n } else\n return a(t[c], n[c]);\n }\n function o(c) {\n if (!fa.isUndefined(n[c]))\n return a(void 0, n[c]);\n }\n function s(c) {\n if (fa.isUndefined(n[c])) {\n if (!fa.isUndefined(t[c]))\n return a(void 0, t[c]);\n } else\n return a(void 0, n[c]);\n }\n function u(c) {\n if (c in n)\n return a(t[c], n[c]);\n if (c in t)\n return a(void 0, t[c]);\n }\n var l = {\n url: o,\n method: o,\n data: o,\n baseURL: s,\n transformRequest: s,\n transformResponse: s,\n paramsSerializer: s,\n timeout: s,\n timeoutMessage: s,\n withCredentials: s,\n adapter: s,\n responseType: s,\n xsrfCookieName: s,\n xsrfHeaderName: s,\n onUploadProgress: s,\n onDownloadProgress: s,\n decompress: s,\n maxContentLength: s,\n maxBodyLength: s,\n beforeRedirect: s,\n transport: s,\n httpAgent: s,\n httpsAgent: s,\n cancelToken: s,\n socketPath: s,\n responseEncoding: s,\n validateStatus: u\n };\n return fa.forEach(Object.keys(t).concat(Object.keys(n)), function(d) {\n var p = l[d] || i, g = p(d);\n fa.isUndefined(g) && p !== u || (r[d] = g);\n }), r;\n}, hg, g6;\nfunction r9() {\n return g6 || (g6 = 1, hg = {\n version: \"0.27.2\"\n }), hg;\n}\nvar gae = r9().version, So = al, my = {};\n[\"object\", \"boolean\", \"number\", \"function\", \"string\", \"symbol\"].forEach(function(e, t) {\n my[e] = function(r) {\n return typeof r === e || \"a\" + (t < 1 ? \"n \" : \" \") + e;\n };\n});\nvar v6 = {};\nmy.transitional = function(t, n, r) {\n function a(i, o) {\n return \"[Axios v\" + gae + \"] Transitional option '\" + i + \"'\" + o + (r ? \". \" + r : \"\");\n }\n return function(i, o, s) {\n if (t === !1)\n throw new So(\n a(o, \" has been removed\" + (n ? \" in \" + n : \"\")),\n So.ERR_DEPRECATED\n );\n return n && !v6[o] && (v6[o] = !0, console.warn(\n a(\n o,\n \" has been deprecated since v\" + n + \" and will be removed in the near future\"\n )\n )), t ? t(i, o, s) : !0;\n };\n};\nfunction vae(e, t, n) {\n if (typeof e != \"object\")\n throw new So(\"options must be an object\", So.ERR_BAD_OPTION_VALUE);\n for (var r = Object.keys(e), a = r.length; a-- > 0; ) {\n var i = r[a], o = t[i];\n if (o) {\n var s = e[i], u = s === void 0 || o(s, i, e);\n if (u !== !0)\n throw new So(\"option \" + i + \" must be \" + u, So.ERR_BAD_OPTION_VALUE);\n continue;\n }\n if (n !== !0)\n throw new So(\"Unknown option \" + i, So.ERR_BAD_OPTION);\n }\n}\nvar bae = {\n assertOptions: vae,\n validators: my\n}, a9 = kr, yae = KD, b6 = qre, y6 = mae, uh = n9, Cae = e9, i9 = bae, eu = i9.validators;\nfunction Gu(e) {\n this.defaults = e, this.interceptors = {\n request: new b6(),\n response: new b6()\n };\n}\nGu.prototype.request = function(t, n) {\n typeof t == \"string\" ? (n = n || {}, n.url = t) : n = t || {}, n = uh(this.defaults, n), n.method ? n.method = n.method.toLowerCase() : this.defaults.method ? n.method = this.defaults.method.toLowerCase() : n.method = \"get\";\n var r = n.transitional;\n r !== void 0 && i9.assertOptions(r, {\n silentJSONParsing: eu.transitional(eu.boolean),\n forcedJSONParsing: eu.transitional(eu.boolean),\n clarifyTimeoutError: eu.transitional(eu.boolean)\n }, !1);\n var a = [], i = !0;\n this.interceptors.request.forEach(function(g) {\n typeof g.runWhen == \"function\" && g.runWhen(n) === !1 || (i = i && g.synchronous, a.unshift(g.fulfilled, g.rejected));\n });\n var o = [];\n this.interceptors.response.forEach(function(g) {\n o.push(g.fulfilled, g.rejected);\n });\n var s;\n if (!i) {\n var u = [y6, void 0];\n for (Array.prototype.unshift.apply(u, a), u = u.concat(o), s = Promise.resolve(n); u.length; )\n s = s.then(u.shift(), u.shift());\n return s;\n }\n for (var l = n; a.length; ) {\n var c = a.shift(), d = a.shift();\n try {\n l = c(l);\n } catch (p) {\n d(p);\n break;\n }\n }\n try {\n s = y6(l);\n } catch (p) {\n return Promise.reject(p);\n }\n for (; o.length; )\n s = s.then(o.shift(), o.shift());\n return s;\n};\nGu.prototype.getUri = function(t) {\n t = uh(this.defaults, t);\n var n = Cae(t.baseURL, t.url);\n return yae(n, t.params, t.paramsSerializer);\n};\na9.forEach([\"delete\", \"get\", \"head\", \"options\"], function(t) {\n Gu.prototype[t] = function(n, r) {\n return this.request(uh(r || {}, {\n method: t,\n url: n,\n data: (r || {}).data\n }));\n };\n});\na9.forEach([\"post\", \"put\", \"patch\"], function(t) {\n function n(r) {\n return function(i, o, s) {\n return this.request(uh(s || {}, {\n method: t,\n headers: r ? {\n \"Content-Type\": \"multipart/form-data\"\n } : {},\n url: i,\n data: o\n }));\n };\n }\n Gu.prototype[t] = n(), Gu.prototype[t + \"Form\"] = n(!0);\n});\nvar xae = Gu, mg, C6;\nfunction Sae() {\n if (C6)\n return mg;\n C6 = 1;\n var e = oh();\n function t(n) {\n if (typeof n != \"function\")\n throw new TypeError(\"executor must be a function.\");\n var r;\n this.promise = new Promise(function(o) {\n r = o;\n });\n var a = this;\n this.promise.then(function(i) {\n if (a._listeners) {\n var o, s = a._listeners.length;\n for (o = 0; o < s; o++)\n a._listeners[o](i);\n a._listeners = null;\n }\n }), this.promise.then = function(i) {\n var o, s = new Promise(function(u) {\n a.subscribe(u), o = u;\n }).then(i);\n return s.cancel = function() {\n a.unsubscribe(o);\n }, s;\n }, n(function(o) {\n a.reason || (a.reason = new e(o), r(a.reason));\n });\n }\n return t.prototype.throwIfRequested = function() {\n if (this.reason)\n throw this.reason;\n }, t.prototype.subscribe = function(r) {\n if (this.reason) {\n r(this.reason);\n return;\n }\n this._listeners ? this._listeners.push(r) : this._listeners = [r];\n }, t.prototype.unsubscribe = function(r) {\n if (this._listeners) {\n var a = this._listeners.indexOf(r);\n a !== -1 && this._listeners.splice(a, 1);\n }\n }, t.source = function() {\n var r, a = new t(function(o) {\n r = o;\n });\n return {\n token: a,\n cancel: r\n };\n }, mg = t, mg;\n}\nvar gg, x6;\nfunction _ae() {\n return x6 || (x6 = 1, gg = function(t) {\n return function(r) {\n return t.apply(null, r);\n };\n }), gg;\n}\nvar vg, S6;\nfunction Eae() {\n if (S6)\n return vg;\n S6 = 1;\n var e = kr;\n return vg = function(n) {\n return e.isObject(n) && n.isAxiosError === !0;\n }, vg;\n}\nvar _6 = kr, wae = GD, X0 = xae, Tae = n9, Aae = hy;\nfunction o9(e) {\n var t = new X0(e), n = wae(X0.prototype.request, t);\n return _6.extend(n, X0.prototype, t), _6.extend(n, t), n.create = function(a) {\n return o9(Tae(e, a));\n }, n;\n}\nvar la = o9(Aae);\nla.Axios = X0;\nla.CanceledError = oh();\nla.CancelToken = Sae();\nla.isCancel = t9();\nla.VERSION = r9().version;\nla.toFormData = JD;\nla.AxiosError = al;\nla.Cancel = la.CanceledError;\nla.all = function(t) {\n return Promise.all(t);\n};\nla.spread = _ae();\nla.isAxiosError = Eae();\nuy.exports = la;\nuy.exports.default = la;\nvar Nae = uy.exports, Oae = Nae;\nconst Ic = /* @__PURE__ */ dp(Oae), Lae = {\n margin: 0,\n image: \"https://www.paypalobjects.com/paypal-ui/logos/svg/paypal-mark-color.svg\",\n imageOptions: {\n margin: 0\n },\n cornersDotOptions: {\n type: \"dot\"\n },\n cornersSquareOptions: {\n type: \"extra-rounded\"\n },\n qrOptions: {\n errorCorrectionLevel: \"Q\"\n },\n dotsOptions: {\n color: \"#000000\",\n type: \"dots\"\n }\n}, l0 = {\n large: 110,\n small: 96\n}, kae = 126;\nvar s9 = { exports: {} };\n(function(e, t) {\n (function(n, r) {\n e.exports = r();\n })(pt, function() {\n return (() => {\n var n = { 192: (i, o) => {\n var s, u, l = function() {\n var c = function($, z) {\n var B = $, O = C[z], D = null, T = 0, j = null, F = [], L = {}, q = function(ie, Ce) {\n D = function(ve) {\n for (var Ae = new Array(ve), _e = 0; _e < ve; _e += 1) {\n Ae[_e] = new Array(ve);\n for (var He = 0; He < ve; He += 1)\n Ae[_e][He] = null;\n }\n return Ae;\n }(T = 4 * B + 17), W(0, 0), W(T - 7, 0), W(0, T - 7), de(), X(), Te(ie, Ce), B >= 7 && Se(ie), j == null && (j = Ge(B, O, F)), Le(j, Ce);\n }, W = function(ie, Ce) {\n for (var ve = -1; ve <= 7; ve += 1)\n if (!(ie + ve <= -1 || T <= ie + ve))\n for (var Ae = -1; Ae <= 7; Ae += 1)\n Ce + Ae <= -1 || T <= Ce + Ae || (D[ie + ve][Ce + Ae] = 0 <= ve && ve <= 6 && (Ae == 0 || Ae == 6) || 0 <= Ae && Ae <= 6 && (ve == 0 || ve == 6) || 2 <= ve && ve <= 4 && 2 <= Ae && Ae <= 4);\n }, X = function() {\n for (var ie = 8; ie < T - 8; ie += 1)\n D[ie][6] == null && (D[ie][6] = ie % 2 == 0);\n for (var Ce = 8; Ce < T - 8; Ce += 1)\n D[6][Ce] == null && (D[6][Ce] = Ce % 2 == 0);\n }, de = function() {\n for (var ie = w.getPatternPosition(B), Ce = 0; Ce < ie.length; Ce += 1)\n for (var ve = 0; ve < ie.length; ve += 1) {\n var Ae = ie[Ce], _e = ie[ve];\n if (D[Ae][_e] == null)\n for (var He = -2; He <= 2; He += 1)\n for (var Oe = -2; Oe <= 2; Oe += 1)\n D[Ae + He][_e + Oe] = He == -2 || He == 2 || Oe == -2 || Oe == 2 || He == 0 && Oe == 0;\n }\n }, Se = function(ie) {\n for (var Ce = w.getBCHTypeNumber(B), ve = 0; ve < 18; ve += 1) {\n var Ae = !ie && (Ce >> ve & 1) == 1;\n D[Math.floor(ve / 3)][ve % 3 + T - 8 - 3] = Ae;\n }\n for (ve = 0; ve < 18; ve += 1)\n Ae = !ie && (Ce >> ve & 1) == 1, D[ve % 3 + T - 8 - 3][Math.floor(ve / 3)] = Ae;\n }, Te = function(ie, Ce) {\n for (var ve = O << 3 | Ce, Ae = w.getBCHTypeInfo(ve), _e = 0; _e < 15; _e += 1) {\n var He = !ie && (Ae >> _e & 1) == 1;\n _e < 6 ? D[_e][8] = He : _e < 8 ? D[_e + 1][8] = He : D[T - 15 + _e][8] = He;\n }\n for (_e = 0; _e < 15; _e += 1)\n He = !ie && (Ae >> _e & 1) == 1, _e < 8 ? D[8][T - _e - 1] = He : _e < 9 ? D[8][15 - _e - 1 + 1] = He : D[8][15 - _e - 1] = He;\n D[T - 8][8] = !ie;\n }, Le = function(ie, Ce) {\n for (var ve = -1, Ae = T - 1, _e = 7, He = 0, Oe = w.getMaskFunction(Ce), Be = T - 1; Be > 0; Be -= 2)\n for (Be == 6 && (Be -= 1); ; ) {\n for (var qe = 0; qe < 2; qe += 1)\n if (D[Ae][Be - qe] == null) {\n var Ye = !1;\n He < ie.length && (Ye = (ie[He] >>> _e & 1) == 1), Oe(Ae, Be - qe) && (Ye = !Ye), D[Ae][Be - qe] = Ye, (_e -= 1) == -1 && (He += 1, _e = 7);\n }\n if ((Ae += ve) < 0 || T <= Ae) {\n Ae -= ve, ve = -ve;\n break;\n }\n }\n }, Ge = function(ie, Ce, ve) {\n for (var Ae = S.getRSBlocks(ie, Ce), _e = E(), He = 0; He < ve.length; He += 1) {\n var Oe = ve[He];\n _e.put(Oe.getMode(), 4), _e.put(Oe.getLength(), w.getLengthInBits(Oe.getMode(), ie)), Oe.write(_e);\n }\n var Be = 0;\n for (He = 0; He < Ae.length; He += 1)\n Be += Ae[He].dataCount;\n if (_e.getLengthInBits() > 8 * Be)\n throw \"code length overflow. (\" + _e.getLengthInBits() + \">\" + 8 * Be + \")\";\n for (_e.getLengthInBits() + 4 <= 8 * Be && _e.put(0, 4); _e.getLengthInBits() % 8 != 0; )\n _e.putBit(!1);\n for (; !(_e.getLengthInBits() >= 8 * Be || (_e.put(236, 8), _e.getLengthInBits() >= 8 * Be)); )\n _e.put(17, 8);\n return function(qe, Ye) {\n for (var Xe = 0, Ve = 0, $e = 0, Je = new Array(Ye.length), Tt = new Array(Ye.length), ct = 0; ct < Ye.length; ct += 1) {\n var Dt = Ye[ct].dataCount, mt = Ye[ct].totalCount - Dt;\n Ve = Math.max(Ve, Dt), $e = Math.max($e, mt), Je[ct] = new Array(Dt);\n for (var et = 0; et < Je[ct].length; et += 1)\n Je[ct][et] = 255 & qe.getBuffer()[et + Xe];\n Xe += Dt;\n var dt = w.getErrorCorrectPolynomial(mt), Fe = x(Je[ct], dt.getLength() - 1).mod(dt);\n for (Tt[ct] = new Array(dt.getLength() - 1), et = 0; et < Tt[ct].length; et += 1) {\n var Ot = et + Fe.getLength() - Tt[ct].length;\n Tt[ct][et] = Ot >= 0 ? Fe.getAt(Ot) : 0;\n }\n }\n var nt = 0;\n for (et = 0; et < Ye.length; et += 1)\n nt += Ye[et].totalCount;\n var Ie = new Array(nt), st = 0;\n for (et = 0; et < Ve; et += 1)\n for (ct = 0; ct < Ye.length; ct += 1)\n et < Je[ct].length && (Ie[st] = Je[ct][et], st += 1);\n for (et = 0; et < $e; et += 1)\n for (ct = 0; ct < Ye.length; ct += 1)\n et < Tt[ct].length && (Ie[st] = Tt[ct][et], st += 1);\n return Ie;\n }(_e, Ae);\n };\n L.addData = function(ie, Ce) {\n var ve = null;\n switch (Ce = Ce || \"Byte\") {\n case \"Numeric\":\n ve = N(ie);\n break;\n case \"Alphanumeric\":\n ve = P(ie);\n break;\n case \"Byte\":\n ve = H(ie);\n break;\n case \"Kanji\":\n ve = k(ie);\n break;\n default:\n throw \"mode:\" + Ce;\n }\n F.push(ve), j = null;\n }, L.isDark = function(ie, Ce) {\n if (ie < 0 || T <= ie || Ce < 0 || T <= Ce)\n throw ie + \",\" + Ce;\n return D[ie][Ce];\n }, L.getModuleCount = function() {\n return T;\n }, L.make = function() {\n if (B < 1) {\n for (var ie = 1; ie < 40; ie++) {\n for (var Ce = S.getRSBlocks(ie, O), ve = E(), Ae = 0; Ae < F.length; Ae++) {\n var _e = F[Ae];\n ve.put(_e.getMode(), 4), ve.put(_e.getLength(), w.getLengthInBits(_e.getMode(), ie)), _e.write(ve);\n }\n var He = 0;\n for (Ae = 0; Ae < Ce.length; Ae++)\n He += Ce[Ae].dataCount;\n if (ve.getLengthInBits() <= 8 * He)\n break;\n }\n B = ie;\n }\n q(!1, function() {\n for (var Oe = 0, Be = 0, qe = 0; qe < 8; qe += 1) {\n q(!0, qe);\n var Ye = w.getLostPoint(L);\n (qe == 0 || Oe > Ye) && (Oe = Ye, Be = qe);\n }\n return Be;\n }());\n }, L.createTableTag = function(ie, Ce) {\n ie = ie || 2;\n var ve = \"\";\n ve += '', ve += \"\";\n for (var Ae = 0; Ae < L.getModuleCount(); Ae += 1) {\n ve += \"\";\n for (var _e = 0; _e < L.getModuleCount(); _e += 1)\n ve += ' ';\n ve += \" \";\n }\n return (ve += \" \") + \"
\";\n }, L.createSvgTag = function(ie, Ce, ve, Ae) {\n var _e = {};\n typeof arguments[0] == \"object\" && (ie = (_e = arguments[0]).cellSize, Ce = _e.margin, ve = _e.alt, Ae = _e.title), ie = ie || 2, Ce = Ce === void 0 ? 4 * ie : Ce, (ve = typeof ve == \"string\" ? { text: ve } : ve || {}).text = ve.text || null, ve.id = ve.text ? ve.id || \"qrcode-description\" : null, (Ae = typeof Ae == \"string\" ? { text: Ae } : Ae || {}).text = Ae.text || null, Ae.id = Ae.text ? Ae.id || \"qrcode-title\" : null;\n var He, Oe, Be, qe, Ye = L.getModuleCount() * ie + 2 * Ce, Xe = \"\";\n for (qe = \"l\" + ie + \",0 0,\" + ie + \" -\" + ie + \",0 0,-\" + ie + \"z \", Xe += '\", Xe += Ae.text ? '' + Ne(Ae.text) + \" \" : \"\", Xe += ve.text ? '' + Ne(ve.text) + \" \" : \"\", Xe += '', Xe += '') + \" \";\n }, L.createDataURL = function(ie, Ce) {\n ie = ie || 2, Ce = Ce === void 0 ? 4 * ie : Ce;\n var ve = L.getModuleCount() * ie + 2 * Ce, Ae = Ce, _e = ve - Ce;\n return G(ve, ve, function(He, Oe) {\n if (Ae <= He && He < _e && Ae <= Oe && Oe < _e) {\n var Be = Math.floor((He - Ae) / ie), qe = Math.floor((Oe - Ae) / ie);\n return L.isDark(qe, Be) ? 0 : 1;\n }\n return 1;\n });\n }, L.createImgTag = function(ie, Ce, ve) {\n ie = ie || 2, Ce = Ce === void 0 ? 4 * ie : Ce;\n var Ae = L.getModuleCount() * ie + 2 * Ce, _e = \"\";\n return _e += \" \";\n };\n var Ne = function(ie) {\n for (var Ce = \"\", ve = 0; ve < ie.length; ve += 1) {\n var Ae = ie.charAt(ve);\n switch (Ae) {\n case \"<\":\n Ce += \"<\";\n break;\n case \">\":\n Ce += \">\";\n break;\n case \"&\":\n Ce += \"&\";\n break;\n case '\"':\n Ce += \""\";\n break;\n default:\n Ce += Ae;\n }\n }\n return Ce;\n };\n return L.createASCII = function(ie, Ce) {\n if ((ie = ie || 1) < 2)\n return function(Je) {\n Je = Je === void 0 ? 2 : Je;\n var Tt, ct, Dt, mt, et, dt = 1 * L.getModuleCount() + 2 * Je, Fe = Je, Ot = dt - Je, nt = { \"██\": \"█\", \"█ \": \"▀\", \" █\": \"▄\", \" \": \" \" }, Ie = { \"██\": \"▀\", \"█ \": \"▀\", \" █\": \" \", \" \": \" \" }, st = \"\";\n for (Tt = 0; Tt < dt; Tt += 2) {\n for (Dt = Math.floor((Tt - Fe) / 1), mt = Math.floor((Tt + 1 - Fe) / 1), ct = 0; ct < dt; ct += 1)\n et = \"█\", Fe <= ct && ct < Ot && Fe <= Tt && Tt < Ot && L.isDark(Dt, Math.floor((ct - Fe) / 1)) && (et = \" \"), Fe <= ct && ct < Ot && Fe <= Tt + 1 && Tt + 1 < Ot && L.isDark(mt, Math.floor((ct - Fe) / 1)) ? et += \" \" : et += \"█\", st += Je < 1 && Tt + 1 >= Ot ? Ie[et] : nt[et];\n st += `\n`;\n }\n return dt % 2 && Je > 0 ? st.substring(0, st.length - dt - 1) + Array(dt + 1).join(\"▀\") : st.substring(0, st.length - 1);\n }(Ce);\n ie -= 1, Ce = Ce === void 0 ? 2 * ie : Ce;\n var ve, Ae, _e, He, Oe = L.getModuleCount() * ie + 2 * Ce, Be = Ce, qe = Oe - Ce, Ye = Array(ie + 1).join(\"██\"), Xe = Array(ie + 1).join(\" \"), Ve = \"\", $e = \"\";\n for (ve = 0; ve < Oe; ve += 1) {\n for (_e = Math.floor((ve - Be) / ie), $e = \"\", Ae = 0; Ae < Oe; Ae += 1)\n He = 1, Be <= Ae && Ae < qe && Be <= ve && ve < qe && L.isDark(_e, Math.floor((Ae - Be) / ie)) && (He = 0), $e += He ? Ye : Xe;\n for (_e = 0; _e < ie; _e += 1)\n Ve += $e + `\n`;\n }\n return Ve.substring(0, Ve.length - 1);\n }, L.renderTo2dContext = function(ie, Ce) {\n Ce = Ce || 2;\n for (var ve = L.getModuleCount(), Ae = 0; Ae < ve; Ae++)\n for (var _e = 0; _e < ve; _e++)\n ie.fillStyle = L.isDark(Ae, _e) ? \"black\" : \"white\", ie.fillRect(Ae * Ce, _e * Ce, Ce, Ce);\n }, L;\n };\n c.stringToBytes = (c.stringToBytesFuncs = { default: function($) {\n for (var z = [], B = 0; B < $.length; B += 1) {\n var O = $.charCodeAt(B);\n z.push(255 & O);\n }\n return z;\n } }).default, c.createStringToBytes = function($, z) {\n var B = function() {\n for (var D = I($), T = function() {\n var X = D.read();\n if (X == -1)\n throw \"eof\";\n return X;\n }, j = 0, F = {}; ; ) {\n var L = D.read();\n if (L == -1)\n break;\n var q = T(), W = T() << 8 | T();\n F[String.fromCharCode(L << 8 | q)] = W, j += 1;\n }\n if (j != z)\n throw j + \" != \" + z;\n return F;\n }(), O = \"?\".charCodeAt(0);\n return function(D) {\n for (var T = [], j = 0; j < D.length; j += 1) {\n var F = D.charCodeAt(j);\n if (F < 128)\n T.push(F);\n else {\n var L = B[D.charAt(j)];\n typeof L == \"number\" ? (255 & L) == L ? T.push(L) : (T.push(L >>> 8), T.push(255 & L)) : T.push(O);\n }\n }\n return T;\n };\n };\n var d, p, g, v, b, C = { L: 1, M: 0, Q: 3, H: 2 }, w = (d = [[], [6, 18], [6, 22], [6, 26], [6, 30], [6, 34], [6, 22, 38], [6, 24, 42], [6, 26, 46], [6, 28, 50], [6, 30, 54], [6, 32, 58], [6, 34, 62], [6, 26, 46, 66], [6, 26, 48, 70], [6, 26, 50, 74], [6, 30, 54, 78], [6, 30, 56, 82], [6, 30, 58, 86], [6, 34, 62, 90], [6, 28, 50, 72, 94], [6, 26, 50, 74, 98], [6, 30, 54, 78, 102], [6, 28, 54, 80, 106], [6, 32, 58, 84, 110], [6, 30, 58, 86, 114], [6, 34, 62, 90, 118], [6, 26, 50, 74, 98, 122], [6, 30, 54, 78, 102, 126], [6, 26, 52, 78, 104, 130], [6, 30, 56, 82, 108, 134], [6, 34, 60, 86, 112, 138], [6, 30, 58, 86, 114, 142], [6, 34, 62, 90, 118, 146], [6, 30, 54, 78, 102, 126, 150], [6, 24, 50, 76, 102, 128, 154], [6, 28, 54, 80, 106, 132, 158], [6, 32, 58, 84, 110, 136, 162], [6, 26, 54, 82, 110, 138, 166], [6, 30, 58, 86, 114, 142, 170]], p = 1335, g = 7973, b = function($) {\n for (var z = 0; $ != 0; )\n z += 1, $ >>>= 1;\n return z;\n }, (v = {}).getBCHTypeInfo = function($) {\n for (var z = $ << 10; b(z) - b(p) >= 0; )\n z ^= p << b(z) - b(p);\n return 21522 ^ ($ << 10 | z);\n }, v.getBCHTypeNumber = function($) {\n for (var z = $ << 12; b(z) - b(g) >= 0; )\n z ^= g << b(z) - b(g);\n return $ << 12 | z;\n }, v.getPatternPosition = function($) {\n return d[$ - 1];\n }, v.getMaskFunction = function($) {\n switch ($) {\n case 0:\n return function(z, B) {\n return (z + B) % 2 == 0;\n };\n case 1:\n return function(z, B) {\n return z % 2 == 0;\n };\n case 2:\n return function(z, B) {\n return B % 3 == 0;\n };\n case 3:\n return function(z, B) {\n return (z + B) % 3 == 0;\n };\n case 4:\n return function(z, B) {\n return (Math.floor(z / 2) + Math.floor(B / 3)) % 2 == 0;\n };\n case 5:\n return function(z, B) {\n return z * B % 2 + z * B % 3 == 0;\n };\n case 6:\n return function(z, B) {\n return (z * B % 2 + z * B % 3) % 2 == 0;\n };\n case 7:\n return function(z, B) {\n return (z * B % 3 + (z + B) % 2) % 2 == 0;\n };\n default:\n throw \"bad maskPattern:\" + $;\n }\n }, v.getErrorCorrectPolynomial = function($) {\n for (var z = x([1], 0), B = 0; B < $; B += 1)\n z = z.multiply(x([1, _.gexp(B)], 0));\n return z;\n }, v.getLengthInBits = function($, z) {\n if (1 <= z && z < 10)\n switch ($) {\n case 1:\n return 10;\n case 2:\n return 9;\n case 4:\n case 8:\n return 8;\n default:\n throw \"mode:\" + $;\n }\n else if (z < 27)\n switch ($) {\n case 1:\n return 12;\n case 2:\n return 11;\n case 4:\n return 16;\n case 8:\n return 10;\n default:\n throw \"mode:\" + $;\n }\n else {\n if (!(z < 41))\n throw \"type:\" + z;\n switch ($) {\n case 1:\n return 14;\n case 2:\n return 13;\n case 4:\n return 16;\n case 8:\n return 12;\n default:\n throw \"mode:\" + $;\n }\n }\n }, v.getLostPoint = function($) {\n for (var z = $.getModuleCount(), B = 0, O = 0; O < z; O += 1)\n for (var D = 0; D < z; D += 1) {\n for (var T = 0, j = $.isDark(O, D), F = -1; F <= 1; F += 1)\n if (!(O + F < 0 || z <= O + F))\n for (var L = -1; L <= 1; L += 1)\n D + L < 0 || z <= D + L || F == 0 && L == 0 || j == $.isDark(O + F, D + L) && (T += 1);\n T > 5 && (B += 3 + T - 5);\n }\n for (O = 0; O < z - 1; O += 1)\n for (D = 0; D < z - 1; D += 1) {\n var q = 0;\n $.isDark(O, D) && (q += 1), $.isDark(O + 1, D) && (q += 1), $.isDark(O, D + 1) && (q += 1), $.isDark(O + 1, D + 1) && (q += 1), q != 0 && q != 4 || (B += 3);\n }\n for (O = 0; O < z; O += 1)\n for (D = 0; D < z - 6; D += 1)\n $.isDark(O, D) && !$.isDark(O, D + 1) && $.isDark(O, D + 2) && $.isDark(O, D + 3) && $.isDark(O, D + 4) && !$.isDark(O, D + 5) && $.isDark(O, D + 6) && (B += 40);\n for (D = 0; D < z; D += 1)\n for (O = 0; O < z - 6; O += 1)\n $.isDark(O, D) && !$.isDark(O + 1, D) && $.isDark(O + 2, D) && $.isDark(O + 3, D) && $.isDark(O + 4, D) && !$.isDark(O + 5, D) && $.isDark(O + 6, D) && (B += 40);\n var W = 0;\n for (D = 0; D < z; D += 1)\n for (O = 0; O < z; O += 1)\n $.isDark(O, D) && (W += 1);\n return B + Math.abs(100 * W / z / z - 50) / 5 * 10;\n }, v), _ = function() {\n for (var $ = new Array(256), z = new Array(256), B = 0; B < 8; B += 1)\n $[B] = 1 << B;\n for (B = 8; B < 256; B += 1)\n $[B] = $[B - 4] ^ $[B - 5] ^ $[B - 6] ^ $[B - 8];\n for (B = 0; B < 255; B += 1)\n z[$[B]] = B;\n return { glog: function(O) {\n if (O < 1)\n throw \"glog(\" + O + \")\";\n return z[O];\n }, gexp: function(O) {\n for (; O < 0; )\n O += 255;\n for (; O >= 256; )\n O -= 255;\n return $[O];\n } };\n }();\n function x($, z) {\n if ($.length === void 0)\n throw $.length + \"/\" + z;\n var B = function() {\n for (var D = 0; D < $.length && $[D] == 0; )\n D += 1;\n for (var T = new Array($.length - D + z), j = 0; j < $.length - D; j += 1)\n T[j] = $[j + D];\n return T;\n }(), O = { getAt: function(D) {\n return B[D];\n }, getLength: function() {\n return B.length;\n }, multiply: function(D) {\n for (var T = new Array(O.getLength() + D.getLength() - 1), j = 0; j < O.getLength(); j += 1)\n for (var F = 0; F < D.getLength(); F += 1)\n T[j + F] ^= _.gexp(_.glog(O.getAt(j)) + _.glog(D.getAt(F)));\n return x(T, 0);\n }, mod: function(D) {\n if (O.getLength() - D.getLength() < 0)\n return O;\n for (var T = _.glog(O.getAt(0)) - _.glog(D.getAt(0)), j = new Array(O.getLength()), F = 0; F < O.getLength(); F += 1)\n j[F] = O.getAt(F);\n for (F = 0; F < D.getLength(); F += 1)\n j[F] ^= _.gexp(_.glog(D.getAt(F)) + T);\n return x(j, 0).mod(D);\n } };\n return O;\n }\n var S = function() {\n var $ = [[1, 26, 19], [1, 26, 16], [1, 26, 13], [1, 26, 9], [1, 44, 34], [1, 44, 28], [1, 44, 22], [1, 44, 16], [1, 70, 55], [1, 70, 44], [2, 35, 17], [2, 35, 13], [1, 100, 80], [2, 50, 32], [2, 50, 24], [4, 25, 9], [1, 134, 108], [2, 67, 43], [2, 33, 15, 2, 34, 16], [2, 33, 11, 2, 34, 12], [2, 86, 68], [4, 43, 27], [4, 43, 19], [4, 43, 15], [2, 98, 78], [4, 49, 31], [2, 32, 14, 4, 33, 15], [4, 39, 13, 1, 40, 14], [2, 121, 97], [2, 60, 38, 2, 61, 39], [4, 40, 18, 2, 41, 19], [4, 40, 14, 2, 41, 15], [2, 146, 116], [3, 58, 36, 2, 59, 37], [4, 36, 16, 4, 37, 17], [4, 36, 12, 4, 37, 13], [2, 86, 68, 2, 87, 69], [4, 69, 43, 1, 70, 44], [6, 43, 19, 2, 44, 20], [6, 43, 15, 2, 44, 16], [4, 101, 81], [1, 80, 50, 4, 81, 51], [4, 50, 22, 4, 51, 23], [3, 36, 12, 8, 37, 13], [2, 116, 92, 2, 117, 93], [6, 58, 36, 2, 59, 37], [4, 46, 20, 6, 47, 21], [7, 42, 14, 4, 43, 15], [4, 133, 107], [8, 59, 37, 1, 60, 38], [8, 44, 20, 4, 45, 21], [12, 33, 11, 4, 34, 12], [3, 145, 115, 1, 146, 116], [4, 64, 40, 5, 65, 41], [11, 36, 16, 5, 37, 17], [11, 36, 12, 5, 37, 13], [5, 109, 87, 1, 110, 88], [5, 65, 41, 5, 66, 42], [5, 54, 24, 7, 55, 25], [11, 36, 12, 7, 37, 13], [5, 122, 98, 1, 123, 99], [7, 73, 45, 3, 74, 46], [15, 43, 19, 2, 44, 20], [3, 45, 15, 13, 46, 16], [1, 135, 107, 5, 136, 108], [10, 74, 46, 1, 75, 47], [1, 50, 22, 15, 51, 23], [2, 42, 14, 17, 43, 15], [5, 150, 120, 1, 151, 121], [9, 69, 43, 4, 70, 44], [17, 50, 22, 1, 51, 23], [2, 42, 14, 19, 43, 15], [3, 141, 113, 4, 142, 114], [3, 70, 44, 11, 71, 45], [17, 47, 21, 4, 48, 22], [9, 39, 13, 16, 40, 14], [3, 135, 107, 5, 136, 108], [3, 67, 41, 13, 68, 42], [15, 54, 24, 5, 55, 25], [15, 43, 15, 10, 44, 16], [4, 144, 116, 4, 145, 117], [17, 68, 42], [17, 50, 22, 6, 51, 23], [19, 46, 16, 6, 47, 17], [2, 139, 111, 7, 140, 112], [17, 74, 46], [7, 54, 24, 16, 55, 25], [34, 37, 13], [4, 151, 121, 5, 152, 122], [4, 75, 47, 14, 76, 48], [11, 54, 24, 14, 55, 25], [16, 45, 15, 14, 46, 16], [6, 147, 117, 4, 148, 118], [6, 73, 45, 14, 74, 46], [11, 54, 24, 16, 55, 25], [30, 46, 16, 2, 47, 17], [8, 132, 106, 4, 133, 107], [8, 75, 47, 13, 76, 48], [7, 54, 24, 22, 55, 25], [22, 45, 15, 13, 46, 16], [10, 142, 114, 2, 143, 115], [19, 74, 46, 4, 75, 47], [28, 50, 22, 6, 51, 23], [33, 46, 16, 4, 47, 17], [8, 152, 122, 4, 153, 123], [22, 73, 45, 3, 74, 46], [8, 53, 23, 26, 54, 24], [12, 45, 15, 28, 46, 16], [3, 147, 117, 10, 148, 118], [3, 73, 45, 23, 74, 46], [4, 54, 24, 31, 55, 25], [11, 45, 15, 31, 46, 16], [7, 146, 116, 7, 147, 117], [21, 73, 45, 7, 74, 46], [1, 53, 23, 37, 54, 24], [19, 45, 15, 26, 46, 16], [5, 145, 115, 10, 146, 116], [19, 75, 47, 10, 76, 48], [15, 54, 24, 25, 55, 25], [23, 45, 15, 25, 46, 16], [13, 145, 115, 3, 146, 116], [2, 74, 46, 29, 75, 47], [42, 54, 24, 1, 55, 25], [23, 45, 15, 28, 46, 16], [17, 145, 115], [10, 74, 46, 23, 75, 47], [10, 54, 24, 35, 55, 25], [19, 45, 15, 35, 46, 16], [17, 145, 115, 1, 146, 116], [14, 74, 46, 21, 75, 47], [29, 54, 24, 19, 55, 25], [11, 45, 15, 46, 46, 16], [13, 145, 115, 6, 146, 116], [14, 74, 46, 23, 75, 47], [44, 54, 24, 7, 55, 25], [59, 46, 16, 1, 47, 17], [12, 151, 121, 7, 152, 122], [12, 75, 47, 26, 76, 48], [39, 54, 24, 14, 55, 25], [22, 45, 15, 41, 46, 16], [6, 151, 121, 14, 152, 122], [6, 75, 47, 34, 76, 48], [46, 54, 24, 10, 55, 25], [2, 45, 15, 64, 46, 16], [17, 152, 122, 4, 153, 123], [29, 74, 46, 14, 75, 47], [49, 54, 24, 10, 55, 25], [24, 45, 15, 46, 46, 16], [4, 152, 122, 18, 153, 123], [13, 74, 46, 32, 75, 47], [48, 54, 24, 14, 55, 25], [42, 45, 15, 32, 46, 16], [20, 147, 117, 4, 148, 118], [40, 75, 47, 7, 76, 48], [43, 54, 24, 22, 55, 25], [10, 45, 15, 67, 46, 16], [19, 148, 118, 6, 149, 119], [18, 75, 47, 31, 76, 48], [34, 54, 24, 34, 55, 25], [20, 45, 15, 61, 46, 16]], z = function(O, D) {\n var T = {};\n return T.totalCount = O, T.dataCount = D, T;\n }, B = { getRSBlocks: function(O, D) {\n var T = function(Se, Te) {\n switch (Te) {\n case C.L:\n return $[4 * (Se - 1) + 0];\n case C.M:\n return $[4 * (Se - 1) + 1];\n case C.Q:\n return $[4 * (Se - 1) + 2];\n case C.H:\n return $[4 * (Se - 1) + 3];\n default:\n return;\n }\n }(O, D);\n if (T === void 0)\n throw \"bad rs block @ typeNumber:\" + O + \"/errorCorrectionLevel:\" + D;\n for (var j = T.length / 3, F = [], L = 0; L < j; L += 1)\n for (var q = T[3 * L + 0], W = T[3 * L + 1], X = T[3 * L + 2], de = 0; de < q; de += 1)\n F.push(z(W, X));\n return F;\n } };\n return B;\n }(), E = function() {\n var $ = [], z = 0, B = { getBuffer: function() {\n return $;\n }, getAt: function(O) {\n var D = Math.floor(O / 8);\n return ($[D] >>> 7 - O % 8 & 1) == 1;\n }, put: function(O, D) {\n for (var T = 0; T < D; T += 1)\n B.putBit((O >>> D - T - 1 & 1) == 1);\n }, getLengthInBits: function() {\n return z;\n }, putBit: function(O) {\n var D = Math.floor(z / 8);\n $.length <= D && $.push(0), O && ($[D] |= 128 >>> z % 8), z += 1;\n } };\n return B;\n }, N = function($) {\n var z = $, B = { getMode: function() {\n return 1;\n }, getLength: function(T) {\n return z.length;\n }, write: function(T) {\n for (var j = z, F = 0; F + 2 < j.length; )\n T.put(O(j.substring(F, F + 3)), 10), F += 3;\n F < j.length && (j.length - F == 1 ? T.put(O(j.substring(F, F + 1)), 4) : j.length - F == 2 && T.put(O(j.substring(F, F + 2)), 7));\n } }, O = function(T) {\n for (var j = 0, F = 0; F < T.length; F += 1)\n j = 10 * j + D(T.charAt(F));\n return j;\n }, D = function(T) {\n if (\"0\" <= T && T <= \"9\")\n return T.charCodeAt(0) - \"0\".charCodeAt(0);\n throw \"illegal char :\" + T;\n };\n return B;\n }, P = function($) {\n var z = $, B = { getMode: function() {\n return 2;\n }, getLength: function(D) {\n return z.length;\n }, write: function(D) {\n for (var T = z, j = 0; j + 1 < T.length; )\n D.put(45 * O(T.charAt(j)) + O(T.charAt(j + 1)), 11), j += 2;\n j < T.length && D.put(O(T.charAt(j)), 6);\n } }, O = function(D) {\n if (\"0\" <= D && D <= \"9\")\n return D.charCodeAt(0) - \"0\".charCodeAt(0);\n if (\"A\" <= D && D <= \"Z\")\n return D.charCodeAt(0) - \"A\".charCodeAt(0) + 10;\n switch (D) {\n case \" \":\n return 36;\n case \"$\":\n return 37;\n case \"%\":\n return 38;\n case \"*\":\n return 39;\n case \"+\":\n return 40;\n case \"-\":\n return 41;\n case \".\":\n return 42;\n case \"/\":\n return 43;\n case \":\":\n return 44;\n default:\n throw \"illegal char :\" + D;\n }\n };\n return B;\n }, H = function($) {\n var z = c.stringToBytes($);\n return { getMode: function() {\n return 4;\n }, getLength: function(B) {\n return z.length;\n }, write: function(B) {\n for (var O = 0; O < z.length; O += 1)\n B.put(z[O], 8);\n } };\n }, k = function($) {\n var z = c.stringToBytesFuncs.SJIS;\n if (!z)\n throw \"sjis not supported.\";\n (function(O, D) {\n var T = z(\"友\");\n if (T.length != 2 || (T[0] << 8 | T[1]) != 38726)\n throw \"sjis not supported.\";\n })();\n var B = z($);\n return { getMode: function() {\n return 8;\n }, getLength: function(O) {\n return ~~(B.length / 2);\n }, write: function(O) {\n for (var D = B, T = 0; T + 1 < D.length; ) {\n var j = (255 & D[T]) << 8 | 255 & D[T + 1];\n if (33088 <= j && j <= 40956)\n j -= 33088;\n else {\n if (!(57408 <= j && j <= 60351))\n throw \"illegal char at \" + (T + 1) + \"/\" + j;\n j -= 49472;\n }\n j = 192 * (j >>> 8 & 255) + (255 & j), O.put(j, 13), T += 2;\n }\n if (T < D.length)\n throw \"illegal char at \" + (T + 1);\n } };\n }, Q = function() {\n var $ = [], z = { writeByte: function(B) {\n $.push(255 & B);\n }, writeShort: function(B) {\n z.writeByte(B), z.writeByte(B >>> 8);\n }, writeBytes: function(B, O, D) {\n O = O || 0, D = D || B.length;\n for (var T = 0; T < D; T += 1)\n z.writeByte(B[T + O]);\n }, writeString: function(B) {\n for (var O = 0; O < B.length; O += 1)\n z.writeByte(B.charCodeAt(O));\n }, toByteArray: function() {\n return $;\n }, toString: function() {\n var B = \"\";\n B += \"[\";\n for (var O = 0; O < $.length; O += 1)\n O > 0 && (B += \",\"), B += $[O];\n return B + \"]\";\n } };\n return z;\n }, I = function($) {\n var z = $, B = 0, O = 0, D = 0, T = { read: function() {\n for (; D < 8; ) {\n if (B >= z.length) {\n if (D == 0)\n return -1;\n throw \"unexpected end of file./\" + D;\n }\n var F = z.charAt(B);\n if (B += 1, F == \"=\")\n return D = 0, -1;\n F.match(/^\\s$/) || (O = O << 6 | j(F.charCodeAt(0)), D += 6);\n }\n var L = O >>> D - 8 & 255;\n return D -= 8, L;\n } }, j = function(F) {\n if (65 <= F && F <= 90)\n return F - 65;\n if (97 <= F && F <= 122)\n return F - 97 + 26;\n if (48 <= F && F <= 57)\n return F - 48 + 52;\n if (F == 43)\n return 62;\n if (F == 47)\n return 63;\n throw \"c:\" + F;\n };\n return T;\n }, G = function($, z, B) {\n for (var O = function(W, X) {\n var de = W, Se = X, Te = new Array(W * X), Le = { setPixel: function(ie, Ce, ve) {\n Te[Ce * de + ie] = ve;\n }, write: function(ie) {\n ie.writeString(\"GIF87a\"), ie.writeShort(de), ie.writeShort(Se), ie.writeByte(128), ie.writeByte(0), ie.writeByte(0), ie.writeByte(0), ie.writeByte(0), ie.writeByte(0), ie.writeByte(255), ie.writeByte(255), ie.writeByte(255), ie.writeString(\",\"), ie.writeShort(0), ie.writeShort(0), ie.writeShort(de), ie.writeShort(Se), ie.writeByte(0);\n var Ce = Ge(2);\n ie.writeByte(2);\n for (var ve = 0; Ce.length - ve > 255; )\n ie.writeByte(255), ie.writeBytes(Ce, ve, 255), ve += 255;\n ie.writeByte(Ce.length - ve), ie.writeBytes(Ce, ve, Ce.length - ve), ie.writeByte(0), ie.writeString(\";\");\n } }, Ge = function(ie) {\n for (var Ce = 1 << ie, ve = 1 + (1 << ie), Ae = ie + 1, _e = Ne(), He = 0; He < Ce; He += 1)\n _e.add(String.fromCharCode(He));\n _e.add(String.fromCharCode(Ce)), _e.add(String.fromCharCode(ve));\n var Oe, Be, qe, Ye = Q(), Xe = (Oe = Ye, Be = 0, qe = 0, { write: function(Tt, ct) {\n if (Tt >>> ct)\n throw \"length over\";\n for (; Be + ct >= 8; )\n Oe.writeByte(255 & (Tt << Be | qe)), ct -= 8 - Be, Tt >>>= 8 - Be, qe = 0, Be = 0;\n qe |= Tt << Be, Be += ct;\n }, flush: function() {\n Be > 0 && Oe.writeByte(qe);\n } });\n Xe.write(Ce, Ae);\n var Ve = 0, $e = String.fromCharCode(Te[Ve]);\n for (Ve += 1; Ve < Te.length; ) {\n var Je = String.fromCharCode(Te[Ve]);\n Ve += 1, _e.contains($e + Je) ? $e += Je : (Xe.write(_e.indexOf($e), Ae), _e.size() < 4095 && (_e.size() == 1 << Ae && (Ae += 1), _e.add($e + Je)), $e = Je);\n }\n return Xe.write(_e.indexOf($e), Ae), Xe.write(ve, Ae), Xe.flush(), Ye.toByteArray();\n }, Ne = function() {\n var ie = {}, Ce = 0, ve = { add: function(Ae) {\n if (ve.contains(Ae))\n throw \"dup key:\" + Ae;\n ie[Ae] = Ce, Ce += 1;\n }, size: function() {\n return Ce;\n }, indexOf: function(Ae) {\n return ie[Ae];\n }, contains: function(Ae) {\n return ie[Ae] !== void 0;\n } };\n return ve;\n };\n return Le;\n }($, z), D = 0; D < z; D += 1)\n for (var T = 0; T < $; T += 1)\n O.setPixel(T, D, B(T, D));\n var j = Q();\n O.write(j);\n for (var F = function() {\n var W = 0, X = 0, de = 0, Se = \"\", Te = {}, Le = function(Ne) {\n Se += String.fromCharCode(Ge(63 & Ne));\n }, Ge = function(Ne) {\n if (!(Ne < 0)) {\n if (Ne < 26)\n return 65 + Ne;\n if (Ne < 52)\n return Ne - 26 + 97;\n if (Ne < 62)\n return Ne - 52 + 48;\n if (Ne == 62)\n return 43;\n if (Ne == 63)\n return 47;\n }\n throw \"n:\" + Ne;\n };\n return Te.writeByte = function(Ne) {\n for (W = W << 8 | 255 & Ne, X += 8, de += 1; X >= 6; )\n Le(W >>> X - 6), X -= 6;\n }, Te.flush = function() {\n if (X > 0 && (Le(W << 6 - X), W = 0, X = 0), de % 3 != 0)\n for (var Ne = 3 - de % 3, ie = 0; ie < Ne; ie += 1)\n Se += \"=\";\n }, Te.toString = function() {\n return Se;\n }, Te;\n }(), L = j.toByteArray(), q = 0; q < L.length; q += 1)\n F.writeByte(L[q]);\n return F.flush(), \"data:image/gif;base64,\" + F;\n };\n return c;\n }();\n l.stringToBytesFuncs[\"UTF-8\"] = function(c) {\n return function(d) {\n for (var p = [], g = 0; g < d.length; g++) {\n var v = d.charCodeAt(g);\n v < 128 ? p.push(v) : v < 2048 ? p.push(192 | v >> 6, 128 | 63 & v) : v < 55296 || v >= 57344 ? p.push(224 | v >> 12, 128 | v >> 6 & 63, 128 | 63 & v) : (g++, v = 65536 + ((1023 & v) << 10 | 1023 & d.charCodeAt(g)), p.push(240 | v >> 18, 128 | v >> 12 & 63, 128 | v >> 6 & 63, 128 | 63 & v));\n }\n return p;\n }(c);\n }, (u = typeof (s = function() {\n return l;\n }) == \"function\" ? s.apply(o, []) : s) === void 0 || (i.exports = u);\n }, 245: (i, o, s) => {\n s.d(o, { default: () => O });\n var u = function() {\n return (u = Object.assign || function(D) {\n for (var T, j = 1, F = arguments.length; j < F; j++)\n for (var L in T = arguments[j])\n Object.prototype.hasOwnProperty.call(T, L) && (D[L] = T[L]);\n return D;\n }).apply(this, arguments);\n }, l = function() {\n for (var D = 0, T = 0, j = arguments.length; T < j; T++)\n D += arguments[T].length;\n var F = Array(D), L = 0;\n for (T = 0; T < j; T++)\n for (var q = arguments[T], W = 0, X = q.length; W < X; W++, L++)\n F[L] = q[W];\n return F;\n }, c = function(D) {\n return !!D && typeof D == \"object\" && !Array.isArray(D);\n };\n function d(D) {\n for (var T = [], j = 1; j < arguments.length; j++)\n T[j - 1] = arguments[j];\n if (!T.length)\n return D;\n var F = T.shift();\n return F !== void 0 && c(D) && c(F) ? (D = u({}, D), Object.keys(F).forEach(function(L) {\n var q = D[L], W = F[L];\n Array.isArray(q) && Array.isArray(W) ? D[L] = W : c(q) && c(W) ? D[L] = d(Object.assign({}, q), W) : D[L] = W;\n }), d.apply(void 0, l([D], T))) : D;\n }\n const p = { L: 0.07, M: 0.15, Q: 0.25, H: 0.3 };\n var g = function() {\n return (g = Object.assign || function(D) {\n for (var T, j = 1, F = arguments.length; j < F; j++)\n for (var L in T = arguments[j])\n Object.prototype.hasOwnProperty.call(T, L) && (D[L] = T[L]);\n return D;\n }).apply(this, arguments);\n };\n const v = function() {\n function D(T) {\n var j = T.svg, F = T.type;\n this._svg = j, this._type = F;\n }\n return D.prototype.draw = function(T, j, F, L) {\n var q;\n switch (this._type) {\n case \"dots\":\n q = this._drawDot;\n break;\n case \"classy\":\n q = this._drawClassy;\n break;\n case \"classy-rounded\":\n q = this._drawClassyRounded;\n break;\n case \"rounded\":\n q = this._drawRounded;\n break;\n case \"extra-rounded\":\n q = this._drawExtraRounded;\n break;\n case \"square\":\n default:\n q = this._drawSquare;\n }\n q.call(this, { x: T, y: j, size: F, getNeighbor: L });\n }, D.prototype._rotateFigure = function(T) {\n var j, F = T.x, L = T.y, q = T.size, W = T.rotation, X = W === void 0 ? 0 : W, de = F + q / 2, Se = L + q / 2;\n (0, T.draw)(), (j = this._element) === null || j === void 0 || j.setAttribute(\"transform\", \"rotate(\" + 180 * X / Math.PI + \",\" + de + \",\" + Se + \")\");\n }, D.prototype._basicDot = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(g(g({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"circle\"), j._element.setAttribute(\"cx\", String(L + F / 2)), j._element.setAttribute(\"cy\", String(q + F / 2)), j._element.setAttribute(\"r\", String(F / 2));\n } }));\n }, D.prototype._basicSquare = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(g(g({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"rect\"), j._element.setAttribute(\"x\", String(L)), j._element.setAttribute(\"y\", String(q)), j._element.setAttribute(\"width\", String(F)), j._element.setAttribute(\"height\", String(F));\n } }));\n }, D.prototype._basicSideRounded = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(g(g({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"d\", \"M \" + L + \" \" + q + \"v \" + F + \"h \" + F / 2 + \"a \" + F / 2 + \" \" + F / 2 + \", 0, 0, 0, 0 \" + -F);\n } }));\n }, D.prototype._basicCornerRounded = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(g(g({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"d\", \"M \" + L + \" \" + q + \"v \" + F + \"h \" + F + \"v \" + -F / 2 + \"a \" + F / 2 + \" \" + F / 2 + \", 0, 0, 0, \" + -F / 2 + \" \" + -F / 2);\n } }));\n }, D.prototype._basicCornerExtraRounded = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(g(g({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"d\", \"M \" + L + \" \" + q + \"v \" + F + \"h \" + F + \"a \" + F + \" \" + F + \", 0, 0, 0, \" + -F + \" \" + -F);\n } }));\n }, D.prototype._basicCornersRounded = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(g(g({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"d\", \"M \" + L + \" \" + q + \"v \" + F / 2 + \"a \" + F / 2 + \" \" + F / 2 + \", 0, 0, 0, \" + F / 2 + \" \" + F / 2 + \"h \" + F / 2 + \"v \" + -F / 2 + \"a \" + F / 2 + \" \" + F / 2 + \", 0, 0, 0, \" + -F / 2 + \" \" + -F / 2);\n } }));\n }, D.prototype._drawDot = function(T) {\n var j = T.x, F = T.y, L = T.size;\n this._basicDot({ x: j, y: F, size: L, rotation: 0 });\n }, D.prototype._drawSquare = function(T) {\n var j = T.x, F = T.y, L = T.size;\n this._basicSquare({ x: j, y: F, size: L, rotation: 0 });\n }, D.prototype._drawRounded = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.getNeighbor, W = q ? +q(-1, 0) : 0, X = q ? +q(1, 0) : 0, de = q ? +q(0, -1) : 0, Se = q ? +q(0, 1) : 0, Te = W + X + de + Se;\n if (Te !== 0)\n if (Te > 2 || W && X || de && Se)\n this._basicSquare({ x: j, y: F, size: L, rotation: 0 });\n else {\n if (Te === 2) {\n var Le = 0;\n return W && de ? Le = Math.PI / 2 : de && X ? Le = Math.PI : X && Se && (Le = -Math.PI / 2), void this._basicCornerRounded({ x: j, y: F, size: L, rotation: Le });\n }\n if (Te === 1)\n return Le = 0, de ? Le = Math.PI / 2 : X ? Le = Math.PI : Se && (Le = -Math.PI / 2), void this._basicSideRounded({ x: j, y: F, size: L, rotation: Le });\n }\n else\n this._basicDot({ x: j, y: F, size: L, rotation: 0 });\n }, D.prototype._drawExtraRounded = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.getNeighbor, W = q ? +q(-1, 0) : 0, X = q ? +q(1, 0) : 0, de = q ? +q(0, -1) : 0, Se = q ? +q(0, 1) : 0, Te = W + X + de + Se;\n if (Te !== 0)\n if (Te > 2 || W && X || de && Se)\n this._basicSquare({ x: j, y: F, size: L, rotation: 0 });\n else {\n if (Te === 2) {\n var Le = 0;\n return W && de ? Le = Math.PI / 2 : de && X ? Le = Math.PI : X && Se && (Le = -Math.PI / 2), void this._basicCornerExtraRounded({ x: j, y: F, size: L, rotation: Le });\n }\n if (Te === 1)\n return Le = 0, de ? Le = Math.PI / 2 : X ? Le = Math.PI : Se && (Le = -Math.PI / 2), void this._basicSideRounded({ x: j, y: F, size: L, rotation: Le });\n }\n else\n this._basicDot({ x: j, y: F, size: L, rotation: 0 });\n }, D.prototype._drawClassy = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.getNeighbor, W = q ? +q(-1, 0) : 0, X = q ? +q(1, 0) : 0, de = q ? +q(0, -1) : 0, Se = q ? +q(0, 1) : 0;\n W + X + de + Se !== 0 ? W || de ? X || Se ? this._basicSquare({ x: j, y: F, size: L, rotation: 0 }) : this._basicCornerRounded({ x: j, y: F, size: L, rotation: Math.PI / 2 }) : this._basicCornerRounded({ x: j, y: F, size: L, rotation: -Math.PI / 2 }) : this._basicCornersRounded({ x: j, y: F, size: L, rotation: Math.PI / 2 });\n }, D.prototype._drawClassyRounded = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.getNeighbor, W = q ? +q(-1, 0) : 0, X = q ? +q(1, 0) : 0, de = q ? +q(0, -1) : 0, Se = q ? +q(0, 1) : 0;\n W + X + de + Se !== 0 ? W || de ? X || Se ? this._basicSquare({ x: j, y: F, size: L, rotation: 0 }) : this._basicCornerExtraRounded({ x: j, y: F, size: L, rotation: Math.PI / 2 }) : this._basicCornerExtraRounded({ x: j, y: F, size: L, rotation: -Math.PI / 2 }) : this._basicCornersRounded({ x: j, y: F, size: L, rotation: Math.PI / 2 });\n }, D;\n }();\n var b = function() {\n return (b = Object.assign || function(D) {\n for (var T, j = 1, F = arguments.length; j < F; j++)\n for (var L in T = arguments[j])\n Object.prototype.hasOwnProperty.call(T, L) && (D[L] = T[L]);\n return D;\n }).apply(this, arguments);\n };\n const C = function() {\n function D(T) {\n var j = T.svg, F = T.type;\n this._svg = j, this._type = F;\n }\n return D.prototype.draw = function(T, j, F, L) {\n var q;\n switch (this._type) {\n case \"square\":\n q = this._drawSquare;\n break;\n case \"extra-rounded\":\n q = this._drawExtraRounded;\n break;\n case \"dot\":\n default:\n q = this._drawDot;\n }\n q.call(this, { x: T, y: j, size: F, rotation: L });\n }, D.prototype._rotateFigure = function(T) {\n var j, F = T.x, L = T.y, q = T.size, W = T.rotation, X = W === void 0 ? 0 : W, de = F + q / 2, Se = L + q / 2;\n (0, T.draw)(), (j = this._element) === null || j === void 0 || j.setAttribute(\"transform\", \"rotate(\" + 180 * X / Math.PI + \",\" + de + \",\" + Se + \")\");\n }, D.prototype._basicDot = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y, W = F / 7;\n this._rotateFigure(b(b({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"clip-rule\", \"evenodd\"), j._element.setAttribute(\"d\", \"M \" + (L + F / 2) + \" \" + q + \"a \" + F / 2 + \" \" + F / 2 + \" 0 1 0 0.1 0zm 0 \" + W + \"a \" + (F / 2 - W) + \" \" + (F / 2 - W) + \" 0 1 1 -0.1 0Z\");\n } }));\n }, D.prototype._basicSquare = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y, W = F / 7;\n this._rotateFigure(b(b({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"clip-rule\", \"evenodd\"), j._element.setAttribute(\"d\", \"M \" + L + \" \" + q + \"v \" + F + \"h \" + F + \"v \" + -F + \"zM \" + (L + W) + \" \" + (q + W) + \"h \" + (F - 2 * W) + \"v \" + (F - 2 * W) + \"h \" + (2 * W - F) + \"z\");\n } }));\n }, D.prototype._basicExtraRounded = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y, W = F / 7;\n this._rotateFigure(b(b({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"path\"), j._element.setAttribute(\"clip-rule\", \"evenodd\"), j._element.setAttribute(\"d\", \"M \" + L + \" \" + (q + 2.5 * W) + \"v \" + 2 * W + \"a \" + 2.5 * W + \" \" + 2.5 * W + \", 0, 0, 0, \" + 2.5 * W + \" \" + 2.5 * W + \"h \" + 2 * W + \"a \" + 2.5 * W + \" \" + 2.5 * W + \", 0, 0, 0, \" + 2.5 * W + \" \" + 2.5 * -W + \"v \" + -2 * W + \"a \" + 2.5 * W + \" \" + 2.5 * W + \", 0, 0, 0, \" + 2.5 * -W + \" \" + 2.5 * -W + \"h \" + -2 * W + \"a \" + 2.5 * W + \" \" + 2.5 * W + \", 0, 0, 0, \" + 2.5 * -W + \" \" + 2.5 * W + \"M \" + (L + 2.5 * W) + \" \" + (q + W) + \"h \" + 2 * W + \"a \" + 1.5 * W + \" \" + 1.5 * W + \", 0, 0, 1, \" + 1.5 * W + \" \" + 1.5 * W + \"v \" + 2 * W + \"a \" + 1.5 * W + \" \" + 1.5 * W + \", 0, 0, 1, \" + 1.5 * -W + \" \" + 1.5 * W + \"h \" + -2 * W + \"a \" + 1.5 * W + \" \" + 1.5 * W + \", 0, 0, 1, \" + 1.5 * -W + \" \" + 1.5 * -W + \"v \" + -2 * W + \"a \" + 1.5 * W + \" \" + 1.5 * W + \", 0, 0, 1, \" + 1.5 * W + \" \" + 1.5 * -W);\n } }));\n }, D.prototype._drawDot = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.rotation;\n this._basicDot({ x: j, y: F, size: L, rotation: q });\n }, D.prototype._drawSquare = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.rotation;\n this._basicSquare({ x: j, y: F, size: L, rotation: q });\n }, D.prototype._drawExtraRounded = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.rotation;\n this._basicExtraRounded({ x: j, y: F, size: L, rotation: q });\n }, D;\n }();\n var w = function() {\n return (w = Object.assign || function(D) {\n for (var T, j = 1, F = arguments.length; j < F; j++)\n for (var L in T = arguments[j])\n Object.prototype.hasOwnProperty.call(T, L) && (D[L] = T[L]);\n return D;\n }).apply(this, arguments);\n };\n const _ = function() {\n function D(T) {\n var j = T.svg, F = T.type;\n this._svg = j, this._type = F;\n }\n return D.prototype.draw = function(T, j, F, L) {\n var q;\n switch (this._type) {\n case \"square\":\n q = this._drawSquare;\n break;\n case \"dot\":\n default:\n q = this._drawDot;\n }\n q.call(this, { x: T, y: j, size: F, rotation: L });\n }, D.prototype._rotateFigure = function(T) {\n var j, F = T.x, L = T.y, q = T.size, W = T.rotation, X = W === void 0 ? 0 : W, de = F + q / 2, Se = L + q / 2;\n (0, T.draw)(), (j = this._element) === null || j === void 0 || j.setAttribute(\"transform\", \"rotate(\" + 180 * X / Math.PI + \",\" + de + \",\" + Se + \")\");\n }, D.prototype._basicDot = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(w(w({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"circle\"), j._element.setAttribute(\"cx\", String(L + F / 2)), j._element.setAttribute(\"cy\", String(q + F / 2)), j._element.setAttribute(\"r\", String(F / 2));\n } }));\n }, D.prototype._basicSquare = function(T) {\n var j = this, F = T.size, L = T.x, q = T.y;\n this._rotateFigure(w(w({}, T), { draw: function() {\n j._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"rect\"), j._element.setAttribute(\"x\", String(L)), j._element.setAttribute(\"y\", String(q)), j._element.setAttribute(\"width\", String(F)), j._element.setAttribute(\"height\", String(F));\n } }));\n }, D.prototype._drawDot = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.rotation;\n this._basicDot({ x: j, y: F, size: L, rotation: q });\n }, D.prototype._drawSquare = function(T) {\n var j = T.x, F = T.y, L = T.size, q = T.rotation;\n this._basicSquare({ x: j, y: F, size: L, rotation: q });\n }, D;\n }();\n var x = [[1, 1, 1, 1, 1, 1, 1], [1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 1], [1, 0, 0, 0, 0, 0, 1], [1, 1, 1, 1, 1, 1, 1]], S = [[0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 1, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0]];\n const E = function() {\n function D(T) {\n this._element = document.createElementNS(\"http://www.w3.org/2000/svg\", \"svg\"), this._element.setAttribute(\"width\", String(T.width)), this._element.setAttribute(\"height\", String(T.height)), this._defs = document.createElementNS(\"http://www.w3.org/2000/svg\", \"defs\"), this._element.appendChild(this._defs), this._instanceId = D.instanceCount++, this._options = T;\n }\n return Object.defineProperty(D.prototype, \"width\", { get: function() {\n return this._options.width;\n }, enumerable: !1, configurable: !0 }), Object.defineProperty(D.prototype, \"height\", { get: function() {\n return this._options.height;\n }, enumerable: !1, configurable: !0 }), D.prototype.getElement = function() {\n return this._element;\n }, D.prototype.clear = function() {\n var T, j = this._element;\n this._element = j.cloneNode(!1), (T = j == null ? void 0 : j.parentNode) === null || T === void 0 || T.replaceChild(this._element, j), this._defs = document.createElementNS(\"http://www.w3.org/2000/svg\", \"defs\"), this._element.appendChild(this._defs);\n }, D.prototype.drawQR = function(T) {\n return j = this, F = void 0, q = function() {\n var W, X, de, Se, Te, Le, Ge, Ne, ie, Ce = this;\n return function(ve, Ae) {\n var _e, He, Oe, Be, qe = { label: 0, sent: function() {\n if (1 & Oe[0])\n throw Oe[1];\n return Oe[1];\n }, trys: [], ops: [] };\n return Be = { next: Ye(0), throw: Ye(1), return: Ye(2) }, typeof Symbol == \"function\" && (Be[Symbol.iterator] = function() {\n return this;\n }), Be;\n function Ye(Xe) {\n return function(Ve) {\n return function($e) {\n if (_e)\n throw new TypeError(\"Generator is already executing.\");\n for (; qe; )\n try {\n if (_e = 1, He && (Oe = 2 & $e[0] ? He.return : $e[0] ? He.throw || ((Oe = He.return) && Oe.call(He), 0) : He.next) && !(Oe = Oe.call(He, $e[1])).done)\n return Oe;\n switch (He = 0, Oe && ($e = [2 & $e[0], Oe.value]), $e[0]) {\n case 0:\n case 1:\n Oe = $e;\n break;\n case 4:\n return qe.label++, { value: $e[1], done: !1 };\n case 5:\n qe.label++, He = $e[1], $e = [0];\n continue;\n case 7:\n $e = qe.ops.pop(), qe.trys.pop();\n continue;\n default:\n if (!((Oe = (Oe = qe.trys).length > 0 && Oe[Oe.length - 1]) || $e[0] !== 6 && $e[0] !== 2)) {\n qe = 0;\n continue;\n }\n if ($e[0] === 3 && (!Oe || $e[1] > Oe[0] && $e[1] < Oe[3])) {\n qe.label = $e[1];\n break;\n }\n if ($e[0] === 6 && qe.label < Oe[1]) {\n qe.label = Oe[1], Oe = $e;\n break;\n }\n if (Oe && qe.label < Oe[2]) {\n qe.label = Oe[2], qe.ops.push($e);\n break;\n }\n Oe[2] && qe.ops.pop(), qe.trys.pop();\n continue;\n }\n $e = Ae.call(ve, qe);\n } catch (Je) {\n $e = [6, Je], He = 0;\n } finally {\n _e = Oe = 0;\n }\n if (5 & $e[0])\n throw $e[1];\n return { value: $e[0] ? $e[1] : void 0, done: !0 };\n }([Xe, Ve]);\n };\n }\n }(this, function(ve) {\n switch (ve.label) {\n case 0:\n return W = T.getModuleCount(), X = Math.min(this._options.width, this._options.height) - 2 * this._options.margin, de = Math.floor(X / W), Se = { hideXDots: 0, hideYDots: 0, width: 0, height: 0 }, this._qr = T, this._options.image ? [4, this.loadImage()] : [3, 2];\n case 1:\n if (ve.sent(), !this._image)\n return [2];\n Te = this._options, Le = Te.imageOptions, Ge = Te.qrOptions, Ne = Le.imageSize * p[Ge.errorCorrectionLevel], ie = Math.floor(Ne * W * W), Se = function(Ae) {\n var _e = Ae.originalHeight, He = Ae.originalWidth, Oe = Ae.maxHiddenDots, Be = Ae.maxHiddenAxisDots, qe = Ae.dotSize, Ye = { x: 0, y: 0 }, Xe = { x: 0, y: 0 };\n if (_e <= 0 || He <= 0 || Oe <= 0 || qe <= 0)\n return { height: 0, width: 0, hideYDots: 0, hideXDots: 0 };\n var Ve = _e / He;\n return Ye.x = Math.floor(Math.sqrt(Oe / Ve)), Ye.x <= 0 && (Ye.x = 1), Be && Be < Ye.x && (Ye.x = Be), Ye.x % 2 == 0 && Ye.x--, Xe.x = Ye.x * qe, Ye.y = 1 + 2 * Math.ceil((Ye.x * Ve - 1) / 2), Xe.y = Math.round(Xe.x * Ve), (Ye.y * Ye.x > Oe || Be && Be < Ye.y) && (Be && Be < Ye.y ? (Ye.y = Be, Ye.y % 2 == 0 && Ye.x--) : Ye.y -= 2, Xe.y = Ye.y * qe, Ye.x = 1 + 2 * Math.ceil((Ye.y / Ve - 1) / 2), Xe.x = Math.round(Xe.y / Ve)), { height: Xe.y, width: Xe.x, hideYDots: Ye.y, hideXDots: Ye.x };\n }({ originalWidth: this._image.width, originalHeight: this._image.height, maxHiddenDots: ie, maxHiddenAxisDots: W - 14, dotSize: de }), ve.label = 2;\n case 2:\n return this.clear(), this.drawBackground(), this.drawDots(function(Ae, _e) {\n var He, Oe, Be, qe, Ye, Xe;\n return !(Ce._options.imageOptions.hideBackgroundDots && Ae >= (W - Se.hideXDots) / 2 && Ae < (W + Se.hideXDots) / 2 && _e >= (W - Se.hideYDots) / 2 && _e < (W + Se.hideYDots) / 2 || !((He = x[Ae]) === null || He === void 0) && He[_e] || !((Oe = x[Ae - W + 7]) === null || Oe === void 0) && Oe[_e] || !((Be = x[Ae]) === null || Be === void 0) && Be[_e - W + 7] || !((qe = S[Ae]) === null || qe === void 0) && qe[_e] || !((Ye = S[Ae - W + 7]) === null || Ye === void 0) && Ye[_e] || !((Xe = S[Ae]) === null || Xe === void 0) && Xe[_e - W + 7]);\n }), this.drawCorners(), this._options.image && this.drawImage({ width: Se.width, height: Se.height, count: W, dotSize: de }), [2];\n }\n });\n }, new ((L = void 0) || (L = Promise))(function(W, X) {\n function de(Le) {\n try {\n Te(q.next(Le));\n } catch (Ge) {\n X(Ge);\n }\n }\n function Se(Le) {\n try {\n Te(q.throw(Le));\n } catch (Ge) {\n X(Ge);\n }\n }\n function Te(Le) {\n var Ge;\n Le.done ? W(Le.value) : (Ge = Le.value, Ge instanceof L ? Ge : new L(function(Ne) {\n Ne(Ge);\n })).then(de, Se);\n }\n Te((q = q.apply(j, F || [])).next());\n });\n var j, F, L, q;\n }, D.prototype.drawBackground = function() {\n var T, j, F = this._element, L = this._options;\n if (F) {\n var q = (T = L.backgroundOptions) === null || T === void 0 ? void 0 : T.gradient, W = (j = L.backgroundOptions) === null || j === void 0 ? void 0 : j.color;\n (q || W) && this._createColor({ options: q, color: W, additionalRotation: 0, x: 0, y: 0, height: L.height, width: L.width, name: \"background-color\" });\n }\n }, D.prototype.drawDots = function(T) {\n var j, F, L = this;\n if (!this._qr)\n throw \"QR code is not defined\";\n var q = this._options, W = this._qr.getModuleCount();\n if (W > q.width || W > q.height)\n throw \"The canvas is too small.\";\n var X = Math.min(q.width, q.height) - 2 * q.margin, de = Math.floor(X / W), Se = Math.floor((q.width - W * de) / 2), Te = Math.floor((q.height - W * de) / 2), Le = new v({ svg: this._element, type: q.dotsOptions.type });\n this._dotsClipPath = document.createElementNS(\"http://www.w3.org/2000/svg\", \"clipPath\"), this._dotsClipPath.setAttribute(\"id\", \"clip-path-dot-color-\" + this._instanceId), this._defs.appendChild(this._dotsClipPath), this._rectWidth = W * de, this._createColor({ options: (j = q.dotsOptions) === null || j === void 0 ? void 0 : j.gradient, color: q.dotsOptions.color, additionalRotation: 0, x: Se, y: Te, height: W * de, width: W * de, name: \"dot-color-\" + this._instanceId });\n for (var Ge = function(Ce) {\n for (var ve = function(_e) {\n return T && !T(Ce, _e) ? \"continue\" : !((F = Ne._qr) === null || F === void 0) && F.isDark(Ce, _e) ? (Le.draw(Se + Ce * de, Te + _e * de, de, function(He, Oe) {\n return !(Ce + He < 0 || _e + Oe < 0 || Ce + He >= W || _e + Oe >= W) && !(T && !T(Ce + He, _e + Oe)) && !!L._qr && L._qr.isDark(Ce + He, _e + Oe);\n }), void (Le._element && Ne._dotsClipPath && Ne._dotsClipPath.appendChild(Le._element))) : \"continue\";\n }, Ae = 0; Ae < W; Ae++)\n ve(Ae);\n }, Ne = this, ie = 0; ie < W; ie++)\n Ge(ie);\n }, D.prototype.drawCorners = function() {\n var T = this;\n if (!this._qr)\n throw \"QR code is not defined\";\n var j = this._element, F = this._options;\n if (!j)\n throw \"Element code is not defined\";\n var L = this._qr.getModuleCount(), q = Math.min(F.width, F.height) - 2 * F.margin, W = Math.floor(q / L), X = 7 * W, de = 3 * W, Se = Math.floor((F.width - L * W) / 2), Te = Math.floor((F.height - L * W) / 2);\n [[0, 0, 0], [1, 0, Math.PI / 2], [0, 1, -Math.PI / 2]].forEach(function(Le) {\n var Ge, Ne, ie, Ce, ve, Ae, _e, He, Oe, Be, qe, Ye, Xe = Le[0], Ve = Le[1], $e = Le[2], Je = Se + Xe * W * (L - 7), Tt = Te + Ve * W * (L - 7), ct = T._dotsClipPath, Dt = T._dotsClipPath;\n if ((!((Ge = F.cornersSquareOptions) === null || Ge === void 0) && Ge.gradient || !((Ne = F.cornersSquareOptions) === null || Ne === void 0) && Ne.color) && ((ct = document.createElementNS(\"http://www.w3.org/2000/svg\", \"clipPath\")).setAttribute(\"id\", \"clip-path-corners-square-color-\" + Xe + \"-\" + Ve + \"-\" + T._instanceId), T._defs.appendChild(ct), T._cornersSquareClipPath = T._cornersDotClipPath = Dt = ct, T._createColor({ options: (ie = F.cornersSquareOptions) === null || ie === void 0 ? void 0 : ie.gradient, color: (Ce = F.cornersSquareOptions) === null || Ce === void 0 ? void 0 : Ce.color, additionalRotation: $e, x: Je, y: Tt, height: X, width: X, name: \"corners-square-color-\" + Xe + \"-\" + Ve + \"-\" + T._instanceId })), (ve = F.cornersSquareOptions) === null || ve === void 0 ? void 0 : ve.type) {\n var mt = new C({ svg: T._element, type: F.cornersSquareOptions.type });\n mt.draw(Je, Tt, X, $e), mt._element && ct && ct.appendChild(mt._element);\n } else\n for (var et = new v({ svg: T._element, type: F.dotsOptions.type }), dt = function(Ie) {\n for (var st = function(Mt) {\n if (!(!((Ae = x[Ie]) === null || Ae === void 0) && Ae[Mt]))\n return \"continue\";\n et.draw(Je + Ie * W, Tt + Mt * W, W, function(Kt, Rt) {\n var jt;\n return !!(!((jt = x[Ie + Kt]) === null || jt === void 0) && jt[Mt + Rt]);\n }), et._element && ct && ct.appendChild(et._element);\n }, kt = 0; kt < x[Ie].length; kt++)\n st(kt);\n }, Fe = 0; Fe < x.length; Fe++)\n dt(Fe);\n if ((!((_e = F.cornersDotOptions) === null || _e === void 0) && _e.gradient || !((He = F.cornersDotOptions) === null || He === void 0) && He.color) && ((Dt = document.createElementNS(\"http://www.w3.org/2000/svg\", \"clipPath\")).setAttribute(\"id\", \"clip-path-corners-dot-color-\" + Xe + \"-\" + Ve + \"-\" + T._instanceId), T._defs.appendChild(Dt), T._cornersDotClipPath = Dt, T._createColor({ options: (Oe = F.cornersDotOptions) === null || Oe === void 0 ? void 0 : Oe.gradient, color: (Be = F.cornersDotOptions) === null || Be === void 0 ? void 0 : Be.color, additionalRotation: $e, x: Je + 2 * W, y: Tt + 2 * W, height: de, width: de, name: \"corners-dot-color-\" + Xe + \"-\" + Ve + \"-\" + T._instanceId })), (qe = F.cornersDotOptions) === null || qe === void 0 ? void 0 : qe.type) {\n var Ot = new _({ svg: T._element, type: F.cornersDotOptions.type });\n Ot.draw(Je + 2 * W, Tt + 2 * W, de, $e), Ot._element && Dt && Dt.appendChild(Ot._element);\n } else {\n et = new v({ svg: T._element, type: F.dotsOptions.type });\n var nt = function(Ie) {\n for (var st = function(Mt) {\n if (!(!((Ye = S[Ie]) === null || Ye === void 0) && Ye[Mt]))\n return \"continue\";\n et.draw(Je + Ie * W, Tt + Mt * W, W, function(Kt, Rt) {\n var jt;\n return !!(!((jt = S[Ie + Kt]) === null || jt === void 0) && jt[Mt + Rt]);\n }), et._element && Dt && Dt.appendChild(et._element);\n }, kt = 0; kt < S[Ie].length; kt++)\n st(kt);\n };\n for (Fe = 0; Fe < S.length; Fe++)\n nt(Fe);\n }\n });\n }, D.prototype.loadImage = function() {\n var T = this;\n return new Promise(function(j, F) {\n var L = T._options, q = new Image();\n if (!L.image)\n return F(\"Image is not defined\");\n typeof L.imageOptions.crossOrigin == \"string\" && (q.crossOrigin = L.imageOptions.crossOrigin), T._image = q, q.onload = function() {\n j();\n }, q.src = L.image;\n });\n }, D.prototype.drawImage = function(T) {\n var j = T.width, F = T.height, L = T.count, q = T.dotSize, W = this._options, X = Math.floor((W.width - L * q) / 2), de = Math.floor((W.height - L * q) / 2), Se = X + W.imageOptions.margin + (L * q - j) / 2, Te = de + W.imageOptions.margin + (L * q - F) / 2, Le = j - 2 * W.imageOptions.margin, Ge = F - 2 * W.imageOptions.margin, Ne = document.createElementNS(\"http://www.w3.org/2000/svg\", \"image\");\n Ne.setAttribute(\"href\", W.image || \"\"), Ne.setAttribute(\"x\", String(Se)), Ne.setAttribute(\"y\", String(Te)), Ne.setAttribute(\"width\", Le + \"px\"), Ne.setAttribute(\"height\", Ge + \"px\"), this._element.appendChild(Ne);\n }, D.prototype._createColor = function(T) {\n var j = T.options, F = T.color, L = T.additionalRotation, q = T.x, W = T.y, X = T.height, de = T.width, Se = T.name, Te = de > X ? de : X, Le = document.createElementNS(\"http://www.w3.org/2000/svg\", \"rect\");\n if (Le.setAttribute(\"x\", String(q)), Le.setAttribute(\"y\", String(W)), Le.setAttribute(\"height\", String(X)), Le.setAttribute(\"width\", String(de)), Le.setAttribute(\"clip-path\", \"url('#clip-path-\" + Se + \"')\"), j) {\n var Ge;\n if (j.type === \"radial\")\n (Ge = document.createElementNS(\"http://www.w3.org/2000/svg\", \"radialGradient\")).setAttribute(\"id\", Se), Ge.setAttribute(\"gradientUnits\", \"userSpaceOnUse\"), Ge.setAttribute(\"fx\", String(q + de / 2)), Ge.setAttribute(\"fy\", String(W + X / 2)), Ge.setAttribute(\"cx\", String(q + de / 2)), Ge.setAttribute(\"cy\", String(W + X / 2)), Ge.setAttribute(\"r\", String(Te / 2));\n else {\n var Ne = ((j.rotation || 0) + L) % (2 * Math.PI), ie = (Ne + 2 * Math.PI) % (2 * Math.PI), Ce = q + de / 2, ve = W + X / 2, Ae = q + de / 2, _e = W + X / 2;\n ie >= 0 && ie <= 0.25 * Math.PI || ie > 1.75 * Math.PI && ie <= 2 * Math.PI ? (Ce -= de / 2, ve -= X / 2 * Math.tan(Ne), Ae += de / 2, _e += X / 2 * Math.tan(Ne)) : ie > 0.25 * Math.PI && ie <= 0.75 * Math.PI ? (ve -= X / 2, Ce -= de / 2 / Math.tan(Ne), _e += X / 2, Ae += de / 2 / Math.tan(Ne)) : ie > 0.75 * Math.PI && ie <= 1.25 * Math.PI ? (Ce += de / 2, ve += X / 2 * Math.tan(Ne), Ae -= de / 2, _e -= X / 2 * Math.tan(Ne)) : ie > 1.25 * Math.PI && ie <= 1.75 * Math.PI && (ve += X / 2, Ce += de / 2 / Math.tan(Ne), _e -= X / 2, Ae -= de / 2 / Math.tan(Ne)), (Ge = document.createElementNS(\"http://www.w3.org/2000/svg\", \"linearGradient\")).setAttribute(\"id\", Se), Ge.setAttribute(\"gradientUnits\", \"userSpaceOnUse\"), Ge.setAttribute(\"x1\", String(Math.round(Ce))), Ge.setAttribute(\"y1\", String(Math.round(ve))), Ge.setAttribute(\"x2\", String(Math.round(Ae))), Ge.setAttribute(\"y2\", String(Math.round(_e)));\n }\n j.colorStops.forEach(function(He) {\n var Oe = He.offset, Be = He.color, qe = document.createElementNS(\"http://www.w3.org/2000/svg\", \"stop\");\n qe.setAttribute(\"offset\", 100 * Oe + \"%\"), qe.setAttribute(\"stop-color\", Be), Ge.appendChild(qe);\n }), Le.setAttribute(\"fill\", \"url('#\" + Se + \"')\"), this._defs.appendChild(Ge);\n } else\n F && Le.setAttribute(\"fill\", F);\n this._element.appendChild(Le);\n }, D.instanceCount = 0, D;\n }();\n for (var N = {}, P = 0; P <= 40; P++)\n N[P] = P;\n const H = { width: 300, height: 300, data: \"\", margin: 0, qrOptions: { typeNumber: N[0], mode: void 0, errorCorrectionLevel: \"Q\" }, imageOptions: { hideBackgroundDots: !0, imageSize: 0.4, crossOrigin: void 0, margin: 0 }, dotsOptions: { type: \"square\", color: \"#000\" }, backgroundOptions: { color: \"#fff\" } };\n var k = function() {\n return (k = Object.assign || function(D) {\n for (var T, j = 1, F = arguments.length; j < F; j++)\n for (var L in T = arguments[j])\n Object.prototype.hasOwnProperty.call(T, L) && (D[L] = T[L]);\n return D;\n }).apply(this, arguments);\n };\n function Q(D) {\n var T = k({}, D);\n if (!T.colorStops || !T.colorStops.length)\n throw \"Field 'colorStops' is required in gradient\";\n return T.rotation ? T.rotation = Number(T.rotation) : T.rotation = 0, T.colorStops = T.colorStops.map(function(j) {\n return k(k({}, j), { offset: Number(j.offset) });\n }), T;\n }\n function I(D) {\n var T = k({}, D);\n return T.width = Number(T.width), T.height = Number(T.height), T.margin = Number(T.margin), T.imageOptions = k(k({}, T.imageOptions), { hideBackgroundDots: !!T.imageOptions.hideBackgroundDots, imageSize: Number(T.imageOptions.imageSize), margin: Number(T.imageOptions.margin) }), T.margin > Math.min(T.width, T.height) && (T.margin = Math.min(T.width, T.height)), T.dotsOptions = k({}, T.dotsOptions), T.dotsOptions.gradient && (T.dotsOptions.gradient = Q(T.dotsOptions.gradient)), T.cornersSquareOptions && (T.cornersSquareOptions = k({}, T.cornersSquareOptions), T.cornersSquareOptions.gradient && (T.cornersSquareOptions.gradient = Q(T.cornersSquareOptions.gradient))), T.cornersDotOptions && (T.cornersDotOptions = k({}, T.cornersDotOptions), T.cornersDotOptions.gradient && (T.cornersDotOptions.gradient = Q(T.cornersDotOptions.gradient))), T.backgroundOptions && (T.backgroundOptions = k({}, T.backgroundOptions), T.backgroundOptions.gradient && (T.backgroundOptions.gradient = Q(T.backgroundOptions.gradient))), T;\n }\n var G = s(192), $ = s.n(G), z = function(D, T, j, F) {\n return new (j || (j = Promise))(function(L, q) {\n function W(Se) {\n try {\n de(F.next(Se));\n } catch (Te) {\n q(Te);\n }\n }\n function X(Se) {\n try {\n de(F.throw(Se));\n } catch (Te) {\n q(Te);\n }\n }\n function de(Se) {\n var Te;\n Se.done ? L(Se.value) : (Te = Se.value, Te instanceof j ? Te : new j(function(Le) {\n Le(Te);\n })).then(W, X);\n }\n de((F = F.apply(D, T || [])).next());\n });\n }, B = function(D, T) {\n var j, F, L, q, W = { label: 0, sent: function() {\n if (1 & L[0])\n throw L[1];\n return L[1];\n }, trys: [], ops: [] };\n return q = { next: X(0), throw: X(1), return: X(2) }, typeof Symbol == \"function\" && (q[Symbol.iterator] = function() {\n return this;\n }), q;\n function X(de) {\n return function(Se) {\n return function(Te) {\n if (j)\n throw new TypeError(\"Generator is already executing.\");\n for (; W; )\n try {\n if (j = 1, F && (L = 2 & Te[0] ? F.return : Te[0] ? F.throw || ((L = F.return) && L.call(F), 0) : F.next) && !(L = L.call(F, Te[1])).done)\n return L;\n switch (F = 0, L && (Te = [2 & Te[0], L.value]), Te[0]) {\n case 0:\n case 1:\n L = Te;\n break;\n case 4:\n return W.label++, { value: Te[1], done: !1 };\n case 5:\n W.label++, F = Te[1], Te = [0];\n continue;\n case 7:\n Te = W.ops.pop(), W.trys.pop();\n continue;\n default:\n if (!((L = (L = W.trys).length > 0 && L[L.length - 1]) || Te[0] !== 6 && Te[0] !== 2)) {\n W = 0;\n continue;\n }\n if (Te[0] === 3 && (!L || Te[1] > L[0] && Te[1] < L[3])) {\n W.label = Te[1];\n break;\n }\n if (Te[0] === 6 && W.label < L[1]) {\n W.label = L[1], L = Te;\n break;\n }\n if (L && W.label < L[2]) {\n W.label = L[2], W.ops.push(Te);\n break;\n }\n L[2] && W.ops.pop(), W.trys.pop();\n continue;\n }\n Te = T.call(D, W);\n } catch (Le) {\n Te = [6, Le], F = 0;\n } finally {\n j = L = 0;\n }\n if (5 & Te[0])\n throw Te[1];\n return { value: Te[0] ? Te[1] : void 0, done: !0 };\n }([de, Se]);\n };\n }\n };\n const O = function() {\n function D(T) {\n this._options = T ? I(d(H, T)) : H, this.update();\n }\n return D.prototype.clearContainer = function(T) {\n T && (T.innerHTML = \"\");\n }, D.prototype._getQRStylingElement = function() {\n return z(this, void 0, void 0, function() {\n var T, j;\n return B(this, function(F) {\n switch (F.label) {\n case 0:\n if (!this._qr)\n throw \"QR code is empty\";\n return this._svg && this._svgDrawingPromise ? (j = this._svg, T = this._svgDrawingPromise) : (j = new E(this._options), T = j.drawQR(this._qr)), [4, T];\n case 1:\n return F.sent(), [2, j];\n }\n });\n });\n }, D.prototype.update = function(T) {\n var j = this;\n this.clearContainer(this._container), this._options = T ? I(d(this._options, T)) : this._options, this._options.data && (this._qr = $()(this._options.qrOptions.typeNumber, this._options.qrOptions.errorCorrectionLevel), this._qr.addData(this._options.data, this._options.qrOptions.mode || function(F) {\n switch (!0) {\n case /^[0-9]*$/.test(F):\n return \"Numeric\";\n case /^[0-9A-Z $%*+\\-./:]*$/.test(F):\n return \"Alphanumeric\";\n default:\n return \"Byte\";\n }\n }(this._options.data)), this._qr.make(), this._svg = new E(this._options), this._svgDrawingPromise = this._svg.drawQR(this._qr), this._svgDrawingPromise.then(function() {\n var F, L = (F = j._svg) === null || F === void 0 ? void 0 : F._element.children[2].getAttribute(\"width\");\n if (j._svg && L) {\n var q = parseInt(L);\n j._svg._element.style.transform = \"scale(\" + j._options.width / q + \")\";\n }\n }), this.append(this._container));\n }, D.prototype.append = function(T) {\n if (T) {\n if (typeof T.appendChild != \"function\")\n throw \"Container should be a single DOM node\";\n this._svg && T.appendChild(this._svg.getElement()), this._container = T;\n }\n }, D.prototype.getRawData = function() {\n return z(this, void 0, void 0, function() {\n var T, j, F;\n return B(this, function(L) {\n switch (L.label) {\n case 0:\n if (!this._qr)\n throw \"QR code is empty\";\n return [4, this._getQRStylingElement()];\n case 1:\n return T = L.sent(), j = new XMLSerializer(), F = j.serializeToString(T.getElement()), [2, new Blob([`\\r\n` + F], { type: \"image/svg+xml\" })];\n }\n });\n });\n }, D.prototype.download = function(T) {\n return z(this, void 0, void 0, function() {\n var j, F, L, q, W;\n return B(this, function(X) {\n switch (X.label) {\n case 0:\n if (!this._qr)\n throw \"QR code is empty\";\n return j = \"png\", F = \"qr\", typeof T == \"string\" ? (j = T, console.warn(\"Extension is deprecated as argument for 'download' method, please pass object { name: '...', extension: '...' } as argument\")) : typeof T == \"object\" && T !== null && (T.name && (F = T.name), T.extension && (j = T.extension)), [4, this._getQRStylingElement()];\n case 1:\n return L = X.sent(), j.toLowerCase() === \"svg\" && (q = new XMLSerializer(), W = `\\r\n` + (W = q.serializeToString(L.getElement())), function(de, Se) {\n var Te = document.createElement(\"a\");\n Te.download = Se, Te.href = de, document.body.appendChild(Te), Te.click(), document.body.removeChild(Te);\n }(\"data:image/svg+xml;charset=utf-8,\" + encodeURIComponent(W), F + \".svg\")), [2];\n }\n });\n });\n }, D;\n }();\n } }, r = {};\n function a(i) {\n if (r[i])\n return r[i].exports;\n var o = r[i] = { exports: {} };\n return n[i](o, o.exports, a), o.exports;\n }\n return a.n = (i) => {\n var o = i && i.__esModule ? () => i.default : () => i;\n return a.d(o, { a: o }), o;\n }, a.d = (i, o) => {\n for (var s in o)\n a.o(o, s) && !a.o(i, s) && Object.defineProperty(i, s, { enumerable: !0, get: o[s] });\n }, a.o = (i, o) => Object.prototype.hasOwnProperty.call(i, o), a(245);\n })().default;\n });\n})(s9);\nvar Iae = s9.exports;\nconst Dae = /* @__PURE__ */ dp(Iae), Pae = (e) => {\n if (typeof window < \"u\") {\n const { variant: t, dataUrl: n } = e, r = t === \"large\" ? {\n width: l0.large,\n height: l0.large,\n image: \"https://www.paypalobjects.com/paypal-ui/logos/svg/paypal-mark-color.svg\"\n } : {\n width: l0.small,\n height: l0.small,\n image: void 0,\n qrOptions: {\n errorCorrectionLevel: \"L\"\n }\n };\n return new Dae({\n ...Lae,\n ...r,\n data: n\n });\n }\n return null;\n};\nconst Mae = typeof window < \"u\", Rf = \"QrCode\", Pl = new ke(Rf), Dc = ({\n variant: e = \"large\",\n dataUrl: t,\n fallbackImageUrl: n,\n className: r,\n imageAltText: a\n}) => {\n const i = !Mae || !t, o = e === \"large\", s = Ue(null), u = se(\n Pl.getComponentClassName(),\n Pl.getElementClassName(e),\n r\n ), l = se(\n r,\n Pl.getPropsValueClassName(\"fallback\", e)\n ), c = t ? Pae({ variant: e, dataUrl: t }) : null, d = o ? { minHeight: \"7.875rem\", minWidth: \"7.875rem\" } : { minHeight: \"5.375rem\", minWidth: \"5.375rem\" };\n return We(() => {\n const p = s.current;\n return c && c.append(p ?? void 0), () => {\n p && (c == null || c.clearContainer(p));\n };\n }, [c]), !t && !n ? null : i ? /* @__PURE__ */ h.jsx(\"div\", { className: l, children: /* @__PURE__ */ h.jsx(\n ur,\n {\n imageAltText: a || Rf,\n baseImage: n,\n className: Pl.getElementClassName(\"image-container\"),\n dimensions: d,\n loading: \"eager\",\n isAnimated: !1,\n maxSrcSetWidth: kae\n }\n ) }) : /* @__PURE__ */ h.jsx(\"div\", { className: u, children: /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Pl.getElementClassName(\"image-container\"),\n ref: s,\n role: \"img\",\n \"aria-label\": a || Rf\n }\n ) });\n};\nDc.displayName = Rf;\nvar Z0 = /* @__PURE__ */ ((e) => (e.incentive_eligible = \"incentive_eligible\", e.account_creation_eligible = \"account_creation_eligible\", e.account_creation_ineligible = \"account_creation_ineligible\", e))(Z0 || {});\nconst Rae = (e) => {\n var a, i, o, s, u, l;\n let t = (a = e.target) == null ? void 0 : a.selectionStart;\n const n = (i = e.target) == null ? void 0 : i.value.replace(/[^\\d]/g, \"\"), r = (n == null ? void 0 : n.length) || 0;\n return (o = e.target) != null && o.value ? (r <= 4 ? t = e.target.selectionStart + 3 : ((u = e.target) == null ? void 0 : u.selectionStart) === 5 ? t = 7 : ((l = e.target) == null ? void 0 : l.selectionStart) === 10 && (t = 11), r < 4 ? [n, t] : r < 7 ? [\n `(${n.slice(0, 3)}) ${n.slice(3)}`,\n t\n ] : [\n `(${n.slice(0, 3)}) ${n.slice(\n 3,\n 6\n )}-${n.slice(6, 10)}`,\n t\n ]) : [(s = e.target) == null ? void 0 : s.value, t];\n};\nconst lh = \"AppDownloadGroup\", vn = new ke(lh), Bae = ({ text: e }) => e ? /* @__PURE__ */ h.jsx(Gt, { as: \"p\", className: vn.getElementClassName(\"text\"), children: e }) : null, Fae = ({\n ctaMobile: e,\n analyticsCompName: t,\n buttonGroupWrapper: n\n}) => e ? /* @__PURE__ */ h.jsx(\n n,\n {\n analyticsCompName: t,\n className: vn.getElementClassName(\"ctaGroup\"),\n ...e\n }\n) : null, jae = ({\n disclosureType: e,\n analyticsCompName: t,\n disclosureWrapper: n\n}) => e ? /* @__PURE__ */ h.jsx(\n n,\n {\n ...e,\n className: vn.getElementClassName(\"disclaimer\"),\n analyticsCompName: t,\n analyticsTextSection: \"disclaimer\"\n }\n) : null, $ae = (e) => e ? /* @__PURE__ */ h.jsxs(\"div\", { className: vn.getElementClassName(\"successMsgContainer\"), children: [\n /* @__PURE__ */ h.jsx(\n Wc,\n {\n size: \"sm\",\n className: vn.getElementClassName(\"successIcon\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"p\",\n className: vn.getElementClassName(\"successMsgText\"),\n children: e\n }\n )\n] }) : null, gy = ({\n text: e = \"\",\n imageUrl: t = \"\",\n imageAltText: n = \"\",\n phoneNumberText: r = \"\",\n className: a = \"\",\n disclosureType: i,\n alignment: o = \"Start\",\n cta: s,\n ctaSms: u,\n ctaMobile: l,\n successFallbackMessage: c = \"\",\n errorFallbackMessage: d = \"\",\n invalidFallbackMessage: p = \"\",\n accountCreationEligibleFallback: g = \"\",\n accountCreationIneligibleFallback: v = \"\",\n intent: b,\n src: C,\n tsrce: w,\n variant: _ = \"QR and SMS\",\n analyticsCompName: x = lh,\n buttonGroupWrapper: S,\n disclosureWrapper: E,\n dataQrUrl: N,\n ...P\n}) => {\n const H = Ue(null), [k, Q] = ze(\"\"), [I, G] = ze(0), [$, z] = ze(\"\"), [B, O] = ze(\"\"), [D, T] = ze(!1), j = _ === \"QR and SMS\", F = j && !$, L = _ === \"QR code only\" && !s, q = o === \"Start\" || o === \"End\", W = j && !l, X = se(\n vn.getComponentClassName(),\n vn.getPropsValueClassName(\"variant\", _),\n j && !N && !t && vn.getPropsValueClassName(\"noImageVariant\", _),\n a\n ), de = se(\n vn.getElementClassName(\"row\"),\n vn.getPropsValueClassName(\"rowAlign\", o),\n W && vn.getElementClassName(\"rowNoCtaMobile\")\n ), Se = Bae({ text: e }), Te = jae({\n disclosureType: i,\n analyticsCompName: x,\n disclosureWrapper: E\n }), Le = Fae({\n ctaMobile: l,\n analyticsCompName: x,\n buttonGroupWrapper: S\n }), { csrfToken: Ge } = Ze(Vt);\n We(() => {\n H != null && H.current && (H.current.selectionStart = I, H.current.selectionEnd = I);\n }, [I]);\n const Ne = (dt, Fe) => {\n O(dt), z(Fe);\n }, ie = (dt) => {\n const [Fe, Ot] = Rae(\n dt\n );\n Q(Fe), G(Ot), B !== \"\" && O(\"\");\n }, Ce = (dt) => dt === Z0.account_creation_eligible ? g : dt === Z0.account_creation_ineligible ? v : \"\", ve = () => k.replace(/[^\\d]/g, \"\").length !== 10 ? (O(p), !1) : !0, Ae = (dt) => {\n if (!ve())\n return !1;\n dt.preventDefault(), Ne(\"\", \"\"), T(!0);\n const Fe = \"/cgp/public/api/app-download/sms\", nt = {\n phoneNumber: k.replace(/[^\\d]/g, \"\"),\n _csrf: Ge,\n intent: b || \"\",\n src: C || \"\",\n tsrce: w || \"\"\n };\n return Ic({\n method: \"POST\",\n data: nt,\n headers: {\n \"X-CSRF-Token\": Ge,\n \"X-Requested-With\": \"XMLHttpRequest\"\n },\n url: Fe,\n validateStatus(Ie) {\n return Ie >= 200 && Ie < 300 || Ie >= 400 && Ie < 500;\n }\n }).then((Ie) => {\n var st, kt, Mt, Kt, Rt;\n if (T(!1), ((st = Ie == null ? void 0 : Ie.data) == null ? void 0 : st.statusCode) === 400 || (Ie == null ? void 0 : Ie.status) === 400) {\n const jt = ((kt = Ie == null ? void 0 : Ie.data) == null ? void 0 : kt.message) || p;\n Ne(jt, \"\");\n } else if (((Mt = Ie == null ? void 0 : Ie.data) == null ? void 0 : Mt.statusCode) > 400 || (Ie == null ? void 0 : Ie.status) > 400) {\n const jt = ((Kt = Ie == null ? void 0 : Ie.data) == null ? void 0 : Kt.message) || d;\n Ne(jt, \"\");\n } else {\n const jt = ((Rt = Ie == null ? void 0 : Ie.data) == null ? void 0 : Rt.message) || c;\n Ne(\"\", jt);\n }\n }).catch((Ie) => {\n var kt, Mt;\n T(!1);\n const st = ((Mt = (kt = Ie == null ? void 0 : Ie.response) == null ? void 0 : kt.data) == null ? void 0 : Mt.message) || d;\n Ne(st, \"\");\n }), !1;\n }, _e = (dt) => {\n if (!ve())\n return !1;\n dt.preventDefault(), Ne(\"\", \"\"), T(!0);\n const Fe = \"/cgp/api/app-download/signup-incentive\", nt = {\n phoneNumber: k.replace(/[^\\d]/g, \"\"),\n _csrf: Ge,\n personalizationTouchpoints: [\n {\n code: \"growth_incentive\",\n intent: \"incentive_signup\",\n message_count: 1\n }\n ],\n intent: b || \"\",\n src: C || \"\",\n tsrce: w || \"\"\n };\n return Ic({\n method: \"POST\",\n data: nt,\n headers: {\n \"X-CSRF-Token\": Ge,\n \"X-Requested-With\": \"XMLHttpRequest\"\n },\n url: Fe,\n validateStatus(Ie) {\n return Ie >= 200 && Ie < 300 || Ie >= 400 && Ie < 500;\n }\n }).then((Ie) => {\n var st, kt, Mt, Kt, Rt, jt;\n if (T(!1), ((st = Ie == null ? void 0 : Ie.data) == null ? void 0 : st.statusCode) === 400 || (Ie == null ? void 0 : Ie.status) === 400) {\n const _t = ((kt = Ie == null ? void 0 : Ie.data) == null ? void 0 : kt.message) || p;\n Ne(_t, \"\");\n } else if (Ie.data.statusCode > 400 || Ie.status > 400) {\n const _t = ((Mt = Ie == null ? void 0 : Ie.data) == null ? void 0 : Mt.message) || d;\n Ne(_t, \"\");\n } else if (((Kt = Ie == null ? void 0 : Ie.data) == null ? void 0 : Kt.decision) === Z0.incentive_eligible) {\n const _t = Ie.data.message || c;\n Ne(\"\", _t);\n } else {\n const _t = Ce(\n ((Rt = Ie == null ? void 0 : Ie.data) == null ? void 0 : Rt.decision) || \"\"\n ), _n = ((jt = Ie == null ? void 0 : Ie.data) == null ? void 0 : jt.message) || _t || d;\n Ne(_n, \"\");\n }\n }).catch((Ie) => {\n var kt, Mt;\n T(!1);\n const st = ((Mt = (kt = Ie == null ? void 0 : Ie.response) == null ? void 0 : kt.data) == null ? void 0 : Mt.message) || d;\n Ne(st, \"\");\n }), !1;\n }, He = (dt) => {\n b === \"incentive_signup\" ? _e(dt) : Ae(dt);\n }, Oe = (dt) => {\n dt.key === \"Enter\" && He(dt);\n }, Be = () => /* @__PURE__ */ h.jsx(\"div\", { className: vn.getElementClassName(\"phoneInputWrapper\"), children: /* @__PURE__ */ h.jsx(\n zu,\n {\n ref: H,\n name: x,\n type: \"tel\",\n className: vn.getElementClassName(\"phoneInput\"),\n value: k,\n onChange: (dt) => ie(dt),\n onKeyPress: (dt) => Oe(dt),\n error: !!B,\n label: r,\n errorText: B\n }\n ) }), qe = () => /* @__PURE__ */ h.jsxs(\"div\", { className: vn.getElementClassName(\"ctaDesktopContainer\"), children: [\n F && u && /* @__PURE__ */ h.jsx(\n ua,\n {\n analyticsCompName: x,\n className: se(\n vn.getElementClassName(\"ctaSms\"),\n D && vn.getElementClassName(\"ctaSmsLoading\")\n ),\n onClick: (dt) => D ? !1 : He(dt),\n ...u,\n url: \"#!\",\n as: \"button\"\n }\n ),\n s && /* @__PURE__ */ h.jsx(\n ua,\n {\n className: vn.getElementClassName(\"cta\"),\n analyticsCompName: x,\n ...s\n }\n )\n ] }), Ye = () => N || o === \"Center\" ? /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: vn.getElementClassName(\"phoneInputRow\"), children: Be() }),\n qe()\n ] }) : /* @__PURE__ */ h.jsxs(\"div\", { className: vn.getElementClassName(\"phoneInputRow\"), children: [\n Be(),\n qe()\n ] }), Xe = () => j ? $ ? $ae($) : Ye() : null, Ve = () => /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: se(\n vn.getElementClassName(\"qrRow\"),\n vn.getPropsValueClassName(\"qrRow\", _)\n ),\n children: [\n /* @__PURE__ */ h.jsx(\n Dc,\n {\n className: vn.getElementClassName(\"imageCol\"),\n variant: \"large\",\n dataUrl: N,\n fallbackImageUrl: t,\n imageAltText: n\n }\n ),\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: se(\n vn.getElementClassName(\"contentCol\"),\n !N && !t && vn.getElementClassName(\"noImageContentCol\")\n ),\n children: [\n Xe(),\n !j && qe()\n ]\n }\n )\n ]\n }\n ), $e = () => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n Se,\n Ve(),\n Te\n ] }), Je = () => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n Se,\n Ve()\n ] }), Tt = () => /* @__PURE__ */ h.jsx(\"div\", { className: de, children: /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n vn.getElementClassName(\"col\"),\n !N && !t && vn.getElementClassName(\"noImageCol\")\n ),\n children: j ? $e() : Je()\n }\n ) }), ct = () => /* @__PURE__ */ h.jsx(\"div\", { className: de, children: /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: se(\n vn.getElementClassName(\"col\"),\n L && vn.getElementClassName(\"noCtaCol\")\n ),\n children: [\n Se,\n /* @__PURE__ */ h.jsx(\n Dc,\n {\n variant: \"large\",\n dataUrl: N,\n fallbackImageUrl: t,\n imageAltText: n,\n className: vn.getElementClassName(\"imageContainer\")\n }\n ),\n j && Xe(),\n !j && qe(),\n j && Te\n ]\n }\n ) }), Dt = () => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n de,\n vn.getElementClassName(\"rowMobile\")\n ),\n children: Le\n }\n ), mt = () => q && s ? Tt() : ct(), et = () => q ? Tt() : ct();\n return /* @__PURE__ */ h.jsxs(\"div\", { className: X, ...P, children: [\n j ? et() : mt(),\n Le && Dt()\n ] });\n};\ngy.displayName = lh;\nconst ch = ({\n isAnimated: e = !1,\n ...t\n}) => /* @__PURE__ */ h.jsx(\n gy,\n {\n buttonGroupWrapper: Ns,\n disclosureWrapper: Ci,\n imageFrameWrapper: ur,\n imageFrameProps: {\n isAnimated: e\n },\n ...t\n }\n);\nch.displayName = lh;\nconst ka = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Gt, { ...r, size: e, children: n });\n}, Hae = (e) => ((e == null ? void 0 : e.content) || []).map((n) => ({\n nodeType: ya.BLOCKS.DOCUMENT,\n content: [n],\n data: {}\n})), Vae = (e) => typeof e == \"string\" ? [e] : Hae(e), zae = (e, t, n) => {\n const { customWrapper: r = ka(\"Body\"), ...a } = n ?? {};\n return /* @__PURE__ */ h.jsx(\n an,\n {\n content: e,\n customWrapper: r,\n ...a\n },\n `multiline-line-${t}`\n );\n}, dh = ({\n content: e,\n lineProps: t\n}) => {\n const n = Vae(e);\n return /* @__PURE__ */ h.jsx(h.Fragment, { children: n.map((r, a) => zae(r, a, t)) });\n};\nconst u9 = \"HeadingText\", qae = new ke(u9), Sr = ({\n level: e = 1,\n as: t,\n size: n = \"Headline 1\",\n className: r,\n children: a,\n ...i\n}) => {\n const o = t || `h${e}`, s = qae.getPropsValueClassName(\n \"size\",\n n\n ), u = se(r, s);\n return vt.createElement(\n o,\n { className: u, ...i },\n a\n );\n};\nSr.displayName = u9;\nvar E6, w6, T6, A6, N6, O6, L6, k6, I6, D6, P6;\nfunction Gae(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSpaceXs, n = e.sysSpaceSm, r = e.sysSizeIconXs, a = e.sysSpaceTiny, i = e.sysBorderRadiusMd, o = e.sysBorderThicknessEmphasis, s = e.sysBorderThicknessNormal, u = e.sysSizeCircleXs, l = e.sysColorErrorMain, c = e.sysColorErrorContrast, d = e.sysColorWarningMain, p = e.sysColorWarningContrast, g = e.sysColorSuccessMain, v = e.sysColorSuccessContrast, b = e.sysColorInfoMain, C = e.sysColorInfoContrast, w = e.sysColorSpecialtyMain, _ = e.sysColorSpecialtyContrast, x = e.sysColorBackgroundMain, S = e.sysColorBackgroundSurface, E = e.sysColorWarningAlt, N = Fr(e), P = N.caption, H = xr(e), k = H.screenReader, Q = V(E6 || (E6 = K([`\n label: badge_base;\n `, `\n max-width: `, `;\n overflow: hidden;\n word-break: break-word;\n text-transform: none;\n -webkit-line-clamp: 2;\n display: -webkit-inline-box;\n -webkit-box-orient: vertical;\n height: auto;\n padding: `, \" \", `;\n border-radius: `, `;\n `])), P(), \"18rem\", a, n, i), I = function(W, X) {\n return V(w6 || (w6 = K([`\n color: `, `;\n background-color: `, `;\n `])), X, W);\n }, G = function(W) {\n return V(T6 || (T6 = K([`\n color: `, `;\n width: `, `;\n height: `, `;\n padding: `, `;\n background-color: `, `;\n border: `, \" solid \", `;\n border-radius: 50%;\n `])), W, u, u, s, x, o, S);\n }, $ = function() {\n var W = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"feature\", X = {\n feature: I(w, _),\n success: I(g, v),\n warning: I(d, p),\n critical: I(l, c),\n neutral: I(b, C)\n };\n return V(A6 || (A6 = K([`\n label: `, `;\n `, `;\n `])), W, X[W]);\n }, z = De(\"\".concat(n, \" + \").concat(r, \" + \").concat(a)), B = V(N6 || (N6 = K([`\n label: left_icon;\n position: relative;\n padding-left: `, `;\n `])), z), O = De(\"\".concat(a, \" + \").concat(s)), D = V(O6 || (O6 = K([`\n label: icon;\n position: absolute;\n inset: `, \" auto \", \" \", `;\n `])), O, O, n), T = V(L6 || (L6 = K([`\n label: authorized;\n `, `;\n `])), G(g)), j = V(k6 || (k6 = K([`\n label: in_progress;\n `, `;\n `])), G(E)), F = V(I6 || (I6 = K([`\n label: on_hold;\n `, `;\n `])), G(l)), L = V(D6 || (D6 = K([`\n label: favorite;\n `, `;\n `])), G(w)), q = V(P6 || (P6 = K([`\n label: numeric;\n color: `, `;\n background-color: `, `;\n padding: 0 `, `;\n height: `, `;\n min-width: `, `;\n border: `, \" solid \", `;\n border-radius: `, `;\n text-align: center;\n `])), c, l, t, u, u, o, S, De(\"\".concat(u, \"/2\")));\n return {\n base: Q,\n badgeType: $,\n leftIcon: B,\n icon: D,\n screenReader: k,\n authorized: T,\n inProgress: j,\n onHold: F,\n favorite: L,\n numeric: q\n };\n}\nvar Uae = [\"type\", \"status\", \"className\", \"leftIcon\", \"leftIconLabel\", \"children\"];\nfunction Wae() {\n var e = gn(), t = wt(function() {\n return Gae(e);\n }, [e]);\n return t;\n}\nvar Kae = function(e) {\n var t, n = e.type;\n e.status;\n var r = e.className, a = e.leftIcon, i = e.leftIconLabel, o = e.children, s = Qt(e, Uae), u = Wae(), l = [u.base, (t = u.badgeType) === null || t === void 0 ? void 0 : t.call(u, n), (a || i) && u.leftIcon], c = {\n \"aria-hidden\": !0\n }, d = (a || i) && ue(\"span\", {\n css: u.icon,\n \"data-ppui\": \"true\"\n }, ue(function() {\n return n === \"critical\" ? ue(Zi, bt({\n size: \"xs\"\n }, c, {\n \"data-ppui\": \"true\"\n })) : ue(a, bt({\n size: \"xs\"\n }, c, {\n \"data-ppui\": \"true\"\n }));\n }, {\n \"data-ppui\": \"true\"\n }), ue(\"span\", {\n css: u.screenReader,\n \"data-ppui\": \"true\"\n }, i));\n return ue(\"span\", bt({\n css: l,\n className: r,\n \"data-ppui-info\": \"badge_3.2.12\"\n }, s), d, o);\n};\nconst l9 = (e, t) => {\n const n = new Date(e), r = n.getMonth(), a = String(n.getDate()).padStart(2, \"0\"), i = n.getFullYear(), s = `${[\n \"January\",\n \"February\",\n \"March\",\n \"April\",\n \"May\",\n \"June\",\n \"July\",\n \"August\",\n \"September\",\n \"October\",\n \"November\",\n \"December\"\n ][r]} ${a}`;\n return t ? s : `${s}, ${i}`;\n}, c9 = (e = \"\") => {\n if (!e)\n return !1;\n const n = new Date(e).getTime();\n return !Number.isNaN(n);\n}, Yae = (e) => (e ? new Date(e) : /* @__PURE__ */ new Date()).toISOString().split(\"T\")[0], Xae = (e) => !!e && c9(e) && /* @__PURE__ */ new Date() > new Date(e);\nconst d9 = \"Badge\", c0 = new ke(d9), f9 = ({\n children: e,\n expirationDate: t,\n size: n = \"regular\",\n text: r,\n theme: a,\n type: i = \"default\"\n}) => {\n if (Xae(t))\n return null;\n const o = se(\n c0.getComponentClassName(),\n a && pn.getThemeClassName(a),\n {\n [c0.getPropsValueClassName(\"type\", \"new\")]: i === \"new\",\n [c0.getPropsValueClassName(\"type\", \"coming-soon\")]: i === \"comingSoon\",\n [c0.getPropsValueClassName(\"size\", \"small\")]: n === \"small\"\n }\n );\n return /* @__PURE__ */ h.jsx(Kae, { className: o, children: e ?? r });\n};\nf9.displayName = d9;\nvar M6, R6, B6, F6, j6, $6, H6, V6, z6;\nfunction Zae(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysBorderRadiusInteractive, n = e.sysBorderRadiusSm, r = e.sysColorBackgroundHighContrast, a = e.sysColorBackgroundSurface, i = e.sysColorPrimaryMainActive, o = e.sysColorPrimaryMain, s = e.sysSizeIconSm, u = e.sysSizePointerWidthLg, l = e.sysSizeTapTargetSm, c = e.sysSpaceLg, d = e.sysSpaceSm, p = e.sysSpaceXs, g = Fr(e), v = g.body, b = xr(e), C = b.elevationStyles, w = b.caretStyles, _ = b.focusStyles, x = b.screenReader, S = _.stateFocusBorderColorInner, E = _.stateFocusBorderWidthInner, N = _.stateFocusBorderWidthOuter, P = TF(e), H = P.base, k = P.sizeXs, Q = \"18rem\", I = De(\"\".concat(u, \"/2\")), G = V(M6 || (M6 = K([`\n label: tooltip_base;\n `, `;\n visibility: hidden;\n opacity: 0;\n max-width: `, `;\n word-wrap: break-word;\n padding: `, `;\n position: absolute;\n border-radius: `, `;\n background-color: `, `;\n z-index: `, `;\n\n `, `\n `, `\n `, `\n `, `\n\n\n &[aria-hidden='false'] {\n visibility: visible;\n opacity: 1;\n }\n\n &.pp_react_tooltip--position_left {\n label: position_left;\n `, `\n }\n\n &.pp_react_tooltip--position_right {\n label: position_right;\n `, `\n }\n\n &.pp_react_tooltip--position_bottom {\n label: position_bottom;\n `, `\n }\n\n &.pp_react_tooltip--tip_left {\n label: tip_position_left;\n `, `\n }\n\n &.pp_react_tooltip--tip_right {\n label: tip_position_right;\n `, `\n }\n `])), v({\n color: r\n }), Q, c, n, a, gee, C.level3, w.base(u), w.positionBottom(I), w.positionCenter(u), w.positionRight(I), w.positionLeft(I), w.positionTop(I), w.positionShiftLeft(u), w.positionShiftRight(u)), $ = V(R6 || (R6 = K([`\n label: tooltip-icon;\n `, `;\n `, `;\n width: `, `;\n height: `, `;\n padding: 0;\n display: inline-flex;\n justify-content: center;\n align-items: center;\n color: `, `;\n cursor: pointer;\n border: 0;\n background-color: transparent;\n position: relative;\n\n &:hover,\n &:active {\n color: `, `;\n outline: none;\n }\n\n &:focus:after {\n `, `;\n transform: translateX(50%) translateX(`, `) translateY(50%)\n translateY(`, `);\n }\n `])), H, k, l, l, o, i, _.focusAfter({\n radius: t,\n width: s,\n height: s,\n border: \"\".concat(E, \" solid \").concat(S),\n top: \"-\".concat(N),\n left: \"-\".concat(N)\n }), p, p), z = V(B6 || (B6 = K([`\n label: image;\n display: flex;\n img {\n max-width: `, `;\n }\n `])), De(\"\".concat(Q, \" - 2 * \").concat(c))), B = function(L) {\n return V(F6 || (F6 = K([`\n justify-content: `, `;\n padding-top: `, `;\n `])), L, d);\n }, O = function(L) {\n return V(j6 || (j6 = K([`\n justify-content: `, `;\n padding-bottom: `, `;\n `])), L, d);\n }, D = V($6 || ($6 = K([`\n label: image_top_left;\n `, `\n `])), O(\"flex-start\")), T = V(H6 || (H6 = K([`\n label: image_top_center;\n `, `\n `])), O(\"center\")), j = V(V6 || (V6 = K([`\n label: image_bottom_left;\n `, `\n `])), B(\"flex-start\")), F = V(z6 || (z6 = K([`\n label: image_bottom_center;\n `, `\n `])), B(\"center\"));\n return {\n base: G,\n icon: $,\n screenReader: x,\n image: z,\n imageTopLeft: D,\n imageTopCenter: T,\n imageBottomLeft: j,\n imageBottomCenter: F\n };\n}\nvar ir, Ml, p9 = function(e) {\n var t = e.name, n = t === void 0 ? \"Tooltip\" : t, r = e.description, a = r === void 0 ? \"tooltip\" : r, i = e.screenReaderText, o = i === void 0 ? n : i, s = e.position, u = e.verifiedIcon, l = e.windowId, c = e.className, d = e.triggerClassName, p = e.tooltipClassName, g = e.containerRef, v = e.onOpen, b = e.onClose, C = e.imageElement, w = e.imagePosition, _ = w === void 0 ? \"top-left\" : w, x = Ue(), S = Ue(), E = Ue(), N = gn(), P = wt(function() {\n return Zae(N);\n }, [N]), H = typeof window < \"u\" && \"ontouchstart\" in window || typeof navigator < \"u\" && (navigator.maxTouchPoints || navigator.msMaxTouchPoints), k = function() {\n }, Q, I, G, $, z, B, O, D, T, j, F, L, q, W, X, de, Se = ze({\n isOpen: !1,\n currentEvent: null\n }), Te = fn(Se, 2), Le = Te[0], Ge = Te[1], Ne = Le.isOpen, ie = Le.currentEvent, Ce = function(nt) {\n return (\n /* istanbul ignore next */\n nt && nt.current ? nt.current : null\n );\n }, ve = function(nt, Ie) {\n var st, kt, Mt = Ce(g), Kt = Mt ? [nt - ((st = I) === null || st === void 0 ? void 0 : st.top) - $ + Mt.scrollTop, Ie - ((kt = I) === null || kt === void 0 ? void 0 : kt.left) - G + Mt.scrollLeft] : [nt, Ie], Rt = fn(Kt, 2), jt = Rt[0], _t = Rt[1];\n ir.style.top = \"\".concat(jt, \"px\"), ir.style.left = \"\".concat(_t, \"px\"), ir.style.maxWidth = \"\".concat(j, \"px\");\n }, Ae = function() {\n var nt = l ? document.getElementById(l) : \"\";\n if (nt) {\n var Ie = nt.getBoundingClientRect();\n return {\n windowEl: nt,\n top: Ie.top,\n right: Ie.right,\n bottom: Ie.bottom,\n left: Ie.left\n };\n }\n return {\n windowEl: window,\n top: 0,\n right: window.innerWidth || document.documentElement.clientWidth,\n bottom: window.innerHeight || document.documentElement.clientHeight,\n left: 0\n };\n }, _e = function() {\n var nt = T.left - z / 2 + O / 2 + G, Ie = T.top - B - X + $ + F;\n ve(Ie, nt);\n }, He = function(nt, Ie) {\n var st = nt + $ + B + D + X * 2 - F * 2;\n ve(st, Ie);\n }, Oe = function() {\n var nt = O / 2 - de / 2, Ie = T.left - z + nt - X + G, st = T.top - B / 2 + D / 2 + $;\n ir.classList.add(\"pp_react_tooltip--position_left\"), ve(st, Ie);\n }, Be = function() {\n var nt = O / 2 + de / 2, Ie = T.left + nt + X + G, st = T.top - B / 2 + D / 2 + $;\n ir.classList.add(\"pp_react_tooltip--position_right\"), ve(st, Ie);\n }, qe = (\n /* istanbul ignore next */\n function() {\n _e();\n var nt = ir.getBoundingClientRect();\n if ((nt.top < Q.top || nt.top < 0) && (He(nt.top, nt.left), ir.classList.add(\"pp_react_tooltip--position_bottom\"), nt = ir.getBoundingClientRect()), !(nt.left < Q.left && nt.left + j > Q.right)) {\n var Ie = W + L / 2, st = nt.top + $, kt = nt.left + G;\n nt.left < Q.left && (kt = kt + z / 2 - Ie, ir.classList.add(\"pp_react_tooltip--tip_left\")), nt.left + j > Q.right && (kt = kt - z / 2 + Ie, ir.classList.add(\"pp_react_tooltip--tip_right\")), ve(st, kt);\n }\n }\n ), Ye = function(nt) {\n nt.stopPropagation(), Ge({\n isOpen: !0,\n currentEvent: nt.type\n }), v && v(nt, n);\n }, Xe = function(nt) {\n var Ie = document.activeElement;\n if (!(nt.type === \"resize\" && H && Ie && (Ie.tagName === \"INPUT\" || Ie.tagName === \"TEXTAREA\")) && (Ge({\n isOpen: !1,\n currentEvent: null\n }), b && b(n), Q && Q.windowEl)) {\n var st = Q, kt = st.windowEl;\n kt.removeEventListener(\"scroll\", Xe), kt.removeEventListener(\"mousewheel\", Xe);\n }\n }, Ve = function() {\n var nt = getComputedStyle(ir, \"style\").maxWidth, Ie = parseInt(nt.split(\"px\")[0], 10), st = Q.left, kt = Q.right, Mt = Ml.getBoundingClientRect().left, Kt = Mt - st + F, Rt = kt - Mt - F - de, jt = Ie / 2;\n if (Kt > jt && Rt > jt)\n j = Ie;\n else if (\n // If both sides are less than half the maxwidth,\n // then tooltip bubble will be position center,\n // so use smaller side x 2 as max width since it's centered\n Kt < jt && Rt < jt\n ) {\n var _t = Kt < Rt ? Kt : Rt;\n j = _t * 2;\n } else {\n var _n = Kt > Rt ? Kt : Rt;\n s ? _n = _n - X - de : _n += W + L / 2 - de, j = _n > Ie ? Ie : _n;\n }\n ir.style.maxWidth = \"\".concat(j, \"px\");\n var Rn = ir.getBoundingClientRect().width;\n z = j < Rn ? j : Rn, B = ir.offsetHeight;\n }, $e = function() {\n ir = Ce(E), Ml = Ce(S), T = Ml.getBoundingClientRect();\n var nt = Ce(g);\n I = nt && nt.getBoundingClientRect(), Q = Ae(), z = ir.offsetWidth, B = ir.offsetHeight, O = Ml.offsetWidth, D = Ml.offsetHeight, G = window.scrollX || window.pageXOffset, $ = window.scrollY || window.pageYOffset;\n var Ie = window && window.getComputedStyle(document.body).getPropertyValue(\"font-size\") || \"16px\", st = parseInt(Ie.split(\"px\")[0], 10);\n L = 1.125 * st, q = 0.75 * st, W = 1 * st, X = q + 0.25 * st;\n var kt = O;\n de = 1.5 * st, F = kt / 2 - de / 2, Ve();\n var Mt = Q, Kt = Mt.windowEl;\n switch (Kt.addEventListener(\"scroll\", Xe), Kt.addEventListener(\"mousewheel\", Xe), s) {\n case \"left\":\n Oe();\n break;\n case \"right\":\n Be();\n break;\n default:\n qe();\n }\n }, Je = function(nt) {\n var Ie = Ce(x);\n Ne && Ie && !Ie.contains(nt.target) && (nt.stopPropagation(), Xe(nt));\n }, Tt = function(nt) {\n var Ie = nt.key || nt.keyCode;\n switch (Ie) {\n case \"Tab\":\n case 27:\n case \"Escape\":\n case \"Esc\":\n case 9:\n Xe(nt);\n break;\n }\n };\n Yi(function() {\n return Ne ? ($e(), document.addEventListener(\"mousedown\", Je), document.addEventListener(\"keydown\", Tt), window.addEventListener(\"resize\", Xe)) : (document.removeEventListener(\"mousedown\", Je), document.removeEventListener(\"keydown\", Tt), window.removeEventListener(\"resize\", Xe)), function() {\n document.removeEventListener(\"mousedown\", Je), document.removeEventListener(\"keydown\", Tt), window.removeEventListener(\"resize\", Xe);\n };\n });\n var ct = function(nt) {\n ir && nt.relatedTarget !== ir && (nt.stopPropagation(), Xe(nt));\n }, Dt = \"image\" + function(Ie) {\n return Ie.replace(new RegExp(/[-_]+/, \"g\"), \" \").replace(new RegExp(/[^\\w\\s]/, \"g\"), \"\").replace(new RegExp(/\\s+(.)(\\w*)/, \"g\"), function(st, kt, Mt) {\n return \"\".concat(kt.toUpperCase() + Mt.toLowerCase());\n }).replace(new RegExp(/\\w/), function(st) {\n return st.toUpperCase();\n });\n }(_), mt = [\n P.image,\n //@ts-ignore\n P[Dt]\n ], et = ue(\"span\", {\n css: mt,\n \"data-ppui\": \"true\"\n }, C), dt = Ne && cp.createPortal(ue(\"div\", {\n ref: E,\n css: P.base,\n className: p,\n id: n,\n role: \"tooltip\",\n \"aria-hidden\": !Ne,\n onMouseLeave: ie === \"focus\" ? k : Xe,\n \"data-ppui\": \"true\"\n }, C && (_ === \"top-center\" || _ === \"top-left\") && et, a, C && (_ === \"bottom-center\" || _ === \"bottom-left\") && et), Ce(g) || document.body), Fe = u ? AF : NF, Ot = function(nt) {\n var Ie = Ce(x);\n Ie.contains(nt.target) || Xe(nt);\n };\n return ue(\"span\", {\n ref: x,\n className: c,\n \"data-ppui-info\": \"tooltip_4.3.0\"\n }, ue(vt.Fragment, null, ue(\"button\", bt({\n type: \"button\",\n ref: S,\n css: P.icon\n }, Ne ? {\n \"aria-describedby\": n\n } : {}, {\n onMouseEnter: ie === \"focus\" ? k : Ye,\n onMouseLeave: ie === \"focus\" ? k : ct,\n onTouchEnd: function(Ie) {\n Ie.preventDefault(), Ne ? (Xe(Ie), document.removeEventListener(\"touchstart\", Ot)) : (Ye(Ie), document.addEventListener(\"touchstart\", Ot));\n },\n onMouseDown: function(Ie) {\n return Ie.preventDefault();\n },\n onFocus: H ? k : Ye,\n className: d,\n \"data-ppui\": \"true\"\n }), ue(Fe, {\n size: \"sm\",\n \"aria-hidden\": \"true\",\n \"data-ppui\": \"true\"\n }), ue(\"span\", {\n css: P.screenReader,\n \"data-ppui\": \"true\"\n }, o)), dt));\n};\nconst vy = \"Number Group\", gu = new ke(vy), Qae = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Sr, { ...r, size: e, children: n });\n}, q6 = (e) => {\n switch (e) {\n case \"Headline 1\":\n return \"Headline 4\";\n case \"Headline 3\":\n return \"Headline 4\";\n case \"Headline 4\":\n return \"Headline 5\";\n case \"Headline 5\":\n return \"Headline 6\";\n default:\n return \"Headline 6\";\n }\n}, G6 = ({\n number: e,\n prefix: t = \"\",\n suffix: n = \"\",\n analyticsCompName: r = \"Number\",\n size: a = \"Headline 1\"\n}) => /* @__PURE__ */ h.jsxs(\"strong\", { className: gu.getElementClassName(\"number\"), children: [\n t && /* @__PURE__ */ h.jsx(\n Sr,\n {\n as: \"span\",\n size: q6(a),\n className: gu.getElementClassName(\"numberSuffix\"),\n children: t\n }\n ),\n /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n content: e,\n className: gu.getElementClassName(\"numberValue\"),\n customWrapper: Qae(a),\n analyticsCompName: r,\n analyticsTextSection: \"number\"\n }\n ),\n n && /* @__PURE__ */ h.jsx(\n Sr,\n {\n as: \"span\",\n size: q6(a),\n className: gu.getElementClassName(\"numberPrefix\"),\n children: n\n }\n )\n] }), h9 = ({\n size: e = \"Headline 1\",\n number1: t,\n number2: n,\n delimiter: r = \"\",\n className: a,\n analyticsCompName: i = vy\n}) => {\n const o = se(gu.getComponentClassName(), a), s = r && n;\n return /* @__PURE__ */ h.jsxs(\"div\", { className: o, children: [\n /* @__PURE__ */ h.jsx(G6, { ...t, analyticsCompName: i, size: e }),\n s && /* @__PURE__ */ h.jsx(\n Sr,\n {\n as: \"span\",\n size: \"Headline 6\",\n className: gu.getElementClassName(\"delimiter\"),\n children: r\n }\n ),\n s && /* @__PURE__ */ h.jsx(\n G6,\n {\n ...n,\n analyticsCompName: i,\n size: e\n }\n )\n ] });\n};\nh9.displayName = vy;\nconst by = \"DataItem\", Va = new ke(by), Jae = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Gt, { ...r, size: e, children: n });\n}, pd = ({\n className: e,\n numberGroup: t,\n text: n,\n textSize: r = \"Body\",\n topBorder: a = !0,\n bottomBorder: i = !1,\n tooltip: o = \"\",\n topSpacer: s = !0,\n bottomSpacer: u = !0,\n indent: l = \"Flexible\",\n alignment: c = \"Start\",\n actionGroup: d,\n analyticsCompName: p = by\n}) => {\n const g = se(\n Va.getComponentClassName(),\n Va.getElementClassName(l),\n Va.getElementClassName(c),\n {\n [Va.getElementClassName(\"borderTop\")]: a,\n [Va.getElementClassName(\"borderBottom\")]: i,\n [Va.getElementClassName(\"topSpacer\")]: s,\n [Va.getElementClassName(\"bottomSpacer\")]: u\n },\n e\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: g, children: [\n t && /* @__PURE__ */ h.jsx(\n h9,\n {\n ...t,\n analyticsCompName: p,\n className: Va.getElementClassName(\"numberGroup\")\n }\n ),\n n && /* @__PURE__ */ h.jsxs(\"div\", { className: Va.getElementClassName(\"text\"), children: [\n /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"div\",\n className: Va.getElementClassName(\"content\"),\n content: n,\n customWrapper: Jae(r ?? \"Body\"),\n analyticsCompName: p,\n analyticsTextSection: \"text\"\n }\n ),\n o && /* @__PURE__ */ h.jsx(\n p9,\n {\n description: o,\n theme: \"v3\",\n className: se(Va.getElementClassName(\"tooltipIcon\")),\n tooltipClassName: \"tooltip\",\n imagePosition: \"bottom-left\"\n }\n )\n ] }),\n d && /* @__PURE__ */ h.jsx(\n xi,\n {\n ...d,\n analyticsCompName: p\n }\n )\n ] });\n};\npd.displayName = by;\nvar xs = /* @__PURE__ */ ((e) => (e.Green = \"Green\", e.Purple = \"Purple\", e.Grey = \"Grey\", e.Gold = \"Gold\", e.Blue = \"Blue\", e.White = \"White\", e.Yellow200 = \"Yellow200\", e.Yellow300 = \"Yellow300\", e))(xs || {}), Q0 = /* @__PURE__ */ ((e) => (e.Checkmark = \"Checkmark\", e.Dash = \"Dash\", e))(Q0 || {});\nconst eie = \"Checkmark\", U6 = new ke(eie), m9 = ({ color: e = \"Gold\", ariaLabel: t, fontSize: n = \"Body\" }) => {\n const r = se(\n U6.getComponentClassName(),\n e,\n U6.getPropsValueClassName(\"size\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n width: \"24\",\n height: \"24\",\n viewBox: \"0 0 24 24\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n className: r,\n \"aria-label\": t,\n children: [\n /* @__PURE__ */ h.jsx(\"circle\", { cx: \"12\", cy: \"12\", r: \"12\", fill: \"#EDEDED\" }),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M16.6551 8.51722C17.0724 8.878 17.1174 9.50779 16.7556 9.92389L11.5533 15.907C11.3634 16.1255 11.0877 16.251 10.7978 16.251C10.5078 16.251 10.2321 16.1255 10.0422 15.907L7.24446 12.6892C6.88267 12.2731 6.92765 11.6433 7.34493 11.2825C7.76222 10.9218 8.39378 10.9666 8.75557 11.3827L10.7978 13.7316L15.2445 8.61739C15.6063 8.20129 16.2378 8.15644 16.6551 8.51722Z\",\n fill: \"#515354\"\n }\n )\n ]\n }\n );\n}, tie = ({ ariaLabel: e }) => /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"21\",\n height: \"2\",\n viewBox: \"0 0 21 2\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n className: \"dash\",\n \"aria-label\": e,\n children: /* @__PURE__ */ h.jsx(\"path\", { d: \"M2 2L18.0578 1.99976\", strokeWidth: \"21\", strokeLinecap: \"round\" })\n }\n), nie = (e, t) => t ? {\n ...e,\n content: [\n {\n ...e.content[0],\n content: [...e.content[0].content.slice(0, t)]\n }\n ]\n} : e;\nconst g9 = \"FeatureList\", d0 = new ke(g9), rie = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Gt, { ...r, size: e, children: n });\n}, aie = (e) => vt.Children.toArray(e).filter((r) => typeof r == \"string\").join(\"\"), iie = ({ className: e = \"\", children: t }) => /* @__PURE__ */ h.jsx(\"ul\", { className: e, children: t }), oie = ({\n styles: e = {},\n content: t,\n analyticsCompName: n,\n checkmarkColor: r,\n fontSize: a = \"Body\"\n}) => /* @__PURE__ */ h.jsxs(\"li\", { className: e == null ? void 0 : e.listItem, children: [\n /* @__PURE__ */ h.jsx(\"span\", { className: e == null ? void 0 : e.bulletWrapper, \"aria-hidden\": !0, children: /* @__PURE__ */ h.jsx(\n m9,\n {\n color: r,\n fontSize: a,\n ariaLabel: \"checkmark-icon\"\n }\n ) }),\n /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"p\",\n customWrapper: rie(a),\n className: e == null ? void 0 : e.text,\n content: t,\n analyticsCompName: n,\n analyticsTextSection: \"listItemParagraph\"\n }\n )\n] }), Ls = ({\n list: e,\n checkmarkColor: t,\n className: n = \"\",\n analyticsCompName: r,\n maxItems: a,\n fontSize: i\n}) => {\n const { theme: o } = Ze(Vt), s = se(d0.getComponentClassName(), n), u = o === \"quantumLeap\" ? xs.Blue : xs.Gold, l = {\n ul: (d, p) => /* @__PURE__ */ h.jsx(iie, { className: s, children: p }),\n li: (d, p, g) => /* @__PURE__ */ h.jsx(\n oie,\n {\n styles: {\n listItem: d0.getElementClassName(\"item\"),\n bulletWrapper: d0.getElementClassName(\"item-bullet\"),\n text: d0.getElementClassName(\"item-text\")\n },\n content: aie(p),\n analyticsCompName: r,\n checkmarkColor: t ?? u,\n fontSize: i\n },\n `feature-${g + 1}`\n )\n }, c = nie(e, a);\n return /* @__PURE__ */ h.jsx(an, { content: c, htmlOverrides: l });\n};\nLs.displayName = g9;\nvar yy = {};\n(function(e) {\n var t = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof pt < \"u\" ? pt : typeof self < \"u\" ? self : {}, n = {}, r = {};\n Object.defineProperty(r, \"__esModule\", { value: !0 }), r.BLOCKS = void 0;\n var a;\n (function(N) {\n N.DOCUMENT = \"document\", N.PARAGRAPH = \"paragraph\", N.HEADING_1 = \"heading-1\", N.HEADING_2 = \"heading-2\", N.HEADING_3 = \"heading-3\", N.HEADING_4 = \"heading-4\", N.HEADING_5 = \"heading-5\", N.HEADING_6 = \"heading-6\", N.OL_LIST = \"ordered-list\", N.UL_LIST = \"unordered-list\", N.LIST_ITEM = \"list-item\", N.HR = \"hr\", N.QUOTE = \"blockquote\", N.EMBEDDED_ENTRY = \"embedded-entry-block\", N.EMBEDDED_ASSET = \"embedded-asset-block\", N.EMBEDDED_RESOURCE = \"embedded-resource-block\", N.TABLE = \"table\", N.TABLE_ROW = \"table-row\", N.TABLE_CELL = \"table-cell\", N.TABLE_HEADER_CELL = \"table-header-cell\";\n })(a || (r.BLOCKS = a = {}));\n var i = {};\n Object.defineProperty(i, \"__esModule\", { value: !0 }), i.INLINES = void 0;\n var o;\n (function(N) {\n N.HYPERLINK = \"hyperlink\", N.ENTRY_HYPERLINK = \"entry-hyperlink\", N.ASSET_HYPERLINK = \"asset-hyperlink\", N.RESOURCE_HYPERLINK = \"resource-hyperlink\", N.EMBEDDED_ENTRY = \"embedded-entry-inline\", N.EMBEDDED_RESOURCE = \"embedded-resource-inline\";\n })(o || (i.INLINES = o = {}));\n var s = {};\n Object.defineProperty(s, \"__esModule\", { value: !0 }), s.MARKS = void 0;\n var u;\n (function(N) {\n N.BOLD = \"bold\", N.ITALIC = \"italic\", N.UNDERLINE = \"underline\", N.CODE = \"code\", N.SUPERSCRIPT = \"superscript\", N.SUBSCRIPT = \"subscript\", N.STRIKETHROUGH = \"strikethrough\";\n })(u || (s.MARKS = u = {}));\n var l = {};\n (function(N) {\n var P = t && t.__spreadArray || function(G, $, z) {\n if (z || arguments.length === 2)\n for (var B = 0, O = $.length, D; B < O; B++)\n (D || !(B in $)) && (D || (D = Array.prototype.slice.call($, 0, B)), D[B] = $[B]);\n return G.concat(D || Array.prototype.slice.call($));\n }, H;\n Object.defineProperty(N, \"__esModule\", { value: !0 }), N.V1_MARKS = N.V1_NODE_TYPES = N.TEXT_CONTAINERS = N.HEADINGS = N.CONTAINERS = N.VOID_BLOCKS = N.TABLE_BLOCKS = N.LIST_ITEM_BLOCKS = N.TOP_LEVEL_BLOCKS = void 0;\n var k = r, Q = i, I = s;\n N.TOP_LEVEL_BLOCKS = [\n k.BLOCKS.PARAGRAPH,\n k.BLOCKS.HEADING_1,\n k.BLOCKS.HEADING_2,\n k.BLOCKS.HEADING_3,\n k.BLOCKS.HEADING_4,\n k.BLOCKS.HEADING_5,\n k.BLOCKS.HEADING_6,\n k.BLOCKS.OL_LIST,\n k.BLOCKS.UL_LIST,\n k.BLOCKS.HR,\n k.BLOCKS.QUOTE,\n k.BLOCKS.EMBEDDED_ENTRY,\n k.BLOCKS.EMBEDDED_ASSET,\n k.BLOCKS.EMBEDDED_RESOURCE,\n k.BLOCKS.TABLE\n ], N.LIST_ITEM_BLOCKS = [\n k.BLOCKS.PARAGRAPH,\n k.BLOCKS.HEADING_1,\n k.BLOCKS.HEADING_2,\n k.BLOCKS.HEADING_3,\n k.BLOCKS.HEADING_4,\n k.BLOCKS.HEADING_5,\n k.BLOCKS.HEADING_6,\n k.BLOCKS.OL_LIST,\n k.BLOCKS.UL_LIST,\n k.BLOCKS.HR,\n k.BLOCKS.QUOTE,\n k.BLOCKS.EMBEDDED_ENTRY,\n k.BLOCKS.EMBEDDED_ASSET,\n k.BLOCKS.EMBEDDED_RESOURCE\n ], N.TABLE_BLOCKS = [\n k.BLOCKS.TABLE,\n k.BLOCKS.TABLE_ROW,\n k.BLOCKS.TABLE_CELL,\n k.BLOCKS.TABLE_HEADER_CELL\n ], N.VOID_BLOCKS = [\n k.BLOCKS.HR,\n k.BLOCKS.EMBEDDED_ENTRY,\n k.BLOCKS.EMBEDDED_ASSET,\n k.BLOCKS.EMBEDDED_RESOURCE\n ], N.CONTAINERS = (H = {}, H[k.BLOCKS.OL_LIST] = [k.BLOCKS.LIST_ITEM], H[k.BLOCKS.UL_LIST] = [k.BLOCKS.LIST_ITEM], H[k.BLOCKS.LIST_ITEM] = N.LIST_ITEM_BLOCKS, H[k.BLOCKS.QUOTE] = [k.BLOCKS.PARAGRAPH], H[k.BLOCKS.TABLE] = [k.BLOCKS.TABLE_ROW], H[k.BLOCKS.TABLE_ROW] = [k.BLOCKS.TABLE_CELL, k.BLOCKS.TABLE_HEADER_CELL], H[k.BLOCKS.TABLE_CELL] = [k.BLOCKS.PARAGRAPH], H[k.BLOCKS.TABLE_HEADER_CELL] = [k.BLOCKS.PARAGRAPH], H), N.HEADINGS = [\n k.BLOCKS.HEADING_1,\n k.BLOCKS.HEADING_2,\n k.BLOCKS.HEADING_3,\n k.BLOCKS.HEADING_4,\n k.BLOCKS.HEADING_5,\n k.BLOCKS.HEADING_6\n ], N.TEXT_CONTAINERS = P([k.BLOCKS.PARAGRAPH], N.HEADINGS, !0), N.V1_NODE_TYPES = [\n k.BLOCKS.DOCUMENT,\n k.BLOCKS.PARAGRAPH,\n k.BLOCKS.HEADING_1,\n k.BLOCKS.HEADING_2,\n k.BLOCKS.HEADING_3,\n k.BLOCKS.HEADING_4,\n k.BLOCKS.HEADING_5,\n k.BLOCKS.HEADING_6,\n k.BLOCKS.OL_LIST,\n k.BLOCKS.UL_LIST,\n k.BLOCKS.LIST_ITEM,\n k.BLOCKS.HR,\n k.BLOCKS.QUOTE,\n k.BLOCKS.EMBEDDED_ENTRY,\n k.BLOCKS.EMBEDDED_ASSET,\n Q.INLINES.HYPERLINK,\n Q.INLINES.ENTRY_HYPERLINK,\n Q.INLINES.ASSET_HYPERLINK,\n Q.INLINES.EMBEDDED_ENTRY,\n \"text\"\n ], N.V1_MARKS = [I.MARKS.BOLD, I.MARKS.CODE, I.MARKS.ITALIC, I.MARKS.UNDERLINE];\n })(l);\n var c = {};\n Object.defineProperty(c, \"__esModule\", { value: !0 });\n var d = {};\n Object.defineProperty(d, \"__esModule\", { value: !0 });\n var p = {};\n Object.defineProperty(p, \"__esModule\", { value: !0 }), p.EMPTY_DOCUMENT = void 0;\n var g = r;\n p.EMPTY_DOCUMENT = {\n nodeType: g.BLOCKS.DOCUMENT,\n data: {},\n content: [\n {\n nodeType: g.BLOCKS.PARAGRAPH,\n data: {},\n content: [\n {\n nodeType: \"text\",\n value: \"\",\n marks: [],\n data: {}\n }\n ]\n }\n ]\n };\n var v = {};\n Object.defineProperty(v, \"__esModule\", { value: !0 }), v.isText = v.isBlock = v.isInline = void 0;\n var b = r, C = i;\n function w(N, P) {\n for (var H = 0, k = Object.keys(N); H < k.length; H++) {\n var Q = k[H];\n if (P === N[Q])\n return !0;\n }\n return !1;\n }\n function _(N) {\n return w(C.INLINES, N.nodeType);\n }\n v.isInline = _;\n function x(N) {\n return w(b.BLOCKS, N.nodeType);\n }\n v.isBlock = x;\n function S(N) {\n return N.nodeType === \"text\";\n }\n v.isText = S, function(N) {\n var P = t && t.__createBinding || (Object.create ? function(O, D, T, j) {\n j === void 0 && (j = T);\n var F = Object.getOwnPropertyDescriptor(D, T);\n (!F || (\"get\" in F ? !D.__esModule : F.writable || F.configurable)) && (F = { enumerable: !0, get: function() {\n return D[T];\n } }), Object.defineProperty(O, j, F);\n } : function(O, D, T, j) {\n j === void 0 && (j = T), O[j] = D[T];\n }), H = t && t.__setModuleDefault || (Object.create ? function(O, D) {\n Object.defineProperty(O, \"default\", { enumerable: !0, value: D });\n } : function(O, D) {\n O.default = D;\n }), k = t && t.__exportStar || function(O, D) {\n for (var T in O)\n T !== \"default\" && !Object.prototype.hasOwnProperty.call(D, T) && P(D, O, T);\n }, Q = t && t.__importStar || function(O) {\n if (O && O.__esModule)\n return O;\n var D = {};\n if (O != null)\n for (var T in O)\n T !== \"default\" && Object.prototype.hasOwnProperty.call(O, T) && P(D, O, T);\n return H(D, O), D;\n };\n Object.defineProperty(N, \"__esModule\", { value: !0 }), N.helpers = N.EMPTY_DOCUMENT = N.MARKS = N.INLINES = N.BLOCKS = void 0;\n var I = r;\n Object.defineProperty(N, \"BLOCKS\", { enumerable: !0, get: function() {\n return I.BLOCKS;\n } });\n var G = i;\n Object.defineProperty(N, \"INLINES\", { enumerable: !0, get: function() {\n return G.INLINES;\n } });\n var $ = s;\n Object.defineProperty(N, \"MARKS\", { enumerable: !0, get: function() {\n return $.MARKS;\n } }), k(l, N), k(c, N), k(d, N);\n var z = p;\n Object.defineProperty(N, \"EMPTY_DOCUMENT\", { enumerable: !0, get: function() {\n return z.EMPTY_DOCUMENT;\n } });\n var B = Q(v);\n N.helpers = B;\n }(n);\n function E(N, P) {\n return P === void 0 && (P = \" \"), !N || !N.content || !Array.isArray(N.content) ? \"\" : N.content.reduce(function(H, k, Q) {\n var I;\n if (n.helpers.isText(k))\n I = k.value;\n else if ((n.helpers.isBlock(k) || n.helpers.isInline(k)) && (I = E(k, P), !I.length))\n return H;\n var G = N.content[Q + 1], $ = G && n.helpers.isBlock(G), z = $ ? P : \"\";\n return H + I + z;\n }, \"\");\n }\n e.documentToPlainTextString = E;\n})(yy);\nconst ks = (e) => e ? typeof e == \"string\" ? !!e : !!yy.documentToPlainTextString(e) : !1, W6 = {\n CO: {\n countryName: \"Colombia\",\n currencyName: \"Colombian Peso\",\n currencyCode: \"COP\",\n currencySymbol: \"COP\"\n },\n CN: {\n countryName: \"China\",\n currencyName: \"Chinese Yuan\",\n currencyCode: \"CNY\",\n currencySymbol: \"CN¥\"\n },\n ES: {\n countryName: \"Spain\",\n currencyName: \"Spanish Peseta\",\n currencyCode: \"ESP\",\n currencySymbol: \"ESP\"\n },\n KE: {\n countryName: \"Kenya\",\n currencyName: \"Kenyan Shilling\",\n currencyCode: \"KES\",\n currencySymbol: \"KES\"\n },\n DO: {\n countryName: \"Dominican Republic\",\n currencyName: \"Dominican Peso\",\n currencyCode: \"DOP\",\n currencySymbol: \"DOP\"\n },\n VN: {\n countryName: \"Vietnam\",\n currencyName: \"Vietnamese Dong\",\n currencyCode: \"VND\",\n currencySymbol: \"₫\"\n },\n ID: {\n countryName: \"Indonesia\",\n currencyName: \"Indonesian Rupiah\",\n currencyCode: \"IDR\",\n currencySymbol: \"IDR\"\n },\n TH: {\n countryName: \"Thailand\",\n currencyName: \"Thai Baht\",\n currencyCode: \"THB\",\n currencySymbol: \"THB\"\n },\n IT: {\n countryName: \"Italy\",\n currencyName: \"Italian Lira\",\n currencyCode: \"ITL\",\n currencySymbol: \"ITL\"\n },\n FR: {\n countryName: \"France\",\n currencyName: \"Euro\",\n currencyCode: \"EUR\",\n currencySymbol: \"€\"\n },\n DE: {\n countryName: \"Germany\",\n currencyName: \"Euro\",\n currencyCode: \"EUR\",\n currencySymbol: \"€\"\n },\n EC: {\n countryName: \"Ecuador\",\n currencyName: \"Ecuadorian Sucre\",\n currencyCode: \"ECS\",\n currencySymbol: \"ECS\"\n },\n GB: {\n countryName: \"United Kingdom\",\n currencyName: \"British Pound\",\n currencyCode: \"GBP\",\n currencySymbol: \"£\"\n },\n CA: {\n countryName: \"Canada\",\n currencyName: \"Canadian Dollar\",\n currencyCode: \"CAD\",\n currencySymbol: \"CA$\"\n },\n AU: {\n countryName: \"Australia\",\n currencyName: \"Australian Dollar\",\n currencyCode: \"AUD\",\n currencySymbol: \"A$\"\n },\n US: {\n countryName: \"United States\",\n currencyName: \"US Dollar\",\n currencyCode: \"USD\",\n currencySymbol: \"$\"\n }\n}, sie = {\n mask: Number,\n thousandsSeparator: \",\",\n radix: \".\",\n scale: 2,\n padFractionalZeros: !0\n}, bg = 2, uie = async (e, t, n) => {\n const r = +e;\n let a;\n return n === \"GBP\" ? a = r * bg : a = r / bg, {\n destCurrencyValue: a.toString(),\n exchangeRate: bg\n };\n}, W1 = (e) => e ? e.toUpperCase() : \"USD\", K6 = (e = \"0\") => (+e).toFixed(2), lie = ({\n currencyCodeSender: e,\n currencyValueSender: t,\n currencyCodeReceiver: n,\n currencyValueReceiver: r\n}) => {\n const a = W1(e), i = K6(t), o = W1(n), s = K6(r);\n return `${i} ${a} = ${s} ${o}`;\n}, Y6 = (e) => W6[e] || W6.US, v9 = \"ConversionRateDisplay\", cie = new ke(v9), b9 = ({\n currencyCodeSender: e,\n currencyValueSender: t = \"0\",\n currencyCodeReceiver: n,\n currencyValueReceiver: r = \"0\",\n className: a = \"\"\n}) => {\n const i = se(\n cie.getComponentClassName(),\n a\n ), o = lie({\n currencyCodeSender: e,\n currencyValueSender: t,\n currencyCodeReceiver: n,\n currencyValueReceiver: r\n });\n return /* @__PURE__ */ h.jsx(Gt, { size: \"Body Bold\", className: i, children: /* @__PURE__ */ h.jsx(\"span\", { dir: \"ltr\", children: o }) });\n};\nb9.displayName = v9;\nfunction Bf(e) {\n \"@babel/helpers - typeof\";\n return Bf = typeof Symbol == \"function\" && typeof Symbol.iterator == \"symbol\" ? function(t) {\n return typeof t;\n } : function(t) {\n return t && typeof Symbol == \"function\" && t.constructor === Symbol && t !== Symbol.prototype ? \"symbol\" : typeof t;\n }, Bf(e);\n}\nfunction Ir(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction X6(e, t) {\n for (var n = 0; n < t.length; n++) {\n var r = t[n];\n r.enumerable = r.enumerable || !1, r.configurable = !0, \"value\" in r && (r.writable = !0), Object.defineProperty(e, r.key, r);\n }\n}\nfunction Dr(e, t, n) {\n return t && X6(e.prototype, t), n && X6(e, n), Object.defineProperty(e, \"prototype\", {\n writable: !1\n }), e;\n}\nfunction die(e, t, n) {\n return t in e ? Object.defineProperty(e, t, {\n value: n,\n enumerable: !0,\n configurable: !0,\n writable: !0\n }) : e[t] = n, e;\n}\nfunction Is(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function\");\n e.prototype = Object.create(t && t.prototype, {\n constructor: {\n value: e,\n writable: !0,\n configurable: !0\n }\n }), Object.defineProperty(e, \"prototype\", {\n writable: !1\n }), t && K1(e, t);\n}\nfunction hn(e) {\n return hn = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function(n) {\n return n.__proto__ || Object.getPrototypeOf(n);\n }, hn(e);\n}\nfunction K1(e, t) {\n return K1 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(r, a) {\n return r.__proto__ = a, r;\n }, K1(e, t);\n}\nfunction fie() {\n if (typeof Reflect > \"u\" || !Reflect.construct || Reflect.construct.sham)\n return !1;\n if (typeof Proxy == \"function\")\n return !0;\n try {\n return Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {\n })), !0;\n } catch {\n return !1;\n }\n}\nfunction pie(e, t) {\n if (e == null)\n return {};\n var n = {}, r = Object.keys(e), a, i;\n for (i = 0; i < r.length; i++)\n a = r[i], !(t.indexOf(a) >= 0) && (n[a] = e[a]);\n return n;\n}\nfunction fh(e, t) {\n if (e == null)\n return {};\n var n = pie(e, t), r, a;\n if (Object.getOwnPropertySymbols) {\n var i = Object.getOwnPropertySymbols(e);\n for (a = 0; a < i.length; a++)\n r = i[a], !(t.indexOf(r) >= 0) && Object.prototype.propertyIsEnumerable.call(e, r) && (n[r] = e[r]);\n }\n return n;\n}\nfunction hie(e) {\n if (e === void 0)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return e;\n}\nfunction mie(e, t) {\n if (t && (typeof t == \"object\" || typeof t == \"function\"))\n return t;\n if (t !== void 0)\n throw new TypeError(\"Derived constructors may only return object or undefined\");\n return hie(e);\n}\nfunction Ds(e) {\n var t = fie();\n return function() {\n var r = hn(e), a;\n if (t) {\n var i = hn(this).constructor;\n a = Reflect.construct(r, arguments, i);\n } else\n a = r.apply(this, arguments);\n return mie(this, a);\n };\n}\nfunction y9(e, t) {\n for (; !Object.prototype.hasOwnProperty.call(e, t) && (e = hn(e), e !== null); )\n ;\n return e;\n}\nfunction Ln() {\n return typeof Reflect < \"u\" && Reflect.get ? Ln = Reflect.get.bind() : Ln = function(t, n, r) {\n var a = y9(t, n);\n if (a) {\n var i = Object.getOwnPropertyDescriptor(a, n);\n return i.get ? i.get.call(arguments.length < 3 ? t : r) : i.value;\n }\n }, Ln.apply(this, arguments);\n}\nfunction J0(e, t, n, r) {\n return typeof Reflect < \"u\" && Reflect.set ? J0 = Reflect.set : J0 = function(i, o, s, u) {\n var l = y9(i, o), c;\n if (l) {\n if (c = Object.getOwnPropertyDescriptor(l, o), c.set)\n return c.set.call(u, s), !0;\n if (!c.writable)\n return !1;\n }\n if (c = Object.getOwnPropertyDescriptor(u, o), c) {\n if (!c.writable)\n return !1;\n c.value = s, Object.defineProperty(u, o, c);\n } else\n die(u, o, s);\n return !0;\n }, J0(e, t, n, r);\n}\nfunction ku(e, t, n, r, a) {\n var i = J0(e, t, n, r || e);\n if (!i && a)\n throw new Error(\"failed to set property\");\n return n;\n}\nfunction Hi(e, t) {\n return bie(e) || Cie(e, t) || C9(e, t) || Sie();\n}\nfunction gie(e) {\n return vie(e) || yie(e) || C9(e) || xie();\n}\nfunction vie(e) {\n if (Array.isArray(e))\n return Y1(e);\n}\nfunction bie(e) {\n if (Array.isArray(e))\n return e;\n}\nfunction yie(e) {\n if (typeof Symbol < \"u\" && e[Symbol.iterator] != null || e[\"@@iterator\"] != null)\n return Array.from(e);\n}\nfunction Cie(e, t) {\n var n = e == null ? null : typeof Symbol < \"u\" && e[Symbol.iterator] || e[\"@@iterator\"];\n if (n != null) {\n var r = [], a = !0, i = !1, o, s;\n try {\n for (n = n.call(e); !(a = (o = n.next()).done) && (r.push(o.value), !(t && r.length === t)); a = !0)\n ;\n } catch (u) {\n i = !0, s = u;\n } finally {\n try {\n !a && n.return != null && n.return();\n } finally {\n if (i)\n throw s;\n }\n }\n return r;\n }\n}\nfunction C9(e, t) {\n if (e) {\n if (typeof e == \"string\")\n return Y1(e, t);\n var n = Object.prototype.toString.call(e).slice(8, -1);\n if (n === \"Object\" && e.constructor && (n = e.constructor.name), n === \"Map\" || n === \"Set\")\n return Array.from(e);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))\n return Y1(e, t);\n }\n}\nfunction Y1(e, t) {\n (t == null || t > e.length) && (t = e.length);\n for (var n = 0, r = new Array(t); n < t; n++)\n r[n] = e[n];\n return r;\n}\nfunction xie() {\n throw new TypeError(`Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);\n}\nfunction Sie() {\n throw new TypeError(`Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);\n}\nvar qn = /* @__PURE__ */ function() {\n function e(t) {\n Ir(this, e), Object.assign(this, {\n inserted: \"\",\n rawInserted: \"\",\n skip: !1,\n tailShift: 0\n }, t);\n }\n return Dr(e, [{\n key: \"aggregate\",\n value: function(n) {\n return this.rawInserted += n.rawInserted, this.skip = this.skip || n.skip, this.inserted += n.inserted, this.tailShift += n.tailShift, this;\n }\n /** Total offset considering all changes */\n }, {\n key: \"offset\",\n get: function() {\n return this.tailShift + this.inserted.length;\n }\n }]), e;\n}();\nfunction Iu(e) {\n return typeof e == \"string\" || e instanceof String;\n}\nvar zt = {\n NONE: \"NONE\",\n LEFT: \"LEFT\",\n FORCE_LEFT: \"FORCE_LEFT\",\n RIGHT: \"RIGHT\",\n FORCE_RIGHT: \"FORCE_RIGHT\"\n};\nfunction _ie(e) {\n switch (e) {\n case zt.LEFT:\n return zt.FORCE_LEFT;\n case zt.RIGHT:\n return zt.FORCE_RIGHT;\n default:\n return e;\n }\n}\nfunction yg(e) {\n return e.replace(/([.*+?^=!:${}()|[\\]\\/\\\\])/g, \"\\\\$1\");\n}\nfunction Cy(e) {\n return Array.isArray(e) ? e : [e, new qn()];\n}\nfunction X1(e, t) {\n if (t === e)\n return !0;\n var n = Array.isArray(t), r = Array.isArray(e), a;\n if (n && r) {\n if (t.length != e.length)\n return !1;\n for (a = 0; a < t.length; a++)\n if (!X1(t[a], e[a]))\n return !1;\n return !0;\n }\n if (n != r)\n return !1;\n if (t && e && Bf(t) === \"object\" && Bf(e) === \"object\") {\n var i = t instanceof Date, o = e instanceof Date;\n if (i && o)\n return t.getTime() == e.getTime();\n if (i != o)\n return !1;\n var s = t instanceof RegExp, u = e instanceof RegExp;\n if (s && u)\n return t.toString() == e.toString();\n if (s != u)\n return !1;\n var l = Object.keys(t);\n for (a = 0; a < l.length; a++)\n if (!Object.prototype.hasOwnProperty.call(e, l[a]))\n return !1;\n for (a = 0; a < l.length; a++)\n if (!X1(e[l[a]], t[l[a]]))\n return !1;\n return !0;\n } else if (t && e && typeof t == \"function\" && typeof e == \"function\")\n return t.toString() === e.toString();\n return !1;\n}\nvar Eie = /* @__PURE__ */ function() {\n function e(t, n, r, a) {\n for (Ir(this, e), this.value = t, this.cursorPos = n, this.oldValue = r, this.oldSelection = a; this.value.slice(0, this.startChangePos) !== this.oldValue.slice(0, this.startChangePos); )\n --this.oldSelection.start;\n }\n return Dr(e, [{\n key: \"startChangePos\",\n get: function() {\n return Math.min(this.cursorPos, this.oldSelection.start);\n }\n /**\n Inserted symbols count\n @readonly\n */\n }, {\n key: \"insertedCount\",\n get: function() {\n return this.cursorPos - this.startChangePos;\n }\n /**\n Inserted symbols\n @readonly\n */\n }, {\n key: \"inserted\",\n get: function() {\n return this.value.substr(this.startChangePos, this.insertedCount);\n }\n /**\n Removed symbols count\n @readonly\n */\n }, {\n key: \"removedCount\",\n get: function() {\n return Math.max(this.oldSelection.end - this.startChangePos || // for Delete\n this.oldValue.length - this.value.length, 0);\n }\n /**\n Removed symbols\n @readonly\n */\n }, {\n key: \"removed\",\n get: function() {\n return this.oldValue.substr(this.startChangePos, this.removedCount);\n }\n /**\n Unchanged head symbols\n @readonly\n */\n }, {\n key: \"head\",\n get: function() {\n return this.value.substring(0, this.startChangePos);\n }\n /**\n Unchanged tail symbols\n @readonly\n */\n }, {\n key: \"tail\",\n get: function() {\n return this.value.substring(this.startChangePos + this.insertedCount);\n }\n /**\n Remove direction\n @readonly\n */\n }, {\n key: \"removeDirection\",\n get: function() {\n return !this.removedCount || this.insertedCount ? zt.NONE : (this.oldSelection.end === this.cursorPos || this.oldSelection.start === this.cursorPos) && // if not range removed (event with backspace)\n this.oldSelection.end === this.oldSelection.start ? zt.RIGHT : zt.LEFT;\n }\n }]), e;\n}(), Vi = /* @__PURE__ */ function() {\n function e() {\n var t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"\", n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0, r = arguments.length > 2 ? arguments[2] : void 0;\n Ir(this, e), this.value = t, this.from = n, this.stop = r;\n }\n return Dr(e, [{\n key: \"toString\",\n value: function() {\n return this.value;\n }\n }, {\n key: \"extend\",\n value: function(n) {\n this.value += String(n);\n }\n }, {\n key: \"appendTo\",\n value: function(n) {\n return n.append(this.toString(), {\n tail: !0\n }).aggregate(n._appendPlaceholder());\n }\n }, {\n key: \"state\",\n get: function() {\n return {\n value: this.value,\n from: this.from,\n stop: this.stop\n };\n },\n set: function(n) {\n Object.assign(this, n);\n }\n }, {\n key: \"unshift\",\n value: function(n) {\n if (!this.value.length || n != null && this.from >= n)\n return \"\";\n var r = this.value[0];\n return this.value = this.value.slice(1), r;\n }\n }, {\n key: \"shift\",\n value: function() {\n if (!this.value.length)\n return \"\";\n var n = this.value[this.value.length - 1];\n return this.value = this.value.slice(0, -1), n;\n }\n }]), e;\n}();\nfunction Sn(e) {\n var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};\n return new Sn.InputMask(e, t);\n}\nvar Ps = /* @__PURE__ */ function() {\n function e(t) {\n Ir(this, e), this._value = \"\", this._update(Object.assign({}, e.DEFAULTS, t)), this.isInitialized = !0;\n }\n return Dr(e, [{\n key: \"updateOptions\",\n value: function(n) {\n Object.keys(n).length && this.withValueRefresh(this._update.bind(this, n));\n }\n /**\n Sets new options\n @protected\n */\n }, {\n key: \"_update\",\n value: function(n) {\n Object.assign(this, n);\n }\n /** Mask state */\n }, {\n key: \"state\",\n get: function() {\n return {\n _value: this.value\n };\n },\n set: function(n) {\n this._value = n._value;\n }\n /** Resets value */\n }, {\n key: \"reset\",\n value: function() {\n this._value = \"\";\n }\n /** */\n }, {\n key: \"value\",\n get: function() {\n return this._value;\n },\n set: function(n) {\n this.resolve(n);\n }\n /** Resolve new value */\n }, {\n key: \"resolve\",\n value: function(n) {\n return this.reset(), this.append(n, {\n input: !0\n }, \"\"), this.doCommit(), this.value;\n }\n /** */\n }, {\n key: \"unmaskedValue\",\n get: function() {\n return this.value;\n },\n set: function(n) {\n this.reset(), this.append(n, {}, \"\"), this.doCommit();\n }\n /** */\n }, {\n key: \"typedValue\",\n get: function() {\n return this.doParse(this.value);\n },\n set: function(n) {\n this.value = this.doFormat(n);\n }\n /** Value that includes raw user input */\n }, {\n key: \"rawInputValue\",\n get: function() {\n return this.extractInput(0, this.value.length, {\n raw: !0\n });\n },\n set: function(n) {\n this.reset(), this.append(n, {\n raw: !0\n }, \"\"), this.doCommit();\n }\n /** */\n }, {\n key: \"isComplete\",\n get: function() {\n return !0;\n }\n /** */\n }, {\n key: \"isFilled\",\n get: function() {\n return this.isComplete;\n }\n /** Finds nearest input position in direction */\n }, {\n key: \"nearestInputPos\",\n value: function(n, r) {\n return n;\n }\n /** Extracts value in range considering flags */\n }, {\n key: \"extractInput\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length;\n return this.value.slice(n, r);\n }\n /** Extracts tail in range */\n }, {\n key: \"extractTail\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length;\n return new Vi(this.extractInput(n, r), n);\n }\n /** Appends tail */\n // $FlowFixMe no ideas\n }, {\n key: \"appendTail\",\n value: function(n) {\n return Iu(n) && (n = new Vi(String(n))), n.appendTo(this);\n }\n /** Appends char */\n }, {\n key: \"_appendCharRaw\",\n value: function(n) {\n return n ? (this._value += n, new qn({\n inserted: n,\n rawInserted: n\n })) : new qn();\n }\n /** Appends char */\n }, {\n key: \"_appendChar\",\n value: function(n) {\n var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, a = arguments.length > 2 ? arguments[2] : void 0, i = this.state, o, s = Cy(this.doPrepare(n, r)), u = Hi(s, 2);\n if (n = u[0], o = u[1], o = o.aggregate(this._appendCharRaw(n, r)), o.inserted) {\n var l, c = this.doValidate(r) !== !1;\n if (c && a != null) {\n var d = this.state;\n this.overwrite === !0 && (l = a.state, a.unshift(this.value.length));\n var p = this.appendTail(a);\n c = p.rawInserted === a.toString(), !(c && p.inserted) && this.overwrite === \"shift\" && (this.state = d, l = a.state, a.shift(), p = this.appendTail(a), c = p.rawInserted === a.toString()), c && p.inserted && (this.state = d);\n }\n c || (o = new qn(), this.state = i, a && l && (a.state = l));\n }\n return o;\n }\n /** Appends optional placeholder at end */\n }, {\n key: \"_appendPlaceholder\",\n value: function() {\n return new qn();\n }\n /** Appends optional eager placeholder at end */\n }, {\n key: \"_appendEager\",\n value: function() {\n return new qn();\n }\n /** Appends symbols considering flags */\n // $FlowFixMe no ideas\n }, {\n key: \"append\",\n value: function(n, r, a) {\n if (!Iu(n))\n throw new Error(\"value should be string\");\n var i = new qn(), o = Iu(a) ? new Vi(String(a)) : a;\n r != null && r.tail && (r._beforeTailState = this.state);\n for (var s = 0; s < n.length; ++s)\n i.aggregate(this._appendChar(n[s], r, o));\n return o != null && (i.tailShift += this.appendTail(o).tailShift), this.eager && r !== null && r !== void 0 && r.input && n && i.aggregate(this._appendEager()), i;\n }\n /** */\n }, {\n key: \"remove\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length;\n return this._value = this.value.slice(0, n) + this.value.slice(r), new qn();\n }\n /** Calls function and reapplies current value */\n }, {\n key: \"withValueRefresh\",\n value: function(n) {\n if (this._refreshing || !this.isInitialized)\n return n();\n this._refreshing = !0;\n var r = this.rawInputValue, a = this.value, i = n();\n return this.rawInputValue = r, this.value && this.value !== a && a.indexOf(this.value) === 0 && this.append(a.slice(this.value.length), {}, \"\"), delete this._refreshing, i;\n }\n /** */\n }, {\n key: \"runIsolated\",\n value: function(n) {\n if (this._isolated || !this.isInitialized)\n return n(this);\n this._isolated = !0;\n var r = this.state, a = n(this);\n return this.state = r, delete this._isolated, a;\n }\n /**\n Prepares string before mask processing\n @protected\n */\n }, {\n key: \"doPrepare\",\n value: function(n) {\n var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};\n return this.prepare ? this.prepare(n, this, r) : n;\n }\n /**\n Validates if value is acceptable\n @protected\n */\n }, {\n key: \"doValidate\",\n value: function(n) {\n return (!this.validate || this.validate(this.value, this, n)) && (!this.parent || this.parent.doValidate(n));\n }\n /**\n Does additional processing in the end of editing\n @protected\n */\n }, {\n key: \"doCommit\",\n value: function() {\n this.commit && this.commit(this.value, this);\n }\n /** */\n }, {\n key: \"doFormat\",\n value: function(n) {\n return this.format ? this.format(n, this) : n;\n }\n /** */\n }, {\n key: \"doParse\",\n value: function(n) {\n return this.parse ? this.parse(n, this) : n;\n }\n /** */\n }, {\n key: \"splice\",\n value: function(n, r, a, i) {\n var o = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : {\n input: !0\n }, s = n + r, u = this.extractTail(s), l;\n this.eager && (i = _ie(i), l = this.extractInput(0, s, {\n raw: !0\n }));\n var c = this.nearestInputPos(n, r > 1 && n !== 0 && !this.eager ? zt.NONE : i), d = new qn({\n tailShift: c - n\n // adjust tailShift if start was aligned\n }).aggregate(this.remove(c));\n if (this.eager && i !== zt.NONE && l === this.rawInputValue)\n if (i === zt.FORCE_LEFT)\n for (var p; l === this.rawInputValue && (p = this.value.length); )\n d.aggregate(new qn({\n tailShift: -1\n })).aggregate(this.remove(p - 1));\n else\n i === zt.FORCE_RIGHT && u.unshift();\n return d.aggregate(this.append(a, o, u));\n }\n }, {\n key: \"maskEquals\",\n value: function(n) {\n return this.mask === n;\n }\n }, {\n key: \"typedValueEquals\",\n value: function(n) {\n var r = this.typedValue;\n return n === r || e.EMPTY_VALUES.includes(n) && e.EMPTY_VALUES.includes(r) || this.doFormat(n) === this.doFormat(this.typedValue);\n }\n }]), e;\n}();\nPs.DEFAULTS = {\n format: function(t) {\n return t;\n },\n parse: function(t) {\n return t;\n }\n};\nPs.EMPTY_VALUES = [void 0, null, \"\"];\nSn.Masked = Ps;\nfunction x9(e) {\n if (e == null)\n throw new Error(\"mask property should be defined\");\n return e instanceof RegExp ? Sn.MaskedRegExp : Iu(e) ? Sn.MaskedPattern : e instanceof Date || e === Date ? Sn.MaskedDate : e instanceof Number || typeof e == \"number\" || e === Number ? Sn.MaskedNumber : Array.isArray(e) || e === Array ? Sn.MaskedDynamic : Sn.Masked && e.prototype instanceof Sn.Masked ? e : e instanceof Sn.Masked ? e.constructor : e instanceof Function ? Sn.MaskedFunction : (console.warn(\"Mask not found for mask\", e), Sn.Masked);\n}\nfunction Pc(e) {\n if (Sn.Masked && e instanceof Sn.Masked)\n return e;\n e = Object.assign({}, e);\n var t = e.mask;\n if (Sn.Masked && t instanceof Sn.Masked)\n return t;\n var n = x9(t);\n if (!n)\n throw new Error(\"Masked class is not found for provided mask, appropriate module needs to be import manually before creating mask.\");\n return new n(e);\n}\nSn.createMask = Pc;\nvar wie = [\"mask\"], Tie = {\n 0: /\\d/,\n a: /[\\u0041-\\u005A\\u0061-\\u007A\\u00AA\\u00B5\\u00BA\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02C1\\u02C6-\\u02D1\\u02E0-\\u02E4\\u02EC\\u02EE\\u0370-\\u0374\\u0376\\u0377\\u037A-\\u037D\\u0386\\u0388-\\u038A\\u038C\\u038E-\\u03A1\\u03A3-\\u03F5\\u03F7-\\u0481\\u048A-\\u0527\\u0531-\\u0556\\u0559\\u0561-\\u0587\\u05D0-\\u05EA\\u05F0-\\u05F2\\u0620-\\u064A\\u066E\\u066F\\u0671-\\u06D3\\u06D5\\u06E5\\u06E6\\u06EE\\u06EF\\u06FA-\\u06FC\\u06FF\\u0710\\u0712-\\u072F\\u074D-\\u07A5\\u07B1\\u07CA-\\u07EA\\u07F4\\u07F5\\u07FA\\u0800-\\u0815\\u081A\\u0824\\u0828\\u0840-\\u0858\\u08A0\\u08A2-\\u08AC\\u0904-\\u0939\\u093D\\u0950\\u0958-\\u0961\\u0971-\\u0977\\u0979-\\u097F\\u0985-\\u098C\\u098F\\u0990\\u0993-\\u09A8\\u09AA-\\u09B0\\u09B2\\u09B6-\\u09B9\\u09BD\\u09CE\\u09DC\\u09DD\\u09DF-\\u09E1\\u09F0\\u09F1\\u0A05-\\u0A0A\\u0A0F\\u0A10\\u0A13-\\u0A28\\u0A2A-\\u0A30\\u0A32\\u0A33\\u0A35\\u0A36\\u0A38\\u0A39\\u0A59-\\u0A5C\\u0A5E\\u0A72-\\u0A74\\u0A85-\\u0A8D\\u0A8F-\\u0A91\\u0A93-\\u0AA8\\u0AAA-\\u0AB0\\u0AB2\\u0AB3\\u0AB5-\\u0AB9\\u0ABD\\u0AD0\\u0AE0\\u0AE1\\u0B05-\\u0B0C\\u0B0F\\u0B10\\u0B13-\\u0B28\\u0B2A-\\u0B30\\u0B32\\u0B33\\u0B35-\\u0B39\\u0B3D\\u0B5C\\u0B5D\\u0B5F-\\u0B61\\u0B71\\u0B83\\u0B85-\\u0B8A\\u0B8E-\\u0B90\\u0B92-\\u0B95\\u0B99\\u0B9A\\u0B9C\\u0B9E\\u0B9F\\u0BA3\\u0BA4\\u0BA8-\\u0BAA\\u0BAE-\\u0BB9\\u0BD0\\u0C05-\\u0C0C\\u0C0E-\\u0C10\\u0C12-\\u0C28\\u0C2A-\\u0C33\\u0C35-\\u0C39\\u0C3D\\u0C58\\u0C59\\u0C60\\u0C61\\u0C85-\\u0C8C\\u0C8E-\\u0C90\\u0C92-\\u0CA8\\u0CAA-\\u0CB3\\u0CB5-\\u0CB9\\u0CBD\\u0CDE\\u0CE0\\u0CE1\\u0CF1\\u0CF2\\u0D05-\\u0D0C\\u0D0E-\\u0D10\\u0D12-\\u0D3A\\u0D3D\\u0D4E\\u0D60\\u0D61\\u0D7A-\\u0D7F\\u0D85-\\u0D96\\u0D9A-\\u0DB1\\u0DB3-\\u0DBB\\u0DBD\\u0DC0-\\u0DC6\\u0E01-\\u0E30\\u0E32\\u0E33\\u0E40-\\u0E46\\u0E81\\u0E82\\u0E84\\u0E87\\u0E88\\u0E8A\\u0E8D\\u0E94-\\u0E97\\u0E99-\\u0E9F\\u0EA1-\\u0EA3\\u0EA5\\u0EA7\\u0EAA\\u0EAB\\u0EAD-\\u0EB0\\u0EB2\\u0EB3\\u0EBD\\u0EC0-\\u0EC4\\u0EC6\\u0EDC-\\u0EDF\\u0F00\\u0F40-\\u0F47\\u0F49-\\u0F6C\\u0F88-\\u0F8C\\u1000-\\u102A\\u103F\\u1050-\\u1055\\u105A-\\u105D\\u1061\\u1065\\u1066\\u106E-\\u1070\\u1075-\\u1081\\u108E\\u10A0-\\u10C5\\u10C7\\u10CD\\u10D0-\\u10FA\\u10FC-\\u1248\\u124A-\\u124D\\u1250-\\u1256\\u1258\\u125A-\\u125D\\u1260-\\u1288\\u128A-\\u128D\\u1290-\\u12B0\\u12B2-\\u12B5\\u12B8-\\u12BE\\u12C0\\u12C2-\\u12C5\\u12C8-\\u12D6\\u12D8-\\u1310\\u1312-\\u1315\\u1318-\\u135A\\u1380-\\u138F\\u13A0-\\u13F4\\u1401-\\u166C\\u166F-\\u167F\\u1681-\\u169A\\u16A0-\\u16EA\\u1700-\\u170C\\u170E-\\u1711\\u1720-\\u1731\\u1740-\\u1751\\u1760-\\u176C\\u176E-\\u1770\\u1780-\\u17B3\\u17D7\\u17DC\\u1820-\\u1877\\u1880-\\u18A8\\u18AA\\u18B0-\\u18F5\\u1900-\\u191C\\u1950-\\u196D\\u1970-\\u1974\\u1980-\\u19AB\\u19C1-\\u19C7\\u1A00-\\u1A16\\u1A20-\\u1A54\\u1AA7\\u1B05-\\u1B33\\u1B45-\\u1B4B\\u1B83-\\u1BA0\\u1BAE\\u1BAF\\u1BBA-\\u1BE5\\u1C00-\\u1C23\\u1C4D-\\u1C4F\\u1C5A-\\u1C7D\\u1CE9-\\u1CEC\\u1CEE-\\u1CF1\\u1CF5\\u1CF6\\u1D00-\\u1DBF\\u1E00-\\u1F15\\u1F18-\\u1F1D\\u1F20-\\u1F45\\u1F48-\\u1F4D\\u1F50-\\u1F57\\u1F59\\u1F5B\\u1F5D\\u1F5F-\\u1F7D\\u1F80-\\u1FB4\\u1FB6-\\u1FBC\\u1FBE\\u1FC2-\\u1FC4\\u1FC6-\\u1FCC\\u1FD0-\\u1FD3\\u1FD6-\\u1FDB\\u1FE0-\\u1FEC\\u1FF2-\\u1FF4\\u1FF6-\\u1FFC\\u2071\\u207F\\u2090-\\u209C\\u2102\\u2107\\u210A-\\u2113\\u2115\\u2119-\\u211D\\u2124\\u2126\\u2128\\u212A-\\u212D\\u212F-\\u2139\\u213C-\\u213F\\u2145-\\u2149\\u214E\\u2183\\u2184\\u2C00-\\u2C2E\\u2C30-\\u2C5E\\u2C60-\\u2CE4\\u2CEB-\\u2CEE\\u2CF2\\u2CF3\\u2D00-\\u2D25\\u2D27\\u2D2D\\u2D30-\\u2D67\\u2D6F\\u2D80-\\u2D96\\u2DA0-\\u2DA6\\u2DA8-\\u2DAE\\u2DB0-\\u2DB6\\u2DB8-\\u2DBE\\u2DC0-\\u2DC6\\u2DC8-\\u2DCE\\u2DD0-\\u2DD6\\u2DD8-\\u2DDE\\u2E2F\\u3005\\u3006\\u3031-\\u3035\\u303B\\u303C\\u3041-\\u3096\\u309D-\\u309F\\u30A1-\\u30FA\\u30FC-\\u30FF\\u3105-\\u312D\\u3131-\\u318E\\u31A0-\\u31BA\\u31F0-\\u31FF\\u3400-\\u4DB5\\u4E00-\\u9FCC\\uA000-\\uA48C\\uA4D0-\\uA4FD\\uA500-\\uA60C\\uA610-\\uA61F\\uA62A\\uA62B\\uA640-\\uA66E\\uA67F-\\uA697\\uA6A0-\\uA6E5\\uA717-\\uA71F\\uA722-\\uA788\\uA78B-\\uA78E\\uA790-\\uA793\\uA7A0-\\uA7AA\\uA7F8-\\uA801\\uA803-\\uA805\\uA807-\\uA80A\\uA80C-\\uA822\\uA840-\\uA873\\uA882-\\uA8B3\\uA8F2-\\uA8F7\\uA8FB\\uA90A-\\uA925\\uA930-\\uA946\\uA960-\\uA97C\\uA984-\\uA9B2\\uA9CF\\uAA00-\\uAA28\\uAA40-\\uAA42\\uAA44-\\uAA4B\\uAA60-\\uAA76\\uAA7A\\uAA80-\\uAAAF\\uAAB1\\uAAB5\\uAAB6\\uAAB9-\\uAABD\\uAAC0\\uAAC2\\uAADB-\\uAADD\\uAAE0-\\uAAEA\\uAAF2-\\uAAF4\\uAB01-\\uAB06\\uAB09-\\uAB0E\\uAB11-\\uAB16\\uAB20-\\uAB26\\uAB28-\\uAB2E\\uABC0-\\uABE2\\uAC00-\\uD7A3\\uD7B0-\\uD7C6\\uD7CB-\\uD7FB\\uF900-\\uFA6D\\uFA70-\\uFAD9\\uFB00-\\uFB06\\uFB13-\\uFB17\\uFB1D\\uFB1F-\\uFB28\\uFB2A-\\uFB36\\uFB38-\\uFB3C\\uFB3E\\uFB40\\uFB41\\uFB43\\uFB44\\uFB46-\\uFBB1\\uFBD3-\\uFD3D\\uFD50-\\uFD8F\\uFD92-\\uFDC7\\uFDF0-\\uFDFB\\uFE70-\\uFE74\\uFE76-\\uFEFC\\uFF21-\\uFF3A\\uFF41-\\uFF5A\\uFF66-\\uFFBE\\uFFC2-\\uFFC7\\uFFCA-\\uFFCF\\uFFD2-\\uFFD7\\uFFDA-\\uFFDC]/,\n // http://stackoverflow.com/a/22075070\n \"*\": /./\n}, S9 = /* @__PURE__ */ function() {\n function e(t) {\n Ir(this, e);\n var n = t.mask, r = fh(t, wie);\n this.masked = Pc({\n mask: n\n }), Object.assign(this, r);\n }\n return Dr(e, [{\n key: \"reset\",\n value: function() {\n this.isFilled = !1, this.masked.reset();\n }\n }, {\n key: \"remove\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length;\n return n === 0 && r >= 1 ? (this.isFilled = !1, this.masked.remove(n, r)) : new qn();\n }\n }, {\n key: \"value\",\n get: function() {\n return this.masked.value || (this.isFilled && !this.isOptional ? this.placeholderChar : \"\");\n }\n }, {\n key: \"unmaskedValue\",\n get: function() {\n return this.masked.unmaskedValue;\n }\n }, {\n key: \"isComplete\",\n get: function() {\n return !!this.masked.value || this.isOptional;\n }\n }, {\n key: \"_appendChar\",\n value: function(n) {\n var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};\n if (this.isFilled)\n return new qn();\n var a = this.masked.state, i = this.masked._appendChar(n, r);\n return i.inserted && this.doValidate(r) === !1 && (i.inserted = i.rawInserted = \"\", this.masked.state = a), !i.inserted && !this.isOptional && !this.lazy && !r.input && (i.inserted = this.placeholderChar), i.skip = !i.inserted && !this.isOptional, this.isFilled = !!i.inserted, i;\n }\n }, {\n key: \"append\",\n value: function() {\n var n;\n return (n = this.masked).append.apply(n, arguments);\n }\n }, {\n key: \"_appendPlaceholder\",\n value: function() {\n var n = new qn();\n return this.isFilled || this.isOptional || (this.isFilled = !0, n.inserted = this.placeholderChar), n;\n }\n }, {\n key: \"_appendEager\",\n value: function() {\n return new qn();\n }\n }, {\n key: \"extractTail\",\n value: function() {\n var n;\n return (n = this.masked).extractTail.apply(n, arguments);\n }\n }, {\n key: \"appendTail\",\n value: function() {\n var n;\n return (n = this.masked).appendTail.apply(n, arguments);\n }\n }, {\n key: \"extractInput\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, a = arguments.length > 2 ? arguments[2] : void 0;\n return this.masked.extractInput(n, r, a);\n }\n }, {\n key: \"nearestInputPos\",\n value: function(n) {\n var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : zt.NONE, a = 0, i = this.value.length, o = Math.min(Math.max(n, a), i);\n switch (r) {\n case zt.LEFT:\n case zt.FORCE_LEFT:\n return this.isComplete ? o : a;\n case zt.RIGHT:\n case zt.FORCE_RIGHT:\n return this.isComplete ? o : i;\n case zt.NONE:\n default:\n return o;\n }\n }\n }, {\n key: \"doValidate\",\n value: function() {\n var n, r;\n return (n = this.masked).doValidate.apply(n, arguments) && (!this.parent || (r = this.parent).doValidate.apply(r, arguments));\n }\n }, {\n key: \"doCommit\",\n value: function() {\n this.masked.doCommit();\n }\n }, {\n key: \"state\",\n get: function() {\n return {\n masked: this.masked.state,\n isFilled: this.isFilled\n };\n },\n set: function(n) {\n this.masked.state = n.masked, this.isFilled = n.isFilled;\n }\n }]), e;\n}(), _9 = /* @__PURE__ */ function() {\n function e(t) {\n Ir(this, e), Object.assign(this, t), this._value = \"\", this.isFixed = !0;\n }\n return Dr(e, [{\n key: \"value\",\n get: function() {\n return this._value;\n }\n }, {\n key: \"unmaskedValue\",\n get: function() {\n return this.isUnmasking ? this.value : \"\";\n }\n }, {\n key: \"reset\",\n value: function() {\n this._isRawInput = !1, this._value = \"\";\n }\n }, {\n key: \"remove\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this._value.length;\n return this._value = this._value.slice(0, n) + this._value.slice(r), this._value || (this._isRawInput = !1), new qn();\n }\n }, {\n key: \"nearestInputPos\",\n value: function(n) {\n var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : zt.NONE, a = 0, i = this._value.length;\n switch (r) {\n case zt.LEFT:\n case zt.FORCE_LEFT:\n return a;\n case zt.NONE:\n case zt.RIGHT:\n case zt.FORCE_RIGHT:\n default:\n return i;\n }\n }\n }, {\n key: \"extractInput\",\n value: function() {\n var n = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this._value.length, a = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};\n return a.raw && this._isRawInput && this._value.slice(n, r) || \"\";\n }\n }, {\n key: \"isComplete\",\n get: function() {\n return !0;\n }\n }, {\n key: \"isFilled\",\n get: function() {\n return !!this._value;\n }\n }, {\n key: \"_appendChar\",\n value: function(n) {\n var r = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, a = new qn();\n if (this._value)\n return a;\n var i = this.char === n, o = i && (this.isUnmasking || r.input || r.raw) && (!r.raw || !this.eager) && !r.tail;\n return o && (a.rawInserted = this.char), this._value = a.inserted = this.char, this._isRawInput = o && (r.raw || r.input), a;\n }\n }, {\n key: \"_appendEager\",\n value: function() {\n return this._appendChar(this.char, {\n tail: !0\n });\n }\n }, {\n key: \"_appendPlaceholder\",\n value: function() {\n var n = new qn();\n return this._value || (this._value = n.inserted = this.char), n;\n }\n }, {\n key: \"extractTail\",\n value: function() {\n return arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, new Vi(\"\");\n }\n // $FlowFixMe no ideas\n }, {\n key: \"appendTail\",\n value: function(n) {\n return Iu(n) && (n = new Vi(String(n))), n.appendTo(this);\n }\n }, {\n key: \"append\",\n value: function(n, r, a) {\n var i = this._appendChar(n[0], r);\n return a != null && (i.tailShift += this.appendTail(a).tailShift), i;\n }\n }, {\n key: \"doCommit\",\n value: function() {\n }\n }, {\n key: \"state\",\n get: function() {\n return {\n _value: this._value,\n _isRawInput: this._isRawInput\n };\n },\n set: function(n) {\n Object.assign(this, n);\n }\n }]), e;\n}(), Aie = [\"chunks\"], Z6 = /* @__PURE__ */ function() {\n function e() {\n var t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : [], n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0;\n Ir(this, e), this.chunks = t, this.from = n;\n }\n return Dr(e, [{\n key: \"toString\",\n value: function() {\n return this.chunks.map(String).join(\"\");\n }\n // $FlowFixMe no ideas\n }, {\n key: \"extend\",\n value: function(n) {\n if (String(n)) {\n Iu(n) && (n = new Vi(String(n)));\n var r = this.chunks[this.chunks.length - 1], a = r && // if stops are same or tail has no stop\n (r.stop === n.stop || n.stop == null) && // if tail chunk goes just after last chunk\n n.from === r.from + r.toString().length;\n if (n instanceof Vi)\n a ? r.extend(n.toString()) : this.chunks.push(n);\n else if (n instanceof e) {\n if (n.stop == null)\n for (var i; n.chunks.length && n.chunks[0].stop == null; )\n i = n.chunks.shift(), i.from += n.from, this.extend(i);\n n.toString() && (n.stop = n.blockIndex, this.chunks.push(n));\n }\n }\n }\n }, {\n key: \"appendTo\",\n value: function(n) {\n if (!(n instanceof Sn.MaskedPattern)) {\n var r = new Vi(this.toString());\n return r.appendTo(n);\n }\n for (var a = new qn(), i = 0; i < this.chunks.length && !a.skip; ++i) {\n var o = this.chunks[i], s = n._mapPosToBlock(n.value.length), u = o.stop, l = void 0;\n if (u != null && // if block not found or stop is behind lastBlock\n (!s || s.index <= u) && ((o instanceof e || // for continuous block also check if stop is exist\n n._stops.indexOf(u) >= 0) && a.aggregate(n._appendPlaceholder(u)), l = o instanceof e && n._blocks[u]), l) {\n var c = l.appendTail(o);\n c.skip = !1, a.aggregate(c), n._value += c.inserted;\n var d = o.toString().slice(c.rawInserted.length);\n d && a.aggregate(n.append(d, {\n tail: !0\n }));\n } else\n a.aggregate(n.append(o.toString(), {\n tail: !0\n }));\n }\n return a;\n }\n }, {\n key: \"state\",\n get: function() {\n return {\n chunks: this.chunks.map(function(n) {\n return n.state;\n }),\n from: this.from,\n stop: this.stop,\n blockIndex: this.blockIndex\n };\n },\n set: function(n) {\n var r = n.chunks, a = fh(n, Aie);\n Object.assign(this, a), this.chunks = r.map(function(i) {\n var o = \"chunks\" in i ? new e() : new Vi();\n return o.state = i, o;\n });\n }\n }, {\n key: \"unshift\",\n value: function(n) {\n if (!this.chunks.length || n != null && this.from >= n)\n return \"\";\n for (var r = n != null ? n - this.from : n, a = 0; a < this.chunks.length; ) {\n var i = this.chunks[a], o = i.unshift(r);\n if (i.toString()) {\n if (!o)\n break;\n ++a;\n } else\n this.chunks.splice(a, 1);\n if (o)\n return o;\n }\n return \"\";\n }\n }, {\n key: \"shift\",\n value: function() {\n if (!this.chunks.length)\n return \"\";\n for (var n = this.chunks.length - 1; 0 <= n; ) {\n var r = this.chunks[n], a = r.shift();\n if (r.toString()) {\n if (!a)\n break;\n --n;\n } else\n this.chunks.splice(n, 1);\n if (a)\n return a;\n }\n return \"\";\n }\n }]), e;\n}(), Nie = /* @__PURE__ */ function() {\n function e(t, n) {\n Ir(this, e), this.masked = t, this._log = [];\n var r = t._mapPosToBlock(n) || (n < 0 ? (\n // first\n {\n index: 0,\n offset: 0\n }\n ) : (\n // last\n {\n index: this.masked._blocks.length,\n offset: 0\n }\n )), a = r.offset, i = r.index;\n this.offset = a, this.index = i, this.ok = !1;\n }\n return Dr(e, [{\n key: \"block\",\n get: function() {\n return this.masked._blocks[this.index];\n }\n }, {\n key: \"pos\",\n get: function() {\n return this.masked._blockStartPos(this.index) + this.offset;\n }\n }, {\n key: \"state\",\n get: function() {\n return {\n index: this.index,\n offset: this.offset,\n ok: this.ok\n };\n },\n set: function(n) {\n Object.assign(this, n);\n }\n }, {\n key: \"pushState\",\n value: function() {\n this._log.push(this.state);\n }\n }, {\n key: \"popState\",\n value: function() {\n var n = this._log.pop();\n return this.state = n, n;\n }\n }, {\n key: \"bindBlock\",\n value: function() {\n this.block || (this.index < 0 && (this.index = 0, this.offset = 0), this.index >= this.masked._blocks.length && (this.index = this.masked._blocks.length - 1, this.offset = this.block.value.length));\n }\n }, {\n key: \"_pushLeft\",\n value: function(n) {\n for (this.pushState(), this.bindBlock(); 0 <= this.index; --this.index, this.offset = ((r = this.block) === null || r === void 0 ? void 0 : r.value.length) || 0) {\n var r;\n if (n())\n return this.ok = !0;\n }\n return this.ok = !1;\n }\n }, {\n key: \"_pushRight\",\n value: function(n) {\n for (this.pushState(), this.bindBlock(); this.index < this.masked._blocks.length; ++this.index, this.offset = 0)\n if (n())\n return this.ok = !0;\n return this.ok = !1;\n }\n }, {\n key: \"pushLeftBeforeFilled\",\n value: function() {\n var n = this;\n return this._pushLeft(function() {\n if (!(n.block.isFixed || !n.block.value) && (n.offset = n.block.nearestInputPos(n.offset, zt.FORCE_LEFT), n.offset !== 0))\n return !0;\n });\n }\n }, {\n key: \"pushLeftBeforeInput\",\n value: function() {\n var n = this;\n return this._pushLeft(function() {\n if (!n.block.isFixed)\n return n.offset = n.block.nearestInputPos(n.offset, zt.LEFT), !0;\n });\n }\n }, {\n key: \"pushLeftBeforeRequired\",\n value: function() {\n var n = this;\n return this._pushLeft(function() {\n if (!(n.block.isFixed || n.block.isOptional && !n.block.value))\n return n.offset = n.block.nearestInputPos(n.offset, zt.LEFT), !0;\n });\n }\n }, {\n key: \"pushRightBeforeFilled\",\n value: function() {\n var n = this;\n return this._pushRight(function() {\n if (!(n.block.isFixed || !n.block.value) && (n.offset = n.block.nearestInputPos(n.offset, zt.FORCE_RIGHT), n.offset !== n.block.value.length))\n return !0;\n });\n }\n }, {\n key: \"pushRightBeforeInput\",\n value: function() {\n var n = this;\n return this._pushRight(function() {\n if (!n.block.isFixed)\n return n.offset = n.block.nearestInputPos(n.offset, zt.NONE), !0;\n });\n }\n }, {\n key: \"pushRightBeforeRequired\",\n value: function() {\n var n = this;\n return this._pushRight(function() {\n if (!(n.block.isFixed || n.block.isOptional && !n.block.value))\n return n.offset = n.block.nearestInputPos(n.offset, zt.NONE), !0;\n });\n }\n }]), e;\n}(), Oie = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n() {\n return Ir(this, n), t.apply(this, arguments);\n }\n return Dr(n, [{\n key: \"_update\",\n value: (\n /**\n @override\n @param {Object} opts\n */\n function(a) {\n a.mask && (a.validate = function(i) {\n return i.search(a.mask) >= 0;\n }), Ln(hn(n.prototype), \"_update\", this).call(this, a);\n }\n )\n }]), n;\n}(Ps);\nSn.MaskedRegExp = Oie;\nvar Lie = [\"_blocks\"], Uo = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n() {\n var r = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};\n return Ir(this, n), r.definitions = Object.assign({}, Tie, r.definitions), t.call(this, Object.assign({}, n.DEFAULTS, r));\n }\n return Dr(n, [{\n key: \"_update\",\n value: function() {\n var a = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};\n a.definitions = Object.assign({}, this.definitions, a.definitions), Ln(hn(n.prototype), \"_update\", this).call(this, a), this._rebuildMask();\n }\n /** */\n }, {\n key: \"_rebuildMask\",\n value: function() {\n var a = this, i = this.definitions;\n this._blocks = [], this._stops = [], this._maskedBlocks = {};\n var o = this.mask;\n if (!(!o || !i))\n for (var s = !1, u = !1, l = 0; l < o.length; ++l) {\n if (this.blocks) {\n var c = function() {\n var v = o.slice(l), b = Object.keys(a.blocks).filter(function(_) {\n return v.indexOf(_) === 0;\n });\n b.sort(function(_, x) {\n return x.length - _.length;\n });\n var C = b[0];\n if (C) {\n var w = Pc(Object.assign({\n parent: a,\n lazy: a.lazy,\n eager: a.eager,\n placeholderChar: a.placeholderChar,\n overwrite: a.overwrite\n }, a.blocks[C]));\n return w && (a._blocks.push(w), a._maskedBlocks[C] || (a._maskedBlocks[C] = []), a._maskedBlocks[C].push(a._blocks.length - 1)), l += C.length - 1, \"continue\";\n }\n }();\n if (c === \"continue\")\n continue;\n }\n var d = o[l], p = d in i;\n if (d === n.STOP_CHAR) {\n this._stops.push(this._blocks.length);\n continue;\n }\n if (d === \"{\" || d === \"}\") {\n s = !s;\n continue;\n }\n if (d === \"[\" || d === \"]\") {\n u = !u;\n continue;\n }\n if (d === n.ESCAPE_CHAR) {\n if (++l, d = o[l], !d)\n break;\n p = !1;\n }\n var g = p ? new S9({\n parent: this,\n lazy: this.lazy,\n eager: this.eager,\n placeholderChar: this.placeholderChar,\n mask: i[d],\n isOptional: u\n }) : new _9({\n char: d,\n eager: this.eager,\n isUnmasking: s\n });\n this._blocks.push(g);\n }\n }\n /**\n @override\n */\n }, {\n key: \"state\",\n get: function() {\n return Object.assign({}, Ln(hn(n.prototype), \"state\", this), {\n _blocks: this._blocks.map(function(a) {\n return a.state;\n })\n });\n },\n set: function(a) {\n var i = a._blocks, o = fh(a, Lie);\n this._blocks.forEach(function(s, u) {\n return s.state = i[u];\n }), ku(hn(n.prototype), \"state\", o, this, !0);\n }\n /**\n @override\n */\n }, {\n key: \"reset\",\n value: function() {\n Ln(hn(n.prototype), \"reset\", this).call(this), this._blocks.forEach(function(a) {\n return a.reset();\n });\n }\n /**\n @override\n */\n }, {\n key: \"isComplete\",\n get: function() {\n return this._blocks.every(function(a) {\n return a.isComplete;\n });\n }\n /**\n @override\n */\n }, {\n key: \"isFilled\",\n get: function() {\n return this._blocks.every(function(a) {\n return a.isFilled;\n });\n }\n }, {\n key: \"isFixed\",\n get: function() {\n return this._blocks.every(function(a) {\n return a.isFixed;\n });\n }\n }, {\n key: \"isOptional\",\n get: function() {\n return this._blocks.every(function(a) {\n return a.isOptional;\n });\n }\n /**\n @override\n */\n }, {\n key: \"doCommit\",\n value: function() {\n this._blocks.forEach(function(a) {\n return a.doCommit();\n }), Ln(hn(n.prototype), \"doCommit\", this).call(this);\n }\n /**\n @override\n */\n }, {\n key: \"unmaskedValue\",\n get: function() {\n return this._blocks.reduce(function(a, i) {\n return a += i.unmaskedValue;\n }, \"\");\n },\n set: function(a) {\n ku(hn(n.prototype), \"unmaskedValue\", a, this, !0);\n }\n /**\n @override\n */\n }, {\n key: \"value\",\n get: function() {\n return this._blocks.reduce(function(a, i) {\n return a += i.value;\n }, \"\");\n },\n set: function(a) {\n ku(hn(n.prototype), \"value\", a, this, !0);\n }\n /**\n @override\n */\n }, {\n key: \"appendTail\",\n value: function(a) {\n return Ln(hn(n.prototype), \"appendTail\", this).call(this, a).aggregate(this._appendPlaceholder());\n }\n /**\n @override\n */\n }, {\n key: \"_appendEager\",\n value: function() {\n var a, i = new qn(), o = (a = this._mapPosToBlock(this.value.length)) === null || a === void 0 ? void 0 : a.index;\n if (o == null)\n return i;\n this._blocks[o].isFilled && ++o;\n for (var s = o; s < this._blocks.length; ++s) {\n var u = this._blocks[s]._appendEager();\n if (!u.inserted)\n break;\n i.aggregate(u);\n }\n return i;\n }\n /**\n @override\n */\n }, {\n key: \"_appendCharRaw\",\n value: function(a) {\n var i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, o = this._mapPosToBlock(this.value.length), s = new qn();\n if (!o)\n return s;\n for (var u = o.index; ; ++u) {\n var l, c, d = this._blocks[u];\n if (!d)\n break;\n var p = d._appendChar(a, Object.assign({}, i, {\n _beforeTailState: (l = i._beforeTailState) === null || l === void 0 || (c = l._blocks) === null || c === void 0 ? void 0 : c[u]\n })), g = p.skip;\n if (s.aggregate(p), g || p.rawInserted)\n break;\n }\n return s;\n }\n /**\n @override\n */\n }, {\n key: \"extractTail\",\n value: function() {\n var a = this, i = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, o = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, s = new Z6();\n return i === o || this._forEachBlocksInRange(i, o, function(u, l, c, d) {\n var p = u.extractTail(c, d);\n p.stop = a._findStopBefore(l), p.from = a._blockStartPos(l), p instanceof Z6 && (p.blockIndex = l), s.extend(p);\n }), s;\n }\n /**\n @override\n */\n }, {\n key: \"extractInput\",\n value: function() {\n var a = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, o = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};\n if (a === i)\n return \"\";\n var s = \"\";\n return this._forEachBlocksInRange(a, i, function(u, l, c, d) {\n s += u.extractInput(c, d, o);\n }), s;\n }\n }, {\n key: \"_findStopBefore\",\n value: function(a) {\n for (var i, o = 0; o < this._stops.length; ++o) {\n var s = this._stops[o];\n if (s <= a)\n i = s;\n else\n break;\n }\n return i;\n }\n /** Appends placeholder depending on laziness */\n }, {\n key: \"_appendPlaceholder\",\n value: function(a) {\n var i = this, o = new qn();\n if (this.lazy && a == null)\n return o;\n var s = this._mapPosToBlock(this.value.length);\n if (!s)\n return o;\n var u = s.index, l = a ?? this._blocks.length;\n return this._blocks.slice(u, l).forEach(function(c) {\n if (!c.lazy || a != null) {\n var d = c._blocks != null ? [c._blocks.length] : [], p = c._appendPlaceholder.apply(c, d);\n i._value += p.inserted, o.aggregate(p);\n }\n }), o;\n }\n /** Finds block in pos */\n }, {\n key: \"_mapPosToBlock\",\n value: function(a) {\n for (var i = \"\", o = 0; o < this._blocks.length; ++o) {\n var s = this._blocks[o], u = i.length;\n if (i += s.value, a <= i.length)\n return {\n index: o,\n offset: a - u\n };\n }\n }\n /** */\n }, {\n key: \"_blockStartPos\",\n value: function(a) {\n return this._blocks.slice(0, a).reduce(function(i, o) {\n return i += o.value.length;\n }, 0);\n }\n /** */\n }, {\n key: \"_forEachBlocksInRange\",\n value: function(a) {\n var i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, o = arguments.length > 2 ? arguments[2] : void 0, s = this._mapPosToBlock(a);\n if (s) {\n var u = this._mapPosToBlock(i), l = u && s.index === u.index, c = s.offset, d = u && l ? u.offset : this._blocks[s.index].value.length;\n if (o(this._blocks[s.index], s.index, c, d), u && !l) {\n for (var p = s.index + 1; p < u.index; ++p)\n o(this._blocks[p], p, 0, this._blocks[p].value.length);\n o(this._blocks[u.index], u.index, 0, u.offset);\n }\n }\n }\n /**\n @override\n */\n }, {\n key: \"remove\",\n value: function() {\n var a = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, o = Ln(hn(n.prototype), \"remove\", this).call(this, a, i);\n return this._forEachBlocksInRange(a, i, function(s, u, l, c) {\n o.aggregate(s.remove(l, c));\n }), o;\n }\n /**\n @override\n */\n }, {\n key: \"nearestInputPos\",\n value: function(a) {\n var i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : zt.NONE;\n if (!this._blocks.length)\n return 0;\n var o = new Nie(this, a);\n if (i === zt.NONE)\n return o.pushRightBeforeInput() || (o.popState(), o.pushLeftBeforeInput()) ? o.pos : this.value.length;\n if (i === zt.LEFT || i === zt.FORCE_LEFT) {\n if (i === zt.LEFT) {\n if (o.pushRightBeforeFilled(), o.ok && o.pos === a)\n return a;\n o.popState();\n }\n if (o.pushLeftBeforeInput(), o.pushLeftBeforeRequired(), o.pushLeftBeforeFilled(), i === zt.LEFT) {\n if (o.pushRightBeforeInput(), o.pushRightBeforeRequired(), o.ok && o.pos <= a || (o.popState(), o.ok && o.pos <= a))\n return o.pos;\n o.popState();\n }\n return o.ok ? o.pos : i === zt.FORCE_LEFT ? 0 : (o.popState(), o.ok || (o.popState(), o.ok) ? o.pos : 0);\n }\n return i === zt.RIGHT || i === zt.FORCE_RIGHT ? (o.pushRightBeforeInput(), o.pushRightBeforeRequired(), o.pushRightBeforeFilled() ? o.pos : i === zt.FORCE_RIGHT ? this.value.length : (o.popState(), o.ok || (o.popState(), o.ok) ? o.pos : this.nearestInputPos(a, zt.LEFT))) : a;\n }\n /** Get block by name */\n }, {\n key: \"maskedBlock\",\n value: function(a) {\n return this.maskedBlocks(a)[0];\n }\n /** Get all blocks by name */\n }, {\n key: \"maskedBlocks\",\n value: function(a) {\n var i = this, o = this._maskedBlocks[a];\n return o ? o.map(function(s) {\n return i._blocks[s];\n }) : [];\n }\n }]), n;\n}(Ps);\nUo.DEFAULTS = {\n lazy: !0,\n placeholderChar: \"_\"\n};\nUo.STOP_CHAR = \"`\";\nUo.ESCAPE_CHAR = \"\\\\\";\nUo.InputDefinition = S9;\nUo.FixedDefinition = _9;\nSn.MaskedPattern = Uo;\nvar ef = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n() {\n return Ir(this, n), t.apply(this, arguments);\n }\n return Dr(n, [{\n key: \"_matchFrom\",\n get: (\n /**\n Optionally sets max length of pattern.\n Used when pattern length is longer then `to` param length. Pads zeros at start in this case.\n */\n /** Min bound */\n /** Max bound */\n /** */\n function() {\n return this.maxLength - String(this.from).length;\n }\n )\n /**\n @override\n */\n }, {\n key: \"_update\",\n value: function(a) {\n a = Object.assign({\n to: this.to || 0,\n from: this.from || 0,\n maxLength: this.maxLength || 0\n }, a);\n var i = String(a.to).length;\n a.maxLength != null && (i = Math.max(i, a.maxLength)), a.maxLength = i;\n for (var o = String(a.from).padStart(i, \"0\"), s = String(a.to).padStart(i, \"0\"), u = 0; u < s.length && s[u] === o[u]; )\n ++u;\n a.mask = s.slice(0, u).replace(/0/g, \"\\\\0\") + \"0\".repeat(i - u), Ln(hn(n.prototype), \"_update\", this).call(this, a);\n }\n /**\n @override\n */\n }, {\n key: \"isComplete\",\n get: function() {\n return Ln(hn(n.prototype), \"isComplete\", this) && !!this.value;\n }\n }, {\n key: \"boundaries\",\n value: function(a) {\n var i = \"\", o = \"\", s = a.match(/^(\\D*)(\\d*)(\\D*)/) || [], u = Hi(s, 3), l = u[1], c = u[2];\n return c && (i = \"0\".repeat(l.length) + c, o = \"9\".repeat(l.length) + c), i = i.padEnd(this.maxLength, \"0\"), o = o.padEnd(this.maxLength, \"9\"), [i, o];\n }\n // TODO str is a single char everytime\n /**\n @override\n */\n }, {\n key: \"doPrepare\",\n value: function(a) {\n var i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, o, s = Cy(Ln(hn(n.prototype), \"doPrepare\", this).call(this, a.replace(/\\D/g, \"\"), i)), u = Hi(s, 2);\n if (a = u[0], o = u[1], !this.autofix || !a)\n return a;\n var l = String(this.from).padStart(this.maxLength, \"0\"), c = String(this.to).padStart(this.maxLength, \"0\"), d = this.value + a;\n if (d.length > this.maxLength)\n return \"\";\n var p = this.boundaries(d), g = Hi(p, 2), v = g[0], b = g[1];\n return Number(b) < this.from ? l[d.length - 1] : Number(v) > this.to ? this.autofix === \"pad\" && d.length < this.maxLength ? [\"\", o.aggregate(this.append(l[d.length - 1] + a, i))] : c[d.length - 1] : a;\n }\n /**\n @override\n */\n }, {\n key: \"doValidate\",\n value: function() {\n var a, i = this.value, o = i.search(/[^0]/);\n if (o === -1 && i.length <= this._matchFrom)\n return !0;\n for (var s = this.boundaries(i), u = Hi(s, 2), l = u[0], c = u[1], d = arguments.length, p = new Array(d), g = 0; g < d; g++)\n p[g] = arguments[g];\n return this.from <= Number(c) && Number(l) <= this.to && (a = Ln(hn(n.prototype), \"doValidate\", this)).call.apply(a, [this].concat(p));\n }\n }]), n;\n}(Uo);\nSn.MaskedRange = ef;\nvar xy = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n(r) {\n return Ir(this, n), t.call(this, Object.assign({}, n.DEFAULTS, r));\n }\n return Dr(n, [{\n key: \"_update\",\n value: function(a) {\n a.mask === Date && delete a.mask, a.pattern && (a.mask = a.pattern);\n var i = a.blocks;\n a.blocks = Object.assign({}, n.GET_DEFAULT_BLOCKS()), a.min && (a.blocks.Y.from = a.min.getFullYear()), a.max && (a.blocks.Y.to = a.max.getFullYear()), a.min && a.max && a.blocks.Y.from === a.blocks.Y.to && (a.blocks.m.from = a.min.getMonth() + 1, a.blocks.m.to = a.max.getMonth() + 1, a.blocks.m.from === a.blocks.m.to && (a.blocks.d.from = a.min.getDate(), a.blocks.d.to = a.max.getDate())), Object.assign(a.blocks, this.blocks, i), Object.keys(a.blocks).forEach(function(o) {\n var s = a.blocks[o];\n !(\"autofix\" in s) && \"autofix\" in a && (s.autofix = a.autofix);\n }), Ln(hn(n.prototype), \"_update\", this).call(this, a);\n }\n /**\n @override\n */\n }, {\n key: \"doValidate\",\n value: function() {\n for (var a, i = this.date, o = arguments.length, s = new Array(o), u = 0; u < o; u++)\n s[u] = arguments[u];\n return (a = Ln(hn(n.prototype), \"doValidate\", this)).call.apply(a, [this].concat(s)) && (!this.isComplete || this.isDateExist(this.value) && i != null && (this.min == null || this.min <= i) && (this.max == null || i <= this.max));\n }\n /** Checks if date is exists */\n }, {\n key: \"isDateExist\",\n value: function(a) {\n return this.format(this.parse(a, this), this).indexOf(a) >= 0;\n }\n /** Parsed Date */\n }, {\n key: \"date\",\n get: function() {\n return this.typedValue;\n },\n set: function(a) {\n this.typedValue = a;\n }\n /**\n @override\n */\n }, {\n key: \"typedValue\",\n get: function() {\n return this.isComplete ? Ln(hn(n.prototype), \"typedValue\", this) : null;\n },\n set: function(a) {\n ku(hn(n.prototype), \"typedValue\", a, this, !0);\n }\n /**\n @override\n */\n }, {\n key: \"maskEquals\",\n value: function(a) {\n return a === Date || Ln(hn(n.prototype), \"maskEquals\", this).call(this, a);\n }\n }]), n;\n}(Uo);\nxy.DEFAULTS = {\n pattern: \"d{.}`m{.}`Y\",\n format: function(t) {\n if (!t)\n return \"\";\n var n = String(t.getDate()).padStart(2, \"0\"), r = String(t.getMonth() + 1).padStart(2, \"0\"), a = t.getFullYear();\n return [n, r, a].join(\".\");\n },\n parse: function(t) {\n var n = t.split(\".\"), r = Hi(n, 3), a = r[0], i = r[1], o = r[2];\n return new Date(o, i - 1, a);\n }\n};\nxy.GET_DEFAULT_BLOCKS = function() {\n return {\n d: {\n mask: ef,\n from: 1,\n to: 31,\n maxLength: 2\n },\n m: {\n mask: ef,\n from: 1,\n to: 12,\n maxLength: 2\n },\n Y: {\n mask: ef,\n from: 1900,\n to: 9999\n }\n };\n};\nSn.MaskedDate = xy;\nvar Sy = /* @__PURE__ */ function() {\n function e() {\n Ir(this, e);\n }\n return Dr(e, [{\n key: \"selectionStart\",\n get: (\n /** */\n /** */\n /** */\n /** Safely returns selection start */\n function() {\n var n;\n try {\n n = this._unsafeSelectionStart;\n } catch {\n }\n return n ?? this.value.length;\n }\n )\n /** Safely returns selection end */\n }, {\n key: \"selectionEnd\",\n get: function() {\n var n;\n try {\n n = this._unsafeSelectionEnd;\n } catch {\n }\n return n ?? this.value.length;\n }\n /** Safely sets element selection */\n }, {\n key: \"select\",\n value: function(n, r) {\n if (!(n == null || r == null || n === this.selectionStart && r === this.selectionEnd))\n try {\n this._unsafeSelect(n, r);\n } catch {\n }\n }\n /** Should be overriden in subclasses */\n }, {\n key: \"_unsafeSelect\",\n value: function(n, r) {\n }\n /** Should be overriden in subclasses */\n }, {\n key: \"isActive\",\n get: function() {\n return !1;\n }\n /** Should be overriden in subclasses */\n }, {\n key: \"bindEvents\",\n value: function(n) {\n }\n /** Should be overriden in subclasses */\n }, {\n key: \"unbindEvents\",\n value: function() {\n }\n }]), e;\n}();\nSn.MaskElement = Sy;\nvar ph = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n(r) {\n var a;\n return Ir(this, n), a = t.call(this), a.input = r, a._handlers = {}, a;\n }\n return Dr(n, [{\n key: \"rootElement\",\n get: function() {\n var a, i, o;\n return (a = (i = (o = this.input).getRootNode) === null || i === void 0 ? void 0 : i.call(o)) !== null && a !== void 0 ? a : document;\n }\n /**\n Is element in focus\n @readonly\n */\n }, {\n key: \"isActive\",\n get: function() {\n return this.input === this.rootElement.activeElement;\n }\n /**\n Returns HTMLElement selection start\n @override\n */\n }, {\n key: \"_unsafeSelectionStart\",\n get: function() {\n return this.input.selectionStart;\n }\n /**\n Returns HTMLElement selection end\n @override\n */\n }, {\n key: \"_unsafeSelectionEnd\",\n get: function() {\n return this.input.selectionEnd;\n }\n /**\n Sets HTMLElement selection\n @override\n */\n }, {\n key: \"_unsafeSelect\",\n value: function(a, i) {\n this.input.setSelectionRange(a, i);\n }\n /**\n HTMLElement value\n @override\n */\n }, {\n key: \"value\",\n get: function() {\n return this.input.value;\n },\n set: function(a) {\n this.input.value = a;\n }\n /**\n Binds HTMLElement events to mask internal events\n @override\n */\n }, {\n key: \"bindEvents\",\n value: function(a) {\n var i = this;\n Object.keys(a).forEach(function(o) {\n return i._toggleEventHandler(n.EVENTS_MAP[o], a[o]);\n });\n }\n /**\n Unbinds HTMLElement events to mask internal events\n @override\n */\n }, {\n key: \"unbindEvents\",\n value: function() {\n var a = this;\n Object.keys(this._handlers).forEach(function(i) {\n return a._toggleEventHandler(i);\n });\n }\n /** */\n }, {\n key: \"_toggleEventHandler\",\n value: function(a, i) {\n this._handlers[a] && (this.input.removeEventListener(a, this._handlers[a]), delete this._handlers[a]), i && (this.input.addEventListener(a, i), this._handlers[a] = i);\n }\n }]), n;\n}(Sy);\nph.EVENTS_MAP = {\n selectionChange: \"keydown\",\n input: \"input\",\n drop: \"drop\",\n click: \"click\",\n focus: \"focus\",\n commit: \"blur\"\n};\nSn.HTMLMaskElement = ph;\nvar E9 = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n() {\n return Ir(this, n), t.apply(this, arguments);\n }\n return Dr(n, [{\n key: \"_unsafeSelectionStart\",\n get: (\n /**\n Returns HTMLElement selection start\n @override\n */\n function() {\n var a = this.rootElement, i = a.getSelection && a.getSelection(), o = i && i.anchorOffset, s = i && i.focusOffset;\n return s == null || o == null || o < s ? o : s;\n }\n )\n /**\n Returns HTMLElement selection end\n @override\n */\n }, {\n key: \"_unsafeSelectionEnd\",\n get: function() {\n var a = this.rootElement, i = a.getSelection && a.getSelection(), o = i && i.anchorOffset, s = i && i.focusOffset;\n return s == null || o == null || o > s ? o : s;\n }\n /**\n Sets HTMLElement selection\n @override\n */\n }, {\n key: \"_unsafeSelect\",\n value: function(a, i) {\n if (this.rootElement.createRange) {\n var o = this.rootElement.createRange();\n o.setStart(this.input.firstChild || this.input, a), o.setEnd(this.input.lastChild || this.input, i);\n var s = this.rootElement, u = s.getSelection && s.getSelection();\n u && (u.removeAllRanges(), u.addRange(o));\n }\n }\n /**\n HTMLElement value\n @override\n */\n }, {\n key: \"value\",\n get: function() {\n return this.input.textContent;\n },\n set: function(a) {\n this.input.textContent = a;\n }\n }]), n;\n}(ph);\nSn.HTMLContenteditableMaskElement = E9;\nvar kie = [\"mask\"], Iie = /* @__PURE__ */ function() {\n function e(t, n) {\n Ir(this, e), this.el = t instanceof Sy ? t : t.isContentEditable && t.tagName !== \"INPUT\" && t.tagName !== \"TEXTAREA\" ? new E9(t) : new ph(t), this.masked = Pc(n), this._listeners = {}, this._value = \"\", this._unmaskedValue = \"\", this._saveSelection = this._saveSelection.bind(this), this._onInput = this._onInput.bind(this), this._onChange = this._onChange.bind(this), this._onDrop = this._onDrop.bind(this), this._onFocus = this._onFocus.bind(this), this._onClick = this._onClick.bind(this), this.alignCursor = this.alignCursor.bind(this), this.alignCursorFriendly = this.alignCursorFriendly.bind(this), this._bindEvents(), this.updateValue(), this._onChange();\n }\n return Dr(e, [{\n key: \"mask\",\n get: function() {\n return this.masked.mask;\n },\n set: function(n) {\n if (!this.maskEquals(n)) {\n if (!(n instanceof Sn.Masked) && this.masked.constructor === x9(n)) {\n this.masked.updateOptions({\n mask: n\n });\n return;\n }\n var r = Pc({\n mask: n\n });\n r.unmaskedValue = this.masked.unmaskedValue, this.masked = r;\n }\n }\n /** Raw value */\n }, {\n key: \"maskEquals\",\n value: function(n) {\n var r;\n return n == null || ((r = this.masked) === null || r === void 0 ? void 0 : r.maskEquals(n));\n }\n }, {\n key: \"value\",\n get: function() {\n return this._value;\n },\n set: function(n) {\n this.value !== n && (this.masked.value = n, this.updateControl(), this.alignCursor());\n }\n /** Unmasked value */\n }, {\n key: \"unmaskedValue\",\n get: function() {\n return this._unmaskedValue;\n },\n set: function(n) {\n this.unmaskedValue !== n && (this.masked.unmaskedValue = n, this.updateControl(), this.alignCursor());\n }\n /** Typed unmasked value */\n }, {\n key: \"typedValue\",\n get: function() {\n return this.masked.typedValue;\n },\n set: function(n) {\n this.masked.typedValueEquals(n) || (this.masked.typedValue = n, this.updateControl(), this.alignCursor());\n }\n /**\n Starts listening to element events\n @protected\n */\n }, {\n key: \"_bindEvents\",\n value: function() {\n this.el.bindEvents({\n selectionChange: this._saveSelection,\n input: this._onInput,\n drop: this._onDrop,\n click: this._onClick,\n focus: this._onFocus,\n commit: this._onChange\n });\n }\n /**\n Stops listening to element events\n @protected\n */\n }, {\n key: \"_unbindEvents\",\n value: function() {\n this.el && this.el.unbindEvents();\n }\n /**\n Fires custom event\n @protected\n */\n }, {\n key: \"_fireEvent\",\n value: function(n) {\n for (var r = arguments.length, a = new Array(r > 1 ? r - 1 : 0), i = 1; i < r; i++)\n a[i - 1] = arguments[i];\n var o = this._listeners[n];\n o && o.forEach(function(s) {\n return s.apply(void 0, a);\n });\n }\n /**\n Current selection start\n @readonly\n */\n }, {\n key: \"selectionStart\",\n get: function() {\n return this._cursorChanging ? this._changingCursorPos : this.el.selectionStart;\n }\n /** Current cursor position */\n }, {\n key: \"cursorPos\",\n get: function() {\n return this._cursorChanging ? this._changingCursorPos : this.el.selectionEnd;\n },\n set: function(n) {\n !this.el || !this.el.isActive || (this.el.select(n, n), this._saveSelection());\n }\n /**\n Stores current selection\n @protected\n */\n }, {\n key: \"_saveSelection\",\n value: function() {\n this.value !== this.el.value && console.warn(\"Element value was changed outside of mask. Syncronize mask using `mask.updateValue()` to work properly.\"), this._selection = {\n start: this.selectionStart,\n end: this.cursorPos\n };\n }\n /** Syncronizes model value from view */\n }, {\n key: \"updateValue\",\n value: function() {\n this.masked.value = this.el.value, this._value = this.masked.value;\n }\n /** Syncronizes view from model value, fires change events */\n }, {\n key: \"updateControl\",\n value: function() {\n var n = this.masked.unmaskedValue, r = this.masked.value, a = this.unmaskedValue !== n || this.value !== r;\n this._unmaskedValue = n, this._value = r, this.el.value !== r && (this.el.value = r), a && this._fireChangeEvents();\n }\n /** Updates options with deep equal check, recreates @{link Masked} model if mask type changes */\n }, {\n key: \"updateOptions\",\n value: function(n) {\n var r = n.mask, a = fh(n, kie), i = !this.maskEquals(r), o = !X1(this.masked, a);\n i && (this.mask = r), o && this.masked.updateOptions(a), (i || o) && this.updateControl();\n }\n /** Updates cursor */\n }, {\n key: \"updateCursor\",\n value: function(n) {\n n != null && (this.cursorPos = n, this._delayUpdateCursor(n));\n }\n /**\n Delays cursor update to support mobile browsers\n @private\n */\n }, {\n key: \"_delayUpdateCursor\",\n value: function(n) {\n var r = this;\n this._abortUpdateCursor(), this._changingCursorPos = n, this._cursorChanging = setTimeout(function() {\n r.el && (r.cursorPos = r._changingCursorPos, r._abortUpdateCursor());\n }, 10);\n }\n /**\n Fires custom events\n @protected\n */\n }, {\n key: \"_fireChangeEvents\",\n value: function() {\n this._fireEvent(\"accept\", this._inputEvent), this.masked.isComplete && this._fireEvent(\"complete\", this._inputEvent);\n }\n /**\n Aborts delayed cursor update\n @private\n */\n }, {\n key: \"_abortUpdateCursor\",\n value: function() {\n this._cursorChanging && (clearTimeout(this._cursorChanging), delete this._cursorChanging);\n }\n /** Aligns cursor to nearest available position */\n }, {\n key: \"alignCursor\",\n value: function() {\n this.cursorPos = this.masked.nearestInputPos(this.masked.nearestInputPos(this.cursorPos, zt.LEFT));\n }\n /** Aligns cursor only if selection is empty */\n }, {\n key: \"alignCursorFriendly\",\n value: function() {\n this.selectionStart === this.cursorPos && this.alignCursor();\n }\n /** Adds listener on custom event */\n }, {\n key: \"on\",\n value: function(n, r) {\n return this._listeners[n] || (this._listeners[n] = []), this._listeners[n].push(r), this;\n }\n /** Removes custom event listener */\n }, {\n key: \"off\",\n value: function(n, r) {\n if (!this._listeners[n])\n return this;\n if (!r)\n return delete this._listeners[n], this;\n var a = this._listeners[n].indexOf(r);\n return a >= 0 && this._listeners[n].splice(a, 1), this;\n }\n /** Handles view input event */\n }, {\n key: \"_onInput\",\n value: function(n) {\n if (this._inputEvent = n, this._abortUpdateCursor(), !this._selection)\n return this.updateValue();\n var r = new Eie(\n // new state\n this.el.value,\n this.cursorPos,\n // old state\n this.value,\n this._selection\n ), a = this.masked.rawInputValue, i = this.masked.splice(r.startChangePos, r.removed.length, r.inserted, r.removeDirection, {\n input: !0,\n raw: !0\n }).offset, o = a === this.masked.rawInputValue ? r.removeDirection : zt.NONE, s = this.masked.nearestInputPos(r.startChangePos + i, o);\n o !== zt.NONE && (s = this.masked.nearestInputPos(s, zt.NONE)), this.updateControl(), this.updateCursor(s), delete this._inputEvent;\n }\n /** Handles view change event and commits model value */\n }, {\n key: \"_onChange\",\n value: function() {\n this.value !== this.el.value && this.updateValue(), this.masked.doCommit(), this.updateControl(), this._saveSelection();\n }\n /** Handles view drop event, prevents by default */\n }, {\n key: \"_onDrop\",\n value: function(n) {\n n.preventDefault(), n.stopPropagation();\n }\n /** Restore last selection on focus */\n }, {\n key: \"_onFocus\",\n value: function(n) {\n this.alignCursorFriendly();\n }\n /** Restore last selection on focus */\n }, {\n key: \"_onClick\",\n value: function(n) {\n this.alignCursorFriendly();\n }\n /** Unbind view events and removes element reference */\n }, {\n key: \"destroy\",\n value: function() {\n this._unbindEvents(), this._listeners.length = 0, delete this.el;\n }\n }]), e;\n}();\nSn.InputMask = Iie;\nvar _y = /* @__PURE__ */ function(e) {\n Is(n, e);\n var t = Ds(n);\n function n(r) {\n return Ir(this, n), t.call(this, Object.assign({}, n.DEFAULTS, r));\n }\n return Dr(n, [{\n key: \"_update\",\n value: function(a) {\n Ln(hn(n.prototype), \"_update\", this).call(this, a), this._updateRegExps();\n }\n /** */\n }, {\n key: \"_updateRegExps\",\n value: function() {\n var a = \"^\" + (this.allowNegative ? \"[+|\\\\-]?\" : \"\"), i = \"(0|([1-9]+\\\\d*))?\", o = \"\\\\d*\", s = (this.scale ? \"(\" + yg(this.radix) + \"\\\\d{0,\" + this.scale + \"})?\" : \"\") + \"$\";\n this._numberRegExpInput = new RegExp(a + i + s), this._numberRegExp = new RegExp(a + o + s), this._mapToRadixRegExp = new RegExp(\"[\" + this.mapToRadix.map(yg).join(\"\") + \"]\", \"g\"), this._thousandsSeparatorRegExp = new RegExp(yg(this.thousandsSeparator), \"g\");\n }\n /** */\n }, {\n key: \"_removeThousandsSeparators\",\n value: function(a) {\n return a.replace(this._thousandsSeparatorRegExp, \"\");\n }\n /** */\n }, {\n key: \"_insertThousandsSeparators\",\n value: function(a) {\n var i = a.split(this.radix);\n return i[0] = i[0].replace(/\\B(?=(\\d{3})+(?!\\d))/g, this.thousandsSeparator), i.join(this.radix);\n }\n /**\n @override\n */\n }, {\n key: \"doPrepare\",\n value: function(a) {\n var i;\n a = a.replace(this._mapToRadixRegExp, this.radix);\n for (var o = this._removeThousandsSeparators(a), s = arguments.length, u = new Array(s > 1 ? s - 1 : 0), l = 1; l < s; l++)\n u[l - 1] = arguments[l];\n var c = Cy((i = Ln(hn(n.prototype), \"doPrepare\", this)).call.apply(i, [this, o].concat(u))), d = Hi(c, 2), p = d[0], g = d[1];\n return a && !o && (g.skip = !0), [p, g];\n }\n /** */\n }, {\n key: \"_separatorsCount\",\n value: function(a) {\n for (var i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1, o = 0, s = 0; s < a; ++s)\n this._value.indexOf(this.thousandsSeparator, s) === s && (++o, i && (a += this.thousandsSeparator.length));\n return o;\n }\n /** */\n }, {\n key: \"_separatorsCountFromSlice\",\n value: function() {\n var a = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : this._value;\n return this._separatorsCount(this._removeThousandsSeparators(a).length, !0);\n }\n /**\n @override\n */\n }, {\n key: \"extractInput\",\n value: function() {\n var a = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, o = arguments.length > 2 ? arguments[2] : void 0, s = this._adjustRangeWithSeparators(a, i), u = Hi(s, 2);\n return a = u[0], i = u[1], this._removeThousandsSeparators(Ln(hn(n.prototype), \"extractInput\", this).call(this, a, i, o));\n }\n /**\n @override\n */\n }, {\n key: \"_appendCharRaw\",\n value: function(a) {\n var i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};\n if (!this.thousandsSeparator)\n return Ln(hn(n.prototype), \"_appendCharRaw\", this).call(this, a, i);\n var o = i.tail && i._beforeTailState ? i._beforeTailState._value : this._value, s = this._separatorsCountFromSlice(o);\n this._value = this._removeThousandsSeparators(this.value);\n var u = Ln(hn(n.prototype), \"_appendCharRaw\", this).call(this, a, i);\n this._value = this._insertThousandsSeparators(this._value);\n var l = i.tail && i._beforeTailState ? i._beforeTailState._value : this._value, c = this._separatorsCountFromSlice(l);\n return u.tailShift += (c - s) * this.thousandsSeparator.length, u.skip = !u.rawInserted && a === this.thousandsSeparator, u;\n }\n /** */\n }, {\n key: \"_findSeparatorAround\",\n value: function(a) {\n if (this.thousandsSeparator) {\n var i = a - this.thousandsSeparator.length + 1, o = this.value.indexOf(this.thousandsSeparator, i);\n if (o <= a)\n return o;\n }\n return -1;\n }\n }, {\n key: \"_adjustRangeWithSeparators\",\n value: function(a, i) {\n var o = this._findSeparatorAround(a);\n o >= 0 && (a = o);\n var s = this._findSeparatorAround(i);\n return s >= 0 && (i = s + this.thousandsSeparator.length), [a, i];\n }\n /**\n @override\n */\n }, {\n key: \"remove\",\n value: function() {\n var a = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : 0, i = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : this.value.length, o = this._adjustRangeWithSeparators(a, i), s = Hi(o, 2);\n a = s[0], i = s[1];\n var u = this.value.slice(0, a), l = this.value.slice(i), c = this._separatorsCount(u.length);\n this._value = this._insertThousandsSeparators(this._removeThousandsSeparators(u + l));\n var d = this._separatorsCountFromSlice(u);\n return new qn({\n tailShift: (d - c) * this.thousandsSeparator.length\n });\n }\n /**\n @override\n */\n }, {\n key: \"nearestInputPos\",\n value: function(a, i) {\n if (!this.thousandsSeparator)\n return a;\n switch (i) {\n case zt.NONE:\n case zt.LEFT:\n case zt.FORCE_LEFT: {\n var o = this._findSeparatorAround(a - 1);\n if (o >= 0) {\n var s = o + this.thousandsSeparator.length;\n if (a < s || this.value.length <= s || i === zt.FORCE_LEFT)\n return o;\n }\n break;\n }\n case zt.RIGHT:\n case zt.FORCE_RIGHT: {\n var u = this._findSeparatorAround(a);\n if (u >= 0)\n return u + this.thousandsSeparator.length;\n }\n }\n return a;\n }\n /**\n @override\n */\n }, {\n key: \"doValidate\",\n value: function(a) {\n var i = a.input ? this._numberRegExpInput : this._numberRegExp, o = i.test(this._removeThousandsSeparators(this.value));\n if (o) {\n var s = this.number;\n o = o && !isNaN(s) && // check min bound for negative values\n (this.min == null || this.min >= 0 || this.min <= this.number) && // check max bound for positive values\n (this.max == null || this.max <= 0 || this.number <= this.max);\n }\n return o && Ln(hn(n.prototype), \"doValidate\", this).call(this, a);\n }\n /**\n @override\n */\n }, {\n key: \"doCommit\",\n value: function() {\n if (this.value) {\n var a = this.number, i = a;\n this.min != null && (i = Math.max(i, this.min)), this.max != null && (i = Math.min(i, this.max)), i !== a && (this.unmaskedValue = String(i));\n var o = this.value;\n this.normalizeZeros && (o = this._normalizeZeros(o)), this.padFractionalZeros && this.scale > 0 && (o = this._padFractionalZeros(o)), this._value = o;\n }\n Ln(hn(n.prototype), \"doCommit\", this).call(this);\n }\n /** */\n }, {\n key: \"_normalizeZeros\",\n value: function(a) {\n var i = this._removeThousandsSeparators(a).split(this.radix);\n return i[0] = i[0].replace(/^(\\D*)(0*)(\\d*)/, function(o, s, u, l) {\n return s + l;\n }), a.length && !/\\d$/.test(i[0]) && (i[0] = i[0] + \"0\"), i.length > 1 && (i[1] = i[1].replace(/0*$/, \"\"), i[1].length || (i.length = 1)), this._insertThousandsSeparators(i.join(this.radix));\n }\n /** */\n }, {\n key: \"_padFractionalZeros\",\n value: function(a) {\n if (!a)\n return a;\n var i = a.split(this.radix);\n return i.length < 2 && i.push(\"\"), i[1] = i[1].padEnd(this.scale, \"0\"), i.join(this.radix);\n }\n /**\n @override\n */\n }, {\n key: \"unmaskedValue\",\n get: function() {\n return this._removeThousandsSeparators(this._normalizeZeros(this.value)).replace(this.radix, \".\");\n },\n set: function(a) {\n ku(hn(n.prototype), \"unmaskedValue\", a.replace(\".\", this.radix), this, !0);\n }\n /**\n @override\n */\n }, {\n key: \"typedValue\",\n get: function() {\n return Number(this.unmaskedValue);\n },\n set: function(a) {\n ku(hn(n.prototype), \"unmaskedValue\", String(a), this, !0);\n }\n /** Parsed Number */\n }, {\n key: \"number\",\n get: function() {\n return this.typedValue;\n },\n set: function(a) {\n this.typedValue = a;\n }\n /**\n Is negative allowed\n @readonly\n */\n }, {\n key: \"allowNegative\",\n get: function() {\n return this.signed || this.min != null && this.min < 0 || this.max != null && this.max < 0;\n }\n /**\n @override\n */\n }, {\n key: \"typedValueEquals\",\n value: function(a) {\n return (Ln(hn(n.prototype), \"typedValueEquals\", this).call(this, a) || n.EMPTY_VALUES.includes(a) && n.EMPTY_VALUES.includes(this.typedValue)) && !(a === 0 && this.value === \"\");\n }\n }]), n;\n}(Ps);\n_y.DEFAULTS = {\n radix: \",\",\n thousandsSeparator: \"\",\n mapToRadix: [\".\"],\n scale: 2,\n signed: !1,\n normalizeZeros: !0,\n padFractionalZeros: !1\n};\n_y.EMPTY_VALUES = [].concat(gie(Ps.EMPTY_VALUES), [0]);\nSn.MaskedNumber = _y;\nvar Die = [\"name\", \"maskOptions\", \"onAccept\", \"onComplete\", \"value\"], Cg = {\n Range: Sn.MaskedRange\n}, hh = Lt(function(e, t) {\n var n = e.name, r = e.maskOptions, a = r === void 0 ? {\n mask: Number\n } : r, i = e.onAccept, o = e.onComplete, s = e.value, u = Qt(e, Die), l = Ue(), c = t || l, d = Ue(null);\n return We(function() {\n var p = d.current;\n p && p.updateOptions(a);\n }, [a]), We(function() {\n var p = d.current;\n p && (p.unmaskedValue = s);\n }, [s]), We(function() {\n var p = c.current;\n if (p && !d.current) {\n d.current = Sn(p, a);\n var g = d.current;\n g.on(\"accept\", function() {\n i && i(g.value, g.unmaskedValue, g.typedValue);\n }), g.on(\"complete\", function() {\n o && o(g.value, g.unmaskedValue, g.typedValue);\n });\n }\n return function() {\n if (d.current) {\n var v = d.current;\n v.off(\"accept\"), v.off(\"complete\"), v.destroy(), d.current = null;\n }\n };\n }, []), /* @__PURE__ */ vt.createElement(zu, bt({\n name: n,\n value: s,\n ref: c,\n \"data-ppui-info\": \"masked-text-input_2.0.19\"\n }, u));\n}), Pie = [\"name\", \"maskOptions\", \"prefix\", \"suffix\", \"currencyType\", \"value\"], Mie = Lt(function(e, t) {\n var n = e.name, r = e.maskOptions, a = e.prefix, i = e.suffix, o = e.currencyType, s = o === void 0 ? \"USD\" : o, u = e.value, l = Qt(e, Pie), c = Ze(rl), d = sre(c, r, s), p = d.currencyMaskOptions, g = d.intlCurrencyPrefix, v = d.intlCurrencySuffix, b = \"decimal\", C = u;\n if (p && (p.scale === 0 && (b = \"numeric\"), C)) {\n var w = C.split(\".\"), _ = fn(w, 2), x = _[0], S = _[1];\n if (S) {\n var E = S.substring(0, p.scale);\n C = x + (E ? \".\" + E : \"\");\n }\n }\n return /* @__PURE__ */ vt.createElement(hh, bt({\n name: n,\n value: C,\n maskOptions: p,\n prefix: a || g,\n suffix: i || v,\n inputMode: b,\n ref: t,\n \"data-ppui-info\": \"currency-input_2.0.19\"\n }, l));\n});\nconst w9 = \"CurrencyInput\", Rie = new ke(w9), Ey = Lt(\n ({ onChange: e, name: t, ...n }, r) => {\n const a = Ue(null);\n We(() => {\n typeof r == \"function\" ? r(a.current) : r && (r.current = a.current);\n }, [r]);\n const i = (o, s) => {\n typeof e == \"function\" && e({\n type: \"change\",\n target: {\n name: t,\n value: s,\n type: \"text\"\n }\n });\n };\n return /* @__PURE__ */ h.jsx(\n Mie,\n {\n ...n,\n name: t,\n onAccept: i,\n ref: a,\n className: Rie.getComponentClassName()\n }\n );\n }\n);\nEy.displayName = w9;\nconst Q6 = {\n countries: {\n ad: \"0.431\",\n ae: \"0.862\",\n ag: \"1.293\",\n ai: \"1.724\",\n al: \"2.155\",\n am: \"2.586\",\n an: \"3.017\",\n ao: \"3.448\",\n ar: \"3.879\",\n at: \"4.310\",\n au: \"4.741\",\n aw: \"5.172\",\n az: \"5.603\",\n ba: \"6.034\",\n bb: \"6.466\",\n be: \"6.897\",\n bf: \"7.328\",\n bg: \"7.759\",\n bh: \"8.190\",\n bi: \"8.621\",\n bj: \"9.052\",\n bm: \"9.483\",\n bn: \"9.914\",\n bo: \"10.345\",\n br: \"10.776\",\n bs: \"11.207\",\n bt: \"11.638\",\n bw: \"12.069\",\n by: \"12.500\",\n bz: \"12.931\",\n c2: \"13.362\",\n ca: \"13.793\",\n cd: \"14.224\",\n cg: \"14.655\",\n ch: \"15.086\",\n ci: \"15.517\",\n ck: \"15.948\",\n cl: \"16.379\",\n cm: \"16.810\",\n cn: \"17.241\",\n co: \"17.672\",\n cr: \"18.103\",\n cv: \"18.534\",\n cy: \"18.966\",\n cz: \"19.397\",\n de: \"19.828\",\n dj: \"20.259\",\n dk: \"20.690\",\n dm: \"21.121\",\n do: \"21.552\",\n dz: \"21.983\",\n ec: \"22.414\",\n ee: \"22.845\",\n eg: \"23.276\",\n er: \"23.707\",\n es: \"24.138\",\n et: \"24.569\",\n fi: \"25.000\",\n fj: \"25.431\",\n fk: \"25.862\",\n fm: \"26.293\",\n fo: \"26.724\",\n fr: \"27.155\",\n ga: \"27.586\",\n gb: \"28.017\",\n gd: \"28.448\",\n ge: \"28.879\",\n gf: \"29.310\",\n gi: \"29.741\",\n gl: \"30.172\",\n gm: \"30.603\",\n gn: \"31.034\",\n gp: \"31.466\",\n gr: \"31.897\",\n gt: \"32.328\",\n gw: \"32.759\",\n gy: \"33.190\",\n hk: \"33.621\",\n hn: \"34.052\",\n hr: \"34.483\",\n hu: \"34.914\",\n id: \"35.345\",\n ie: \"35.776\",\n il: \"36.207\",\n in: \"36.638\",\n is: \"37.069\",\n it: \"37.500\",\n jm: \"37.931\",\n jo: \"38.362\",\n jp: \"38.793\",\n ke: \"39.224\",\n kg: \"39.655\",\n kh: \"40.086\",\n ki: \"40.517\",\n km: \"40.948\",\n kn: \"41.379\",\n kr: \"41.810\",\n kw: \"42.241\",\n ky: \"42.672\",\n kz: \"43.103\",\n la: \"43.534\",\n lc: \"43.966\",\n li: \"44.397\",\n lk: \"44.828\",\n ls: \"45.259\",\n lt: \"45.690\",\n lu: \"46.121\",\n lv: \"46.552\",\n ma: \"46.983\",\n mc: \"47.414\",\n md: \"47.845\",\n me: \"48.276\",\n mg: \"48.707\",\n mh: \"49.138\",\n mk: \"49.569\",\n ml: \"50.000\",\n mn: \"50.431\",\n mq: \"50.862\",\n mr: \"51.293\",\n ms: \"51.724\",\n mt: \"52.155\",\n mu: \"52.586\",\n mv: \"53.017\",\n mw: \"53.448\",\n mx: \"53.879\",\n my: \"54.310\",\n mz: \"54.741\",\n na: \"55.172\",\n nc: \"55.603\",\n ne: \"56.034\",\n nf: \"56.466\",\n ng: \"56.897\",\n ni: \"57.328\",\n nl: \"57.759\",\n no: \"58.190\",\n np: \"58.621\",\n nr: \"59.052\",\n nu: \"59.483\",\n nz: \"59.914\",\n om: \"60.345\",\n pa: \"60.776\",\n pe: \"61.207\",\n pf: \"61.638\",\n pg: \"62.069\",\n ph: \"62.500\",\n pl: \"62.931\",\n pm: \"63.362\",\n pn: \"63.793\",\n pt: \"64.224\",\n pw: \"64.655\",\n py: \"65.086\",\n qa: \"65.517\",\n re: \"65.948\",\n ro: \"66.379\",\n rs: \"66.810\",\n ru: \"67.241\",\n rw: \"67.672\",\n sa: \"68.103\",\n sb: \"68.534\",\n sc: \"68.966\",\n se: \"69.397\",\n sg: \"69.828\",\n sh: \"70.259\",\n si: \"70.690\",\n sj: \"71.121\",\n sk: \"71.552\",\n sl: \"71.983\",\n sm: \"72.414\",\n sn: \"72.845\",\n so: \"73.276\",\n sr: \"73.707\",\n st: \"74.138\",\n sv: \"74.569\",\n sz: \"75.000\",\n tc: \"75.431\",\n td: \"75.862\",\n tg: \"76.293\",\n th: \"76.724\",\n tj: \"77.155\",\n tm: \"77.586\",\n tn: \"78.017\",\n to: \"78.448\",\n tr: \"78.879\",\n tt: \"79.310\",\n tv: \"79.741\",\n tw: \"0.000\",\n tz: \"80.603\",\n ua: \"81.034\",\n ug: \"81.466\",\n us: \"81.897\",\n uy: \"82.328\",\n va: \"82.759\",\n vc: \"83.190\",\n ve: \"83.621\",\n vg: \"84.052\",\n vn: \"84.483\",\n vu: \"84.914\",\n wf: \"85.345\",\n ws: \"85.776\",\n ye: \"86.207\",\n yt: \"86.638\",\n za: \"87.069\",\n zm: \"87.500\",\n zw: \"87.931\",\n eu: \"88.362\",\n af: \"88.793\",\n as: \"89.224\",\n bd: \"89.655\",\n io: \"90.086\",\n cf: \"90.517\",\n cx: \"90.948\",\n cc: \"91.379\",\n gq: \"91.810\",\n gh: \"92.241\",\n gu: \"92.672\",\n gg: \"93.103\",\n ht: \"93.534\",\n im: \"93.966\",\n lb: \"94.397\",\n je: \"94.828\",\n lr: \"95.259\",\n mo: \"95.690\",\n mm: \"96.121\",\n mp: \"96.552\",\n pk: \"96.983\",\n ps: \"97.414\",\n pr: \"97.845\",\n tl: \"98.276\",\n tk: \"98.707\",\n vi: \"99.138\",\n uz: \"99.569\",\n eh: \"100.000\"\n },\n sprites: {\n \"1x\": {\n url: \"https://www.paypalobjects.com/paypal-ui/components/flags/1x.png\",\n width: 32,\n height: 24\n },\n \"2x\": {\n url: \"https://www.paypalobjects.com/paypal-ui/components/flags/2x.png\",\n width: 64,\n height: 48\n },\n \"3x\": {\n url: \"https://www.paypalobjects.com/paypal-ui/components/flags/3x.png\",\n width: 96,\n height: 72\n }\n }\n};\nvar J6, e4, t4, n4, r4;\nfunction Bie(e) {\n if (!Object.keys(e).length)\n return {};\n var t = e.sysBorderRadiusSm, n = e.sysBorderThicknessNormal, r = e.sysColorStructureDivider, a = e.sysSizeIconSm, i = e.sysSizeIconMd, o = Q6.countries, s = Q6.sprites, u = s[\"1x\"], l = s[\"2x\"], c = u.url, d = l.url, p = fs(u.width), g = fs(u.height), v = fs(l.width), b = fs(l.height), C = {\n sm: a,\n md: i\n }, w = function(N) {\n var P = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : \"1x\", H = De(\"\".concat(C[N], \" / \").concat(P === \"1x\" ? p : v));\n return parseFloat(H);\n }, _ = V(J6 || (J6 = K([`\n label: flag;\n display: inline-block;\n box-sizing: border-box;\n position: relative;\n `]))), x = function(N) {\n var P = \"size_\".concat(N);\n return V(e4 || (e4 = K([`\n label: `, `;\n width: `, `;\n height: `, `;\n `])), P, C[N], De(\"\".concat(C[N], \" * \").concat(3 / 4)));\n }, S = function(N, P) {\n return V(t4 || (t4 = K([`\n label: `, `;\n width: `, `;\n height: `, `;\n background: transparent url(`, `) no-repeat;\n background-size: cover;\n background-origin: border-box;\n transform-origin: top left;\n position: absolute;\n left: 0;\n border: `, \" solid \", `;\n transform: scale(`, `);\n border-radius: `, `;\n @media only screen and (min-device-pixel-ratio: 2),\n only screen and (min-resolution: 192dpi),\n only screen and (min-resolution: 2dppx) {\n width: `, `;\n height: `, `;\n background-image: url(`, `);\n transform: scale(`, `);\n border-radius: `, `;\n }\n `])), P ? \"scale_no_border\" : \"scale\", p, g, c, n, r, w(N), P ? 0 : De(\"\".concat(t, \"/\").concat(w(N))), v, b, d, w(N, \"2x\"), P ? 0 : De(\"\".concat(t, \"/\").concat(w(N, \"2x\"))));\n }, E = function(N) {\n if (!N)\n return V(n4 || (n4 = K([`\n label: flag_default;\n background-position: 0 0%;\n `])));\n var P = N.toLocaleLowerCase(), H = o[P] || 0, k = H ? \"flag_\".concat(P) : \"flag_default\";\n return V(r4 || (r4 = K([`\n label: `, `;\n // We are using percentage value to support text-scaling.\n // In case flag sprite gets changed, it needs to be deployed as a brand-new URL\n //without replacing the old file for backward-compatibility\n background-position: 0 `, `%;\n `])), k, H);\n };\n return {\n base: _,\n flagSize: x,\n scale: S,\n flag: E\n };\n}\nvar Fie = [\"countryCode\", \"size\", \"noRoundCorners\", \"className\"], mh = function(e) {\n var t, n, r, a = e.countryCode, i = e.size, o = i === void 0 ? \"sm\" : i, s = e.noRoundCorners, u = s === void 0 ? !1 : s, l = e.className, c = Qt(e, Fie), d = gn(), p = wt(function() {\n return Bie(d);\n }, [d]), g = [p.base, (t = p.flagSize) === null || t === void 0 ? void 0 : t.call(p, o)], v = [(n = p.scale) === null || n === void 0 ? void 0 : n.call(p, o, u), (r = p.flag) === null || r === void 0 ? void 0 : r.call(p, a)];\n return ue(\"div\", bt({\n css: g,\n className: l,\n \"data-ppui-info\": \"flag_2.23.1\"\n }, c), ue(\"span\", {\n css: v,\n \"data-ppui\": \"true\"\n }));\n};\nconst T9 = \"CurrencyBadge\", a4 = new ke(T9), A9 = ({\n countryCode: e,\n currencyCode: t,\n className: n = \"\"\n}) => {\n const r = se(\n a4.getComponentClassName(),\n n\n ), a = W1(t);\n return /* @__PURE__ */ h.jsxs(\"div\", { className: r, children: [\n /* @__PURE__ */ h.jsx(mh, { countryCode: e, size: \"sm\" }),\n /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"span\",\n size: \"Body Bold\",\n className: a4.getElementClassName(\"text\"),\n children: a\n }\n )\n ] });\n};\nA9.displayName = T9;\nconst N9 = \"CurrencyConverterInput\", i4 = new ke(N9), Z1 = ({\n title: e,\n ariaLabel: t,\n countryCode: n,\n currencyCode: r,\n currencySymbol: a,\n currencyValue: i,\n onChangeCurrencyValue: o,\n onFocus: s,\n id: u = \"\",\n className: l = \"\"\n}) => {\n const c = se(\n i4.getComponentClassName(),\n l\n ), d = /* @__PURE__ */ h.jsx(A9, { countryCode: n, currencyCode: r });\n return /* @__PURE__ */ h.jsxs(\"div\", { className: c, children: [\n /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"span\",\n size: \"Body\",\n \"aria-hidden\": !0,\n className: i4.getElementClassName(\"title\"),\n children: e\n }\n ),\n /* @__PURE__ */ h.jsx(\n Ey,\n {\n name: \"\",\n label: t,\n isLabelHidden: !0,\n rightIcon: d,\n prefix: a,\n placeholder: \"0.00\",\n maskOptions: sie,\n value: i,\n onChange: o,\n onFocus: s,\n id: u\n }\n )\n ] });\n};\nZ1.displayName = N9;\nfunction Q1(e, t = 300) {\n let n = 0;\n return (...r) => {\n let a;\n return clearTimeout(n), n = setTimeout(() => {\n a = e(...r);\n }, t), a;\n };\n}\nconst jie = (e, t) => {\n const {\n currencyCode: n,\n currencySymbol: r\n } = Y6(e), {\n currencyCode: a,\n currencySymbol: i\n } = Y6(t);\n return {\n sender: {\n countryCode: e,\n currencyCode: n,\n currencySymbol: r,\n currencyValue: \"\"\n },\n receiver: {\n countryCode: t,\n currencyCode: a,\n currencySymbol: i,\n currencyValue: \"\"\n }\n };\n}, $ie = (e, t) => ({\n conversionMode: \"default\",\n sourceCurrency: {\n type: \"sender\",\n currencyCode: e.currencyCode,\n currencyValue: \"\"\n },\n destCurrencyCode: t.currencyCode\n}), Hie = (e, { type: t, payload: n }) => {\n switch (t) {\n case \"SET_CONVERSION_MODE\":\n return {\n ...e,\n conversionMode: n\n };\n case \"SET_SOURCE_CURRENCY_VALUE\":\n return {\n ...e,\n sourceCurrency: { ...e.sourceCurrency, currencyValue: n }\n };\n case \"SET_SOURCE_CURRENCY\":\n return {\n ...e,\n sourceCurrency: n\n };\n case \"SET_DEST_CURRENCY_CODE\":\n return {\n ...e,\n destCurrencyCode: n\n };\n default:\n return e;\n }\n}, Vie = (e, t, n, r) => {\n const a = () => e({ type: \"SET_CONVERSION_MODE\", payload: \"default\" }), i = () => e({ type: \"SET_CONVERSION_MODE\", payload: \"reverse\" }), o = (b) => e({ type: \"SET_DEST_CURRENCY_CODE\", payload: b }), s = (b) => e({\n type: \"SET_SOURCE_CURRENCY_VALUE\",\n payload: b\n }), u = (b) => {\n e({\n type: \"SET_SOURCE_CURRENCY\",\n payload: b\n }), t.current = b.type;\n }, c = Q1(\n ({\n target: { value: b }\n }) => {\n t.current === \"sender\" && s(b);\n }\n ), p = Q1(\n ({\n target: { value: b }\n }) => {\n t.current === \"receiver\" && s(b);\n }\n );\n return {\n setSourceCurrencyValueToSender: c,\n setSourceCurrencyValueToReceiver: p,\n setSourceCurrencyToSender: () => {\n if (t.current === \"sender\")\n return;\n const { currencyCode: b, currencyValue: C } = n.current;\n a(), u({\n type: \"sender\",\n currencyCode: b,\n currencyValue: C\n }), o(r.current.currencyCode);\n },\n setSourceCurrencyToReceiver: () => {\n if (t.current === \"receiver\")\n return;\n const { currencyCode: b, currencyValue: C } = r.current;\n i(), u({\n type: \"receiver\",\n currencyCode: b,\n currencyValue: C\n }), o(n.current.currencyCode);\n }\n };\n}, zie = ({ preferredReceiverCountry: e = \"US\" }) => {\n const { country: t = \"US\" } = Ze(Vt), { sender: n, receiver: r } = wt(\n () => jie(t, e),\n [t, e]\n ), a = wt(\n () => $ie(n, r),\n [n, r]\n ), [i, o] = EF(Hie, a), [, s] = ze(0), u = Ue(2), l = Ue(n), c = Ue(r), d = Ue(i.sourceCurrency.type), p = wt(\n () => Vie(\n o,\n d,\n l,\n c\n ),\n [o]\n ), g = sr(\n (v, b) => {\n v === \"sender\" ? l.current.currencyValue = b : c.current.currencyValue = b, s((C) => C + 1);\n },\n []\n );\n return We(() => {\n const { sourceCurrency: v, destCurrencyCode: b } = i, [C, w] = v.type === \"sender\" ? [\"sender\", \"receiver\"] : [\"receiver\", \"sender\"];\n if (!v.currencyValue)\n g(w, \"\");\n else {\n const {\n currencyValue: _,\n currencyCode: x\n } = v;\n g(C, _), uie(\n _,\n x,\n b\n ).then(({ destCurrencyValue: S, exchangeRate: E }) => {\n u.current = E, g(w, S);\n }).catch(() => {\n });\n }\n }, [i, g]), {\n sender: l.current,\n receiver: c.current,\n exchangeRate: u.current,\n ...p\n };\n};\nconst O9 = \"CurrencyConverter\", f0 = new ke(O9), L9 = ({\n currencyInputSender: e,\n currencyInputReceiver: t,\n ariaLabel: n,\n preferredReceiverCountry: r = \"US\",\n enableReceiverCurrencySelection: a = !1,\n layout: i = \"vertical\",\n className: o = \"\"\n}) => {\n const {\n sender: s,\n receiver: u,\n exchangeRate: l,\n setSourceCurrencyValueToSender: c,\n setSourceCurrencyValueToReceiver: d,\n setSourceCurrencyToSender: p,\n setSourceCurrencyToReceiver: g\n } = zie({ preferredReceiverCountry: r }), v = se(\n f0.getComponentClassName(),\n f0.getPropsValueClassName(\"layout\", i),\n o\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { \"aria-label\": n, className: v, children: [\n /* @__PURE__ */ h.jsxs(\"div\", { className: f0.getElementClassName(\"input-container\"), children: [\n /* @__PURE__ */ h.jsx(\n Z1,\n {\n ...e,\n ...s,\n onChangeCurrencyValue: c,\n onFocus: p,\n id: \"sender\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n OF,\n {\n size: \"sm\",\n \"aria-hidden\": !0,\n className: f0.getElementClassName(\"xfr-icon\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n Z1,\n {\n ...t,\n ...u,\n onChangeCurrencyValue: d,\n onFocus: g,\n enableCurrencySelection: a,\n id: \"receiver\"\n }\n )\n ] }),\n /* @__PURE__ */ h.jsx(\n b9,\n {\n currencyCodeSender: s.currencyCode,\n currencyValueSender: \"1\",\n currencyCodeReceiver: u.currencyCode,\n currencyValueReceiver: l.toString()\n }\n )\n ] });\n};\nL9.displayName = O9;\nconst qie = {\n CurrencyConverter: L9\n}, Gie = [\n \"eyebrowText\",\n \"headline\",\n \"subheading\",\n \"paragraph\",\n \"actionGroup\",\n \"disclosureType\"\n], xg = \"no-ref\", Uie = (e) => Gie.includes(e), Wie = (e) => {\n const t = {}, n = {};\n return e.reduce(\n (r, a) => {\n var l, c, d, p;\n const [i, o] = r, { placement: s, referenceField: u } = a;\n if (s === \"top\")\n i[xg] || (i[xg] = []), (l = i[xg]) == null || l.push(a.component);\n else {\n const g = u;\n Uie(g) && (o[g] || (o[g] = {}), (c = o[g]) != null && c[s] || (o[g][s] = []), (p = (d = o[g]) == null ? void 0 : d[s]) == null || p.push(a.component));\n }\n return [i, o];\n },\n [t, n]\n ), {\n componentInsertsTop: t,\n componentInsertsByRef: n\n };\n}, Kie = (e = \"div\", t = {}) => (n, r) => {\n if (r.length === 0)\n return null;\n const a = [\"inlineStart\", \"inlineEnd\"].includes(n), [i, o] = a ? [ws, {}] : [e, t];\n return r.map((s, u) => {\n const { componentType: l } = s, c = qie[l];\n return c ? /* @__PURE__ */ Xi(i, { ...o, key: `${l}-${u + 1}` }, /* @__PURE__ */ h.jsx(c, { ...s })) : null;\n });\n}, o4 = ({\n customWrapper: e = \"div\",\n customWrapperProps: t = {},\n componentInserts: n,\n shouldDisplayChildren: r,\n children: a\n}) => {\n const i = wt(\n () => Kie(e, t),\n [e, t]\n ), o = typeof r == \"function\" ? r() : !!r;\n if (!n)\n return o ? /* @__PURE__ */ h.jsx(e, { ...t, children: a }) : null;\n if (\"no-ref\" in n && n[\"no-ref\"])\n return /* @__PURE__ */ h.jsx(h.Fragment, { children: i(\"top\", n[\"no-ref\"]) });\n const {\n after: u = [],\n inlineStart: l = [],\n inlineEnd: c = []\n } = n, d = l.length > 0 || c.length > 0, p = o || d;\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n p && /* @__PURE__ */ h.jsxs(e, { ...t, children: [\n i(\"inlineStart\", l),\n a,\n i(\"inlineEnd\", c)\n ] }),\n i(\"after\", u)\n ] });\n};\nconst Yie = 6, gh = \"TextGroup\", Or = new ke(gh), p0 = (e, t) => function({ children: r, ...a }) {\n let i = r;\n return r && t && (i = pK(r)), /* @__PURE__ */ h.jsx(Sr, { ...a, size: e, children: i });\n}, Xie = (...e) => e.filter((n) => /\\S/.test(n)).join(\", \"), Zie = (e, t, n) => e.map((r, a) => {\n const i = `item-${a + 1}`;\n return /* @__PURE__ */ h.jsx(\n pd,\n {\n alignment: t,\n ...r,\n analyticsCompName: n,\n className: Or.getElementClassName(\"data-item\")\n },\n i\n );\n}), Qie = () => /* @__PURE__ */ h.jsx(\"div\", { className: Or.getElementClassName(\"quotes-icon\"), children: /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"52\",\n height: \"36\",\n viewBox: \"0 0 52 36\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M11.3 35.6126C7.78 35.6126 5.1 34.6126 3.26 32.6126C1.42 30.5326 0.5 28.0526 0.5 25.1726V23.3726C0.5 21.1326 0.82 18.9726 1.46 16.8926C2.18 14.7326 3.1 12.6526 4.22 10.6526C5.42 8.65259 6.74 6.77258 8.18 5.01259C9.62 3.25259 11.1 1.65259 12.62 0.212585H23.54C20.5 2.69259 18.1 5.13259 16.34 7.53259C14.58 9.85258 13.26 12.4126 12.38 15.2126H12.62C15.18 15.2126 17.38 16.0526 19.22 17.7326C21.14 19.4126 22.1 21.7326 22.1 24.6926V25.1726C22.1 28.0526 21.18 30.5326 19.34 32.6126C17.5 34.6126 14.82 35.6126 11.3 35.6126ZM39.62 35.6126C36.1 35.6126 33.42 34.6126 31.58 32.6126C29.74 30.5326 28.82 28.0526 28.82 25.1726V23.3726C28.82 21.1326 29.14 18.9726 29.78 16.8926C30.5 14.7326 31.42 12.6526 32.54 10.6526C33.74 8.65259 35.06 6.77258 36.5 5.01259C37.94 3.25259 39.42 1.65259 40.94 0.212585H51.86C48.82 2.69259 46.42 5.13259 44.66 7.53259C42.9 9.85258 41.58 12.4126 40.7 15.2126H40.94C43.5 15.2126 45.7 16.0526 47.54 17.7326C49.46 19.4126 50.42 21.7326 50.42 24.6926V25.1726C50.42 28.0526 49.5 30.5326 47.66 32.6126C45.82 34.6126 43.14 35.6126 39.62 35.6126Z\",\n fill: \"#0070E0\"\n }\n )\n }\n) }), Jie = ({\n actionGroup: e,\n appDownloadGroup: t,\n alignment: n,\n className: r,\n analyticsCompName: a,\n appDownloadGroupWrapper: i,\n buttonGroupWrapper: o,\n additionalElmtProps: s,\n ...u\n}) => t ? /* @__PURE__ */ h.jsx(\n i,\n {\n alignment: n,\n analyticsCompName: a,\n className: r,\n ...s == null ? void 0 : s.actionGroup,\n ...t,\n ...u\n }\n) : e ? /* @__PURE__ */ h.jsx(\n o,\n {\n analyticsCompName: a,\n className: r,\n ...e,\n ...u,\n alignment: n\n }\n) : null, wy = ({\n eyebrowBadge: e,\n eyebrowText: t = \"\",\n eyebrowTag: n = \"p\",\n headline: r = \"\",\n headlineSize: a = \"Headline 1\",\n headlineTag: i = \"h1\",\n subheading: o = \"\",\n subheadingTag: s = \"p\",\n removeOrphanFromHeadline: u,\n paragraph: l = \"\",\n paragraphSize: c = \"Body\",\n alignment: d = \"Start\",\n className: p = \"\",\n collection: g = [],\n disclosureType: v,\n actionGroup: b,\n appDownloadGroup: C,\n analyticsCompName: w = gh,\n type: _ = \"Default\",\n byline: x = {\n name: \"\",\n role: \"\",\n organization: \"\"\n },\n appDownloadGroupWrapper: S,\n buttonGroupWrapper: E,\n disclosureWrapper: N,\n customWrapper: P = \"div\",\n additionalElmtProps: H = {\n container: {},\n children: {},\n actionGroup: {}\n },\n featureList: k,\n componentInserts: Q = [],\n ...I\n}) => {\n const { componentInsertsTop: G, componentInsertsByRef: $ } = wt(\n () => Wie(Q),\n [Q]\n ), { foundationTheme: z } = Ze(lr), B = se(\n Or.getComponentClassName(),\n Or.getPropsValueClassName(\"alignment\", d),\n p\n ), O = _ === \"Quote Block\", D = (b || C) && !O, { name: T = \"\", role: j = \"\", organization: F = \"\" } = x, L = T || j || F, q = t || e, W = Xie(T, j, F), X = d === \"End\" ? \"Start\" : d, de = (Te) => ({\n li: (Le, Ge) => /* @__PURE__ */ h.jsx(Gt, { size: Te, as: \"li\", children: Ge })\n }), Se = (Te) => z === \"compact\" ? ks(Te) : !!Te;\n return /* @__PURE__ */ h.jsxs(P, { className: B, ...H == null ? void 0 : H.container, children: [\n O && Qie(),\n /* @__PURE__ */ h.jsx(\n o4,\n {\n componentInserts: G,\n customWrapper: P,\n customWrapperProps: H == null ? void 0 : H.children\n }\n ),\n q && /* @__PURE__ */ h.jsx(P, { ...H == null ? void 0 : H.children, children: /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: Or.getElementClassName(\"eyebrow-container\"),\n children: [\n e && /* @__PURE__ */ h.jsx(f9, { ...e }),\n t && /* @__PURE__ */ h.jsx(\n an,\n {\n as: n,\n className: Or.getElementClassName(\"eyebrow-text\"),\n content: t,\n customWrapper: p0(\"Title\"),\n analyticsCompName: w,\n analyticsTextSection: \"eyebrow-text\"\n }\n )\n ]\n }\n ) }),\n Se(r) && /* @__PURE__ */ h.jsx(P, { ...H == null ? void 0 : H.children, children: /* @__PURE__ */ h.jsx(\n an,\n {\n as: i,\n className: Or.getElementClassName(\"headline\"),\n content: r,\n customWrapper: p0(\n a,\n u\n ),\n analyticsCompName: w,\n analyticsTextSection: \"headline\"\n }\n ) }),\n Se(o) && /* @__PURE__ */ h.jsx(P, { ...H == null ? void 0 : H.children, children: /* @__PURE__ */ h.jsx(\n an,\n {\n as: s,\n className: Or.getElementClassName(\"subheading\"),\n content: o,\n customWrapper: p0(\"Headline 6\"),\n analyticsCompName: w,\n analyticsTextSection: \"subheading\"\n }\n ) }),\n /* @__PURE__ */ h.jsx(\n o4,\n {\n componentInserts: $.paragraph,\n shouldDisplayChildren: Se(l),\n customWrapper: P,\n customWrapperProps: H == null ? void 0 : H.children,\n children: /* @__PURE__ */ h.jsx(\n dh,\n {\n content: l,\n lineProps: {\n className: Or.getElementClassName(\"paragraph\"),\n customWrapper: ka(c),\n analyticsCompName: w,\n analyticsTextSection: \"paragraph\",\n htmlOverrides: de(c)\n }\n }\n )\n }\n ),\n k && d === \"Start\" && /* @__PURE__ */ h.jsx(\n P,\n {\n ...H == null ? void 0 : H.children,\n className: Or.getElementClassName(\"feature-list-wrapper\"),\n children: /* @__PURE__ */ h.jsx(\n Ls,\n {\n analyticsCompName: w,\n ...k,\n maxItems: Yie\n }\n )\n }\n ),\n g.length > 0 && /* @__PURE__ */ h.jsx(\n P,\n {\n ...H == null ? void 0 : H.children,\n className: Or.getElementClassName(\"data-item-wrapper\"),\n children: Zie(g, X, w)\n }\n ),\n D && /* @__PURE__ */ h.jsx(\n P,\n {\n className: Or.getElementClassName(\"content-button-group\"),\n ...H == null ? void 0 : H.children,\n children: /* @__PURE__ */ h.jsx(\n Jie,\n {\n actionGroup: b,\n appDownloadGroup: C,\n alignment: d,\n analyticsCompName: w,\n className: Or.getElementClassName(\"actionGroup\"),\n appDownloadGroupWrapper: S,\n buttonGroupWrapper: E,\n additionalElmtProps: H,\n ...I\n }\n )\n }\n ),\n O && L && /* @__PURE__ */ h.jsx(\n P,\n {\n className: Or.getElementClassName(\"content-byline\"),\n ...H == null ? void 0 : H.children,\n children: /* @__PURE__ */ h.jsx(\n an,\n {\n className: Or.getElementClassName(\"byline-text\"),\n content: `— ${W}`,\n customWrapper: p0(\"Title\"),\n analyticsCompName: w,\n analyticsTextSection: \"byline-text\",\n as: \"p\"\n }\n )\n }\n ),\n v && /* @__PURE__ */ h.jsx(\n P,\n {\n className: Or.getElementClassName(\"content-disclosure\"),\n ...H == null ? void 0 : H.children,\n children: /* @__PURE__ */ h.jsx(\n N,\n {\n ...v,\n className: Or.getElementClassName(\"legalText\"),\n paragraphSize: \"Caption\",\n analyticsCompName: w,\n analyticsTextSection: \"legalText\"\n }\n )\n }\n )\n ] });\n};\nwy.displayName = gh;\nconst eoe = {\n scrollTriggerOptions: { triggerOnce: !0 },\n orchestration: {\n staggerChildren: tn.constants.Expressive.multiplier.stagger\n }\n}, toe = {\n motionFeel: \"Expressive\",\n motionTypePreset: \"dropMoveUpLeft\",\n motionIntensity: \"xs\"\n}, mn = ({\n isAnimated: e = !0,\n ...t\n}) => {\n const n = {\n isMotionContainer: !0,\n motionOptions: eoe,\n isAnimated: e\n }, r = {\n isMotionChild: !0,\n motionOptions: toe,\n isAnimated: e\n }, a = {\n isAnimated: e\n };\n return /* @__PURE__ */ h.jsx(\n wy,\n {\n customWrapper: Wn,\n appDownloadGroupWrapper: ch,\n buttonGroupWrapper: Ns,\n disclosureWrapper: Ci,\n additionalElmtProps: {\n container: n,\n children: r,\n actionGroup: a\n },\n ...t\n }\n );\n};\nmn.displayName = gh;\nconst k9 = (e) => e.type === \"Image\" ? {\n ...e,\n image: {\n ...e.image,\n dimensions: { minHeight: \"auto\" }\n }\n} : e, noe = (e, t, n) => ({ options: {\n topSpacing: e === \"RadioMinimal\" ? \"4vw\" : t,\n rowsGap: e === \"RadioMinimal\" ? \"none\" : \"default\",\n bottomSpacing: e === \"Default\" ? n : \"0vw\"\n}, lgOptions: {\n bottomSpacing: e === \"RadioMinimal\" ? \"4vw\" : n\n} }), roe = (e, t, n) => {\n const { text: r, type: a, clickEventName: i, mid: o } = e;\n return Nn(\n {\n componentName: t,\n linkText: r,\n linkType: a,\n clickEvent: i,\n ariaLabel: e.ariaLabel,\n mid: o\n },\n n,\n ln.CTA\n );\n}, aoe = {\n mdOptions: { columnStart: \"left-inner\", columnEnd: \"right-inner\" },\n lgOptions: { columnStart: \"inner-3\", columnEnd: \"inner-11\" }\n}, tf = {\n options: { columnStart: \"left-outer\", columnEnd: \"right-outer\" },\n mdOptions: { columnStart: \"left-inner\", columnEnd: \"right-inner\" }\n}, ioe = {\n options: { columnStart: \"left-edge\", columnEnd: \"right-edge\" }\n}, ooe = (e, t) => e === \"Radio\" ? tf : t === \"compact\" && e === \"RadioMinimal\" ? {\n ...tf,\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"inner-12\"\n }\n} : {\n ...tf,\n lgOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"inner-12\"\n },\n twoXlOptions: {\n columnStart: \"inner-3\",\n columnEnd: \"inner-11\"\n }\n}, I9 = {\n scrollTriggerOptions: { triggerOnce: !0 },\n orchestration: {\n staggerChildren: tn.constants.Expressive.multiplier.stagger\n }\n}, D9 = {\n motionFeel: \"Expressive\",\n motionTypePreset: \"dropMoveUpLeft\",\n motionIntensity: \"xs\"\n};\nconst P9 = \"ScreenReaderContent\", soe = new ke(P9), Ty = ({\n as: e = \"div\",\n className: t,\n children: n,\n ...r\n}) => {\n const a = se(soe.getComponentClassName(), t);\n return /* @__PURE__ */ h.jsx(e, { className: a, ...r, children: n });\n};\nTy.displayName = P9;\nconst M9 = \"MediaControl\", tr = new ke(M9), J1 = Lt(\n ({\n className: e,\n playing: t,\n size: n = \"Large\",\n inverse: r = !1,\n outline: a = !1,\n videoId: i = \"\",\n analyticsCompName: o,\n analyticsVideoText: s = \"video\",\n playAriaLabel: u = \"Play video\",\n pauseAriaLabel: l = \"Pause video\",\n hasAriaPopup: c = !1,\n mediaClick: d\n }, p) => {\n const { pageSegment: g } = Ze(Vt), v = t ? l : u, b = t ? \"Started\" : \"Stopped\", C = r && a, w = xI(\n o ? `${o}-media` : \"media\",\n s,\n i,\n b,\n g\n ), _ = se(\n e,\n tr.getElementClassName(\"wrapper\"),\n {\n [tr.getElementClassName(\"wrapper-inverse\")]: r,\n [tr.getElementClassName(\"wrapper-outline\")]: a\n },\n tr.getPropsValueClassName(\"wrapperSize\", n)\n ), x = () => {\n const k = se(\n tr.getElementClassName(\"play-svg\"),\n tr.getPropsValueClassName(\"playSvg\", n)\n ), Q = se(tr.getElementClassName(\"circle\"), {\n [tr.getElementClassName(\"circle-inverse\")]: r\n }), I = se({\n [tr.getElementClassName(\"triangle-inverse\")]: r\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: k,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: Q,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207V0.512207C62.0914 0.512207 80 18.4208 80 40.5122V40.5122C80 62.6036 62.0914 80.5122 40 80.5122V80.5122C17.9086 80.5122 0 62.6036 0 40.5122V40.5122Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: I,\n d: \"M29.3164 50.4622V32.1643C29.3164 28.8916 32.9162 26.8965 35.6914 28.631L50.3297 37.7799C52.9409 39.4119 52.9409 43.2146 50.3297 44.8466L35.6914 53.9955C32.9162 55.73 29.3164 53.7349 29.3164 50.4622Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n }, S = () => {\n const k = se(\n tr.getElementClassName(\"play-svg\"),\n tr.getPropsValueClassName(\"playSvg\", n)\n ), Q = se(tr.getElementClassName(\"circle\"), {\n [tr.getElementClassName(\"circle-inverse\")]: r\n }), I = se({\n [tr.getElementClassName(\"triangle-inverse\")]: r\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: k,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: Q,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207C62.0914 0.512207 80 18.4208 80 40.5122C80 62.6036 62.0914 80.5122 40 80.5122C17.9086 80.5122 0 62.6036 0 40.5122Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: I,\n d: \"M35.191 27.9797H35.5115C37.0161 27.9797 38.2359 29.1073 38.2359 30.4983V52.1279C38.2359 53.5188 37.0161 54.6464 35.5115 54.6464H35.191C33.6864 54.6464 32.4666 53.5188 32.4666 52.1279V30.4983C32.4666 29.1073 33.6864 27.9797 35.191 27.9797ZM46.0884 27.9797H46.4089C47.9136 27.9797 49.1333 29.1073 49.1333 30.4983V52.1279C49.1333 53.5188 47.9136 54.6464 46.4089 54.6464H46.0884C44.5838 54.6464 43.3641 53.5188 43.3641 52.1279V30.4983C43.3641 29.1073 44.5838 27.9797 46.0884 27.9797Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n }, P = t ? (() => {\n const k = se(\n tr.getElementClassName(\"play-svg-outline\"),\n {\n [tr.getElementClassName(\"play-svg-outline-inverse\")]: C\n },\n tr.getPropsValueClassName(\"playSvg\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: k,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M35.191 27.4675H35.5115C37.0161 27.4675 38.2359 28.5951 38.2359 29.986V51.6157C38.2359 53.0066 37.0161 54.1342 35.5115 54.1342H35.191C33.6864 54.1342 32.4666 53.0066 32.4666 51.6157V29.986C32.4666 28.5951 33.6864 27.4675 35.191 27.4675ZM46.0884 27.4675H46.4089C47.9136 27.4675 49.1333 28.5951 49.1333 29.986V51.6157C49.1333 53.0066 47.9136 54.1342 46.4089 54.1342H46.0884C44.5838 54.1342 43.3641 53.0066 43.3641 51.6157V29.986C43.3641 28.5951 44.5838 27.4675 46.0884 27.4675Z\",\n fill: \"#001435\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M40 78C19.0132 78 2 60.9868 2 40H-2C-2 63.196 16.804 82 40 82V78ZM78 40C78 60.9868 60.9868 78 40 78V82C63.196 82 82 63.196 82 40H78ZM40 2C60.9868 2 78 19.0132 78 40H82C82 16.804 63.196 -2 40 -2V2ZM40 -2C16.804 -2 -2 16.804 -2 40H2C2 19.0132 19.0132 2 40 2V-2Z\",\n fill: \"#001435\"\n }\n )\n ]\n }\n );\n })() : (() => {\n const k = se(\n tr.getElementClassName(\"play-svg-outline\"),\n {\n [tr.getElementClassName(\"play-svg-outline-inverse\")]: C\n },\n tr.getPropsValueClassName(\"playSvg\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: k,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M40 78C19.0132 78 2 60.9868 2 40H-2C-2 63.196 16.804 82 40 82V78ZM78 40C78 60.9868 60.9868 78 40 78V82C63.196 82 82 63.196 82 40H78ZM40 2C60.9868 2 78 19.0132 78 40H82C82 16.804 63.196 -2 40 -2V2ZM40 -2C16.804 -2 -2 16.804 -2 40H2C2 19.0132 19.0132 2 40 2V-2Z\",\n fill: \"#001435\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M29.3164 49.95V31.6521C29.3164 28.3794 32.9162 26.3843 35.6914 28.1188L50.3297 37.2677C52.9409 38.8997 52.9409 42.7024 50.3297 44.3344L35.6914 53.4833C32.9162 55.2178 29.3164 53.2227 29.3164 49.95Z\",\n fill: \"#001435\"\n }\n )\n ]\n }\n );\n })(), H = t ? S() : x();\n return /* @__PURE__ */ h.jsx(\n \"button\",\n {\n ref: p,\n \"aria-label\": v,\n \"aria-haspopup\": c,\n type: \"button\",\n \"data-pa-click\": o && w,\n className: _,\n onClick: d,\n children: a ? P : H\n }\n );\n }\n);\nJ1.displayName = M9;\nconst ev = (e) => {\n const t = localStorage.getItem(e);\n return t !== null ? JSON.parse(t) : {};\n}, R9 = (e, t = \"pp-com-youtubeData\") => {\n localStorage.setItem(t, JSON.stringify(e));\n}, s4 = (e = []) => e.map(({ src: n, type: r }) => /* @__PURE__ */ h.jsx(\"source\", { src: n, type: r }, n)), uoe = (e = \"pp-com-youtubeData\") => {\n const t = ev(e);\n let n = {};\n Object.keys(t).length && (Object.keys(t).forEach((r) => {\n const a = (/* @__PURE__ */ new Date()).getTime() > t[r], i = { [r]: t[r] };\n a || (n = { ...n, ...i });\n }), R9(n, e));\n}, loe = \"VideoCard\";\nnew ke(loe);\nconst coe = () => /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"19\",\n height: \"18\",\n viewBox: \"0 0 19 18\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M8.18958 11.4746L13.7066 4.28484C14.0428 3.84668 14.6706 3.76404 15.1087 4.10026C15.5469 4.43647 15.6295 5.06422 15.2933 5.50237L9.07272 13.609C8.70169 14.0926 7.98811 14.1346 7.56292 13.6979L4.21323 10.2578C3.82794 9.86208 3.83637 9.22897 4.23206 8.84369C4.62775 8.4584 5.26086 8.46683 5.64615 8.86252L8.18958 11.4746Z\",\n fill: \"#545D68\"\n }\n )\n }\n);\nconst Ay = \"VideoCard\", Pi = new ke(Ay), B9 = ({\n className: e = \"\",\n analyticsCompName: t = Ay,\n title: n,\n posterImage: r,\n videoPlayedLabel: a = \"\",\n duration: i,\n youTubeId: o,\n ariaLabel: s,\n videoPlayed: u = !1,\n playYouTubeVideo: l\n}) => {\n const { pageSegment: c } = Ze(Vt), d = se(\n Pi.getComponentClassName(),\n pn.getThemeClassName(\"white\"),\n e\n ), p = se(Pi.getElementClassName(\"wrapper\")), g = Nn(\n {\n componentName: t,\n linkText: n,\n linkType: Pa.Tertiary,\n ariaLabel: s\n },\n c,\n ln.CTA\n ), v = Qn(), b = [\"xs\", \"sm\", \"md\", \"lg\"].includes(v);\n if (!o)\n return null;\n const C = () => u ? `${s} ${a.toLowerCase()}.` : s, w = (_) => /* @__PURE__ */ h.jsxs(\"div\", { className: Pi.getElementClassName(\"thumbnail\"), children: [\n u && /* @__PURE__ */ h.jsx(\"div\", { className: Pi.getElementClassName(\"overlay\") }),\n /* @__PURE__ */ h.jsx(\n ur,\n {\n ariaHidden: !0,\n ..._,\n dimensions: {\n minHeight: \"auto\",\n minWidth: \"auto\"\n },\n isAnimated: !1\n }\n ),\n FI()\n ] });\n return /* @__PURE__ */ h.jsx(\n Wn,\n {\n as: \"button\",\n type: \"button\",\n \"aria-label\": C(),\n onClick: () => l(o),\n \"data-pa-click\": t && g,\n className: d,\n motionOptions: SL,\n isAnimated: !1,\n children: /* @__PURE__ */ h.jsx(\"div\", { className: p, children: /* @__PURE__ */ h.jsxs(\"div\", { className: Pi.getElementClassName(\"container\"), children: [\n w(r),\n /* @__PURE__ */ h.jsxs(\"div\", { className: Pi.getElementClassName(\"content\"), children: [\n b ? /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"h6\",\n size: \"Body Bold\",\n className: Pi.getElementClassName(\"text\"),\n children: n\n }\n ) : /* @__PURE__ */ h.jsx(\n Sr,\n {\n as: \"h6\",\n size: \"Headline 6\",\n className: Pi.getElementClassName(\"text\"),\n children: n\n }\n ),\n /* @__PURE__ */ h.jsxs(\"div\", { className: Pi.getElementClassName(\"info\"), children: [\n u && /* @__PURE__ */ h.jsxs(Gt, { size: \"Caption\", as: \"span\", children: [\n coe(),\n a\n ] }),\n i && /* @__PURE__ */ h.jsx(Gt, { size: \"Caption\", as: \"p\", children: i })\n ] })\n ] })\n ] }) })\n }\n );\n};\nB9.displayName = Ay;\nconst F9 = \"EndCardCollection\", Rl = new ke(F9), j9 = ({\n className: e = \"\",\n headline: t,\n replayButton: n,\n returnButton: r,\n collection: a,\n youTubeId: i,\n playedVideosExpiry: o = 30,\n hideModal: s\n}) => {\n const u = \"pp-com-youtubeData\", { foundationFont: l } = Ze(lr), c = se(e, Rl.getComponentClassName(), {\n \"font-quantum-leap\": fp(l)\n }), d = se(\n Rl.getElementClassName(\"redirect-links\"),\n pn.getThemeClassName(\"blue 600\")\n ), [p, g] = ze(\"\"), v = Ue(i), b = Ue(), C = Qn(), w = [\"xs\", \"sm\", \"md\"].includes(C), _ = Object.keys(ev(u));\n We(() => {\n uoe(u);\n }, []);\n const x = (N) => {\n v.current = N;\n const P = (/* @__PURE__ */ new Date()).setDate(\n (/* @__PURE__ */ new Date()).getDate() + o\n ), H = { [N]: P }, Q = { ...ev(u) || {}, ...H };\n R9(Q, u), g(\"\");\n }, S = (N) => /* @__PURE__ */ h.jsx(\n $b,\n {\n roundedStyle: !0,\n videoId: N,\n onReady: (P) => {\n b.current = P;\n },\n onStateChange: (P) => {\n (P === Cs.UNSTARTED || P === Cs.ENDED) && x(N);\n }\n }\n ), E = () => /* @__PURE__ */ h.jsxs(\"div\", { className: d, children: [\n n && /* @__PURE__ */ h.jsx(\n Vb,\n {\n ...n,\n iconType: \"Replay\",\n className: Rl.getElementClassName(\"replay\"),\n onClick: () => g(v.current)\n }\n ),\n r && /* @__PURE__ */ h.jsx(\n ua,\n {\n as: \"button\",\n ...r,\n onClick: () => s && s()\n }\n )\n ] });\n return p ? S(p) : /* @__PURE__ */ h.jsxs(\"div\", { className: c, children: [\n !w && E(),\n /* @__PURE__ */ h.jsxs(\"div\", { className: Rl.getElementClassName(\"main-content\"), children: [\n t && /* @__PURE__ */ h.jsx(\n Sr,\n {\n className: Rl.getElementClassName(\"header\"),\n as: \"h6\",\n size: \"Title\",\n children: t\n }\n ),\n a && a.map((N, P) => /* @__PURE__ */ h.jsx(\n B9,\n {\n ...N,\n playYouTubeVideo: g,\n videoPlayed: _.includes(N.youTubeId)\n },\n `card-${P + 1}`\n ))\n ] }),\n w && E()\n ] });\n};\nj9.displayName = F9;\nconst doe = ({\n isReducedMotion: e,\n autoplay: t\n}) => {\n const n = Ue(null), [r, a] = ze(!1), [i, o] = ze(!1), [s, u] = ze(!1), l = (v) => {\n n.current && (v === \"play\" ? (n.current.play(), u(!0)) : v === \"pause\" && (n.current.pause(), u(!1)));\n }, c = sr((v) => {\n v !== null && (n.current = v, a(!0), v.duration && o(!0));\n }, []), d = n == null ? void 0 : n.current, p = (d == null ? void 0 : d.duration) || 0, g = p && p > 5;\n return We(() => {\n var b, C;\n if (!r || !i)\n return;\n e && g || !t ? (u(!1), (b = n == null ? void 0 : n.current) == null || b.pause()) : (u(!0), (C = n == null ? void 0 : n.current) == null || C.play());\n }, [\n e,\n g,\n t,\n r,\n i\n ]), {\n videoRef: n,\n videoLoadRef: c,\n isLargeDuration: g,\n handleInlineVideoState: l,\n inlineVideoPlaying: s,\n setInlineVideoPlaying: u,\n hasVideoLoaded: r,\n setHasVideoLoaded: a,\n isVideoDurationAvailable: i,\n setIsVideoDurationAvailable: o\n };\n}, foe = ({\n baseVideoCollection: e,\n mdVideoCollection: t,\n imageUrlMobile: n,\n imageUrlDesktop: r,\n altTextMobile: a,\n altTextDesktop: i\n}) => {\n var g, v;\n const o = Qn(), s = [\"xs\", \"sm\"].includes(o);\n let u = [], l = \"\";\n if (!!t || !!e) {\n u = s4(s ? e : t || e);\n const b = (v = (g = u[0]) == null ? void 0 : g.props) == null ? void 0 : v.src;\n l = b == null ? void 0 : b.substring(b.lastIndexOf(\"/\") + 1).replace(/\\..+$/, \"\");\n }\n return {\n viewportType: o,\n videoName: l,\n videoContent: u,\n altTextLabel: s ? a : i,\n posterImageUrl: s ? n : r\n };\n};\nconst $9 = \"InlineVideo\", poe = new ke($9), H9 = Lt(\n ({\n className: e,\n onEnded: t,\n onPlaying: n,\n onLoadedMetadata: r,\n autoPlay: a = !1,\n loop: i = !0,\n posterImageUrl: o,\n ariaLabel: s,\n quality: u = 50,\n children: l,\n ...c\n }, d) => {\n const p = se(e, poe.getComponentClassName()), g = {};\n return s && (g[\"aria-label\"] = s), o && (g.poster = `${o}?quality=${u}`), /* @__PURE__ */ h.jsxs(\n \"video\",\n {\n className: p,\n playsInline: !0,\n muted: !0,\n onEnded: t,\n onPlaying: n,\n onLoadedMetadata: r,\n ref: d,\n autoPlay: a,\n loop: i,\n ...g,\n ...c,\n children: [\n l,\n /* @__PURE__ */ h.jsx(\"track\", { kind: \"captions\" })\n ]\n }\n );\n }\n);\nH9.displayName = $9;\nconst V9 = \"InlineVideoOverlay\", hoe = new ke(V9), z9 = ({\n className: e\n}) => {\n const t = se(e, hoe.getComponentClassName());\n return /* @__PURE__ */ h.jsx(\"div\", { className: t });\n};\nz9.displayName = V9;\nconst vh = \"VideoFrame\", lo = new ke(vh), q9 = ({\n youTubeId: e,\n loading: t = \"lazy\",\n baseVideoCollection: n,\n // Mobile Video\n mdVideoCollection: r,\n // Desktop Video\n ariaLabelCloseButton: a,\n mediaControl: i,\n imageUrlDesktop: o,\n altTextDesktop: s,\n imageUrlMobile: u,\n altTextMobile: l,\n dimensions: c = {\n minHeight: \"auto\",\n minWidth: \"auto\"\n },\n autoplay: d = !0,\n loop: p = !0,\n inverse: g = !0,\n buttonStyle: v = \"Outline\",\n buttonText: b = \"Watch the film\",\n className: C,\n roundedCorners: w = !1,\n lazyLoadProps: _ = {},\n lazyLoadWrapper: x,\n modalWrapper: S,\n overlay: E = !1,\n isReducedMotion: N = !1,\n endCardCollection: P,\n imageServerKnobs: H = {},\n modalAriaLabel: k,\n analyticsCompName: Q = vh\n}) => {\n const I = Ue(), { pageSegment: G } = Ze(Vt), { isShowing: $, toggle: z } = BI(), [B, O] = ze(!1), { videoName: D, videoContent: T, altTextLabel: j, posterImageUrl: F } = foe({\n baseVideoCollection: n,\n mdVideoCollection: r,\n imageUrlMobile: u,\n imageUrlDesktop: o,\n altTextMobile: l,\n altTextDesktop: s\n }), {\n inlineVideoPlaying: L,\n setInlineVideoPlaying: q,\n isLargeDuration: W,\n handleInlineVideoState: X,\n videoLoadRef: de,\n setIsVideoDurationAvailable: Se\n } = doe({\n isReducedMotion: N,\n autoplay: d\n }), Te = !!r || !!n, { quality: Le = 50 } = H, Ge = xI(\n Q ? `${Q}-modal` : \"modal\",\n \"component\",\n \"video\",\n \"Closed\",\n G\n ), Ne = () => B && P ? /* @__PURE__ */ h.jsx(\n j9,\n {\n hideModal: z,\n youTubeId: e || \"\",\n ...P\n }\n ) : /* @__PURE__ */ h.jsx(\n $b,\n {\n roundedStyle: !0,\n videoId: e,\n onReady: (_e) => {\n I.current = _e;\n },\n onStateChange: (_e) => {\n (_e === Cs.UNSTARTED || _e === Cs.ENDED) && O(!0);\n }\n }\n ), ie = se(\n C,\n lo.getComponentClassName(),\n lo.getPropsValueClassName(\"roundedCorners\", w)\n ), Ce = se(\n lo.getElementClassName(\"controls-container\"),\n {\n [lo.getElementClassName(\"video-duration\")]: W\n }\n ), ve = se(lo.getElementClassName(\"body-text\"), {\n [lo.getElementClassName(\"button-text-inverse\")]: g\n }), Ae = /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: lo.getElementClassName(\"wrapper\"),\n onClick: () => {\n X(L ? \"pause\" : \"play\");\n },\n role: \"none\",\n children: [\n E && /* @__PURE__ */ h.jsx(z9, {}),\n Te && /* @__PURE__ */ h.jsx(\n H9,\n {\n ref: de,\n onEnded: () => q(!1),\n onPlaying: () => q(!0),\n onLoadedMetadata: () => {\n Se(!0);\n },\n autoPlay: !1,\n posterImageUrl: F,\n loop: p,\n ariaLabel: j,\n children: T\n }\n ),\n !Te && /* @__PURE__ */ h.jsx(\n \"img\",\n {\n alt: j,\n src: F && `${F}?quality=${Le}`\n }\n ),\n e && /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: lo.getElementClassName(\n \"mainControlsContainer\"\n ),\n children: [\n /* @__PURE__ */ h.jsx(\n J1,\n {\n playAriaLabel: i == null ? void 0 : i.playAriaLabel,\n hasAriaPopup: !0,\n size: \"X-Large\",\n videoId: e,\n inverse: g,\n playing: !1,\n outline: !1,\n mediaClick: (_e) => {\n _e.stopPropagation(), X(\"pause\"), z();\n },\n analyticsCompName: Q\n }\n ),\n /* @__PURE__ */ h.jsx(Gt, { className: ve, children: b })\n ]\n }\n ),\n Te && /* @__PURE__ */ h.jsx(\"div\", { className: Ce, children: /* @__PURE__ */ h.jsx(\n J1,\n {\n mediaClick: (_e) => {\n _e.stopPropagation(), X(L ? \"pause\" : \"play\");\n },\n videoId: D,\n size: \"Small\",\n inverse: g,\n playing: L,\n outline: v === \"Outline\",\n playAriaLabel: i == null ? void 0 : i.playAriaLabel,\n pauseAriaLabel: i == null ? void 0 : i.pauseAriaLabel,\n analyticsCompName: Q\n }\n ) })\n ]\n }\n ),\n /* @__PURE__ */ h.jsx(\n S,\n {\n isShowing: $,\n ariaLabel: k,\n hide: () => {\n z(), O(!1);\n },\n ariaLabelCloseBtn: a,\n clickDataEventCloseBtn: Ge,\n children: Ne()\n }\n )\n ] });\n return t === \"lazy\" ? /* @__PURE__ */ h.jsx(\n x,\n {\n className: ie,\n containerDimensions: c,\n ..._,\n children: Ae\n }\n ) : /* @__PURE__ */ h.jsx(\"div\", { className: ie, children: Ae });\n};\nq9.displayName = vh;\nconst G9 = ({\n motionOptions: e,\n ...t\n}) => {\n const n = Ji();\n return /* @__PURE__ */ h.jsx(\n q9,\n {\n ...t,\n lazyLoadWrapper: oy,\n modalWrapper: jb,\n lazyLoadProps: {\n motionOptions: e\n },\n isReducedMotion: n\n }\n );\n};\nG9.displayName = vh;\nconst moe = ({\n type: e,\n imageFramerWrapper: t,\n videoFrameWrapper: n,\n roundedCorners: r,\n maxSrcSetWidth: a,\n ...i\n}) => {\n if (e === \"Image\") {\n const { image: o, ...s } = i;\n return /* @__PURE__ */ h.jsx(\n t,\n {\n roundedCorners: r,\n maxSrcSetWidth: a,\n ...o,\n ...s\n }\n );\n }\n if (e === \"Video\") {\n const { video: o, ...s } = i;\n return /* @__PURE__ */ h.jsx(n, { roundedCorners: r, ...o, ...s });\n }\n return null;\n}, goe = \"MediaFrame\", Ur = (e = {}) => /* @__PURE__ */ h.jsx(\n moe,\n {\n ...e,\n imageFramerWrapper: ur,\n videoFrameWrapper: G9\n }\n);\nUr.displayName = goe;\nconst voe = {\n \"Below XL\": [\"xs\", \"sm\", \"md\", \"lg\"],\n \"Below LG\": [\"xs\", \"sm\", \"md\"],\n \"Below MD\": [\"xs\", \"sm\"]\n}, Ma = (e) => {\n const t = Qn();\n return e.map((r) => r === \"All Viewports\" ? !0 : r === \"None\" || r === void 0 ? !1 : voe[r].includes(t));\n}, boe = \"ChevronDownIcon\", yoe = new ke(boe), U9 = ({\n ariaLabel: e = \"\",\n className: t = \"\"\n}) => {\n const n = se(yoe.getComponentClassName(), t);\n return /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"18\",\n height: \"18\",\n viewBox: \"0 0 18 18\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-hidden\": !0,\n \"aria-label\": e,\n className: n,\n children: /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M4.29191 5.99309C4.68244 5.60257 5.3156 5.60256 5.70613 5.99309L8.9993 9.28624L12.2926 5.99308C12.6831 5.60256 13.3163 5.60257 13.7068 5.9931C14.0973 6.38363 14.0973 7.0168 13.7068 7.40732L9.71346 11.4005C9.31902 11.7949 8.67954 11.7949 8.28512 11.4005L4.29192 7.4073C3.90139 7.01678 3.90139 6.38362 4.29191 5.99309Z\",\n fill: \"currentColor\"\n }\n )\n }\n );\n}, Coe = \"ChevronUpIcon\", xoe = new ke(Coe), Soe = ({\n ariaLabel: e = \"\",\n className: t = \"\"\n}) => {\n const n = se(xoe.getComponentClassName(), t);\n return /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"18\",\n height: \"18\",\n viewBox: \"0 0 18 18\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-hidden\": !0,\n \"aria-label\": e,\n className: n,\n children: /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M13.7081 11.4073C13.3176 11.7978 12.6844 11.7978 12.2939 11.4073L9.0007 8.11415L5.7074 11.4073C5.31687 11.7978 4.68371 11.7978 4.29319 11.4073C3.90267 11.0168 3.90268 10.3836 4.29322 9.99307L8.28654 5.9999C8.68098 5.60548 9.32046 5.6055 9.71488 5.99991L13.7081 9.99309C14.0986 10.3836 14.0986 11.0168 13.7081 11.4073Z\",\n fill: \"currentColor\"\n }\n )\n }\n );\n};\nconst _oe = {\n \"Chevron Up\": Soe,\n \"Chevron Down\": U9\n}, W9 = \"TruncateButton\", Eoe = new ke(W9), bh = ({\n text: e,\n iconType: t,\n className: n,\n ...r\n}) => {\n const a = t ? _oe[t] : null, i = se(Eoe.getComponentClassName(), n);\n return /* @__PURE__ */ h.jsxs(\"button\", { type: \"button\", className: i, ...r, children: [\n /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body Bold\", children: e }),\n a && /* @__PURE__ */ h.jsx(\"span\", { children: /* @__PURE__ */ h.jsx(a, {}) })\n ] });\n};\nbh.displayName = W9;\nconst woe = (e) => zX(e).map((r) => r == null ? void 0 : r.slice(0, 2).trim()).join(\"\"), Ny = \"TruncatedTextGroup\", h0 = new ke(Ny), K9 = ({\n headline: e,\n headlineSize: t = \"Headline 6\",\n headlineTag: n = \"h4\",\n paragraph: r,\n featureList: a,\n enableTruncation: i,\n truncateButtons: o,\n analyticsCompName: s,\n styles: u = {},\n textGroupWrapper: l,\n textGroupWrapperProps: c = {},\n customWrapper: d = \"div\",\n getCustomWrapperProps: p = () => ({})\n}) => {\n const [g, v] = ze(!1), [b] = Ma([i]);\n We(() => v(!b), [b]);\n const { pageSegment: C } = Ze(Vt), w = (P) => s && Nn(\n {\n componentName: s,\n linkText: P,\n linkType: Pa.Tertiary,\n clickEvent: Ho.Text\n },\n C,\n ln.CTA\n ), _ = () => g ? o.lessTextLabel : o.moreTextLabel, x = se(\n h0.getComponentClassName(),\n u.wrapper\n ), S = se(\n h0.getElementClassName(\"truncate-button\"),\n {\n [h0.getElementClassName(\"truncate-button-expanded\")]: g\n },\n u.truncateButton\n ), E = `truncated-item-${woe(\n a == null ? void 0 : a.list\n )}`, N = p(\n g,\n b\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: x, children: [\n /* @__PURE__ */ h.jsx(\n l,\n {\n headline: e,\n headlineSize: t,\n headlineTag: n,\n paragraph: r,\n analyticsCompName: s,\n ...c\n }\n ),\n b && /* @__PURE__ */ h.jsx(\n bh,\n {\n \"aria-controls\": E,\n \"aria-expanded\": g,\n text: _(),\n iconType: g ? \"Chevron Up\" : \"Chevron Down\",\n onClick: () => v(!g),\n className: S,\n \"data-pa-click\": w(_())\n }\n ),\n a && /* @__PURE__ */ h.jsx(\n d,\n {\n id: E,\n className: h0.getElementClassName(\"feature-list\"),\n ...N,\n children: /* @__PURE__ */ h.jsx(Ls, { analyticsCompName: s, ...a })\n }\n )\n ] });\n};\nK9.displayName = Ny;\nconst Toe = {\n initial: {\n height: 0,\n opacity: 0,\n transitionEnd: {\n display: \"none\"\n }\n },\n animate: {\n height: \"auto\",\n opacity: [0, 1, 1],\n display: \"block\"\n },\n noAnimate: {\n height: \"auto\",\n opacity: 1,\n transitionEnd: {\n display: \"block\"\n }\n }\n}, Aoe = {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n}, Ms = ({\n isAnimated: e = !1,\n ...t\n}) => {\n const { isAboveTheFold: n } = Ze(sb), r = (i) => n && !i ? \"noAnimate\" : \"initial\", a = (i, o) => o ? i ? \"animate\" : \"initial\" : n ? \"noAnimate\" : \"animate\";\n return /* @__PURE__ */ h.jsx(\n K9,\n {\n textGroupWrapper: mn,\n textGroupWrapperProps: {\n isAnimated: e\n },\n customWrapper: Cr.div,\n getCustomWrapperProps: (i, o) => ({\n initial: r(o),\n animate: a(i, o),\n variants: Toe,\n transition: Aoe\n }),\n ...t\n }\n );\n};\nMs.displayName = Ny;\nconst Noe = ({\n hideMedia: e,\n mediaFrame: t,\n truncatedTextGroup: n,\n cta: r,\n classNameGen: a,\n idx: i,\n enableCardLink: o,\n analyticsCompName: s\n}) => {\n const [u, l] = Ma([\n e,\n o\n ]), c = k9(t), { pageSegment: d } = Ze(Vt), p = roe(\n r,\n s,\n d\n ), g = se(a.getElementClassName(\"card-default\"), {\n [a.getElementClassName(\"card-default-0\")]: i === 0,\n [a.getElementClassName(\"card-default-1\")]: i === 1\n }), v = se(\n a.getElementClassName(\"card-default-arrow-link\"),\n \"arrow-icon-active-hover\"\n );\n return /* @__PURE__ */ h.jsxs(\n Wn,\n {\n isMotionChild: !0,\n motionOptions: D9,\n className: g,\n children: [\n l && /* @__PURE__ */ h.jsxs(\n \"a\",\n {\n target: r.target,\n href: r.url,\n className: v,\n \"data-pa-click\": p,\n children: [\n /* @__PURE__ */ h.jsx(Go, { size: \"Large\" }),\n /* @__PURE__ */ h.jsx(Ty, { children: r.text })\n ]\n }\n ),\n !u && /* @__PURE__ */ h.jsx(\n Ur,\n {\n ...c,\n roundedCorners: !0,\n className: a.getElementClassName(\"card-default-media\"),\n isAnimated: !1,\n analyticsCompName: s\n }\n ),\n /* @__PURE__ */ h.jsx(\n Ms,\n {\n ...n,\n analyticsCompName: `${s}-${r.text}`,\n styles: {\n wrapper: a.getElementClassName(\n \"card-default-truncated-group\"\n ),\n truncateButton: a.getElementClassName(\n \"card-default-truncate-button\"\n )\n },\n isAnimated: !1\n }\n ),\n !l && /* @__PURE__ */ h.jsx(\n ua,\n {\n ...r,\n analyticsCompName: s,\n className: a.getElementClassName(\"card-default-button\")\n }\n )\n ]\n }\n );\n}, Ooe = ({\n selectionCards: e,\n classNameGen: t,\n analyticsCompName: n\n}) => /* @__PURE__ */ h.jsx(lt, { ...tf, children: /* @__PURE__ */ h.jsx(\n Wn,\n {\n isMotionContainer: !0,\n motionOptions: I9,\n className: t.getElementClassName(\"cards-container-default\"),\n children: e.map((r, a) => /* @__PURE__ */ h.jsx(\n Noe,\n {\n ...r,\n analyticsCompName: n,\n classNameGen: t,\n idx: a\n },\n `account-selection-card-default-${a + 1}`\n ))\n }\n) });\nconst Loe = \"RadioUnchecked\", u4 = new ke(Loe), koe = ({\n ariaLabel: e = \"\",\n ariaHidden: t = !0\n}) => /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"36\",\n height: \"36\",\n viewBox: \"0 0 36 36\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-label\": e,\n \"aria-hidden\": t,\n className: u4.getComponentClassName(),\n children: /* @__PURE__ */ h.jsx(\n \"rect\",\n {\n x: \"0.75\",\n y: \"0.75\",\n width: \"34.5\",\n height: \"34.5\",\n rx: \"17.25\",\n strokeWidth: \"1.5\",\n className: u4.getElementClassName(\"circle\")\n }\n )\n }\n), Ioe = \"RadioChecked\", Sg = new ke(Ioe), Doe = ({\n ariaLabel: e = \"\",\n ariaHidden: t = !0\n}) => /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n width: \"36\",\n height: \"36\",\n viewBox: \"0 0 36 36\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-label\": e,\n \"aria-hidden\": t,\n className: Sg.getComponentClassName(),\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M0 18C0 8.05888 8.05888 0 18 0C27.9411 0 36 8.05888 36 18C36 27.9411 27.9411 36 18 36C8.05888 36 0 27.9411 0 18Z\",\n className: Sg.getElementClassName(\"outer-circle\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"circle\",\n {\n cx: \"18\",\n cy: \"18\",\n r: \"6\",\n className: Sg.getElementClassName(\"inner-circle\")\n }\n )\n ]\n }\n), Poe = ({\n accountTypeTitle: e,\n accountTypeTitleSize: t = \"Headline 3\",\n hideMedia: n,\n mediaFrame: r,\n version: a,\n truncatedTextGroup: i,\n onCardSelection: o,\n classNameGen: s,\n analyticsCompName: u,\n radioAlignment: l = \"End\",\n checked: c\n}) => {\n const { foundationTheme: d } = Ze(lr), p = d === \"compact\", [g] = Ma([n]), v = k9(r), b = (x) => {\n x.target.checked && o();\n }, C = a === \"RadioMinimal\", w = se(\n s.getElementClassName(\"card-radio-label\"),\n {\n [s.getElementClassName(\"card-radio-minimal-label\")]: C\n },\n s.getPropsValueClassName(\"radio-align\", l)\n ), _ = () => C ? p ? \"Headline 5\" : \"Headline 6\" : t;\n return /* @__PURE__ */ h.jsxs(\n Wn,\n {\n isMotionChild: !0,\n motionOptions: D9,\n className: s.getElementClassName(\"card-radio\"),\n children: [\n /* @__PURE__ */ h.jsxs(\n \"label\",\n {\n htmlFor: `account-selection-${e}`,\n className: w,\n children: [\n /* @__PURE__ */ h.jsx(\n \"input\",\n {\n id: `account-selection-${e}`,\n type: \"radio\",\n name: \"account-selection\",\n value: e,\n checked: c,\n autoComplete: \"off\",\n onChange: b\n }\n ),\n /* @__PURE__ */ h.jsxs(\n \"span\",\n {\n className: s.getElementClassName(\n \"card-radio-custom-input\"\n ),\n children: [\n /* @__PURE__ */ h.jsx(Doe, {}),\n /* @__PURE__ */ h.jsx(koe, {})\n ]\n }\n ),\n /* @__PURE__ */ h.jsx(\n mn,\n {\n headline: e,\n headlineSize: _(),\n headlineTag: \"span\",\n isAnimated: !1\n }\n )\n ]\n }\n ),\n !C && !g && /* @__PURE__ */ h.jsx(\n Ur,\n {\n ...v,\n roundedCorners: !0,\n className: s.getElementClassName(\"card-default-media\"),\n isAnimated: !1,\n analyticsCompName: u\n }\n ),\n /* @__PURE__ */ h.jsx(\n Ms,\n {\n ...i,\n analyticsCompName: `${u}-${e}`,\n headline: void 0,\n isAnimated: !1\n }\n )\n ]\n }\n );\n}, Moe = ({\n selectionCards: e,\n cta: t,\n classNameGen: n,\n analyticsCompName: r,\n version: a,\n stickyAction: i,\n radioAlignment: o\n}) => {\n const { foundationTheme: s } = Ze(lr), [u, l] = ze(0), c = e[u].cta.url, d = e[u].cta.text, p = ooe(\n a,\n s\n ), g = a === \"RadioMinimal\", v = g || i, b = se(\n n.getElementClassName(\"cards-container-radio\"),\n {\n [n.getElementClassName(\"cards-container-radio-minimal\")]: g\n }\n ), C = se(\n n.getElementClassName(\"cards-radio-cta-wrapper-sticky\"),\n {\n [n.getElementClassName(\n \"cards-radio-minimal-cta-wrapper-sticky\"\n )]: a\n }\n ), w = (_) => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(_, {\n [n.getElementClassName(\"cards-inner-use-sticky-action\")]: v\n }),\n children: /* @__PURE__ */ h.jsx(\n ua,\n {\n className: n.getElementClassName(\"card-cta\"),\n ...t,\n url: c,\n analyticsCompName: `${r}-${d}`,\n ariaLabel: d\n }\n )\n }\n );\n return We(() => {\n const _ = sessionStorage.getItem(\"selectedCardIdx\") ?? 0;\n l(+_);\n }, []), We(() => {\n sessionStorage.setItem(\"selectedCardIdx\", u.toString());\n }, [u]), /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsxs(lt, { className: b, ...p, children: [\n /* @__PURE__ */ h.jsx(\n Wn,\n {\n isMotionContainer: !0,\n motionOptions: I9,\n className: n.getElementClassName(\n \"cards-inner-container-radio\"\n ),\n children: e.map((_, x) => /* @__PURE__ */ h.jsx(\n Poe,\n {\n ..._,\n onCardSelection: () => l(x),\n analyticsCompName: r,\n classNameGen: n,\n version: a,\n radioAlignment: o,\n checked: u === x\n },\n `account-selection-card-radio-${_.accountTypeTitle}`\n ))\n }\n ),\n w(\n n.getElementClassName(\"cards-radio-cta-button\")\n )\n ] }),\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: C,\n ...ioe,\n children: w(\n n.getElementClassName(\"cards-radio-cta-button-sticky\")\n )\n }\n )\n ] });\n};\nconst Oy = \"AccountSelection\", ti = new ke(Oy), Roe = ({\n className: e = \"\",\n selectionType: t,\n selectionCards: n,\n textGroup: r,\n topSpacer: a = \"6vw\",\n bottomSpacer: i = \"6vw\",\n analyticsCompName: o = Oy,\n graphicVersionTop: s,\n graphicColorTop: u,\n graphicVersionBottom: l,\n graphicColorBottom: c,\n theme: d = \"neutral 100\",\n ...p\n}) => {\n const g = [\"Default\", \"Radio\", \"RadioMinimal\"].includes(\n t\n ), v = Array.isArray(n) && n.length > 0;\n if (!g || !v || !(typeof r == \"object\"))\n return null;\n const { cta: C, stickyAction: w, radioAlignment: _, toggleEyebrowDesktop: x } = t !== \"Default\" ? p : {}, S = noe(\n t,\n a,\n i\n ), E = t === \"RadioMinimal\", N = se(\n ti.getComponentClassName(),\n e,\n {\n [ti.getElementClassName(\"radio-minimal\")]: E\n }\n ), P = se({\n [ti.getElementClassName(\"radio-headline-text-group-container\")]: t === \"Radio\",\n [ti.getElementClassName(\n \"radio-headline-text-group-container-minimal\"\n )]: E\n }), H = se(\n ti.getElementClassName(\"text-group\"),\n {\n [ti.getElementClassName(\"radio-headline-text-group\")]: t === \"Radio\",\n [ti.getElementClassName(\"radio-headline-text-group-minimal\")]: E,\n [ti.getElementClassName(\n \"radio-headline-text-group-minimal-with-eyebrow\"\n )]: E && x\n }\n ), k = {\n graphicVersionTop: s,\n graphicColorTop: u,\n graphicVersionBottom: l,\n graphicColorBottom: c\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: N,\n theme: d,\n ...S,\n ...k,\n children: [\n /* @__PURE__ */ h.jsx(\n lt,\n {\n ...aoe,\n className: P,\n children: /* @__PURE__ */ h.jsx(\n mn,\n {\n ...r,\n className: H,\n analyticsCompName: o,\n alignment: \"Center\"\n }\n )\n }\n ),\n t === \"Default\" ? /* @__PURE__ */ h.jsx(\n Ooe,\n {\n classNameGen: ti,\n analyticsCompName: o,\n selectionCards: n\n }\n ) : /* @__PURE__ */ h.jsx(\n Moe,\n {\n classNameGen: ti,\n analyticsCompName: o,\n selectionCards: n,\n cta: C,\n stickyAction: w,\n version: t,\n radioAlignment: _\n }\n )\n ]\n }\n );\n};\nRoe.displayName = Oy;\nconst Boe = (e) => e === \"Inner Rail\" ? { start: \"left-inner\", end: \"right-inner\" } : e === \"Outer Rail\" ? { start: \"left-outer\", end: \"right-outer\" } : { start: \"left-edge\", end: \"right-edge\" }, Foe = (e) => {\n const t = Boe(e);\n return {\n options: {\n columnStart: t.start,\n columnEnd: t.end\n }\n };\n};\nconst Ff = \"Action Banner\", es = new ke(Ff), joe = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Gt, { ...r, size: e, children: n });\n}, Ly = ({\n className: e,\n cta: t = {\n ariaLabel: \"\",\n url: \"\",\n size: \"Small\",\n text: \"\",\n target: \"_self\"\n },\n text: n = \"\",\n topSpacer: r = \"2vw\",\n bottomSpacer: a = \"2vw\",\n theme: i = \"blue 500\",\n backgroundTheme: o = \"white\",\n alignment: s = \"Edge Rail\",\n type: u = \"Text and Action\"\n}) => {\n const { pageSegment: l } = Ze(Vt), c = se(es.getComponentClassName()), d = Qn(), p = [\"xs\", \"sm\"].includes(d), g = pn.getThemeClassName(i), v = { ...t, size: p ? \"Small\" : \"Large\" }, b = Foe(s), C = se(\n es.getPropsValueClassName(\"align\", s),\n g,\n e\n ), w = { topSpacing: r, bottomSpacing: a }, _ = se(\n es.getElementClassName(\"paragraph-link\"),\n {\n [es.getElementClassName(\"action-button-link\")]: u === \"Action\"\n }\n ), x = Nn(\n {\n componentName: Ff,\n linkText: n,\n clickEvent: (t == null ? void 0 : t.clickEventName) || Ca.Button\n },\n l,\n ln.CTA\n );\n return /* @__PURE__ */ h.jsx(\n cn,\n {\n options: w,\n className: c,\n theme: o,\n children: /* @__PURE__ */ h.jsx(lt, { ...b, className: C, children: /* @__PURE__ */ h.jsx(\"div\", { className: es.getElementClassName(\"link\"), children: /* @__PURE__ */ h.jsxs(\n \"p\",\n {\n className: es.getElementClassName(\"paragraph-container\"),\n children: [\n u !== \"Action\" && n && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n className: es.getElementClassName(\n \"paragraph-content\"\n ),\n content: n,\n customWrapper: joe(\"Body\")\n }\n ),\n v && /* @__PURE__ */ h.jsx(\n xi,\n {\n type: \"link\",\n className: _,\n \"data-pa-click\": x,\n ...v,\n \"aria-label\": t.ariaLabel || v.text,\n analyticsCompName: Ff\n }\n )\n ]\n }\n ) }) })\n }\n );\n};\nLy.displayName = Ff;\nconst $oe = (e) => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: e ? \"inner-5\" : \"left-inner\",\n columnEnd: e ? \"inner-12\" : \"inner-10\",\n rowStart: 1,\n rowEnd: e ? 1 : 2\n },\n xlOptions: {\n columnStart: e ? \"inner-6\" : \"left-inner\",\n columnEnd: e ? \"inner-10\" : \"inner-5\",\n rowStart: 1,\n rowEnd: e ? 1 : 2\n }\n}), Hoe = (e) => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-10\",\n rowStart: e ? 1 : 2,\n rowEnd: e ? 2 : 3\n },\n xlOptions: {\n columnStart: \"inner-5\",\n columnEnd: \"inner-11\",\n rowStart: 1,\n rowEnd: 2\n }\n}), Voe = (e) => ({\n lgOptions: {\n columnStart: e ? \"inner-2\" : \"inner-10\",\n columnEnd: e ? \"inner-5\" : \"right-inner\",\n rowStart: 1,\n rowEnd: e ? 2 : 3\n },\n xlOptions: {\n columnStart: e ? \"inner-4\" : \"inner-11\",\n columnEnd: e ? \"inner-6\" : \"right-inner\",\n rowStart: 1,\n rowEnd: e ? 1 : 2\n }\n});\nconst cc = \"AppDownloadBanner\", is = new ke(cc), zoe = ({\n imageUrl: e,\n imageAltText: t,\n dataQrUrl: n\n}) => e ? /* @__PURE__ */ h.jsx(\n Dc,\n {\n variant: \"large\",\n dataUrl: n,\n fallbackImageUrl: e,\n className: is.getElementClassName(\"image\"),\n imageAltText: t\n }\n) : null, Y9 = ({\n mediumTextGroup: e,\n baseTextGroup: t,\n appDownload: n,\n imageAltText: r = \"\",\n imageUrl: a = \"\",\n theme: i = \"neutral 100\",\n topSpacer: o = \"4vw\",\n bottomSpacer: s = \"4vw\",\n className: u = \"\",\n dataQrUrl: l,\n ...c\n}) => {\n const d = (n == null ? void 0 : n.variant) === \"QR code only\", p = se(is.getComponentClassName(), u), g = se(is.getElementClassName(\"qrcode\"), {\n [is.getElementClassName(\"withSms\")]: !d,\n [is.getElementClassName(\"qrOnly\")]: d\n }), v = { topSpacing: o, bottomSpacing: s }, b = zoe({\n imageUrl: a,\n imageAltText: r,\n dataQrUrl: l\n });\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: p,\n theme: i,\n options: v,\n ...c,\n children: [\n /* @__PURE__ */ h.jsxs(\n lt,\n {\n ...$oe(d),\n id: \"app-download-banner-text-group-grid\",\n children: [\n e && /* @__PURE__ */ h.jsx(\n mn,\n {\n className: is.getElementClassName(\"mediumTextGroup\"),\n analyticsCompName: cc,\n ...e\n }\n ),\n t && /* @__PURE__ */ h.jsx(\n mn,\n {\n className: is.getElementClassName(\"baseTextGroup\"),\n analyticsCompName: cc,\n ...t\n }\n )\n ]\n }\n ),\n /* @__PURE__ */ h.jsx(\n lt,\n {\n ...Hoe(d),\n id: \"app-download-banner-appdownload-group-grid\",\n children: n && /* @__PURE__ */ h.jsx(\n ch,\n {\n ...n,\n analyticsCompName: cc\n }\n )\n }\n ),\n b && /* @__PURE__ */ h.jsx(\n lt,\n {\n ...Voe(d),\n className: g,\n id: \"app-download-banner-image-grid\",\n children: b\n }\n )\n ]\n }\n );\n};\nY9.displayName = cc;\nconst l4 = () => {\n let e = 16;\n if (typeof window < \"u\") {\n const n = document.getElementsByClassName(\"grid\");\n if (n.length > 0) {\n const [r] = n, o = (getComputedStyle(r).getPropertyValue(\"column-gap\") || \"16\").slice(0, -2);\n e = Number(o);\n }\n }\n return e;\n};\nvar si = /* @__PURE__ */ ((e) => (e.left = \"left\", e.right = \"right\", e))(si || {});\nconst _g = (e) => {\n const t = { x: 0, y: 0 };\n return t.x = e instanceof MouseEvent ? e.clientX : e.changedTouches[0].clientX, t.y = e instanceof MouseEvent ? e.clientY : e.changedTouches[0].clientY, t;\n}, qoe = (e) => {\n var t;\n return e.current && ((t = e == null ? void 0 : e.current) == null ? void 0 : t.offsetWidth) / 3 || typeof window < \"u\" && window.innerWidth / 3;\n}, Goe = 150, Uoe = 500, c4 = \"carousel-dragging-disables-on-click\", Woe = ({\n touchArea: e,\n threshold: t = qoe(e),\n restraint: n = Goe,\n allowedTime: r = Uoe,\n disableMouseDrag: a = !1,\n onTouchEnd: i,\n onTouchMove: o,\n onTouchStart: s\n}) => {\n let u = 0, l = 0, c = 0, d = !1;\n const p = Ue(t);\n p.current = t;\n const g = (C) => {\n d = !0;\n const w = _g(C);\n u = w.x, l = w.y, c = performance.now(), s && s();\n }, v = (C) => {\n var w, _;\n if (e.current && d && o) {\n const x = _g(C), S = x.x - u, E = x.y - l;\n if (S !== 0 && Math.abs(E) <= n && Math.abs(S) > Math.abs(E)) {\n const N = (w = e.current) == null ? void 0 : w.children;\n for (let H = 0; H <= (N == null ? void 0 : N.length); H += 1)\n (_ = N[H]) == null || _.classList.add(c4);\n const P = S < 0 ? \"left\" : \"right\";\n o(P, { x: Math.abs(S), y: 0 });\n }\n }\n }, b = (C) => {\n var E, N;\n const w = _g(C), _ = w.x - u, x = w.y - l, S = performance.now() - c;\n if (e.current) {\n if (d && _ !== 0 && i) {\n const P = (E = e.current) == null ? void 0 : E.children;\n for (let Q = 0; Q <= (P == null ? void 0 : P.length); Q += 1)\n (N = P[Q]) == null || N.classList.remove(c4);\n const H = _ < 0 ? \"left\" : \"right\", k = (Math.abs(_) >= p.current || S <= r) && Math.abs(x) <= n;\n i(H, k);\n }\n d = !1;\n }\n };\n We(() => {\n if (!e.current)\n return;\n const C = e.current;\n return C.addEventListener(\"touchstart\", g, {\n passive: !0\n }), C.addEventListener(\"touchmove\", v, {\n passive: !0\n }), C.addEventListener(\"touchend\", b, {\n passive: !0\n }), a || (C.addEventListener(\"mousedown\", g), C.addEventListener(\"mousemove\", v), C.addEventListener(\"mouseup\", b), C.addEventListener(\"mouseleave\", b)), () => {\n C.removeEventListener(\"touchstart\", g), C.removeEventListener(\"touchmove\", v), C.removeEventListener(\"touchend\", b), a || (C.removeEventListener(\"mousedown\", g), C.removeEventListener(\"mousemove\", v), C.removeEventListener(\"mouseup\", b), C.removeEventListener(\"mouseleave\", b));\n };\n }, [\n a,\n b,\n v,\n g,\n e\n ]);\n}, m0 = (e) => e.getBoundingClientRect(), ky = (e, t, n) => !e || !t || !n ? \"\" : e.replace(\"${item}\", `${t}`).replace(\"${totalItems}\", `${n}`), Koe = (e, t, n, r, a, i, o, s, u, l, c, d) => {\n let p;\n const g = (P, H) => {\n if (P < 1 || P > H)\n return -1;\n let k = (P - 1) * u.current;\n return k + u.current >= r.current.length && (k = r.current.length - u.current), k;\n }, v = () => {\n const { current: P } = d, H = P && P > 0, { current: k } = e;\n if (!H || !k)\n return u.current;\n const Q = k.getBoundingClientRect().width, I = l4(), G = Math.floor(Q / P), $ = Math.floor(\n (Q - (G - 1) * I) / P\n );\n return $ > 0 ? $ : 1;\n }, b = () => {\n const P = Math.ceil(\n r.current.length / u.current\n );\n return [Math.floor(o.current / u.current) + 1, P];\n }, C = () => {\n if (p && cancelAnimationFrame(p), t.current) {\n const P = t.current;\n P.style.transitionDuration = \"0ms\";\n }\n }, w = (P, H = 0) => {\n C();\n const k = () => {\n const Q = t.current;\n Q && (Q.style.transitionDuration = `${H}ms`, Q.style.transform = `translateX(${P}px)`, s.current === \"inProgress\" && requestAnimationFrame(k));\n };\n p = requestAnimationFrame(k);\n };\n return {\n translateTrack: w,\n cancelAnimation: C,\n getNewPageValues: b,\n getNextSlideIdx: g,\n slideTo: ({ slideIdx: P, animationDuration: H = 0 }) => {\n const { current: k } = r, { current: Q } = t, { current: I } = e, { current: G } = u, $ = k[P], z = m0(Q), B = m0($);\n let O = n.current ? z.right - B.right : B.left - z.left;\n P + G === k.length && (O = Q.offsetWidth - I.offsetWidth), n.current || (O = -O), w(O, H);\n },\n resizeCarouselTrack: () => {\n const { current: P } = r, { current: H } = e, { current: k } = u, { current: Q } = c, { current: I } = d, G = H && H.offsetWidth ? H.offsetWidth : 0, $ = l4(), z = I > 0, B = $ * (k - 1), O = z ? I : (G - (B + Q)) / k;\n P.forEach((D, T) => {\n const j = D;\n j.style.width = `${O / 16}rem`, T > 0 && (j.style.marginInlineStart = `${$ / 16}rem`);\n });\n },\n getTrackTranslateX: () => {\n const P = m0(t.current), H = m0(e.current);\n return n.current ? P.right - H.right : P.left - H.left;\n },\n getVisibleSlideIndices: (P) => Array(u.current).fill(null).map((k, Q) => {\n let I = (P - 1) * u.current;\n return r.current.length > 0 && I + u.current >= r.current.length && (I = r.current.length - u.current), I + Q;\n }),\n doesSlideExist: (P) => {\n let H = !1;\n return n.current ? H = P === si.left && !i.current || P === si.right && !a.current : H = P === si.right && !i.current || P === si.left && !a.current, !H;\n },\n calcSlidesPerView: v\n };\n};\nconst yh = \"Carousel\", Yoe = ({\n className: e,\n ariaLabel: t,\n pageLabel: n,\n currentPage: r,\n totalPages: a,\n backgroundColor: i,\n disableCarousel: o = !1,\n children: s,\n ...u\n}) => {\n const l = CI(i), c = se(\n \"carousel\",\n l,\n { \"carousel-disabled\": o },\n e\n ), d = n && ky(n, r, a);\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n \"aria-label\": t,\n role: \"region\",\n className: c,\n ...u,\n children: [\n s ? /* @__PURE__ */ h.jsx(\"div\", { children: s }) : null,\n /* @__PURE__ */ h.jsx(\"span\", { className: \"carousel-notification\", \"aria-live\": \"polite\", \"aria-atomic\": !0, children: d })\n ]\n }\n );\n}, X9 = vt.forwardRef(({ className: e, children: t, ...n }, r) => {\n const a = se(\n \"carousel-track-container\",\n e\n );\n return /* @__PURE__ */ h.jsx(\"div\", { className: a, ref: r, ...n, children: t });\n});\nX9.displayName = \"CarouselTrackContainer\";\nconst Z9 = vt.forwardRef(\n ({ className: e, backgroundColor: t = \"white\", children: n, ...r }, a) => {\n const i = CI(t), o = se(\"carousel-track\", i, e);\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n role: \"presentation\",\n className: o,\n ref: a,\n ...r,\n children: n\n }\n );\n }\n);\nZ9.displayName = \"CarouselTrack\";\nconst Xoe = ({\n className: e,\n slideLabel: t,\n isVisible: n,\n slideIdx: r,\n totalSlides: a,\n children: i,\n ...o\n}) => {\n const s = se(\"carousel-slide\", e), { pageSegment: u } = Ze(Vt), l = Nn(\n {\n componentName: yh,\n linkText: \"\",\n clickEvent: rd.CarouselSlideButton\n },\n u,\n ln.CTA\n ), c = ky(\n t,\n r + 1,\n a\n );\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n role: \"group\",\n \"aria-roledescription\": \"slide\",\n \"aria-label\": c,\n \"aria-hidden\": !n,\n className: s,\n \"data-pa-click\": l,\n ...o,\n children: i\n }\n );\n}, Zoe = ({\n className: e,\n ariaLabel: t,\n hasNextSlide: n,\n onClick: r,\n children: a,\n ...i\n}) => {\n const o = se(\n \"carousel-button\",\n \"next-button\",\n e\n ), { pageSegment: s } = Ze(Vt), u = Nn(\n {\n componentName: yh,\n linkText: \"\",\n clickEvent: rd.CarouselNextButton\n },\n s,\n ln.CTA\n );\n return n ? /* @__PURE__ */ h.jsx(\n \"button\",\n {\n \"aria-label\": t,\n \"aria-disabled\": !n,\n className: o,\n \"data-pa-click\": u,\n onClick: r,\n type: \"button\",\n ...i,\n children: a\n }\n ) : null;\n}, Qoe = ({\n className: e,\n ariaLabel: t,\n hasPrevSlide: n,\n onClick: r,\n children: a,\n ...i\n}) => {\n const o = se(\n \"carousel-button\",\n \"previous-button\",\n e\n ), { pageSegment: s } = Ze(Vt), u = Nn(\n {\n componentName: yh,\n linkText: \"\",\n clickEvent: rd.CarouselPreviousButton\n },\n s,\n ln.CTA\n );\n return n ? /* @__PURE__ */ h.jsx(\n \"button\",\n {\n \"aria-label\": t,\n \"aria-disabled\": !n,\n \"data-pa-click\": u,\n className: o,\n disabled: !n,\n onClick: r,\n type: \"button\",\n ...i,\n children: a\n }\n ) : null;\n}, Joe = ({\n ariaLabel: e,\n className: t,\n btnClass: n,\n totalPages: r,\n currentPage: a,\n slideToPage: i,\n ...o\n}) => {\n const s = se(\"page-nav-container\", t), { pageSegment: u } = Ze(Vt), l = Nn(\n {\n componentName: yh,\n linkText: \"\",\n clickEvent: rd.CarouselIndicatorButton\n },\n u,\n ln.CTA\n ), c = (d, p) => {\n (d.key === \"Enter\" || d.key === \"NumpadEnter\") && i(p + 1);\n };\n return /* @__PURE__ */ h.jsx(\"div\", { className: s, ...o, children: Array(r).fill(\"\").map((d, p) => {\n const g = p + 1 === a, v = se(\n \"carousel-indicator\",\n {\n activeButton: g\n },\n n\n ), b = ky(\n e,\n p + 1,\n r\n );\n return /* @__PURE__ */ h.jsx(\n \"button\",\n {\n \"aria-label\": b,\n \"aria-current\": g,\n \"aria-disabled\": g,\n \"data-pa-click\": l,\n className: v,\n onMouseDown: () => i(p + 1),\n onKeyDown: (C) => c(C, p),\n type: \"button\",\n children: /* @__PURE__ */ h.jsx(\"span\", {})\n },\n `pageNavBtn-${p + 1}`\n );\n }) });\n}, d4 = ({ direction: e = \"right\" }) => /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n width: \"80\",\n height: \"80\",\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n className: \"arrow-icon\",\n style: {\n transform: `scaleX(${e === \"left\" ? -1 : 1})`,\n display: \"block\"\n },\n children: [\n /* @__PURE__ */ h.jsx(\"rect\", { width: \"80\", height: \"80\", rx: \"40\", fill: \"white\" }),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M42.9523 51.1791C42.3015 50.5282 42.3015 49.4729 42.9523 48.8221L51.7729 40.0016L42.9533 31.1967C42.3019 30.5464 42.301 29.4911 42.9514 28.8397C43.6017 28.1883 44.657 28.1874 45.3084 28.8378L55.3084 38.8211C55.6214 39.1336 55.7973 39.5576 55.7975 39.9999C55.7977 40.4422 55.6221 40.8664 55.3094 41.1791L45.3094 51.1791C44.6585 51.83 43.6032 51.83 42.9523 51.1791Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M55.7975 39.9999C55.7975 40.9204 55.0513 41.6673 54.1309 41.6673L27.5309 41.6673C26.6105 41.6673 25.8643 40.9211 25.8643 40.0006C25.8643 39.0801 26.6105 38.3339 27.5309 38.3339L54.1309 38.3339C55.0513 38.3339 55.7975 39.0794 55.7975 39.9999Z\",\n fill: \"#003087\"\n }\n )\n ]\n }\n), f4 = {}, p4 = Object.keys(bn).reverse().concat([\"xs\"]), ese = (e) => {\n const [t, n] = ze(f4), r = Qn();\n return We(() => {\n const i = p4.slice(\n p4.indexOf(r)\n ).find(\n (s) => !!e[s]\n ), o = i && e[i];\n n(o || f4);\n }, [r]), t;\n}, tse = (e, t) => {\n const n = Ue(null);\n We(() => {\n if (!e.current)\n return;\n n.current && n.current.unobserve(e.current), n.current = new ResizeObserver(t), n.current.observe(e.current);\n const r = n.current, a = e.current;\n return () => r && r.unobserve(a);\n }, []);\n}, nse = 1 / 30, rse = 500, ase = 150, tv = 1, nv = 30, rv = 0, ise = (e, t, n, r = {}, a, i, o, s, u) => {\n const [l, c] = ze(1), [d, p] = ze(\n Math.ceil(n / i)\n ), [g, v] = ze(null), b = Ue([]), C = Ue(!0), w = Ue(!1), _ = Ue(\"end\"), x = Ue(a), S = Ue(i), E = Ue(o), N = Ue(s), P = Ue(0), H = Ue(0), k = Ue(!1), { isRTL: Q } = Ze(Vt);\n k.current = Q;\n const {\n slideTo: I,\n resizeCarouselTrack: G,\n getNextSlideIdx: $,\n translateTrack: z,\n cancelAnimation: B,\n getNewPageValues: O,\n getTrackTranslateX: D,\n getVisibleSlideIndices: T,\n doesSlideExist: j,\n calcSlidesPerView: F\n } = wt(\n () => Koe(\n e,\n t,\n k,\n b,\n C,\n w,\n P,\n _,\n S,\n E,\n N,\n x\n ),\n []\n ), L = () => {\n C.current && c((Ne) => Ne + 1);\n }, q = () => {\n w.current && c((Ne) => Ne - 1);\n }, W = (Ne) => {\n Ne !== l && c(Ne);\n };\n We(() => {\n if (!t.current || !e.current)\n return;\n const Ne = t.current;\n if (b.current = Array.from(Ne.children), b.current.length <= 0)\n return;\n S.current = F(), p(Math.ceil(b.current.length / S.current)), c(1);\n const ie = () => {\n _.current = \"inProgress\";\n }, Ce = () => {\n _.current = \"end\";\n }, ve = () => {\n _.current = \"end\", B();\n };\n return Ne.addEventListener(\"transitionstart\", ie), Ne.addEventListener(\"transitioncancel\", Ce), Ne.addEventListener(\"transitionend\", ve), () => {\n Ne.removeEventListener(\"transitionend\", ie), Ne.removeEventListener(\"transitioncancel\", Ce), Ne.removeEventListener(\"transitionend\", ve);\n };\n }, []), We(() => {\n b.current.length <= 0 || (P.current = $(l, d), P.current >= 0 && I({\n slideIdx: P.current,\n animationDuration: rse\n }));\n }, [l]), Woe({\n touchArea: e,\n onTouchStart: () => {\n H.current = D();\n },\n onTouchMove: (Ne, ie) => {\n const Ce = j(Ne) ? 1 : nse;\n let ve = ie && ie.x * Ce;\n Ne === si.left && (ve = -ve);\n const _e = H.current + ve;\n z(_e);\n },\n onTouchEnd: (Ne, ie) => {\n if (![\n si.left,\n si.right\n ].includes(Ne))\n return;\n const ve = () => I({\n slideIdx: P.current,\n animationDuration: ase\n });\n return !ie || ie && !j(Ne) ? ve() : Ne === si.left && !k.current || Ne === si.right && k.current ? L() : q();\n },\n ...r\n });\n const Te = ese(u);\n We(() => {\n S.current = (Te == null ? void 0 : Te.slidesPerView) || i, E.current = (Te == null ? void 0 : Te.spaceBetween) || o, N.current = (Te == null ? void 0 : Te.spacerSize) || s, x.current = (Te == null ? void 0 : Te.slideWidth) || a, S.current < 1 && (S.current = tv), E.current < 0 && (E.current = nv), N.current < 0 && (N.current = rv), S.current = F(), G();\n const [Ne = 1, ie = 1] = O();\n c(Ne), p(ie);\n }, [Te, i, o, s, a]), tse(e, (Ne) => {\n v(Ne[0].contentRect.width);\n }), We(() => {\n if (b.current.length <= 0)\n return;\n S.current = F(), G();\n const [Ne = 1, ie = 1] = O();\n c(Ne), p(ie), I({ slideIdx: P.current });\n }, [g]), We(() => {\n if (!t.current)\n return;\n const Ne = t.current;\n b.current = Array.from(Ne.children), !(b.current.length <= 0) && (S.current = F(), G(), p(Math.ceil(b.current.length / S.current)), c(1));\n }, [n, t]), C.current = l >= 1 && l < d, w.current = l > 1 && l <= d;\n const Ge = T(l);\n return {\n totalPages: d,\n hasPrevSlide: w.current,\n hasNextSlide: C.current,\n slideToNextPage: L,\n slideToPrevPage: q,\n slideToPage: W,\n currentPage: l,\n visibleSlides: Ge\n };\n}, ose = \"Carousel\", hd = ({\n items: e = [],\n renderItem: t,\n carouselDetails: n,\n slidesPerView: r = tv,\n spaceBetween: a = nv,\n spacerSize: i = rv,\n slideWidth: o,\n swipeOptions: s = {},\n classes: u = {},\n breakpoints: l = {},\n backgroundColor: c = \"white\"\n}) => {\n const d = Ue(null), p = Ue(null), g = o || 0, v = r < 1 ? tv : r, b = a < 0 ? nv : a, C = i < 0 ? rv : i, {\n totalPages: w,\n currentPage: _,\n hasNextSlide: x,\n hasPrevSlide: S,\n slideToNextPage: E,\n slideToPrevPage: N,\n slideToPage: P,\n visibleSlides: H\n } = ise(\n d,\n p,\n e.length,\n s,\n g,\n v,\n b,\n C,\n l\n ), k = S || x;\n return /* @__PURE__ */ h.jsx(\n Yoe,\n {\n ariaLabel: n == null ? void 0 : n.ariaLabel,\n pageLabel: n == null ? void 0 : n.pageLabel,\n currentPage: _,\n totalPages: w,\n className: u.container,\n backgroundColor: c,\n disableCarousel: !k,\n children: /* @__PURE__ */ h.jsxs(\n X9,\n {\n className: u.trackContainer,\n ref: d,\n children: [\n /* @__PURE__ */ h.jsx(\n Qoe,\n {\n ariaLabel: n == null ? void 0 : n.prevButtonLabel,\n className: u.prevBtn,\n hasPrevSlide: S,\n onClick: N,\n children: /* @__PURE__ */ h.jsx(d4, { direction: \"left\" })\n }\n ),\n /* @__PURE__ */ h.jsx(\n Z9,\n {\n className: u.track,\n backgroundColor: c,\n ref: p,\n children: e.length > 0 && // eslint-disable-next-line @typescript-eslint/no-explicit-any\n e.map((Q, I) => /* @__PURE__ */ h.jsx(\n Xoe,\n {\n slideLabel: n == null ? void 0 : n.slideLabel,\n slideIdx: I,\n totalSlides: e.length,\n className: u.slide,\n isVisible: H.includes(I),\n children: t && t(Q, I)\n },\n `CarouselSlide-${I + 1}`\n ))\n }\n ),\n /* @__PURE__ */ h.jsx(\n Zoe,\n {\n ariaLabel: n == null ? void 0 : n.nextButtonLabel,\n className: u.nextBtn,\n hasNextSlide: x,\n onClick: E,\n children: /* @__PURE__ */ h.jsx(d4, {})\n }\n ),\n /* @__PURE__ */ h.jsx(\n Joe,\n {\n ariaLabel: n == null ? void 0 : n.pageNavButtonLabel,\n className: u.navContainer,\n btnClass: u.navBtn ?? \"\",\n totalPages: w,\n currentPage: _,\n slideToPage: P\n }\n )\n ]\n }\n )\n }\n );\n};\nhd.displayName = ose;\nconst Q9 = \"ArticleCardSection\", Iy = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Sr, { ...r, size: e, children: n });\n}, J9 = ({\n topicGroup: e,\n className: t\n}) => {\n var i, o, s;\n const n = ((i = e == null ? void 0 : e.category) == null ? void 0 : i.category) && /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body\", children: e.category.category }), r = (o = e == null ? void 0 : e.segment) == null ? void 0 : o.segment;\n if (r)\n return /* @__PURE__ */ h.jsxs(\"div\", { className: t, children: [\n /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body\", children: r }),\n n\n ] });\n const a = (s = e == null ? void 0 : e.topic) == null ? void 0 : s.topic;\n return /* @__PURE__ */ h.jsxs(\"div\", { className: t, children: [\n n,\n !!a && /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body\", children: a })\n ] });\n}, sse = (e, t, n) => {\n var o, s, u;\n let r = (o = t == null ? void 0 : t.authorGroupLabels) == null ? void 0 : o.authorSpeakerLabel, a = t == null ? void 0 : t.title, i = t == null ? void 0 : t.authorName;\n return e === \"video\" && n ? (r = (s = n == null ? void 0 : n.authorGroupLabels) == null ? void 0 : s.guestSpeakerLabel, i = n == null ? void 0 : n.authorName, a = n == null ? void 0 : n.title) : e === \"podcast\" && t && (r = (u = t == null ? void 0 : t.authorGroupLabels) == null ? void 0 : u.hostSpeakerLabel), { speakerLabel: r, speakerName: i, speakerTitle: a };\n};\nconst use = \"AuthorInfoSection\", Eg = new ke(use), lse = ({\n articleType: e,\n author: t,\n guest: n\n}) => {\n const { speakerLabel: r, speakerName: a, speakerTitle: i } = sse(\n e,\n t,\n n\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: Eg.getElementClassName(\"speaker\"), children: [\n r && /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"span\",\n size: \"Body\",\n className: Eg.getElementClassName(\"speaker-label\"),\n children: r\n }\n ),\n a && /* @__PURE__ */ h.jsxs(\n Gt,\n {\n as: \"span\",\n size: \"Body Bold\",\n className: Eg.getElementClassName(\"speaker-info\"),\n children: [\n a,\n i && /* @__PURE__ */ h.jsx(\"span\", { children: i })\n ]\n }\n )\n ] });\n};\nconst cse = \"FeatureCard\", co = new ke(cse), dse = ({\n date: e = \"\",\n className: t = \"\",\n formattedDate: n = \"\"\n}) => /* @__PURE__ */ h.jsx(Gt, { as: \"div\", size: \"Body Large\", className: t, children: n || l9(e) }), fse = ({\n topicGroup: e,\n headline: t,\n summary: n,\n // TODO: Update content model to replace \"date\" with \"formattedDate\"\n date: r,\n formattedDate: a,\n guest: i,\n author: o,\n ctaLabel: s = \"\",\n className: u,\n articleType: l,\n articlePodcastLength: c\n}) => {\n const d = se(co.getComponentClassName(), u), p = {\n buttonStyle: \"inline\",\n url: \"#!\",\n text: s,\n target: \"_blank\",\n size: \"Large\",\n clickEventName: Ca.Button,\n ariaLabel: s,\n type: \"span\"\n }, g = l === \"video\", v = Qn(), b = [\"xs\", \"sm\", \"md\"].includes(v);\n return /* @__PURE__ */ h.jsxs(\"div\", { className: d, children: [\n /* @__PURE__ */ h.jsxs(\"div\", { children: [\n e && J9({\n topicGroup: e,\n className: se(co.getElementClassName(\"list-item\"))\n }),\n (t == null ? void 0 : t.headline) && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"h2\",\n className: co.getElementClassName(\"headline\"),\n content: t.headline,\n customWrapper: Iy(\"Headline 6\")\n }\n ),\n (r || a) && dse({\n date: r,\n formattedDate: a,\n className: se(co.getElementClassName(\"time\"))\n }),\n (n == null ? void 0 : n.paragraph) && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"p\",\n content: n.paragraph,\n className: se(\n co.getElementClassName(\"paragraph\"),\n (i || o) && co.getElementClassName(\"paragraph-four-line-clamp\")\n ),\n customWrapper: ka(\"Body\")\n }\n ),\n c && g && /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"span\",\n size: \"Body\",\n className: co.getElementClassName(\"duration\"),\n children: c\n }\n )\n ] }),\n /* @__PURE__ */ h.jsxs(\"div\", { children: [\n (i || o) && /* @__PURE__ */ h.jsx(\n lse,\n {\n articleType: l,\n guest: i,\n author: o\n }\n ),\n s && /* @__PURE__ */ h.jsx(\n xi,\n {\n ...p,\n className: co.getElementClassName(\"button\"),\n size: b ? \"Small\" : \"Large\"\n }\n )\n ] })\n ] });\n}, pse = (e, t, n) => {\n let r = 0;\n return e && t ? r = n === \"Large\" ? 2 : 1 : (e || t) && (r = n === \"Large\" ? 1 : 0), `headline-${3 - r}-line-clamp`;\n};\nconst hse = \"StandardCard\", za = new ke(hse), mse = ({\n date: e = \"\",\n formattedDate: t\n}) => /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body\", children: t || l9(e, !0) }), gse = ({\n topicGroup: e,\n headline: t,\n guest: n,\n articleType: r,\n articleTypeLabel: a,\n author: i,\n date: o,\n formattedDate: s,\n articleTimeToRead: u,\n cardSize: l = \"Small\",\n className: c\n}) => {\n var v, b, C;\n const d = se(za.getComponentClassName(), c), p = se(\n // TODO: Check if this class name is needed\n l === \"Large\" ? za.getElementClassName(`headline-${l == null ? void 0 : l.toLowerCase()}`) : za.getElementClassName(\"headline\"),\n // TODO: Check if this class name is needed\n za.getElementClassName(\n pse(n == null ? void 0 : n.authorName, i == null ? void 0 : i.authorName, l)\n )\n ), g = r === \"video\" || r === \"podcast\";\n return /* @__PURE__ */ h.jsxs(\"div\", { className: d, children: [\n /* @__PURE__ */ h.jsxs(\"div\", { children: [\n e && J9({\n topicGroup: e,\n className: se(za.getElementClassName(\"list-item\"))\n }),\n (t == null ? void 0 : t.headline) && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n className: p,\n content: t.headline,\n customWrapper: Iy(\"Headline 6\")\n }\n ),\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: se(\n za.getElementClassName(\"speaker\"),\n za.getElementClassName(\n `speaker-${l == null ? void 0 : l.toLowerCase()}`\n )\n ),\n children: [\n i && /* @__PURE__ */ h.jsxs(Gt, { as: \"span\", size: \"Body\", children: [\n g ? (v = i.authorGroupLabels) == null ? void 0 : v.hostSpeakerLabel : (b = i.authorGroupLabels) == null ? void 0 : b.authorSpeakerLabel,\n i.authorName && /* @__PURE__ */ h.jsx(\n \"span\",\n {\n className: za.getElementClassName(\"host-speaker\"),\n children: i.authorName\n }\n )\n ] }),\n n && /* @__PURE__ */ h.jsxs(Gt, { as: \"span\", size: \"Body\", children: [\n (C = n.authorGroupLabels) == null ? void 0 : C.guestSpeakerLabel,\n n.authorName && /* @__PURE__ */ h.jsx(\n \"span\",\n {\n className: za.getElementClassName(\"guest-speaker\"),\n children: n.authorName\n }\n )\n ] })\n ]\n }\n )\n ] }),\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: se(\n za.getElementClassName(\"list-item\"),\n za.getElementClassName(\"footer-list-item\")\n ),\n children: [\n (o || s) && mse({\n date: o,\n formattedDate: s\n }),\n (a || r) && /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body\", children: a || Kq(r) }),\n u && /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Body\", children: u })\n ]\n }\n )\n ] });\n};\nconst eP = \"ArticleCardTemplate\", fo = new ke(eP), vse = ({\n headlineStr: e = \"\",\n analyticsCompName: t,\n pageSegment: n,\n clickEvent: r\n}) => t ? Nn(\n {\n componentName: t,\n linkText: e,\n clickEvent: r\n },\n n,\n ln.CTA\n) : \"\", bse = ({\n headlineStr: e = \"\",\n analyticsCompName: t,\n pageSegment: n,\n isFeatureCard: r = !1,\n articleRelativeUrl: a = \"\",\n className: i = \"\",\n date: o,\n useCardDateAttribute: s,\n host: u,\n country: l,\n clientInfo: c\n}) => {\n const d = vse({\n headlineStr: e,\n analyticsCompName: t,\n pageSegment: n,\n clickEvent: r ? Ca.FeatureCard : Ca.StandardCard\n }), p = {\n href: eh(\n c == null ? void 0 : c.clientType,\n a,\n \"\",\n u,\n l\n ),\n className: i,\n \"data-pa-click\": d,\n \"pa-marked\": \"1\"\n };\n return !r && s && c9(o) && (p[\"data-article-date\"] = Yae(o)), p;\n}, yse = ({\n image: e,\n lazyLoad: t,\n dimensions: n,\n className: r\n}) => e ? /* @__PURE__ */ h.jsx(\n ur,\n {\n className: r,\n baseImage: e.baseImage,\n imageAltText: e.imageAltText,\n dimensions: n,\n loading: t ? \"lazy\" : \"eager\",\n motionOptions: {\n motionTypePreset: \"appear\"\n }\n }\n) : null, Dy = ({\n className: e,\n image: t,\n headline: n,\n topicGroup: r,\n date: a,\n datesObj: i,\n ctaLabel: o,\n articleType: s,\n articleTypeLabel: u,\n author: l,\n articleTimeToRead: c,\n articleRelativeUrl: d,\n lazyLoad: p = !0,\n analyticsCompName: g = eP,\n useCardDateAttribute: v,\n type: b = \"standard\",\n guest: C,\n summary: w,\n articlePodcastLength: _,\n theme: x = \"white\",\n cardTheme: S\n}) => {\n const { pageSegment: E, clientInfo: N, host: P, country: H } = Ze(Vt), k = b === \"feature\";\n let Q = \"\";\n n.headline && (Q = yy.documentToPlainTextString(n.headline));\n const I = se(e, \"article-card-anchor\", {\n [fo.getElementClassName(\"item\")]: !k,\n [fo.getElementClassName(\"feature-card-item\")]: k\n }), G = se({\n [fo.getElementClassName(\"image-frame\")]: !k,\n [fo.getElementClassName(\"feature-card-image-frame\")]: k\n }), $ = se({\n imageFrameClasses: G,\n [fo.getElementClassName(\"image-frame-placeholder\")]: !k,\n [fo.getElementClassName(\"feature-card-image-placeholder\")]: k\n }), z = se(\n fo.getElementClassName(\"feature-card-editorial-item\"),\n pn.getThemeClassName(x)\n ), B = se(\n fo.getElementClassName(\"card\"),\n S && pn.getThemeClassName(S)\n );\n let O = { minWidth: \"100%\", minHeight: \"12.8rem\" };\n k && (O = { minWidth: \"auto\", minHeight: \"17.57rem\" });\n const D = bse({\n headlineStr: Q,\n articleRelativeUrl: d,\n date: a,\n useCardDateAttribute: v,\n isFeatureCard: k,\n pageSegment: E,\n className: I,\n analyticsCompName: g,\n host: P,\n country: H,\n clientInfo: N\n });\n return /* @__PURE__ */ h.jsxs(\"a\", { ...D, \"aria-label\": Q, children: [\n (t == null ? void 0 : t.baseImage) && yse({\n image: t,\n lazyLoad: p,\n className: G,\n dimensions: O\n }),\n !(t != null && t.baseImage) && /* @__PURE__ */ h.jsx(\"div\", { className: $ }),\n k ? /* @__PURE__ */ h.jsx(\n fse,\n {\n className: z,\n headline: n,\n topicGroup: r,\n articlePodcastLength: _,\n date: a,\n guest: C,\n author: l,\n ctaLabel: o,\n articleType: s,\n summary: w,\n formattedDate: i == null ? void 0 : i.shortDate\n }\n ) : /* @__PURE__ */ h.jsx(\n gse,\n {\n className: B,\n headline: n,\n topicGroup: r,\n date: a,\n formattedDate: i == null ? void 0 : i.shortDate,\n author: l,\n ctaLabel: o,\n articleType: s,\n articleTypeLabel: u,\n articleTimeToRead: c,\n cardSize: \"Small\"\n }\n )\n ] });\n}, Cse = (e) => ({\n options: {\n ...e,\n rowsGap: \"none\"\n }\n}), tP = ({\n className: e = \"\",\n lazyLoad: t = !0,\n analyticsCompName: n,\n useCardDateAttribute: r,\n type: a,\n theme: i,\n cardTheme: o\n}) => function(u) {\n return /* @__PURE__ */ h.jsx(\n Dy,\n {\n useCardDateAttribute: r,\n className: e,\n ...u,\n lazyLoad: t,\n analyticsCompName: n,\n type: a,\n theme: i,\n cardTheme: o\n }\n );\n}, xse = (e, t) => e === \"large\" ? {\n headlineTag: (t == null ? void 0 : t.headlineTag) || \"h1\",\n headlineSize: (t == null ? void 0 : t.headlineSize) || \"Headline 2\"\n} : {\n headlineTag: (t == null ? void 0 : t.headlineTag) || \"h2\",\n headlineSize: (t == null ? void 0 : t.headlineSize) || \"Headline 4\"\n}, nP = \"ArticleCardTemplate\", bs = new ke(nP), rP = ({ cta: e }) => /* @__PURE__ */ h.jsx(\"div\", { className: bs.getElementClassName(\"ctaSection\"), children: /* @__PURE__ */ h.jsx(\n ua,\n {\n ...e,\n type: Pa.Secondary,\n size: \"Large\",\n clickEventName: Ca.Button,\n analyticsCompName: e.analyticsCompName || nP\n }\n) }), Sse = ({\n className: e,\n carouselDetails: t,\n cta: n,\n collection: r,\n theme: a = \"neutral 100\",\n cardTheme: i,\n viewportType: o,\n lazyLoad: s = !0\n}) => {\n const l = [\"xs\", \"sm\"].includes(o) ? 1 : 2, c = [\"xl\", \"2xl\"].includes(o), d = se(\n e,\n pn.getThemeClassName(a)\n ), p = se(\n bs.getElementClassName(\"container\"),\n bs.getElementClassName(\"border-card-item\"),\n /* We hide pagination at 2xl for \"section\" layout as there'll only be 3 card items */\n c && bs.getElementClassName(\"container-wo-pagination\")\n );\n return /* @__PURE__ */ h.jsxs(\n lt,\n {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n children: [\n /* @__PURE__ */ h.jsx(\n hd,\n {\n className: d,\n items: r,\n carouselDetails: t,\n swipeOptions: { disableMouseDrag: !1 },\n slidesPerView: l,\n backgroundColor: a,\n breakpoints: {\n sm: {\n slidesPerView: 1\n },\n md: {\n slidesPerView: 2\n }\n },\n renderItem: tP({\n cardTheme: i,\n lazyLoad: s,\n analyticsCompName: Q9\n }),\n classes: {\n container: p\n }\n }\n ),\n n && rP({ cta: n })\n ]\n }\n );\n}, _se = ({\n className: e,\n carouselDetails: t,\n cta: n,\n collection: r,\n theme: a,\n type: i,\n viewportType: o,\n lazyLoad: s = !0,\n useCardDateAttribute: u,\n cardTheme: l\n}) => [\"xl\", \"2xl\"].includes(o) ? /* @__PURE__ */ h.jsxs(lt, { children: [\n /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n bs.getElementClassName(\"stack\"),\n bs.getElementClassName(\"card-section\")\n ),\n children: r.map((d, p) => /* @__PURE__ */ Xi(\n Dy,\n {\n ...d,\n useCardDateAttribute: u,\n analyticsCompName: Q9,\n className: bs.getElementClassName(\"stack-item\"),\n key: `ArticleCardItem-${p + 1}`,\n lazyLoad: s,\n cardTheme: l\n }\n ))\n }\n ),\n n && rP({ cta: n })\n] }) : /* @__PURE__ */ h.jsx(\n Sse,\n {\n className: e,\n carouselDetails: t,\n cta: n,\n collection: r,\n theme: a,\n cardTheme: l,\n type: i,\n viewportType: o,\n lazyLoad: s\n }\n), aP = \"ArticleCardCarousel\", Ese = \"ArticleCardTemplate\", wg = new ke(Ese), wse = {\n standard: {\n md: { spacerSize: 250 },\n lg: { slidesPerView: 2 },\n xl: { slidesPerView: 3 }\n },\n large: { md: { spacerSize: 250 }, lg: { slidesPerView: 2 } },\n feature: {\n md: { slidesPerView: 1 },\n lg: { slidesPerView: 1 }\n }\n}, Tse = (e, t) => e === \"large\" || e === \"feature\" ? {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\",\n topSpacing: t\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n} : {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: t\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, Ase = ({\n className: e,\n carouselDetails: t = {\n ariaLabel: \"\",\n prevButtonLabel: \"\",\n nextButtonLabel: \"\",\n pageNavButtonLabel: \"\",\n slideLabel: \"\",\n pageLabel: \"\"\n },\n collection: n,\n theme: r = \"neutral 100\",\n cardTheme: a = \"white\",\n type: i = \"standard\",\n lazyLoad: o = !0,\n useCardDateAttribute: s,\n topSpacer: u\n}) => {\n const l = Ma([\"Below LG\"]), c = i === \"large\" && l, d = se(\n e,\n pn.getThemeClassName(r)\n ), p = se(wg.getElementClassName(\"container\"), {\n [wg.getElementClassName(\"carousel-no-round-corners\")]: c\n }), g = se(\n wg.getElementClassName(\"carousel-grid-wrapper\"),\n {\n \"no-bottom-spacing-lg\": (n == null ? void 0 : n.length) < 3\n }\n );\n return /* @__PURE__ */ h.jsx(\n lt,\n {\n className: g,\n ...Tse(i, u),\n children: /* @__PURE__ */ h.jsx(\n hd,\n {\n className: d,\n items: n,\n carouselDetails: t,\n backgroundColor: r,\n breakpoints: wse[i],\n renderItem: tP({\n lazyLoad: o,\n analyticsCompName: aP,\n useCardDateAttribute: s,\n type: i,\n cardTheme: a\n }),\n classes: {\n container: p\n }\n }\n )\n }\n );\n}, Nse = (e) => /* @__PURE__ */ h.jsx(Ase, { ...e }), Ose = \"ArticleCardStack\", iP = \"ArticleCardTemplate\", Tg = new ke(iP), Lse = ({\n cta: e,\n collection: t,\n lazyLoad: n = !0,\n useCardDateAttribute: r,\n cardTheme: a\n}) => /* @__PURE__ */ h.jsxs(\n lt,\n {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: se(Tg.getElementClassName(\"stack\")), children: t.map((i, o) => /* @__PURE__ */ Xi(\n Dy,\n {\n ...i,\n useCardDateAttribute: r,\n analyticsCompName: Ose,\n className: Tg.getElementClassName(\"stack-item\"),\n key: `ArticleCardItem-${o + 1}`,\n cardTheme: a,\n lazyLoad: n\n }\n )) }),\n e && /* @__PURE__ */ h.jsx(\"div\", { className: Tg.getElementClassName(\"ctaStack\"), children: /* @__PURE__ */ h.jsx(\n ua,\n {\n ...e,\n analyticsCompName: e.analyticsCompName || iP\n }\n ) })\n ]\n }\n), oP = \"ArticleCardTemplate\", h4 = new ke(oP), sP = ({\n className: e = \"\",\n topSpacer: t = \"4vw\",\n bottomSpacer: n = \"0vw\",\n graphicColorBottom: r,\n graphicVersionBottom: a,\n headerTextGroup: i,\n headerTextGroupRenderer: o = mn,\n layout: s,\n collection: u = [],\n theme: l = \"white\",\n lazyLoad: c = !0,\n useCardDateAttribute: d,\n ...p\n}) => {\n const g = Qn(), [v, b] = ze(!1), { foundationFont: C } = Ze(lr);\n We(() => {\n v || b(!0);\n }, [v]);\n const w = se(\n e,\n h4.getComponentClassName(),\n !v && \"not-mounted\"\n ), _ = {\n topSpacing: t,\n bottomSpacing: n\n }, x = s === \"carousel\" ? p : {}, S = s === \"section\" ? p : {}, E = s === \"stack\" ? p : {}, N = o, P = i;\n if (P) {\n const { headlineTag: k, headlineSize: Q } = xse(\n x.type,\n P\n );\n P && (P.headlineTag = k, P.headlineSize = Q);\n }\n const H = fp(C) && l === \"white\" ? \"stone\" : void 0;\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: w,\n graphicVersionBottom: a,\n graphicColorBottom: r,\n theme: l,\n motion: \"none\",\n ...Cse(_),\n children: [\n i && /* @__PURE__ */ h.jsx(lt, { children: /* @__PURE__ */ h.jsx(\n N,\n {\n ...i,\n className: h4.getElementClassName(\"header\")\n }\n ) }),\n s === \"stack\" && Lse({\n cta: E.cta,\n collection: u,\n lazyLoad: c,\n cardTheme: H,\n useCardDateAttribute: d\n }),\n s === \"section\" && _se({\n className: e,\n carouselDetails: S.carouselDetails,\n cta: S.cta,\n collection: u,\n theme: l,\n cardTheme: H,\n type: S.type,\n viewportType: g,\n lazyLoad: c,\n useCardDateAttribute: d\n }),\n s === \"carousel\" && Nse({\n className: e,\n carouselDetails: x.carouselDetails,\n collection: u,\n theme: l,\n cardTheme: H,\n type: x.type,\n lazyLoad: c,\n useCardDateAttribute: d\n })\n ]\n }\n );\n};\nsP.displayName = oP;\nconst uP = ({\n topSpacer: e = \"4vw\",\n bottomSpacer: t = \"4vw\",\n useCardDateAttribute: n = !0,\n ...r\n}) => /* @__PURE__ */ h.jsx(\n sP,\n {\n layout: \"carousel\",\n topSpacer: e,\n bottomSpacer: t,\n useCardDateAttribute: n,\n ...r\n }\n);\nuP.displayName = aP;\nconst kse = {\n 1: {\n maxCards: 1\n },\n 2: {\n maxCards: 4\n },\n 3: {\n maxCards: 9\n },\n 4: {\n maxCards: 12\n }\n}, lP = \"CardWrappedContent\", m4 = new ke(lP), cP = ({\n items: e,\n renderItem: t,\n maxColumns: n\n}) => {\n const r = se(\n m4.getComponentClassName(),\n `${m4.getElementClassName(\"max-columns-layout\")}-${n}`\n ), { maxCards: a } = kse[n], i = e.length > 0 && typeof t == \"function\";\n return /* @__PURE__ */ h.jsx(\"div\", { className: r, children: i && e.slice(0, a).map((o, s) => /* @__PURE__ */ h.jsx(\"div\", { children: t(o) }, `card-${s + 1}`)) });\n};\ncP.displayName = lP;\nconst Du = 1, g4 = 5, md = 12, Ise = (e, t) => e === 1 ? !1 : (e - 1) * 2 + t === md, av = (e) => Math.min(\n Math.max(Du, e),\n md\n), qa = (e) => `inner-${av(e)}`, Dse = (e, t) => {\n const n = av(e), r = av(t), a = {\n options: {\n columnStart: qa(Du),\n columnEnd: qa(g4)\n },\n mdOptions: {\n columnStart: qa(Du),\n columnEnd: qa(g4)\n },\n lgOptions: {\n columnStart: qa(n ?? Du),\n columnSpan: Math.min(r, md - n + 1)\n }\n };\n return Ise(n, r) ? (a.mdOptions.columnStart = qa(1), a.mdOptions.columnEnd = qa(5), a) : (n >= 7 ? a.mdOptions.columnStart = qa(3) : n >= 4 && (a.mdOptions.columnStart = qa(2)), n + r - 1 >= 7 ? a.mdOptions.columnEnd = qa(5) : a.mdOptions.columnEnd = qa(3), a);\n}, Ra = (e) => e && \"textGroup\" in e;\nconst dP = \"TextHeaderInner\", g0 = new ke(dP), Wr = ({\n textGroup: e,\n image: t,\n mediaSize: n = \"Medium\",\n start: r = Du,\n span: a = md,\n className: i,\n bottomSpacer: o\n}) => {\n const s = Dse(r, a), u = se(g0.getComponentClassName(), i), l = se(\n g0.getElementClassName(\"image\"),\n g0.getPropsValueClassName(\"imgSize\", n),\n g0.getPropsValueClassName(\n \"imageAlign\",\n e.alignment ?? \"Start\"\n )\n );\n return s.options = {\n ...s.options,\n bottomSpacing: o\n }, /* @__PURE__ */ h.jsxs(lt, { className: u, ...s, children: [\n t && /* @__PURE__ */ h.jsx(\n ur,\n {\n ...t,\n dimensions: { minHeight: \"4.5rem\", minWidth: \"4.5rem\" },\n className: l\n }\n ),\n /* @__PURE__ */ h.jsx(mn, { ...e })\n ] });\n};\nWr.displayName = dP;\nconst Pse = {\n start: 1,\n span: 6\n}, fP = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, Mse = (e) => e <= 1 ? {} : e === 2 ? {\n sm: { slideWidth: 293 },\n md: { slidesPerView: 2 }\n} : e === 3 ? {\n sm: { slideWidth: 293 },\n lg: { slideWidth: 355 },\n xl: { slidesPerView: 3 }\n} : {\n sm: { slideWidth: 293 },\n lg: { slideWidth: 344 },\n \"2xl\": { slidesPerView: 4 }\n}, Py = \"CardContentSectionItem\", tu = new ke(Py), My = ({\n mediaFrame: e,\n textGroup: t,\n collectionLength: n = 1,\n className: r = \"\",\n backgroundColor: a = \"neutral 100\",\n analyticsCompName: i = Py,\n isImageFlushed: o,\n cardVariant: s,\n maxColumns: u\n}) => {\n const l = s ?? (o ? \"flushed\" : \"normal\"), c = () => e ? e.type === \"Image\" ? {\n ...e,\n image: {\n ...e.image,\n dimensions: { minWidth: \"auto\", minHeight: \"auto\" }\n }\n } : {\n ...e,\n video: {\n ...e == null ? void 0 : e.video,\n dimensions: { minWidth: \"auto\", minHeight: \"auto\" }\n }\n } : {}, d = n > 4 ? 4 : n, p = se(\n pn.getThemeClassName(a),\n r,\n tu.getComponentClassName(),\n tu.getPropsValueClassName(\"cardStyle\", l),\n tu.getElementClassName(`cards-${d}`),\n {\n noImage: !e,\n onlyCta: !(t != null && t.headline || t != null && t.paragraph || t != null && t.subheading),\n [tu.getElementClassName(`wrapped-cards-${u}`)]: u\n }\n ), g = () => n === 1 && !e ? 3200 : n >= 4 ? 1e3 : n >= 2 ? 1500 : 2200;\n return /* @__PURE__ */ h.jsxs(\"div\", { className: p, children: [\n e && /* @__PURE__ */ h.jsx(\n Ur,\n {\n motionOptions: {\n motionFeel: \"Functional\",\n motionTypePreset: \"appear\",\n motionIntensity: \"xs\"\n },\n className: tu.getElementClassName(\"image\"),\n maxSrcSetWidth: g(),\n ...c(),\n analyticsCompName: i\n }\n ),\n t && /* @__PURE__ */ h.jsx(\n mn,\n {\n className: tu.getElementClassName(\"text\"),\n ...t,\n analyticsCompName: i\n }\n )\n ] });\n};\nMy.displayName = Py;\nconst pP = \"CardContentSection\", jf = new ke(pP), Rse = (e) => {\n let t = e;\n return Ra(e) || (t = {\n textGroup: e,\n ...Pse\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: jf.getElementClassName(\"header\"),\n ...t\n }\n );\n}, Bse = ({\n carouselBreakpointValues: e,\n carouselDetails: t,\n collection: n,\n collectionLength: r,\n renderItem: a\n}) => {\n const i = se(\n jf.getElementClassName(\"carousel\"),\n jf.getElementClassName(\n `carousel-slides-per-view-${r}`\n )\n ), o = {\n items: n,\n renderItem: My,\n carouselDetails: t,\n breakpoints: e,\n classes: {\n container: i\n }\n };\n return /* @__PURE__ */ h.jsx(lt, { ...fP, children: /* @__PURE__ */ h.jsx(hd, { ...o, renderItem: a }) });\n}, Fse = ({\n renderItem: e,\n items: t,\n maxColumns: n\n}) => /* @__PURE__ */ h.jsx(lt, { ...fP, children: /* @__PURE__ */ h.jsx(\n cP,\n {\n items: t,\n renderItem: e,\n maxColumns: n\n }\n) }), v4 = ({\n cardTheme: e,\n isImageFlushed: t,\n collectionLength: n,\n maxColumns: r,\n cardVariant: a\n}) => (o) => /* @__PURE__ */ h.jsx(\n My,\n {\n ...o,\n backgroundColor: e,\n isImageFlushed: t,\n cardVariant: a,\n collectionLength: n,\n maxColumns: r\n }\n), Ch = ({\n theme: e = \"neutral 100\",\n cardTheme: t = \"white\",\n headline: n,\n collection: r = [],\n disclosureType: a,\n topSpacer: i = \"6vw\",\n bottomSpacer: o = \"6vw\",\n className: s = \"\",\n isImageFlushed: u = !1,\n cardVariant: l,\n componentId: c,\n analyticsCompName: d,\n ...p\n}) => {\n const g = se(jf.getComponentClassName(), s), v = {\n topSpacing: i,\n bottomSpacing: o,\n rowsGap: \"none\"\n }, { renderAs: b } = p;\n let C = {}, w = Mse(r.length), _ = r.length;\n return b === \"carousel\" && (C = {\n graphicVersionTop: p.graphicVersionTop,\n graphicColorTop: p.graphicColorTop,\n graphicVersionBottom: p.graphicVersionBottom,\n graphicColorBottom: p.graphicColorBottom\n }, w = p.carouselBreakpoints, _ = p.maxSlidesPerView), /* @__PURE__ */ h.jsxs(\n cn,\n {\n disclosure: a,\n theme: e,\n options: v,\n id: c,\n ...C,\n className: g,\n children: [\n n && Rse({ ...n, analyticsCompName: d }),\n b === \"wrapped\" ? Fse({\n maxColumns: p.maxColumns,\n items: r,\n renderItem: v4({\n cardTheme: t,\n isImageFlushed: u,\n cardVariant: l,\n collectionLength: _,\n maxColumns: p.maxColumns\n })\n }) : Bse({\n carouselBreakpointValues: w,\n collection: r,\n collectionLength: _,\n carouselDetails: p.carouselDetails,\n renderItem: v4({\n cardTheme: t,\n isImageFlushed: u,\n cardVariant: l,\n collectionLength: _\n })\n })\n ]\n }\n );\n};\nCh.displayName = pP;\nconst jse = (e) => {\n if (+e <= 1)\n return {\n xs: { spacerSize: 18 },\n md: { slideWidth: 505 },\n lg: { slidesPerView: 1 }\n };\n const t = {\n sm: { slideWidth: 311.5 }\n };\n return +e == 2 ? {\n ...t,\n xl: { slidesPerView: 2 }\n } : +e == 3 ? {\n ...t,\n \"2xl\": { slidesPerView: 3 }\n } : {\n ...t,\n \"2xl\": { slidesPerView: 4 }\n };\n};\nconst hP = \"CardContentCarouselSection\", $se = new ke(hP), Ry = ({\n maxSlidesPerView: e,\n headline: t,\n graphicVersionTop: n,\n ...r\n}) => {\n const i = {\n graphicVersionTop: !!t ? void 0 : n\n };\n return /* @__PURE__ */ h.jsx(\n Ch,\n {\n renderAs: \"carousel\",\n carouselBreakpoints: jse(e),\n ...r,\n headline: t,\n ...i,\n maxSlidesPerView: e,\n className: $se.getComponentClassName()\n }\n );\n};\nRy.displayName = hP;\nconst mP = \"CardWrappedContentSection\", Hse = new ke(mP), By = ({\n className: e,\n ...t\n}) => {\n const n = se(Hse.getComponentClassName(), e);\n return /* @__PURE__ */ h.jsx(Ch, { renderAs: \"wrapped\", className: n, ...t });\n};\nBy.displayName = mP;\nconst Vse = {\n options: {\n topSpacing: \"1rem\"\n },\n mdOptions: {\n topSpacing: \"1.5rem\"\n },\n twoXlOptions: {\n topSpacing: \"2rem\"\n }\n}, zse = () => ({\n options: {\n rowsMinHeight: \"0\",\n verticalSpacing: \"1rem\",\n rowsGap: \"value\",\n rowsGapValue: \"1rem\"\n },\n theme: \"white\",\n disclosureGridItemProps: Vse\n}), qse = () => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnSpan: 3,\n rowStart: 1,\n columnStart: \"inner-10\"\n }\n}), Gse = () => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n verticalAlign: \"default\"\n },\n xlOptions: {\n columnStart: \"left-inner\",\n columnSpan: 9\n },\n twoXlOptions: {\n columnStart: \"left-inner\",\n columnSpan: 9\n }\n}), Use = (e, t, n) => {\n if (!e || !t || !n)\n return \"\";\n const {\n // eslint-disable-next-line camelcase\n fdata: r,\n v: a = \"\",\n t: i = \"\",\n cks: o = \"\",\n landing_url: s = \"\",\n cmd: u = \"\",\n uid: l = \"\",\n oid: c = \"\",\n cid: d = \"\",\n indir: p,\n s: g = \"\",\n bn: v = \"\",\n e: b = \"\"\n } = e || {}, C = r ? `${n}/webapps/mch/cmd/` : `${t}/cgi-bin/webscr`;\n let w = \"\";\n const _ = encodeURIComponent(u), x = encodeURIComponent(l), S = encodeURIComponent(s), E = encodeURIComponent(c), N = encodeURIComponent(g), P = encodeURIComponent(v), H = encodeURIComponent(o), k = encodeURIComponent(p), Q = encodeURIComponent(d), I = encodeURIComponent(b), G = encodeURIComponent(i), $ = encodeURIComponent(a);\n if (r) {\n const z = encodeURIComponent(r);\n w = `${C}?v=${$}&t=${G}&fdata=${z}&cks=${H}&e=${I}`;\n } else {\n let z = `landing_url=${S}`;\n p && (z = `indir=${k}`), w = `${C}?cmd=${_}&uid=${x}&oid=${E}&${z}&cid=${Q}&s=${N}&bn=${P}&cks=${H}`;\n }\n return w;\n};\nconst gP = \"ClickThruBanner\", Wse = ({\n image: e,\n cta: t,\n type: n,\n disclosureType: r\n}) => {\n const { queryStringParams: a, baseUri: i, baseNolocaleUri: o } = Ze(Vt), s = () => {\n if (e) {\n const d = {\n ...e,\n dimensions: {\n minHeight: \"auto\"\n }\n }, { imageLink: p } = e;\n if (!p) {\n const v = Use(\n a,\n i,\n o\n );\n d.imageLink = v;\n }\n const g = Gse();\n return /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(\"clickthru-image-grid-item\"),\n ...g,\n children: /* @__PURE__ */ h.jsx(\n Ur,\n {\n className: \"clickthru-image\",\n image: d,\n analyticsCompName: `${gP}-${n}`,\n type: \"Image\"\n }\n )\n }\n );\n }\n return \"\";\n }, u = () => {\n if (t) {\n const d = qse();\n return /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(\"clickthru-cta-grid-item\"),\n ...d,\n children: /* @__PURE__ */ h.jsx(ua, { ...t })\n }\n );\n }\n return \"\";\n };\n if (!e && !t)\n return null;\n const l = zse(), c = se(\n \"clickthru-section-wrapper\",\n n.replace(/ /g, \"-\").toLowerCase()\n );\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n ...l,\n className: c,\n disclosure: r,\n children: [\n s(),\n u()\n ]\n }\n );\n};\nWse.displayName = gP;\nconst Kse = () => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-4\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n },\n xlOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"mid\"\n }\n}), Yse = (e) => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n bottomSpacing: \"0vw\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n bottomSpacing: e ? \"0vw\" : \"12vw\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\",\n bottomSpacing: e ? \"0vw\" : \"8vw\"\n },\n xlOptions: {\n columnStart: \"mid\",\n columnEnd: \"inner-12\",\n bottomSpacing: e ? \"0vw\" : \"8vw\"\n },\n twoXlOptions: {\n columnStart: \"inner-8\",\n columnEnd: \"right-inner\",\n bottomSpacing: e ? \"0vw\" : \"8vw\"\n }\n});\nconst iv = \"ctaSection\", Ag = new ke(iv), DSe = ({\n className: e,\n textGroup: t,\n theme: n = \"neutral 100\",\n topSpacer: r = \"6vw\",\n bottomSpacer: a = \"16vw\",\n appDownload: i,\n appDownloadAlignment: o = \"Center\",\n componentId: s,\n graphicColorBottom: u,\n hideGraphicShapes: l = !1\n}) => {\n const c = se(e, Ag.getComponentClassName()), d = { topSpacing: r, bottomSpacing: a }, v = l ? {} : {\n graphicVersionBottom: \"GraphicOverlap06\",\n graphicColorBottom: u || (n === \"white\" ? \"GoldOnWhite\" : \"GoldOnNeutral100\")\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: c,\n theme: n,\n options: d,\n id: s,\n ...v,\n children: [\n /* @__PURE__ */ h.jsx(\n lt,\n {\n ...Kse(),\n className: Ag.getElementClassName(\"item\"),\n children: /* @__PURE__ */ h.jsx(\n mn,\n {\n ...t,\n headline: t == null ? void 0 : t.headline,\n paragraph: t == null ? void 0 : t.paragraph,\n analyticsCompName: iv\n }\n )\n }\n ),\n i && /* @__PURE__ */ h.jsx(\n lt,\n {\n ...Yse(l),\n className: Ag.getElementClassName(\"item\"),\n children: /* @__PURE__ */ h.jsx(\n ch,\n {\n ...i,\n alignment: o,\n analyticsCompName: iv\n }\n )\n }\n )\n ]\n }\n );\n};\nconst Fy = \"DiscoveryCard\", Bl = new ke(Fy), ov = ({\n className: e = \"\",\n icon: t,\n cta: n,\n theme: r = \"white\",\n analyticsCompName: a = Fy\n}) => {\n const { pageSegment: i, host: o, country: s } = Ze(Vt);\n if (!n)\n return null;\n const u = qi(n.url, o, s), l = se(\n Bl.getComponentClassName(),\n Bl.getPropsValueClassName(\"type\", \"Inline\"),\n Bl.getPropsValueClassName(\"size\", n.size),\n pn.getThemeClassName(r),\n e\n ), c = se(Bl.getElementClassName(\"container\")), d = Nn(\n {\n componentName: a,\n linkText: n.text,\n linkType: Pa.Tertiary,\n clickEvent: n.clickEventName,\n ariaLabel: n.ariaLabel\n },\n i,\n ln.CTA\n );\n return /* @__PURE__ */ h.jsx(\n Wn,\n {\n as: \"a\",\n \"aria-label\": n.ariaLabel,\n href: u,\n target: n.target,\n \"data-pa-click\": a && d,\n className: l,\n motionOptions: SL,\n children: /* @__PURE__ */ h.jsxs(\"div\", { className: c, children: [\n /* @__PURE__ */ h.jsxs(\"div\", { className: Bl.getElementClassName(\"content\"), children: [\n t && /* @__PURE__ */ h.jsx(\n ur,\n {\n ariaHidden: !0,\n ...t,\n dimensions: {\n minHeight: \"2.5rem\",\n minWidth: \"2.5rem\"\n },\n motionOptions: xL\n }\n ),\n /* @__PURE__ */ h.jsx(Sr, { as: \"span\", size: \"Title\", children: n.text })\n ] }),\n /* @__PURE__ */ h.jsx(Go, { size: \"Large\" })\n ] })\n }\n );\n};\nov.displayName = Fy;\nconst Xse = () => ({\n textGroupCol: {\n start: 2,\n span: 6\n },\n discoveryCardLeftCol: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"inner-12\"\n }\n },\n discoveryCardRightCol: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n },\n lgOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"mid\"\n }\n },\n disclosureGridItemCol: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n topSpacing: \"2vw\"\n },\n lgOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"inner-12\"\n }\n }\n});\nconst dc = \"DiscoveryLinkSection\", Zse = new ke(dc), vP = ({\n headline: e,\n collection: t = [],\n topSpacer: n = \"6vw\",\n bottomSpacer: r = \"6vw\",\n disclosure: a,\n theme: i = \"white\",\n componentId: o\n}) => {\n const s = {\n topSpacing: n,\n bottomSpacing: r\n }, u = t.length >= 1, l = Xse();\n let c = e;\n return e && !Ra(e) && (c = {\n ...l.textGroupCol,\n textGroup: {\n ...e\n }\n }), /* @__PURE__ */ h.jsxs(\n cn,\n {\n options: s,\n theme: i,\n disclosure: a,\n disclosureGridItemProps: l.disclosureGridItemCol,\n id: o,\n children: [\n e && /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: Zse.getElementClassName(\"textgroup-griditem\"),\n ...c,\n textGroup: {\n headlineSize: \"Headline 2\",\n ...c.textGroup,\n analyticsCompName: dc\n }\n }\n ),\n u && t.map((d, p) => {\n const g = `item-${p + 1}`;\n return (p + 1) % 2 === 0 ? /* @__PURE__ */ h.jsx(lt, { ...l.discoveryCardLeftCol, children: /* @__PURE__ */ h.jsx(ov, { ...d, analyticsCompName: dc }) }, g) : /* @__PURE__ */ h.jsx(lt, { ...l.discoveryCardRightCol, children: /* @__PURE__ */ h.jsx(ov, { ...d, analyticsCompName: dc }) }, g);\n })\n ]\n }\n );\n};\nvP.displayName = dc;\nconst Qse = ({ children: e, ...t }) => /* @__PURE__ */ h.jsx(Sr, { ...t, size: \"Headline 7\", children: e }), Jse = ({ children: e, ...t }) => /* @__PURE__ */ h.jsx(Gt, { ...t, as: \"h4\", size: \"Body Bold\", children: e }), eue = (e) => ({\n li: (t, n) => /* @__PURE__ */ h.jsx(Gt, { size: e, as: \"li\", children: n })\n}), tue = ({\n customWrapper: e,\n customWrapperProps: t,\n paragraph: n,\n analyticsCompName: r,\n isItemOpen: a = !1,\n accordionItemRowId: i,\n accordionItemContentId: o\n}) => {\n const s = \"faq\", u = {\n id: o,\n \"aria-labelledby\": i,\n role: \"region\"\n }, l = /* @__PURE__ */ h.jsx(\n dh,\n {\n content: n,\n lineProps: {\n analyticsCompName: r,\n htmlOverrides: eue(\"Body\")\n }\n }\n );\n return e ? /* @__PURE__ */ h.jsx(\n e,\n {\n ...u,\n ...t,\n animate: a ? \"animate\" : \"initial\",\n children: l\n },\n s\n ) : a ? /* @__PURE__ */ h.jsx(\"div\", { ...u, children: l }, s) : null;\n};\nconst bP = \"Accordion\", po = new ke(bP), nue = ({\n className: e,\n index: t,\n openItemIndex: n,\n headline: r,\n subheading: a,\n paragraph: i,\n theme: o = \"white\",\n clickEventName: s,\n analyticsCompName: u,\n toggleAccordionItem: l,\n customWrapper: c,\n customWrapperProps: d = {}\n}) => {\n const p = n === t, g = se(e, po.getElementClassName(\"item\")), v = se(\n e,\n po.getElementClassName(\"itemIcon\"),\n po.getPropsValueClassName(\"itemIconTheme\", o)\n ), { pageSegment: b } = Ze(Vt), C = Nn(\n {\n componentName: \"accordionItemHeader\",\n linkText: r,\n clickEvent: s\n },\n b,\n ln.CTA\n ), w = `accordion-row${t + 1}`, _ = `accordion-content${t + 1}`, x = {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n };\n return /* @__PURE__ */ h.jsxs(\"div\", { className: g, children: [\n /* @__PURE__ */ h.jsx(\n \"button\",\n {\n type: \"button\",\n className: po.getElementClassName(\"itemHeadline\"),\n onClick: () => l(t),\n id: w,\n \"aria-controls\": _,\n \"aria-expanded\": p,\n \"data-pa-click\": C,\n children: /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: po.getElementClassName(\"itemHeadlineContainer\"),\n children: [\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: po.getElementClassName(\n \"itemHeadlineTextContainer\"\n ),\n children: [\n /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"h3\",\n className: po.getElementClassName(\"itemHeadlineText\"),\n content: r,\n customWrapper: Qse,\n analyticsCompName: u,\n analyticsTextSection: \"itemHeadlineText\"\n }\n ),\n a && ks(a) && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"h4\",\n className: po.getElementClassName(\"itemSubheading\"),\n content: a,\n customWrapper: Jse,\n analyticsCompName: u,\n analyticsTextSection: \"itemSubheadingText\"\n }\n )\n ]\n }\n ),\n /* @__PURE__ */ h.jsx(\n Cr.div,\n {\n className: v,\n variants: { initial: { rotate: 0 }, animate: { rotate: 135 } },\n animate: p ? \"animate\" : \"initial\",\n transition: x,\n children: /* @__PURE__ */ h.jsx(O8, { \"aria-hidden\": \"true\" })\n }\n )\n ]\n }\n )\n }\n ),\n tue({\n customWrapper: c,\n customWrapperProps: d,\n paragraph: i,\n analyticsCompName: u,\n isItemOpen: p,\n accordionItemRowId: w,\n accordionItemContentId: _\n })\n ] });\n}, rue = {\n initial: {\n height: \"0px\",\n opacity: 0,\n transitionEnd: {\n display: \"none\"\n }\n },\n animate: {\n height: \"auto\",\n opacity: [0, 1, 1],\n display: \"block\"\n }\n}, aue = {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n}, yP = (e = {}) => /* @__PURE__ */ h.jsx(\n nue,\n {\n customWrapper: Cr.div,\n customWrapperProps: {\n initial: \"initial\",\n variants: rue,\n transition: aue\n },\n ...e\n }\n);\nyP.displayName = bP;\nconst iue = (e) => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: e === \"default\" ? \"left-inner\" : \"inner-3\",\n columnEnd: e === \"default\" ? \"mid\" : \"inner-11\"\n }\n}), b4 = (e) => ({\n lgOptions: {\n columnStart: e === \"default\" ? \"left-inner\" : \"inner-3\",\n columnEnd: e === \"default\" ? \"right-inner\" : \"inner-11\"\n },\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}), oue = ({\n layout: e,\n headlineTextGroup: t\n}) => e === \"default\" ? {\n headlineTag: (t == null ? void 0 : t.headlineTag) || \"h2\",\n headlineSize: (t == null ? void 0 : t.headlineSize) || \"Headline 4\"\n} : {\n headlineTag: (t == null ? void 0 : t.headlineTag) || \"h2\",\n headlineSize: (t == null ? void 0 : t.headlineSize) || \"Headline 4\"\n};\nconst jy = \"Accordion\", nu = new ke(jy), sue = ({\n className: e,\n collection: t = [],\n itemOpen: n,\n textGroup: r,\n analyticsCompName: a = jy,\n clickEventName: i,\n theme: o = \"white\",\n topSpacer: s = \"6vw\",\n bottomSpacer: u = \"6vw\",\n disclosureType: l,\n layout: c = \"default\",\n accordionItemWrapper: d,\n textGroupWrapper: p,\n sectionWrapper: g,\n componentId: v,\n cta: b\n}) => {\n const C = se(\n e,\n nu.getComponentClassName(),\n nu.getPropsValueClassName(\"theme\", o)\n ), w = se({\n [nu.getElementClassName(\"with-cta\")]: b\n }), _ = 0, x = -1, S = () => n ? _ : x, [E, N] = ze(S), P = oue({\n layout: c,\n headlineTextGroup: r\n }), H = (k) => {\n N(E === k ? x : k);\n };\n return /* @__PURE__ */ h.jsxs(\n g,\n {\n className: C,\n options: {\n topSpacing: s,\n bottomSpacing: u,\n rowsGap: \"value\",\n rowsGapValue: \"0vw\"\n },\n theme: o,\n disclosure: l,\n id: v,\n children: [\n /* @__PURE__ */ h.jsx(lt, { ...iue(c), children: /* @__PURE__ */ h.jsx(\n p,\n {\n ...r,\n headline: r == null ? void 0 : r.headline,\n headlineSize: P.headlineSize,\n headlineTag: P.headlineTag,\n className: nu.getElementClassName(\"headline\"),\n analyticsCompName: a\n }\n ) }),\n /* @__PURE__ */ h.jsx(lt, { ...b4(c), className: w, children: t.map((k, Q) => /* @__PURE__ */ h.jsx(\n d,\n {\n toggleAccordionItem: H,\n openItemIndex: E,\n index: Q,\n theme: o,\n analyticsCompName: a,\n clickEventName: i,\n ...k,\n className: se(\n c === \"center\" && nu.getElementClassName(\"item-center-layout\")\n )\n },\n `item-${Q + 1}`\n )) }),\n b && /* @__PURE__ */ h.jsx(lt, { ...b4(c), children: /* @__PURE__ */ h.jsx(\n Ns,\n {\n ...b,\n className: nu.getElementClassName(\"inline-cta\"),\n analyticsCompName: a\n }\n ) })\n ]\n }\n );\n}, CP = (e = {}) => /* @__PURE__ */ h.jsx(\n sue,\n {\n accordionItemWrapper: yP,\n sectionWrapper: cn,\n textGroupWrapper: mn,\n ...e\n }\n);\nCP.displayName = jy;\nconst Ss = \"FeatureColumn\", ai = new ke(Ss), uue = (e, t, n, r) => {\n const i = 12 / t, o = n ? 2 : 1, s = {\n columnStart: `inner-${e * i + 1}`,\n columnEnd: \"right-inner\",\n rowSpan: 1,\n columnSpan: t > 3 ? 3 : 4,\n rowStart: o\n }, u = {\n columnStart: e % 3 === 0 ? \"left-inner\" : \"auto\",\n columnEnd: \"right-inner\",\n rowSpan: 1,\n columnSpan: 4\n }, l = t >= 5 ? u : s, c = {\n columnStart: e % 3 === 0 ? \"left-inner\" : \"auto\",\n columnEnd: \"right-inner\",\n rowSpan: 1,\n columnSpan: 4\n }, d = {\n rowSpan: 1,\n columnSpan: 3\n }, p = t > 4 ? c : d, g = {\n columnStart: `${e % 2 === 0 ? \"left-inner\" : \"inner-3\"}`,\n rowSpan: 1,\n columnSpan: 2\n }, b = {\n twoXlOptions: p,\n lgOptions: l,\n mdOptions: g,\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n rowSpan: 1\n }\n }, C = t % 3, w = r === \"sm\" && t - 1 === e, _ = [\"lg\", \"xl\", \"2xl\"].includes(r), x = [\"md\", \"lg\", \"xl\", \"2xl\"].includes(r), S = r === \"md\" && (t % 2 === 0 ? e >= t - 2 : e === t - 1), E = _ && (C === 0 ? e >= t - 3 : e >= t - C), N = t <= 4 && _ || t === 2 && x;\n return {\n gridItemProps: b,\n isLastRow: E || S || w || N\n };\n}, lue = (e) => {\n const t = {\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-outer\"\n }\n }, n = {\n mdOptions: {\n columnStart: \"inner-5\",\n columnEnd: \"right-inner\"\n }\n };\n return e === \"Headline Left\" ? (t.lgOptions = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-5\",\n columnSpan: 5,\n rowSpan: 1\n }, n.lgOptions = {\n columnStart: \"inner-6\",\n columnEnd: \"right-inner\",\n columnSpan: 7\n }) : e === \"Headline Right\" && (t.lgOptions = {\n columnStart: \"inner-8\",\n columnEnd: \"right-inner\",\n columnSpan: 5,\n verticalAlign: \"center\"\n }, n.lgOptions = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-7\",\n columnSpan: 7\n }), {\n startCol: t,\n endCol: n\n };\n}, cue = {\n options: {\n topSpacing: \"2rem\",\n rowStart: \"auto\"\n },\n xlOptions: {\n topSpacing: \"4.5rem\"\n }\n}, due = (e, t, n) => e ? {} : {\n graphicVersionBottom: t,\n graphicColorBottom: n\n};\nconst fue = ({\n className: e,\n pictogram: t,\n feature: n,\n dimensions: r = {\n minHeight: \"6rem\",\n minWidth: \"6rem\"\n },\n textGroupWrapper: a,\n imageFrameWrapper: i,\n imageFrameProps: o = {},\n truncatedTextGroupWrapper: s,\n truncatedTextGroupWrapperProps: u = {},\n truncatedTextGroup: l\n}) => {\n const { minHeight: c, minWidth: d } = r;\n return /* @__PURE__ */ h.jsxs(\"div\", { className: e, children: [\n t && /* @__PURE__ */ h.jsx(\n i,\n {\n ...t,\n ...o,\n className: ai.getElementClassName(\"itemImage\"),\n dimensions: {\n minWidth: d,\n minHeight: c\n }\n }\n ),\n n && /* @__PURE__ */ h.jsx(\n a,\n {\n ...n,\n subheadingTag: n.subheadingTag || \"h2\",\n analyticsCompName: Ss,\n className: ai.getElementClassName(\"itemTextGroup\")\n }\n ),\n l && /* @__PURE__ */ h.jsx(\n s,\n {\n analyticsCompName: Ss,\n ...l,\n ...u\n }\n )\n ] });\n}, xP = (e) => /* @__PURE__ */ h.jsx(\n fue,\n {\n textGroupWrapper: mn,\n imageFrameWrapper: ur,\n imageFrameProps: { motionOptions: xL },\n truncatedTextGroupWrapper: Ms,\n truncatedTextGroupWrapperProps: {\n isAnimated: !1\n },\n ...e\n }\n);\nxP.displayName = Ss;\nconst SP = \"ImageParallaxFrame\", Ng = new ke(SP), gd = ({\n baseImage: e,\n mdImage: t,\n parallaxFactor: n = 1,\n enableScale: r = !1,\n maxSrcSetWidth: a = 4e3,\n imageAltText: i = \"\",\n verticalAlign: o,\n ariaHidden: s = !1,\n loading: u = \"lazy\",\n fetchPriority: l = \"auto\",\n disableParallax: c = !1,\n imageServerKnobs: d = {},\n ...p\n}) => {\n const g = Ue(null), { scrollYProgress: v } = rb({\n target: g,\n offset: [\"start end\", \"end start\"]\n }), b = !Ji(), C = `${n * -5}%`, w = 1 + n / 20, _ = `${n * 5 + 110}%`, x = Sc(\n v,\n [0, 1],\n [C, \"0%\"]\n ), S = Sc(\n v,\n [0, 1],\n [1, w]\n ), E = b ? x : 0, N = r && b ? S : 1, P = se(\n Ng.getComponentClassName(),\n Ng.getElementClassName(\"outer\")\n ), H = c ? {} : {\n y: E,\n scale: N,\n height: _\n };\n return /* @__PURE__ */ h.jsx(td, { features: nd, children: /* @__PURE__ */ h.jsx(\"div\", { ref: g, className: P, ...p, children: /* @__PURE__ */ h.jsx(\n Cr.div,\n {\n style: H,\n className: Ng.getElementClassName(\"inner\"),\n children: /* @__PURE__ */ h.jsx(\n ur,\n {\n baseImage: e || \"\",\n mdImage: t,\n dimensions: { minHeight: \"100%\", minWidth: \"100%\" },\n imageAltText: i,\n verticalAlign: o,\n motionOptions: {\n motionFeel: \"Expressive\",\n motionTypePreset: \"scaleDown\",\n motionIntensity: \"xs\"\n },\n maxSrcSetWidth: a,\n ariaHidden: s,\n loading: u,\n fetchPriority: l,\n imageServerKnobs: d\n }\n )\n }\n ) }) });\n};\ngd.displayName = SP;\nconst pue = \"FeatureGraphicSection\", y4 = new ke(pue), hue = ({\n headlineAlignment: e = \"Headline Left\",\n graphicImage: t,\n graphicColorTop: n,\n graphicVersionTop: r = \"GraphicRightCurveSmall\",\n theme: a\n}) => {\n const i = se(\n y4.getComponentClassName(),\n y4.getPropsValueClassName(\"headlineAlignment\", e)\n ), o = e === \"Headline Right\" && \"SplitLeftSmall\", s = e === \"Headline Right\", u = !!(t != null && t.baseImage), l = () => s && u && /* @__PURE__ */ ue(\n gd,\n {\n ...t,\n css: V`\n position: absolute;\n left: 0;\n top: 0;\n height: ${a === \"compact\" ? \"30%\" : \"50%\"};\n width: 50%;\n z-index: 0.5;\n background: var(--color-primary);\n aspect-ratio: 16 / 9;\n `\n }\n );\n return /* @__PURE__ */ ue(\n mi,\n {\n graphicVersion: o || r,\n graphicColor: n,\n className: i,\n css: V`\n --height: 150vw;\n --min-height: unset;\n --image: 100%;\n display: none;\n position: absolute;\n width: 100%;\n top: 0;\n z-index: 0;\n\n &.feature-graphic-section {\n overflow: visible;\n }\n\n @media (min-width: ${bn.lg}) {\n display: flex;\n --height: 50vw;\n --min-height: 36rem;\n --image: 100%;\n }\n\n @media (min-width: ${bn.xl}) {\n --height: 45vw;\n --min-height: 51.6rem;\n }\n\n @media (min-width: ${bn[\"2xl\"]}) {\n --height: 60rem;\n --min-height: 67.4rem;\n }\n `,\n replay: !1,\n renderBackgroundImage: u ? () => l() : void 0\n }\n );\n};\nconst mue = \"8vw\", gue = \"6vw\", vue = \"4vw\", bue = \"6vw\", yue = (e) => e === \"compact\" ? gue : mue, Cue = (e, t, n) => {\n const r = yue(t);\n return e ? r : n || r;\n}, xue = (e) => e === \"compact\" ? bue : vue, Sue = (e, t) => t || xue(e), $y = ({\n className: e,\n headline: t,\n headlineAlignment: n = \"Headline Left\",\n collection: r = [],\n bottomSpacer: a = \"4vw\",\n graphicImage: i,\n theme: o = \"white\",\n graphicVersionTop: s,\n graphicColorTop: u = \"GoldOnWhite\",\n graphicVersionBottom: l,\n graphicColorBottom: c,\n isAnimated: d = !0,\n componentId: p,\n disclosureType: g,\n topSpacer: v,\n hideGraphicShapes: b = !1\n}) => {\n const { foundationTheme: C } = Ze(lr), w = !!t, _ = se(\n e,\n ai.getComponentClassName(),\n b && ai.getElementClassName(\"no-graphic-shape\")\n ), x = lue(n), S = Qn(), E = {\n topSpacing: Cue(w, C, v),\n bottomSpacing: Sue(C, a),\n rowsGap: \"value\",\n rowsGapValue: \"0vw\"\n }, N = {\n minWidth: \"6rem\",\n minHeight: \"6rem\"\n }, P = due(\n b,\n l,\n c\n );\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: _,\n options: E,\n theme: o,\n id: p,\n disclosure: g,\n disclosureGridItemProps: cue,\n ...P,\n children: [\n t && /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(\n ai.getElementClassName(\"col\"),\n ai.getElementClassName(\"startCol\")\n ),\n ...x.startCol,\n children: /* @__PURE__ */ h.jsx(mn, { ...t, analyticsCompName: Ss })\n }\n ),\n d && t && !b && /* @__PURE__ */ h.jsx(\n hue,\n {\n headlineAlignment: n,\n graphicImage: i,\n graphicVersionTop: s,\n graphicColorTop: u,\n theme: C\n }\n ),\n r && r.map(({ pictogram: H, feature: k, truncatedTextGroup: Q }, I) => {\n const { gridItemProps: G, isLastRow: $ } = uue(\n I,\n r.length,\n w,\n S\n ), z = se(\n ai.getElementClassName(\"col\"),\n ai.getElementClassName(\"itemCol\"),\n { [ai.getElementClassName(\"with-padding\")]: !$ }\n );\n return /* @__PURE__ */ h.jsx(\n lt,\n {\n className: z,\n ...G,\n children: /* @__PURE__ */ h.jsx(\n xP,\n {\n dimensions: N,\n pictogram: H,\n feature: k,\n truncatedTextGroup: Q,\n className: se(ai.getElementClassName(\"Item\")),\n analyticsCompName: Ss\n }\n )\n },\n `item-${I + 1}`\n );\n })\n ]\n }\n );\n};\n$y.displayName = Ss;\nconst _ue = \"ArrowRightIcon\", Eue = new ke(_ue), wue = ({\n ariaLabel: e = \"\",\n className: t = \"\"\n}) => {\n const n = se(Eue.getComponentClassName(), t);\n return /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"18\",\n height: \"19\",\n viewBox: \"0 0 18 19\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-hidden\": !0,\n \"aria-label\": e,\n className: n,\n children: /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M10.7199 14.5282C10.427 14.2353 10.427 13.7604 10.7199 13.4675L13.9396 10.2478H2.25C1.83579 10.2478 1.5 9.91204 1.5 9.49782C1.5 9.08361 1.83579 8.74782 2.25 8.74782H13.9395L10.7199 5.52813C10.427 5.23524 10.427 4.76037 10.7199 4.46747C11.0127 4.17458 11.4876 4.17458 11.7805 4.46747L16.2752 8.9622C16.2798 8.96675 16.2843 8.97133 16.2887 8.97596C16.4195 9.11096 16.5 9.29499 16.5 9.49782C16.5 9.69976 16.4202 9.88304 16.2904 10.0179C16.2867 10.0218 16.2829 10.0257 16.2791 10.0296L16.2772 10.0315L16.2752 10.0335L11.7805 14.5282C11.4876 14.8211 11.0127 14.8211 10.7199 14.5282Z\",\n fill: \"#003087\"\n }\n )\n }\n );\n}, Tue = \"CloseIcon\", Aue = new ke(Tue), Nue = ({\n ariaLabel: e = \"\",\n className: t = \"\"\n}) => {\n const n = se(Aue.getComponentClassName(), t);\n return /* @__PURE__ */ h.jsx(\n \"svg\",\n {\n width: \"24\",\n height: \"25\",\n viewBox: \"0 0 24 25\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"aria-hidden\": !0,\n \"aria-label\": e,\n className: n,\n children: /* @__PURE__ */ h.jsx(\n \"path\",\n {\n fillRule: \"evenodd\",\n clipRule: \"evenodd\",\n d: \"M11.9997 11.1308L7.25746 6.38877C6.74102 5.87235 5.90372 5.87237 5.3873 6.38881C4.87088 6.90524 4.8709 7.74254 5.38734 8.25896L10.1295 13.0009L5.38752 17.7427C4.87108 18.2591 4.87107 19.0964 5.38749 19.6128C5.90391 20.1293 6.7412 20.1293 7.25764 19.6129L11.9997 14.871L16.7417 19.6128C17.2581 20.1293 18.0954 20.1292 18.6118 19.6128C19.1282 19.0964 19.1282 18.2591 18.6118 17.7427L13.8698 13.0009L18.612 8.25896C19.1284 7.74254 19.1284 6.90525 18.612 6.38881C18.0956 5.87237 17.2583 5.87235 16.7418 6.38877L11.9997 11.1308Z\",\n fill: \"#001C64\"\n }\n )\n }\n );\n}, _P = (e) => {\n if (!(typeof window < \"u\"))\n return !1;\n const n = window.location.href, r = wS(e), a = wS(n);\n return r === a;\n}, Hy = Lt(({ href: e, className: t, children: n, isActive: r = !1, ...a }, i) => {\n const [o, s] = ze(r);\n We(() => {\n s(r || !!e && _P(e));\n }, [r, e]);\n const u = se(t, {\n \"nav-button-type-link-page-active\": o\n });\n return vt.createElement(\n \"a\",\n { ref: i, href: e, ...a, className: u },\n n\n );\n});\nHy.displayName = \"NavLink\";\nconst Oue = ({\n children: e,\n ...t\n}) => {\n const [n, r] = ze(!1), a = Ue(null), i = () => r(!0), o = () => {\n var u;\n ((u = a.current) == null ? void 0 : u.contains(document.activeElement)) || r(!1);\n };\n return /* @__PURE__ */ h.jsx(\n Hy,\n {\n ref: a,\n onFocus: i,\n onBlur: o,\n onMouseEnter: i,\n onMouseLeave: o,\n onMouseDown: i,\n onMouseUp: o,\n ...t,\n children: e(n)\n }\n );\n}, Lue = ({ children: e, ...t }) => {\n const n = Ue(null), r = Ue(\"none\"), { \"aria-expanded\": a, onClick: i } = t, o = a, s = (u) => {\n r.current = u.detail === 0 ? \"keyboard\" : \"mouse\", i && i(u);\n };\n return We(() => {\n !o && r.current === \"keyboard\" && (setTimeout(() => {\n var u;\n return (u = n.current) == null ? void 0 : u.focus();\n }), r.current = \"none\");\n }, [o]), vt.createElement(\n \"button\",\n {\n type: \"button\",\n ref: n,\n ...t,\n onClick: s\n },\n e\n );\n}, kue = \"NavButton\", il = new ke(kue), $f = il.getElementClassName(\"text\"), C4 = (e) => il.getElementClassName(`icon-${e}`), Iue = ({\n iconType: e\n}) => e === \"close\" ? /* @__PURE__ */ h.jsx(Nue, {}) : null, Due = ({\n buttonText: e,\n panelType: t,\n buttonTextSize: n = \"Body\"\n}) => {\n const r = () => t === \"nav-popup\" ? /* @__PURE__ */ h.jsx(\"span\", { className: il.getElementClassName(\"text-wrapper\"), children: /* @__PURE__ */ h.jsx(Sr, { as: \"span\", size: \"Title\", className: $f, children: e }) }) : /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: n, className: $f, children: e });\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n r(),\n /* @__PURE__ */ h.jsx(U9, {})\n ] });\n}, Pue = ({\n linkType: e,\n buttonText: t,\n buttonTextSize: n = \"Body\",\n showArrow: r\n}) => {\n const a = (o) => o === \"title-link\" ? /* @__PURE__ */ h.jsx(Sr, { as: \"span\", size: \"Title\", className: $f, children: t }) : /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: n, className: $f, children: t });\n if (e === \"nav-link\")\n return a(e);\n if (e === \"menu-link\") {\n const o = {\n motionFeel: \"Expressive\",\n motionIntensity: \"xs\",\n motionTypePreset: \"moveRight\"\n };\n return (u) => {\n const l = C4(\"arrow-right\"), c = se(l, {\n [`${l}-visible`]: u && r\n });\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n a(e),\n /* @__PURE__ */ h.jsx(\n Wn,\n {\n as: \"span\",\n motionOptions: o,\n animate: u ? \"animate\" : \"initial\",\n className: c,\n children: /* @__PURE__ */ h.jsx(wue, {})\n }\n )\n ] });\n };\n }\n const i = C4(\"arrow\");\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n a(e),\n /* @__PURE__ */ h.jsx(\"span\", { className: i, children: /* @__PURE__ */ h.jsx(Go, { size: \"Small\" }) })\n ] });\n}, Mue = (e, t) => e === \"icon-button\" ? Iue(t) : e === \"collapsible\" ? Due(\n t\n) : Pue(t), Rue = (e, t) => {\n const n = {\n buttonTypeProps: {},\n buttonHtmlProps: {}\n };\n if (e === \"icon-button\") {\n const { iconType: u, ...l } = t;\n return n.buttonHtmlProps = { ...l, type: \"button\" }, n.buttonTypeProps = { iconType: u }, n;\n }\n if (e === \"collapsible\") {\n const { buttonText: u, panelType: l, containsCurrentPageLink: c, ...d } = t;\n return n.buttonHtmlProps = {\n ...d,\n type: \"button\",\n \"data-text\": l === \"dropdown\" ? `${u} ^^` : \"\"\n }, n.buttonTypeProps = {\n buttonText: u,\n panelType: l,\n containsCurrentPageLink: c\n }, n;\n }\n const {\n linkType: r,\n buttonText: a,\n buttonTextSize: i,\n showArrow: o = !0,\n ...s\n } = t;\n return n.buttonHtmlProps = {\n ...s,\n \"data-text\": r === \"nav-link\" ? a : \"\"\n }, n.buttonTypeProps = {\n buttonText: a,\n linkType: r,\n buttonTextSize: i,\n showArrow: o\n }, n;\n}, EP = (e, t) => {\n const n = il.getPropsValueClassName(\n \"type\",\n e\n );\n if (e === \"icon-button\")\n return n;\n if (e === \"collapsible\") {\n const { panelType: i, containsCurrentPageLink: o } = t, s = `${n}-${i}`, u = o ? `${s}-page-active` : \"\";\n return se(n, s, u);\n }\n const { linkType: r } = t, a = `${n}-${r}`;\n return se(n, a);\n}, Bue = (e, t) => {\n if (e === \"icon-button\")\n return \"button\";\n if (e === \"collapsible\") {\n const { panelType: r } = t;\n return r !== \"nav-popup\" ? \"button\" : Lue;\n }\n const { linkType: n } = t;\n return n !== \"menu-link\" ? Hy : Oue;\n}, Fue = ({\n shouldRenderAsAccordion: e,\n expanded: t,\n buttonID: n,\n regionID: r\n}) => e ? {\n listTitleButtonProps: {\n \"aria-controls\": r,\n \"aria-expanded\": t\n },\n listProps: {\n \"aria-labelledby\": n,\n role: \"region\"\n }\n} : { listTitleButtonProps: {}, listProps: {} }, Og = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n}, jue = {\n 2: {\n options: Og,\n xlOptions: {\n columnStart: \"inner-3\",\n columnEnd: \"inner-11\"\n }\n },\n 3: {\n options: Og,\n xlOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"inner-12\"\n }\n },\n 4: {\n options: Og\n }\n}, $ue = (e) => {\n Yi(() => {\n const t = () => {\n const n = `.${e.split(\" \").join(\".\")}`, r = document.querySelectorAll(n), a = [].slice.call(r), i = a.map((s) => {\n const { style: u } = s;\n return u.minHeight = \"\", s.offsetHeight;\n }), o = Math.max(...i);\n a.forEach((s) => {\n const { style: u } = s;\n u.minHeight = `${o}px`;\n });\n };\n return window.addEventListener(\"resize\", t), t(), () => window.removeEventListener(\"resize\", t);\n }, [e]);\n}, Hue = \"MinimalDisclosure\", vd = (e = {}) => /* @__PURE__ */ h.jsx(Db, { ...e });\nvd.displayName = Hue;\nconst Vue = Lt(\n ({\n children: e,\n disclosure: t,\n className: n,\n messageId: r,\n disclosureGridItemProps: a,\n theme: i = \"white\",\n isThemeEnabled: o = !0,\n ...s\n }, u) => /* @__PURE__ */ h.jsx(\n DI,\n {\n className: n,\n messageId: r,\n disclosure: t,\n theme: i,\n isThemeEnabled: o,\n gridProps: s,\n disclosureWrapper: vd,\n disclosureGridItemProps: a,\n rootRef: u,\n children: e\n }\n )\n);\nVue.displayName = Fb;\nconst zue = ({\n children: e,\n className: t,\n containerDimensions: n = jD,\n rootRef: r,\n rootMargin: a\n}) => {\n const { inView: i, ref: o } = ah(\n $D({ rootMargin: a })\n ), s = sr(\n (u) => {\n const l = r && \"current\" in r;\n typeof r == \"function\" ? r(u) : l && (r.current = u), o(u);\n },\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [o]\n );\n return /* @__PURE__ */ h.jsx(\"div\", { ref: s, className: t, style: n, children: i && e });\n}, que = \"MinimalModal\", wP = ({ children: e, ...t }) => /* @__PURE__ */ h.jsx(RI, { ...t, children: e });\nwP.displayName = que;\nconst TP = (e = {}) => /* @__PURE__ */ h.jsx(\n Hb,\n {\n ...e,\n modalWrapper: wP\n }\n);\nTP.displayName = dd;\nconst Gue = \"MinimalButtonGroup\", Vy = (e = {}) => /* @__PURE__ */ h.jsx(\n iy,\n {\n disclosureWrapper: vd,\n inlinePlayButtonWrapper: TP,\n ...e\n }\n);\nVy.displayName = Gue;\nconst Uue = \"MinimalImageFrame\", _s = Lt((e = {}, t) => /* @__PURE__ */ h.jsx(\n zD,\n {\n ...e,\n rootRef: t,\n lazyLoadWrapper: zue\n }\n));\n_s.displayName = Uue;\nconst Wue = \"MinimalAppDownloadGroup\", AP = (e = {}) => /* @__PURE__ */ h.jsx(\n gy,\n {\n buttonGroupWrapper: Vy,\n disclosureWrapper: vd,\n imageFrameWrapper: _s,\n ...e\n }\n);\nAP.displayName = Wue;\nconst Kue = \"MinimalTextGroup\", NP = (e = {}) => /* @__PURE__ */ h.jsx(\n wy,\n {\n appDownloadGroupWrapper: AP,\n buttonGroupWrapper: Vy,\n disclosureWrapper: vd,\n ...e\n }\n);\nNP.displayName = Kue;\nconst OP = \"SegmentControlGroup\", sv = new ke(OP), vu = {\n TAB: \"tab\",\n PANEL: \"panel\"\n}, Mc = (e) => Un(`${e} ${vu.TAB}`), zy = (e) => Un(`${e} ${vu.PANEL}`), Yue = ({\n text: e,\n eventName: t\n}) => {\n const n = Un(e);\n return `{\"link\":\"${OP}-Link-${n}\",\"event_name\":\"${t}\"}`;\n}, Xue = Lt(\n ({\n text: e,\n href: t,\n textSize: n = \"Small\",\n isTabActive: r = !1,\n useAriaControls: a,\n analyticsEventName: i,\n onClick: o\n }, s) => {\n const u = n === \"Small\" ? \"Body Bold\" : \"Body Large Bold\", l = Mc(e), c = zy(e), d = Yue({ text: e, eventName: i }), p = (g) => {\n typeof o == \"function\" && o(e, g);\n };\n return /* @__PURE__ */ h.jsx(\n \"a\",\n {\n ref: s,\n className: r ? sv.getElementClassName(\"tab-active\") : sv.getElementClassName(\"tab\"),\n role: \"tab\",\n href: t,\n id: l,\n \"aria-controls\": a ? c : void 0,\n \"data-pa-click\": d,\n \"aria-selected\": r,\n onClick: p,\n children: /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: u, children: e })\n }\n );\n }\n);\nconst LP = Lt(\n ({\n className: e,\n selTabItemText: t,\n tabItems: n,\n analyticsEventName: r = \"smb_text_link_cta_clicked\",\n isLarge: a,\n useAriaControls: i = !0\n }, o) => {\n const s = se(\n e,\n sv.getElementClassName(\"tabs-container\"),\n a ? \"large-container\" : \"small-container\"\n ), u = a ? \"Large\" : \"Small\";\n return /* @__PURE__ */ h.jsx(\"div\", { className: s, role: \"tablist\", children: n == null ? void 0 : n.map(({ text: l, href: c, onClick: d }) => {\n const p = l === t;\n return /* @__PURE__ */ h.jsx(\n Xue,\n {\n ref: (g) => {\n g && o && \"current\" in o && o.current && (o.current[l] = g);\n },\n text: l,\n href: c,\n onClick: d,\n textSize: u,\n analyticsEventName: r,\n isTabActive: p,\n useAriaControls: i\n },\n l\n );\n }) });\n }\n), kP = (e, t) => {\n let n = !1;\n return (...r) => {\n n || (n = !0, e.apply({}, r), setTimeout(() => {\n n = !1;\n }, t));\n };\n};\nconst Zue = \"ScrollStickyButton\";\nnew ke(Zue);\nconst xh = \"ActionCard\", Fl = new ke(xh), IP = ({\n className: e = \"\",\n cta: t,\n paragraph: n,\n paragraphSize: r = \"Body\",\n theme: a = \"white\",\n variant: i = \"Default\",\n analyticsCompName: o = xh,\n customWrapper: s = \"div\",\n ...u\n}) => {\n const l = Qn();\n if (!t)\n return null;\n const c = se(\n Fl.getComponentClassName(),\n Fl.getPropsValueClassName(\"type\", i),\n pn.getThemeClassName(a),\n e\n ), p = [\"xs\", \"sm\"].includes(l) ? \"Small\" : \"Large\";\n return /* @__PURE__ */ h.jsx(s, { className: c, ...u, children: /* @__PURE__ */ h.jsxs(\"div\", { className: Fl.getElementClassName(\"container\"), children: [\n n && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"p\",\n className: Fl.getElementClassName(\"paragraph\"),\n content: n,\n customWrapper: ka(r),\n analyticsCompName: o,\n analyticsTextSection: \"paragraph\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n xi,\n {\n ...t,\n className: Fl.getElementClassName(\"button\"),\n size: p,\n analyticsCompName: o\n }\n )\n ] }) });\n};\nIP.displayName = xh;\nconst Que = () => {\n var t;\n if (typeof window < \"u\") {\n const n = window;\n if ((t = n.laDataLayer) != null && t.tsrc)\n return `referrer=${n.laDataLayer.tsrc}`;\n }\n return \"\";\n}, Jue = (e) => {\n const t = Que();\n return t ? e === void 0 ? \"\" : e.indexOf(\"?\") > 0 ? `${e}&${t}` : `${e}?${t}` : e;\n}, ele = (e) => e === ib.PRODUCTION ? eK : \"*\", tle = ({\n encryptedAccountNum: e,\n userType: t,\n fpti: n\n}) => {\n const r = window;\n let a = {};\n return r.laDataLayer && (a = {\n leadGenParam: r.laDataLayer.leadGenParam,\n tsrc: r.laDataLayer.tsrc,\n url: r.laDataLayer.url\n }), {\n trackingInfo: !0,\n encryptedAccountNum: e,\n userType: t,\n fpti: n,\n laDataLayer: a\n };\n};\nconst DP = \"FormIframe\", fc = new ke(DP), nle = ({ loadingText: e }) => /* @__PURE__ */ h.jsxs(\"div\", { className: fc.getElementClassName(\"formSpinner\"), children: [\n e && /* @__PURE__ */ h.jsx(\"span\", { className: fc.getElementClassName(\"loadingText\"), children: e }),\n /* @__PURE__ */ h.jsx(\"div\", { className: fc.getElementClassName(\"spinner\") })\n] }), PP = ({\n loadingText: e,\n pardotUrl: t,\n runMode: n,\n iframeTitle: r,\n trackingInfo: a = {\n encryptedAccountNum: \"\",\n fpti: {},\n userType: ob.GENERAL\n },\n className: i,\n ...o\n}) => {\n const [s, u] = ze(!0), [l, c] = ze(!1), d = Ue(null), p = Jue(t), g = ele(n), v = () => {\n var x;\n if ((x = d == null ? void 0 : d.current) != null && x.contentWindow) {\n const S = { pageLoaded: !0 };\n d.current.contentWindow.postMessage(S, Xl);\n }\n }, b = () => {\n var x;\n if ((x = d == null ? void 0 : d.current) != null && x.contentWindow) {\n const S = { targetInfo: g };\n d.current.contentWindow.postMessage(S, Xl);\n }\n }, C = () => {\n var x;\n if ((x = d == null ? void 0 : d.current) != null && x.contentWindow) {\n const S = { ...tle(a) };\n d.current.contentWindow.postMessage(S, Xl);\n }\n }, w = ({ data: x, origin: S }) => {\n var E;\n S === Xl && (x.formSubmit && u(!0), x.targetInfoRequired && b(), x.iframeHeight && ((E = d == null ? void 0 : d.current) != null && E.style) && (d.current.style.height = `${x.iframeHeight}px`, x.initialisedTracking || C()), s && x.initialisedTracking && u(!1));\n };\n We(() => {\n var S;\n let x;\n return l ? (window.addEventListener(\"message\", w), (S = d == null ? void 0 : d.current) == null || S.addEventListener(\"load\", v), x = () => {\n var E;\n window.removeEventListener(\"message\", w), (E = d == null ? void 0 : d.current) == null || E.removeEventListener(\"load\", v);\n }) : c(!0), x;\n }, [l]);\n const _ = se(i, fc.getComponentClassName());\n return /* @__PURE__ */ h.jsxs(\"div\", { className: fc.getElementClassName(\"wrapper\"), children: [\n s && /* @__PURE__ */ h.jsx(nle, { loadingText: e }),\n l && /* @__PURE__ */ h.jsx(\n \"iframe\",\n {\n frameBorder: \"0\",\n ref: d,\n title: r,\n src: p,\n className: _,\n ...o\n }\n )\n ] });\n};\nPP.displayName = DP;\nconst MP = \"PardotForm\", nf = new ke(MP), rle = ({ textGroup: e, textGroupWrapper: t }) => /* @__PURE__ */ h.jsx(\"div\", { className: nf.getElementClassName(\"introSection\"), children: e && /* @__PURE__ */ h.jsx(\n t,\n {\n headlineTag: e.headlineTag || \"h3\",\n headlineSize: e.headlineSize || \"Headline 5\",\n headline: e.headline,\n analyticsCompName: e.analyticsCompName,\n paragraph: e.paragraph,\n paragraphSize: e.paragraphSize\n }\n) }), ale = ({\n textGroup: e,\n loadingText: t,\n pardotUrl: n,\n iframeTitle: r,\n theme: a = \"white\",\n className: i,\n textGroupWrapper: o,\n componentId: s,\n hasShadow: u = !0,\n ...l\n}) => {\n const { runMode: c, userHome: d, encryptedAccountNum: p, fpti: g } = Ze(Vt), v = {\n loadingText: t,\n pardotUrl: n,\n iframeTitle: r,\n runMode: c,\n trackingInfo: {\n encryptedAccountNum: p,\n fpti: g,\n userType: d\n }\n }, b = se(\n i,\n nf.getComponentClassName(),\n pn.getThemeClassName(a),\n nf.getPropsValueClassName(\"hasShadow\", u)\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: b, ...l, id: s, children: [\n /* @__PURE__ */ h.jsx(rle, { textGroup: e, textGroupWrapper: o }),\n n && /* @__PURE__ */ h.jsx(\"div\", { className: nf.getElementClassName(\"iframe\"), children: /* @__PURE__ */ h.jsx(PP, { ...v }) })\n ] });\n}, ile = (e) => {\n const t = {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-6\",\n rowStart: 1\n }\n }, n = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\",\n rowStart: 1,\n rowSpan: 2\n }\n }, r = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-6\",\n rowStart: 2,\n rowSpan: 2\n }\n };\n return e === \"Wide\" && (t.lgOptions = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-5\",\n rowStart: 1\n }, n.lgOptions = {\n columnStart: \"inner-5\",\n columnEnd: \"right-inner\",\n rowStart: 1,\n rowSpan: 2\n }, r.lgOptions = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-5\",\n rowStart: 2,\n rowSpan: 2\n }), {\n headingCol: t,\n formCol: n,\n contactCol: r\n };\n}, ole = (e) => e.slice(e.lastIndexOf(\"/\") + 1).split(\"?\")[0], sle = (e, t) => {\n if (typeof Storage > \"u\")\n return;\n const n = /* @__PURE__ */ new Date();\n n.setDate(n.getDate() + t), localStorage.setItem(e, n.toString());\n}, ule = (e) => {\n if (typeof window > \"u\" || typeof Storage > \"u\")\n return !0;\n const t = localStorage.getItem(e);\n if (t) {\n const n = t || \"\";\n if (new Date(n) > /* @__PURE__ */ new Date())\n return !1;\n localStorage.removeItem(e);\n }\n return !0;\n};\nconst Pu = \"ContactSales\", jl = new ke(Pu), RP = ({\n className: e,\n textGroup: t,\n actionCard: n,\n topSpacer: r = \"6vw\",\n bottomSpacer: a = \"6vw\",\n theme: i = \"blue 700\",\n formWidth: o = \"Wide\",\n form: s = {\n pardotUrl: \"\",\n loadingText: \"\",\n iframeTitle: \"\"\n },\n thankYouMessage: u,\n hideFormOnSubmit: l = !1,\n hideFormDays: c = 15,\n sectionWrapper: d,\n actionCardWrapper: p,\n textGroupWrapper: g,\n pardotFormWrapper: v,\n componentId: b,\n initialFormDisplay: C = !0,\n onChangeFormVisibility: w,\n ..._\n}) => {\n const [x, S] = ze(!1), [E, N] = ze(() => !C), P = ole(s.pardotUrl), { isCMSPreview: H } = Ze(Vt), k = se(e, jl.getComponentClassName()), Q = ile(o), I = {\n topSpacing: r,\n bottomSpacing: a,\n rowsGap: \"none\"\n }, G = l && !H;\n We(() => {\n const B = typeof w == \"function\";\n if (G) {\n const O = !ule(P);\n N(O), B && w(O);\n return;\n }\n C || (N(!1), B && w(!1));\n }, [\n G,\n P,\n w,\n C\n ]), We(() => {\n const B = ({ data: O, origin: D }) => {\n D !== Xl || !(O != null && O.submitSuccessful) || (G && sle(P, c), S(!0), typeof w == \"function\" && w(!0));\n };\n return window.addEventListener(\"message\", B), () => {\n window.removeEventListener(\"message\", B);\n };\n }, [G, c, P, w]);\n const $ = (B) => u ? /* @__PURE__ */ h.jsx(d, { ...B, children: /* @__PURE__ */ h.jsx(lt, { children: /* @__PURE__ */ h.jsx(\n g,\n {\n ...u,\n headlineTag: (u == null ? void 0 : u.headlineTag) || \"h2\",\n headlineSize: (u == null ? void 0 : u.headlineSize) || \"Headline 4\",\n analyticsCompName: Pu\n }\n ) }) }) : null, z = {\n theme: i,\n className: k,\n options: I,\n id: b,\n ..._\n };\n return E ? null : x ? $(z) : /* @__PURE__ */ h.jsxs(d, { ...z, children: [\n t && /* @__PURE__ */ h.jsx(\n lt,\n {\n className: jl.getElementClassName(\"headingCol\"),\n ...Q.headingCol,\n children: /* @__PURE__ */ h.jsx(\n g,\n {\n className: jl.getElementClassName(\"textgroup\"),\n ...t,\n headlineSize: (t == null ? void 0 : t.headlineSize) || \"Headline 4\",\n headlineTag: (t == null ? void 0 : t.headlineTag) || \"h2\",\n analyticsCompName: Pu\n }\n )\n }\n ),\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: jl.getElementClassName(\"formCol\"),\n ...Q.formCol,\n children: /* @__PURE__ */ h.jsx(v, { ...s })\n }\n ),\n n && /* @__PURE__ */ h.jsx(\n lt,\n {\n className: jl.getElementClassName(\"contactCol\"),\n ...Q.contactCol,\n children: n.map((B, O) => /* @__PURE__ */ h.jsx(\n p,\n {\n analyticsCompName: Pu,\n ...B\n },\n `ActionCardItem-${O + 1}`\n ))\n }\n )\n ] });\n};\nRP.displayName = Pu;\nconst wa = $o({\n classNameGen: {},\n analyticsCompName: \"\",\n getDataPaClickString: () => \"\"\n}), lle = ({\n classNameGen: e,\n analyticsCompName: t,\n generateDataPaClickFunction: n,\n children: r\n}) => {\n const { pageSegment: a } = Ze(Vt), i = wt(\n () => n(a, t),\n [n, a, t]\n ), o = wt(\n () => ({\n classNameGen: e,\n analyticsCompName: t,\n getDataPaClickString: i\n }),\n [e, t, i]\n );\n return /* @__PURE__ */ h.jsx(wa.Provider, { value: o, children: r });\n}, cle = 16, bd = (e) => {\n let t = cle;\n if (typeof window < \"u\") {\n const r = document.querySelector(\"html\"), i = +getComputedStyle(r).fontSize.split(\"px\")[0];\n i > 0 && (t = i);\n }\n return e * t;\n}, dle = 5.5, fle = 4.5, ple = 3.625, hle = 3.125, BP = bd(\n dle\n), FP = bd(\n fle\n), jP = bd(\n ple\n), $P = bd(\n hle\n), HP = \"div.sub-nav\", VP = \"section.hero .button-type-primary\", mle = {\n options: {\n verticalAlign: \"center\",\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n xlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, gle = {\n options: {\n verticalAlign: \"center\",\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n lgOptions: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n twoXlOptions: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n}, vle = (e, t, n) => {\n const r = {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n }, a = tn.constants.Functional.multiplier.appear * 1, i = {\n unpinned: {\n height: e.unpinned === 0 ? void 0 : e.unpinned,\n transition: r\n },\n pinned: {\n height: e.pinned === 0 ? void 0 : e.pinned,\n transition: r\n },\n visible: {\n opacity: 1,\n transition: {\n duration: a\n }\n },\n hidden: {\n opacity: 0,\n transition: {\n duration: a\n }\n },\n disabled: {\n visibility: \"hidden\",\n transition: {\n delay: a\n }\n },\n enabled: {\n visibility: \"visible\"\n }\n }, s = {\n initial: n ? [\"unpinned\", \"hidden\", \"disabled\"] : [\"unpinned\", \"visible\", \"enabled\"],\n variants: i,\n animate: [\n t ? \"pinned\" : \"unpinned\",\n n ? [\"hidden\", \"disabled\"] : [\"visible\", \"enabled\"]\n ]\n };\n return {\n as: Cr.div,\n ...s\n };\n}, ble = (e, t) => (n, r, a) => {\n const i = a === ln.Button ? ab.Button : Ho.Text;\n return Nn(\n {\n componentName: t,\n linkSection: n,\n linkText: r,\n clickEvent: i\n },\n e,\n a\n );\n}, zP = {\n motionFeel: \"Functional\",\n motionIntensity: \"sm\",\n motionTypePreset: \"moveUp\"\n}, yle = (e, t) => e.find(\n (n) => n.type === \"Link\" && n.url.substring(1) === t\n), Sh = (e = 150) => {\n const [t, n] = ze({\n width: 0,\n height: 0\n });\n return We(() => {\n if (typeof window > \"u\")\n return;\n const r = () => setTimeout(() => {\n n({\n width: window.innerWidth,\n height: window.innerHeight\n });\n });\n r();\n const a = kP(r, e);\n return window.addEventListener(\"resize\", a), () => {\n window.removeEventListener(\"resize\", a);\n };\n }, [e]), t;\n}, Cle = () => {\n const [e, t] = ze(\"skip-check\"), { height: n } = Sh(0);\n return We(() => {\n const r = document.querySelectorAll(VP);\n if (!r.length || n <= 0)\n return t(\"skip-check\");\n const a = ([s]) => t(s.isIntersecting ? \"active\" : \"inactive\"), i = -1 * (n - 1), o = new IntersectionObserver(a, {\n threshold: 0.1,\n rootMargin: `50000px 0px ${i}px 0px`\n });\n return r.forEach(\n (s) => o.observe(s)\n ), () => {\n r.forEach(\n (s) => o.unobserve(s)\n );\n };\n }, [n]), e;\n}, x4 = (e) => `${e}px`, xle = ({ ...e }) => /* @__PURE__ */ h.jsx(Wn, { as: \"div\", ...e }), qP = {\n as: xle,\n motionOptions: xf\n}, GP = (e) => ({\n options: {\n rowsMinHeight: x4(\n e ? $P : jP\n )\n },\n mdOptions: {\n rowsMinHeight: x4(\n e ? FP : BP\n )\n }\n}), UP = (e, t, n = \"\") => se(\n pn.getThemeClassName(t),\n e.getComponentClassName(),\n n\n), Sle = ({\n theme: e,\n shouldShrinkNav: t,\n updateNavRunningStatus: n,\n children: r,\n className: a\n}) => {\n const i = Cle(), { classNameGen: o, analyticsCompName: s } = Ze(wa);\n We(() => {\n if (i === \"active\") {\n n(\"pinned\");\n return;\n }\n if (i === \"inactive\") {\n n(\"running\");\n return;\n }\n n(\"unavailable\");\n }, [i, n]);\n const u = se(\n UP(o, e, a),\n o.getElementClassName(\"position-fixed\"),\n {\n [o.getElementClassName(\"hidden\")]: i === \"inactive\",\n [o.getElementClassName(\"visible\")]: i === \"active\"\n }\n );\n return /* @__PURE__ */ h.jsx(\n Yc,\n {\n id: s,\n className: u,\n ...qP,\n ...GP(t),\n children: r\n }\n );\n}, _le = () => {\n const [e, t] = ze(\"skip-check\"), { height: n } = Sh(0), [r] = Ma([\"Below MD\"]);\n return We(() => {\n const a = document.querySelector(HP);\n if (!a || n <= 0)\n return t(\"skip-check\");\n const i = ([u]) => {\n t(u.isIntersecting ? \"pinned\" : \"unpinned\");\n }, o = -1 * (n - 1), s = new IntersectionObserver(i, {\n rootMargin: `50000px 0px ${o}px 0px`\n });\n return s.observe(a), () => {\n s == null || s.unobserve(a);\n };\n }, [n, r]), e;\n}, Ele = ({\n theme: e,\n shouldShrinkNav: t,\n updateNavRunningStatus: n,\n children: r,\n className: a\n}) => {\n const i = _le(), { classNameGen: o, analyticsCompName: s } = Ze(wa);\n We(() => {\n if (i === \"pinned\") {\n n(\"pinned\");\n return;\n }\n if (i === \"unpinned\") {\n n(\"running\");\n return;\n }\n n(\"unavailable\");\n }, [i, n]);\n const u = se(\n UP(o, e, a),\n o.getElementClassName(\"position-sticky\"),\n {\n [o.getElementClassName(\"unpinned\")]: i === \"unpinned\",\n [o.getElementClassName(\"pinned\")]: i === \"pinned\"\n }\n );\n return /* @__PURE__ */ h.jsx(\n Yc,\n {\n id: s,\n className: u,\n ...qP,\n ...GP(t),\n children: r\n }\n );\n};\nconst wle = ({ ariaLabel: e, children: t }) => {\n const { classNameGen: n } = Ze(wa);\n return /* @__PURE__ */ h.jsx(\n \"nav\",\n {\n \"aria-label\": e,\n className: n.getElementClassName(\"container\"),\n children: t\n }\n );\n};\nconst Uu = ({ buttonType: e, className: t, ...n }) => {\n const { buttonHtmlProps: r, buttonTypeProps: a } = Rue(\n e,\n n\n ), i = se(\n il.getComponentClassName(),\n EP(e, a),\n t\n ), o = Bue(e, a);\n return /* @__PURE__ */ h.jsx(o, { ...r, className: i, children: Mue(e, a) });\n};\nconst uv = ({\n title: e,\n as: t = e.type || \"Title\",\n isPopupTitle: n,\n isPopupOpen: r,\n scrollableTitle: a = !0,\n enableRichText: i = !1,\n onClick: o\n}) => {\n const { classNameGen: s, getDataPaClickString: u } = Ze(wa), { host: l, country: c } = Ze(Vt), d = u(\n \"Title\",\n e.text,\n ln.Button\n ), p = u(\n \"Title\",\n e.text,\n ln.Link\n );\n if (t === \"Title\") {\n const C = se(\n s.getElementClassName(\"title-text\")\n ), w = () => /* @__PURE__ */ h.jsx(Sr, { as: \"span\", size: \"Title\", className: C, children: e.text }), _ = () => /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n content: e.text,\n className: C\n }\n );\n return /* @__PURE__ */ h.jsx(\n \"p\",\n {\n className: se(s.getElementClassName(\"title\"), {\n [s.getElementClassName(\"title-popup\")]: n,\n [s.getElementClassName(\"title-no-scrollable\")]: !a\n }),\n children: i ? _() : w()\n }\n );\n }\n if (t === \"Button\") {\n const C = se(\n s.getElementClassName(\"title\"),\n s.getElementClassName(\"title-button\")\n ), w = se(\n s.getElementClassName(\"title-container\"),\n {\n [s.getElementClassName(\"title-no-scrollable\")]: !a\n }\n );\n return /* @__PURE__ */ h.jsx(\"div\", { className: w, children: /* @__PURE__ */ h.jsx(\n Uu,\n {\n buttonType: \"collapsible\",\n panelType: \"nav-popup\",\n buttonText: e.text,\n onClick: o,\n \"data-pa-click\": d,\n \"aria-controls\": \"sub-nav-popup\",\n \"aria-expanded\": r,\n disabled: r,\n className: C\n }\n ) });\n }\n const { url: g, target: v } = e, b = se(\n s.getElementClassName(\"title\"),\n s.getElementClassName(\"title-link\"),\n {\n [s.getElementClassName(\"title-popup\")]: n,\n [s.getElementClassName(\"title-no-scrollable\")]: !a\n }\n );\n return /* @__PURE__ */ h.jsx(\n Uu,\n {\n buttonType: \"link\",\n linkType: \"title-link\",\n buttonText: e.text,\n \"data-pa-click\": p,\n href: qi(g, l, c),\n target: v,\n className: b\n }\n );\n}, Tle = ({\n menuId: e,\n isDropdownOpen: t,\n text: n,\n onClick: r,\n renderingStyle: a = \"dropdown\",\n containsCurrentPageLink: i\n}) => {\n const { getDataPaClickString: o } = Ze(wa), s = o(\n \"Items\",\n n,\n ln.Button\n );\n return /* @__PURE__ */ h.jsx(\n Uu,\n {\n buttonType: \"collapsible\",\n panelType: a,\n \"data-pa-click\": s,\n onClick: r,\n buttonText: n,\n \"aria-controls\": e,\n \"aria-expanded\": t,\n containsCurrentPageLink: i\n }\n );\n};\nconst Ale = \"Divider\", S4 = new ke(Ale), lv = ({\n show: e = !0,\n orientation: t = \"horizontal\",\n className: n = \"\"\n}) => {\n if (!e)\n return null;\n const r = se(\n S4.getComponentClassName(),\n S4.getPropsValueClassName(\"orientation\", t),\n n\n );\n return /* @__PURE__ */ h.jsx(\"hr\", { className: r });\n}, WP = (e, t, n = !0) => {\n We(() => {\n const r = (a) => {\n var o;\n e.current && !((o = e.current) != null && o.contains(a.target)) && t && t();\n };\n return n ? window.addEventListener(\"click\", r, !0) : window.removeEventListener(\"click\", r, !0), () => window.removeEventListener(\"click\", r, !0);\n }, [e, t, n]);\n}, _h = Lt(\n ({ orientation: e = \"horizontal\", isVisible: t = !0, className: n = \"\", children: r }, a) => {\n const { classNameGen: i } = Ze(wa), o = se(\n i.getElementClassName(\"items-list\"),\n {\n \"sub-nav-item-hidden\": !t,\n [i.getElementClassName(\"items-list-orientation-vertical\")]: e === \"vertical\"\n },\n n\n );\n return /* @__PURE__ */ h.jsx(\"ul\", { ref: a, className: o, \"aria-hidden\": !t, children: r });\n }\n);\n_h.displayName = \"ItemsList\";\nconst KP = ({\n text: e,\n url: t,\n target: n,\n itemOrientation: r = \"horizontal\",\n isActive: a,\n onClick: i\n}) => {\n const { classNameGen: o, getDataPaClickString: s } = Ze(wa), u = s(\n \"Items\",\n e,\n ln.Link\n ), { host: l, country: c } = Ze(Vt), d = t ? qi(t, l, c) : void 0;\n return /* @__PURE__ */ h.jsx(\"li\", { className: o.getElementClassName(\"list-item\"), children: /* @__PURE__ */ h.jsx(\n Uu,\n {\n buttonType: \"link\",\n linkType: r === \"horizontal\" ? \"nav-link\" : \"menu-link\",\n buttonText: e,\n \"data-pa-click\": u,\n href: d,\n target: n,\n onClick: i,\n isActive: a\n }\n ) });\n};\nconst Nle = ({\n show: e,\n id: t,\n menuTitle: n,\n menuLinkCollection: r,\n onClose: a,\n renderingStyle: i\n}) => {\n const { classNameGen: o } = Ze(wa), s = Ue(null);\n WP(s, a, e);\n const u = se(\n o.getElementClassName(\"item-dropdown-menu\"),\n {\n [o.getElementClassName(\"item-dropdown-menu-show\")]: e,\n [o.getElementClassName(\"item-dropdown-menu-accordion-panel\")]: i === \"accordion\"\n }\n ), l = {\n initial: {\n height: 0,\n opacity: 0,\n display: \"none\"\n },\n animate: {\n height: \"auto\",\n opacity: [0, 1, 1],\n display: \"block\"\n }\n }, c = {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n }, d = i === \"accordion\" ? Cr.div : Wn, v = i === \"accordion\" ? {\n ref: s,\n initial: \"initial\",\n variants: l,\n transition: c,\n animate: e ? \"animate\" : \"initial\"\n } : {\n rootRef: s,\n motionOptions: zP,\n animate: e ? \"animate\" : \"initial\"\n };\n return /* @__PURE__ */ h.jsxs(d, { id: t, className: u, ...v, children: [\n n && /* @__PURE__ */ h.jsx(uv, { title: n }),\n /* @__PURE__ */ h.jsx(\n lv,\n {\n className: o.getElementClassName(\n \"item-dropdown-menu-divider\"\n )\n }\n ),\n /* @__PURE__ */ h.jsx(_h, { orientation: \"vertical\", isVisible: e, children: r.map((b, C) => /* @__PURE__ */ h.jsx(\n KP,\n {\n itemOrientation: \"vertical\",\n ...b\n },\n `menu-link-${C + 1}`\n )) })\n ] });\n}, Ole = ({\n text: e,\n menuTitle: t,\n menuLinkCollection: n,\n itemOrientation: r = \"horizontal\",\n containsCurrentPageLink: a = !1\n}) => {\n const [i, o] = ze(!1), { classNameGen: s } = Ze(wa), u = r === \"horizontal\" ? \"dropdown\" : \"accordion\", l = u === \"dropdown\", c = () => o(!i), d = () => o(!1), p = () => {\n const _ = t && t.type === \"Link\";\n return u === \"dropdown\" ? n : _ ? [t, ...n] : n;\n }, g = () => t && t.type === \"Title\" ? t.text : e, b = (() => u === \"dropdown\" ? e : g())(), C = `${Un(b)}-${u}-menu`, w = se(\n s.getElementClassName(\"list-item\"),\n {\n [s.getElementClassName(\"list-item-dropdown\")]: u === \"dropdown\",\n [s.getElementClassName(\"list-item-accordion\")]: u === \"accordion\",\n [s.getElementClassName(\"list-item-accordion-open\")]: i && u === \"accordion\"\n }\n );\n return /* @__PURE__ */ h.jsxs(\"li\", { className: w, children: [\n /* @__PURE__ */ h.jsx(\n Tle,\n {\n menuId: C,\n text: b,\n isDropdownOpen: i,\n onClick: c,\n renderingStyle: u,\n containsCurrentPageLink: a\n }\n ),\n /* @__PURE__ */ h.jsx(\n Nle,\n {\n show: i,\n id: C,\n menuTitle: l ? t : void 0,\n menuLinkCollection: p(),\n onClose: d,\n renderingStyle: u\n }\n )\n ] });\n};\nvar YP = function() {\n if (typeof Map < \"u\")\n return Map;\n function e(t, n) {\n var r = -1;\n return t.some(function(a, i) {\n return a[0] === n ? (r = i, !0) : !1;\n }), r;\n }\n return (\n /** @class */\n function() {\n function t() {\n this.__entries__ = [];\n }\n return Object.defineProperty(t.prototype, \"size\", {\n /**\n * @returns {boolean}\n */\n get: function() {\n return this.__entries__.length;\n },\n enumerable: !0,\n configurable: !0\n }), t.prototype.get = function(n) {\n var r = e(this.__entries__, n), a = this.__entries__[r];\n return a && a[1];\n }, t.prototype.set = function(n, r) {\n var a = e(this.__entries__, n);\n ~a ? this.__entries__[a][1] = r : this.__entries__.push([n, r]);\n }, t.prototype.delete = function(n) {\n var r = this.__entries__, a = e(r, n);\n ~a && r.splice(a, 1);\n }, t.prototype.has = function(n) {\n return !!~e(this.__entries__, n);\n }, t.prototype.clear = function() {\n this.__entries__.splice(0);\n }, t.prototype.forEach = function(n, r) {\n r === void 0 && (r = null);\n for (var a = 0, i = this.__entries__; a < i.length; a++) {\n var o = i[a];\n n.call(r, o[1], o[0]);\n }\n }, t;\n }()\n );\n}(), cv = typeof window < \"u\" && typeof document < \"u\" && window.document === document, Hf = function() {\n return typeof global < \"u\" && global.Math === Math ? global : typeof self < \"u\" && self.Math === Math ? self : typeof window < \"u\" && window.Math === Math ? window : Function(\"return this\")();\n}(), Lle = function() {\n return typeof requestAnimationFrame == \"function\" ? requestAnimationFrame.bind(Hf) : function(e) {\n return setTimeout(function() {\n return e(Date.now());\n }, 1e3 / 60);\n };\n}(), kle = 2;\nfunction Ile(e, t) {\n var n = !1, r = !1, a = 0;\n function i() {\n n && (n = !1, e()), r && s();\n }\n function o() {\n Lle(i);\n }\n function s() {\n var u = Date.now();\n if (n) {\n if (u - a < kle)\n return;\n r = !0;\n } else\n n = !0, r = !1, setTimeout(o, t);\n a = u;\n }\n return s;\n}\nvar Dle = 20, Ple = [\"top\", \"right\", \"bottom\", \"left\", \"width\", \"height\", \"size\", \"weight\"], Mle = typeof MutationObserver < \"u\", Rle = (\n /** @class */\n function() {\n function e() {\n this.connected_ = !1, this.mutationEventsAdded_ = !1, this.mutationsObserver_ = null, this.observers_ = [], this.onTransitionEnd_ = this.onTransitionEnd_.bind(this), this.refresh = Ile(this.refresh.bind(this), Dle);\n }\n return e.prototype.addObserver = function(t) {\n ~this.observers_.indexOf(t) || this.observers_.push(t), this.connected_ || this.connect_();\n }, e.prototype.removeObserver = function(t) {\n var n = this.observers_, r = n.indexOf(t);\n ~r && n.splice(r, 1), !n.length && this.connected_ && this.disconnect_();\n }, e.prototype.refresh = function() {\n var t = this.updateObservers_();\n t && this.refresh();\n }, e.prototype.updateObservers_ = function() {\n var t = this.observers_.filter(function(n) {\n return n.gatherActive(), n.hasActive();\n });\n return t.forEach(function(n) {\n return n.broadcastActive();\n }), t.length > 0;\n }, e.prototype.connect_ = function() {\n !cv || this.connected_ || (document.addEventListener(\"transitionend\", this.onTransitionEnd_), window.addEventListener(\"resize\", this.refresh), Mle ? (this.mutationsObserver_ = new MutationObserver(this.refresh), this.mutationsObserver_.observe(document, {\n attributes: !0,\n childList: !0,\n characterData: !0,\n subtree: !0\n })) : (document.addEventListener(\"DOMSubtreeModified\", this.refresh), this.mutationEventsAdded_ = !0), this.connected_ = !0);\n }, e.prototype.disconnect_ = function() {\n !cv || !this.connected_ || (document.removeEventListener(\"transitionend\", this.onTransitionEnd_), window.removeEventListener(\"resize\", this.refresh), this.mutationsObserver_ && this.mutationsObserver_.disconnect(), this.mutationEventsAdded_ && document.removeEventListener(\"DOMSubtreeModified\", this.refresh), this.mutationsObserver_ = null, this.mutationEventsAdded_ = !1, this.connected_ = !1);\n }, e.prototype.onTransitionEnd_ = function(t) {\n var n = t.propertyName, r = n === void 0 ? \"\" : n, a = Ple.some(function(i) {\n return !!~r.indexOf(i);\n });\n a && this.refresh();\n }, e.getInstance = function() {\n return this.instance_ || (this.instance_ = new e()), this.instance_;\n }, e.instance_ = null, e;\n }()\n), XP = function(e, t) {\n for (var n = 0, r = Object.keys(t); n < r.length; n++) {\n var a = r[n];\n Object.defineProperty(e, a, {\n value: t[a],\n enumerable: !1,\n writable: !1,\n configurable: !0\n });\n }\n return e;\n}, Wu = function(e) {\n var t = e && e.ownerDocument && e.ownerDocument.defaultView;\n return t || Hf;\n}, ZP = Eh(0, 0, 0, 0);\nfunction Vf(e) {\n return parseFloat(e) || 0;\n}\nfunction _4(e) {\n for (var t = [], n = 1; n < arguments.length; n++)\n t[n - 1] = arguments[n];\n return t.reduce(function(r, a) {\n var i = e[\"border-\" + a + \"-width\"];\n return r + Vf(i);\n }, 0);\n}\nfunction Ble(e) {\n for (var t = [\"top\", \"right\", \"bottom\", \"left\"], n = {}, r = 0, a = t; r < a.length; r++) {\n var i = a[r], o = e[\"padding-\" + i];\n n[i] = Vf(o);\n }\n return n;\n}\nfunction Fle(e) {\n var t = e.getBBox();\n return Eh(0, 0, t.width, t.height);\n}\nfunction jle(e) {\n var t = e.clientWidth, n = e.clientHeight;\n if (!t && !n)\n return ZP;\n var r = Wu(e).getComputedStyle(e), a = Ble(r), i = a.left + a.right, o = a.top + a.bottom, s = Vf(r.width), u = Vf(r.height);\n if (r.boxSizing === \"border-box\" && (Math.round(s + i) !== t && (s -= _4(r, \"left\", \"right\") + i), Math.round(u + o) !== n && (u -= _4(r, \"top\", \"bottom\") + o)), !Hle(e)) {\n var l = Math.round(s + i) - t, c = Math.round(u + o) - n;\n Math.abs(l) !== 1 && (s -= l), Math.abs(c) !== 1 && (u -= c);\n }\n return Eh(a.left, a.top, s, u);\n}\nvar $le = function() {\n return typeof SVGGraphicsElement < \"u\" ? function(e) {\n return e instanceof Wu(e).SVGGraphicsElement;\n } : function(e) {\n return e instanceof Wu(e).SVGElement && typeof e.getBBox == \"function\";\n };\n}();\nfunction Hle(e) {\n return e === Wu(e).document.documentElement;\n}\nfunction Vle(e) {\n return cv ? $le(e) ? Fle(e) : jle(e) : ZP;\n}\nfunction zle(e) {\n var t = e.x, n = e.y, r = e.width, a = e.height, i = typeof DOMRectReadOnly < \"u\" ? DOMRectReadOnly : Object, o = Object.create(i.prototype);\n return XP(o, {\n x: t,\n y: n,\n width: r,\n height: a,\n top: n,\n right: t + r,\n bottom: a + n,\n left: t\n }), o;\n}\nfunction Eh(e, t, n, r) {\n return { x: e, y: t, width: n, height: r };\n}\nvar qle = (\n /** @class */\n function() {\n function e(t) {\n this.broadcastWidth = 0, this.broadcastHeight = 0, this.contentRect_ = Eh(0, 0, 0, 0), this.target = t;\n }\n return e.prototype.isActive = function() {\n var t = Vle(this.target);\n return this.contentRect_ = t, t.width !== this.broadcastWidth || t.height !== this.broadcastHeight;\n }, e.prototype.broadcastRect = function() {\n var t = this.contentRect_;\n return this.broadcastWidth = t.width, this.broadcastHeight = t.height, t;\n }, e;\n }()\n), Gle = (\n /** @class */\n function() {\n function e(t, n) {\n var r = zle(n);\n XP(this, { target: t, contentRect: r });\n }\n return e;\n }()\n), Ule = (\n /** @class */\n function() {\n function e(t, n, r) {\n if (this.activeObservations_ = [], this.observations_ = new YP(), typeof t != \"function\")\n throw new TypeError(\"The callback provided as parameter 1 is not a function.\");\n this.callback_ = t, this.controller_ = n, this.callbackCtx_ = r;\n }\n return e.prototype.observe = function(t) {\n if (!arguments.length)\n throw new TypeError(\"1 argument required, but only 0 present.\");\n if (!(typeof Element > \"u\" || !(Element instanceof Object))) {\n if (!(t instanceof Wu(t).Element))\n throw new TypeError('parameter 1 is not of type \"Element\".');\n var n = this.observations_;\n n.has(t) || (n.set(t, new qle(t)), this.controller_.addObserver(this), this.controller_.refresh());\n }\n }, e.prototype.unobserve = function(t) {\n if (!arguments.length)\n throw new TypeError(\"1 argument required, but only 0 present.\");\n if (!(typeof Element > \"u\" || !(Element instanceof Object))) {\n if (!(t instanceof Wu(t).Element))\n throw new TypeError('parameter 1 is not of type \"Element\".');\n var n = this.observations_;\n n.has(t) && (n.delete(t), n.size || this.controller_.removeObserver(this));\n }\n }, e.prototype.disconnect = function() {\n this.clearActive(), this.observations_.clear(), this.controller_.removeObserver(this);\n }, e.prototype.gatherActive = function() {\n var t = this;\n this.clearActive(), this.observations_.forEach(function(n) {\n n.isActive() && t.activeObservations_.push(n);\n });\n }, e.prototype.broadcastActive = function() {\n if (this.hasActive()) {\n var t = this.callbackCtx_, n = this.activeObservations_.map(function(r) {\n return new Gle(r.target, r.broadcastRect());\n });\n this.callback_.call(t, n, t), this.clearActive();\n }\n }, e.prototype.clearActive = function() {\n this.activeObservations_.splice(0);\n }, e.prototype.hasActive = function() {\n return this.activeObservations_.length > 0;\n }, e;\n }()\n), QP = typeof WeakMap < \"u\" ? /* @__PURE__ */ new WeakMap() : new YP(), JP = (\n /** @class */\n function() {\n function e(t) {\n if (!(this instanceof e))\n throw new TypeError(\"Cannot call a class as a function.\");\n if (!arguments.length)\n throw new TypeError(\"1 argument required, but only 0 present.\");\n var n = Rle.getInstance(), r = new Ule(t, n, this);\n QP.set(this, r);\n }\n return e;\n }()\n);\n[\n \"observe\",\n \"unobserve\",\n \"disconnect\"\n].forEach(function(e) {\n JP.prototype[e] = function() {\n var t;\n return (t = QP.get(this))[e].apply(t, arguments);\n };\n});\nvar Wle = function() {\n return typeof Hf.ResizeObserver < \"u\" ? Hf.ResizeObserver : JP;\n}();\nconst yd = (e, t) => {\n const n = Ue(null);\n We(() => {\n const a = e && \"current\" in e ? e.current : e;\n if (!a)\n return;\n n.current && n.current.unobserve(a);\n const i = window.ResizeObserver || Wle;\n n.current = new i(t), n.current.observe(a);\n const o = n.current, s = a;\n return () => o && o.unobserve(s);\n }, [e, t]);\n}, Kle = (e, t = !0) => {\n const [n, r] = ze(t);\n return yd(e, ([i]) => {\n typeof window < \"u\" && window.requestAnimationFrame(\n () => r(i.target.scrollWidth > i.target.clientWidth)\n );\n }), n;\n}, Yle = (e) => e.reduce((n, r) => {\n if (r.type === \"Link\")\n return n;\n const { menuLinkCollection: a, menuTitle: i } = r, s = ((i == null ? void 0 : i.type) === \"Link\" ? [i, ...a] : a).some(\n (u) => _P(u.url)\n );\n return {\n ...n,\n [r.text]: s\n };\n}, {}), E4 = ({\n itemCollection: e,\n orientation: t = \"horizontal\",\n isVisible: n = !0,\n closePopupOnItemClick: r = !1,\n closeSubNavPopup: a,\n activeId: i,\n onOverflow: o\n}) => {\n const s = Ue(null), u = Kle(s), l = !e || e.length === 0;\n if (We(() => {\n o && o(l ? !1 : u);\n }, [\n o,\n t,\n u,\n l\n ]), l)\n return null;\n const c = Yle(e);\n return /* @__PURE__ */ h.jsx(_h, { ref: s, isVisible: n, orientation: t, children: e == null ? void 0 : e.map((d, p) => {\n const g = `sub-nav-item-${p + 1}`;\n return d.type === \"Link\" ? /* @__PURE__ */ h.jsx(\n KP,\n {\n ...d,\n onClick: (v) => {\n r && a && a(), d.onClick && d.onClick(v);\n },\n itemOrientation: t,\n isActive: d.url === `#${i}`\n },\n g\n ) : /* @__PURE__ */ h.jsx(\n Ole,\n {\n ...d,\n itemOrientation: t,\n containsCurrentPageLink: c[d.text]\n },\n g\n );\n }) });\n};\nconst w4 = ({\n ctaCollection: e,\n orientation: t = \"horizontal\",\n isVisible: n = !0,\n closePopupOnItemClick: r = !1,\n closeSubNavPopup: a\n}) => {\n const [i] = Ma([\"Below LG\"]), { classNameGen: o, analyticsCompName: s } = Ze(wa), u = se(o.getElementClassName(\"cta-list\"), {\n [o.getElementClassName(\"cta-list-orientation-vertical\")]: t === \"vertical\"\n });\n return !n && t === \"vertical\" || !e || e.length === 0 ? null : /* @__PURE__ */ h.jsx(\n _h,\n {\n orientation: t,\n isVisible: n,\n className: u,\n children: e == null ? void 0 : e.map((l) => /* @__PURE__ */ h.jsx(\n \"li\",\n {\n className: o.getElementClassName(\"cta-list-item\"),\n children: /* @__PURE__ */ h.jsx(\n ua,\n {\n analyticsCompName: s,\n ...l,\n onClick: () => {\n r && a && a();\n },\n size: i ? \"Small\" : \"Large\",\n className: o.getElementClassName(\"cta-item\")\n }\n )\n },\n l.text\n ))\n }\n );\n};\nconst Xle = ({\n show: e,\n closeBtnLabel: t,\n onCloseButtonClick: n,\n children: r\n}) => {\n const { classNameGen: a, getDataPaClickString: i } = Ze(wa), o = Ue(null);\n WP(o, n, e);\n const s = i(\n \"Popup\",\n \"close button\",\n ln.Button\n ), u = se(a.getElementClassName(\"popup\"), {\n [a.getElementClassName(\"popup-show\")]: e\n });\n return /* @__PURE__ */ h.jsxs(\n Wn,\n {\n rootRef: o,\n id: \"sub-nav-popup\",\n className: u,\n motionOptions: zP,\n animate: e ? \"animate\" : \"initial\",\n children: [\n r,\n /* @__PURE__ */ h.jsx(\n Uu,\n {\n buttonType: \"icon-button\",\n iconType: \"close\",\n onClick: n,\n \"data-pa-click\": s,\n \"aria-label\": t,\n className: a.getElementClassName(\"popup-close-btn\")\n }\n )\n ]\n }\n );\n}, Zle = () => {\n const [e, t] = ze(\"skip-check\");\n return We(() => {\n const n = document.querySelectorAll(VP);\n if (!n.length)\n return t(\"skip-check\");\n const r = ([i]) => t(i.isIntersecting ? \"visible\" : \"invisible\"), a = new IntersectionObserver(r, {\n threshold: 0.1\n });\n return n.forEach(\n (i) => a.observe(i)\n ), () => {\n n.forEach(\n (i) => a.unobserve(i)\n );\n };\n }, []), e;\n}, Qle = (e) => {\n const t = \"slideIn\";\n return e ? [t, \"fadeOut\"] : [t, \"fadeIn\"];\n}, Jle = (e) => e ? \"slideOut\" : \"fadeOut\", ece = (e, t, n) => e === \"invisible\" ? Qle(t) : Jle(n), tce = {\n slideOut: {\n opacity: 0,\n width: 0,\n transitionEnd: {\n display: \"none\",\n visibility: \"hidden\"\n }\n },\n slideIn: {\n width: \"auto\",\n opacity: 1,\n display: \"flex\",\n visibility: \"visible\"\n },\n fadeOut: {\n opacity: 0,\n width: \"auto\",\n display: \"flex\",\n transitionEnd: {\n visibility: \"hidden\"\n }\n },\n fadeIn: {\n opacity: 1,\n width: \"auto\",\n display: \"flex\",\n visibility: \"visible\"\n }\n};\nconst nce = ({ isAnimated: e, isPopupOpen: t, isStickyGrid: n, children: r }) => {\n const a = Zle(), i = Ji(), { classNameGen: o } = Ze(wa), [s, u] = ze(!1);\n if (We(() => {\n document.body.classList.toggle(\"hide-horizontal-scrollbar\", s);\n }, [s]), !e)\n return r;\n const l = ece(a, t, n), c = se(o.getElementClassName(\"cta-motion-wrapper\")), d = () => u(!0), p = () => u(!1);\n return /* @__PURE__ */ h.jsx(\n Cr.div,\n {\n className: c,\n variants: tce,\n initial: !1,\n animate: l,\n transition: {\n duration: i ? 0 : tn.constants.Functional.multiplier.fixedMove * 1,\n ease: i ? 0 : tn.constants.Functional.ease\n },\n onAnimationStart: d,\n onAnimationComplete: p,\n children: r\n }\n );\n}, T4 = { pinned: 0, unpinned: 0 }, wh = () => {\n const [e, t] = ze(T4), [n] = Ma([\"Below MD\"]);\n return We(() => {\n if (!(typeof document < \"u\" && document.querySelector(HP))) {\n t(T4);\n return;\n }\n if (n) {\n t({\n pinned: $P,\n unpinned: jP\n });\n return;\n }\n t({\n pinned: FP,\n unpinned: BP\n });\n }, [n]), e;\n}, rce = () => {\n const [e, t] = ze(\"not-in-use\"), [n, r] = ze(!1);\n We(() => {\n t(n ? \"close\" : \"not-in-use\");\n }, [n]), We(() => {\n n && e !== \"open\" && t(\"close\");\n }, [n, e]);\n const a = () => t(\"open\"), i = () => t(\"close\"), o = sr(\n (s) => r(s),\n []\n );\n return {\n subNavPopupStatus: e,\n openSubNavPopup: a,\n closeSubNavPopup: i,\n setNavItemsOverflowState: o\n };\n}, ace = new Array(10).fill(null).map((e, t) => t * 0.1);\nfunction ice(e = []) {\n var l;\n const t = Ue(), [n, r] = ze(/* @__PURE__ */ new Set()), a = wt(() => e.length ? e.reduce((c, d) => (d.type === \"Link\" && d.url.startsWith(\"#\") && c.push(d.url.substring(1)), c), []) : [], [e]), [i, o] = ze(a[0]);\n We(() => (a.length && (t.current = new IntersectionObserver(\n (d) => {\n d.forEach((p) => {\n p != null && p.isIntersecting ? r(new Set(n.add(p.target.id))) : (n.delete(p.target.id), r(new Set(n)));\n });\n },\n {\n rootMargin: \"0% 0% -95% 0%\",\n threshold: ace\n }\n ), document.querySelectorAll(\"[id]\").forEach((d) => {\n var p;\n a.includes(d.id) && ((p = t.current) == null || p.observe(d));\n })), () => {\n var c;\n return (c = t.current) == null ? void 0 : c.disconnect();\n }), []);\n const s = Array.from(n).sort((c, d) => a.indexOf(c) - a.indexOf(d)).pop(), u = s || i ? {\n type: \"Title\",\n text: ((l = yle(e, s ?? i)) == null ? void 0 : l.text) ?? \"\"\n } : void 0;\n return We(() => {\n a.length ? !s && !i || s === a[0] ? o(a[0]) : s === a[a.length - 1] && o(a[a.length - 1]) : o(\"\");\n }, [s, a, i]), {\n activeSectionId: s,\n activeSectionTitle: u,\n stickyEdgeId: i\n };\n}\nconst qy = \"SubNav\", $l = new ke(qy), e7 = ({\n controlLabels: e = {},\n title: t = {},\n displayNav: n = \"Always\",\n itemCollection: r = [],\n ctaCollection: a = [],\n sectionalCtaCollection: i = {},\n theme: o = \"white\",\n analyticsCompName: s = qy,\n className: u = \"\"\n}) => {\n const [l, c] = ze(\"unavailable\"), {\n subNavPopupStatus: d,\n openSubNavPopup: p,\n closeSubNavPopup: g,\n setNavItemsOverflowState: v\n } = rce(), b = wh(), [C] = Ma([\"Below LG\"]), w = n === \"Always\" || n === \"When Hero CTA leaves viewport\" || n === \"Sectional\" && !C, _ = n !== \"Sectional\" || C, { activeSectionId: x, activeSectionTitle: S, stickyEdgeId: E } = ice(r);\n (n === \"Always\" || n === \"Sectional\") && (b.unpinned = b.pinned);\n const N = (F) => c(F), P = n === \"Always\" || n === \"Sectional\" ? !0 : l === \"pinned\", H = (r == null ? void 0 : r.length) > 0 && (a == null ? void 0 : a.length) > 0, k = n === \"Sectional\" && !x, Q = n === \"Always\" || n === \"Sectional\", I = Q ? Ele : Sle, { ariaLabel: G, popupCloseButtonLabel: $ = \"\" } = e, z = se(\n $l.getElementClassName(\"divider-vertical\"),\n {\n \"sub-nav-item-hidden\": d !== \"not-in-use\"\n }\n ), B = se(u, {\n \"subnav-sectional\": n === \"Sectional\"\n }), O = se($l.getElementClassName(\"grid-item\"), {\n [$l.getElementClassName(\"grid-item-overflow\")]: d === \"not-in-use\"\n }), D = n === \"Sectional\" ? i[x || E || \"\"] ?? [] : a, T = n === \"Sectional\" ? gle : mle, j = d === \"not-in-use\" || n !== \"Sectional\" || !S ? t : S;\n return /* @__PURE__ */ h.jsx(\n lle,\n {\n classNameGen: $l,\n analyticsCompName: s,\n generateDataPaClickFunction: ble,\n children: /* @__PURE__ */ h.jsx(\n I,\n {\n theme: o,\n shouldShrinkNav: P,\n updateNavRunningStatus: N,\n className: B,\n children: /* @__PURE__ */ h.jsx(\n lt,\n {\n ...vle(\n b,\n P,\n k\n ),\n ...T,\n className: O,\n children: /* @__PURE__ */ h.jsxs(wle, { ariaLabel: G, children: [\n /* @__PURE__ */ h.jsx(\n uv,\n {\n as: d === \"not-in-use\" ? t.type : \"Button\",\n title: j,\n isPopupOpen: d === \"open\",\n enableRichText: n === \"Sectional\",\n onClick: p\n }\n ),\n /* @__PURE__ */ h.jsx(\n E4,\n {\n itemCollection: r,\n onOverflow: v,\n isVisible: d === \"not-in-use\",\n activeId: x\n }\n ),\n /* @__PURE__ */ h.jsxs(\n nce,\n {\n isAnimated: n !== \"Sectional\",\n isPopupOpen: d === \"open\",\n isStickyGrid: Q,\n children: [\n /* @__PURE__ */ h.jsx(\n lv,\n {\n orientation: \"vertical\",\n show: H,\n className: z\n }\n ),\n /* @__PURE__ */ h.jsx(\n w4,\n {\n ctaCollection: D,\n isVisible: w\n }\n )\n ]\n }\n ),\n /* @__PURE__ */ h.jsxs(\n Xle,\n {\n show: d === \"open\",\n closeBtnLabel: $,\n onCloseButtonClick: g,\n children: [\n /* @__PURE__ */ h.jsx(\n uv,\n {\n isPopupTitle: !0,\n title: t,\n enableRichText: n === \"Sectional\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n lv,\n {\n className: $l.getElementClassName(\n \"divider-horizontal\"\n )\n }\n ),\n /* @__PURE__ */ h.jsx(\n E4,\n {\n itemCollection: r,\n orientation: \"vertical\",\n closePopupOnItemClick: n === \"Sectional\",\n closeSubNavPopup: g,\n activeId: x\n }\n ),\n /* @__PURE__ */ h.jsx(\n w4,\n {\n ctaCollection: D,\n orientation: \"vertical\",\n isVisible: _,\n closePopupOnItemClick: n === \"Sectional\",\n closeSubNavPopup: g\n }\n )\n ]\n }\n )\n ] })\n }\n )\n }\n )\n }\n );\n};\ne7.displayName = qy;\nconst oce = {\n \"8 Col Center\": { start: 3, span: 8 },\n \"12 Col Start to End\": { start: 1, span: 12 },\n \"5 Col Start to Middle\": { start: 1, span: 5 },\n \"6 Col Start to Middle\": { start: 1, span: 6 },\n \"7 Col Start to Middle\": { start: 1, span: 7 },\n \"5 Col to End\": { start: 8, span: 5 },\n \"6 Col Middle to End\": { start: 7, span: 6 },\n \"7 Col to End\": { start: 6, span: 7 }\n}, sce = (e) => oce[e] ?? {\n start: Du,\n span: md\n};\nconst Gy = \"TextSection\", A4 = new ke(Gy), Uy = ({\n textGroup: e,\n className: t = \"\",\n theme: n = \"white\",\n alignment: r = \"8 Col Center\",\n topSpacer: a = \"4vw\",\n bottomSpacer: i = \"4vw\",\n disclosureType: o,\n componentId: s,\n ...u\n}) => {\n const l = se(t, A4.getComponentClassName()), c = r === \"8 Col Center\";\n let d = e;\n Ra(e) || (d = {\n ...sce(r),\n textGroup: e\n });\n const p = { topSpacing: a, bottomSpacing: i };\n return /* @__PURE__ */ h.jsx(\n cn,\n {\n className: l,\n theme: n,\n options: p,\n disclosure: o,\n id: s,\n ...u,\n children: /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: A4.getPropsValueClassName(\"alignment\", r),\n ...d,\n textGroup: {\n ...d.textGroup,\n analyticsCompName: Gy,\n alignment: c ? \"Center\" : \"Start\"\n }\n }\n )\n }\n );\n};\nUy.displayName = Gy;\nvar zn = {}, Wy = {}, Cd = {}, xd = {}, t7 = \"Expected a function\", N4 = 0 / 0, uce = \"[object Symbol]\", lce = /^\\s+|\\s+$/g, cce = /^[-+]0x[0-9a-f]+$/i, dce = /^0b[01]+$/i, fce = /^0o[0-7]+$/i, pce = parseInt, hce = typeof pt == \"object\" && pt && pt.Object === Object && pt, mce = typeof self == \"object\" && self && self.Object === Object && self, gce = hce || mce || Function(\"return this\")(), vce = Object.prototype, bce = vce.toString, yce = Math.max, Cce = Math.min, Lg = function() {\n return gce.Date.now();\n};\nfunction xce(e, t, n) {\n var r, a, i, o, s, u, l = 0, c = !1, d = !1, p = !0;\n if (typeof e != \"function\")\n throw new TypeError(t7);\n t = O4(t) || 0, zf(n) && (c = !!n.leading, d = \"maxWait\" in n, i = d ? yce(O4(n.maxWait) || 0, t) : i, p = \"trailing\" in n ? !!n.trailing : p);\n function g(N) {\n var P = r, H = a;\n return r = a = void 0, l = N, o = e.apply(H, P), o;\n }\n function v(N) {\n return l = N, s = setTimeout(w, t), c ? g(N) : o;\n }\n function b(N) {\n var P = N - u, H = N - l, k = t - P;\n return d ? Cce(k, i - H) : k;\n }\n function C(N) {\n var P = N - u, H = N - l;\n return u === void 0 || P >= t || P < 0 || d && H >= i;\n }\n function w() {\n var N = Lg();\n if (C(N))\n return _(N);\n s = setTimeout(w, b(N));\n }\n function _(N) {\n return s = void 0, p && r ? g(N) : (r = a = void 0, o);\n }\n function x() {\n s !== void 0 && clearTimeout(s), l = 0, r = u = a = s = void 0;\n }\n function S() {\n return s === void 0 ? o : _(Lg());\n }\n function E() {\n var N = Lg(), P = C(N);\n if (r = arguments, a = this, u = N, P) {\n if (s === void 0)\n return v(u);\n if (d)\n return s = setTimeout(w, t), g(u);\n }\n return s === void 0 && (s = setTimeout(w, t)), o;\n }\n return E.cancel = x, E.flush = S, E;\n}\nfunction Sce(e, t, n) {\n var r = !0, a = !0;\n if (typeof e != \"function\")\n throw new TypeError(t7);\n return zf(n) && (r = \"leading\" in n ? !!n.leading : r, a = \"trailing\" in n ? !!n.trailing : a), xce(e, t, {\n leading: r,\n maxWait: t,\n trailing: a\n });\n}\nfunction zf(e) {\n var t = typeof e;\n return !!e && (t == \"object\" || t == \"function\");\n}\nfunction _ce(e) {\n return !!e && typeof e == \"object\";\n}\nfunction Ece(e) {\n return typeof e == \"symbol\" || _ce(e) && bce.call(e) == uce;\n}\nfunction O4(e) {\n if (typeof e == \"number\")\n return e;\n if (Ece(e))\n return N4;\n if (zf(e)) {\n var t = typeof e.valueOf == \"function\" ? e.valueOf() : e;\n e = zf(t) ? t + \"\" : t;\n }\n if (typeof e != \"string\")\n return e === 0 ? e : +e;\n e = e.replace(lce, \"\");\n var n = dce.test(e);\n return n || fce.test(e) ? pce(e.slice(2), n ? 2 : 8) : cce.test(e) ? N4 : +e;\n}\nvar wce = Sce, Sd = {};\nObject.defineProperty(Sd, \"__esModule\", {\n value: !0\n});\nSd.addPassiveEventListener = function(t, n, r) {\n var a = function() {\n var i = !1;\n try {\n var o = Object.defineProperty({}, \"passive\", {\n get: function() {\n i = !0;\n }\n });\n window.addEventListener(\"test\", null, o);\n } catch {\n }\n return i;\n }();\n t.addEventListener(n, r, a ? { passive: !0 } : !1);\n};\nSd.removePassiveEventListener = function(t, n, r) {\n t.removeEventListener(n, r);\n};\nObject.defineProperty(xd, \"__esModule\", {\n value: !0\n});\nvar Tce = wce, Ace = Oce(Tce), Nce = Sd;\nfunction Oce(e) {\n return e && e.__esModule ? e : { default: e };\n}\nvar Lce = function(t) {\n var n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 66;\n return (0, Ace.default)(t, n);\n}, jn = {\n spyCallbacks: [],\n spySetState: [],\n scrollSpyContainers: [],\n mount: function(t, n) {\n if (t) {\n var r = Lce(function(a) {\n jn.scrollHandler(t);\n }, n);\n jn.scrollSpyContainers.push(t), (0, Nce.addPassiveEventListener)(t, \"scroll\", r);\n }\n },\n isMounted: function(t) {\n return jn.scrollSpyContainers.indexOf(t) !== -1;\n },\n currentPositionX: function(t) {\n if (t === document) {\n var n = window.pageYOffset !== void 0, r = (document.compatMode || \"\") === \"CSS1Compat\";\n return n ? window.pageXOffset : r ? document.documentElement.scrollLeft : document.body.scrollLeft;\n } else\n return t.scrollLeft;\n },\n currentPositionY: function(t) {\n if (t === document) {\n var n = window.pageXOffset !== void 0, r = (document.compatMode || \"\") === \"CSS1Compat\";\n return n ? window.pageYOffset : r ? document.documentElement.scrollTop : document.body.scrollTop;\n } else\n return t.scrollTop;\n },\n scrollHandler: function(t) {\n var n = jn.scrollSpyContainers[jn.scrollSpyContainers.indexOf(t)].spyCallbacks || [];\n n.forEach(function(r) {\n return r(jn.currentPositionX(t), jn.currentPositionY(t));\n });\n },\n addStateHandler: function(t) {\n jn.spySetState.push(t);\n },\n addSpyHandler: function(t, n) {\n var r = jn.scrollSpyContainers[jn.scrollSpyContainers.indexOf(n)];\n r.spyCallbacks || (r.spyCallbacks = []), r.spyCallbacks.push(t), t(jn.currentPositionX(n), jn.currentPositionY(n));\n },\n updateStates: function() {\n jn.spySetState.forEach(function(t) {\n return t();\n });\n },\n unmount: function(t, n) {\n jn.scrollSpyContainers.forEach(function(r) {\n return r.spyCallbacks && r.spyCallbacks.length && r.spyCallbacks.indexOf(n) > -1 && r.spyCallbacks.splice(r.spyCallbacks.indexOf(n), 1);\n }), jn.spySetState && jn.spySetState.length && jn.spySetState.indexOf(t) > -1 && jn.spySetState.splice(jn.spySetState.indexOf(t), 1), document.removeEventListener(\"scroll\", jn.scrollHandler);\n },\n update: function() {\n return jn.scrollSpyContainers.forEach(function(t) {\n return jn.scrollHandler(t);\n });\n }\n};\nxd.default = jn;\nvar ol = {}, _d = {};\nObject.defineProperty(_d, \"__esModule\", {\n value: !0\n});\nvar kce = function(t, n) {\n var r = t.indexOf(\"#\") === 0 ? t.substring(1) : t, a = r ? \"#\" + r : \"\", i = window && window.location, o = a ? i.pathname + i.search + a : i.pathname + i.search;\n n ? history.pushState(history.state, \"\", o) : history.replaceState(history.state, \"\", o);\n}, Ice = function() {\n return window.location.hash.replace(/^#/, \"\");\n}, Dce = function(t) {\n return function(n) {\n return t.contains ? t != n && t.contains(n) : !!(t.compareDocumentPosition(n) & 16);\n };\n}, Pce = function(t) {\n return getComputedStyle(t).position !== \"static\";\n}, kg = function(t, n) {\n for (var r = t.offsetTop, a = t.offsetParent; a && !n(a); )\n r += a.offsetTop, a = a.offsetParent;\n return { offsetTop: r, offsetParent: a };\n}, Mce = function(t, n, r) {\n if (r)\n return t === document ? n.getBoundingClientRect().left + (window.scrollX || window.pageXOffset) : getComputedStyle(t).position !== \"static\" ? n.offsetLeft : n.offsetLeft - t.offsetLeft;\n if (t === document)\n return n.getBoundingClientRect().top + (window.scrollY || window.pageYOffset);\n if (Pce(t)) {\n if (n.offsetParent !== t) {\n var a = function(c) {\n return c === t || c === document;\n }, i = kg(n, a), o = i.offsetTop, s = i.offsetParent;\n if (s !== t)\n throw new Error(\"Seems containerElement is not an ancestor of the Element\");\n return o;\n }\n return n.offsetTop;\n }\n if (n.offsetParent === t.offsetParent)\n return n.offsetTop - t.offsetTop;\n var u = function(c) {\n return c === document;\n };\n return kg(n, u).offsetTop - kg(t, u).offsetTop;\n};\n_d.default = {\n updateHash: kce,\n getHash: Ice,\n filterElementInContainer: Dce,\n scrollOffset: Mce\n};\nvar Th = {}, Ky = {};\nObject.defineProperty(Ky, \"__esModule\", {\n value: !0\n});\nKy.default = {\n /*\n * https://github.com/oblador/angular-scroll (duScrollDefaultEasing)\n */\n defaultEasing: function(t) {\n return t < 0.5 ? Math.pow(t * 2, 2) / 2 : 1 - Math.pow((1 - t) * 2, 2) / 2;\n },\n /*\n * https://gist.github.com/gre/1650294\n */\n // no easing, no acceleration\n linear: function(t) {\n return t;\n },\n // accelerating from zero velocity\n easeInQuad: function(t) {\n return t * t;\n },\n // decelerating to zero velocity\n easeOutQuad: function(t) {\n return t * (2 - t);\n },\n // acceleration until halfway, then deceleration\n easeInOutQuad: function(t) {\n return t < 0.5 ? 2 * t * t : -1 + (4 - 2 * t) * t;\n },\n // accelerating from zero velocity \n easeInCubic: function(t) {\n return t * t * t;\n },\n // decelerating to zero velocity π\n easeOutCubic: function(t) {\n return --t * t * t + 1;\n },\n // acceleration until halfway, then deceleration \n easeInOutCubic: function(t) {\n return t < 0.5 ? 4 * t * t * t : (t - 1) * (2 * t - 2) * (2 * t - 2) + 1;\n },\n // accelerating from zero velocity \n easeInQuart: function(t) {\n return t * t * t * t;\n },\n // decelerating to zero velocity \n easeOutQuart: function(t) {\n return 1 - --t * t * t * t;\n },\n // acceleration until halfway, then deceleration\n easeInOutQuart: function(t) {\n return t < 0.5 ? 8 * t * t * t * t : 1 - 8 * --t * t * t * t;\n },\n // accelerating from zero velocity\n easeInQuint: function(t) {\n return t * t * t * t * t;\n },\n // decelerating to zero velocity\n easeOutQuint: function(t) {\n return 1 + --t * t * t * t * t;\n },\n // acceleration until halfway, then deceleration \n easeInOutQuint: function(t) {\n return t < 0.5 ? 16 * t * t * t * t * t : 1 + 16 * --t * t * t * t * t;\n }\n};\nvar Yy = {};\nObject.defineProperty(Yy, \"__esModule\", {\n value: !0\n});\nvar Rce = Sd, Bce = [\"mousedown\", \"mousewheel\", \"touchmove\", \"keydown\"];\nYy.default = {\n subscribe: function(t) {\n return typeof document < \"u\" && Bce.forEach(function(n) {\n return (0, Rce.addPassiveEventListener)(document, n, t);\n });\n }\n};\nvar Ed = {};\nObject.defineProperty(Ed, \"__esModule\", {\n value: !0\n});\nvar dv = {\n registered: {},\n scrollEvent: {\n register: function(t, n) {\n dv.registered[t] = n;\n },\n remove: function(t) {\n dv.registered[t] = null;\n }\n }\n};\nEd.default = dv;\nObject.defineProperty(Th, \"__esModule\", {\n value: !0\n});\nvar Fce = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n}, jce = _d;\nAh(jce);\nvar $ce = Ky, L4 = Ah($ce), Hce = Yy, Vce = Ah(Hce), zce = Ed, ii = Ah(zce);\nfunction Ah(e) {\n return e && e.__esModule ? e : { default: e };\n}\nvar n7 = function(t) {\n return L4.default[t.smooth] || L4.default.defaultEasing;\n}, qce = function(t) {\n return typeof t == \"function\" ? t : function() {\n return t;\n };\n}, Gce = function() {\n if (typeof window < \"u\")\n return window.requestAnimationFrame || window.webkitRequestAnimationFrame;\n}, fv = function() {\n return Gce() || function(e, t, n) {\n window.setTimeout(e, n || 1e3 / 60, (/* @__PURE__ */ new Date()).getTime());\n };\n}(), r7 = function() {\n return {\n currentPosition: 0,\n startPosition: 0,\n targetPosition: 0,\n progress: 0,\n duration: 0,\n cancel: !1,\n target: null,\n containerElement: null,\n to: null,\n start: null,\n delta: null,\n percent: null,\n delayTimeout: null\n };\n}, a7 = function(t) {\n var n = t.data.containerElement;\n if (n && n !== document && n !== document.body)\n return n.scrollLeft;\n var r = window.pageXOffset !== void 0, a = (document.compatMode || \"\") === \"CSS1Compat\";\n return r ? window.pageXOffset : a ? document.documentElement.scrollLeft : document.body.scrollLeft;\n}, i7 = function(t) {\n var n = t.data.containerElement;\n if (n && n !== document && n !== document.body)\n return n.scrollTop;\n var r = window.pageXOffset !== void 0, a = (document.compatMode || \"\") === \"CSS1Compat\";\n return r ? window.pageYOffset : a ? document.documentElement.scrollTop : document.body.scrollTop;\n}, Uce = function(t) {\n var n = t.data.containerElement;\n if (n && n !== document && n !== document.body)\n return n.scrollWidth - n.offsetWidth;\n var r = document.body, a = document.documentElement;\n return Math.max(r.scrollWidth, r.offsetWidth, a.clientWidth, a.scrollWidth, a.offsetWidth);\n}, Wce = function(t) {\n var n = t.data.containerElement;\n if (n && n !== document && n !== document.body)\n return n.scrollHeight - n.offsetHeight;\n var r = document.body, a = document.documentElement;\n return Math.max(r.scrollHeight, r.offsetHeight, a.clientHeight, a.scrollHeight, a.offsetHeight);\n}, Kce = function e(t, n, r) {\n var a = n.data;\n if (!n.ignoreCancelEvents && a.cancel) {\n ii.default.registered.end && ii.default.registered.end(a.to, a.target, a.currentPositionY);\n return;\n }\n if (a.delta = Math.round(a.targetPosition - a.startPosition), a.start === null && (a.start = r), a.progress = r - a.start, a.percent = a.progress >= a.duration ? 1 : t(a.progress / a.duration), a.currentPosition = a.startPosition + Math.ceil(a.delta * a.percent), a.containerElement && a.containerElement !== document && a.containerElement !== document.body ? n.horizontal ? a.containerElement.scrollLeft = a.currentPosition : a.containerElement.scrollTop = a.currentPosition : n.horizontal ? window.scrollTo(a.currentPosition, 0) : window.scrollTo(0, a.currentPosition), a.percent < 1) {\n var i = e.bind(null, t, n);\n fv.call(window, i);\n return;\n }\n ii.default.registered.end && ii.default.registered.end(a.to, a.target, a.currentPosition);\n}, Xy = function(t) {\n t.data.containerElement = t ? t.containerId ? document.getElementById(t.containerId) : t.container && t.container.nodeType ? t.container : document : null;\n}, wd = function(t, n, r, a) {\n if (n.data = n.data || r7(), window.clearTimeout(n.data.delayTimeout), Vce.default.subscribe(function() {\n n.data.cancel = !0;\n }), Xy(n), n.data.start = null, n.data.cancel = !1, n.data.startPosition = n.horizontal ? a7(n) : i7(n), n.data.targetPosition = n.absolute ? t : t + n.data.startPosition, n.data.startPosition === n.data.targetPosition) {\n ii.default.registered.end && ii.default.registered.end(n.data.to, n.data.target, n.data.currentPosition);\n return;\n }\n n.data.delta = Math.round(n.data.targetPosition - n.data.startPosition), n.data.duration = qce(n.duration)(n.data.delta), n.data.duration = isNaN(parseFloat(n.data.duration)) ? 1e3 : parseFloat(n.data.duration), n.data.to = r, n.data.target = a;\n var i = n7(n), o = Kce.bind(null, i, n);\n if (n && n.delay > 0) {\n n.data.delayTimeout = window.setTimeout(function() {\n ii.default.registered.begin && ii.default.registered.begin(n.data.to, n.data.target), fv.call(window, o);\n }, n.delay);\n return;\n }\n ii.default.registered.begin && ii.default.registered.begin(n.data.to, n.data.target), fv.call(window, o);\n}, Nh = function(t) {\n return t = Fce({}, t), t.data = t.data || r7(), t.absolute = !0, t;\n}, Yce = function(t) {\n wd(0, Nh(t));\n}, Xce = function(t, n) {\n wd(t, Nh(n));\n}, Zce = function(t) {\n t = Nh(t), Xy(t), wd(t.horizontal ? Uce(t) : Wce(t), t);\n}, Qce = function(t, n) {\n n = Nh(n), Xy(n);\n var r = n.horizontal ? a7(n) : i7(n);\n wd(t + r, n);\n};\nTh.default = {\n animateTopScroll: wd,\n getAnimationType: n7,\n scrollToTop: Yce,\n scrollToBottom: Zce,\n scrollTo: Xce,\n scrollMore: Qce\n};\nObject.defineProperty(ol, \"__esModule\", {\n value: !0\n});\nvar Jce = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n}, ede = _d, tde = Zy(ede), nde = Th, rde = Zy(nde), ade = Ed, v0 = Zy(ade);\nfunction Zy(e) {\n return e && e.__esModule ? e : { default: e };\n}\nvar b0 = {}, k4 = void 0;\nol.default = {\n unmount: function() {\n b0 = {};\n },\n register: function(t, n) {\n b0[t] = n;\n },\n unregister: function(t) {\n delete b0[t];\n },\n get: function(t) {\n return b0[t] || document.getElementById(t) || document.getElementsByName(t)[0] || document.getElementsByClassName(t)[0];\n },\n setActiveLink: function(t) {\n return k4 = t;\n },\n getActiveLink: function() {\n return k4;\n },\n scrollTo: function(t, n) {\n var r = this.get(t);\n if (!r) {\n console.warn(\"target Element not found\");\n return;\n }\n n = Jce({}, n, { absolute: !1 });\n var a = n.containerId, i = n.container, o = void 0;\n a ? o = document.getElementById(a) : i && i.nodeType ? o = i : o = document, n.absolute = !0;\n var s = n.horizontal, u = tde.default.scrollOffset(o, r, s) + (n.offset || 0);\n if (!n.smooth) {\n v0.default.registered.begin && v0.default.registered.begin(t, r), o === document ? n.horizontal ? window.scrollTo(u, 0) : window.scrollTo(0, u) : o.scrollTop = u, v0.default.registered.end && v0.default.registered.end(t, r);\n return;\n }\n rde.default.animateTopScroll(u, n, t, r);\n }\n};\nvar Oh = {};\nObject.defineProperty(Oh, \"__esModule\", {\n value: !0\n});\nvar ide = _d, Ig = ode(ide);\nfunction ode(e) {\n return e && e.__esModule ? e : { default: e };\n}\nvar sde = {\n mountFlag: !1,\n initialized: !1,\n scroller: null,\n containers: {},\n mount: function(t) {\n this.scroller = t, this.handleHashChange = this.handleHashChange.bind(this), window.addEventListener(\"hashchange\", this.handleHashChange), this.initStateFromHash(), this.mountFlag = !0;\n },\n mapContainer: function(t, n) {\n this.containers[t] = n;\n },\n isMounted: function() {\n return this.mountFlag;\n },\n isInitialized: function() {\n return this.initialized;\n },\n initStateFromHash: function() {\n var t = this, n = this.getHash();\n n ? window.setTimeout(function() {\n t.scrollTo(n, !0), t.initialized = !0;\n }, 10) : this.initialized = !0;\n },\n scrollTo: function(t, n) {\n var r = this.scroller, a = r.get(t);\n if (a && (n || t !== r.getActiveLink())) {\n var i = this.containers[t] || document;\n r.scrollTo(t, { container: i });\n }\n },\n getHash: function() {\n return Ig.default.getHash();\n },\n changeHash: function(t, n) {\n this.isInitialized() && Ig.default.getHash() !== t && Ig.default.updateHash(t, n);\n },\n handleHashChange: function() {\n this.scrollTo(this.getHash());\n },\n unmount: function() {\n this.scroller = null, this.containers = null, window.removeEventListener(\"hashchange\", this.handleHashChange);\n }\n};\nOh.default = sde;\nObject.defineProperty(Cd, \"__esModule\", {\n value: !0\n});\nvar y0 = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n}, ude = function() {\n function e(t, n) {\n for (var r = 0; r < n.length; r++) {\n var a = n[r];\n a.enumerable = a.enumerable || !1, a.configurable = !0, \"value\" in a && (a.writable = !0), Object.defineProperty(t, a.key, a);\n }\n }\n return function(t, n, r) {\n return n && e(t.prototype, n), r && e(t, r), t;\n };\n}(), lde = vt, I4 = Td(lde), cde = xd, C0 = Td(cde), dde = ol, fde = Td(dde), pde = nh, Bn = Td(pde), hde = Oh, ho = Td(hde);\nfunction Td(e) {\n return e && e.__esModule ? e : { default: e };\n}\nfunction mde(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction gde(e, t) {\n if (!e)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return t && (typeof t == \"object\" || typeof t == \"function\") ? t : e;\n}\nfunction vde(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof t);\n e.prototype = Object.create(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } }), t && (Object.setPrototypeOf ? Object.setPrototypeOf(e, t) : e.__proto__ = t);\n}\nvar D4 = {\n to: Bn.default.string.isRequired,\n containerId: Bn.default.string,\n container: Bn.default.object,\n activeClass: Bn.default.string,\n activeStyle: Bn.default.object,\n spy: Bn.default.bool,\n horizontal: Bn.default.bool,\n smooth: Bn.default.oneOfType([Bn.default.bool, Bn.default.string]),\n offset: Bn.default.number,\n delay: Bn.default.number,\n isDynamic: Bn.default.bool,\n onClick: Bn.default.func,\n duration: Bn.default.oneOfType([Bn.default.number, Bn.default.func]),\n absolute: Bn.default.bool,\n onSetActive: Bn.default.func,\n onSetInactive: Bn.default.func,\n ignoreCancelEvents: Bn.default.bool,\n hashSpy: Bn.default.bool,\n saveHashHistory: Bn.default.bool,\n spyThrottle: Bn.default.number\n};\nCd.default = function(e, t) {\n var n = t || fde.default, r = function(i) {\n vde(o, i);\n function o(s) {\n mde(this, o);\n var u = gde(this, (o.__proto__ || Object.getPrototypeOf(o)).call(this, s));\n return a.call(u), u.state = {\n active: !1\n }, u;\n }\n return ude(o, [{\n key: \"getScrollSpyContainer\",\n value: function() {\n var u = this.props.containerId, l = this.props.container;\n return u && !l ? document.getElementById(u) : l && l.nodeType ? l : document;\n }\n }, {\n key: \"componentDidMount\",\n value: function() {\n if (this.props.spy || this.props.hashSpy) {\n var u = this.getScrollSpyContainer();\n C0.default.isMounted(u) || C0.default.mount(u, this.props.spyThrottle), this.props.hashSpy && (ho.default.isMounted() || ho.default.mount(n), ho.default.mapContainer(this.props.to, u)), C0.default.addSpyHandler(this.spyHandler, u), this.setState({\n container: u\n });\n }\n }\n }, {\n key: \"componentWillUnmount\",\n value: function() {\n C0.default.unmount(this.stateHandler, this.spyHandler);\n }\n }, {\n key: \"render\",\n value: function() {\n var u = \"\";\n this.state && this.state.active ? u = ((this.props.className || \"\") + \" \" + (this.props.activeClass || \"active\")).trim() : u = this.props.className;\n var l = {};\n this.state && this.state.active ? l = y0({}, this.props.style, this.props.activeStyle) : l = y0({}, this.props.style);\n var c = y0({}, this.props);\n for (var d in D4)\n c.hasOwnProperty(d) && delete c[d];\n return c.className = u, c.style = l, c.onClick = this.handleClick, I4.default.createElement(e, c);\n }\n }]), o;\n }(I4.default.PureComponent), a = function() {\n var o = this;\n this.scrollTo = function(s, u) {\n n.scrollTo(s, y0({}, o.state, u));\n }, this.handleClick = function(s) {\n o.props.onClick && o.props.onClick(s), s.stopPropagation && s.stopPropagation(), s.preventDefault && s.preventDefault(), o.scrollTo(o.props.to, o.props);\n }, this.spyHandler = function(s, u) {\n var l = o.getScrollSpyContainer();\n if (!(ho.default.isMounted() && !ho.default.isInitialized())) {\n var c = o.props.horizontal, d = o.props.to, p = null, g = void 0, v = void 0;\n if (c) {\n var b = 0, C = 0, w = 0;\n if (l.getBoundingClientRect) {\n var _ = l.getBoundingClientRect();\n w = _.left;\n }\n if (!p || o.props.isDynamic) {\n if (p = n.get(d), !p)\n return;\n var x = p.getBoundingClientRect();\n b = x.left - w + s, C = b + x.width;\n }\n var S = s - o.props.offset;\n g = S >= Math.floor(b) && S < Math.floor(C), v = S < Math.floor(b) || S >= Math.floor(C);\n } else {\n var E = 0, N = 0, P = 0;\n if (l.getBoundingClientRect) {\n var H = l.getBoundingClientRect();\n P = H.top;\n }\n if (!p || o.props.isDynamic) {\n if (p = n.get(d), !p)\n return;\n var k = p.getBoundingClientRect();\n E = k.top - P + u, N = E + k.height;\n }\n var Q = u - o.props.offset;\n g = Q >= Math.floor(E) && Q < Math.floor(N), v = Q < Math.floor(E) || Q >= Math.floor(N);\n }\n var I = n.getActiveLink();\n if (v) {\n if (d === I && n.setActiveLink(void 0), o.props.hashSpy && ho.default.getHash() === d) {\n var G = o.props.saveHashHistory, $ = G === void 0 ? !1 : G;\n ho.default.changeHash(\"\", $);\n }\n o.props.spy && o.state.active && (o.setState({ active: !1 }), o.props.onSetInactive && o.props.onSetInactive(d, p));\n }\n if (g && (I !== d || o.state.active === !1)) {\n n.setActiveLink(d);\n var z = o.props.saveHashHistory, B = z === void 0 ? !1 : z;\n o.props.hashSpy && ho.default.changeHash(d, B), o.props.spy && (o.setState({ active: !0 }), o.props.onSetActive && o.props.onSetActive(d, p));\n }\n }\n };\n };\n return r.propTypes = D4, r.defaultProps = { offset: 0 }, r;\n};\nObject.defineProperty(Wy, \"__esModule\", {\n value: !0\n});\nvar bde = vt, P4 = o7(bde), yde = Cd, Cde = o7(yde);\nfunction o7(e) {\n return e && e.__esModule ? e : { default: e };\n}\nfunction xde(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction M4(e, t) {\n if (!e)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return t && (typeof t == \"object\" || typeof t == \"function\") ? t : e;\n}\nfunction Sde(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof t);\n e.prototype = Object.create(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } }), t && (Object.setPrototypeOf ? Object.setPrototypeOf(e, t) : e.__proto__ = t);\n}\nvar _de = function(e) {\n Sde(t, e);\n function t() {\n var n, r, a, i;\n xde(this, t);\n for (var o = arguments.length, s = Array(o), u = 0; u < o; u++)\n s[u] = arguments[u];\n return i = (r = (a = M4(this, (n = t.__proto__ || Object.getPrototypeOf(t)).call.apply(n, [this].concat(s))), a), a.render = function() {\n return P4.default.createElement(\n \"a\",\n a.props,\n a.props.children\n );\n }, r), M4(a, i);\n }\n return t;\n}(P4.default.Component);\nWy.default = (0, Cde.default)(_de);\nvar Qy = {};\nObject.defineProperty(Qy, \"__esModule\", {\n value: !0\n});\nvar Ede = function() {\n function e(t, n) {\n for (var r = 0; r < n.length; r++) {\n var a = n[r];\n a.enumerable = a.enumerable || !1, a.configurable = !0, \"value\" in a && (a.writable = !0), Object.defineProperty(t, a.key, a);\n }\n }\n return function(t, n, r) {\n return n && e(t.prototype, n), r && e(t, r), t;\n };\n}(), wde = vt, R4 = s7(wde), Tde = Cd, Ade = s7(Tde);\nfunction s7(e) {\n return e && e.__esModule ? e : { default: e };\n}\nfunction Nde(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction Ode(e, t) {\n if (!e)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return t && (typeof t == \"object\" || typeof t == \"function\") ? t : e;\n}\nfunction Lde(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof t);\n e.prototype = Object.create(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } }), t && (Object.setPrototypeOf ? Object.setPrototypeOf(e, t) : e.__proto__ = t);\n}\nvar kde = function(e) {\n Lde(t, e);\n function t() {\n return Nde(this, t), Ode(this, (t.__proto__ || Object.getPrototypeOf(t)).apply(this, arguments));\n }\n return Ede(t, [{\n key: \"render\",\n value: function() {\n return R4.default.createElement(\n \"input\",\n this.props,\n this.props.children\n );\n }\n }]), t;\n}(R4.default.Component);\nQy.default = (0, Ade.default)(kde);\nvar Jy = {}, Lh = {};\nObject.defineProperty(Lh, \"__esModule\", {\n value: !0\n});\nvar Ide = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n}, Dde = function() {\n function e(t, n) {\n for (var r = 0; r < n.length; r++) {\n var a = n[r];\n a.enumerable = a.enumerable || !1, a.configurable = !0, \"value\" in a && (a.writable = !0), Object.defineProperty(t, a.key, a);\n }\n }\n return function(t, n, r) {\n return n && e(t.prototype, n), r && e(t, r), t;\n };\n}(), Pde = vt, B4 = kh(Pde), Mde = cp;\nkh(Mde);\nvar Rde = ol, F4 = kh(Rde), Bde = nh, j4 = kh(Bde);\nfunction kh(e) {\n return e && e.__esModule ? e : { default: e };\n}\nfunction Fde(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction jde(e, t) {\n if (!e)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return t && (typeof t == \"object\" || typeof t == \"function\") ? t : e;\n}\nfunction $de(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof t);\n e.prototype = Object.create(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } }), t && (Object.setPrototypeOf ? Object.setPrototypeOf(e, t) : e.__proto__ = t);\n}\nLh.default = function(e) {\n var t = function(n) {\n $de(r, n);\n function r(a) {\n Fde(this, r);\n var i = jde(this, (r.__proto__ || Object.getPrototypeOf(r)).call(this, a));\n return i.childBindings = {\n domNode: null\n }, i;\n }\n return Dde(r, [{\n key: \"componentDidMount\",\n value: function() {\n if (typeof window > \"u\")\n return !1;\n this.registerElems(this.props.name);\n }\n }, {\n key: \"componentDidUpdate\",\n value: function(i) {\n this.props.name !== i.name && this.registerElems(this.props.name);\n }\n }, {\n key: \"componentWillUnmount\",\n value: function() {\n if (typeof window > \"u\")\n return !1;\n F4.default.unregister(this.props.name);\n }\n }, {\n key: \"registerElems\",\n value: function(i) {\n F4.default.register(i, this.childBindings.domNode);\n }\n }, {\n key: \"render\",\n value: function() {\n return B4.default.createElement(e, Ide({}, this.props, { parentBindings: this.childBindings }));\n }\n }]), r;\n }(B4.default.Component);\n return t.propTypes = {\n name: j4.default.string,\n id: j4.default.string\n }, t;\n};\nObject.defineProperty(Jy, \"__esModule\", {\n value: !0\n});\nvar $4 = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n}, Hde = function() {\n function e(t, n) {\n for (var r = 0; r < n.length; r++) {\n var a = n[r];\n a.enumerable = a.enumerable || !1, a.configurable = !0, \"value\" in a && (a.writable = !0), Object.defineProperty(t, a.key, a);\n }\n }\n return function(t, n, r) {\n return n && e(t.prototype, n), r && e(t, r), t;\n };\n}(), Vde = vt, H4 = e2(Vde), zde = Lh, qde = e2(zde), Gde = nh, V4 = e2(Gde);\nfunction e2(e) {\n return e && e.__esModule ? e : { default: e };\n}\nfunction Ude(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction Wde(e, t) {\n if (!e)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return t && (typeof t == \"object\" || typeof t == \"function\") ? t : e;\n}\nfunction Kde(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof t);\n e.prototype = Object.create(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } }), t && (Object.setPrototypeOf ? Object.setPrototypeOf(e, t) : e.__proto__ = t);\n}\nvar u7 = function(e) {\n Kde(t, e);\n function t() {\n return Ude(this, t), Wde(this, (t.__proto__ || Object.getPrototypeOf(t)).apply(this, arguments));\n }\n return Hde(t, [{\n key: \"render\",\n value: function() {\n var r = this, a = $4({}, this.props);\n return a.parentBindings && delete a.parentBindings, H4.default.createElement(\n \"div\",\n $4({}, a, { ref: function(o) {\n r.props.parentBindings.domNode = o;\n } }),\n this.props.children\n );\n }\n }]), t;\n}(H4.default.Component);\nu7.propTypes = {\n name: V4.default.string,\n id: V4.default.string\n};\nJy.default = (0, qde.default)(u7);\nvar Dg = Object.assign || function(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t];\n for (var r in n)\n Object.prototype.hasOwnProperty.call(n, r) && (e[r] = n[r]);\n }\n return e;\n}, z4 = function() {\n function e(t, n) {\n for (var r = 0; r < n.length; r++) {\n var a = n[r];\n a.enumerable = a.enumerable || !1, a.configurable = !0, \"value\" in a && (a.writable = !0), Object.defineProperty(t, a.key, a);\n }\n }\n return function(t, n, r) {\n return n && e(t.prototype, n), r && e(t, r), t;\n };\n}();\nfunction q4(e, t) {\n if (!(e instanceof t))\n throw new TypeError(\"Cannot call a class as a function\");\n}\nfunction G4(e, t) {\n if (!e)\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n return t && (typeof t == \"object\" || typeof t == \"function\") ? t : e;\n}\nfunction U4(e, t) {\n if (typeof t != \"function\" && t !== null)\n throw new TypeError(\"Super expression must either be null or a function, not \" + typeof t);\n e.prototype = Object.create(t && t.prototype, { constructor: { value: e, enumerable: !1, writable: !0, configurable: !0 } }), t && (Object.setPrototypeOf ? Object.setPrototypeOf(e, t) : e.__proto__ = t);\n}\nvar x0 = vt, ts = xd, Pg = ol, $n = nh, mo = Oh, W4 = {\n to: $n.string.isRequired,\n containerId: $n.string,\n container: $n.object,\n activeClass: $n.string,\n spy: $n.bool,\n smooth: $n.oneOfType([$n.bool, $n.string]),\n offset: $n.number,\n delay: $n.number,\n isDynamic: $n.bool,\n onClick: $n.func,\n duration: $n.oneOfType([$n.number, $n.func]),\n absolute: $n.bool,\n onSetActive: $n.func,\n onSetInactive: $n.func,\n ignoreCancelEvents: $n.bool,\n hashSpy: $n.bool,\n spyThrottle: $n.number\n}, Yde = {\n Scroll: function(t, n) {\n console.warn(\"Helpers.Scroll is deprecated since v1.7.0\");\n var r = n || Pg, a = function(o) {\n U4(s, o);\n function s(u) {\n q4(this, s);\n var l = G4(this, (s.__proto__ || Object.getPrototypeOf(s)).call(this, u));\n return i.call(l), l.state = {\n active: !1\n }, l;\n }\n return z4(s, [{\n key: \"getScrollSpyContainer\",\n value: function() {\n var l = this.props.containerId, c = this.props.container;\n return l ? document.getElementById(l) : c && c.nodeType ? c : document;\n }\n }, {\n key: \"componentDidMount\",\n value: function() {\n if (this.props.spy || this.props.hashSpy) {\n var l = this.getScrollSpyContainer();\n ts.isMounted(l) || ts.mount(l, this.props.spyThrottle), this.props.hashSpy && (mo.isMounted() || mo.mount(r), mo.mapContainer(this.props.to, l)), this.props.spy && ts.addStateHandler(this.stateHandler), ts.addSpyHandler(this.spyHandler, l), this.setState({\n container: l\n });\n }\n }\n }, {\n key: \"componentWillUnmount\",\n value: function() {\n ts.unmount(this.stateHandler, this.spyHandler);\n }\n }, {\n key: \"render\",\n value: function() {\n var l = \"\";\n this.state && this.state.active ? l = ((this.props.className || \"\") + \" \" + (this.props.activeClass || \"active\")).trim() : l = this.props.className;\n var c = Dg({}, this.props);\n for (var d in W4)\n c.hasOwnProperty(d) && delete c[d];\n return c.className = l, c.onClick = this.handleClick, x0.createElement(t, c);\n }\n }]), s;\n }(x0.Component), i = function() {\n var s = this;\n this.scrollTo = function(u, l) {\n r.scrollTo(u, Dg({}, s.state, l));\n }, this.handleClick = function(u) {\n s.props.onClick && s.props.onClick(u), u.stopPropagation && u.stopPropagation(), u.preventDefault && u.preventDefault(), s.scrollTo(s.props.to, s.props);\n }, this.stateHandler = function() {\n r.getActiveLink() !== s.props.to && (s.state !== null && s.state.active && s.props.onSetInactive && s.props.onSetInactive(), s.setState({ active: !1 }));\n }, this.spyHandler = function(u) {\n var l = s.getScrollSpyContainer();\n if (!(mo.isMounted() && !mo.isInitialized())) {\n var c = s.props.to, d = null, p = 0, g = 0, v = 0;\n if (l.getBoundingClientRect) {\n var b = l.getBoundingClientRect();\n v = b.top;\n }\n if (!d || s.props.isDynamic) {\n if (d = r.get(c), !d)\n return;\n var C = d.getBoundingClientRect();\n p = C.top - v + u, g = p + C.height;\n }\n var w = u - s.props.offset, _ = w >= Math.floor(p) && w < Math.floor(g), x = w < Math.floor(p) || w >= Math.floor(g), S = r.getActiveLink();\n if (x)\n return c === S && r.setActiveLink(void 0), s.props.hashSpy && mo.getHash() === c && mo.changeHash(), s.props.spy && s.state.active && (s.setState({ active: !1 }), s.props.onSetInactive && s.props.onSetInactive()), ts.updateStates();\n if (_ && S !== c)\n return r.setActiveLink(c), s.props.hashSpy && mo.changeHash(c), s.props.spy && (s.setState({ active: !0 }), s.props.onSetActive && s.props.onSetActive(c)), ts.updateStates();\n }\n };\n };\n return a.propTypes = W4, a.defaultProps = { offset: 0 }, a;\n },\n Element: function(t) {\n console.warn(\"Helpers.Element is deprecated since v1.7.0\");\n var n = function(r) {\n U4(a, r);\n function a(i) {\n q4(this, a);\n var o = G4(this, (a.__proto__ || Object.getPrototypeOf(a)).call(this, i));\n return o.childBindings = {\n domNode: null\n }, o;\n }\n return z4(a, [{\n key: \"componentDidMount\",\n value: function() {\n if (typeof window > \"u\")\n return !1;\n this.registerElems(this.props.name);\n }\n }, {\n key: \"componentDidUpdate\",\n value: function(o) {\n this.props.name !== o.name && this.registerElems(this.props.name);\n }\n }, {\n key: \"componentWillUnmount\",\n value: function() {\n if (typeof window > \"u\")\n return !1;\n Pg.unregister(this.props.name);\n }\n }, {\n key: \"registerElems\",\n value: function(o) {\n Pg.register(o, this.childBindings.domNode);\n }\n }, {\n key: \"render\",\n value: function() {\n return x0.createElement(t, Dg({}, this.props, { parentBindings: this.childBindings }));\n }\n }]), a;\n }(x0.Component);\n return n.propTypes = {\n name: $n.string,\n id: $n.string\n }, n;\n }\n}, Xde = Yde;\nObject.defineProperty(zn, \"__esModule\", {\n value: !0\n});\nzn.Helpers = zn.ScrollElement = zn.ScrollLink = n2 = zn.animateScroll = zn.scrollSpy = zn.Events = t2 = zn.scroller = zn.Element = zn.Button = zn.Link = void 0;\nvar Zde = Wy, l7 = _i(Zde), Qde = Qy, c7 = _i(Qde), Jde = Jy, d7 = _i(Jde), e0e = ol, f7 = _i(e0e), t0e = Ed, p7 = _i(t0e), n0e = xd, h7 = _i(n0e), r0e = Th, m7 = _i(r0e), a0e = Cd, g7 = _i(a0e), i0e = Lh, v7 = _i(i0e), o0e = Xde, b7 = _i(o0e);\nfunction _i(e) {\n return e && e.__esModule ? e : { default: e };\n}\nzn.Link = l7.default;\nzn.Button = c7.default;\nzn.Element = d7.default;\nvar t2 = zn.scroller = f7.default;\nzn.Events = p7.default;\nzn.scrollSpy = h7.default;\nvar n2 = zn.animateScroll = m7.default;\nzn.ScrollLink = g7.default;\nzn.ScrollElement = v7.default;\nzn.Helpers = b7.default;\nzn.default = { Link: l7.default, Button: c7.default, Element: d7.default, scroller: f7.default, Events: p7.default, scrollSpy: h7.default, animateScroll: m7.default, ScrollLink: g7.default, ScrollElement: v7.default, Helpers: b7.default };\nconst s0e = {\n motionFeel: \"Expressive\",\n motionIntensity: \"md\",\n motionTypePreset: \"moveUp\",\n scrollTriggerOptions: {\n triggerOnce: !0\n }\n}, sl = (e = {}) => /* @__PURE__ */ h.jsx(\n IP,\n {\n ...e,\n customWrapper: Wn,\n motionOptions: s0e\n }\n);\nsl.displayName = xh;\nconst u0e = (e) => typeof e == \"function\", y7 = (e) => (...t) => {\n u0e(e) && e(...t);\n}, l0e = (e) => {\n const t = Ue();\n return t.current || (t.current = y7(e)), t.current;\n};\nvar K4, Y4, X4, Z4, Q4, J4, eT, tT, nT, rT;\nfunction c0e(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSpaceXs, n = e.sysSpaceSm, r = e.sysSpaceMd, a = e.sysSpaceLg, i = e.sysSizeFieldSm, o = e.sysSizeIconSm, s = e.sysTypographyBodySize, u = e.sysBorderThicknessNormal, l = e.sysBorderRadiusLg, c = e.sysColorSystemMain, d = e.sysColorSystemMainActive, p = e.sysColorSelectedContrast, g = e.sysColorStructureFocus, v = e.sysColorInfoMain, b = e.sysColorInfoContrast, C = e.sysColorSuccessMain, w = e.sysColorSuccessContrast, _ = e.sysColorWarningMain, x = e.sysColorWarningContrast, S = e.sysColorErrorMain, E = e.sysColorErrorContrast, N = Fr(e), P = N.body, H = De(\"\".concat(t, \" * 2\")), k = De(\" \".concat(H, \" + \").concat(i)), Q = De(\"\".concat(a, \" + \").concat(s, \" + \").concat(r)), I = De(\"\".concat(a, \" - \").concat(u)), G = De(\"\".concat(a, \" - \").concat(u)), $ = De(\"\".concat(a, \" - \").concat(u)), z = De(\"\".concat(a, \"- \").concat(u)), B = De(\"\".concat(n, \" - \").concat(u)), O = De(\"\".concat(n, \" - \").concat(u)), D = De(\"\".concat(a, \"- \").concat(u)), T = V(K4 || (K4 = K([`\n label: alert_base;\n box-sizing: border-box;\n padding: `, \" \", \" \", `\n `, `;\n border-width: `, `;\n border-style: solid;\n border-radius: `, `;\n position: relative;\n text-align: initial;\n `, `;\n\n [dir='rtl'] & {\n padding-left: `, `;\n padding-right: `, `;\n\n &:before {\n left: auto;\n right: `, `;\n }\n }\n `])), I, k, G, Q, u, l, P({\n color: c\n }), k, Q, z), j = V(Y4 || (Y4 = K([`\n label: svg_icon;\n display: inline-block;\n position: absolute;\n left: `, `;\n text-align: center;\n color: `, `;\n line-height: `, `;\n font-size: `, `;\n top: `, `;\n vertical-align: middle;\n\n [dir='rtl'] & {\n left: auto;\n right: `, `;\n }\n `])), z, d, o, o, D, z), F = V(X4 || (X4 = K([`\n label: close_btn;\n position: absolute;\n top: `, `;\n right: `, `;\n color: `, `;\n\n &:focus {\n background-color: `, `;\n &:after {\n border-color: `, `;\n }\n }\n\n &:hover {\n background-color: `, `;\n }\n\n [dir='rtl'] & {\n left: `, `;\n right: auto;\n }\n `])), B, O, b, p, g, p, O), L = function(Le, Ge) {\n return V(Z4 || (Z4 = K([`\n border: none;\n background-color: `, `;\n color: `, `;\n `])), Le, Ge);\n }, q = function(Le) {\n var Ge = {\n info: L(v, b),\n warning: L(_, x),\n success: L(C, w),\n error: L(S, E)\n };\n return V(Q4 || (Q4 = K([`\n label: `, `;\n `, `;\n `])), Le, Ge[Le]);\n }, W = function(Le) {\n var Ge = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : c, Ne = V(J4 || (J4 = K([`\n color: `, `;\n &:hover,\n &:focus {\n color: `, `;\n }\n `])), Le, Ge);\n return Ne;\n }, X = function(Le) {\n var Ge = {\n success: W(w),\n error: W(E),\n warning: W(x)\n }, Ne = \"\".concat(Le, \"_close_btn\");\n return V(eT || (eT = K([`\n label: `, `;\n `, `;\n `])), Ne, Ge[Le]);\n }, de = function(Le) {\n return V(tT || (tT = K([`\n color: `, `;\n `])), Le);\n }, Se = function(Le) {\n var Ge = {\n info: de(b),\n warning: de(x),\n success: de(w),\n error: de(E)\n }, Ne = \"\".concat(Le, \"_icon\");\n return V(nT || (nT = K([`\n label: `, `;\n `, `;\n `])), Ne, Ge[Le]);\n }, Te = V(rT || (rT = K([`\n label: no_close_btn;\n padding-right: `, `;\n [dir='rtl'] & {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), $, $, Q);\n return {\n base: T,\n svgIcon: j,\n closeBtn: F,\n noCloseBtn: Te,\n alertType: q,\n alertCloseBtn: X,\n alertIcon: Se\n };\n}\nvar d0e = [\"className\", \"type\", \"typeIconAriaLabel\", \"closeButton\", \"closeButtonLabel\", \"children\"], f0e = {\n info: LF,\n success: Wc,\n warning: kF,\n error: Zi\n}, p0e = function(e) {\n var t, n, r = e.className, a = e.type, i = a === void 0 ? \"info\" : a, o = e.typeIconAriaLabel, s = o === void 0 ? i : o, u = e.closeButton, l = e.closeButtonLabel, c = l === void 0 ? \"close alert\" : l, d = e.children, p = Qt(e, d0e), g = gn(), v = wt(function() {\n return c0e(g);\n }, [g]), b = f0e[i], C = [v.base, (t = v.alertType) === null || t === void 0 ? void 0 : t.call(v, i), !u && v.noCloseBtn], w;\n if (u) {\n var _, x = bt({}, u), S = [v.closeBtn, (_ = v.alertCloseBtn) === null || _ === void 0 ? void 0 : _.call(v, i)];\n w = u && ue(\"span\", {\n \"data-ppui\": \"true\"\n }, ue(ny, bt({\n css: S,\n buttonType: \"tertiary\",\n size: \"sm\",\n svgIconComponent: Uc\n }, x, {\n \"data-ppui\": \"true\"\n }), c));\n }\n var E = [v.svgIcon, (n = v.alertIcon) === null || n === void 0 ? void 0 : n.call(v, i)];\n return ue(\"div\", bt({\n role: \"alert\",\n css: C,\n className: r,\n \"data-ppui-info\": \"alert_3.1.21\"\n }, p), ue(b, {\n size: \"sm\",\n css: E,\n role: \"img\",\n \"aria-label\": s,\n \"data-ppui\": \"true\"\n }), d, w);\n};\nconst Mg = \"pardot_extra_field\", h0e = (e = [Mg]) => (e.includes(Mg) || e.unshift(Mg), /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: \"extra-field\",\n style: { position: \"absolute\", left: \"-9999px\", top: \"-9999px\" },\n children: e.map((t, n) => /* @__PURE__ */ h.jsx(\n \"input\",\n {\n type: \"text\",\n id: t,\n name: t,\n tabIndex: -1,\n \"aria-hidden\": \"true\"\n },\n `${t}-${n + 1}`\n ))\n }\n)), Ih = () => typeof window < \"u\", m0e = () => {\n if (!Ih() || !window.laDataLayer)\n return {};\n const { leadGenParam: e, url: t } = window.laDataLayer;\n return { leadGenParam: e, url: t };\n}, g0e = (e) => {\n var t, n, r, a;\n return !Ih() || !window.PAYPAL ? {} : (a = (r = (n = (t = window.PAYPAL) == null ? void 0 : t.analytics) == null ? void 0 : n.instance) == null ? void 0 : r.record) == null ? void 0 : a.call(r, e);\n}, v0e = () => {\n if (!Ih() || !window.fpti)\n return {};\n const { page: e, pgrp: t, comp: n, ccpg: r, rsta: a } = window.fpti;\n return {\n page: e,\n pgrp: t,\n comp: n,\n ccpg: r,\n rsta: a\n };\n}, b0e = () => {\n if (!Ih() || !document.cookie)\n return \"\";\n const e = /(?:^|;\\s*)gclid=([^;]*)/.exec(document.cookie);\n return !e || !e[1] ? \"\" : e[1];\n}, aT = ({\n formType: e,\n isSuccess: t,\n reason: n,\n pageURI: r,\n countryCode: a,\n userType: i,\n userLoggedIn: o,\n userAccountNumber: s,\n appEntryPoint: u = \"webapps/mpp\"\n}) => {\n const { page: l, pgrp: c, comp: d, ccpg: p, rsta: g } = v0e(), v = /\\/+$/, b = {\n e: \"fs\",\n page: `${l}|form_action_submitted`,\n pgrp: `${c}|form_action_submitted`,\n flnm: \"form_submit\",\n fltp: e,\n status: t ? \"success\" : \"error\",\n reason: t ? \"form_validation\" : n,\n cust: \" \",\n mrid: \" \",\n ec: \"form submit\",\n ea: `${u == null ? void 0 : u.replace(v, \"\")}/${r}`,\n el: a,\n comp: d,\n ccpg: p,\n rsta: g\n };\n o && i === \"CONSUMER\" ? b.cust = s : o && i === \"BUSINESS\" && (b.mrid = s), g0e({ data: b });\n}, y0e = (e) => Object.keys(e).map(\n (n) => `${encodeURIComponent(n)}=${encodeURIComponent(e[n] ?? \"\")}`\n).join(\"&\"), C0e = ({\n formValidation: e,\n requestUrl: t,\n formData: n,\n countryLang: r = \"\",\n callbacks: a,\n ...i\n}) => {\n const o = y0e({\n ...n,\n countryLang: r,\n leadSource: \"Web form\"\n }), s = {\n formType: n.formName,\n isSuccess: !1,\n reason: \"\",\n ...i\n };\n if (!e.isSuccess) {\n s.reason = e.error ?? \"\", aT(s);\n return;\n }\n const { onInit: u, onSubmit: l } = a || {};\n typeof u == \"function\" && u(), Ic({\n url: t,\n method: \"POST\",\n data: o,\n headers: {\n \"Content-Type\": \"application/x-www-form-urlencoded\"\n }\n }).then(() => {\n s.isSuccess = !0, s.reason = \"Form submitted successfully\";\n }).catch(() => {\n s.isSuccess = !1, s.reason = \"Something went wrong\";\n }).finally(() => {\n const { isSuccess: c, reason: d } = s;\n aT(s), typeof l == \"function\" && l(c, d);\n });\n}, x0e = (e) => e ? e.split(\"&\").reduce((r, a) => {\n const [i, o] = a.split(\"=\");\n return r[i] = o, r;\n}, {}) : {}, S0e = ({\n actionUrl: e,\n csrfToken: t\n}) => {\n const n = b0e(), { url: r = \"\", leadGenParam: a = \"\" } = m0e(), i = x0e(a);\n return {\n _csrf: t,\n formHandlerLocation: e,\n webformurl: r,\n gclid: n,\n ...i\n };\n};\nvar iT, oT, sT, uT, lT, cT;\nfunction _0e(e, t) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var n = e.sysBorderRadiusSm, r = e.sysColorLinkAlt, a = e.sysColorLinkAltHover, i = e.sysColorLinkAltActive, o = e.sysColorLinkContrast, s = e.sysColorLinkContrastActive, u = e.sysColorLinkContrastHover, l = e.sysColorLinkMain, c = e.sysColorLinkMainActive, d = e.sysColorLinkMainHover, p = e.sysColorStructureFocusOutline, g = e.sysSpaceXl, v = e.sysBorderRadiusXs, b = xr(e), C = b.focusStyles, w = b.shimmerStyles, _ = Fr(e), x = _.bodyStrong, S = _.captionStrong, E = C.focusInline, N = function() {\n return E({\n radius: n,\n colorInner: l,\n colorOuter: p\n });\n }, P = V(iT || (iT = K([`\n label: links_base;\n text-decoration: none;\n `, `\n &:focus {\n color: `, `;\n `, `\n }\n\n &:focus,\n &:hover {\n text-decoration: underline;\n cursor: pointer;\n }\n\n &:hover {\n color: `, `;\n background-color: `, `;\n border-radius: `, `;\n }\n\n &:active {\n color: `, `;\n background-color: `, `;\n border-radius: `, `;\n }\n `])), x({\n color: Xt(t, l, \"contrast\")\n }), Xt(t, l, \"contrast\"), N(), Xt(t, d, \"contrast\"), Xt(t, null, \"hover\"), v, Xt(t, c, \"contrast\"), Xt(t, null, \"active\"), v), H = V(oT || (oT = K([`\n label: secondary;\n text-decoration: underline;\n `, `\n\n &:active {\n color: `, `;\n text-decoration: none;\n }\n\n &:focus,\n &:hover {\n color: `, `;\n text-decoration: underline;\n }\n `])), x({\n color: Xt(t, r, \"contrast\")\n }), Xt(t, i, \"contrast\"), Xt(t, a, \"contrast\")), k = V(sT || (sT = K([`\n label: shimmer;\n `, `\n `])), w.defaults({\n height: g\n })), Q = V(uT || (uT = K([`\n label: inverse;\n color: `, `;\n text-decoration: underline;\n\n &:visited,\n &:focus {\n color: `, `;\n }\n\n &:focus {\n `, `\n }\n\n &:hover {\n color: `, `;\n }\n\n &:active {\n color: `, `;\n text-decoration: underline;\n }\n `])), Xt(t, o, \"contrast\"), Xt(t, o, \"contrast\"), N(), Xt(t, u, \"contrast\"), Xt(t, s, \"contrast\")), I = V(lT || (lT = K([`\n label: left_icon;\n display: inline-block;\n vertical-align: top;\n margin-right: 0.375rem;\n\n [dir='rtl'] & {\n margin-right: 0;\n margin-left: 0.375rem;\n }\n `]))), G = function() {\n var $ = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : !1, z = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1, B = Xt(t, l, \"contrast\"), O = \"caption_primary\";\n return z && (O = \"caption_inverse\", B = Xt(t, o, \"contrast\")), $ && (O = \"caption_secondary\", B = Xt(t, r, \"contrast\")), V(cT || (cT = K([`\n label: `, `;\n `, `\n `])), O, S({\n color: B\n }));\n };\n return {\n base: P,\n secondary: H,\n shimmer: k,\n inverse: Q,\n leftIcon: I,\n getCaptionStyles: G\n };\n}\nvar E0e = [\"inverse\", \"secondary\", \"size\", \"primaryAlt\", \"className\", \"leftIcon\", \"children\", \"as\", \"isLoading\"], w0e = Lt(function(e, t) {\n var n, r = e.inverse, a = e.secondary, i = e.size, o = e.primaryAlt, s = e.className, u = e.leftIcon, l = e.children, c = e.as, d = c === void 0 ? \"a\" : c, p = e.isLoading, g = Qt(e, E0e), v = vt.useContext(Qp), b = gn(), C = wt(function() {\n return _0e(b, v);\n }, [b, v]);\n if (p)\n return ue(Zp, {\n css: C.shimmer,\n className: s,\n hasStyleDefaults: !1,\n isInverse: r,\n \"data-ppui\": \"true\"\n }, l);\n d === \"a\" && g.target === \"_blank\" && (g.rel ? (/noreferrer/i.test(g.rel) || (g.rel = \"\".concat(g.rel, \" noreferrer\")), /noopener/i.test(g.rel) || (g.rel = \"\".concat(g.rel, \" noopener\"))) : g.rel = \"noreferrer noopener\");\n var w = ue(\"span\", {\n css: C.leftIcon,\n \"data-ppui\": \"true\"\n }, u), _ = o || a, x = [C.base, r && C.inverse, _ && C.secondary, i === \"sm\" && ((n = C.getCaptionStyles) === null || n === void 0 ? void 0 : n.call(C, _, r))];\n return ue(d, bt({\n css: x,\n className: s,\n ref: t,\n \"data-ppui-info\": \"links_4.3.4\"\n }, g), u && w, l);\n}), dT, fT, pT, hT, mT, gT, vT, bT, yT, CT, xT, ST, _T, ET, wT, TT, AT, NT, OT, LT, kT, IT, DT, PT, MT, RT, BT, FT, jT, $T, HT, VT;\nfunction r2(e) {\n var t = xr(e), n = t.screenReader;\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var r = e.sysBorderRadiusSm, a = e.sysBorderThicknessNormal, i = e.sysSizeCircleXs, o = e.sysColorBackgroundSurface, s = e.sysColorSelectedContrast, u = e.sysBorderThicknessEmphasis, l = e.sysColorStructureBorderHighContrast, c = e.sysColorSelectedMain, d = e.sysColorErrorMain, p = e.sysColorSuccessMain, g = e.sysColorBackgroundMediumContrast, v = e.sysSpaceXs, b = e.sysSpaceMd, C = e.sysSpaceTiny, w = e.sysSizeIconXs, _ = e.sysSizeIconLg, x = e.sysSpaceSm, S = e.sysBorderRadiusXs, E = e.sysSpaceXl, N = De(\"\".concat(i, \" + \").concat(b, \" + \").concat(C)), P = Fr(e), H = P.body, k = P.caption, Q = xr(e), I = Q.focusStyles, G = I.focusAfter, $ = I.stateErrorFocusBorderColorOuter, z = I.stateFocusBorderWidthInner, B = I.stateErrorFocusBorderColorInner, O = function() {\n return V(dT || (dT = K([`\n border-color: `, `;\n background-color: `, `;\n color: `, `;\n border-radius: `, `;\n `])), c, c, s, r);\n }, D = V(fT || (fT = K([`\n label: checkbox_base;\n position: relative;\n text-align: start;\n margin-bottom: 0;\n `]))), T = V(pT || (pT = K([`\n label: checkbox_group;\n display: flex;\n flex-direction: column;\n margin: 0;\n padding: 0;\n border: none;\n text-align: start;\n `]))), j = V(hT || (hT = K([`\n label: group_base;\n padding: `, ` 0;\n `])), b), F = V(mT || (mT = K([`\n label: label;\n -moz-osx-font-smoothing: grayscale;\n cursor: pointer;\n display: block;\n padding-inline-start: `, `;\n `, `\n position: relative;\n text-align: start;\n span:first-of-type {\n inset-inline-start: 0;\n }\n -webkit-tap-highlight-color: transparent;\n `])), N, H()), L = V(gT || (gT = K([`\n label: group_label;\n `, `\n padding: 0 0 `, ` 0;\n margin-bottom: `, `;\n text-align: start;\n `])), H({\n color: g\n }), b, v), q = V(vT || (vT = K([`\n label: icon_label;\n position: relative;\n top: 0.125rem;\n margin-left: `, `;\n `])), b), W = function(mt) {\n return V(bT || (bT = K([`\n label: checkmark_container;\n border-radius: `, `;\n border: `, ` solid\n `, `;\n box-sizing: border-box;\n height: `, `;\n left: 0;\n position: absolute;\n top: `, `;\n width: `, `;\n line-height: `, `;\n text-align: center;\n background-color: `, `;\n display: flex;\n justify-content: center;\n align-items: center;\n `])), r, a, l, i, mt ? \"auto\" : 0, i, 1.3, o);\n }, X = V(yT || (yT = K([`\n label: check_icon;\n display: none;\n font-size: `, `;\n `])), w), de = V(CT || (CT = K([`\n label: partial_icon;\n height: `, `;\n width: `, `;\n background-color: `, `;\n border-radius: `, `;\n `])), C, \"0.875rem\", s, S), Se = V(xT || (xT = K([`\n label: checkbox_input;\n cursor: pointer;\n opacity: 0;\n position: absolute;\n &:checked + label > span > span:first-of-type {\n `, `\n span:first-of-type {\n display: inline;\n }\n }\n &:focus + label > span > span:first-of-type:after {\n `, `\n [dir='rtl'] & {\n left: 0;\n right: -`, `;\n }\n }\n `])), O(), G({\n radius: r,\n width: i,\n height: i,\n top: \"-\".concat(a),\n left: \"-\".concat(a)\n }), a), Te = V(ST || (ST = K([`\n label: error;\n &:checked + label > span > span:first-of-type {\n border-width: `, `;\n border-color: `, `;\n }\n &:focus + label > span > span:first-of-type:after {\n `, `;\n [dir='rtl'] & {\n left: 0;\n right: -`, `;\n }\n }\n `])), u, d, G({\n radius: r,\n width: i,\n height: i,\n border: \"\".concat(z, ` solid\n `).concat(B),\n boxShadowColor: $,\n top: \"-\".concat(u),\n left: \"-\".concat(u)\n }), u), Le = V(_T || (_T = K([`\n label: error_checkbox;\n border-width: `, `;\n border-color: `, `;\n line-height: `, `;\n `])), u, d, 1.1), Ge = V(ET || (ET = K([`\n label: error_text;\n `, `\n display: flex;\n align-items: center;\n margin: 0;\n `])), k({\n color: g\n })), Ne = V(wT || (wT = K([`\n label: error_icon;\n color: `, `;\n margin-inline-end: `, `;\n `])), d, v), ie = V(TT || (TT = K([`\n label: success_icon;\n color: `, `;\n margin-inline-end: `, `;\n `])), p, v), Ce = V(AT || (AT = K([`\n padding-bottom: `, `;\n `])), b), ve = V(NT || (NT = K([`\n label: helper_text;\n `, `\n margin: `, ` 0 0;\n `])), k({\n color: g\n }), v), Ae = V(OT || (OT = K([`\n label: group_helper_text;\n margin: 0;\n `]))), _e = V(LT || (LT = K([`\n label: checkbox_items;\n display: flex;\n align-items: center;\n min-height: `, `;\n margin: 0;\n `])), \"1.5rem\"), He = V(kT || (kT = K([`\n label: thumbnail;\n display: flex;\n align-items: center;\n margin-inline-end: `, `;\n min-height: auto;\n pointer-events: none;\n `])), x), Oe = V(IT || (IT = K([`\n label: thumbnail_decoration;\n width: `, `;\n height: `, `;\n `])), _, _), Be = V(DT || (DT = K([`\n label: item_text;\n margin: 0; /* overwrite default margin */\n pointer-events: none;\n `]))), qe = V(PT || (PT = K([`\n label: item_secondary_text;\n display: block;\n padding-top: `, `;\n pointer-events: none;\n `, `;\n `])), v, k({\n color: g\n })), Ye = V(MT || (MT = K([`\n label: group_base_with_sec_text;\n padding: `, ` 0;\n `])), x), Xe = V(RT || (RT = K([`\n label: legal_consent_label;\n margin-bottom: `, `;\n > span:first-of-type {\n display: flex;\n }\n `])), b), Ve = V(BT || (BT = K([`\n label: legal_consent_text;\n `, `;\n `])), k({\n color: g\n })), $e = V(FT || (FT = K([`\n label: legal_consent_supporting_text_wrapper;\n padding-inline-start: `, `;\n `, `;\n margin: 0;\n `])), N, k({\n color: g\n })), Je = V(jT || (jT = K([`\n label: legal_consent_supporting_text_wrapper_when_no_label;\n padding-inline-start: 0;\n `]))), Tt = V($T || ($T = K([`\n label: legal_consent_links_wrapper;\n padding: `, ` 0 0 0;\n margin: 0;\n list-style-type: none;\n `])), b), ct = V(HT || (HT = K([`\n label: legal_consent_links_wrapper_when_no_label;\n padding-top: 0;\n `]))), Dt = V(VT || (VT = K([`\n label: legal_consent_group_spacing;\n display: flex;\n flex-direction: column;\n row-gap: `, `;\n align-items: flex-start;\n `])), E);\n return {\n checkboxBase: D,\n checkboxGroup: T,\n groupBase: j,\n checkboxLabel: F,\n groupLabel: L,\n iconLabel: q,\n checkIconContainer: W,\n checkIcon: X,\n checkboxInput: Se,\n checkboxErrorState: Te,\n errorCheckIconContainer: Le,\n checkboxMessageText: Ge,\n errorIcon: Ne,\n partialIcon: de,\n successIcon: ie,\n labelError: Ce,\n helper: ve,\n groupHelper: Ae,\n checkboxItems: _e,\n itemThumbnail: He,\n itemThumbnailDecoration: Oe,\n itemText: Be,\n itemSecondaryText: qe,\n groupBaseWithSecText: Ye,\n screenReader: n,\n legalConsentLabel: Xe,\n legalConsentText: Ve,\n legalConsentSupportingTextWrapper: $e,\n legalConsentSupportingTextWrapperWhenNoLabel: Je,\n legalConsentLinksWrapper: Tt,\n legalConsentGroupSpacing: Dt,\n legalConsentLinksWrapperWhenNoLabel: ct\n };\n}\nvar T0e = [\"id\", \"label\", \"aria-label\", \"decoration\", \"secondaryText\", \"labelIcon\", \"helperText\", \"errorText\", \"errorIconAriaLabel\", \"error\", \"successText\", \"successIconAriaLabel\", \"partial\", \"name\", \"dir\", \"className\", \"onChange\", \"inCheckboxGroup\"], A0e = Lt(function(e, t) {\n var n = e.id, r = e.label, a = e[\"aria-label\"], i = e.decoration, o = e.secondaryText, s = e.labelIcon, u = e.helperText, l = e.errorText, c = e.errorIconAriaLabel, d = c === void 0 ? \"Error\" : c, p = e.error, g = e.successText, v = e.successIconAriaLabel, b = v === void 0 ? \"Success\" : v, C = e.partial, w = e.name, _ = w === void 0 ? \"default\" : w, x = e.dir, S = e.className, E = e.onChange, N = e.inCheckboxGroup, P = Qt(e, T0e), H = gn(), k = wt(function() {\n return r2(H);\n }, [H]), Q = [k.checkboxBase, p && k.checkboxErrorState, N && k.groupBase, N && o && k.groupBaseWithSecText], I = function() {\n var O = i && ue(\"span\", {\n css: k.itemThumbnail,\n \"data-ppui\": \"true\"\n }, ue(ys, {\n \"data-ppui\": \"true\"\n }, function(T) {\n var j = T.css, F = T.cx;\n return vt.cloneElement(i, {\n className: F(i.props.className, j(k.itemThumbnailDecoration))\n });\n })), D = ue(\"span\", {\n css: k.itemText,\n \"data-ppui\": \"true\"\n }, ue(KI, {\n as: \"span\",\n css: [!r && k.screenReader],\n \"data-ppui\": \"true\"\n }, r ?? a), o && ue(zb, {\n css: k.itemSecondaryText,\n as: \"span\",\n \"data-ppui\": \"true\"\n }, o));\n return ue(\"span\", {\n css: k.checkboxItems,\n \"data-ppui\": \"true\"\n }, O, D);\n }, G = n ?? Za(\"Checkbox_\"), $ = ue(Zi, {\n css: k.errorIcon,\n size: \"sm\",\n role: \"img\",\n \"aria-label\": d,\n \"data-ppui\": \"true\"\n }), z = ue(Wc, {\n css: k.successIcon,\n size: \"sm\",\n role: \"img\",\n \"aria-label\": b,\n \"data-ppui\": \"true\"\n }), B;\n return p && !g ? B = l && ue(\"p\", {\n css: k.checkboxMessageText,\n id: _,\n \"data-ppui\": \"true\"\n }, $, l) : g && !p && (B = g && ue(\"p\", {\n css: k.checkboxMessageText,\n id: _,\n \"data-ppui\": \"true\"\n }, z, g)), ue(\"div\", {\n css: Q,\n className: S,\n \"data-id\": \"checkbox\",\n dir: x,\n \"data-ppui-info\": \"checkbox_4.5.2\"\n }, ue(\"input\", bt({\n css: [k.checkboxInput, p && k.checkboxErrorState],\n type: \"checkbox\",\n id: G,\n name: _,\n ref: t,\n onChange: function(D) {\n E && (D.stopPropagation(), E(D));\n }\n }, P, p && l && {\n \"aria-describedby\": _,\n \"aria-invalid\": !0\n }, {\n \"data-ppui\": \"true\"\n })), function() {\n var D, T = s && ue(\"span\", {\n css: k.iconLabel,\n \"data-ppui\": \"true\"\n }, s), j = ue(L8, {\n css: k.checkIcon,\n size: \"xs\",\n \"data-ppui\": \"true\"\n }), F = ue(\"span\", {\n css: k.partialIcon,\n \"data-ppui\": \"true\"\n }), L = !p && !g && u && ue(\"p\", {\n css: k.helper,\n \"data-ppui\": \"true\"\n }, u), q = [(D = k.checkIconContainer) === null || D === void 0 ? void 0 : D.call(k, !!i), p && k.errorCheckIconContainer], W = [k.checkboxLabel, (p || g) && !N && k.labelError], X = C ? F : j, de = ue(\"span\", {\n css: k.checkboxItems,\n \"data-ppui\": \"true\"\n }, ue(\"span\", {\n css: q,\n \"data-ppui\": \"true\"\n }, X), I());\n return ue(\"label\", {\n css: W,\n htmlFor: G,\n \"data-ppui\": \"true\"\n }, de, T, L);\n }(), B);\n}), N0e = [\"id\", \"name\", \"label\", \"links\", \"onChange\", \"errorText\", \"errorIconAriaLabel\", \"className\", \"children\"];\nfunction zT(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction qT(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? zT(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : zT(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nLt(function(e, t) {\n var n = e.id, r = e.name, a = e.label, i = e.links, o = i === void 0 ? [] : i, s = e.onChange, u = e.errorText, l = e.errorIconAriaLabel, c = l === void 0 ? \"Error\" : l, d = e.className, p = e.children, g = Qt(e, N0e), v = gn(), b = wt(function() {\n return r2(v);\n }, [v]), C = o.map(function(P, H) {\n var k = vt.createElement(w0e, qT(qT({}, P), {}, {\n size: \"sm\"\n }));\n return ue(\"li\", {\n key: H,\n \"data-ppui\": \"true\"\n }, k);\n }), w = n ?? Za(\"LegalConsent_\"), _ = [b.checkboxBase, u && b.checkboxErrorState], x = [b.legalConsentSupportingTextWrapper, a && u && b.labelError, !(a != null && a.length) && b.legalConsentSupportingTextWrapperWhenNoLabel], S = [b.legalConsentGroupSpacing, b.legalConsentLinksWrapper, !(a != null && a.length) && b.legalConsentLinksWrapperWhenNoLabel], E, N = \"p\";\n return C.length ? (E = ue(\"ul\", {\n css: S,\n \"data-ppui\": \"true\"\n }, C), N = \"div\") : E = p, ue(\"div\", {\n css: _,\n className: d,\n \"data-ppui-info\": \"checkbox_4.5.2\"\n }, a && ue(vt.Fragment, null, ue(\"input\", bt({\n css: [b.checkboxInput, u && b.checkboxErrorState],\n type: \"checkbox\",\n id: w,\n name: r,\n ref: t,\n onChange: function(H) {\n s && (H.stopPropagation(), s(H));\n }\n }, g, u && {\n \"aria-describedby\": r,\n \"aria-invalid\": !0\n }, {\n \"data-ppui\": \"true\"\n })), function() {\n var H, k = [(H = b.checkIconContainer) === null || H === void 0 ? void 0 : H.call(b, !1), u && b.errorCheckIconContainer], Q = ue(\"span\", {\n \"data-ppui\": \"true\"\n }, ue(\"span\", {\n css: k,\n \"data-ppui\": \"true\"\n }, ue(L8, {\n css: b.checkIcon,\n size: \"xs\",\n \"data-ppui\": \"true\"\n })), ue(zb, {\n css: b.legalConsentText,\n as: \"span\",\n \"data-ppui\": \"true\"\n }, a)), I = [b.checkboxLabel, b.checkboxItems, b.legalConsentLabel];\n return ue(\"label\", {\n css: I,\n htmlFor: w,\n \"data-ppui\": \"true\"\n }, Q);\n }()), ue(N, {\n css: x,\n \"data-ppui\": \"true\"\n }, E), a && u && ue(\"p\", {\n css: b.checkboxMessageText,\n id: r,\n \"data-ppui\": \"true\"\n }, ue(Zi, {\n css: b.errorIcon,\n size: \"sm\",\n role: \"img\",\n \"aria-label\": c,\n \"data-ppui\": \"true\"\n }), u));\n});\nvar O0e = [\"label\", \"labelIcon\", \"helperText\", \"errorText\", \"error\", \"successText\", \"className\", \"children\"], L0e = function(e) {\n var t = e.label, n = e.labelIcon, r = e.helperText, a = e.errorText, i = e.error, o = e.successText, s = e.className, u = e.children, l = Qt(e, O0e), c = gn(), d = wt(function() {\n return r2(c);\n }, [c]), p = i && !o, g = o && !i, v = ue(Zi, {\n css: d.errorIcon,\n size: \"sm\",\n \"data-ppui\": \"true\"\n }), b = ue(Wc, {\n css: d.successIcon,\n size: \"sm\",\n \"data-ppui\": \"true\"\n }), C = [!i && d.helper, (p || g) && d.checkboxMessageText, d.groupHelper], w = (a || r || o) && ue(\"p\", {\n css: C,\n \"data-ppui\": \"true\"\n }, p && v, g && b, p && a, g && o, !p && !g && r), _ = n && ue(\"span\", {\n css: d.iconLabel,\n \"data-ppui\": \"true\"\n }, n), x = {\n error: i,\n inCheckboxGroup: !0\n }, S = vt.Children.toArray(u).map(function(E) {\n return vt.cloneElement(E, x);\n });\n return ue(\"fieldset\", bt({\n css: [d.checkboxGroup, i && d.checkboxErrorState],\n className: s,\n \"data-ppui-info\": \"checkbox_4.5.2\"\n }, l), ue(\"legend\", {\n css: d.groupLabel,\n \"data-ppui\": \"true\"\n }, t, _), S, w);\n};\nconst C7 = \"Checkbox\", k0e = new ke(C7), Dh = Lt((e, t) => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"input\", { name: e.name, type: \"hidden\" }),\n /* @__PURE__ */ h.jsx(\n A0e,\n {\n ...e,\n className: k0e.getComponentClassName(),\n error: e.error ?? !!e.errorText,\n ref: t\n }\n )\n] }));\nDh.displayName = C7;\nconst x7 = \"CheckboxGroup\", I0e = new ke(x7), S7 = Lt(\n ({ checkboxCollection: e, name: t, ...n }, r) => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"input\", { name: t, type: \"hidden\", ref: r }),\n /* @__PURE__ */ h.jsx(\n L0e,\n {\n ...n,\n error: n.error ?? !!n.errorText,\n className: I0e.getComponentClassName(),\n children: e.map((a, i) => /* @__PURE__ */ h.jsx(Dh, { ...a, name: t }, `checkbox-${i + 1}`))\n }\n )\n ] })\n);\nS7.displayName = x7;\nvar GT, UT, WT;\nfunction D0e(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSizeFieldLg, n = V(GT || (GT = K([`\n position: relative;\n `]))), r = V(UT || (UT = K([`\n top: `, `;\n `])), t), a = V(WT || (WT = K([`\n label: affordance_trigger;\n cursor: pointer;\n `])));\n return {\n base: n,\n menu: r,\n affordanceTrigger: a\n };\n}\nvar P0e = [\"name\", \"options\", \"value\", \"text\", \"id\", \"dir\", \"label\", \"onOpen\", \"onChange\", \"onBlur\", \"onTextChange\", \"onFocus\", \"getMenuOptions\", \"placeholder\", \"isLoadingOptions\", \"emptyMessage\", \"mobileTitle\", \"sheetWrapperClassName\", \"autoComplete\"];\nfunction KT(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction M0e(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? KT(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : KT(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar R0e = function(e, t) {\n return t ? e.filter(function(n) {\n var r = (n.label || \"\").toLowerCase(), a = t.toLowerCase();\n return r.substring(0, a.length) === a;\n }) : e;\n}, rf = function(e) {\n var t;\n return (t = e.value) !== null && t !== void 0 ? t : e.label;\n}, B0e = function(e, t) {\n return e.reduce(function(n, r) {\n var a = M0e({}, r);\n return a.hasOwnProperty(\"id\") || (a.id = \"\".concat(t, \"__\").concat(rf(r))), n.push(a), n;\n }, []);\n}, F0e = \"No results. Try something else or check for errors.\", j0e = {\n label: \"primaryText\"\n}, $0e = function(e, t) {\n return Object.entries(e).reduce(function(n, r) {\n var a = fn(r, 2), i = a[0], o = a[1], s = t.hasOwnProperty(i) ? t[i] : i;\n return n[s] = o, n;\n }, {});\n}, H0e = function(e) {\n return e ? e.map(function(t) {\n return t.onMouseDown = function(n) {\n return n.preventDefault();\n }, $0e(t, j0e);\n }) : [];\n}, V0e = function(e) {\n var t = e.name, n = t === void 0 ? \"NO_NAME\" : t, r = e.options, a = e.value, i = a === void 0 ? \"\" : a, o = e.text, s = e.id, u = e.dir, l = e.label, c = e.onOpen, d = e.onChange, p = e.onBlur, g = e.onTextChange, v = e.onFocus, b = v === void 0 ? null : v, C = e.getMenuOptions, w = C === void 0 ? R0e : C, _ = e.placeholder, x = e.isLoadingOptions, S = e.emptyMessage, E = S === void 0 ? F0e : S, N = e.mobileTitle, P = N === void 0 ? l : N, H = e.sheetWrapperClassName, k = e.autoComplete, Q = Qt(e, P0e), I = ze(!1), G = fn(I, 2), $ = G[0], z = G[1], B = ze(-1), O = fn(B, 2), D = O[0], T = O[1], j = ze(\"\"), F = fn(j, 2), L = F[0], q = F[1], W = ze(r), X = fn(W, 2), de = X[0], Se = X[1], Te = ze(i), Le = fn(Te, 2), Ge = Le[0], Ne = Le[1], ie = ze(!1), Ce = fn(ie, 2), ve = Ce[0], Ae = Ce[1], _e = Ue(), He = Ue(), Oe = function(Ct, Wt) {\n if (Wt !== \"\" && (!Ct || !r))\n return Wt;\n var On = r == null ? void 0 : r.find(function(Bt) {\n return Ct === rf(Bt);\n });\n return On ? On.label : Ct;\n }, Be = Oe(i, o), qe = ze(Be || \"\"), Ye = fn(qe, 2), Xe = Ye[0], Ve = Ye[1], $e = ze(\"\"), Je = fn($e, 2), Tt = Je[0], ct = Je[1], Dt = s ?? Za(\"Combobox_\"), mt = \"combo_txt_\".concat(Dt), et = \"combo_menu_\".concat(Dt), dt = function() {\n T(-1), q(\"\");\n }, Fe = function(Ct) {\n var Wt = B0e(w(r, Ct), n);\n (!Wt || Wt.length === 0) && (Wt = [{\n label: E,\n unselectable: !0\n }]), Se(Wt), dt();\n }, Ot = function(Ct) {\n typeof d == \"function\" && d({\n target: {\n name: n,\n value: Ct\n }\n });\n }, nt = function(Ct) {\n z(Ct), Ae(Ct);\n }, Ie = function() {\n x || (Fe(\"\"), ct(\"\")), nt(!0), He.current && He.current.select();\n }, st = function(Ct) {\n typeof g == \"function\" && g(Ct), ct(Ct.target.value), Ve(Ct.target.value), Fe(Ct.target.value), Ne(\"\");\n }, kt = function() {\n nt(!1), q(\"\");\n }, Mt = function(Ct) {\n var Wt = Ct.target;\n return Wt.id !== mt;\n }, Kt = function(Ct) {\n var Wt = de[Ct];\n Wt && !Wt.unselectable && (Ve(Wt.label), Ne(rf(Wt)), ct(Wt.label), Ot(rf(Wt)), nt(!1));\n }, Rt = function() {\n return Xe === \"\" || de.length < r.length;\n }, jt = function() {\n return D < 0 ? \"\" : de[D].id;\n }, _t = function(Ct) {\n var Wt = Math.min(Math.max(D + Ct, 0), de.length - 1);\n if (Wt !== D) {\n var On = de[Wt];\n On.unselectable || (T(Wt), On && Rt() && q(On.label));\n }\n }, _n = function(Ct) {\n var Wt = Ct.key || Ct.keyCode, On = new yn(Wt);\n On.IS_ARROW_UP ? _t(-1) : On.IS_ARROW_DOWN ? $ ? _t(1) : Ie() : On.IS_ENTER || Wt === \"Unidentified\" ? (Ct.preventDefault(), $ ? Kt(D) : Ie()) : (On.IS_TAB || On.IS_ESC) && kt();\n }, Rn = L ? null : _, rr = \"sheet_t_\".concat(n), Jn = function() {\n var Ct = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"ltr\";\n return ue(\"div\", {\n dir: Ct,\n \"data-ppui\": \"true\"\n }, ue(zu, {\n name: rr,\n ref: _e,\n label: l,\n value: Tt,\n placeholder: Rn,\n placemat: L,\n onChange: st,\n onKeyDown: function(On) {\n return _n(On);\n },\n autoComplete: \"off\",\n role: \"combobox\",\n \"aria-controls\": et,\n \"aria-activedescendant\": jt(),\n disabled: x,\n \"data-ppui\": \"true\"\n }));\n }, yt = gn(), Yt = wt(function() {\n return D0e(yt);\n }, [yt]), dn = $ ? wv : Tv, Er = ue(dn, {\n onClick: function(Wt) {\n Wt.stopPropagation(), $ ? nt(!1) : (Ae(!0), Ie());\n },\n size: \"sm\",\n \"aria-hidden\": \"true\",\n \"data-testid\": \"combo-affordance\",\n color: \"BackgroundMediumContrast\",\n css: Yt.affordanceTrigger,\n \"data-ppui\": \"true\"\n });\n We(function() {\n Ne(i), Ve(Oe(i, \"\"));\n }, [i]), We(function() {\n o != null && Ve(o);\n }, [o]);\n var cr = function(Ct) {\n return (\n /* istanbul ignore next */\n Ct && Ct.current ? Ct.current : null\n );\n };\n We(function() {\n if (!x && $) {\n var Ct = cr(_e);\n Ct && Ct.focus();\n } else\n r && r.length && (Se(r), Ve(Oe(i, Xe)));\n }, [x, r]);\n var wr = {\n role: \"combobox\",\n autoComplete: k ?? \"new-password\",\n \"aria-expanded\": $,\n \"aria-haspopup\": !0,\n \"aria-controls\": et,\n \"aria-activedescendant\": jt(),\n value: Xe,\n placeholder: L ? \" \" : _,\n placemat: L,\n inputRef: He\n }, Ta = {\n isLoadingOptions: x\n };\n return ue(\"div\", {\n dir: u,\n css: Yt.base,\n \"data-ppui-info\": \"combobox_3.5.8\"\n }, ue(zu, bt({\n name: \"combo_t_\".concat(n),\n label: l,\n id: mt,\n rightIcon: Er,\n setFocus: ve\n }, Q, wr, {\n onChange: function(Wt) {\n typeof g == \"function\" && g(Wt), Ve(Wt.target.value), Fe(Wt.target.value), Ne(\"\"), $ || nt(!0);\n },\n onClick: function() {\n $ || Ie();\n },\n onKeyDown: _n,\n onFocus: function(Wt) {\n var On = cr(_e);\n b && !On && b(Wt);\n },\n onBlur: function() {\n _e.current || p && p({\n target: {\n name: n,\n textValue: Xe,\n value: Ge\n }\n });\n },\n \"data-reactcombo\": !0,\n \"data-ppui\": \"true\"\n })), ue(ys, {\n \"data-ppui\": \"true\"\n }, function(Ct) {\n var Wt = Ct.css;\n return ue(BD, bt({\n name: \"combo_m_\".concat(n),\n value: Ge,\n id: et\n }, Ta, {\n initialItemFocus: !1,\n ignoreKeyboard: !0,\n isOpen: $,\n mobileTitle: P,\n mobileHeaderContents: Jn(u),\n outsideClickCheck: Mt,\n onOpen: c,\n onClose: kt,\n onSelection: Kt,\n activeItem: D,\n triggerElementRef: He,\n options: H0e(de),\n containerClassName: Wt(Yt.menu),\n sheetWrapperClassName: H,\n \"data-ppui\": \"true\"\n }));\n }));\n}, z0e = [\"name\", \"value\", \"label\", \"countryList\", \"onOpen\", \"onChange\", \"onFocus\", \"sheetWrapperClassName\"], q0e = [\"countryCode\", \"label\"];\nfunction YT(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction G0e(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? YT(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : YT(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar U0e = function(e) {\n var t = e.name, n = t === void 0 ? \"default\" : t, r = e.value, a = e.label, i = a === void 0 ? \"Country or region\" : a, o = e.countryList, s = o === void 0 ? [] : o, u = e.onOpen, l = e.onChange, c = e.onFocus, d = c === void 0 ? null : c, p = e.sheetWrapperClassName, g = Qt(e, z0e);\n (!s || !(s != null && s.length)) && console.warn(\"Required prop `countryList` is missing.\");\n var v = Ze(rl), b, C = function(_, x) {\n var S = _.countryCode, E = _.label, N = Qt(_, q0e);\n return G0e({\n label: E || x && x.select(S),\n value: S,\n decoration: /* @__PURE__ */ vt.createElement(mh, {\n countryCode: S,\n size: \"md\",\n \"data-ppui\": \"true\"\n })\n }, N);\n };\n if (!v || !v.getDisplayNamesObject)\n b = s.map(function(_) {\n return C(_, null);\n });\n else {\n var w = v.getDisplayNamesObject({\n type: \"region\"\n });\n b = s.map(function(_) {\n return C(_, w);\n });\n }\n return /* @__PURE__ */ vt.createElement(V0e, bt({\n name: n,\n value: r,\n options: b,\n label: i,\n onOpen: u,\n onChange: l,\n onFocus: d,\n sheetWrapperClassName: p,\n \"data-ppui-info\": \"country-input_2.4.15\"\n }, g));\n};\nconst _7 = [\n { countryCode: \"AL\", label: \"Albania\" },\n { countryCode: \"DZ\", label: \"Algeria\" },\n { countryCode: \"AD\", label: \"Andorra\" },\n { countryCode: \"AO\", label: \"Angola\" },\n { countryCode: \"AI\", label: \"Anguilla\" },\n { countryCode: \"AG\", label: \"Antigua & Barbuda\" },\n { countryCode: \"AR\", label: \"Argentina\" },\n { countryCode: \"AM\", label: \"Armenia\" },\n { countryCode: \"AW\", label: \"Aruba\" },\n { countryCode: \"AU\", label: \"Australia\" },\n { countryCode: \"AT\", label: \"Austria\" },\n { countryCode: \"AZ\", label: \"Azerbaijan\" },\n { countryCode: \"BS\", label: \"Bahamas\" },\n { countryCode: \"BH\", label: \"Bahrain\" },\n { countryCode: \"BB\", label: \"Barbados\" },\n { countryCode: \"BY\", label: \"Belarus\" },\n { countryCode: \"BE\", label: \"Belgium\" },\n { countryCode: \"BZ\", label: \"Belize\" },\n { countryCode: \"BJ\", label: \"Benin\" },\n { countryCode: \"BM\", label: \"Bermuda\" },\n { countryCode: \"BT\", label: \"Bhutan\" },\n { countryCode: \"BO\", label: \"Bolivia\" },\n { countryCode: \"BA\", label: \"Bosnia & Herzegovina\" },\n { countryCode: \"BW\", label: \"Botswana\" },\n { countryCode: \"BR\", label: \"Brazil\" },\n { countryCode: \"VG\", label: \"British Virgin Islands\" },\n { countryCode: \"BN\", label: \"Brunei\" },\n { countryCode: \"BG\", label: \"Bulgaria\" },\n { countryCode: \"BF\", label: \"Burkina Faso\" },\n { countryCode: \"BI\", label: \"Burundi\" },\n { countryCode: \"KH\", label: \"Cambodia\" },\n { countryCode: \"CM\", label: \"Cameroon\" },\n { countryCode: \"CA\", label: \"Canada\" },\n { countryCode: \"CV\", label: \"Cape Verde\" },\n { countryCode: \"KY\", label: \"Cayman Islands\" },\n { countryCode: \"TD\", label: \"Chad\" },\n { countryCode: \"CL\", label: \"Chile\" },\n { countryCode: \"CN\", label: \"China\" },\n { countryCode: \"CO\", label: \"Colombia\" },\n { countryCode: \"KM\", label: \"Comoros\" },\n { countryCode: \"CG\", label: \"Congo - Brazzaville\" },\n { countryCode: \"CD\", label: \"Congo - Kinshasa\" },\n { countryCode: \"CK\", label: \"Cook Islands\" },\n { countryCode: \"CR\", label: \"Costa Rica\" },\n { countryCode: \"CI\", label: \"Côte d’Ivoire\" },\n { countryCode: \"HR\", label: \"Croatia\" },\n { countryCode: \"CY\", label: \"Cyprus\" },\n { countryCode: \"CZ\", label: \"Czech Republic\" },\n { countryCode: \"DK\", label: \"Denmark\" },\n { countryCode: \"DJ\", label: \"Djibouti\" },\n { countryCode: \"DM\", label: \"Dominica\" },\n { countryCode: \"DO\", label: \"Dominican Republic\" },\n { countryCode: \"EC\", label: \"Ecuador\" },\n { countryCode: \"EG\", label: \"Egypt\" },\n { countryCode: \"SV\", label: \"El Salvador\" },\n { countryCode: \"ER\", label: \"Eritrea\" },\n { countryCode: \"EE\", label: \"Estonia\" },\n { countryCode: \"ET\", label: \"Ethiopia\" },\n { countryCode: \"FK\", label: \"Falkland Islands\" },\n { countryCode: \"FO\", label: \"Faroe Islands\" },\n { countryCode: \"FJ\", label: \"Fiji\" },\n { countryCode: \"FI\", label: \"Finland\" },\n { countryCode: \"FR\", label: \"France\" },\n { countryCode: \"GF\", label: \"French Guiana\" },\n { countryCode: \"PF\", label: \"French Polynesia\" },\n { countryCode: \"GA\", label: \"Gabon\" },\n { countryCode: \"GM\", label: \"Gambia\" },\n { countryCode: \"GE\", label: \"Georgia\" },\n { countryCode: \"DE\", label: \"Germany\" },\n { countryCode: \"GI\", label: \"Gibraltar\" },\n { countryCode: \"GR\", label: \"Greece\" },\n { countryCode: \"GL\", label: \"Greenland\" },\n { countryCode: \"GD\", label: \"Grenada\" },\n { countryCode: \"GP\", label: \"Guadeloupe\" },\n { countryCode: \"GT\", label: \"Guatemala\" },\n { countryCode: \"GN\", label: \"Guinea\" },\n { countryCode: \"GW\", label: \"Guinea-Bissau\" },\n { countryCode: \"GY\", label: \"Guyana\" },\n { countryCode: \"HN\", label: \"Honduras\" },\n { countryCode: \"HK\", label: \"Hong Kong SAR China\" },\n { countryCode: \"HU\", label: \"Hungary\" },\n { countryCode: \"IS\", label: \"Iceland\" },\n { countryCode: \"IN\", label: \"India\" },\n { countryCode: \"ID\", label: \"Indonesia\" },\n { countryCode: \"IE\", label: \"Ireland\" },\n { countryCode: \"IL\", label: \"Israel\" },\n { countryCode: \"IT\", label: \"Italy\" },\n { countryCode: \"JM\", label: \"Jamaica\" },\n { countryCode: \"JP\", label: \"Japan\" },\n { countryCode: \"JO\", label: \"Jordan\" },\n { countryCode: \"KZ\", label: \"Kazakhstan\" },\n { countryCode: \"KE\", label: \"Kenya\" },\n { countryCode: \"KI\", label: \"Kiribati\" },\n { countryCode: \"KW\", label: \"Kuwait\" },\n { countryCode: \"KG\", label: \"Kyrgyzstan\" },\n { countryCode: \"LA\", label: \"Laos\" },\n { countryCode: \"LV\", label: \"Latvia\" },\n { countryCode: \"LS\", label: \"Lesotho\" },\n { countryCode: \"LI\", label: \"Liechtenstein\" },\n { countryCode: \"LT\", label: \"Lithuania\" },\n { countryCode: \"LU\", label: \"Luxembourg\" },\n { countryCode: \"MK\", label: \"Macedonia\" },\n { countryCode: \"MG\", label: \"Madagascar\" },\n { countryCode: \"MW\", label: \"Malawi\" },\n { countryCode: \"MY\", label: \"Malaysia\" },\n { countryCode: \"MV\", label: \"Maldives\" },\n { countryCode: \"ML\", label: \"Mali\" },\n { countryCode: \"MT\", label: \"Malta\" },\n { countryCode: \"MH\", label: \"Marshall Islands\" },\n { countryCode: \"MQ\", label: \"Martinique\" },\n { countryCode: \"MR\", label: \"Mauritania\" },\n { countryCode: \"MU\", label: \"Mauritius\" },\n { countryCode: \"YT\", label: \"Mayotte\" },\n { countryCode: \"MX\", label: \"Mexico\" },\n { countryCode: \"FM\", label: \"Micronesia\" },\n { countryCode: \"MD\", label: \"Moldova\" },\n { countryCode: \"MC\", label: \"Monaco\" },\n { countryCode: \"MN\", label: \"Mongolia\" },\n { countryCode: \"ME\", label: \"Montenegro\" },\n { countryCode: \"MS\", label: \"Montserrat\" },\n { countryCode: \"MA\", label: \"Morocco\" },\n { countryCode: \"MZ\", label: \"Mozambique\" },\n { countryCode: \"NA\", label: \"Namibia\" },\n { countryCode: \"NR\", label: \"Nauru\" },\n { countryCode: \"NP\", label: \"Nepal\" },\n { countryCode: \"NL\", label: \"Netherlands\" },\n { countryCode: \"AN\", label: \"Netherlands Antilles\" },\n { countryCode: \"NC\", label: \"New Caledonia\" },\n { countryCode: \"NZ\", label: \"New Zealand\" },\n { countryCode: \"NI\", label: \"Nicaragua\" },\n { countryCode: \"NE\", label: \"Niger\" },\n { countryCode: \"NG\", label: \"Nigeria\" },\n { countryCode: \"NU\", label: \"Niue\" },\n { countryCode: \"NF\", label: \"Norfolk Island\" },\n { countryCode: \"NO\", label: \"Norway\" },\n { countryCode: \"OM\", label: \"Oman\" },\n { countryCode: \"PW\", label: \"Palau\" },\n { countryCode: \"PA\", label: \"Panama\" },\n { countryCode: \"PG\", label: \"Papua New Guinea\" },\n { countryCode: \"PY\", label: \"Paraguay\" },\n { countryCode: \"PE\", label: \"Peru\" },\n { countryCode: \"PH\", label: \"Philippines\" },\n { countryCode: \"PN\", label: \"Pitcairn Islands\" },\n { countryCode: \"PL\", label: \"Poland\" },\n { countryCode: \"PT\", label: \"Portugal\" },\n { countryCode: \"QA\", label: \"Qatar\" },\n { countryCode: \"RE\", label: \"Réunion\" },\n { countryCode: \"RO\", label: \"Romania\" },\n { countryCode: \"RU\", label: \"Russia\" },\n { countryCode: \"RW\", label: \"Rwanda\" },\n { countryCode: \"WS\", label: \"Samoa\" },\n { countryCode: \"SM\", label: \"San Marino\" },\n { countryCode: \"ST\", label: \"São Tomé & Príncipe\" },\n { countryCode: \"SA\", label: \"Saudi Arabia\" },\n { countryCode: \"SN\", label: \"Senegal\" },\n { countryCode: \"RS\", label: \"Serbia\" },\n { countryCode: \"SC\", label: \"Seychelles\" },\n { countryCode: \"SL\", label: \"Sierra Leone\" },\n { countryCode: \"SG\", label: \"Singapore\" },\n { countryCode: \"SK\", label: \"Slovakia\" },\n { countryCode: \"SI\", label: \"Slovenia\" },\n { countryCode: \"SB\", label: \"Solomon Islands\" },\n { countryCode: \"SO\", label: \"Somalia\" },\n { countryCode: \"ZA\", label: \"South Africa\" },\n { countryCode: \"KR\", label: \"South Korea\" },\n { countryCode: \"ES\", label: \"Spain\" },\n { countryCode: \"LK\", label: \"Sri Lanka\" },\n { countryCode: \"SH\", label: \"St. Helena\" },\n { countryCode: \"KN\", label: \"St. Kitts & Nevis\" },\n { countryCode: \"LC\", label: \"St. Lucia\" },\n { countryCode: \"PM\", label: \"St. Pierre & Miquelon\" },\n { countryCode: \"VC\", label: \"St. Vincent & Grenadines\" },\n { countryCode: \"SR\", label: \"Suriname\" },\n { countryCode: \"SJ\", label: \"Svalbard & Jan Mayen\" },\n { countryCode: \"SZ\", label: \"Swaziland\" },\n { countryCode: \"SE\", label: \"Sweden\" },\n { countryCode: \"CH\", label: \"Switzerland\" },\n { countryCode: \"TW\", label: \"Taiwan\" },\n { countryCode: \"TJ\", label: \"Tajikistan\" },\n { countryCode: \"TZ\", label: \"Tanzania\" },\n { countryCode: \"TH\", label: \"Thailand\" },\n { countryCode: \"TG\", label: \"Togo\" },\n { countryCode: \"TO\", label: \"Tonga\" },\n { countryCode: \"TT\", label: \"Trinidad & Tobago\" },\n { countryCode: \"TN\", label: \"Tunisia\" },\n { countryCode: \"TR\", label: \"Turkey\" },\n { countryCode: \"TM\", label: \"Turkmenistan\" },\n { countryCode: \"TC\", label: \"Turks & Caicos Islands\" },\n { countryCode: \"TV\", label: \"Tuvalu\" },\n { countryCode: \"UG\", label: \"Uganda\" },\n { countryCode: \"UA\", label: \"Ukraine\" },\n { countryCode: \"AE\", label: \"United Arab Emirates\" },\n { countryCode: \"GB\", label: \"United Kingdom\" },\n { countryCode: \"US\", label: \"United States\" },\n { countryCode: \"UY\", label: \"Uruguay\" },\n { countryCode: \"VU\", label: \"Vanuatu\" },\n { countryCode: \"VA\", label: \"Vatican City\" },\n { countryCode: \"VE\", label: \"Venezuela\" },\n { countryCode: \"VN\", label: \"Vietnam\" },\n { countryCode: \"WF\", label: \"Wallis & Futuna\" },\n { countryCode: \"YE\", label: \"Yemen\" },\n { countryCode: \"ZM\", label: \"Zambia\" },\n { countryCode: \"ZW\", label: \"Zimbabwe\" }\n], W0e = \"https://www.paypalobjects.com/marketing/web/pp-com-data/wr-countries\", K0e = \"en-US\", XT = (e, t) => {\n const n = e.findIndex(\n (a) => a.countryCode === t\n );\n if (!n)\n return e;\n const [r] = e.splice(n, 1);\n return e.unshift(r), e;\n}, Y0e = (e) => {\n const t = _7.reduce(\n (n, r) => ({\n ...n,\n [r.countryCode]: r.label\n }),\n {}\n );\n return e.filter((n) => !!t[n.countryCode]);\n}, X0e = (e, t, n) => {\n const r = e ? Y0e(e) : _7;\n if (!t)\n return XT(r, n);\n const a = t.split(\",\"), i = r.filter(\n (o) => a.includes(o.countryCode)\n );\n return XT(i, n);\n}, Z0e = (e) => {\n var n;\n return ((n = e == null ? void 0 : e.clientLocale) == null ? void 0 : n.replace(\"_\", \"-\")) || K0e;\n}, Q0e = (e) => {\n var a, i;\n const t = e.main;\n if (!t)\n return;\n const [n] = Object.keys(t), r = (i = (a = t[`${n}`]) == null ? void 0 : a.localeDisplayNames) == null ? void 0 : i.territories;\n if (r)\n return Object.keys(r).map((o) => ({\n countryCode: o,\n label: r[o]\n }));\n}, J0e = (e) => {\n const [t, n] = ze(!0), r = Ue(void 0);\n return We(() => {\n (async () => {\n try {\n const o = (await Ic.get(\n `${W0e}/region-${e}.json`\n )).data;\n r.current = Q0e(o);\n } finally {\n n(!1);\n }\n })();\n }, [e]), { isLoading: t, countryListCDN: r.current };\n}, efe = \"CountryInput\", E7 = Lt(\n ({ onChange: e, name: t, selectCountries: n, ...r }, a) => {\n const [i, o] = ze([]), [s, u] = ze(\"\"), { country: l } = Ze(Vt), { clientInfo: c } = Ze(Vt), d = Z0e(c), { isLoading: p, countryListCDN: g } = J0e(d), v = Ue(null);\n Yi(() => {\n const w = `combo_t_${t}`, _ = document.querySelector(\n `input[name=\"${w}\"]`\n );\n _ == null || _.setAttribute(\"name\", t), v.current = _;\n }, [t]), We(() => {\n const w = l == null ? void 0 : l.toUpperCase(), _ = X0e(\n g,\n n,\n w\n );\n if (o(_), w && !p) {\n const x = _.find(\n (S) => S.countryCode.toUpperCase() === w\n );\n x && typeof e == \"function\" && (u(x.countryCode), e({\n type: \"change\",\n target: {\n name: t,\n value: x.countryCode,\n type: \"select\"\n }\n }));\n }\n }, [\n g,\n p,\n t,\n e,\n l,\n n\n ]), We(() => {\n typeof a == \"function\" ? a(v.current) : a && (a.current = v.current);\n }, [a]);\n const b = ({\n target: { value: w }\n }) => {\n u(w), typeof e == \"function\" && e({\n type: \"change\",\n target: {\n name: t,\n value: w,\n type: \"select\"\n }\n });\n }, C = (w) => {\n u(w.target.value), typeof e == \"function\" && e({\n type: \"change\",\n target: {\n name: t,\n value: \"\",\n type: \"select\"\n }\n });\n };\n return /* @__PURE__ */ h.jsx(\n U0e,\n {\n ...r,\n onChange: b,\n onTextChange: C,\n name: t,\n countryList: i,\n value: s,\n isLoadingOptions: p\n }\n );\n }\n);\nE7.displayName = efe;\nvar ZT, QT, JT, e5, t5, n5, r5, a5, i5, o5, s5, u5, l5, c5, d5, f5, p5, h5, m5, g5, v5, b5, y5, C5, x5, S5, _5, E5, w5, T5, A5, N5, O5, L5, k5, I5, D5, P5, M5, R5, B5;\nfunction tfe(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysSpaceLg, n = e.sysTypographyDisplaySize, r = e.sysSizeIconLg, a = e.sysSizeTapTargetDefault, i = e.sysSpaceXl, o = e.sysSpaceSm, s = e.sysSizeMediaMd, u = e.sysSizeMediaSm, l = e.sysColorBackgroundSurface, c = e.sysSizeMediaLg, d = e.sysMotionDurationDepart, p = e.sysBorderRadiusLg, g = e.sysSpaceMd, v = e.sysSpaceXs, b = e.sysMotionDurationArrive, C = e.sysSizeIconSm, w = e.sysSizeIconMd, _ = e.sysColorOverlayMainHover, x = e.sysSizeIndicatorMd, S = e.sysSizeIconXl, E = e.sysSpaceJumbo, N = e.sysSizeMediaXl, P = xr(e), H = P.elevationStyles, k = P.variables, Q = P.screenReader, I = k.ppuiEaseInOut, G = Fr(e), $ = G.body, z = De(\"8 * \".concat(t)), B = n, O = r, D = \"75%\", T = De(\"\".concat(N, \" * 0.75\")), j = De(\"\".concat(i, \" * 2\")), F = De(\"\".concat(t, \" * 2\")), L = De(\"\".concat(r, \" + (2 * \").concat(v, \")\")), q = De(\"\".concat(S, \" + (2 * \").concat(v, \")\")), W = \"100vw\", X = C + g * 2, de = function() {\n var yt = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : \"center\";\n return V(ZT || (ZT = K([`\n label: container_center;\n display: flex;\n align-items: `, `;\n justify-content: space-around;\n `])), yt);\n }, Se = V(QT || (QT = K([`\n label: container_middle;\n `, `;\n width: `, `;\n max-width: `, `;\n\n @media screen and (max-width: `, `) {\n width: calc(100% - `, `);\n }\n\n @media screen and (max-width: `, `) {\n width: calc(100% - `, `);\n }\n `])), de(), D, T, s, j, u, F), Te = V(JT || (JT = K([`\n label: container_bottom;\n `, `;\n width: `, `;\n\n @media screen and (max-width: `, `) {\n width: `, `;\n }\n @media screen and (max-width: `, `) {\n width: `, `;\n }\n `])), de(\"flex-end\"), s, c, u, s, W), Le = V(e5 || (e5 = K([`\n label: base;\n background-color: `, `;\n display: flex;\n flex-direction: column;\n position: relative;\n flex-basis: 100%;\n `])), l), Ge = V(t5 || (t5 = K([`\n label: modal_no_container;\n width: `, `;\n max-width: `, `;\n `])), D, T), Ne = V(n5 || (n5 = K([`\n label: modal_dialog;\n min-height: `, `;\n border-radius: `, `;\n max-height: `, `;\n `, `;\n opacity: 0;\n will-change: opacity;\n transition: opacity `, \" \", `;\n `])), z, p, \"75vh\", H.level3, d, I), ie = V(r5 || (r5 = K([`\n label: modal_sheet;\n height: 100vh;\n width: auto;\n `, `;\n will-change: transform;\n transition: transform `, \" \", `,\n height `, \" \", `;\n transform: translateZ(0) translateY(100%);\n\n @media screen and (max-width: `, `) {\n width: `, `;\n height: auto;\n min-height: `, `;\n max-height: `, `; /* Fallback for browsers that do not support Custom Properties */\n max-height: calc(var(--vh, 1vh) * 90);\n border-top-left-radius: `, `;\n border-top-right-radius: `, `;\n }\n `])), H.level3, d, I, d, I, s, W, a, \"90vh\", p, p), Ce = V(a5 || (a5 = K([`\n label: modal_sheet_show;\n transform: translateZ(0) translateY(0);\n `]))), ve = V(i5 || (i5 = K([`\n label: modal_backdrop;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: `, `;\n visibility: hidden;\n opacity: 0;\n will-change: opacity;\n transition: opacity `, ` ease-in-out,\n visibility `, \" \", `;\n background-color: `, `;\n `, `;\n box-shadow: none;\n\n &[aria-hidden='false'] {\n transition-duration: `, `;\n }\n\n &[aria-hidden='true'] {\n transition-duration: `, `;\n }\n `])), Lf, d, d, d, _, de(\"center\"), b, b), Ae = V(o5 || (o5 = K([`\n label: modal_backdrop_show;\n visibility: visible;\n opacity: 1;\n transition: opacity `, ` ease-in-out;\n `])), d), _e = V(s5 || (s5 = K([`\n label: modal_backdrop_show_dialog;\n opacity: 1;\n transition: opacity `, ` ease-in-out\n `, `;\n `])), d, d), He = V(u5 || (u5 = K([`\n label: scrim;\n position: fixed;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n z-index: `, `;\n visibility: hidden;\n transition: visibility `, \" \", `;\n `, `;\n\n &::before {\n content: ' ';\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n right: 0;\n opacity: 0;\n will-change: opacity;\n transition: opacity `, ` ease-in-out;\n background-color: `, `;\n }\n `])), Lf, d, d, de(\"flex-end\"), d, _), Oe = V(l5 || (l5 = K([`\n label: scrim_show;\n visibility: visible;\n transition: none; /* visibility should not be animated when coming in */\n\n &::before {\n opacity: 1;\n transition-duration: `, `;\n }\n `])), b), Be = V(c5 || (c5 = K([`\n label: modal_contents;\n flex: 1 1 auto;\n overflow: auto;\n\n position: relative;\n border-radius: inherit;\n `, `;\n\n @media screen and (max-width: `, `) {\n padding: 0 `, \" \", `;\n }\n `])), $(), s, i, i), qe = V(d5 || (d5 = K([`\n label: modal_content_with_header;\n @media screen and (max-width: `, `) {\n border-radius: 0;\n }\n `])), s), Ye = V(f5 || (f5 = K([`\n label: modal_content_sheet;\n padding: 0 `, `;\n\n @media screen and (max-width: `, `) {\n padding: 0 `, `;\n }\n @media screen and (max-width: `, `) {\n padding: 0 `, \" \", `;\n }\n `])), \"8.5rem\", c, \"5rem\", s, t, t), Xe = V(p5 || (p5 = K([`\n label: modal_content_dialog;\n max-height: `, `;\n padding: 0 `, `;\n `])), \"70vh\", E), Ve = V(h5 || (h5 = K([`\n label: modal_content_no_padding;\n padding: 0;\n @media screen and (max-width: `, `) {\n padding: 0;\n }\n `])), c), $e = V(m5 || (m5 = K([`\n label: modal_content_dialog_no_padding;\n @media screen and (max-width: `, `) {\n padding: 0 `, \" \", `;\n }\n `])), u, t, i), Je = V(g5 || (g5 = K([`\n label: modal_content_center;\n text-align: center;\n `]))), Tt = V(v5 || (v5 = K([`\n label: modal_header;\n display: flex;\n justify-content: space-between;\n align-items: center;\n flex-wrap: wrap;\n position: relative;\n flex: 0 0 auto;\n z-index: 1;\n min-height: `, `;\n padding: `, `;\n `])), B, g), ct = V(b5 || (b5 = K([`\n label: modal_header_sheet;\n min-height: `, `;\n\n @media screen and (max-width: `, `) {\n min-height: `, `;\n }\n `])), q, s, L), Dt = V(y5 || (y5 = K([`\n label: modal_header_sheet_action;\n min-height: `, `;\n padding: `, `;\n margin: 0;\n\n @media screen and (max-width: `, `) {\n min-height: `, `;\n padding: `, `;\n margin: 0;\n }\n `])), q, g, s, L, o), mt = V(C5 || (C5 = K([`\n label: modal_header_scrolled;\n `, `\n `])), H.level3), et = V(x5 || (x5 = K([`\n label: modal_header_action;\n flex: 0 0 `, `;\n flex-basis: `, `;\n `])), O, X), dt = V(S5 || (S5 = K([`\n label: modal_header_title;\n flex: 1 1 3rem;\n margin: `, `;\n text-align: center;\n `, `;\n `])), o, $()), Fe = V(_5 || (_5 = K([`\n label: modal_header_close;\n flex: 0 0 `, `;\n text-align: right;\n flex-basis: `, `;\n `])), O, X), Ot = V(E5 || (E5 = K([`\n label: modal_header_work_area;\n flex: 0 0 100%;\n padding: `, \" \", `;\n `])), o, t), nt = V(w5 || (w5 = K([`\n label: modal_header_logo;\n display: flex;\n flex: 1 1 3rem;\n justify-content: center;\n margin-top: `, `;\n `])), o), Ie = V(T5 || (T5 = K([`\n label: modal_header_logo_image;\n width: `, `;\n height: `, `;\n `])), w, w), st = V(A5 || (A5 = K([`\n label: modal_content_close;\n position: absolute;\n right: `, `;\n top: `, `;\n z-index: 2;\n\n [dir='rtl'] & {\n left: `, `;\n right: auto;\n\n @media screen and (min-width: `, `) {\n left: `, `;\n }\n }\n\n @media screen and (min-width: `, `) {\n right: `, `;\n top: `, `;\n }\n `])), v, v, v, s, x, s, x, g), kt = V(N5 || (N5 = K([`\n label: modal_footer;\n min-height: `, `;\n padding: `, `;\n position: relative;\n flex: 1 0 auto;\n `])), B, t), Mt = V(O5 || (O5 = K([`\n label: modal_footer_scrolled;\n `, `\n border-bottom-left-radius: inherit;\n border-bottom-right-radius: inherit;\n `])), H.level3Above), Kt = V(L5 || (L5 = K([`\n label: modal_footer_align_center;\n text-align: center;\n `]))), Rt = V(k5 || (k5 = K([`\n label: modal_footer_align_right;\n text-align: right;\n `]))), jt = V(I5 || (I5 = K([`\n label: modal_sheet_height_90;\n @media screen and (max-width: `, `) {\n height: 90vh; /* Fallback for browsers that do not support Custom Properties */\n height: calc(var(--vh, 1vh) * 90);\n border-top-left-radius: `, `;\n border-top-right-radius: `, `;\n }\n `])), s, p, p), _t = V(D5 || (D5 = K([`\n label: sheet_right_side;\n @media screen and (min-width: `, `) {\n justify-content: flex-end;\n }\n `])), s), _n = V(P5 || (P5 = K([`\n @media screen and (min-width: `, `) {\n width: `, `;\n }\n `])), s, \"35.5rem\"), Rn = V(M5 || (M5 = K([`\n label: container_right;\n @media screen and (min-width: `, `) {\n will-change: transform;\n transform: translateZ(0) translateX(100%);\n transition: transform `, `;\n bottom: inherit;\n\n &[aria-hidden='false'] {\n transform: translateZ(0) translateX(0%);\n }\n }\n `])), s, d), rr = V(R5 || (R5 = K([`\n label: drawer_container;\n @media screen and (min-width: `, `) {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), s, De(\"\".concat(i, \" * 2\")), De(\"\".concat(i, \" * 2\"))), Jn = V(B5 || (B5 = K([`\n label: modal_sheet_height_50;\n @media screen and (max-width: `, `) {\n height: 50vh; /* Fallback for browsers that do not support Custom Properties */\n height: calc(var(--vh, 1vh) * 50);\n border-top-left-radius: `, `;\n border-top-right-radius: `, `;\n }\n `])), s, p, p);\n return {\n base: Le,\n modalContents: Be,\n modalContentsCenter: Je,\n modalContentsNoPadding: Ve,\n modalHeader: Tt,\n modalHeaderScrolled: mt,\n modalHeaderClose: Fe,\n modalHeaderAction: et,\n modalHeaderTitle: dt,\n modalHeaderLogo: nt,\n modalHeaderLogoImage: Ie,\n modalFooter: kt,\n modalFooterScrolled: Mt,\n modalFooterAlignCenter: Kt,\n modalFooterAlignRight: Rt,\n screenReader: Q,\n // Dialog specific styles\n modalDialog: Ne,\n modalBackdrop: ve,\n modalBackdropShow: Ae,\n modalBackdropShowDialog: _e,\n modalContentsClose: st,\n modalContentsDialog: Xe,\n containerMiddle: Se,\n modalContentDialogPadding: $e,\n // Sheet Specific\n modalSheet: ie,\n modalSheetShow: Ce,\n modalSheetHeight90: jt,\n modalSheetHeight50: Jn,\n modalNoContainer: Ge,\n modalHeaderSheet: ct,\n modalHeaderSheetAction: Dt,\n modalHeaderWorkArea: Ot,\n modalContentsSheet: Ye,\n modalContentWithHeader: qe,\n scrim: He,\n scrimShow: Oe,\n containerBottom: Te,\n justifyRight: _t,\n containerRightWidth: _n,\n containerRight: Rn,\n drawerContainer: rr\n };\n}\nvar nfe = [\"requestClose\", \"onBeforeClose\", \"className\", \"isHidden\", \"center\", \"noPadding\", \"closeButtonLabel\", \"noCloseButton\", \"closeButtonProps\", \"hideTitle\", \"showLogo\", \"mobileFixedHeight\", \"title\", \"id\", \"action\", \"headerContents\", \"footerContents\", \"footerAlign\", \"children\", \"returnFocusToTrigger\", \"headerClassName\", \"containerClassName\", \"contentContainerRef\", \"wrapperClassName\", \"footerClassName\", \"skipFormFocus\", \"contentScrollTop\", \"onContentScroll\", \"showDrawer\"], rfe = function() {\n return !0;\n}, afe = function(e) {\n var t = e.requestClose, n = e.onBeforeClose, r = n === void 0 ? rfe : n, a = e.className, i = e.isHidden, o = e.center, s = e.noPadding, u = e.closeButtonLabel, l = u === void 0 ? \"close sheet\" : u, c = e.noCloseButton, d = e.closeButtonProps, p = d === void 0 ? {} : d, g = e.hideTitle, v = e.showLogo, b = e.mobileFixedHeight, C = e.title, w = e.id, _ = e.action, x = e.headerContents, S = e.footerContents, E = e.footerAlign, N = e.children, P = e.returnFocusToTrigger, H = P === void 0 ? !0 : P, k = e.headerClassName, Q = e.containerClassName, I = e.contentContainerRef, G = e.wrapperClassName, $ = e.footerClassName, z = e.skipFormFocus, B = e.contentScrollTop, O = B === void 0 ? 0 : B, D = e.onContentScroll, T = e.showDrawer, j = T === void 0 ? !1 : T, F = Qt(e, nfe), L = ze(!1), q = fn(L, 2), W = q[0], X = q[1], de = ze(!1), Se = fn(de, 2), Te = Se[0], Le = Se[1], Ge = ze(0.5), Ne = fn(Ge, 2), ie = Ne[0], Ce = Ne[1], ve = Ue(), Ae = Ue(), _e = Ue(), He = Ue(), Oe = I || He, Be = Ue(), qe, Ye, Xe = b === \"dynamic\", Ve = gn(), $e = wt(function() {\n return tfe(Ve);\n }, [Ve]), Je = Ve.sysSizeMediaMd, Tt = vs(Mo(Je, \"16px\")), ct = typeof window < \"u\" ? window && window.innerWidth < Tt : !1, Dt = v && !ct, mt = w ?? Za(), et = !!_ || !c || !g || !!x || Dt, dt = function() {\n if (Oe && Oe.current) {\n var Bt = Oe.current, ft = Bt.scrollTop !== 0;\n if (ft !== W && X(ft), S) {\n var xt = Bt.scrollTop + Bt.offsetHeight !== Bt.scrollHeight;\n xt !== Te && Le(xt);\n }\n }\n }, Fe = function() {\n var Bt = ve.current;\n if (Bt) {\n var ft = window.innerHeight * 0.9;\n b === \"90\" ? Bt.style.height = \"\".concat(ft, \"px\") : b === \"50\" ? Bt.style.height = \"\".concat(window.innerHeight * 0.5, \"px\") : Bt.style.maxHeight = \"\".concat(ft, \"px\");\n }\n }, Ot = function() {\n var Bt = ve.current;\n Bt && (Bt.style.height = \"\".concat(window.innerHeight * ie, \"px\"), Bt.style.maxHeight = \"fit-content\");\n }, nt = /* @__PURE__ */ function() {\n var Bt = QI(/* @__PURE__ */ kf.mark(function ft() {\n return kf.wrap(function(xt) {\n for (; ; )\n switch (xt.prev = xt.next) {\n case 0:\n Ce(0.9);\n case 1:\n case \"end\":\n return xt.stop();\n }\n }, ft);\n }));\n return function() {\n return Bt.apply(this, arguments);\n };\n }(), Ie = function() {\n Ce(0.5);\n }, st = function() {\n var Bt = Oe && Oe.current;\n ie === 0.5 && (Bt.style.overflow = \"hidden\"), ie === 0.9 && (Bt.style.overflow = \"scroll\");\n };\n We(function() {\n if (!i) {\n var Bt;\n dt(), (Bt = window) === null || Bt === void 0 || Bt.setTimeout(function() {\n var xt = !1;\n if (Be && Be.current) {\n var nn = Be.current.querySelector(\"input\");\n nn && (nn.focus(), xt = !0);\n }\n if (!xt && !z && Oe && Oe.current) {\n var Pn = Oe.current.querySelectorAll(\"a, button, textarea, input, select\");\n Pn.length > 0 && (Pn[0].focus(), xt = !0);\n }\n if (!xt && et)\n if (_ && _e && _e.current) {\n var Tr = _e.current.querySelectorAll(\"a, button, select\");\n Tr.length > 0 && Tr[0].focus();\n } else {\n var ht = Ae.current;\n ht && ht.focus();\n }\n }, 500);\n var ft = \"ontouchstart\" in window || navigator.maxTouchPoints;\n ft && window.innerHeight && (window.addEventListener(\"resize\", Fe, !1), Xe ? (Ot(), st()) : Fe());\n }\n return function() {\n window.removeEventListener(\"resize\", Fe, !1);\n };\n }, [i, ie]), We(function() {\n if (!i && Oe.current) {\n var Bt = Oe.current;\n Bt.scrollTop = O;\n }\n }, [O, i]);\n var kt = [$e.scrim, !i && $e.scrimShow, j && $e.justifyRight], Mt = [$e.base, $e.modalNoContainer, $e.modalSheet, b === \"90\" && $e.modalSheetHeight90, b === \"50\" && $e.modalSheetHeight50, Xe && $e.modalSheetHeight50, !i && $e.modalSheetShow, j && $e.containerRight], Kt = [$e.modalContents, $e.modalContentsSheet, o && $e.modalContentsCenter, s && $e.modalContentsNoPadding, et && $e.modalContentWithHeader, j && $e.drawerContainer], Rt = i ? \"true\" : \"false\", jt = function(Bt, ft) {\n var xt = r(ft);\n xt && (t(Bt, ft), qe = null, Ye = null);\n }, _t = c ? null : ue(ny, bt({\n svgIconComponent: Uc,\n onClick: function(ft) {\n jt(ft, \"closeButton\");\n },\n ref: Ae,\n buttonType: \"tertiary\"\n }, p, {\n \"data-ppui\": \"true\"\n }), l), _n = function(Bt, ft) {\n var xt = Bt.changedTouches[0], nn = xt.pageX, Pn = xt.pageY, Tr = qe - nn, ht = Ye - Pn;\n Math.abs(ht) > Math.abs(Tr) && (ht < 0 && (!ft || ft.scrollTop === 0) && (Xe ? (Ie(), (ht < -150 || ie === 0.5) && jt(Bt, \"swipeDown\")) : jt(Bt, \"swipeDown\")), ht > 0 && Xe && nt()), qe = null, Ye = null;\n }, Rn = function(Bt) {\n Bt.preventDefault();\n }, rr = function(Bt) {\n if (!Ye && !qe) {\n var ft = Bt.changedTouches[0];\n Ye = ft.pageY, qe = ft.pageX;\n }\n }, Jn = \"header_\".concat(mt), yt = {\n role: \"dialog\",\n className: G,\n \"aria-modal\": \"true\",\n \"aria-hidden\": Rt\n };\n Dt || g ? yt[\"aria-label\"] = C : yt[\"aria-labelledby\"] = Jn;\n var Yt = _ ? ue(\"div\", {\n css: [$e.modalHeaderClose],\n \"data-ppui\": \"true\"\n }) : null, dn = _t ? ue(\"div\", {\n css: [$e.modalHeaderAction],\n \"data-ppui\": \"true\"\n }) : null, Er = _t ? ue(\"div\", {\n css: [$e.modalHeaderClose],\n \"data-ppui\": \"true\"\n }, _t) : Yt, cr = _ ? ue(\"div\", {\n css: [$e.modalHeaderAction],\n ref: _e,\n \"data-ppui\": \"true\"\n }, _) : dn, wr = [Dt ? $e.modalHeaderLogo : $e.modalHeaderTitle], Ta = ue(\"div\", {\n css: wr,\n id: Jn,\n \"data-ppui\": \"true\"\n }, function() {\n return Dt ? ue(\"img\", {\n src: \"https://www.paypalobjects.com/paypal-ui/logos/svg/paypal-mark-color.svg\",\n alt: \"paypal-logo\",\n css: $e.modalHeaderLogoImage,\n \"data-ppui\": \"true\"\n }) : g ? null : C;\n }()), Ct = x ? ue(\"div\", {\n css: $e.modalHeaderWorkArea,\n ref: Be,\n \"data-ppui\": \"true\"\n }, x) : null, Wt = et ? ue(\"header\", {\n className: k,\n css: [$e.modalHeader, $e.modalHeaderSheet, W && $e.modalHeaderScrolled, cr && $e.modalHeaderSheetAction],\n onTouchStart: rr,\n onTouchMove: Rn,\n onTouchEnd: function(ft) {\n _n(ft, null);\n },\n \"data-ppui\": \"true\"\n }, cr, Ta, Er, Ct) : null, On = S ? ue(\"footer\", {\n className: $,\n css: [\n $e.modalFooter,\n /* istanbul ignore next */\n Te && $e.modalFooterScrolled,\n E === \"center\" && $e.modalFooterAlignCenter,\n E === \"right\" && $e.modalFooterAlignRight\n ],\n \"data-ppui\": \"true\"\n }, S) : null;\n return ue(\"div\", bt({}, yt, {\n css: kt,\n \"data-ppui-info\": \"sheet_3.7.2\"\n }), ue(MD, {\n enabled: !i,\n onEscapeKey: function(ft) {\n ft.preventDefault(), jt(ft, \"ESC\");\n },\n onClickOutside: function(ft) {\n jt(ft, \"backdropClick\");\n },\n returnFocus: H,\n css: [$e.containerBottom, j && $e.containerRightWidth],\n \"data-ppui\": \"true\"\n }, ue(\"article\", bt({\n css: Mt,\n className: Q\n }, F, {\n ref: ve,\n \"aria-hidden\": Rt,\n \"data-ppui\": \"true\"\n }), Wt, ue(\"section\", {\n css: Kt,\n className: a,\n onScroll: function() {\n if (Oe && Oe.current) {\n var ft = Oe.current;\n D && D(ft.scrollTop);\n }\n dt();\n },\n ref: Oe,\n onTouchStart: rr,\n onTouchMove: Rn,\n onTouchEnd: function(ft) {\n var xt = Oe && Oe.current;\n Xe && _n(ft, xt);\n },\n \"data-ppui\": \"true\"\n }, N), On)));\n}, ife = [\"isOpen\", \"onOpen\", \"onClose\", \"onCloseComplete\", \"containerRef\"], ofe = function(e) {\n var t = e.isOpen, n = e.onOpen, r = e.onClose, a = e.onCloseComplete, i = a === void 0 ? r : a, o = e.containerRef, s = Qt(e, ife), u = ze(!1), l = fn(u, 2), c = l[0], d = l[1];\n We(function() {\n d(!0);\n }, []);\n var p = /* @__PURE__ */ vt.createElement(YI, {\n shouldHide: !t,\n onOpen: n,\n onCloseComplete: i,\n \"data-ppui\": \"true\"\n }, function(b) {\n return /* @__PURE__ */ vt.createElement(afe, bt({}, b, s, {\n \"data-ppui\": \"true\"\n }));\n }), g = o && o.current;\n return c && cp.createPortal(p, g || document.body);\n}, F5, j5, $5, H5, V5, z5, q5, G5, U5, W5, K5, Y5, X5, Z5, Q5, J5, eA, tA, nA, rA, aA, iA, oA, sA, uA, lA, cA, dA, fA, pA, hA, mA;\nfunction w7(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysColorBackgroundSurface, n = e.sysSpaceLg, r = e.sysBorderRadiusSm, a = e.sysBorderThicknessNormal, i = e.sysBorderRadiusInteractive, o = e.sysColorBackgroundHighContrast, s = e.sysColorPrimaryMainHover, u = e.sysBorderThicknessEmphasis, l = e.sysSizeMediaMd, c = e.sysColorSpecialtyMain, d = e.sysColorBackgroundMediumContrast, p = e.sysSpaceTiny, g = e.sysColorSelectedRangeMain, v = e.sysColorSelectedMain, b = e.sysSizeIconLg, C = e.sysSizePointerWidthLg, w = e.sysSizeTapTargetDefault, _ = e.sysSizeTapTargetSm, x = e.sysSizeTapTargetXs, S = e.sysSizeFieldLg, E = e.sysSpaceSm, N = e.sysSpaceXl, P = e.sysTypographyCaptionSize, H = e.sysSpaceXs, k = e.sysColorSelectedContrast, Q = e.sysColorSelectedRangeContrast, I = xr(e), G = I.elevationStyles, $ = I.caretStyles, z = Fr(e), B = z.body, O = De(\"\".concat(S, \" + \").concat(E)), D = \"22.5rem\", T = \"25rem\";\n function j(Fe) {\n return V(F5 || (F5 = K([`\n width: `, `;\n height: `, `;\n `])), Fe, Fe);\n }\n var F = V(j5 || (j5 = K([`\n label: calendar_trigger;\n cursor: pointer;\n `])));\n function L() {\n return V($5 || ($5 = K([`\n background-color: `, `;\n position: absolute;\n top: `, `;\n padding: `, `;\n border: `, \" solid \", `;\n border-radius: `, `;\n `, `\n `, `\n `, `\n `, `;\n z-index: `, `;\n cursor: initial;\n `])), t, O, n, a, t, r, G.level2, $.base(C), $.positionTop(De(\"\".concat(C, \" / 2\"))), $.positionCenter(C), qI);\n }\n var q = V(H5 || (H5 = K([`\n label: calendar_container;\n `, `\n &:after {\n top: -`, `;\n }\n `])), L(), a), W = V(V5 || (V5 = K([`\n label: calendar_container-left;\n `, `\n right: -`, `;\n &:before {\n left: calc(100% - ((`, \" / 2) + \", `));\n }\n &:after {\n top: -`, `;\n left: calc(100% - ((`, \" / 2) + \", `));\n }\n `])), L(), E, b, n, a, b, N), X = V(z5 || (z5 = K([`\n label: calendar_container-right;\n `, `\n left: -`, `;\n &:before {\n left: calc(`, ` / 2);\n }\n &:after {\n top: -`, `;\n left: calc((`, \" / 2) - \", `);\n }\n `])), L(), E, b, a, b, E), de = V(q5 || (q5 = K([`\n label: calendar_nav;\n display: flex;\n align-items: center;\n justify-content: space-between;\n white-space: nowrap;\n `]))), Se = V(G5 || (G5 = K([`\n label: nav_prev_btn;\n `]))), Te = V(U5 || (U5 = K([`\n label: nav_next_btn;\n `]))), Le = V(W5 || (W5 = K([`\n &:after {\n display: none;\n }\n `]))), Ge = V(K5 || (K5 = K([`\n label: hidden;\n visibility: hidden;\n `]))), Ne = V(Y5 || (Y5 = K([`\n width: 100%;\n `]))), ie = V(X5 || (X5 = K([`\n table {\n `, `\n }\n `])), Ne), Ce = V(Z5 || (Z5 = K([`\n label: calendar_table;\n border-spacing: 0;\n\n th,\n td {\n text-align: center;\n padding: `, ` 0;\n }\n\n @media (max-width: `, `) {\n `, `\n }\n `])), p, l, Ne), ve = V(Q5 || (Q5 = K([`\n label: cell_in_range;\n border-top: `, ` solid transparent;\n border-bottom: `, ` solid transparent;\n background-color: `, `;\n `])), a, a, g), Ae = V(J5 || (J5 = K([`\n label: range_start;\n background: linear-gradient(\n to right,\n `, ` 50%,\n `, ` 50%\n );\n `])), t, g), _e = V(eA || (eA = K([`\n label: range_end;\n background: linear-gradient(\n to right,\n `, ` 50%,\n `, ` 50%\n );\n `])), g, t), He = V(tA || (tA = K([`\n label: date;\n `, `\n border: none;\n padding: 0;\n margin: 0 `, `;\n text-decoration: none;\n cursor: pointer;\n `, `\n border-radius: `, `;\n background-color: transparent;\n\n &:hover {\n border: `, \" solid \", `;\n }\n\n @media (max-width: `, `) {\n `, `\n }\n\n @media (min-width: `, \") and (max-width: \", `) {\n `, `\n }\n `])), B(), p, j(w), i, u, s, D, j(x), D, T, j(_)), Oe = V(nA || (nA = K([`\n label: date_in_range;\n color: `, `;\n `])), Q), Be = V(rA || (rA = K([`\n label: date_not_current;\n color: `, `;\n `])), d), qe = V(aA || (aA = K([`\n label: disabled;\n text-decoration-line: line-through;\n cursor: not-allowed;\n color: `, `;\n\n &:hover {\n border: none;\n }\n `])), d), Ye = V(iA || (iA = K([`\n label: today;\n border: `, \" solid \", `;\n `])), a, o), Xe = V(oA || (oA = K([`\n label: selected;\n color: `, `;\n border: `, \" solid \", `;\n background-color: `, `;\n `])), k, a, v, v), Ve = V(sA || (sA = K([`\n label: due_date;\n color: `, `;\n border: `, \" solid \", `;\n `])), c, a, c), $e = V(uA || (uA = K([`\n label: due_date_selected;\n border: `, \" solid \", `;\n `])), a, c), Je = V(lA || (lA = K([`\n label: icon_container;\n display: inline-block;\n position: relative;\n `, `\n\n @media (max-width: `, `) {\n `, `\n }\n\n @media (min-width: `, \") and (max-width: \", `) {\n `, `\n }\n `])), j(w), D, j(x), D, T, j(_)), Tt = V(cA || (cA = K([`\n label: icon;\n position: absolute;\n bottom: 0;\n right: 0;\n pointer-events: none;\n background-color: `, `;\n border-radius: `, `;\n color: `, `;\n `])), t, i, c), ct = V(dA || (dA = K([`\n label: legend;\n display: flex;\n align-items: center;\n margin-top: `, `;\n margin-inline-start: `, `;\n `])), E, n), Dt = V(fA || (fA = K([`\n label: legend_item;\n display: flex;\n align-items: center;\n white-space: nowrap;\n margin-inline-end: `, `;\n `])), n), mt = V(pA || (pA = K([`\n label: key;\n width: `, `;\n height: `, `;\n display: inline-block;\n margin-inline-end: `, `;\n border-radius: `, `;\n `])), P, P, H, i), et = V(hA || (hA = K([`\n label: due_date_legend_key;\n background-color: `, `;\n color: `, `;\n margin-inline-end: `, `;\n border-radius: `, `;\n `])), t, c, H, i), dt = V(mA || (mA = K([`\n label: wrapper;\n [dir='rtl'] & input {\n text-align:right;\n direction:ltr;\n }\n `])));\n return {\n calendarTrigger: F,\n calendarContainer: q,\n calendarContainerLeft: W,\n calendarContainerRight: X,\n calendarNav: de,\n calendarTable: Ce,\n calendarNavButtonPrev: Se,\n calendarNavButtonNext: Te,\n calendarNavButtonsNotFocusable: Le,\n calendarNavButtonsHidden: Ge,\n calendarCellInRange: ve,\n calendarCellRangeStart: Ae,\n calendarCellRangeEnd: _e,\n calendarDate: He,\n calendarDateNotCurrent: Be,\n calendarDateDisabled: qe,\n calendarDateToday: Ye,\n calendarDateSelected: Xe,\n calendarDueDate: Ve,\n calendarDueDateIconContainer: Je,\n calendarDueDateIcon: Tt,\n calendarDateInRange: Oe,\n calendarDueDateSelected: $e,\n legend: ct,\n legendItem: Dt,\n legendKey: mt,\n dueDateLegendKey: et,\n tableFullWidth: ie,\n wrapperContainer: dt\n };\n}\nvar sfe = 752, ufe = 16, gA = 200, lfe = function(e) {\n var t = e.isCalendarVisible, n = e.label, r = e.children, a = e.calendarTriggerRef, i = e.wrapperContainerRef, o = e.onShowCalendar, s = e.calendarInSheet, u = s === void 0 ? !1 : s, l = gn(), c = wt(function() {\n return w7(l);\n }, [l]), d = ze(!1), p = fn(d, 2), g = p[0], v = p[1], b = Ue(), C = ze(c.calendarContainer), w = fn(C, 2), _ = w[0], x = w[1], S = function() {\n return (\n /* istanbul ignore next */\n window && window.innerWidth < sfe\n );\n }, E = function(Q) {\n new yn(Q.key || Q.keyCode).IS_ESC && o(!1);\n }, N = function(Q) {\n !a.current.contains(Q.target) && !b.current.contains(Q.target) && o(!1);\n }, P = function() {\n o(!1);\n }, H = function(Q) {\n return (\n /* istanbul ignore next */\n Q && Q.current ? Q.current : null\n );\n }, k = function() {\n var Q = H(a), I = Q.getBoundingClientRect(), G = window && window.innerWidth || document.documentElement.clientWidth, $ = window && parseFloat(window.getComputedStyle(document.documentElement).fontSize), z = gA + gA * (($ - ufe) * 0.0625);\n if (i != null && i.current) {\n var B = i.current.getBoundingClientRect();\n I.left - B.left < z ? x(c.calendarContainerRight) : B.right + z > B.width && x(c.calendarContainerLeft);\n } else\n Q && (I.left < z ? x(c.calendarContainerRight) : I.right + z > G && x(c.calendarContainerLeft));\n };\n return Yi(function() {\n x(c.calendarContainer);\n var Q = S();\n if (k(), v(Q), !Q && t) {\n var I, G;\n window.addEventListener(\"resize\", P), document.addEventListener(\"keydown\", E), u || document.addEventListener(\"click\", N), (I = b.current) === null || I === void 0 || (G = I.scrollIntoView) === null || G === void 0 || G.call(I, {\n behavior: \"smooth\",\n block: \"nearest\"\n });\n }\n return function() {\n window.removeEventListener(\"resize\", P), document.removeEventListener(\"keydown\", E), document.removeEventListener(\"click\", N);\n };\n }, [t]), g || u ? ue(ofe, {\n isOpen: t,\n onCloseComplete: function() {\n return o(!1);\n },\n noCloseButton: !0,\n title: n,\n skipFormFocus: !0,\n \"data-ppui\": \"true\"\n }, u && !g ? ue(\"div\", {\n css: c.tableFullWidth,\n \"data-ppui\": \"true\"\n }, r) : r) : t ? ue(\"div\", {\n css: _,\n ref: b,\n \"data-ppui\": \"true\"\n }, r) : null;\n}, cfe = [\"name\", \"label\", \"className\", \"calendar\", \"isCalendarVisible\", \"wrapperContainerRef\", \"onShowCalendar\", \"maskOptions\", \"selectedDate\", \"onSelection\", \"parseDate\", \"formatDate\", \"formatterSkeleton\", \"sheetContainerRef\", \"onComplete\", \"onAccept\", \"calendarInSheet\"];\nfunction vA(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction Hl(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? vA(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : vA(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar bA = {\n mask: \"m`/d`/y\",\n // here backquote ` is needed to prevent characters shifting back on edit. Refer https://github.com/uNmAnNeR/imaskjs/issues/89\n lazy: !1,\n blocks: {\n d: {\n mask: Cg.Range,\n from: 1,\n to: 31,\n maxLength: 2,\n placeholderChar: \"D\"\n },\n m: {\n mask: Cg.Range,\n from: 1,\n to: 12,\n maxLength: 2,\n placeholderChar: \"M\"\n },\n y: {\n mask: Cg.Range,\n from: 1900,\n to: 2999,\n maxLength: 4,\n placeholderChar: \"Y\"\n }\n }\n}, T7 = Intl.DateTimeFormat().resolvedOptions().timeZone;\nfunction dfe(e) {\n if (!e)\n return null;\n var t = e.split(\"/\"), n = Number(t[0]), r = Number(t[1]), a = Number(t[2]);\n return new Date(a, n - 1, r);\n}\nfunction ffe(e) {\n return e ? new Intl.DateTimeFormat(\"en-US\", {\n month: \"2-digit\",\n day: \"2-digit\",\n year: \"numeric\"\n }).format(e) : \"\";\n}\nfunction pfe(e, t, n) {\n if (!(e && e.dateTimeFormatter))\n return Hl(Hl({}, bA), n);\n var r = e.dateTimeFormatter({\n style: t,\n timeZone: T7\n }), a = r.formatToParts(/* @__PURE__ */ new Date()), i = a.map(function(o) {\n var s = o.type, u = o.value;\n switch (s) {\n case \"month\":\n return \"m\";\n case \"day\":\n return \"d\";\n case \"year\":\n return \"y\";\n default:\n var l = u.replace(/[^\\x00-\\x7F]/g, \"\");\n return \"`\".concat(l);\n }\n }).join(\"\");\n return Hl(Hl(Hl({}, bA), n), {}, {\n mask: i\n });\n}\nfunction hfe(e, t, n, r) {\n if (!(e && e.dateTimeFormatter))\n return {\n _formatDate: n || ffe,\n _parseDate: r || dfe\n };\n var a = e.dateTimeFormatter({\n style: t,\n timeZone: T7\n });\n return {\n _formatDate: n || function(o) {\n return o ? a.format(o) : \"\";\n },\n _parseDate: r || function(o) {\n return o && a.parse(o);\n }\n };\n}\nvar mfe = Lt(function(e, t) {\n var n = e.name, r = e.label, a = e.className, i = e.calendar, o = e.isCalendarVisible, s = e.wrapperContainerRef, u = e.onShowCalendar, l = e.maskOptions, c = e.selectedDate, d = e.onSelection, p = e.parseDate, g = e.formatDate, v = e.formatterSkeleton, b = v === void 0 ? \"yyyyMMdd\" : v, C = e.sheetContainerRef, w = e.onComplete, _ = e.onAccept, x = e.calendarInSheet, S = Qt(e, cfe);\n c || console.warn(\"Required prop `selectedDate` is missing.\"), d || (d = function() {\n return console.warn(\"Required prop `onSelection` is missing\");\n });\n var E = gn(), N = wt(function() {\n return w7(E);\n }, [E]), P = Ze(rl), H = Ue(), k = Ue(), Q = t || k, I = Ue(), G = wt(function() {\n return pfe(P, b, l);\n }, [b, l]), $ = wt(function() {\n return hfe(P, b, g, p);\n }, [g, p]), z = $._formatDate, B = $._parseDate, O = function(F, L, q) {\n L !== I.current && d(B(F)), w && w(F, L, q);\n }, D = function(F, L, q) {\n L || d(null), _ && _(F, L, q);\n }, T = i && ue(vt.Fragment, null, ue(IF, {\n size: \"sm\",\n onMouseDown: function(L) {\n return L.preventDefault();\n },\n onClick: function() {\n var L = Q.current;\n L.focus(), u(!o);\n },\n svgElementRef: H,\n color: \"sysColorBackgroundMediumContrast\",\n css: N.calendarTrigger,\n \"aria-hidden\": \"true\",\n \"data-ppui\": \"true\"\n }), ue(lfe, {\n isCalendarVisible: o,\n onShowCalendar: u,\n label: r,\n sheetContainerRef: C,\n wrapperContainerRef: s,\n calendarTriggerRef: H,\n calendarInSheet: x,\n \"data-ppui\": \"true\"\n }, i)), j = z(c).replace(/\\D/g, \"\");\n return I.current = j, ue(ys, {\n \"data-ppui\": \"true\"\n }, function(F) {\n var L = F.cx, q = F.css;\n return ue(hh, bt({\n name: n,\n label: r,\n rightIcon: T,\n maskOptions: G,\n className: L(q(N.wrapperContainer), a),\n inputMode: \"numeric\",\n \"data-ppui-info\": \"date-input_3.5.1\"\n }, S, {\n onComplete: O,\n onAccept: D,\n value: j,\n ref: Q\n }));\n });\n}), yA;\n(function(e) {\n e.START = \"start\", e.END = \"end\";\n})(yA || (yA = {}));\nconst A7 = \"DateInput\", gfe = new ke(A7), vfe = null, N7 = Lt(\n ({ onChange: e, name: t, ...n }, r) => {\n const [a, i] = ze(vfe), o = Ue(null);\n We(() => {\n typeof r == \"function\" ? r(o.current) : r && (r.current = o.current);\n }, [r]);\n const s = (u) => {\n i(u), typeof e == \"function\" && e({\n type: \"change\",\n target: {\n name: t,\n value: u.toLocaleDateString(),\n type: \"text\"\n }\n });\n };\n return /* @__PURE__ */ h.jsx(\n mfe,\n {\n ...n,\n name: t,\n selectedDate: a,\n onSelection: s,\n ref: o,\n className: gfe.getComponentClassName()\n }\n );\n }\n);\nN7.displayName = A7;\nvar CA, xA, SA, _A, EA, wA, TA, AA, NA, OA, LA, kA;\nfunction bfe(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysMotionDurationHover, n = e.sysSizeIconSm, r = e.sysSizeFieldLg, a = e.sysColorBackgroundSurface, i = e.sysBorderThicknessNormal, o = e.sysBorderRadiusSm, s = e.sysColorStructureBorderHighContrast, u = e.sysSpaceTiny, l = e.sysSpaceXs, c = e.sysSpaceSm, d = e.sysSpaceMd, p = e.sysColorBackgroundMediumContrast, g = e.sysTypographyFieldLabelLgLineHeight, v = e.sysTypographyFieldLabelSmLineHeight, b = e.sysBorderThicknessEmphasis, C = xr(e), w = C.focusStyles, _ = C.ellipsis, x = w.offsetFocusAfter, S = w.stateErrorFocusBorderColorInner, E = w.stateErrorFocusBorderColorOuter, N = Fr(e), P = N.fieldLabelLg, H = N.fieldValueSm, k = N.fieldLabelSm, Q = N.caption, I = V(CA || (CA = K([`\n label: dropdown_menu_base;\n position: relative;\n text-align: start;\n `]))), G = V(xA || (xA = K([`\n label: dropdown_menu_label;\n pointer-events: none; // Better way to fix the cursor: text issue!\n position: absolute;\n `, `\n transition: font-size `, \" ease-in-out, top \", \" ease-in-out, background-color \", ` linear;\n left: `, `;\n top: `, `;\n `, `\n right: `, `;\n\n [dir='rtl'] & {\n right: `, `;\n left: `, `;\n }\n `])), P(), t, t, t, d, De(\"(\".concat(r, \" - \").concat(g, \") / 2\")), _, De(\"\".concat(d, \" + \").concat(n)), d, De(\"\".concat(d, \" + \").concat(n))), $ = V(SA || (SA = K([`\n label: active;\n outline: none;\n &:after {\n `, `\n }\n `])), x({\n height: r,\n horizontalOffset: \"0rem\",\n verticalOffset: \"0rem\"\n })), z = V(_A || (_A = K([`\n label: dropdown_menu_button;\n `, `;\n box-sizing: border-box;\n height: `, `;\n width: 100%;\n border: `, ` solid\n `, `;\n border-radius: `, `;\n background-color: `, `;\n padding-top: `, `;\n padding-right: `, `;\n padding-left: `, `;\n padding-bottom: `, `;\n cursor: pointer;\n text-align: start;\n `, `\n\n &:focus {\n `, `\n }\n\n [dir='rtl'] & {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), H(), r, i, s, o, a, De(\"\".concat(c, \" + \").concat(u, \" + \").concat(v, \" - \").concat(i)), De(\"\".concat(d, \" + \").concat(n, \" - \").concat(i)), De(\"\".concat(d, \" - \").concat(i)), De(\"\".concat(d, \" - \").concat(i)), _, $, De(\"\".concat(d, \" + \").concat(n, \" - \").concat(i)), De(\"\".concat(d, \" - \").concat(i))), B = V(EA || (EA = K([`\n label: active;\n &:after {\n `, `\n }\n `])), x({\n height: r,\n horizontalOffset: \"0rem\",\n verticalOffset: \"0rem\",\n borderColor: S,\n boxShadowColor: E\n })), O = V(wA || (wA = K([`\n label: error;\n border: `, ` solid\n `, `;\n padding-top: `, `;\n padding-right: `, `;\n padding-left: `, `;\n padding-bottom: `, `;\n\n &:focus {\n `, `\n }\n\n [dir='rtl'] & {\n padding-left: `, `;\n padding-right: `, `;\n }\n `])), b, S, De(\"\".concat(c, \" + \").concat(u, \" + \").concat(v, \" - \").concat(b)), De(\"\".concat(d, \" + \").concat(n, \" - \").concat(b)), De(\"\".concat(d, \" - \").concat(b)), De(\"\".concat(d, \" - \").concat(b)), B, De(\"\".concat(d, \" + \").concat(n, \" - \").concat(b)), De(\"\".concat(d, \" - \").concat(b))), D = V(TA || (TA = K([`\n label: active;\n `, `\n top: `, `;\n `])), k(), c), T = V(AA || (AA = K([`\n label: dropdown_menu_affordance_icon;\n pointer-events: none;\n position: absolute;\n top: `, `;\n right: `, `;\n margin-left: `, `;\n\n [dir='rtl'] & {\n margin-right: `, `;\n left: `, `;\n right: auto;\n }\n `])), De(\"\".concat(c, \" + \").concat(d)), De(\"\".concat(c, \" + \").concat(d)), d, d, c), j = V(NA || (NA = K([`\n label: dropdown_menu_helper_text;\n `, `\n margin-top: `, `;\n list-style: none; // In case it's a list of helper texts\n `])), Q({\n color: p\n }), l), F = V(OA || (OA = K([`\n label: dropdown_menu_error_text;\n `, `\n display: flex;\n margin-top: `, `;\n align-items: center;\n `])), Q({\n color: p\n }), l), L = V(LA || (LA = K([`\n label: dropdown_menu_error_icon;\n color: `, `;\n margin-right: `, `;\n\n [dir='rtl'] & {\n margin-left: `, `;\n margin-right: 0;\n }\n `])), S, l, l), q = V(kA || (kA = K([`\n label: dropdown_menu_select;\n opacity: 0;\n position: absolute;\n pointer-events: none;\n width: 0;\n height: 0;\n `])));\n return {\n base: I,\n label: G,\n button: z,\n buttonError: O,\n buttonActive: $,\n buttonErrorActive: B,\n affordanceIcon: T,\n labelActive: D,\n helperText: j,\n errorText: F,\n errorIcon: L,\n selectBox: q\n };\n}\nvar yfe = [\"className\", \"menuContainerClassName\", \"menuListClassName\", \"menuItemClassName\", \"menuMobileHeaderClassName\", \"menuButtonClassName\", \"menuLabelClassName\", \"skipButtonFocus\", \"sheetClassName\", \"sheetWrapperClassName\", \"id\", \"label\", \"name\", \"errorText\", \"errorIconAriaLabel\", \"helperText\", \"value\", \"options\", \"ariaLabelledby\", \"renderButtonContent\", \"onChange\", \"onClose\", \"onClick\", \"onKeyDown\", \"isLoadingOptions\", \"showUnselect\"];\nfunction IA(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction Rg(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? IA(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : IA(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar DA = function(e) {\n return (\n /* istanbul ignore next */\n e && e.current ? e.current : null\n );\n}, Cfe = function(e, t, n, r, a) {\n if (e) {\n var i = {\n css: a.errorIcon,\n role: \"img\",\n \"aria-label\": t\n }, o = ue(Zi, bt({\n size: \"sm\"\n }, i, {\n \"data-ppui\": \"true\"\n }));\n return ue(\"div\", {\n css: a.errorText,\n id: r,\n \"data-ppui\": \"true\"\n }, o, ue(\"span\", {\n \"data-ppui\": \"true\"\n }, e));\n }\n return n ? ue(\"div\", {\n css: a.helperText,\n id: r,\n \"data-ppui\": \"true\"\n }, ue(\"span\", {\n \"data-ppui\": \"true\"\n }, n)) : null;\n}, xfe = function(e) {\n return !e.altKey && !e.ctrlKey && !e.shiftKey && !e.metaKey;\n}, O7 = Lt(\n // eslint-disable-next-line complexity\n function(e, t) {\n var n = e.className, r = e.menuContainerClassName, a = e.menuListClassName, i = e.menuItemClassName, o = e.menuMobileHeaderClassName, s = e.menuButtonClassName, u = e.menuLabelClassName, l = e.skipButtonFocus, c = l === void 0 ? !1 : l, d = e.sheetClassName, p = e.sheetWrapperClassName, g = e.id, v = e.label, b = v === void 0 ? \"Label\" : v, C = e.name, w = e.errorText, _ = e.errorIconAriaLabel, x = _ === void 0 ? \"Error\" : _, S = e.helperText, E = e.value, N = e.options, P = N === void 0 ? [] : N, H = e.ariaLabelledby, k = e.renderButtonContent, Q = e.onChange, I = e.onClose, G = e.onClick, $ = e.onKeyDown, z = e.isLoadingOptions, B = e.showUnselect, O = Qt(e, yfe), D = gn(), T = wt(function() {\n return bfe(D);\n }, [D]), j = g ? \"dropdownMenuButton_\".concat(g) : \"dropdownMenuButton_\".concat(b.replace(/\\s/g, \"\")), F = Ue(), L = t ?? F, q = g ? \"dropdownMenuSelect_\".concat(g) : \"dropdownMenuSelect_\".concat(b.replace(/\\s/g, \"\")), W = ze(!1), X = fn(W, 2), de = X[0], Se = X[1], Te = ze(!!E), Le = fn(Te, 2), Ge = Le[0], Ne = Le[1], ie = ze(!1), Ce = fn(ie, 2), ve = Ce[0], Ae = Ce[1];\n We(function() {\n var mt, et = DA(L), dt = et && ((mt = window) === null || mt === void 0 ? void 0 : mt.getComputedStyle(et));\n Ae((dt == null ? void 0 : dt.direction) === \"rtl\");\n });\n var _e = function(mt) {\n Se(function(et) {\n return !et;\n }), Ne(!mt.detail);\n }, He = function(mt) {\n Se(!1);\n var et = DA(L);\n et && (c ? et.blur() : et.focus());\n var dt;\n if (Q) {\n var Fe = P.length > 0 && mt >= 0;\n dt = Fe ? P[mt].value || P[mt].primaryText : null, B && (dt = Fe ? P[mt].value : null);\n var Ot = {\n target: {\n selectedIndex: mt,\n value: dt\n }\n };\n Q(Ot);\n }\n }, Oe = S && \"dropdown_helperText\" || w && \"dropdown_errorText\", Be = \"\", qe = \"\", Ye = -1;\n if (E) {\n for (var Xe = 0; Xe < P.length; Xe++)\n if (P[Xe].value === E) {\n k ? Be = k() : Be = P[Xe].primaryText, qe = P[Xe].value, Ye = Xe;\n break;\n }\n } else\n !E && P.length > 0 && P[0].value === \"\" && (Ye = 0);\n var Ve = de ? wv : Tv, $e = ue(Ve, {\n size: \"sm\",\n css: T.affordanceIcon,\n color: \"BackgroundMediumContrast\",\n \"aria-hidden\": \"true\",\n \"data-ppui\": \"true\"\n }), Je = H ? \"\".concat(j, \"-label \").concat(H) : \"\".concat(j, \"-label\");\n Be && (Je = \"\".concat(Je, \" \").concat(j));\n var Tt = Rg(Rg(Rg({}, Oe && {\n \"aria-describedby\": Oe\n }), {\n \"aria-labelledby\": Je\n }), O), ct = [T.button, de && T.buttonActive, w && T.buttonError, w && de && T.buttonErrorActive], Dt = [T.label, (de || Be) && T.labelActive];\n return ue(\"div\", {\n className: n,\n css: T.base,\n id: g,\n \"data-ppui-info\": \"dropdown-menu_3.4.4\"\n }, ue(\"select\", {\n css: T.selectBox,\n \"aria-hidden\": \"true\",\n id: q,\n name: C,\n tabIndex: -1,\n onChange: function(mt) {\n return He(mt.target.selectedIndex - 1);\n },\n value: qe,\n \"data-ppui\": \"true\"\n }, ue(\"option\", {\n disabled: !0,\n value: \"\",\n \"data-ppui\": \"true\"\n }, b), P.length > 0 && P.map(function(mt, et) {\n return ue(\"option\", {\n key: et,\n value: mt.value ? mt.value : mt.primaryText,\n \"data-ppui\": \"true\"\n }, mt.primaryText);\n })), ue(\"button\", bt({\n className: s,\n css: ct,\n type: \"button\",\n id: j,\n ref: L,\n \"aria-haspopup\": \"listbox\",\n \"aria-expanded\": de,\n onClick: function(et) {\n _e(et), G && G(et);\n },\n onKeyDown: function(et) {\n var dt = new yn(et.key || et.keyCode);\n !de && (dt.IS_ARROW_UP || dt.IS_ARROW_DOWN) && xfe(et) && (et.preventDefault(), _e(et)), $ && $(et);\n }\n }, Tt, {\n \"data-ppui\": \"true\"\n }), $e, ue(\"span\", {\n \"data-ppui\": \"true\"\n }, Be)), ue(\"label\", {\n id: \"\".concat(j, \"-label\"),\n htmlFor: j,\n css: Dt,\n className: u,\n \"data-ppui\": \"true\"\n }, ue(\"span\", {\n \"data-ppui\": \"true\"\n }, b)), ue(BD, {\n initialItemFocus: Ge,\n isOpen: de,\n mobileTitle: b,\n onClose: function(et) {\n Se(!1), I && I(et);\n },\n onSelection: He,\n selectedIndex: Ye,\n triggerElementRef: L,\n options: P,\n className: a,\n containerClassName: r,\n itemClassName: i,\n mobileHeaderClassName: o,\n sheetClassName: d,\n sheetWrapperClassName: p,\n rtl: ve,\n returnFocusToTrigger: !c,\n isLoadingOptions: z,\n searchEnabled: !0,\n \"data-ppui\": \"true\"\n }), Cfe(w, x, S, Oe, T));\n }\n);\nconst L7 = \"DropdownMenu\", Sfe = new ke(L7), k7 = Lt(\n ({ onChange: e, value: t, name: n, ...r }, a) => {\n const i = Ue(null), [o, s] = ze(t ?? \"\");\n Yi(() => {\n const l = document.querySelector(\n `select[name=\"${n}\"]`\n );\n l == null || l.setAttribute(\"autocomplete\", \"off\");\n }, [n]), We(() => {\n typeof a == \"function\" ? a(i.current) : a && (a.current = i.current);\n }, [a]);\n const u = (l) => {\n s(l.target.value), typeof e == \"function\" && e({\n ...l,\n type: \"change\",\n target: {\n ...l.target,\n name: n,\n type: \"select\"\n }\n });\n };\n return We(() => {\n t && typeof e == \"function\" && e({\n type: \"change\",\n target: {\n name: n,\n type: \"select\",\n value: t\n }\n });\n }, [t, n, e]), /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"input\", { name: n, type: \"hidden\" }),\n /* @__PURE__ */ h.jsx(\n O7,\n {\n className: Sfe.getComponentClassName(),\n name: n,\n value: o,\n onChange: u,\n ref: i,\n ...r\n }\n )\n ] });\n }\n);\nk7.displayName = L7;\nconst I7 = \"LegalConsent\", Rc = new ke(I7), _fe = (e) => e ? /* @__PURE__ */ h.jsx(\n an,\n {\n className: Rc.getElementClassName(\"label\"),\n as: \"span\",\n content: e\n }\n) : null, Efe = (e) => /* @__PURE__ */ h.jsxs(\"p\", { className: Rc.getElementClassName(\"error-text\"), children: [\n /* @__PURE__ */ h.jsx(\n Zi,\n {\n className: Rc.getElementClassName(\"error-text-icon\"),\n size: \"sm\",\n role: \"img\"\n }\n ),\n e\n] }), wfe = (e) => e ? /* @__PURE__ */ h.jsx(\n an,\n {\n className: Rc.getElementClassName(\"supporting-text\"),\n as: \"p\",\n content: e\n }\n) : null, D7 = Lt(\n ({ supportingText: e, label: t, errorText: n, error: r, ...a }, i) => /* @__PURE__ */ h.jsxs(\"div\", { className: Rc.getComponentClassName(), children: [\n t && /* @__PURE__ */ h.jsx(\n Dh,\n {\n autoComplete: \"off\",\n ref: i,\n label: _fe(t),\n error: r || !!n,\n ...a\n }\n ),\n e && wfe(e),\n n && Efe(n)\n ] })\n);\nD7.displayName = I7;\nconst P7 = \"NumericInput\", PA = new ke(P7), M7 = Lt(\n ({ hideSpinButton: e = !1, ...t }, n) => {\n const r = se(PA.getComponentClassName(), {\n [PA.getElementClassName(\"hideSpinButton\")]: e\n });\n return /* @__PURE__ */ h.jsx(\n zu,\n {\n ...t,\n type: \"number\",\n inputMode: \"numeric\",\n ref: n,\n className: r\n }\n );\n }\n);\nM7.displayName = P7;\nvar MA, RA, BA, FA, jA, $A, HA, VA, zA, qA, GA;\nfunction a2(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysBorderRadiusSm, n = e.sysBorderThicknessNormal, r = e.sysSizeTapTargetDefault, a = e.sysSpaceMd, i = e.sysSpaceSm, o = e.sysSpaceXs, s = e.sysSizeMediaXs, u = \"8.813rem\", l = V(MA || (MA = K([`\n label: phone_input_base;\n flex-grow: 1;\n `]))), c = V(RA || (RA = K([`\n input[type='tel'] {\n label: tel_input_rtl;\n direction: ltr;\n text-align: right;\n }\n `]))), d = V(BA || (BA = K([`\n label: combined;\n display: flex;\n gap: `, `;\n [dir='rtl'] & {\n direction: ltr;\n }\n @media screen and (max-width: `, `) {\n display: block;\n }\n `])), i, s), p = V(FA || (FA = K([`\n label: width;\n min-width: `, `;\n @media screen and (max-width: `, `) {\n margin-bottom: `, `;\n }\n @media screen and (min-width: `, `) {\n max-width: `, `;\n }\n `])), u, s, i, De(\"\".concat(s, \" + \").concat(\"0.0625rem\")), u), g = V(jA || (jA = K([`\n label: menu;\n flex-grow: 1;\n [dir='rtl'] & {\n direction: rtl;\n }\n `]))), v = V($A || ($A = K([`\n label: thumbnail;\n margin-right: `, `;\n [dir='rtl'] & {\n margin-right: 0;\n margin-left: `, `;\n }\n `])), i, i), b = V(HA || (HA = K([`\n label: menu_list;\n white-space: nowrap;\n `]))), C = V(VA || (VA = K([`\n label: menu_button;\n flex-grow: 1;\n &:not(:empty) {\n padding-bottom: `, `;\n padding-right: `, `;\n }\n & > span {\n pointer-events: none;\n }\n [dir='rtl'] & {\n border-radius: `, `;\n margin-left: 0;\n margin-right: 0;\n &:not(:empty) {\n padding-left: `, `;\n padding-right: `, `;\n }\n }\n `])), i, De(\"\".concat(r, \" + \").concat(o)), t, De(\"\".concat(r, \" + \").concat(o)), De(\"\".concat(a, \" - \").concat(n))), w = V(zA || (zA = K([`\n label: menu_button_content;\n display: flex;\n `]))), _ = V(qA || (qA = K([`\n label: affordance;\n margin-left: 0;\n [dir='rtl'] & {\n margin-right: 0;\n }\n `]))), x = V(GA || (GA = K([`\n label: container;\n [dir='rtl'] & {\n left:0;\n }\n `])));\n return {\n base: l,\n combined: d,\n menu: g,\n thumbnail: v,\n menuList: b,\n menuButton: C,\n menuButtonContent: w,\n affordance: _,\n telephoneInputRtlStyles: c,\n menuWidth: p,\n menuContainer: x\n };\n}\nvar Tfe = [\"AT\", \"AX\", \"BD\", \"BG\", \"CD\", \"CN\", \"CU\", \"CW\", \"DE\", \"DZ\", \"EG\", \"FI\", \"GB\", \"HR\", \"ID\", \"IE\", \"IL\", \"IQ\", \"IR\", \"IT\", \"KE\", \"KH\", \"KI\", \"KP\", \"KR\", \"LB\", \"LR\", \"LU\", \"MM\", \"MN\", \"MU\", \"MW\", \"MY\", \"NA\", \"NG\", \"PG\", \"PH\", \"PK\", \"PL\", \"PY\", \"RO\", \"RS\", \"RW\", \"SE\", \"SH\", \"SK\", \"SO\", \"SR\", \"SY\", \"TK\", \"TW\", \"VA\", \"WS\", \"YE\", \"ZW\"], Afe = [\"AD\", \"AR\", \"AT\", \"AX\", \"BA\", \"BG\", \"BR\", \"CD\", \"CW\", \"DE\", \"EE\", \"FI\", \"GA\", \"HR\", \"ID\", \"IS\", \"IT\", \"KH\", \"KR\", \"LB\", \"LI\", \"LR\", \"MC\", \"MM\", \"MX\", \"MY\", \"NZ\", \"PA\", \"PN\", \"RS\", \"SB\", \"SO\", \"TK\", \"TV\", \"VA\", \"WS\", \"XK\", \"ZA\"], qf = \"00000000000000000000\";\nfunction R7(e, t, n, r) {\n var a = arguments.length > 4 && arguments[4] !== void 0 ? arguments[4] : null, i = arguments.length > 5 && arguments[5] !== void 0 ? arguments[5] : \"\", o = arguments.length > 6 && arguments[6] !== void 0 ? arguments[6] : !0;\n if (a && i)\n return {\n countryCode: a,\n pattern: i\n };\n if (t && e && e.phoneFormatter) {\n var s = r ? \"MOBILE\" : \"FIXED_LINE\", u = e.exampleGenerator({\n feature: \"phone\",\n region: t,\n type: s\n }), l = u.generate(), c = l.countryCode, d = l.nationalNumber, p = qf;\n if (o) {\n var g = e.phoneFormatter({\n phoneRegion: t,\n style: n\n }), v = g.format({\n countryCode: c,\n nationalNumber: d\n }), b = v;\n v.includes(\"+\") && (b = v.split(\"+\".concat(c))[1].trim()), p = b.replace(/\\d/g, \"0\");\n var C = r ? Afe : Tfe;\n if (C.includes(t)) {\n var w = p.match(/0/g).length, _ = \"0\".repeat(20 - w);\n p = p + \"[\".concat(_, \"]\");\n }\n }\n return {\n countryCode: c,\n pattern: p\n };\n }\n return {\n countryCode: a || \"\",\n pattern: i || qf\n };\n}\nvar Nfe = [\"rtl\", \"countryOptions\", \"options\", \"flagId\", \"codeId\", \"value\"], Ofe = function(e) {\n var t = e.rtl, n = e.countryOptions, r = e.options, a = e.flagId, i = e.codeId, o = e.value, s = Qt(e, Nfe), u = gn(), l = wt(function() {\n return a2(u);\n }, [u]);\n return ue(O7, bt({\n renderButtonContent: function() {\n var d;\n if (o && r) {\n var p = r.findIndex(function(v) {\n return v.value === o;\n });\n d = n[p];\n }\n var g = \"\";\n return d && d.countryPhoneCode && (t ? g = \"\".concat(d.countryPhoneCode, \"+\") : g = \"+\".concat(d.countryPhoneCode)), d && d.phoneRegion ? ue(\"span\", {\n css: l.menuButtonContent,\n \"data-ppui\": \"true\"\n }, ue(\"span\", {\n css: l.thumbnail,\n \"data-ppui\": \"true\"\n }, ue(mh, {\n id: a,\n countryCode: d.phoneRegion,\n size: \"md\",\n \"aria-label\": d.countryName,\n role: \"img\",\n \"data-ppui\": \"true\"\n })), ue(\"span\", {\n id: i,\n \"data-ppui\": \"true\"\n }, g)) : ue(vt.Fragment, null, g);\n },\n options: r,\n value: o\n }, s, {\n \"data-ppui\": \"true\"\n }));\n}, Lfe = [\"name\", \"countryOptions\", \"inputLabel\", \"menuLabel\", \"menuId\", \"className\", \"inputClassName\", \"menuClassName\", \"mobile\", \"onPhoneCodeChange\", \"phoneCode\", \"showUnselect\", \"unselectLabel\"], kfe = Lt(function(e, t) {\n var n = e.name, r = n === void 0 ? \"phoneInputMenu\" : n, a = e.countryOptions, i = a === void 0 ? [] : a, o = e.inputLabel, s = o === void 0 ? \"Phone Number\" : o, u = e.menuLabel, l = u === void 0 ? \"Code\" : u, c = e.menuId, d = e.className, p = e.inputClassName, g = e.menuClassName, v = e.mobile, b = v === void 0 ? !1 : v, C = e.onPhoneCodeChange, w = e.phoneCode, _ = e.showUnselect, x = _ === void 0 ? !1 : _, S = e.unselectLabel, E = S === void 0 ? \"None\" : S, N = Qt(e, Lfe);\n i.length || console.warn(\"Required prop `countryOptions` is missing.\");\n var P = gn(), H = wt(function() {\n return a2(P);\n }, [P]), k = ze(!1), Q = fn(k, 2), I = Q[0], G = Q[1], $ = Ze(rl), z = sr(function(Oe) {\n if (Oe !== null && window && window.getComputedStyle(Oe)) {\n var Be = window.getComputedStyle(Oe);\n G(Be && Be.direction === \"rtl\");\n }\n }, [$ == null ? void 0 : $.locale]), B, O, D, T, j, F, L = ze(!1), q = fn(L, 2), W = q[0], X = q[1], de = function(Oe, Be, qe, Ye) {\n B = Oe, Be && (B += Ye ? \" \".concat(Be, \"+\") : \" +\".concat(Be));\n var Xe = qe && Be ? \"\".concat(qe, \"_\").concat(Be) : \"\";\n return {\n primaryText: B,\n value: Xe,\n decoration: qe && ue(mh, {\n countryCode: qe,\n size: \"md\",\n \"data-ppui\": \"true\"\n })\n };\n };\n i[0] && i[0].phoneRegion === \"\" && i.splice(0, 1), x && i.unshift({\n phoneRegion: \"\",\n countryName: E,\n phoneFormat: qf\n }), F = wt(function() {\n return i.map(function(Oe, Be) {\n var qe = R7($, Oe.phoneRegion, \"international\", b, Oe.countryPhoneCode, Oe.phoneFormat, Oe.isPhoneMetaDataLoaded), Ye = $ && $.getDisplayNamesObject && $.getDisplayNamesObject({\n type: \"region\"\n }), Xe = qe.countryCode, Ve = qe.pattern;\n return T = Oe.phoneRegion, O = Oe.countryPhoneCode || Xe, D = Oe.phoneFormat || Ve, j = Oe.countryName || Ye && Ye.select(Oe.phoneRegion), i[Be].countryPhoneCode = O, i[Be].phoneFormat = D, i[Be].countryName = j, de(j, O, T, I);\n });\n }, [i, b]);\n var Se = qf, Te = i.filter(function(Oe) {\n var Be = Oe.phoneRegion && Oe.countryPhoneCode ? \"\".concat(Oe.phoneRegion, \"_\").concat(Oe.countryPhoneCode) : \"\";\n return w === Be;\n });\n Te.length && (Se = Te[0].phoneFormat);\n var Le = function(Oe) {\n if (C) {\n var Be, qe;\n C(Oe), ((Be = Oe.target) === null || Be === void 0 || (qe = Be.value) === null || qe === void 0 ? void 0 : qe.length) === 0 && x || X(!0);\n }\n }, Ge = \"phone-input-country-flag_\", Ne = \"phone-input-country-code_\", ie = c ? \"\".concat(Ge).concat(c) : Za(Ge), Ce = c ? \"\".concat(Ne).concat(c) : Za(Ne), ve = [H.menu, H.menuWidth], Ae = ue(ys, {\n \"data-ppui\": \"true\"\n }, function(Oe) {\n var Be = Oe.css;\n return ue(Ofe, {\n id: c,\n label: l,\n options: F,\n countryOptions: i,\n value: w,\n onChange: Le,\n css: ve,\n className: g,\n menuContainerClassName: Be(H.menuContainer),\n menuListClassName: Be(H.menuList),\n menuButtonClassName: Be(H.menuButton),\n sheetClassName: Be(H.menuList),\n rtl: I,\n showUnselect: !0,\n flagId: ie,\n codeId: Ce,\n \"data-ppui\": \"true\"\n });\n }), _e = ue(ys, {\n \"data-ppui\": \"true\"\n }, function(Oe) {\n var Be = Oe.cx;\n return ue(hh, bt({\n type: \"tel\",\n name: r,\n label: s,\n maskOptions: {\n mask: Se\n },\n css: H.menu,\n inputClassName: Be(p),\n setFocus: W,\n ref: t,\n onBlur: function() {\n return X(!1);\n },\n \"aria-describedby\": \"\".concat(ie, \" \").concat(Ce)\n }, N, {\n \"data-ppui\": \"true\"\n }));\n }), He = [\n H.combined,\n //istanbul ignore next\n I && H.telephoneInputRtlStyles\n ];\n return ue(\"div\", {\n ref: z,\n css: H.base,\n className: d,\n \"data-ppui-info\": \"phone-input_2.5.1\"\n }, ue(\"div\", {\n css: He,\n \"data-ppui\": \"true\"\n }, Ae, _e));\n}), Ife = [\"name\", \"label\", \"countryOptions\", \"className\", \"inputClassName\", \"formatType\", \"mobile\"], Dfe = Lt(function(e, t) {\n var n = e.name, r = n === void 0 ? \"\" : n, a = e.label, i = a === void 0 ? \"Phone Number\" : a, o = e.countryOptions, s = e.className, u = e.inputClassName, l = e.formatType, c = l === void 0 ? o != null && o.countryPhoneCode ? \"international\" : \"national\" : l, d = e.mobile, p = d === void 0 ? !1 : d, g = Qt(e, Ife);\n o || console.warn(\"Required prop `countryOptions` is missing.\");\n var v = gn(), b = wt(function() {\n return a2(v);\n }, [v]), C = ze(!1), w = fn(C, 2), _ = w[0], x = w[1], S = Ze(rl), E = sr(function(I) {\n if (I !== null && window && window.getComputedStyle(I)) {\n var G = window.getComputedStyle(I);\n x(G && G.direction === \"rtl\");\n }\n }, [S == null ? void 0 : S.locale]), N = wt(function() {\n return R7(S, o == null ? void 0 : o.phoneRegion, c, p, o == null ? void 0 : o.countryPhoneCode, o == null ? void 0 : o.phoneFormat, o == null ? void 0 : o.isPhoneMetaDataLoaded);\n }, [o == null ? void 0 : o.phoneRegion, c, p]), P = N.countryCode, H = N.pattern, k = c === \"international\" ? P : \"\", Q = k;\n return c === \"international\" && (k = _ ? \"\" : \"+\".concat(k), Q = _ ? \"\".concat(Q, \"+\") : \"\"), ue(\"div\", {\n ref: E,\n css: [b.base, _ && b.telephoneInputRtlStyles],\n className: s,\n \"data-ppui-info\": \"phone-input_2.5.1\"\n }, ue(ys, {\n \"data-ppui\": \"true\"\n }, function(I) {\n var G = I.cx;\n return ue(hh, bt({\n type: \"tel\",\n name: \"phoneInput-\".concat(r),\n label: i,\n prefix: k,\n suffix: Q,\n ref: t,\n maskOptions: {\n mask: H\n },\n inputClassName: G(u)\n }, g, {\n \"data-ppui\": \"true\"\n }));\n }));\n});\nconst B7 = \"PhoneInput\", Pfe = new ke(B7), F7 = Lt(\n ({ name: e, ...t }, n) => {\n const r = Ue(null);\n return Yi(() => {\n const a = `phoneInput-${e}`, i = document.querySelector(\n `input[name=\"${a}\"]`\n );\n i && (i.setAttribute(\"name\", e), r.current = i);\n }, [e]), /* @__PURE__ */ h.jsx(\n Dfe,\n {\n ...t,\n name: e,\n ref: n,\n className: Pfe.getComponentClassName()\n }\n );\n }\n);\nF7.displayName = B7;\nconst j7 = \"PhoneInputWithMenu\", Mfe = new ke(j7), $7 = Lt((e, t) => /* @__PURE__ */ h.jsx(\n kfe,\n {\n ...e,\n ref: t,\n className: Mfe.getComponentClassName()\n }\n));\n$7.displayName = j7;\nvar UA, WA, KA, YA, XA, ZA, QA, JA, eN, tN, nN, rN, aN, iN, oN, sN;\nfunction H7(e) {\n if (!Object.keys(e).length)\n return console.warn(\"Missing Emotion theme. Use ThemeProvider from @emotion/react to pass a valid theme from pp-react.\"), {};\n var t = e.sysBorderRadiusInteractive, n = e.sysBorderThicknessEmphasis, r = e.sysBorderThicknessNormal, a = e.sysColorBackgroundMediumContrast, i = e.sysColorBackgroundSurface, o = e.sysColorBackgroundSurfaceActive, s = e.sysColorErrorMain, u = e.sysColorSelectedMain, l = e.sysColorStructureBorderHighContrast, c = e.sysSizeCircleXs, d = e.sysSpaceMd, p = e.sysSpaceXl, g = e.sysSpaceXs, v = De(\"\".concat(p, \" + \").concat(d)), b = Fr(e), C = b.caption, w = b.fieldLabelLg, _ = b.fieldValueSm, x = xr(e), S = x.focusStyles, E = S.focusAfter, N = S.stateErrorFocusBorderColorInner, P = S.stateErrorFocusBorderColorOuter, H = S.stateFocusBorderWidthInner, k = V(UA || (UA = K([`\n label: radio_group_base;\n display: flex; // to avoid collapsing margins\n flex-direction: column;\n margin: 0;\n padding: 0;\n border: none;\n text-align: left;\n\n [dir='rtl'] & {\n text-align: right;\n }\n `]))), Q = V(WA || (WA = K([`\n label: radio_base;\n position: relative;\n padding: `, ` 0;\n text-align: left;\n\n [dir='rtl'] & {\n text-align: right;\n }\n `])), d), I = V(KA || (KA = K([`\n label: radio_group_label;\n `, `;\n display: block;\n padding-bottom: `, `;\n margin-bottom: `, `;\n `])), w({\n color: a\n }), d, g), G = V(YA || (YA = K([`\n label: radio_label;\n -moz-osx-font-smoothing: grayscale;\n cursor: pointer;\n display: inline-block;\n padding-left: `, `;\n `, `\n position: relative;\n -webkit-tap-highlight-color: transparent;\n\n [dir='rtl'] & {\n padding-right: `, `;\n padding-left: 0;\n }\n `])), v, _(), v), $ = V(XA || (XA = K([`\n label: check_icon_container;\n border-radius: `, `;\n border: `, ` solid\n `, `;\n height: `, `;\n position: absolute;\n top: 0;\n left: 0;\n width: `, `;\n background-color: `, `;\n\n [dir='rtl'] & {\n right: 0;\n }\n `])), t, r, l, c, c, i), z = V(ZA || (ZA = K([`\n label: error_check_icon_container;\n border: `, \" solid \", `;\n `])), n, s), B = V(QA || (QA = K([`\n label: check_icon;\n display: none;\n `]))), O = V(JA || (JA = K([`\n label: input;\n cursor: pointer;\n opacity: 0;\n position: absolute;\n margin: 0;\n\n &:checked + label > span:first-of-type {\n border-color: `, `;\n background-color: `, `;\n color: `, `;\n\n span:first-of-type {\n display: inline;\n }\n }\n\n &:focus + label:after {\n `, `\n }\n\n &:active:not(:checked) + label > span:first-of-type {\n background: `, `;\n }\n\n [dir='rtl'] & {\n &:focus + label:after {\n left: 0;\n right: -sysBorderThicknessNormal;\n }\n }\n `])), u, u, i, E({\n radius: t,\n width: c,\n height: c\n }), o), D = V(eN || (eN = K([`\n label: input_with_error;\n &:checked + label > span:first-of-type {\n border: `, \" solid \", `;\n }\n\n &:focus + label > span:first-of-type {\n outline: none;\n }\n\n &:focus + label:after {\n `, `\n }\n `])), n, s, E({\n radius: t,\n width: c,\n height: c,\n border: \"\".concat(H, \" solid \").concat(N),\n boxShadowColor: P\n })), T = V(tN || (tN = K([`\n label: centered_label_check_icon_container;\n top: 50%;\n transform: translateY(-50%);\n `]))), j = V(nN || (nN = K([`\n label: centered_label_input;\n &:focus + label:after {\n `, `;\n top: 50%;\n transform: translateY(-50%);\n }\n `])), E({\n radius: t,\n width: c,\n height: c\n })), F = V(rN || (rN = K([`\n label: error_centered_label_input;\n &:focus + label:after {\n `, `;\n top: 50%;\n transform: translateY(-50%);\n }\n `])), E({\n radius: t,\n width: c,\n height: c,\n border: \"\".concat(H, \" solid \").concat(N),\n boxShadowColor: P\n })), L = V(aN || (aN = K([`\n label: helper_text;\n `, `;\n margin: 0;\n list-style: none; // In case it's a list of helper texts\n margin-top: `, `;\n `])), C({\n color: a\n }), g), q = V(iN || (iN = K([`\n label: group_helper_text;\n `, `;\n margin: 0;\n list-style: none; // In case it's a list of helper texts\n `])), C({\n color: a\n })), W = V(oN || (oN = K([`\n label: error_text;\n `, `;\n display: flex;\n margin: 0;\n align-items: center;\n `])), C({\n color: a\n })), X = V(sN || (sN = K([`\n label: error_icon;\n color: `, `;\n margin-right: `, `;\n\n [dir='rtl'] & {\n margin-left: `, `;\n margin-right: 0;\n }\n `])), s, g, g);\n return {\n radioGroupBase: k,\n radioBase: Q,\n radioGroupLabel: I,\n radioLabel: G,\n checkIconContainer: $,\n errorCheckIconContainer: z,\n checkIcon: B,\n input: O,\n inputWithError: D,\n centeredLabelCheckIconContainer: T,\n centeredLabelInput: j,\n errorCenteredLabelInput: F,\n helperText: L,\n groupHelperText: q,\n errorText: W,\n errorIcon: X\n };\n}\nvar Rfe = [\"label\", \"name\", \"value\", \"id\", \"centeredLabel\", \"helperText\", \"className\", \"labelClassName\", \"onChange\", \"checked\", \"errorText\"], Bfe = function(e, t) {\n return e && ue(\"p\", {\n css: t,\n \"data-ppui\": \"true\"\n }, e);\n}, Ffe = function(e) {\n return typeof e == \"string\" ? e : \"value_not_set\";\n}, jfe = function(e) {\n return ue(\"span\", {\n css: e.checkIconCssVals,\n \"aria-hidden\": \"true\",\n \"data-ppui\": \"true\"\n }, ue(\"svg\", {\n viewBox: \"0 0 100 100\",\n xmlns: \"http://www.w3.org/2000/svg\",\n \"data-ppui\": \"true\"\n }, ue(\"circle\", {\n r: \"18\",\n cy: \"50\",\n cx: \"50\",\n strokeWidth: \"0\",\n fill: \"currentColor\",\n \"data-ppui\": \"true\"\n })));\n}, $fe = Lt(function(e, t) {\n var n = e.label, r = e.name, a = r === void 0 ? Za() : r, i = e.value, o = i === void 0 ? Ffe(n) : i, s = e.id, u = s === void 0 ? \"Radio_\".concat(a, \"_\").concat(o) : s, l = e.centeredLabel, c = l === void 0 ? !1 : l, d = e.helperText, p = e.className, g = e.labelClassName, v = e.onChange, b = e.checked, C = b === void 0 ? !1 : b, w = e.errorText, _ = Qt(e, Rfe), x = gn(), S = wt(function() {\n return H7(x);\n }, [x]), E = v ? \"checked\" : \"defaultChecked\", N = {\n onChange: v\n };\n N[E] = C;\n var P = [\n S.input,\n !!w && S.inputWithError,\n c && S.centeredLabelInput,\n /* istanbul ignore next */\n !!w && c && S.errorCenteredLabelInput\n ], H = [S.checkIconContainer, !!w && S.errorCheckIconContainer, c && S.centeredLabelCheckIconContainer];\n return ue(\"div\", {\n css: S.radioBase,\n className: p,\n \"data-ppui-info\": \"radio_3.4.4\"\n }, ue(\"input\", bt({\n css: P,\n type: \"radio\",\n name: a,\n value: o,\n id: u,\n ref: t\n }, N, _, {\n \"data-ppui\": \"true\"\n })), ue(\"label\", {\n css: S.radioLabel,\n className: g,\n htmlFor: u,\n \"data-ppui\": \"true\"\n }, ue(\"span\", {\n css: H,\n \"data-ppui\": \"true\"\n }, ue(jfe, {\n checkIconCssVals: S.checkIcon,\n \"data-ppui\": \"true\"\n })), n, Bfe(d, S.helperText)));\n}), Hfe = [\"as\", \"children\", \"className\", \"icon\"];\nfunction uN(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction Vfe(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? uN(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : uN(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar zfe = function(e) {\n var t = e.as, n = e.children, r = e.className, a = e.icon, i = Qt(e, Hfe), o = Vfe({\n className: r,\n children: n,\n icon: a\n }, i);\n return /* @__PURE__ */ vt.createElement(t || \"legend\", bt({}, o, {\n \"data-ppui\": \"true\"\n }));\n}, qfe = function(e) {\n var t = e.errorText, n = e.helperText, r = e.errorIconAriaLabel, a = e.msgId, i = e._styles, o = ue(Zi, {\n css: i.errorIcon,\n size: \"sm\",\n role: \"img\",\n \"aria-label\": r,\n \"data-ppui\": \"true\"\n });\n return t && ue(\"p\", {\n css: i.errorText,\n id: a,\n \"data-ppui\": \"true\"\n }, o, t) || n && ue(\"p\", {\n css: i.groupHelperText,\n id: a,\n \"data-ppui\": \"true\"\n }, n) || null;\n}, Gfe = [\"className\", \"radioLabelClassName\", \"errorText\", \"errorIconAriaLabel\", \"helperText\", \"id\", \"label\", \"name\", \"value\", \"icon\", \"options\", \"onChange\"];\nfunction lN(e, t) {\n var n = Object.keys(e);\n if (Object.getOwnPropertySymbols) {\n var r = Object.getOwnPropertySymbols(e);\n t && (r = r.filter(function(a) {\n return Object.getOwnPropertyDescriptor(e, a).enumerable;\n })), n.push.apply(n, r);\n }\n return n;\n}\nfunction cN(e) {\n for (var t = 1; t < arguments.length; t++) {\n var n = arguments[t] != null ? arguments[t] : {};\n t % 2 ? lN(Object(n), !0).forEach(function(r) {\n Zt(e, r, n[r]);\n }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : lN(Object(n)).forEach(function(r) {\n Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(n, r));\n });\n }\n return e;\n}\nvar Ufe = function(e) {\n var t = e.className, n = e.radioLabelClassName, r = e.errorText, a = e.errorIconAriaLabel, i = a === void 0 ? \"Error\" : a, o = e.helperText, s = e.id, u = e.label, l = e.name, c = l === void 0 ? \"radioButton\" : l, d = e.value, p = d === void 0 ? \"\" : d, g = e.icon, v = e.options, b = v === void 0 ? [] : v, C = e.onChange, w = Qt(e, Gfe), _ = gn(), x = wt(function() {\n return H7(_);\n }, [_]), S = s ?? Za(\"RadioButtton_\"), E = \"message_\".concat(S);\n return (\n //@ts-ignore\n ue(\"fieldset\", bt({\n css: x.radioGroupBase,\n className: t,\n \"data-ppui-info\": \"radio_3.4.4\"\n }, w), ue(zfe, {\n icon: g,\n css: x.radioGroupLabel,\n \"data-ppui\": \"true\"\n }, u), function(P, H, k, Q) {\n return P.length === 0 ? ue(\"i\", {\n \"data-ppui\": \"true\"\n }, \"No Options!\") : P.map(function(I, G) {\n var $ = Q ? \"checked\" : \"defaultChecked\", z = cN(cN({}, I), {}, {\n labelClassName: n\n });\n return k === I.value && (z[$] = !0), ue($fe, bt({\n key: \"rbtn-item\".concat(G),\n name: H,\n onChange: Q,\n errorText: r\n }, z, w, {\n \"data-ppui\": \"true\"\n }));\n });\n }(b, c, p, C), ue(qfe, {\n errorText: r,\n helperText: o,\n errorIconAriaLabel: i,\n msgId: E,\n _styles: x,\n \"data-ppui\": \"true\"\n }))\n );\n};\nconst V7 = \"RadioButton\", Wfe = new ke(V7), z7 = Lt(\n ({ onChange: e, name: t, ...n }, r) => {\n const [a, i] = ze(\"\"), o = (s) => {\n const { value: u } = s.target;\n i(u), typeof e == \"function\" && e(s);\n };\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"input\", { name: t, type: \"hidden\", ref: r }),\n /* @__PURE__ */ h.jsx(\n Ufe,\n {\n ...n,\n onChange: o,\n name: t,\n value: a,\n className: Wfe.getComponentClassName()\n }\n )\n ] });\n }\n);\nz7.displayName = V7;\nconst q7 = \"TextArea\", Kfe = new ke(q7), G7 = Lt(\n (e, t) => /* @__PURE__ */ h.jsx(\n xre,\n {\n ...e,\n ref: t,\n className: Kfe.getComponentClassName()\n }\n )\n);\nG7.displayName = q7;\nconst U7 = \"TextInput\", Yfe = new ke(U7), W7 = Lt((e, t) => /* @__PURE__ */ h.jsx(\n zu,\n {\n ...e,\n ref: t,\n className: Yfe.getComponentClassName()\n }\n));\nW7.displayName = U7;\nconst Xfe = \"%%\", Zfe = {\n \"text-input\": W7,\n \"text-area\": G7,\n checkbox: Dh,\n \"checkbox-group\": S7,\n \"currency-input\": Ey,\n \"date-input\": N7,\n \"phone-input\": F7,\n \"phone-input-with-menu\": $7,\n \"country-input\": E7,\n \"radio-button\": z7,\n \"legal-consent\": D7,\n \"dropdown-menu\": k7,\n \"numeric-input\": M7\n}, Qfe = {\n initial: { height: 0, opacity: 0 },\n animate: { height: \"auto\", opacity: 1 },\n exit: { height: 0, opacity: 0 },\n transition: { duration: 0.3 }\n}, K7 = (e) => e.name, Jfe = (e, t) => {\n const n = t.split(Xfe), r = [void 0, null, \"\"].includes(e);\n return !n.includes(\n r ? \"no-value\" : e\n );\n}, epe = ({\n inputName: e,\n validations: t,\n register: n,\n unregister: r\n}) => {\n const [a, i] = ze();\n return We(() => {\n const o = n(e, {\n validations: t\n });\n return i(o), () => r(e);\n }, [e, n, r, t]), a;\n}, tpe = \"FormInput\", npe = new ke(tpe), rpe = ({\n type: e,\n validations: t,\n register: n,\n unregister: r,\n ...a\n}) => {\n const i = epe({\n inputName: a.name,\n validations: t,\n register: n,\n unregister: r\n }), o = Zfe[e];\n return /* @__PURE__ */ h.jsx(o, { ...a, ...i });\n}, ape = ({\n type: e,\n input: t,\n validations: n,\n span: r = 12,\n register: a,\n watch: i,\n unregister: o,\n error: s,\n className: u = \"\",\n ...l\n}) => {\n const { name: c, ...d } = t, p = K7(c), { display: g } = l;\n if (g === \"conditional\") {\n const {\n displayCondition: { triggerFieldId: C, value: w }\n } = l, _ = i(C);\n if (Jfe(\n _,\n w\n ))\n return null;\n }\n const b = se(\n npe.getElementClassName(`span-${r}`),\n u\n );\n return /* @__PURE__ */ h.jsx(\"div\", { className: b, children: /* @__PURE__ */ h.jsx(\n rpe,\n {\n ...d,\n type: e,\n name: p,\n errorText: s,\n validations: n,\n register: a,\n unregister: o\n }\n ) });\n}, Ph = {\n email: /^[a-zA-Z0-9._-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,4}$/,\n url: /^((https?|ftp):\\/\\/)?([a-zA-Z0-9]+([-.]{1}[a-zA-Z0-9]+)*\\.[a-zA-Z]{2,63}|([0-9]{1,3}\\.){3}[0-9]{1,3})(:[0-9]{1,5})?(\\/[^\\s]*)?$/,\n phoneNumber: /^(?!0+$)[+()-]?[0-9][0-9()+-]{5,12}$/,\n name: /^(?!.*<().*>)(?!.*[+\\-*=])(?!.*\\d).*$/\n}, ipe = [\n \"live.com\",\n \"msn.com\",\n \"gmail.com\",\n \"hotmail.com\",\n \"aol.com\",\n \"me.com\",\n \"mail.com\",\n \"zoho.com\",\n \"yahoo.com\",\n \"icloud.com\",\n \"protonmail.com\",\n \"mac.com\",\n \"outlook.com\"\n], Bc = (e, t) => {\n const n = { errorMessage: \"\" };\n return e || (n.errorMessage = t.message || \"\"), n;\n}, i2 = (e) => typeof e == \"string\", ope = (e) => i2(e) ? e.trim().length > 0 : Array.isArray(e) ? e.length > 0 : !1, spe = (e, t) => {\n let n = !1;\n return (!t.required || ope(e)) && (n = !0), Bc(n, t);\n}, Mh = (e, t) => i2(e) ? t.test(e) : !1, upe = (e) => Mh(e, Ph.phoneNumber), Y7 = (e) => Mh(e, Ph.email), lpe = (e) => {\n if (!Y7(e))\n return !1;\n const t = e.split(\"@\")[1];\n return !ipe.some(\n (n) => t.toLowerCase() === n\n );\n}, X7 = (e) => Mh(e, Ph.url), cpe = (e) => Mh(e, Ph.name) && !X7(e), dpe = {\n email: Y7,\n url: X7,\n \"phone-number\": upe,\n \"business-email\": lpe,\n name: cpe\n}, fpe = (e, t) => {\n if (!e)\n return Bc(!0, t);\n const { inputType: n } = t, r = dpe[n], a = r(e);\n return Bc(a, t);\n}, ppe = (e, t) => {\n if (!e)\n return Bc(!0, t);\n let n = !1;\n return i2(e) && (n = e.trim().length >= t.value), Bc(n, t);\n}, hpe = {\n required: (e) => (t) => spe(t, e),\n \"input-type\": (e) => (t) => fpe(t, e),\n \"min-length\": (e) => (t) => ppe(t, e)\n}, mpe = (e = [], t = []) => {\n const n = {};\n return e.forEach((r) => {\n n[r.rule] = r;\n }), t.forEach((r) => {\n n[r.rule] = r;\n }), Object.values(n);\n}, gpe = (e) => {\n const t = hpe[e.rule];\n return t(e);\n}, vpe = (e, t) => mpe(\n e,\n t\n).map(gpe), bpe = (e, t) => {\n const { value: n, checked: r } = e.target;\n return r ? (() => typeof t == \"string\" && !!t.length ? [t, n] : Array.isArray(t) ? [...t, n] : n)() : (() => {\n if (Array.isArray(t)) {\n const o = t.filter(\n (s) => s !== n\n );\n return o.length > 1 ? o : o[0] ?? \"\";\n }\n return \"\";\n })();\n}, ype = ({\n formValidations: e,\n rerender: t,\n setErrors: n\n}) => {\n const r = {}, a = {}, i = {}, o = /* @__PURE__ */ new Set(), s = {}, u = {}, l = (E, N) => {\n const P = r[E] || [];\n let H = { errorMessage: \"\" };\n for (let k = 0; k < P.length && (H = P[k](N), !H.errorMessage); k += 1)\n ;\n return H;\n }, c = (E) => {\n s[E] && (s[E] = \"\", n((N) => ({ ...N, [E]: \"\" })));\n }, d = (E) => {\n const {\n target: { name: N, value: P, type: H }\n } = E;\n let k = P;\n H === \"checkbox\" && (k = bpe(E, i[N])), i[N] = k, o.has(N) && t();\n }, p = (E) => (u[E] || (u[E] = Q1(d)), u[E]), g = (E) => {\n const {\n target: { type: N, name: P }\n } = E;\n N !== \"checkbox\" && N !== \"radio\" && N !== \"select\" ? p(P)(E) : d(E), c(P);\n }, v = (E) => (\n // eslint-disable-next-line no-prototype-builtins\n i.hasOwnProperty(E)\n ), b = (E, { validations: N } = {}) => {\n if (v(E) || (i[E] = \"\"), !r[E]) {\n const P = vpe(\n e,\n N\n );\n r[E] = P;\n }\n return {\n name: E,\n onChange: g,\n ref: (P) => {\n a[E] = P, (P == null ? void 0 : P.value) && d({\n target: P,\n type: \"change\"\n });\n }\n };\n }, C = (E) => {\n delete i[E], delete s[E], o.delete(E), delete a[E], delete r[E], delete u[E];\n }, w = (E) => (o.add(E), i[E]), _ = () => ({ ...i }), x = (E) => {\n const N = a[E];\n N && N.focus();\n };\n return { register: b, unregister: C, handleSubmit: (E) => (N) => {\n N.preventDefault();\n let P = !1;\n const H = {}, k = new FormData(N.currentTarget);\n k.forEach((Q, I) => {\n if (v(I)) {\n const G = i[I];\n H[I] = G;\n const $ = l(I, G), z = !!$.errorMessage;\n s[I] = $.errorMessage, !P && z && (P = !0, x(I));\n } else\n H[I] = k.get(I);\n }), n({ ...s }), E(H, P ? \"error\" : \"success\", s);\n }, watch: w, getFormData: _ };\n}, Cpe = () => {\n const [, e] = ze(0);\n return () => e((t) => t + 1);\n}, xpe = ({ validationMode: e = \"onSubmit\", formValidations: t }) => {\n const [n, r] = ze({}), a = Cpe(), i = Ue();\n return i.current || (i.current = {\n ...ype({\n validationMode: e,\n rerender: a,\n formValidations: t,\n setErrors: r\n }),\n errors: n\n }), i.current.errors = {\n ...n\n }, i.current;\n};\nconst Gf = \"FormContainer\", Mi = new ke(Gf), Z7 = ({\n requestUrl: e,\n actionUrl: t,\n inputFieldsCollection: n,\n formCta: {\n /* eslint-disable @typescript-eslint/no-unused-vars */\n url: r,\n mobileUrl: a,\n target: i,\n /* eslint-enable @typescript-eslint/no-unused-vars */\n ...o\n },\n headline: s,\n formValidationMessage: u,\n formSubmissionInProgressText: l,\n formSubmissionCriticalErrorMessage: c,\n onFormSubmit: d,\n theme: p = \"white\",\n hasShadow: g = !0,\n className: v = \"\",\n validations: b,\n analyticsCompName: C\n}) => {\n var q;\n const [w, _] = ze(\"initial\"), { errors: x, handleSubmit: S, ...E } = xpe({\n validationMode: \"onSubmit\",\n formValidations: b\n }), {\n csrfToken: N,\n country: P,\n pageURI: H,\n loggedIn: k,\n encryptedAccountNum: Q,\n clientInfo: I,\n userHome: G,\n appEntryPoint: $,\n apis: z\n } = Ze(Vt), B = ((q = z == null ? void 0 : z.pardot) == null ? void 0 : q.saveFormData) || e, O = w === \"submit-in-progress\", D = se(\n Mi.getComponentClassName(),\n pn.getThemeClassName(p),\n Mi.getPropsValueClassName(\"hasShadow\", g),\n v\n ), T = se(\n Mi.getElementClassName(\"button-container\"),\n {\n [Mi.getElementClassName(\"button-disabled\")]: O\n }\n ), j = S((W, X, de) => {\n const Se = X === \"success\", Te = () => Se ? \"\" : Object.values(de).find((Ne) => !!Ne), Le = S0e({\n actionUrl: t,\n csrfToken: N\n }), Ge = {\n ...W,\n ...Le\n };\n C0e({\n formValidation: {\n isSuccess: Se,\n error: Te()\n },\n requestUrl: B,\n formData: Ge,\n countryLang: I == null ? void 0 : I.clientLocale,\n pageURI: H,\n appEntryPoint: $,\n countryCode: P,\n userLoggedIn: k,\n userAccountNumber: Q,\n userType: G,\n callbacks: {\n onInit: () => _(\"submit-in-progress\"),\n onSubmit: (Ne, ie) => {\n _(Ne ? \"submit-success\" : \"submit-failed\"), typeof d == \"function\" && d(Ne, ie, W);\n }\n }\n });\n }), F = (W) => {\n O && (W == null || W.preventDefault());\n }, L = (W) => W ? /* @__PURE__ */ h.jsx(\n Wn,\n {\n ...Qfe,\n className: Mi.getElementClassName(\"critical-error-container\"),\n children: /* @__PURE__ */ h.jsx(p0e, { type: \"error\", children: W })\n }\n ) : null;\n return /* @__PURE__ */ h.jsxs(\"div\", { className: D, children: [\n O && /* @__PURE__ */ h.jsx(\"div\", { className: Mi.getElementClassName(\"loading-overlay\"), children: /* @__PURE__ */ h.jsx(\n th,\n {\n screenReaderText: l,\n size: \"xl\"\n }\n ) }),\n s && /* @__PURE__ */ h.jsx(\n mn,\n {\n className: Mi.getElementClassName(\"headline\"),\n headlineSize: (s == null ? void 0 : s.headlineSize) || \"Headline 4\",\n analyticsCompName: C || Gf,\n ...s\n }\n ),\n w === \"submit-failed\" && L(\n c\n ),\n u && /* @__PURE__ */ h.jsx(\n Gt,\n {\n className: Mi.getElementClassName(\"validation-message\"),\n size: \"Caption\",\n children: u\n }\n ),\n /* @__PURE__ */ h.jsxs(\"form\", { noValidate: !0, onSubmit: j, children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: Mi.getElementClassName(\"input-container\"), children: n.map((W, X) => {\n const de = K7(W.input.name);\n return /* @__PURE__ */ h.jsx(\n ape,\n {\n ...W,\n ...E,\n error: x[de]\n },\n `form-input-${X + 1}`\n );\n }) }),\n h0e(),\n /* @__PURE__ */ h.jsx(\"div\", { className: T, children: /* @__PURE__ */ h.jsx(\n ua,\n {\n as: \"button\",\n onClick: F,\n ...o,\n analyticsCompName: C || Gf\n }\n ) })\n ] })\n ] });\n};\nZ7.displayName = Gf;\nconst Spe = 15, _pe = (e) => {\n const t = {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-6\",\n rowStart: 1\n }\n }, n = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\",\n rowStart: 1,\n rowSpan: 2\n }\n }, r = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-6\",\n rowStart: 2,\n rowSpan: 2\n }\n };\n return e === \"Wide\" && (t.lgOptions = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-5\",\n rowStart: 1\n }, n.lgOptions = {\n columnStart: \"inner-5\",\n columnEnd: \"right-inner\",\n rowStart: 1,\n rowSpan: 2\n }, r.lgOptions = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-5\",\n rowStart: 2,\n rowSpan: 2\n }), {\n headingCol: t,\n formCol: n,\n contactCol: r\n };\n}, Epe = (e, t) => {\n if (typeof Storage > \"u\")\n return;\n const n = /* @__PURE__ */ new Date();\n n.setDate(n.getDate() + t), localStorage.setItem(e, n.toString());\n}, wpe = (e) => {\n if (typeof window > \"u\" || typeof Storage > \"u\")\n return !0;\n const t = localStorage.getItem(e);\n if (t) {\n const n = t || \"\";\n if (new Date(n) > /* @__PURE__ */ new Date())\n return !1;\n localStorage.removeItem(e);\n }\n return !0;\n}, Tpe = (e) => e.slice(e.lastIndexOf(\"/\") + 1).split(\"?\")[0];\nconst Uf = \"FormSection\", ru = new ke(Uf), Ape = ({\n headline: e,\n form: t,\n formSubmitResponse: n,\n hideFormOnSubmit: r = !1,\n hideFormDays: a,\n actionCard: i,\n componentId: o,\n topSpacer: s = \"6vw\",\n bottomSpacer: u = \"6vw\",\n theme: l = \"blue 700\",\n formWidth: c = \"Wide\",\n className: d = \"\",\n onFormSubmit: p,\n initialFormDisplay: g = !0,\n onChangeFormVisibility: v,\n ...b\n}) => {\n const [C, w] = ze(!g), [_, x] = ze(!1), S = Tpe(t.actionUrl), E = l0e(\n v\n ), N = y7(p), {\n type: P,\n message: H,\n redirectUrl: k,\n scrollToTopOnSubmit: Q = !0\n } = n, { isCMSPreview: I } = Ze(Vt), G = r && !I, $ = () => {\n if (P === \"redirect\" && !!k) {\n window.location.assign(k);\n return;\n }\n if (P === \"message\" && !!H) {\n x(!0), Q && n2.scrollToTop({ smooth: !0 });\n return;\n }\n P === \"hide-section\" && (w(!0), E(\"hidden\"));\n }, z = (F, L, q) => {\n F && (G && Epe(S, a || Spe), $()), N(F, L, q);\n }, B = se(ru.getComponentClassName(), d), O = t.theme || \"white\", D = se(\n ru.getElementClassName(\"submit-response-message\"),\n pn.getThemeClassName(O)\n ), T = _pe(c), j = {\n topSpacing: s,\n bottomSpacing: u,\n rowsGap: \"none\"\n };\n return We(() => {\n if (!G) {\n g || w(!1), E(\"visible\");\n return;\n }\n const F = wpe(S);\n w(!F), E(F ? \"visible\" : \"hidden\");\n }, [\n S,\n g,\n E,\n G\n ]), C ? null : /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: B,\n theme: l,\n options: j,\n id: o,\n ...b,\n children: [\n e && /* @__PURE__ */ h.jsx(\n lt,\n {\n className: ru.getElementClassName(\"headingCol\"),\n ...T.headingCol,\n children: /* @__PURE__ */ h.jsx(\n mn,\n {\n className: ru.getElementClassName(\"text-group\"),\n ...e,\n headlineSize: (e == null ? void 0 : e.headlineSize) || \"Headline 4\",\n headlineTag: (e == null ? void 0 : e.headlineTag) || \"h2\",\n analyticsCompName: Uf\n }\n )\n }\n ),\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: ru.getElementClassName(\"formCol\"),\n ...T.formCol,\n children: _ ? /* @__PURE__ */ h.jsx(\"div\", { className: D, children: /* @__PURE__ */ h.jsx(mn, { ...H }) }) : /* @__PURE__ */ h.jsx(Z7, { ...t, onFormSubmit: z })\n }\n ),\n i && /* @__PURE__ */ h.jsx(\n lt,\n {\n className: ru.getElementClassName(\"contactCol\"),\n ...T.contactCol,\n children: i.map((F, L) => /* @__PURE__ */ h.jsx(\n sl,\n {\n analyticsCompName: Uf,\n ...F,\n theme: l\n },\n `ActionCardItem-${L + 1}`\n ))\n }\n )\n ]\n }\n );\n};\nApe.displayName = Uf;\nconst Rh = (e, t = \"auto\", n = \"auto\") => (e == null ? void 0 : e.type) === \"Image\" ? {\n ...e,\n image: {\n ...e == null ? void 0 : e.image,\n dimensions: { minWidth: t, minHeight: n }\n }\n} : (e == null ? void 0 : e.type) === \"Video\" ? {\n ...e,\n video: {\n ...e == null ? void 0 : e.video,\n dimensions: { minWidth: t, minHeight: n }\n }\n} : null, o2 = \"FeatureNavigationColumnItem\", Npe = new ke(o2), pv = ({\n text: e,\n href: t,\n target: n = \"_self\",\n className: r\n}) => {\n const { pageSegment: a } = Ze(Vt), i = se(Npe.getComponentClassName(), r), o = Nn(\n {\n componentName: o2,\n linkText: e\n },\n a,\n ln.Link\n );\n return /* @__PURE__ */ h.jsx(\"li\", { className: i, children: /* @__PURE__ */ h.jsx(\n Uu,\n {\n linkType: \"menu-link\",\n buttonType: \"link\",\n buttonText: e,\n target: n,\n href: t,\n \"data-pa-click\": o,\n buttonTextSize: \"Caption\"\n }\n ) });\n};\npv.displayName = o2;\nconst Q7 = \"FeatureNavigationColumn\", Ri = new ke(Q7), Ope = {\n initial: {\n height: \"0px\",\n opacity: 0,\n transitionEnd: {\n display: \"none\"\n }\n },\n animate: {\n height: \"auto\",\n opacity: [0, 1, 1],\n display: \"block\"\n }\n}, Lpe = {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n}, J7 = ({\n listTitle: e,\n titleHref: t,\n collection: n,\n showTitleArrows: r = !1\n}) => {\n const a = Qn(), [i, o] = ze(!1), s = [\"xs\", \"sm\", \"md\"].includes(a), u = i || !s, l = `accordion-controls-${Un(e)}-${Un(\n n[0] ? n[0].text : \"\"\n )}`, c = `accordion-region-${Un(e)}-${Un(\n n[0] ? n[0].text : \"\"\n )}`, { listTitleButtonProps: d, listProps: p } = Fue({\n shouldRenderAsAccordion: s,\n expanded: u,\n buttonID: l,\n regionID: c\n }), g = se(Ri.getComponentClassName(), {\n [Ri.getElementClassName(\"expanded\")]: u\n }), v = se(\n Ri.getElementClassName(\"title\"),\n Ri.getPropsValueClassName(\"title-arrow\", !!r),\n EP(\"link\", { linkType: \"title-link\" }),\n il.getComponentClassName()\n );\n return $ue(v), /* @__PURE__ */ h.jsxs(\"div\", { className: g, children: [\n s ? /* @__PURE__ */ h.jsxs(\n \"button\",\n {\n id: l,\n ...d,\n type: \"button\",\n className: Ri.getElementClassName(\"title\"),\n onClick: () => o(!i),\n children: [\n /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Caption Bold\", children: e }),\n /* @__PURE__ */ h.jsx(\n DF,\n {\n className: Ri.getElementClassName(\"title-arrow\"),\n size: \"sm\"\n }\n )\n ]\n }\n ) : /* @__PURE__ */ h.jsxs(\"a\", { href: t, target: \"_self\", className: v, children: [\n /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"span\",\n size: \"Caption Bold\",\n className: Ri.getElementClassName(\"title-text\"),\n children: e\n }\n ),\n r && t && /* @__PURE__ */ h.jsx(Go, { size: \"Small\" })\n ] }),\n /* @__PURE__ */ h.jsx(\"hr\", {}),\n /* @__PURE__ */ h.jsx(\n Cr.div,\n {\n id: c,\n ...p,\n variants: Ope,\n transition: Lpe,\n initial: \"initial\",\n animate: u ? \"animate\" : \"initial\",\n children: /* @__PURE__ */ h.jsxs(\"ul\", { className: Ri.getElementClassName(\"list\"), children: [\n t && /* @__PURE__ */ h.jsx(\n pv,\n {\n href: t,\n text: e,\n className: Ri.getElementClassName(\"title-cell\")\n }\n ),\n n.map((b) => /* @__PURE__ */ h.jsx(\n pv,\n {\n ...b\n },\n `${e}-${b.text}`\n ))\n ] })\n }\n )\n ] });\n};\nJ7.displayName = Q7;\nconst eM = \"FeatureNavigation\", dN = new ke(eM), tM = ({\n columns: e,\n showTitleArrows: t,\n ariaLabel: n,\n topSpacer: r = \"2vw\",\n bottomSpacer: a = \"4vw\"\n}) => /* @__PURE__ */ h.jsx(\n cn,\n {\n className: dN.getComponentClassName(),\n options: {\n topSpacing: r,\n bottomSpacing: a\n },\n children: /* @__PURE__ */ h.jsx(\n lt,\n {\n className: dN.getElementClassName(\"content\"),\n as: \"nav\",\n \"aria-label\": n,\n ...jue[e.length],\n children: e.map((i) => /* @__PURE__ */ h.jsx(\n J7,\n {\n ...i,\n showTitleArrows: t\n },\n `${i.listTitle}`\n ))\n }\n )\n }\n);\ntM.displayName = eM;\nconst kpe = \"Spacer\", Bh = ({\n space: e = \"2vw\",\n theme: t = \"white\",\n className: n\n}) => {\n const r = pn.getThemeClassName(t), a = se(r, n);\n return /* @__PURE__ */ h.jsx(lt, { as: \"div\", className: a, options: { topSpacing: e } });\n};\nBh.displayName = kpe;\nconst ns = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, nM = (e) => {\n const t = {\n ...ns,\n options: {\n ...ns.options,\n bottomSpacing: \"4vw\"\n }\n }, n = {\n ...ns,\n options: {\n ...ns.options,\n topSpacing: \"4vw\",\n rowStart: \"auto\"\n }\n }, r = {\n ...ns,\n lgOptions: {\n columnStart: \"inner-1\",\n columnEnd: \"inner-4\"\n }\n }, a = {\n ...ns,\n lgOptions: {\n columnStart: \"inner-4\",\n columnEnd: e ? \"inner-13\" : \"inner-10\"\n }\n }, i = {\n ...ns,\n lgOptions: {\n columnStart: \"inner-10\",\n columnEnd: \"inner-13\"\n }\n };\n return {\n headerCol: t,\n disclosureCol: n,\n column1: r,\n column2: a,\n column3: i\n };\n};\nconst rM = \"MediaGallery\", fN = new ke(rM), aM = ({ mediaGallery: e }) => e.length === 0 ? null : /* @__PURE__ */ h.jsx(\"div\", { className: fN.getElementClassName(\"wrapper\"), children: e.map((t) => /* @__PURE__ */ h.jsx(\n _s,\n {\n className: fN.getElementClassName(\"image\"),\n dimensions: { minHeight: \"auto\" },\n ...t\n },\n t.imageAltText\n)) });\naM.displayName = rM;\nconst iM = \"FeatureSectionRow\", ni = new ke(iM), oM = ({\n buttonRow: e,\n featureList: t,\n featureImage: n,\n headline: r = \"\",\n headlineSize: a = \"Title\",\n headlineTag: i = \"h3\",\n headlineImage: o,\n mediaGallery: s,\n numberOfColumns: u = 3,\n textGroup: l\n}) => {\n const c = u === 2, d = nM(c), p = se(\n ni.getElementClassName(\"column1\"),\n {\n [ni.getElementClassName(\"border\")]: c,\n [ni.getElementClassName(\"border-spacing\")]: c\n }\n ), g = se(\n ni.getElementClassName(\"column2\"),\n {\n [ni.getElementClassName(\"border\")]: !c,\n [ni.getElementClassName(\"no-spacing\")]: c\n }\n );\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsxs(lt, { ...d.column1, className: p, children: [\n o && /* @__PURE__ */ h.jsx(\"div\", { className: ni.getElementClassName(\"headline-image\"), children: /* @__PURE__ */ h.jsx(_s, { ...o }) }),\n ks(r) && /* @__PURE__ */ h.jsx(\n an,\n {\n as: i,\n content: r,\n customWrapper: Iy(a),\n analyticsTextSection: \"headline\"\n }\n )\n ] }),\n /* @__PURE__ */ h.jsxs(lt, { className: g, ...d.column2, children: [\n l && /* @__PURE__ */ h.jsx(NP, { ...l }),\n s && /* @__PURE__ */ h.jsx(aM, { mediaGallery: s }),\n e && /* @__PURE__ */ h.jsx(\"div\", { className: ni.getElementClassName(\"button-row\"), children: e.map((v, b) => /* @__PURE__ */ Xi(\n xi,\n {\n ...v,\n key: `${v.text}-${b + 1}`\n }\n )) })\n ] }),\n !c && /* @__PURE__ */ h.jsx(\n lt,\n {\n className: ni.getElementClassName(\"column3\"),\n ...d.column3,\n children: n ? /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: ni.getElementClassName(\"feature-image\"),\n children: /* @__PURE__ */ h.jsx(_s, { ...n })\n }\n ) : t && /* @__PURE__ */ h.jsx(\n Ls,\n {\n ...t,\n checkmarkColor: xs.Blue,\n fontSize: \"Caption\"\n }\n )\n }\n )\n ] });\n};\noM.displayName = iM;\nconst sM = \"FeatureSection\", pN = new ke(sM), Ipe = \"3rem\", Dpe = 3, Ppe = ({\n className: e = \"\",\n textGroup: t,\n topSpacer: n = \"4vw\",\n bottomSpacer: r = \"4vw\",\n disclosureType: a,\n featureSectionRows: i = [],\n numberOfColumns: o = Dpe,\n componentId: s\n}) => {\n const u = se(e, pN.getComponentClassName()), l = {\n topSpacing: n,\n bottomSpacing: r,\n rowsGap: \"none\",\n rowsMinHeight: \"0\"\n }, c = nM();\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: u,\n options: l,\n disclosure: a,\n disclosureGridItemProps: c.disclosureCol,\n id: s,\n children: [\n t && /* @__PURE__ */ h.jsx(lt, { ...c.headerCol, children: /* @__PURE__ */ h.jsx(Wr, { ...t }) }),\n i.length > 0 && i.map((d, p) => {\n const g = p === i.length - 1;\n return /* @__PURE__ */ h.jsxs(ws, { children: [\n /* @__PURE__ */ h.jsx(\n oM,\n {\n ...d,\n numberOfColumns: o\n }\n ),\n !g && /* @__PURE__ */ h.jsx(\n Bh,\n {\n space: Ipe,\n className: pN.getElementClassName(\"spacer\")\n }\n )\n ] }, `feature-section-row-${p + 1}`);\n })\n ]\n }\n );\n};\nPpe.displayName = sM;\nconst Mpe = ({\n classNameGen: e,\n ctaCollection: t = [],\n showCta: n = !1\n}) => {\n const [r] = Ma([\"Below LG\"]);\n return !t || !t.length ? null : /* @__PURE__ */ h.jsx(\n eb.div,\n {\n variants: {\n slideOut: {\n opacity: 0,\n width: 0,\n transitionEnd: {\n display: \"none\"\n }\n },\n slideIn: {\n opacity: 1,\n width: \"auto\",\n display: \"flex\"\n }\n },\n initial: \"slideOut\",\n animate: !r && n ? \"slideIn\" : \"slideOut\",\n transition: {\n duration: tn.constants.Functional.multiplier.fixedMove * 1,\n ease: tn.constants.Functional.ease\n },\n children: /* @__PURE__ */ h.jsx(\"div\", { className: e.getElementClassName(\"cta-group\"), children: t.map((a) => /* @__PURE__ */ Xi(\n ua,\n {\n ...a,\n className: e.getElementClassName(\"cta-group-item\"),\n key: a.text\n }\n )) })\n }\n );\n}, Rpe = new Array(10).fill(null).map((e, t) => t * 0.1);\nfunction Bpe(e = []) {\n const t = Ue(), [n, r] = ze(/* @__PURE__ */ new Set()), a = wt(() => e.length ? e.reduce((o, s) => (o.push(s.componentId), o), []) : [], [e]);\n return We(() => (a.length && (t.current = new IntersectionObserver(\n (s) => {\n s.forEach((u) => {\n u != null && u.isIntersecting ? r(new Set(n.add(u.target.id))) : (n.delete(u.target.id), r(new Set(n)));\n });\n },\n {\n rootMargin: \"0% 0% -50% 0%\",\n threshold: Rpe\n }\n ), document.querySelectorAll(\"[id]\").forEach((s) => {\n var u;\n a.includes(s.id) && ((u = t.current) == null || u.observe(s));\n })), () => {\n var o;\n return (o = t.current) == null ? void 0 : o.disconnect();\n }), []), {\n activeId: Array.from(n).sort((o, s) => a.indexOf(o) - a.indexOf(s)).pop()\n };\n}\nfunction Fpe({\n isRTL: e = !1,\n ...t\n}) {\n const [n, r] = ze(0), { scrollXProgress: a } = rb(t);\n return We(() => a.onChange(\n (o) => r(e ? -o : o)\n ), []), {\n scrollProgress: n\n };\n}\nconst hN = ({\n classNameGen: e,\n position: t,\n isVisible: n,\n onClick: r\n}) => {\n const a = e.getElementClassName(`gradient-${t}`), i = t === \"right\" ? PF : MF;\n return n ? /* @__PURE__ */ h.jsx(\"div\", { className: a, children: /* @__PURE__ */ h.jsx(\n ry,\n {\n \"aria-label\": \"scroll button\",\n className: \"scroll-button\",\n tertiary: !0,\n onClick: r,\n children: /* @__PURE__ */ h.jsx(i, { color: \"sysColorBackgroundMediumContrast\", size: \"sm\" })\n }\n ) }) : null;\n}, jpe = ({\n classNameGen: e,\n linkCollection: t = [],\n ariaLabel: n = \"navigation\"\n}) => {\n var b, C;\n const { isRTL: r } = Ze(Vt), { activeId: a } = Bpe(t), i = Ue(null), { scrollProgress: o } = Fpe({\n container: i,\n axis: \"x\",\n isRTL: r\n }), s = wt(\n () => {\n var w, _;\n return !!i.current && ((w = i.current) == null ? void 0 : w.scrollWidth) > ((_ = i.current) == null ? void 0 : _.clientWidth);\n },\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [(b = i.current) == null ? void 0 : b.scrollWidth, (C = i.current) == null ? void 0 : C.clientWidth]\n );\n We(() => {\n if (a) {\n const w = document.querySelector(`a[href='#${a}']`);\n w == null || w.scrollIntoView({\n behavior: \"smooth\",\n block: \"nearest\",\n inline: \"center\"\n });\n }\n }, [a]);\n const u = (w) => {\n var _;\n (_ = w.target) == null || _.scrollIntoView({\n behavior: \"smooth\",\n block: \"nearest\",\n inline: \"center\"\n });\n }, l = (w, _) => {\n w.preventDefault();\n const x = document.getElementById(_);\n let S = 72;\n if (i.current) {\n const { height: E } = getComputedStyle(i.current), [N] = E.split(\"px\");\n S = Number(N);\n }\n x && (window.location.hash = _, window.scrollTo({\n top: x.offsetTop - S,\n behavior: \"instant\"\n })), w.target.blur();\n }, c = s && o > 0.05, d = s && o < 0.95, p = r ? d : c, g = r ? c : d, v = (w) => {\n if (i.current) {\n const _ = i.current.scrollWidth * 0.3;\n i.current.scrollBy({\n left: w === \"start\" ? -_ : _,\n behavior: \"smooth\"\n });\n }\n };\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: e.getElementClassName(\"scroll-area-new-wrapper\"),\n children: /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: e.getElementClassName(\"scroll-area-container\"),\n children: [\n /* @__PURE__ */ h.jsx(\n hN,\n {\n position: \"left\",\n isVisible: p,\n classNameGen: e,\n onClick: () => v(\"start\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n hN,\n {\n position: \"right\",\n isVisible: g,\n classNameGen: e,\n onClick: () => v(\"end\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"div\",\n {\n ref: i,\n className: e.getElementClassName(\"scroll-area\"),\n children: /* @__PURE__ */ h.jsx(\n \"nav\",\n {\n \"aria-label\": n,\n className: e.getElementClassName(\"links-collection\"),\n children: /* @__PURE__ */ h.jsx(\"ul\", { children: t.map((w) => {\n const _ = a && a === w.componentId;\n return /* @__PURE__ */ h.jsx(\"li\", { children: /* @__PURE__ */ h.jsx(\n ry,\n {\n as: \"a\",\n href: `#${w.componentId}`,\n target: \"_self\",\n \"aria-label\": w.text,\n className: se(\n e.getElementClassName(\"jump-link\"),\n {\n \"active-link\": _\n }\n ),\n tertiary: !0,\n onFocus: u,\n onClick: (x) => l(x, w.componentId),\n children: /* @__PURE__ */ h.jsx(Gt, { size: _ ? \"Body Bold\" : \"Body\", children: w.text })\n }\n ) }, w.text);\n }) })\n }\n )\n }\n )\n ]\n }\n )\n }\n );\n};\nconst $pe = \"JumpLinkNav\", S0 = new ke($pe), PSe = ({\n linkCollection: e = [],\n ctaCollection: t = [],\n componentId: n,\n ariaLabel: r = \"page navigation\",\n className: a = \"\"\n}) => {\n const [i, o] = ze(!1), s = Ue(null);\n We(() => {\n let d = 0;\n const p = document.getElementById(\"globalnav-header\") || document.querySelector(\".pp-header\");\n if (p) {\n const { height: b } = getComputedStyle(p), [C] = b.split(\"px\");\n d = Number(C);\n }\n const v = kP(() => {\n var C;\n const b = (C = s.current) == null ? void 0 : C.getBoundingClientRect().top;\n o(!!b && b <= d + 10);\n }, 50);\n return window.addEventListener(\"scroll\", v), () => {\n window.removeEventListener(\"scroll\", v);\n };\n }, []);\n const u = se(\n \"white-plate\",\n a,\n S0.getComponentClassName()\n ), l = se(S0.getElementClassName(\"grid-item\")), c = {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n xlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n };\n return /* @__PURE__ */ h.jsx(Yc, { id: n, className: u, children: /* @__PURE__ */ h.jsxs(lt, { ...c, ref: s, className: l, children: [\n /* @__PURE__ */ h.jsx(\n jpe,\n {\n classNameGen: S0,\n ariaLabel: r,\n linkCollection: e\n }\n ),\n /* @__PURE__ */ h.jsx(\n Mpe,\n {\n classNameGen: S0,\n showCta: i,\n ctaCollection: t\n }\n )\n ] }) });\n}, uM = (e = {}) => /* @__PURE__ */ h.jsx(ale, { ...e, textGroupWrapper: mn });\nuM.displayName = MP;\nconst Hpe = (e = {}) => /* @__PURE__ */ h.jsx(\n RP,\n {\n sectionWrapper: cn,\n actionCardWrapper: sl,\n textGroupWrapper: mn,\n pardotFormWrapper: uM,\n ...e\n }\n);\nHpe.displayName = Pu;\nconst Vpe = ({\n classes: e,\n showImage: t,\n renderBackgroundImage: n,\n ...r\n}) => /* @__PURE__ */ ue(\n mi,\n {\n className: e,\n css: V`\n --height: 148vw;\n --min-height: unset;\n --image: 100%;\n position: absolute;\n width: 100%;\n bottom: 0;\n\n @media (min-width: ${bn.md}) {\n --height: 40vw;\n --min-height: 34rem;\n --image: 50%;\n --graphic-offset: 0%;\n }\n\n @media (min-width: ${bn.lg}) {\n --height: 44vw;\n --min-height: 36rem;\n --image: 50%;\n }\n\n @media (min-width: ${bn.xl}) {\n --height: 45vw;\n --min-height: 36rem;\n }\n\n @media (min-width: ${bn[\"2xl\"]}) {\n --height: 61rem;\n }\n `,\n ...r,\n replay: !1,\n renderBackgroundImage: t ? n : void 0\n }\n), zpe = ({\n classes: e,\n graphicVersion: t,\n graphicColor: n\n}) => {\n const { foundationTheme: r } = Ze(lr), a = t === \"HeroTall01\", i = a ? \"GraphicLeftMini\" : \"GraphicRightCurveMini\";\n let o = \"HeroTall02\";\n a && (o = r === \"compact\" ? \"SplitRightMedium\" : \"SplitRightLarge\");\n const s = (l) => l === \"Blue600OnWhite\" || l === \"Blue600OnNeutral100\" ? \"GoldOnWhite\" : l === \"GoldOnWhite\" || l === \"GoldOnNeutral100\" ? \"Blue600OnWhite\" : l === \"GoldBlue500OnNeutral100\" || l === \"GoldBlue500OnWhite\" ? \"Blue500OnWhite\" : l === \"Blue500OnWhite\" || l === \"Blue500OnNeutral100\" || l === \"Blue500Blue600OnWhite\" ? \"Blue600OnWhite\" : \"GoldOnWhite\", u = V`\n position: absolute;\n width: 100%;\n overflow: hidden;\n `;\n return /* @__PURE__ */ ue(vt.Fragment, null, /* @__PURE__ */ ue(\n mi,\n {\n className: e,\n css: V`\n top: 0;\n\n @media (max-width: ${oi.md}) {\n --height: 50vw;\n --graphic-offset: unset;\n\n .graphic-lottie-lottie-player {\n width: 100%;\n }\n }\n\n ${u}\n }\n `,\n graphicVersion: i,\n graphicColor: s(n)\n }\n ), /* @__PURE__ */ ue(\n mi,\n {\n className: e,\n css: V`\n bottom: 0;\n\n @media (max-width: ${oi.md}) {\n --height: 65vw;\n }\n\n @media (max-width: ${oi.sm}) {\n --height: 135vw;\n }\n\n ${u}\n `,\n graphicVersion: o,\n graphicColor: n\n }\n ));\n}, qpe = ({\n classes: e,\n graphicVersion: t,\n graphicColor: n\n}) => {\n const a = t === \"HeroTall01\" ? \"GraphicLeftMini\" : \"GraphicRightCurveMini\";\n return /* @__PURE__ */ ue(\n mi,\n {\n className: e,\n css: V`\n top: 0;\n\n @media (max-width: ${oi.md}) {\n --height: 50vw;\n --graphic-offset: unset;\n\n .graphic-lottie-lottie-player {\n width: 100%;\n }\n }\n position: absolute;\n width: 100%;\n overflow: hidden;\n }\n `,\n graphicVersion: a,\n graphicColor: n\n }\n );\n}, lM = \"HeroGraphicSection\", mN = new ke(lM), cM = ({\n layout: e = \"Default\",\n backgroundImage: t,\n backgroundAsset: n,\n imageAltText: r,\n graphicColor: a,\n graphicVersion: i,\n ...o\n}) => {\n const { foundationTheme: s } = Ze(lr), u = se(\n mN.getComponentClassName(),\n mN.getPropsValueClassName(\"layout\", e)\n ), l = e === \"Featured\", c = e === \"FeaturedQuantumLeap\", d = e === \"FeaturedMinimal\", p = e === \"DefaultXL\", g = !l, { image: v } = n || {}, b = (v == null ? void 0 : v.baseImage) || t, C = (v == null ? void 0 : v.mdImage) || (v == null ? void 0 : v.baseImage) || t, w = v || t ? () => /* @__PURE__ */ ue(\n gd,\n {\n baseImage: b,\n mdImage: C,\n maxSrcSetWidth: 2e3,\n parallaxFactor: 1,\n disableParallax: !0,\n loading: v == null ? void 0 : v.loading,\n fetchPriority: v == null ? void 0 : v.fetchPriority,\n imageServerKnobs: v == null ? void 0 : v.imageServerKnobs,\n css: V`\n position: absolute;\n left: 0;\n right: 0;\n bottom: 0;\n top: unset;\n height: var(--graphic-height);\n background: none;\n\n .image-parallax-frame-inner {\n width: var(--image);\n right: 0;\n left: unset;\n top: unset;\n height: ${s === \"compact\" && !p ? \"60%\" : \"87%\"};\n }\n `,\n imageAltText: r,\n verticalAlign: n == null ? void 0 : n.image.verticalAlign\n }\n ) : void 0;\n return d ? /* @__PURE__ */ ue(\n qpe,\n {\n classes: u,\n graphicVersion: i,\n graphicColor: a,\n ...o\n }\n ) : l ? /* @__PURE__ */ ue(\n zpe,\n {\n classes: u,\n graphicVersion: i,\n graphicColor: a,\n ...o\n }\n ) : c ? null : /* @__PURE__ */ ue(\n Vpe,\n {\n classes: u,\n showImage: g,\n graphicVersion: i,\n graphicColor: a,\n renderBackgroundImage: w,\n ...o\n }\n );\n};\ncM.displayName = lM;\nconst af = {\n Minimal: {\n graphic: {\n \"Version 1\": \"HeroSplit01Medium\",\n \"Version 2\": \"HeroSplit02MediumUpper\"\n },\n heroContent: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n }\n }\n },\n heroMedia: {\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n mdOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"inner-8\",\n columnSpan: 5\n },\n twoXlOptions: {\n columnStart: \"inner-8\",\n columnSpan: 6\n }\n }\n }\n },\n Default: {\n graphic: {\n \"Version 1\": \"HeroSplit01Large\",\n \"Version 2\": \"HeroSplit02LargeUpper\"\n },\n heroContent: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n }\n }\n },\n heroMedia: {\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"inner-8\",\n columnSpan: 5\n },\n twoXlOptions: {\n columnStart: \"inner-8\",\n columnSpan: 6\n }\n }\n }\n },\n DefaultXL: {\n graphic: {\n \"Version 1\": \"HeroSplit01XLargeUpper\",\n \"Version 2\": \"HeroSplit02XLargeUpper\"\n },\n heroContent: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n }\n }\n },\n heroMedia: {\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"inner-8\",\n columnSpan: 5\n },\n twoXlOptions: {\n columnStart: \"inner-8\",\n columnSpan: 6\n }\n }\n }\n },\n Featured: {\n graphic: {\n \"Version 1\": \"HeroTall01\",\n \"Version 2\": \"HeroTall02\"\n },\n heroContent: {\n alignment: \"Center\",\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n }\n },\n heroMedia: {\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n }\n }\n },\n FeaturedMinimal: {\n graphic: {\n \"Version 1\": \"HeroTall01\",\n \"Version 2\": \"HeroTall02\"\n },\n heroContent: {\n alignment: \"Center\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n }\n },\n heroMedia: {\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n }\n }\n },\n FeaturedQuantumLeap: {\n graphic: {\n \"Version 1\": \"HeroTall01\",\n \"Version 2\": \"HeroTall02\"\n },\n heroContent: {\n alignment: \"Center\",\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n }\n },\n heroMedia: {\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n }\n }\n }\n}, Gpe = {\n ...af,\n Default: {\n ...af.Default,\n heroMedia: {\n gridConfig: {\n ...af.Default.heroMedia.gridConfig,\n lgOptions: {\n columnStart: \"inner-7\",\n columnSpan: 6\n },\n twoXlOptions: {\n columnStart: \"inner-7\",\n columnSpan: 7\n }\n }\n }\n }\n};\nfunction Upe(e, t = \"regular\") {\n return (t === \"compact\" ? Gpe : af)[e || \"Default\"];\n}\nconst Wpe = (e, t) => e === \"FeaturedQuantumLeap\" ? \"slate\" : t;\nconst Fh = \"Hero\", Ka = new ke(Fh), Kpe = ({\n textGroup: e,\n appDownloadGroup: t,\n layoutDefs: n,\n ...r\n}) => {\n const { gridConfig: a, alignment: i } = n.heroContent, [o] = Ma([\"Below MD\"]);\n return e ? /* @__PURE__ */ ue(\n lt,\n {\n ...a,\n className: Ka.getElementClassName(\"content\")\n },\n /* @__PURE__ */ ue(\n mn,\n {\n ...e,\n appDownloadGroup: t,\n alignment: o ? \"Center\" : i,\n analyticsCompName: Fh,\n isAnimated: !1,\n ...r\n }\n )\n ) : null;\n}, Ype = ({\n mediaFrame: e,\n layoutDefs: t,\n ariaHidden: n,\n layout: r,\n applyMediaGlow: a,\n isMediaFlushed: i\n}) => {\n const { gridConfig: o } = t.heroMedia;\n if (!e && r === \"FeaturedMinimal\")\n return null;\n const s = e ? Rh(\n e,\n \"100%\",\n \"auto\"\n ) : {}, u = se(Ka.getElementClassName(\"media\"), [\n i && Ka.getElementClassName(\"media-flushed\")\n ]), l = se([\n Ka.getElementClassName(\"media-container\"),\n a && Ka.getElementClassName(\"media-container-with-glow\"),\n i && Ka.getElementClassName(\"media-container-flushed\")\n ]);\n return /* @__PURE__ */ ue(lt, { ...o, className: u }, /* @__PURE__ */ ue(\"div\", { className: l }, e && /* @__PURE__ */ ue(\n Ur,\n {\n ariaHidden: n,\n roundedCorners: !0,\n ...s,\n maxSrcSetWidth: 3301,\n className: Ka.getElementClassName(\"media-frame\"),\n analyticsCompName: Fh\n }\n )));\n}, Xpe = ({\n className: e,\n textGroup: t,\n appDownloadGroup: n,\n summarizedImageAltText: r,\n mediaFrame: a,\n backgroundImage: i,\n graphicVariation: o = \"Version 1\",\n graphicColor: s = \"GoldOnWhite\",\n layout: u = \"Default\",\n messageId: l,\n backgroundMediaFrame: c,\n componentId: d,\n applyMediaGlow: p = !1,\n isMediaFlushed: g = !1,\n bottomSpacer: v,\n theme: b,\n hideGraphicShapes: C = !1\n}) => {\n const { foundationTheme: w } = Ze(lr), _ = a, x = se(\n e,\n Ka.getComponentClassName(),\n Ka.getPropsValueClassName(\"layout\", u),\n {\n \"dynamic-message-container\": !!l,\n \"default-bottom-spacing\": !v,\n [Ka.getElementClassName(\"image-none\")]: !_,\n [Ka.getElementClassName(\"no-graphic-shapes\")]: C\n }\n ), S = Upe(u, w), E = S.graphic[o];\n return /* @__PURE__ */ ue(\n cn,\n {\n className: x,\n messageId: l,\n motion: \"none\",\n id: d,\n theme: Wpe(u, b),\n options: { bottomSpacing: v }\n },\n /* @__PURE__ */ ue(\n Kpe,\n {\n textGroup: t,\n appDownloadGroup: n,\n layoutDefs: S,\n mid: l\n }\n ),\n /* @__PURE__ */ ue(\n Ype,\n {\n mediaFrame: a,\n layoutDefs: S,\n ariaHidden: !!i || !!c,\n layout: u,\n applyMediaGlow: p,\n isMediaFlushed: g\n }\n ),\n !C && /* @__PURE__ */ ue(\n cM,\n {\n layout: u,\n graphicColor: s,\n graphicVersion: E,\n backgroundImage: i,\n imageAltText: r,\n backgroundAsset: c\n }\n )\n );\n};\nXpe.displayName = Fh;\nconst s2 = \"HomepageHeroContent\", Zpe = new ke(s2), dM = ({\n textGroup: e,\n layoutDefs: t,\n tabs: n\n}) => {\n const {\n content: { gridConfig: r }\n } = t;\n return /* @__PURE__ */ h.jsxs(lt, { ...r, className: Zpe.getComponentClassName(), children: [\n n,\n /* @__PURE__ */ h.jsx(Bh, { space: \"2vw\" }),\n /* @__PURE__ */ h.jsx(\n mn,\n {\n ...e,\n analyticsCompName: s2,\n isAnimated: !1\n }\n )\n ] });\n};\ndM.displayName = s2;\nconst fM = \"HomepageHeroGraphicSection\", gN = new ke(fM), pM = ({\n layout: e = \"Default\",\n graphicColor: t\n}) => {\n const n = se(\n gN.getComponentClassName(),\n gN.getPropsValueClassName(\"layout\", e)\n );\n return /* @__PURE__ */ ue(\n mi,\n {\n className: n,\n graphicVersion: \"GraphicOverlap07\",\n graphicColor: t || \"Blue500OnWhite\",\n css: V`\n position: absolute;\n inset: 0;\n top: unset;\n z-index: 0;\n display: flex;\n justify-content: center;\n align-items: center;\n --width: 100%;\n --min-height: 100%;\n --height: 100%;\n --graphic-offset: 50%;\n --svg-ratio: 1;\n\n .graphic-lottie-lottie-player svg {\n position: relative;\n bottom: 0;\n }\n\n @media (min-width: ${bn.sm}) {\n --min-height: 100%;\n --height: 100%;\n }\n\n @media (min-width: ${bn.md}) {\n --height: 100%;\n }\n `\n }\n );\n};\npM.displayName = fM;\nconst hM = \"HomepageHeroMedia\", vN = new ke(hM), Qpe = ({\n layoutDefs: e,\n mediaFrame: t\n}) => {\n const {\n media: { gridConfig: n }\n } = e, r = t ? Rh(\n t,\n \"100%\",\n \"auto\"\n ) : {};\n return /* @__PURE__ */ h.jsx(lt, { ...n, className: vN.getComponentClassName(), children: t && /* @__PURE__ */ h.jsx(\n Ur,\n {\n roundedCorners: !0,\n maxSrcSetWidth: 3301,\n className: vN.getElementClassName(\"media-frame\"),\n ...r,\n analyticsCompName: hM\n }\n ) });\n}, mM = {\n initial: {\n opacity: 0,\n display: \"none\",\n visibility: \"hidden\",\n pointerEvents: \"none\",\n overflow: \"hidden\"\n },\n animate: {\n opacity: 1,\n display: \"block\",\n visibility: \"visible\",\n pointerEvents: \"auto\",\n overflow: \"visible\"\n }\n}, _0 = {\n Default: {\n content: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: \"2vw\",\n bottomSpacing: \"2vw\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n topSpacing: \"4vw\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\",\n rowStart: 1,\n bottomSpacing: \"4vw\"\n }\n }\n },\n media: {\n gridConfig: {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-edge\",\n rowStart: 1\n }\n }\n }\n },\n Minimal: {\n content: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: \"2vw\",\n bottomSpacing: \"2vw\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\",\n topSpacing: \"4vw\",\n bottomSpacing: \"4vw\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\",\n rowStart: 1\n },\n xlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"inner-8\",\n rowStart: 1\n }\n }\n },\n media: {\n gridConfig: {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"inner-11\",\n rowStart: 1\n },\n xlOptions: {\n columnStart: \"mid\",\n columnEnd: \"inner-11\",\n rowStart: 1\n }\n }\n }\n },\n QuantumLeap: {\n content: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: \"2vw\",\n bottomSpacing: \"2vw\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n topSpacing: \"4vw\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\",\n rowStart: 1,\n bottomSpacing: \"4vw\"\n }\n }\n },\n media: {\n gridConfig: {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n lgOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-edge\",\n rowStart: 1\n }\n }\n }\n }\n}, Jpe = {\n regular: _0,\n compact: {\n Default: {\n ..._0.Default,\n content: {\n alignment: \"Start\",\n gridConfig: {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: \"6vw\",\n bottomSpacing: \"6vw\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\",\n rowStart: 1\n }\n }\n }\n },\n Minimal: _0.Minimal,\n QuantumLeap: _0.QuantumLeap\n }\n}, ehe = (e, t) => Jpe[t ?? \"regular\"][e || \"Default\"];\nconst gM = \"HomepageHero\", bN = new ke(gM), vM = ({\n active: e = !0,\n layout: t = \"Default\",\n graphicColor: n,\n mediaFrame: r,\n textGroup: a,\n bottomSpacer: i,\n topSpacer: o,\n componentId: s,\n tabs: u = void 0,\n hideGraphicShapes: l,\n theme: c\n}) => {\n const d = t === \"QuantumLeap\", { foundationTheme: p } = Ze(lr), g = se(\n bN.getComponentClassName(),\n bN.getPropsValueClassName(\"layout\", t)\n ), v = ehe(t, p), b = d ? \"slate gradient\" : c;\n return /* @__PURE__ */ h.jsx(\n eb.div,\n {\n variants: mM,\n animate: e ? \"animate\" : \"initial\",\n \"aria-hidden\": !e,\n role: \"tabpanel\",\n children: /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: g,\n motion: \"none\",\n id: s,\n options: {\n topSpacing: o,\n bottomSpacing: i\n },\n theme: b,\n children: [\n /* @__PURE__ */ h.jsx(\n dM,\n {\n layoutDefs: v,\n textGroup: a,\n tabs: u\n }\n ),\n /* @__PURE__ */ h.jsx(Qpe, { layoutDefs: v, mediaFrame: r }),\n !d && !l && /* @__PURE__ */ h.jsx(pM, { graphicColor: n })\n ]\n }\n )\n }\n );\n};\nvM.displayName = gM;\nconst the = \"HomepageLink\", nhe = new ke(the), rhe = ({ cta: e, analyticsCompName: t }) => {\n const { pageSegment: n, clientInfo: r, host: a, country: i } = Ze(Vt), o = (l) => t && Nn(\n {\n componentName: t,\n linkText: l,\n linkType: Pa.Tertiary,\n clickEvent: Ho.Text\n },\n n,\n ln.CTA\n ), s = se(\n nhe.getElementClassName(\"arrow-link\"),\n \"arrow-icon-active-hover\"\n ), u = o(e.text);\n return /* @__PURE__ */ h.jsxs(\n \"a\",\n {\n target: e.target,\n href: eh(r == null ? void 0 : r.clientType, e.url, \"\", a, i),\n \"aria-label\": e.ariaLabel,\n className: s,\n \"data-pa-click\": u,\n children: [\n /* @__PURE__ */ h.jsx(Go, { size: \"Large\" }),\n /* @__PURE__ */ h.jsx(Ty, { children: e.text })\n ]\n }\n );\n}, u2 = \"HomepageLinkSection\", bu = new ke(u2), ahe = (e) => {\n let t = e;\n return Ra(e) || (t = {\n textGroup: e\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: bu.getElementClassName(\"header\"),\n ...t\n }\n );\n}, ihe = (e, t, n, r) => /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: bu.getElementClassName(\"grid-item\"),\n children: [\n /* @__PURE__ */ h.jsx(mn, { ...e }),\n /* @__PURE__ */ h.jsx(rhe, { analyticsCompName: r, cta: t })\n ]\n },\n `homepage-link-item-default-${n + 1}`\n), bM = ({\n headline: e,\n collection: t,\n topSpacer: n = \"2vw\",\n bottomSpacer: r = \"2vw\",\n analyticsCompName: a = u2,\n disclosure: i\n}) => {\n const o = bu.getElementClassName(\"grid-item\"), s = {\n topMargin: n,\n bottomMargin: r,\n rowsGap: \"none\",\n rowsMinHeight: \"auto\"\n }, u = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }, l = {\n columnStart: \"left-inner\",\n columnEnd: \"inner-5\"\n }, c = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }, d = {\n columnStart: \"inner-5\",\n columnEnd: \"right-inner\"\n }, p = {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n }, g = {\n options: {\n topSpacing: \"2vw\"\n }\n }, v = bu.getComponentClassName();\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: v,\n options: s,\n disclosure: i,\n disclosureGridItemProps: g,\n children: [\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: o,\n options: u,\n xlOptions: l,\n children: ahe({ ...e, analyticsCompName: a })\n }\n ),\n /* @__PURE__ */ h.jsx(lt, { options: c, xlOptions: d, children: /* @__PURE__ */ h.jsx(\"div\", { className: bu.getElementClassName(\"container\"), children: t == null ? void 0 : t.map(\n ({ text: b, link: C }, w) => ihe(b, C, w, a)\n ) }) }),\n /* @__PURE__ */ h.jsx(lt, { options: p, children: /* @__PURE__ */ h.jsx(\"div\", { className: bu.getElementClassName(\"line\"), children: \" \" }) })\n ]\n }\n );\n};\nbM.displayName = u2;\nconst yM = \"HomepageSegmentControlTabs\", ohe = new ke(yM), CM = Lt(({ segments: e, activeSegment: t, setActiveSegment: n, setClickSource: r }, a) => {\n const i = (s, u, l) => {\n r(s.detail === 0 ? \"keyboard\" : \"mouse\"), n(u);\n const c = new URLSearchParams(window.location.search);\n c.set(\"tab\", l);\n const d = c.toString();\n window.history.pushState(null, \"\", `?${d}`), s.preventDefault();\n }, o = e.map((s, u) => ({\n text: s.tabText,\n href: \"#\",\n onClick: (l, c) => i(c, u, s.urlFragment)\n }));\n return /* @__PURE__ */ h.jsx(\"div\", { className: ohe.getComponentClassName(), children: /* @__PURE__ */ h.jsx(\n LP,\n {\n ref: a,\n selTabItemText: e[t].tabText,\n tabItems: o,\n isLarge: !1\n }\n ) });\n});\nCM.displayName = yM;\nconst she = \"DesktopView\", xM = ({\n analyticsCompName: e,\n classNameGen: t,\n closeButtonAriaLabel: n,\n imageAltText: r,\n imageUrl: a,\n dataQrUrl: i,\n onClose: o,\n text: s\n}) => {\n const u = t.getElementClassName(\"desktop-view\"), l = t.getElementClassName(\"desktop-view-image\"), c = se(\n pn.getThemeClassName(\"white\"),\n t.getElementClassName(\"desktop-view-text\")\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: u, children: [\n /* @__PURE__ */ h.jsx(\n Dc,\n {\n variant: \"small\",\n dataUrl: i,\n fallbackImageUrl: a,\n className: l,\n imageAltText: r\n }\n ),\n s && /* @__PURE__ */ h.jsx(\"div\", { className: c, children: /* @__PURE__ */ h.jsx(\n dh,\n {\n content: s,\n lineProps: {\n analyticsCompName: e\n }\n }\n ) }),\n /* @__PURE__ */ h.jsx(\n Xp,\n {\n analyticsCompName: e,\n closeAriaLabel: n,\n iconClick: () => o(),\n inverse: !0\n }\n )\n ] });\n};\nxM.displayName = she;\nconst uhe = \"MobileView\", SM = ({\n analyticsCompName: e,\n classNameGen: t,\n closeButtonAriaLabel: n,\n cta: r,\n onClose: a\n}) => {\n if (!r || !r.text)\n return null;\n const i = t.getElementClassName(\"mobile-view\"), o = se(\n pn.getThemeClassName(\"white\"),\n t.getElementClassName(\"mobile-button\")\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: i, children: [\n /* @__PURE__ */ h.jsx(\n xi,\n {\n ...r,\n analyticsCompName: e,\n className: o\n }\n ),\n /* @__PURE__ */ h.jsx(\n Xp,\n {\n analyticsCompName: e,\n closeAriaLabel: n,\n iconClick: () => a(),\n inverse: !0\n }\n )\n ] });\n};\nSM.displayName = uhe;\nconst E0 = \"sticky-qr-badge-close-date\", lhe = 1, l2 = \"StickyQRBadge\", Bg = new ke(l2), _M = ({\n ctaMobile: e,\n text: t,\n imageUrl: n,\n imageAltText: r,\n className: a,\n badgeCloseTimeoutDays: i = lhe,\n analyticsCompName: o = l2,\n closeButtonAriaLabel: s,\n dataQrUrl: u\n}) => {\n const [l, c] = ze(!1), { foundationFont: d } = Ze(lr);\n We(() => {\n if (localStorage.getItem(E0)) {\n const b = Number(localStorage.getItem(E0)), C = (/* @__PURE__ */ new Date()).getTime(), w = b + 1e3 * 60 * 60 * 24 * i;\n C >= w && (c(!0), localStorage.removeItem(E0));\n } else\n c(!0);\n }, [i]);\n const p = () => {\n localStorage.setItem(E0, (/* @__PURE__ */ new Date()).getTime().toString()), c(!1);\n };\n if (!l)\n return null;\n const g = se(\n Bg.getComponentClassName(),\n a,\n { \"font-quantum-leap\": fp(d) }\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: g, children: [\n /* @__PURE__ */ h.jsx(\n xM,\n {\n analyticsCompName: o,\n classNameGen: Bg,\n closeButtonAriaLabel: s,\n imageAltText: r,\n imageUrl: n,\n onClose: p,\n text: t,\n dataQrUrl: u\n }\n ),\n /* @__PURE__ */ h.jsx(\n SM,\n {\n analyticsCompName: o,\n classNameGen: Bg,\n closeButtonAriaLabel: s,\n cta: e,\n onClose: p\n }\n )\n ] });\n};\n_M.displayName = l2;\nconst che = \"hotspot-section-hotspot-item\", dhe = (e) => {\n const t = () => {\n e && e(-1);\n }, n = (r) => {\n const a = r.target, i = a && a.getAttribute(\"class\"), o = i && i.split(\" \");\n (o && o[0]) === che && e && e(-1);\n };\n We(() => (window.addEventListener(\"keydown\", t, !0), window.addEventListener(\"click\", n, !0), () => {\n window.removeEventListener(\"keydown\", t, !0), window.removeEventListener(\"click\", n, !0);\n }));\n}, fhe = (e) => ({\n options: {\n rowsMinHeight: \"auto\",\n ...e\n },\n mdOptions: {\n rowsMinHeight: \"auto\"\n },\n xlOptions: {\n rowsMinHeight: \"auto\",\n rowsGap: \"value\",\n rowsGapValue: \"0vw\"\n }\n}), phe = {\n start: 1,\n span: 12\n}, c2 = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n}, hhe = {\n ...c2\n}, mhe = {\n \"left top\": \"start start\",\n \"left center\": \"center start\",\n \"right top\": \"start end\",\n \"center top\": \"start center\",\n center: \"center center\",\n \"right center\": \"center end\",\n \"left bottom\": \"end start\",\n \"center bottom\": \"end center\",\n \"right bottom\": \"end end\"\n}, ghe = ({ row: e, column: t }, n) => n ? e > 0 && e < 5 && t > 0 && t < 5 : e > 0 && e < 6 && t > 0 && t < 9;\nconst jh = \"HotspotItem\", ps = new ke(jh), vhe = ub(\"Functional\", \"appear\", \"md\"), EM = ({\n itemId: e = -1,\n hotspotItemButtonText: t,\n isItemOpen: n,\n toggleHotspotItem: r,\n pageSegment: a\n}) => {\n const i = se(ps.getElementClassName(\"icon\")), o = se(\n ps.getElementClassName(\"button\"),\n n && ps.getElementClassName(\"button-active\")\n ), s = Nn(\n {\n componentName: jh,\n linkText: `button-${e}`,\n clickEvent: Ca.Button\n },\n a,\n ln.CTA\n );\n return /* @__PURE__ */ ue(\n Cr.button,\n {\n type: \"button\",\n className: o,\n key: `hot-spot-item-button-${e}`,\n id: `hot-spot-item-button-${e}`,\n \"data-pa-click\": s,\n \"aria-expanded\": n,\n \"aria-controls\": `hot-spot-item-content-${e}`,\n onClick: () => r && r(e),\n whileHover: { scale: 1.1 },\n whileTap: { scale: 0.98 },\n transition: vhe\n },\n /* @__PURE__ */ ue(\"span\", { className: \"sr-only\" }, t),\n /* @__PURE__ */ ue(O8, { className: i, \"aria-hidden\": \"true\" }),\n /* @__PURE__ */ ue(\n Cr.span,\n {\n className: \"pulse\",\n animate: {\n scale: [1, 1.5],\n opacity: [1, 0]\n },\n transition: {\n duration: 4,\n delay: e / 2,\n ease: tn.constants.Expressive.ease,\n repeat: 1 / 0\n }\n }\n )\n );\n}, wM = ({\n className: e,\n itemId: t = -1,\n hotspotItemButtonText: n,\n desktopCoordinates: r,\n mobileCoordinates: a,\n hotspotItemCardContent: i,\n toggleHotspotItem: o,\n openItemIndex: s\n}) => {\n dhe(\n o\n );\n const u = Qn(), l = [\"xs\", \"sm\", \"md\"].includes(u), { pageSegment: c } = Ze(Vt), d = l ? a : r, { row: p, column: g, anchorOptions: v, cardCorner: b } = d, C = b === \"start\", w = mhe[v], _ = p && g && w, x = `cell-${p}-${g}`, [S, E] = w ? w.split(\" \") : [], N = s === t, P = se(\n e,\n ps.getComponentClassName(),\n N && ps.getElementClassName(\"open\")\n ), H = se(\n ps.getElementClassName(\"modal\"),\n C && ps.getElementClassName(\"modal-start\")\n ), k = ub(\"Functional\", \"appear\", \"md\"), Q = {\n initial: {\n opacity: 0,\n x: C ? \"-2%\" : \"2%\",\n y: \"2%\",\n transitionEnd: {\n display: \"none\"\n }\n },\n animate: {\n opacity: 1,\n x: 0,\n y: 0,\n display: \"block\"\n }\n };\n return _ && ghe(d, l) ? /* @__PURE__ */ ue(\n \"div\",\n {\n className: P,\n css: V`\n align-self: ${S};\n justify-self: ${E};\n grid-area: ${x};\n `\n },\n !l && /* @__PURE__ */ ue(\n Cr.div,\n {\n className: H,\n variants: Q,\n initial: \"initial\",\n animate: N ? \"animate\" : \"initial\",\n transition: k,\n \"aria-labelledby\": `hot-spot-item-button-${t}`,\n id: `hot-spot-item-content-${t}`,\n layout: !0\n },\n i && /* @__PURE__ */ ue(\n Ms,\n {\n analyticsCompName: jh,\n ...i\n }\n )\n ),\n EM({\n itemId: t,\n hotspotItemButtonText: n,\n isItemOpen: N,\n toggleHotspotItem: o,\n pageSegment: c\n })\n ) : null;\n};\nwM.displayName = jh;\nconst $h = \"HotspotSection\", Ya = new ke($h), bhe = (e) => {\n let t = e;\n return Ra(e) || (t = {\n ...phe,\n textGroup: e\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n ...t,\n textGroup: {\n ...t.textGroup,\n analyticsCompName: $h\n }\n }\n );\n}, yhe = (e, t, n) => /* @__PURE__ */ h.jsx(lt, { className: Ya.getElementClassName(\"hotspot-item\"), children: e.length > 0 && e.map(\n ({\n desktopCoordinates: r,\n mobileCoordinates: a,\n hotspotItemCardContent: i,\n hotspotItemButtonText: o\n }, s) => /* @__PURE__ */ h.jsx(\n wM,\n {\n itemId: s,\n desktopCoordinates: r,\n mobileCoordinates: a,\n hotspotItemCardContent: i,\n hotspotItemButtonText: o,\n toggleHotspotItem: t,\n openItemIndex: n\n },\n o\n )\n) }), Che = ({ imageAltText: e, baseImage: t, mdImage: n, loading: r }, a, i, o = []) => /* @__PURE__ */ h.jsxs(\n lt,\n {\n ...c2,\n className: Ya.getElementClassName(\"image-container\"),\n children: [\n /* @__PURE__ */ h.jsx(\n ur,\n {\n className: Ya.getElementClassName(\"imageframe\"),\n imageAltText: e,\n baseImage: t,\n mdImage: n,\n loading: r,\n maxSrcSetWidth: 3e3\n }\n ),\n yhe(o, a, i)\n ]\n }\n), xhe = (e, t, n, r, a, i) => {\n const o = se(\n Ya.getElementClassName(\"modal\"),\n Ya.getElementClassName(\"modal-start\")\n ), s = se(\n Ya.getElementClassName(\"sticky\"),\n t && Ya.getElementClassName(\"open\")\n );\n return /* @__PURE__ */ h.jsx(lt, { ...hhe, className: s, children: /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: o,\n \"aria-labelledby\": `hot-spot-item-button-${e}`,\n id: `hot-spot-item-content-${e}`,\n children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: Ya.getElementClassName(\"modal-button\"), children: EM({\n openItemIndex: e,\n hotspotItemButtonText: n,\n isItemOpen: t,\n toggleHotspotItem: r,\n pageSegment: i\n }) }),\n a && /* @__PURE__ */ h.jsx(\n Ms,\n {\n analyticsCompName: $h,\n ...a\n }\n )\n ]\n }\n ) });\n}, TM = ({\n className: e = \"\",\n textGroup: t,\n imageFrame: n,\n collection: r,\n disclosureType: a,\n topSpacer: i = \"2vw\",\n bottomSpacer: o = \"2vw\",\n theme: s = \"stone\",\n componentId: u,\n itemOpen: l = !1,\n ...c\n}) => {\n const d = se(\n Ya.getComponentClassName(),\n Ya.getPropsValueClassName(\"theme\", s),\n e\n ), p = { topSpacing: i, bottomSpacing: o }, g = Qn(), v = [\"xs\", \"sm\", \"md\"].includes(g), b = -1, w = l ? 0 : b, [_, x] = ze(w), S = Ue(w), E = _ !== b, { pageSegment: N } = Ze(Vt), H = ((Q, I) => I > b && Q[I] ? Q[I] : null)(r, _), k = (Q) => {\n Q > b && S.current !== Q ? (x(Q), S.current = Q) : (x(b), S.current = b);\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: d,\n ...fhe(p),\n disclosure: a,\n id: u,\n ...c,\n theme: s,\n children: [\n t && bhe(t),\n /* @__PURE__ */ h.jsxs(\n lt,\n {\n ...c2,\n className: Ya.getElementClassName(\"sticky-container\"),\n children: [\n n && Che(\n n,\n k,\n _,\n r\n ),\n v && H && xhe(\n _,\n E,\n H.hotspotItemButtonText,\n k,\n H.hotspotItemCardContent,\n N\n )\n ]\n }\n )\n ]\n }\n );\n};\nTM.displayName = $h;\nconst yN = (e) => e === \"Outer Rail\" ? {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n} : e === \"Edge Rail\" ? {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n }\n} : {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, She = {\n \"Inner Rail\": \"inner\",\n \"Outer Rail\": \"outer\",\n \"Edge Rail\": \"edge\"\n}, _he = {\n xs: {\n inner: 2,\n outer: 2,\n edge: 2\n },\n sm: {\n inner: 2,\n outer: 2,\n edge: 2\n },\n md: {\n inner: 3,\n outer: 3,\n edge: 3\n },\n lg: {\n inner: 4,\n outer: 5,\n edge: 6\n },\n xl: {\n inner: 5,\n outer: 5,\n edge: 7\n },\n \"2xl\": {\n inner: 7,\n outer: 8,\n edge: 9\n }\n}, Ehe = {\n motionFeel: \"Expressive\",\n motionIntensity: \"md\",\n motionTypePreset: \"moveUp\",\n scrollTriggerOptions: {\n triggerOnce: !0\n }\n};\nconst AM = \"LogoStripSection\", w0 = new ke(AM), d2 = ({\n logos: e,\n headline: t,\n disclosureType: n,\n theme: r,\n alignment: a = \"Inner Rail\",\n topSpacer: i = \"4vw\",\n bottomSpacer: o = \"4vw\"\n}) => {\n const s = Qn(), u = She[a], l = _he[s][u], c = { topSpacing: i, bottomSpacing: o }, d = {\n options: { topSpacing: \"0vw\" }\n }, p = 100 / l, g = [\"xs\", \"sm\", \"md\"].includes(s), v = {\n flex: `1 1 ${p}%`,\n maxWidth: `${p}%`\n };\n return /* @__PURE__ */ h.jsx(\n cn,\n {\n disclosure: n,\n options: c,\n disclosureGridItemProps: d,\n className: w0.getComponentClassName(),\n motion: \"custom\",\n motionOptions: Ehe,\n theme: r,\n children: /* @__PURE__ */ h.jsxs(\n lt,\n {\n ...g ? yN() : yN(a),\n children: [\n t && /* @__PURE__ */ h.jsx(\n mn,\n {\n ...t,\n className: w0.getElementClassName(\"headline\")\n }\n ),\n /* @__PURE__ */ h.jsx(\"div\", { className: w0.getElementClassName(\"container\"), children: e.map((b) => /* @__PURE__ */ h.jsx(\"div\", { style: v, children: /* @__PURE__ */ h.jsx(\n ur,\n {\n className: w0.getElementClassName(\"image-frame\"),\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n isAnimated: !1,\n analyticsCompName: \"LogoStripItem\",\n ...b\n }\n ) }, b.imageAltText)) })\n ]\n }\n )\n }\n );\n};\nd2.displayName = AM;\nconst whe = (e) => {\n const n = e % 4 === 0;\n return {\n logos12Col: {\n options: {\n columnStart: e % 2 === 0 ? \"left-inner\" : \"auto\",\n columnSpan: 2\n },\n mdOptions: {\n columnStart: e % 4 === 0 ? \"left-inner\" : \"auto\",\n columnSpan: 1\n },\n lgOptions: {\n columnStart: e % 4 === 0 ? \"left-inner\" : \"auto\",\n columnSpan: 3\n },\n xlOptions: {\n columnStart: n ? \"left-inner\" : \"auto\",\n columnSpan: 12 / 4\n }\n },\n logos10Col: {\n lgOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"inner-12\"\n }\n }\n };\n}, The = () => ({\n text12Col: {\n options: {\n columnStart: \"left-inner\",\n columnSpan: 4,\n bottomSpacing: \"6vw\"\n },\n lgOptions: {\n columnStart: \"inner-8\",\n columnSpan: 5\n }\n },\n text10Col: {\n options: {\n columnStart: \"left-inner\",\n columnSpan: 4,\n bottomSpacing: \"6vw\"\n },\n lgOptions: {\n columnStart: \"inner-8\",\n columnSpan: 4\n }\n }\n}), Ahe = () => ({\n text12Col: {\n options: {\n columnStart: \"left-inner\",\n columnSpan: 4,\n bottomSpacing: \"6vw\"\n },\n lgOptions: {\n columnStart: \"inner-3\",\n columnSpan: 8\n },\n xlOptions: {\n columnStart: \"inner-4\",\n columnSpan: 6\n }\n },\n text10Col: {\n options: {\n columnStart: \"left-inner\",\n columnSpan: 4,\n bottomSpacing: \"6vw\"\n },\n lgOptions: {\n columnStart: \"inner-3\",\n columnSpan: 8\n },\n xlOptions: {\n columnStart: \"inner-4\",\n columnSpan: 6\n }\n }\n}), Nhe = () => ({\n text12Col: {\n options: {\n columnStart: \"left-inner\",\n columnSpan: 4,\n bottomSpacing: \"6vw\"\n },\n lgOptions: {\n columnSpan: 7\n },\n xlOptions: {\n columnSpan: 6\n }\n },\n text10Col: {\n options: {\n columnStart: \"left-inner\",\n columnSpan: 4,\n bottomSpacing: \"6vw\"\n },\n lgOptions: {\n columnStart: \"inner-2\",\n columnSpan: 8\n },\n xlOptions: {\n columnSpan: 6\n }\n }\n}), Ohe = (e, t) => e ? The() : t === \"Center\" && !e ? Ahe() : Nhe(), NM = (e) => e === \"compact\", Lhe = (e) => e === \"regular\", khe = (e, t) => {\n const n = {\n lgOptions: {\n columnStart: e ? \"inner-8\" : \"left-inner\",\n columnEnd: e ? \"inner-12\" : \"inner-8\"\n },\n xlOptions: {\n columnStart: e ? \"inner-8\" : \"left-inner\",\n columnEnd: e ? \"inner-12\" : \"mid\"\n }\n }, r = {\n lgOptions: {\n columnStart: e ? \"inner-8\" : \"inner-2\",\n columnEnd: \"inner-12\"\n },\n xlOptions: {\n columnStart: e ? \"inner-8\" : \"inner-2\",\n columnEnd: e ? \"inner-12\" : \"inner-8\"\n }\n };\n return t === \"Center\" && !e && (r.mdOptions = {\n columnStart: \"inner-2\",\n columnEnd: \"inner-4\"\n }, r.lgOptions = {\n columnStart: \"inner-4\",\n columnEnd: \"inner-10\"\n }, r.xlOptions = {\n columnStart: \"inner-5\",\n columnEnd: \"inner-10\"\n }, r.twoXlOptions = {\n columnStart: \"inner-4\",\n columnEnd: \"inner-10\"\n }, n.mdOptions = {\n columnStart: \"inner-2\",\n columnEnd: \"inner-4\"\n }, n.lgOptions = {\n columnStart: \"inner-4\",\n columnEnd: \"inner-10\"\n }, n.xlOptions = {\n columnStart: \"inner-5\",\n columnEnd: \"inner-10\"\n }, n.twoXlOptions = {\n columnStart: \"inner-4\",\n columnEnd: \"inner-10\"\n }), {\n text12Col: n,\n text10Col: r\n };\n}, Ihe = (e, t, n) => Lhe(n) ? khe(e, t) : Ohe(e, t), f2 = (e) => {\n const r = e % 4 === 0, a = e % 3 === 0;\n return {\n logos12Col: {\n options: {\n columnStart: e % 2 === 0 ? \"left-inner\" : \"auto\",\n columnSpan: 2\n },\n mdOptions: {\n columnStart: e % 4 === 0 ? \"left-inner\" : \"auto\",\n columnSpan: 1\n },\n lgOptions: {\n columnStart: a ? \"left-inner\" : \"auto\",\n columnSpan: 12 / 3\n },\n xlOptions: {\n columnStart: r ? \"left-inner\" : \"auto\",\n columnSpan: 12 / 4\n }\n },\n logos10Col: {\n lgOptions: {\n columnStart: \"inner-2\",\n columnEnd: \"inner-12\"\n }\n }\n };\n}, p2 = (e, t) => t || (e === \"white\" ? \"neutral 100\" : \"white\"), Dhe = (e, t) => {\n const n = e === \"12 column\", r = [\"xs\", \"sm\", \"md\"].includes(t);\n return n || r;\n}, Phe = (e) => [\"xs\", \"sm\", \"md\"].includes(e), Mhe = ({\n item: e,\n classNameGen: t,\n componentName: n,\n logoThemeClassName: r\n}) => {\n const a = se(\n `${t.getElementClassName(\"imageWrap\")}-${r}`,\n {\n [t.getElementClassName(\"imgWrapWithoutLink\")]: !e.imageLink\n }\n );\n return /* @__PURE__ */ h.jsx(\n ur,\n {\n imageAltText: e.imageAltText,\n baseImage: e.baseImage,\n imageLink: e.imageLink,\n target: e.target,\n analyticsCompName: n,\n loading: \"lazy\",\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n className: a,\n maxSrcSetWidth: 601,\n isAnimated: !1\n },\n e.imageAltText\n );\n}, h2 = ({\n item: e,\n classNameGen: t,\n componentName: n,\n logoThemeClassName: r\n}) => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n e.caption && /* @__PURE__ */ h.jsx(\n Gt,\n {\n className: t.getElementClassName(\"captionWrap\"),\n as: \"p\",\n size: \"Caption\",\n children: e.caption\n }\n ),\n /* @__PURE__ */ h.jsx(\n Mhe,\n {\n item: e,\n classNameGen: t,\n componentName: n,\n logoThemeClassName: r\n }\n )\n] }), Rhe = ({\n logos: e,\n classNameGen: t,\n componentName: n,\n theme: r,\n logoCardTheme: a\n}) => {\n const i = p2(r, a), o = pn.getThemeClassName(i), s = () => {\n const u = e.length > 9;\n return /* @__PURE__ */ h.jsx(lt, { ...f2(0).logos10Col, children: /* @__PURE__ */ h.jsx(\"div\", { className: t.getElementClassName(\"flexContainer\"), children: e.map((l, c) => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n t.getElementClassName(\n u ? \"flex4Item\" : \"flexItem\"\n ),\n {\n [t.getElementClassName(\"item\")]: l.caption\n }\n ),\n children: /* @__PURE__ */ h.jsx(\n h2,\n {\n item: l,\n classNameGen: t,\n componentName: n,\n logoThemeClassName: o\n }\n )\n },\n `${l.imageAltText}-${c + 1}`\n )) }) });\n };\n return e != null && e.length ? /* @__PURE__ */ h.jsx(h.Fragment, { children: s() }) : null;\n}, Bhe = ({\n logos: e,\n classNameGen: t,\n componentName: n,\n theme: r,\n logoCardTheme: a\n}) => {\n const i = p2(r, a), o = pn.getThemeClassName(i), s = () => {\n const u = [3, 5, 9].includes(e.length);\n return /* @__PURE__ */ h.jsx(lt, { ...f2(0).logos10Col, children: /* @__PURE__ */ h.jsx(\"div\", { className: t.getElementClassName(\"flexContainer\"), children: e.map((l, c) => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n u ? t.getElementClassName(\"flex3Item\") : t.getElementClassName(\"flexItem\"),\n {\n [t.getElementClassName(\"item\")]: l.caption\n }\n ),\n children: /* @__PURE__ */ h.jsx(\n h2,\n {\n item: l,\n classNameGen: t,\n componentName: n,\n logoThemeClassName: o\n }\n )\n },\n `${l.imageAltText}-${c + 1}`\n )) }) });\n };\n return e != null && e.length ? /* @__PURE__ */ h.jsx(h.Fragment, { children: s() }) : null;\n}, Fhe = ({\n logos: e,\n classNameGen: t,\n componentName: n,\n theme: r,\n foundationTheme: a,\n logoCardTheme: i\n}) => NM(a) ? /* @__PURE__ */ h.jsx(\n Rhe,\n {\n logos: e,\n classNameGen: t,\n componentName: n,\n theme: r,\n logoCardTheme: i\n }\n) : /* @__PURE__ */ h.jsx(\n Bhe,\n {\n logos: e,\n classNameGen: t,\n componentName: n,\n theme: r,\n logoCardTheme: i\n }\n), jhe = ({\n logos: e,\n foundationTheme: t,\n classNameGen: n,\n componentName: r,\n theme: a,\n logoCardTheme: i\n}) => {\n const o = p2(a, i), s = pn.getThemeClassName(o), u = () => e.map((l, c) => {\n const d = NM(t) ? whe(c) : f2(c);\n return /* @__PURE__ */ h.jsx(\n lt,\n {\n className: n.getElementClassName(\"item\"),\n ...d.logos12Col,\n children: /* @__PURE__ */ h.jsx(\n h2,\n {\n item: l,\n classNameGen: n,\n componentName: r,\n logoThemeClassName: s\n }\n )\n },\n `${l.imageAltText}-${c + 1}`\n );\n });\n return e != null && e.length ? /* @__PURE__ */ h.jsx(h.Fragment, { children: u() }) : null;\n}, CN = ({\n textGroup: e,\n contentCol: t,\n classNameGen: n,\n isGraphicVariant: r\n}) => e ? /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(n.getElementClassName(\"contentCol\"), {\n \"graphic-variant\": r\n }),\n ...t,\n children: /* @__PURE__ */ h.jsx(Wr, { textGroup: e })\n }\n) : null;\nconst Wf = \"LogoType\", Vl = new ke(Wf), $he = {\n motionFeel: \"Expressive\",\n motionIntensity: \"md\",\n motionTypePreset: \"moveUp\",\n scrollTriggerOptions: {\n triggerOnce: !0\n }\n}, m2 = ({\n className: e,\n topSpacer: t = \"4vw\",\n bottomSpacer: n = \"4vw\",\n textGroup: r,\n disclosureType: a,\n theme: i = \"neutral 100\",\n logos: o = [],\n width: s = \"12 column\",\n componentId: u,\n logoCardTheme: l,\n graphicVersionTop: c,\n graphicColorTop: d\n}) => {\n const { foundationTheme: p } = Ze(lr), g = se(e, Vl.getComponentClassName()), v = { topSpacing: t, bottomSpacing: n }, b = Qn(), C = {\n graphicVersionTop: c,\n graphicColorTop: d\n }, w = Phe(b), _ = !!C.graphicVersionTop, x = Ihe(\n _,\n r == null ? void 0 : r.alignment,\n p\n );\n return /* @__PURE__ */ h.jsx(Wn, { motionOptions: $he, children: /* @__PURE__ */ h.jsx(\n cn,\n {\n className: g,\n options: v,\n theme: i,\n disclosure: a,\n id: u,\n ...!w && C,\n children: Dhe(s, b) ? /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\n CN,\n {\n textGroup: r,\n contentCol: x.text12Col,\n classNameGen: Vl,\n isGraphicVariant: _\n }\n ),\n \" \",\n /* @__PURE__ */ h.jsx(\n jhe,\n {\n logos: o,\n foundationTheme: p,\n classNameGen: Vl,\n componentName: Wf,\n theme: i,\n logoCardTheme: l\n }\n )\n ] }) : /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\n CN,\n {\n textGroup: r,\n contentCol: x.text10Col,\n classNameGen: Vl,\n isGraphicVariant: _\n }\n ),\n \" \",\n /* @__PURE__ */ h.jsx(\n Fhe,\n {\n logos: o,\n classNameGen: Vl,\n componentName: Wf,\n theme: i,\n foundationTheme: p,\n logoCardTheme: l\n }\n )\n ] })\n }\n ) });\n};\nm2.displayName = Wf;\nconst hs = \"Nav Banner\", Ga = new ke(hs), Hhe = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Gt, { ...r, size: e, children: n });\n}, OM = ({\n cta: e = {\n ariaLabel: \"\",\n url: \"\",\n size: \"Large\",\n text: \"\",\n target: \"_self\"\n },\n text: t,\n className: n,\n theme: r = \"neutral 100\",\n alignment: a = \"Center\",\n showCloseButton: i = !1,\n bannerId: o = \"\",\n csrfToken: s = \"\",\n bannerPreferences: u = [],\n sectionWrapper: l\n}) => {\n const [c, d] = ze(!0), [, p] = ze({ status: 0, message: \"\" }), { pageSegment: g } = Ze(Vt), v = se(\n n,\n Ga.getComponentClassName(),\n Ga.getPropsValueClassName(\"close-button-active\", i)\n ), b = se(\n n,\n Ga.getElementClassName(\"itemIcon\"),\n Ga.getPropsValueClassName(\"itemIconTheme\", r)\n );\n if (!c || Array.isArray(u) && u.includes(o))\n return null;\n const C = () => {\n d(!1), o && Ic({\n method: \"POST\",\n data: {\n bannerId: o\n },\n headers: {\n \"X-CSRF-Token\": s,\n \"X-Requested-With\": \"XMLHttpRequest\"\n },\n url: \"/webapps/mpp/rest/banner-preference\",\n validateStatus(E) {\n return E >= 200 && E < 300 || E >= 400 && E < 500;\n }\n }).then((E) => {\n var N, P, H;\n p({\n status: (N = E == null ? void 0 : E.data) == null ? void 0 : N.statusCode,\n message: ((P = E == null ? void 0 : E.data) == null ? void 0 : P.status) || ((H = E == null ? void 0 : E.data) == null ? void 0 : H.message)\n });\n }).catch(() => {\n p({ status: 500, message: \"\" });\n });\n }, w = Nn(\n {\n componentName: hs,\n linkText: t,\n clickEvent: (e == null ? void 0 : e.clickEventName) || Ca.Button\n },\n g,\n ln.CTA\n ), _ = Nn(\n {\n componentName: hs,\n linkText: t,\n clickEvent: Ca.Button\n },\n g,\n ln.CTA\n );\n return /* @__PURE__ */ h.jsxs(l, { theme: r, className: v, motion: \"none\", children: [\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(\n Ga.getElementClassName(\"gridItem\"),\n Ga.getPropsValueClassName(\"col\", a)\n ),\n options: { columnStart: \"left-edge\", columnEnd: \"right-edge\" },\n children: /* @__PURE__ */ h.jsxs(\n \"p\",\n {\n className: se(\n Ga.getElementClassName(\"button-bar\"),\n Ga.getElementClassName(\"content\")\n ),\n children: [\n t && /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n className: Ga.getElementClassName(\"itemParagraph\"),\n content: t,\n customWrapper: Hhe(\"Body\"),\n analyticsCompName: hs,\n analyticsTextSection: \"itemParagraph\"\n }\n ),\n e && /* @__PURE__ */ h.jsx(\n xi,\n {\n type: \"link\",\n \"data-pa-click\": w,\n ...e,\n analyticsCompName: hs\n }\n )\n ]\n }\n )\n }\n ),\n i && /* @__PURE__ */ h.jsx(\n \"button\",\n {\n type: \"button\",\n className: se(\n Ga.getElementClassName(\"button\"),\n Ga.getElementClassName(\"closeButton\")\n ),\n onClick: () => C(),\n name: \"nav-banner-close-button\",\n id: \"nav-banner-close-button\",\n \"aria-label\": \"Close button\",\n \"aria-controls\": \"nav-banner-close-button\",\n \"data-pa-click\": _,\n children: /* @__PURE__ */ h.jsx(Uc, { className: b, \"aria-hidden\": \"true\" })\n }\n )\n ] });\n};\nOM.displayName = hs;\nconst LM = (e = {}) => /* @__PURE__ */ h.jsx(OM, { sectionWrapper: cn, ...e });\nLM.displayName = hs;\nconst Vhe = {\n start: 1,\n span: 7\n}, zhe = 311.5, qhe = {\n sm: { slideWidth: zhe }\n}, Ghe = {\n options: {\n topSpacing: \"0vw\"\n }\n}, g2 = \"OfferCardSectionItem\", ms = new ke(g2), Uhe = (e, t, n) => function({ children: a, ...i }) {\n return /* @__PURE__ */ h.jsx(\n Sr,\n {\n ...i,\n size: e,\n className: se(ms.getElementClassName(\"headline\"), {\n [ms.getElementClassName(\"headlineRightSpacing\")]: t === \"top\" || !n,\n [ms.getElementClassName(\"headlineNoAvailability\")]: !n\n }),\n children: a\n }\n );\n}, kM = ({\n className: e = \"\",\n offerTitle: t,\n offerTitleTag: n = \"h3\",\n offerTitleSize: r = \"Headline 7\",\n availability: a,\n cardTheme: i = \"white\",\n mediaFrame: o,\n url: s = \"\",\n target: u = \"_blank\",\n ariaLabel: l = \"\",\n analyticsCompName: c = g2,\n arrowPosition: d = \"bottom\"\n}) => {\n const p = se(\n pn.getThemeClassName(i),\n e,\n ms.getComponentClassName()\n ), { pageSegment: g, host: v, country: b } = Ze(Vt), C = se(\n ms.getElementClassName(\"anchorTagWrapper\")\n ), w = (S) => c && Nn(\n {\n componentName: c,\n linkText: S,\n linkType: Pa.Tertiary,\n clickEvent: Ho.Text\n },\n g,\n ln.CTA\n ), _ = () => t ? /* @__PURE__ */ h.jsx(\n an,\n {\n as: n,\n content: t,\n customWrapper: Uhe(\n r,\n d,\n a\n ),\n analyticsCompName: c,\n analyticsTextSection: \"offerTitle\"\n }\n ) : null, x = l || `${t}, ${a}`;\n return (\n // removed rel=\"noreferrer\" since all target links are partner sites\n // eslint-disable-next-line react/jsx-no-target-blank\n /* @__PURE__ */ h.jsx(\n \"a\",\n {\n className: C,\n \"aria-label\": x,\n \"data-pa-click\": w(l),\n target: u,\n href: qi(s, v, b),\n rel: u === \"_self\" ? \"\" : \"noopener\",\n children: /* @__PURE__ */ h.jsxs(\"div\", { className: p, \"aria-hidden\": !0, children: [\n o && /* @__PURE__ */ h.jsx(\n ur,\n {\n motionOptions: {\n motionFeel: \"Functional\",\n motionTypePreset: \"appear\",\n motionIntensity: \"xs\"\n },\n className: se(ms.getElementClassName(\"image\")),\n ...o\n }\n ),\n _(),\n a && /* @__PURE__ */ h.jsx(\n Gt,\n {\n size: \"Body\",\n className: se(ms.getElementClassName(\"caption\")),\n children: a\n }\n ),\n /* @__PURE__ */ h.jsx(\n Go,\n {\n size: \"Large\",\n className: se(d === \"top\" && \"arrow-icon-position-top\")\n }\n )\n ] })\n }\n )\n );\n};\nkM.displayName = g2;\nconst v2 = \"OfferCardSection\", hv = new ke(v2), Whe = (e) => {\n let t = e;\n return Ra(e) || (t = {\n textGroup: e,\n ...Vhe\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: hv.getElementClassName(\"header\"),\n ...t,\n textGroup: {\n ...t.textGroup,\n analyticsCompName: v2\n }\n }\n );\n}, Khe = (e, t) => function(r) {\n return /* @__PURE__ */ h.jsx(\n kM,\n {\n ...r,\n cardTheme: e,\n arrowPosition: t\n }\n );\n}, Yhe = (e) => /* @__PURE__ */ h.jsx(lt, { children: /* @__PURE__ */ h.jsx(hd, { ...e }) }), b2 = ({\n className: e = \"\",\n headline: t,\n collection: n = [],\n carouselDetails: r,\n disclosureType: a,\n topSpacer: i = \"4vw\",\n bottomSpacer: o = \"4vw\",\n componentId: s,\n graphicVersionBottom: u,\n graphicColorBottom: l,\n graphicVersionTop: c,\n graphicColorTop: d,\n theme: p = \"white\",\n cardTheme: g = \"neutral 100\",\n arrowPosition: v = \"bottom\"\n}) => {\n const b = { topSpacing: i, bottomSpacing: o }, C = se(hv.getComponentClassName(), e), w = {\n items: n,\n renderItem: Khe(g, v),\n carouselDetails: r,\n breakpoints: qhe,\n classes: { container: se(hv.getElementClassName(\"carousel\")) }\n }, _ = {\n graphicVersionBottom: u,\n graphicColorBottom: l,\n graphicVersionTop: c,\n graphicColorTop: d\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n id: s,\n disclosure: a,\n theme: p,\n options: b,\n disclosureGridItemProps: Ghe,\n ..._,\n className: C,\n children: [\n t && Whe(t),\n Yhe(w)\n ]\n }\n );\n};\nb2.displayName = v2;\nconst Xhe = (e, t, n = !0) => {\n const [r, a] = ze(n);\n return yd(e, ([o]) => {\n typeof window < \"u\" && window.requestAnimationFrame(() => {\n var u;\n t.current && a(\n ((u = t.current) == null ? void 0 : u.clientWidth) > o.target.clientWidth\n );\n });\n }), r;\n}, IM = \"LogoTickerSection\", Vr = new ke(IM), mv = \"LogoTickerItem\", Zhe = {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n xlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, Qhe = 3, Jhe = ({ logos: e }) => {\n const t = Ue(null), n = Ue(null), r = Xhe(\n t,\n n\n ), a = se({\n [Vr.getElementClassName(\"logos-grid-static\")]: !r,\n [Vr.getElementClassName(\"logos-grid\")]: r\n }), i = se(\n Vr.getElementClassName(\"logos-slide-container\"),\n {\n [Vr.getElementClassName(\"logos-slide-hidden\")]: !r\n }\n ), o = (u) => {\n if (!t.current)\n return;\n const l = u.target, c = t.current, d = l.getBoundingClientRect(), p = t.current.getBoundingClientRect();\n if (d.left < p.left) {\n c.scrollLeft += d.left - p.left;\n return;\n }\n d.right > p.right && (c.scrollLeft += d.right - p.right);\n }, s = (u) => {\n u.preventDefault();\n };\n return /* @__PURE__ */ h.jsx(lt, { ...Zhe, className: a, children: /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: Vr.getElementClassName(\"logos-container\"),\n ref: t,\n children: [\n /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Vr.getElementClassName(\"logos-slide-container\"),\n ref: n,\n children: /* @__PURE__ */ h.jsx(\"div\", { className: Vr.getElementClassName(\"logos-slide\"), children: e.map((u) => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Vr.getElementClassName(\"image-container\"),\n onFocus: o,\n children: /* @__PURE__ */ h.jsx(\n ur,\n {\n ...u,\n className: Vr.getElementClassName(\"image-frame\"),\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n isAnimated: !1,\n imageLinkAttrs: { onMouseDown: s },\n loading: \"eager\",\n analyticsCompName: mv\n },\n u.imageAltText\n )\n },\n `image-container-${u.imageAltText}`\n )) })\n }\n ),\n [...Array(Qhe)].map((u, l) => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: i,\n children: /* @__PURE__ */ h.jsx(\"div\", { className: Vr.getElementClassName(\"logos-slide\"), children: e.map((c) => /* @__PURE__ */ h.jsx(\n ur,\n {\n ...c,\n loading: \"eager\",\n className: Vr.getElementClassName(\"image-frame\"),\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n isAnimated: !1,\n ariaHidden: !0,\n imageLinkAttrs: {\n tabIndex: -1,\n onMouseDown: s,\n \"aria-hidden\": !0\n },\n imageAltText: \"\",\n analyticsCompName: mv\n },\n `${c.imageAltText}-copy-${l + 1}`\n )) })\n },\n `logo-slide-container-copy-${l + 1}`\n ))\n ]\n }\n ) });\n}, eme = {\n xs: 2,\n sm: 2,\n md: 3,\n lg: 4,\n xl: 5,\n \"2xl\": 7\n}, tme = {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n};\nconst nme = ({ logos: e }) => {\n const t = Qn(), r = 100 / eme[t], a = {\n flex: `1 1 ${r}%`,\n maxWidth: `${r}%`\n };\n return /* @__PURE__ */ h.jsx(lt, { ...tme, children: /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Vr.getElementClassName(\"reduced-motion-container\"),\n children: e.map((i) => /* @__PURE__ */ h.jsx(\"div\", { style: a, children: /* @__PURE__ */ h.jsx(\n ur,\n {\n ...i,\n className: Vr.getElementClassName(\n \"reduced-motion-image-frame\"\n ),\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n isAnimated: !1,\n analyticsCompName: mv\n }\n ) }, i.imageAltText))\n }\n ) });\n};\nconst rme = (e) => {\n let t = e;\n return Ra(e) || (t = {\n textGroup: e\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: Vr.getElementClassName(\"headline\"),\n ...t\n }\n );\n}, DM = ({\n collection: e,\n headline: t,\n disclosureType: n,\n topSpacer: r = \"4vw\",\n bottomSpacer: a = \"4vw\",\n theme: i = \"white\"\n}) => {\n const o = Ji(), s = { topSpacing: r, bottomSpacing: a }, u = {\n options: { topSpacing: \"0vw\" }\n };\n return /* @__PURE__ */ h.jsx(oy, { children: /* @__PURE__ */ h.jsxs(\n cn,\n {\n disclosure: n,\n options: s,\n disclosureGridItemProps: u,\n className: Vr.getComponentClassName(),\n theme: i,\n children: [\n t && rme(t),\n o ? /* @__PURE__ */ h.jsx(nme, { logos: e }) : /* @__PURE__ */ h.jsx(Jhe, { logos: e })\n ]\n }\n ) });\n};\nDM.displayName = IM;\nconst ame = {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n twoXlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n}, ime = (e) => ({\n options: {\n rowsMinHeight: \"auto\",\n ...e\n },\n mdOptions: {\n rowsMinHeight: \"auto\"\n },\n xlOptions: {\n rowsMinHeight: \"auto\",\n rowsGap: \"value\",\n rowsGapValue: \"0vw\"\n }\n}), ome = {\n options: {\n topSpacing: \"2vw\"\n }\n}, sme = (e) => e === \"compact\", PM = (e) => e === \"12 column\", ume = (e) => [\"xs\", \"sm\", \"md\", \"lg\"].includes(e), lme = ({\n actionCard: e,\n componentName: t,\n width: n = \"12 column\",\n isCompactThemeLayout: r = !1\n}) => {\n const a = PM(n), i = {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n topSpacing: r ? \"none\" : \"1rem\"\n },\n lgOptions: {\n columnStart: a ? \"left-inner\" : \"inner-2\",\n columnEnd: a ? \"right-inner\" : \"inner-12\"\n }\n };\n return /* @__PURE__ */ h.jsx(lt, { ...i, children: /* @__PURE__ */ h.jsx(sl, { ...e, analyticsCompName: t }) });\n};\nconst cme = 4, y2 = \"PricingCardItem\", Mn = new ke(y2), dme = (e) => function({ children: n, ...r }) {\n return /* @__PURE__ */ h.jsx(Sr, { ...r, size: e, children: n });\n}, ul = ({\n className: e,\n productName: t = \"\",\n productNameTag: n = \"h3\",\n productNameSize: r = \"Title\",\n subheading: a,\n paragraph: i = \"\",\n analyticsCompName: o = y2,\n disclosureType: s,\n list: u,\n actionGroup: l,\n mediaFrame: c,\n pricingCardFeatures: d,\n secondaryPricing: p,\n pricingCardItemHeadline: g = \"\",\n cardSize: v = \"3col\",\n theme: b\n}) => {\n const C = se(\n e,\n Mn.getElementClassName(\"wrapper\"),\n Mn.getElementClassName(\"no-media\"),\n Mn.getPropsValueClassName(\"spacing\", v),\n Mn.getElementClassName(v),\n b ? pn.getThemeClassName(b) : \"\"\n ), w = se(\n e,\n Mn.getElementClassName(\"wrapper\"),\n Mn.getElementClassName(\"media\"),\n Mn.getElementClassName(v)\n ), _ = c && Rh(c), x = () => t ? /* @__PURE__ */ h.jsx(\n an,\n {\n as: n,\n className: Mn.getElementClassName(\n `${_ ? \"image-\" : \"\"}product-name`\n ),\n content: t,\n customWrapper: dme(r),\n analyticsCompName: o,\n analyticsTextSection: \"product-name\"\n }\n ) : null, S = () => g ? /* @__PURE__ */ h.jsx(\n an,\n {\n content: g,\n customWrapper: ka(\"Body Large\"),\n className: Mn.getElementClassName(\n `${_ ? \"image-\" : \"\"}pricing-header`\n )\n }\n ) : null, E = () => u ? /* @__PURE__ */ h.jsx(\"div\", { className: Mn.getElementClassName(\"dataGridItem\"), children: u.map(\n ({\n numberGroup: D,\n text: T,\n topBorder: j,\n bottomBorder: F,\n topSpacer: L,\n bottomSpacer: q,\n indent: W,\n alignment: X,\n tooltip: de\n }, Se) => {\n const Te = `item-${Se}+1`, Le = se(\n Mn.getElementClassName(\"dataItem\")\n );\n return /* @__PURE__ */ h.jsx(\n pd,\n {\n numberGroup: D,\n text: T,\n topBorder: j,\n bottomBorder: F,\n className: Le,\n topSpacer: L,\n bottomSpacer: q,\n indent: W,\n alignment: X,\n tooltip: de\n },\n Te\n );\n }\n ) }) : null, N = () => d ? /* @__PURE__ */ h.jsx(\n Ls,\n {\n analyticsCompName: o,\n ...d,\n maxItems: cme\n }\n ) : null, P = (D) => {\n if (!D)\n return null;\n const { prefix: T, number: j, suffix: F } = D.number1;\n return /* @__PURE__ */ h.jsxs(\n Gt,\n {\n size: \"Body Large\",\n as: \"span\",\n className: Mn.getElementClassName(\"secondaryNumberGroup\"),\n children: [\n T && /* @__PURE__ */ h.jsx(an, { as: \"span\", content: T }),\n j && /* @__PURE__ */ h.jsx(an, { as: \"span\", content: j }),\n F && /* @__PURE__ */ h.jsx(an, { as: \"span\", content: F })\n ]\n }\n );\n }, H = (D, T) => {\n if (!D)\n return null;\n const j = `secondary-item-${T + 1}`, { numberGroup: F, text: L } = D;\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: Mn.getElementClassName(\"secondaryPricingItem\"),\n children: [\n P(F),\n L && /* @__PURE__ */ h.jsx(\n an,\n {\n content: L,\n as: \"span\",\n customWrapper: ka(\"Body\")\n }\n )\n ]\n },\n j\n );\n }, k = () => p ? /* @__PURE__ */ h.jsx(\"div\", { className: Mn.getElementClassName(\"secondaryPricing\"), children: p == null ? void 0 : p.map(\n (D, T) => H(D, T)\n ) }) : null, Q = () => a ? /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"p\",\n className: Mn.getElementClassName(\"subheading\"),\n content: a,\n customWrapper: ka(\"Body\"),\n analyticsCompName: o,\n analyticsTextSection: \"subheading\"\n }\n ) : null, I = () => i ? /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"p\",\n className: Mn.getElementClassName(\"paragraph\"),\n content: i,\n customWrapper: ka(\"Caption\"),\n analyticsCompName: o,\n analyticsTextSection: \"paragraph\"\n }\n ) : null, G = () => l ? /* @__PURE__ */ h.jsx(Ns, { ...l, analyticsCompName: o }) : null, $ = () => s ? /* @__PURE__ */ h.jsx(\n Ci,\n {\n ...s,\n analyticsCompName: o,\n analyticsTextSection: \"disclosure\"\n }\n ) : null, z = () => _ ? /* @__PURE__ */ h.jsx(\n Ur,\n {\n className: Mn.getElementClassName(\"image\"),\n maxSrcSetWidth: 1280,\n roundedCorners: !0,\n ..._,\n motionOptions: {\n motionTypePreset: \"appear\",\n motionIntensity: \"lg\"\n },\n analyticsCompName: o\n }\n ) : null;\n return c ? (() => /* @__PURE__ */ h.jsxs(\"div\", { className: w, children: [\n z(),\n /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: Mn.getPropsValueClassName(\"spacing\", v),\n children: [\n /* @__PURE__ */ h.jsxs(\"div\", { className: Mn.getElementClassName(\"productInfo\"), children: [\n x(),\n Q(),\n I()\n ] }),\n /* @__PURE__ */ h.jsx(\"div\", { className: Mn.getElementClassName(\"pricingHeader\"), children: S() }),\n /* @__PURE__ */ h.jsx(\"div\", { className: Mn.getElementClassName(\"dataGroup\"), children: E() }),\n /* @__PURE__ */ h.jsx(\"div\", { className: Mn.getElementClassName(\"featureList\"), children: N() }),\n /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Mn.getElementClassName(\n \"secondaryPricingGroup\"\n ),\n children: k()\n }\n ),\n /* @__PURE__ */ h.jsxs(\"div\", { className: Mn.getElementClassName(\"actionGroup\"), children: [\n G(),\n $()\n ] })\n ]\n }\n )\n ] }))() : (() => /* @__PURE__ */ h.jsxs(\"div\", { className: C, children: [\n x(),\n S(),\n E(),\n N(),\n k(),\n Q(),\n I(),\n /* @__PURE__ */ h.jsxs(\"div\", { className: Mn.getElementClassName(\"actionGroup\"), children: [\n G(),\n $()\n ] })\n ] }))();\n};\nul.displayName = y2;\nconst fme = \"neutral 100\", pme = pn.getThemeClassName(fme), xN = (e, t) => {\n const n = `item-${t + 1}`;\n return /* @__PURE__ */ h.jsx(\n ul,\n {\n ...e,\n className: pme\n },\n n\n );\n}, hme = (e, t, n, r, a, i) => {\n const o = e.length >= 2, s = t.length >= 1, u = Math.max(e.length, t.length), l = se(\n \"pricing-card-grid-container\",\n `pricing-card-grid-container-${u}cards`,\n {\n [`pricing-card-grid-container-overflow-${r ? \"12col\" : \"10col\"}`]: a\n }\n ), c = {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n xlOptions: {\n columnStart: r ? \"left-inner\" : \"inner-2\",\n columnEnd: r ? \"right-inner\" : \"inner-12\"\n }\n };\n return /* @__PURE__ */ h.jsxs(lt, { className: l, ...c, children: [\n o && e.map(\n (d, p) => xN({ ...d, cardSize: n, theme: i }, p)\n ),\n s && t.map(\n (d, p) => xN(\n { ...d, cardSize: n, theme: i },\n p + e.length\n )\n )\n ] });\n}, mme = ({\n row1: e = [],\n row2: t = [],\n viewport: n = \"sm\",\n cardSize: r = \"3col\",\n width: a = \"12 column\",\n cardTheme: i\n}) => {\n const o = ume(n), s = PM(a);\n return /* @__PURE__ */ h.jsx(h.Fragment, { children: hme(\n e,\n t,\n r,\n s,\n o,\n i\n ) });\n}, gme = (e, t, n) => {\n if (!e)\n return null;\n const r = new ke(n);\n let a = e;\n return Ra(e) || (a = {\n ...t,\n textGroup: e\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: r.getElementClassName(\"header\"),\n ...a,\n textGroup: {\n ...a.textGroup,\n analyticsCompName: n\n }\n }\n );\n}, vme = ({\n textGroup: e,\n componentName: t\n}) => gme(e, {\n start: 1,\n span: 7\n}, t);\nconst bme = \"PricingCardHorizontal\", yme = new ke(bme), Cme = \"neutral 100\", xme = pn.getThemeClassName(Cme), SN = (e, t) => /* @__PURE__ */ h.jsx(lt, { className: \"pricing-card-grid-item\", ...ame, children: e.map(\n ({\n productName: n,\n productNameTag: r,\n productNameSize: a,\n subheading: i,\n paragraph: o,\n list: s,\n disclosureType: u,\n actionGroup: l,\n mediaFrame: c,\n pricingCardFeatures: d,\n pricingCardItemHeadline: p,\n secondaryPricing: g\n }, v) => {\n const b = `item-${v}+1`;\n return /* @__PURE__ */ h.jsx(\n ul,\n {\n productName: n,\n productNameTag: r,\n productNameSize: a,\n subheading: i,\n paragraph: o,\n list: s,\n disclosureType: u,\n actionGroup: l,\n mediaFrame: c,\n cardSize: t,\n pricingCardFeatures: d,\n pricingCardItemHeadline: p,\n secondaryPricing: g,\n className: se(\n yme.getElementClassName(\"pricingCardItem\"),\n xme\n )\n },\n b\n );\n }\n) }), Sme = ({ row1: e, row2: t, cardSize: n = \"3col\" }) => {\n const r = e.length >= 2, a = t.length >= 1;\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n r && SN(e, n),\n a && SN(t, n)\n ] });\n}, _me = (e, t, n, r) => {\n Yi(() => {\n let a = 0;\n const i = (u) => {\n const l = [].slice.call(u), c = l.map((p) => {\n const { style: g } = p;\n return g.minHeight = \"\", p.offsetHeight;\n }), d = Math.max(...c);\n l.forEach((p) => {\n const { style: g } = p;\n g.minHeight = `${d}px`;\n });\n }, o = (u) => {\n let l = { rowOffset: 0, currentRow: 0 };\n u.forEach((c) => {\n c.offsetHeight > l.rowOffset ? (l = {\n rowOffset: c.offsetHeight,\n currentRow: l.currentRow + 1\n }, c.classList.add(`row-${l.currentRow}`)) : c.offsetHeight === l.rowOffset && c.classList.add(`row-${l.currentRow}`);\n }), a = l.currentRow;\n }, s = () => {\n o(\n document.querySelectorAll(e)\n ), Array(a + 1).fill(null).forEach((l, c) => {\n i(\n document.querySelectorAll(\n `.row-${c} ${t}`\n )\n ), i(\n document.querySelectorAll(\n `.row-${c} ${n}`\n )\n ), i(\n document.querySelectorAll(\n `.row-${c} ${r}`\n )\n );\n });\n };\n return window.addEventListener(\"resize\", s), s(), () => window.removeEventListener(\"resize\", s);\n }, [t, n, r, e]);\n}, Kf = \"PricingCardHorizontal\", Fg = new ke(Kf), Eme = 3, C2 = ({\n className: e = \"\",\n collection: t = [],\n collection2: n = [],\n cardSize: r = \"3col\",\n textGroup: a,\n topSpacer: i = \"6vw\",\n bottomSpacer: o = \"6vw\",\n disclosureType: s,\n actionCard: u,\n componentId: l,\n theme: c,\n cardTheme: d,\n width: p,\n rowStackingBehavior: g = \"overflow\",\n ...v\n}) => {\n const b = Qn(), C = [\"xs\", \"sm\", \"md\", \"lg\"].includes(b), { foundationTheme: w } = Ze(lr);\n _me(\n \".pricing-card-item-media\",\n \".pricing-card-item-product-info\",\n \".pricing-card-item-data-group\",\n \".pricing-card-item-action-group\"\n );\n const _ = { topSpacing: i, bottomSpacing: o }, x = n.length >= 1, S = t.length === Eme, E = n.length > 1, N = C && S && x && !E, P = g === \"stacking\", H = se(e, Fg.getComponentClassName(), {\n [Fg.getElementClassName(\"mobile-layout\")]: N,\n [Fg.getElementClassName(\"stacking\")]: P\n }), k = () => {\n if (!N)\n return [t, n];\n const $ = t[t.length - 1], z = t.slice(0, -1), B = [$, ...n];\n return [z, B];\n }, [Q, I] = k(), G = sme(w);\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: H,\n ...ime(_),\n disclosure: s,\n id: l,\n disclosureGridItemProps: ome,\n theme: c,\n ...v,\n children: [\n a && /* @__PURE__ */ h.jsx(\n vme,\n {\n textGroup: a,\n componentName: Kf\n }\n ),\n G ? /* @__PURE__ */ h.jsx(\n mme,\n {\n row1: Q,\n row2: I,\n width: p,\n cardSize: r,\n viewport: b,\n cardTheme: d\n }\n ) : /* @__PURE__ */ h.jsx(\n Sme,\n {\n row1: Q,\n row2: I,\n cardSize: r\n }\n ),\n u && /* @__PURE__ */ h.jsx(\n lme,\n {\n actionCard: u,\n componentName: Kf,\n width: p,\n isCompactThemeLayout: G\n }\n )\n ]\n }\n );\n};\nC2.displayName = Kf;\nconst wme = () => ({\n textCol: {\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n }\n});\nconst pc = \"PricingMegaCard\", Oa = new ke(pc), Tme = (e) => e ? /* @__PURE__ */ h.jsx(\"div\", { className: Oa.getElementClassName(\"dataGridItem\"), children: e.map(\n ({\n numberGroup: t,\n text: n,\n topBorder: r,\n bottomBorder: a,\n topSpacer: i,\n bottomSpacer: o,\n indent: s,\n alignment: u\n }, l) => {\n const c = `item-${l}+1`, d = se(\n Oa.getElementClassName(\"dataItem\")\n );\n return (t || n) && /* @__PURE__ */ h.jsx(\n pd,\n {\n numberGroup: t,\n text: n,\n topBorder: r,\n bottomBorder: a,\n className: d,\n topSpacer: i,\n bottomSpacer: o,\n indent: s,\n alignment: u\n },\n c\n );\n }\n) }) : null, Ame = (e) => e.map(\n ({ list: t, productName: n, productNameSize: r, productNameTag: a, cardSize: i }, o) => {\n const s = `key-${o}`;\n return /* @__PURE__ */ h.jsx(\n ul,\n {\n className: se(Oa.getElementClassName(\"grid-item\")),\n list: t,\n productName: n,\n productNameSize: r,\n productNameTag: a,\n cardSize: i\n },\n s\n );\n }\n), Nme = (e, t) => t ? /* @__PURE__ */ h.jsx(\n Ci,\n {\n ...t,\n className: Oa.getElementClassName(\"disclosure\"),\n analyticsCompName: e,\n analyticsTextSection: \"disclosure\"\n }\n) : null, Yf = ({\n className: e = \"\",\n collection1: t = [],\n collection2: n = [],\n collection3: r = [],\n collection4: a = [],\n textGroup: i,\n actionCard: o,\n topSpacer: s = \"4vw\",\n bottomSpacer: u = \"4vw\",\n disclosureType: l,\n cardTheme: c = \"blue 700\",\n theme: d = \"white\",\n numberRowTheme: p = \"neutral 100\",\n collection1Disclosure: g,\n componentId: v\n}) => {\n const b = se(e, Oa.getComponentClassName()), C = { topSpacing: s, bottomSpacing: u }, w = wme(), _ = se(\n pn.getThemeClassName(c),\n Oa.getElementClassName(\"top-section\")\n ), x = Nme(pc, g), S = i || t.length > 0, E = (N) => {\n if (!N || N.length < 1)\n return null;\n const P = N.find((k) => k.text || k.numberGroup), H = se(\n Oa.getElementClassName(\"pricing-card\"),\n Oa.getElementClassName(\"list\"),\n Oa.getElementClassName(\"data-list\"),\n pn.getThemeClassName(p)\n );\n return /* @__PURE__ */ h.jsx(lt, { ...w.textCol, children: /* @__PURE__ */ h.jsx(\"div\", { className: H, children: P && Tme(N) }) });\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: b,\n options: C,\n disclosure: l,\n theme: d,\n id: v,\n children: [\n S && /* @__PURE__ */ h.jsxs(lt, { className: _, ...w.textCol, children: [\n i && /* @__PURE__ */ h.jsx(\n mn,\n {\n ...i,\n className: se(Oa.getElementClassName(\"text-group\")),\n analyticsCompName: pc\n }\n ),\n t.length > 0 && /* @__PURE__ */ h.jsxs(\"div\", { className: Oa.getElementClassName(\"pricing-list\"), children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: se(Oa.getElementClassName(\"list\")), children: Ame(t) }),\n x\n ] })\n ] }),\n E(n),\n E(r),\n E(a),\n o && /* @__PURE__ */ h.jsx(lt, { children: /* @__PURE__ */ h.jsx(\n sl,\n {\n ...o,\n ...w.textCol,\n analyticsCompName: pc\n }\n ) })\n ]\n }\n );\n};\nYf.displayName = pc;\nvar or = /* @__PURE__ */ ((e) => (e.Text = \"Text\", e.Symbol = \"Symbol\", e.PricingCardItem = \"Pricing Card Item\", e.ButtonGroup = \"Button Group\", e.HeaderWithImage = \"Header with Image\", e))(or || {}), na = /* @__PURE__ */ ((e) => (e.Data = \"Data\", e.Header = \"Header\", e))(na || {}), Mu = /* @__PURE__ */ ((e) => (e.row = \"row\", e.col = \"col\", e.colgroup = \"colgroup\", e))(Mu || {}), yr = /* @__PURE__ */ ((e) => (e.Data = \"Data\", e.Header = \"Header\", e))(yr || {});\nconst Ome = \"Table\", rs = new ke(Ome), Hh = vt.forwardRef(\n ({\n rowIdx: e,\n rowType: t,\n cell: n,\n className: r = \"\",\n idx: a,\n tabIndex: i,\n handleOnBlur: o,\n children: s,\n scope: u,\n additionalEmptyCells: l,\n colspan: c\n }, d) => {\n const p = n.type;\n if (![\n na.Header,\n na.Data\n ].includes(p))\n return null;\n if (t === yr.Header || p === na.Header) {\n const b = se(\n rs.getElementClassName(\"cell\"),\n {\n [rs.getElementClassName(\"alignStart\")]: t === yr.Data && p === na.Header || a === 0\n },\n r\n ), w = typeof l == \"number\" && l > 1 && Array.from({ length: l - 1 }, (x, S) => /* @__PURE__ */ h.jsx(\n \"td\",\n {\n \"aria-hidden\": !0,\n className: b\n },\n `colgroup-cell-${S}+1`\n )), _ = p === na.Data ? \"td\" : \"th\";\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\n _,\n {\n scope: u,\n className: b,\n \"aria-hidden\": e > 0 && n.isRepeatingHeader,\n ref: d,\n tabIndex: i,\n onBlur: o,\n colSpan: c,\n children: s\n }\n ),\n w\n ] });\n }\n const v = se(\n rs.getElementClassName(\"cell\"),\n {\n [rs.getElementClassName(\"alignStart\")]: n.content.type === or.Text,\n [rs.getElementClassName(\"alignStart\")]: n.content.type === or.PricingCardItem,\n [rs.getElementClassName(\"placeCenterWhenMobile\")]: n.content.type === or.Symbol,\n [rs.getElementClassName(\"cta\")]: n.content.type === or.ButtonGroup\n },\n r\n );\n return /* @__PURE__ */ h.jsx(\"td\", { className: v, children: s });\n }\n);\nHh.displayName = \"TableCell\";\nconst MM = \"Table\", Xf = new ke(MM), Lme = (e) => [Q0.Checkmark, xs, Q0.Dash].includes(\n e.type\n) ? e.type === Q0.Checkmark ? /* @__PURE__ */ h.jsx(m9, { color: e.color, ariaLabel: e.ariaLabel }) : /* @__PURE__ */ h.jsx(tie, { ariaLabel: e.ariaLabel }) : null, kme = (e) => {\n var t;\n return ((t = e.content) == null ? void 0 : t.length) > 1;\n}, Ime = ({ children: e, ...t }) => /* @__PURE__ */ h.jsx(\"span\", { ...t, children: e }), x2 = ({\n content: e,\n analyticsCompName: t\n}) => {\n const n = e == null ? void 0 : e.text;\n if (!n)\n return null;\n const a = typeof n == \"object\" && kme(n);\n return /* @__PURE__ */ h.jsx(\n dh,\n {\n content: n,\n lineProps: {\n customWrapper: a ? void 0 : Ime,\n className: se({\n [Xf.getElementClassName(\"itemParagraph\")]: a,\n [Xf.getElementClassName(\"cellContentText\")]: !a\n }),\n analyticsCompName: t\n }\n }\n );\n}, S2 = ({\n tooltip: e,\n children: t\n}) => /* @__PURE__ */ h.jsxs(\"div\", { className: Xf.getElementClassName(\"cellContentWrapper\"), children: [\n t,\n /* @__PURE__ */ h.jsx(\n p9,\n {\n description: e,\n theme: \"v3\",\n className: Xf.getElementClassName(\"tooltipIcon\"),\n tooltipClassName: \"tooltip\"\n }\n )\n] }), _2 = ({\n content: e,\n tooltip: t,\n analyticsCompName: n = MM\n}) => {\n if (![\n or.Text,\n or.Symbol,\n or.PricingCardItem,\n or.ButtonGroup\n ].includes(e == null ? void 0 : e.type))\n return null;\n if (e.type === or.Text) {\n const a = x2({ content: e, analyticsCompName: n });\n return t ? /* @__PURE__ */ h.jsx(S2, { tooltip: t, children: /* @__PURE__ */ h.jsx(\"div\", { children: a }) }) : a;\n }\n return e.type === or.PricingCardItem ? /* @__PURE__ */ h.jsx(\n ul,\n {\n ...e == null ? void 0 : e.pricingCardItem,\n analyticsCompName: n\n }\n ) : e.type === or.ButtonGroup ? /* @__PURE__ */ h.jsx(\n Ns,\n {\n ...e == null ? void 0 : e.cta,\n className: pn.getThemeClassName(\"neutral 100\"),\n analyticsCompName: n\n }\n ) : e.type === or.Symbol ? Lme(e.symbol) : null;\n}, Dme = \"Table\", T0 = new ke(Dme), E2 = ({\n row: e,\n classes: t = {},\n children: n,\n isExpanded: r,\n isHiddenRow: a,\n isInert: i\n}) => {\n const o = e.type;\n if (![yr.Data, yr.Header].includes(\n o\n ))\n return null;\n const u = se(\n T0.getElementClassName(\"headerRow\"),\n t.headerRow\n ), l = se(\n T0.getElementClassName(\"dataRow\"),\n t.dataRow\n ), c = T0.getElementClassName(\"btnRow\"), d = {\n hidden: {\n display: \"none\"\n },\n initial: {\n opacity: 0\n },\n animate: {\n opacity: [0, 1, 1]\n }\n }, p = {\n duration: tn.constants.Functional.multiplier.appear * 10,\n ease: tn.constants.Functional.ease\n }, g = se(T0.getElementClassName(\"row\"), {\n [u]: o === yr.Header,\n [l]: o === yr.Data,\n [c]: e.cells.find(\n (v) => v.content.type === or.ButtonGroup\n )\n });\n return /* @__PURE__ */ h.jsx(\n Wn,\n {\n as: \"tr\",\n className: g,\n isAnimated: !a,\n variants: d,\n transition: p,\n animate: !r && a ? \"hidden\" : \"animate\",\n inert: i ? \"\" : void 0,\n children: n\n }\n );\n};\nE2.displayName = \"TableRow\";\nconst Pme = \"Table\", Mme = new ke(Pme), Rme = (e) => {\n const { innerProps: t } = e;\n return /* @__PURE__ */ h.jsx(_2, { ...t });\n}, Bme = (e) => {\n const { innerProps: t } = e;\n return /* @__PURE__ */ h.jsx(bh, { ...t });\n}, Fme = (e) => {\n const { innerProps: t } = e;\n return /* @__PURE__ */ h.jsx(E2, { ...t });\n}, jme = Lt((e, t) => {\n const { innerProps: n } = e;\n return /* @__PURE__ */ h.jsx(Hh, { ref: t, ...n });\n}), $me = (e) => {\n const {\n row: t,\n cell: n,\n analyticsCompName: r,\n components: a,\n scope: i,\n isWithinMainCategoryHeader: o\n } = e, s = (a == null ? void 0 : a.TableCellContent) ?? Rme, u = {\n content: n.content,\n tooltip: n == null ? void 0 : n.tooltip,\n analyticsCompName: r\n }, l = i === Mu.colgroup;\n return /* @__PURE__ */ h.jsx(\n s,\n {\n innerProps: u,\n data: {\n rowType: t.type,\n cellType: n.type,\n isWithinColGroupRow: l,\n isWithinMainCategoryHeader: o\n }\n }\n );\n}, Hme = (e) => {\n const { truncateButtonProps: t, components: n, pageSegment: r } = e, {\n isExpanded: a,\n truncateButton: i,\n numberOfHiddenRows: o = 0,\n analyticsCompName: s,\n handleToggleView: u\n } = t, l = (n == null ? void 0 : n.TruncateButton) ?? Bme, c = () => {\n if (a || !i || !i.ariaTextMore)\n return \"\";\n const C = i.ariaTextMore, w = o.toString();\n return C.replace(\"${rowsCount}\", w);\n }, p = (() => i ? a ? i.lessTextLabel : i.moreTextLabel : \"\")(), g = (C) => s && Nn(\n {\n componentName: s,\n linkText: C,\n linkType: Pa.Tertiary,\n clickEvent: Ho.Text\n },\n r,\n ln.CTA\n ), v = se(\n Mme.getElementClassName(\"expand-button\"),\n pn.getThemeClassName(\"neutral 100\")\n ), b = {\n \"aria-label\": c(),\n \"aria-expanded\": a,\n text: p,\n iconType: a ? \"Chevron Up\" : \"Chevron Down\",\n onClick: u,\n className: v,\n \"data-pa-click\": g(p)\n };\n return /* @__PURE__ */ h.jsx(\n l,\n {\n data: {\n truncateButtonProps: t\n },\n innerProps: b\n }\n );\n}, Vme = ({ components: e, shouldTruncateTable: t, isLastVisibleRow: n, ...r }) => {\n const a = (e == null ? void 0 : e.TableRow) ?? Fme;\n return /* @__PURE__ */ h.jsx(\n a,\n {\n innerProps: r,\n data: {\n shouldTruncateTable: t,\n isLastVisibleRow: n\n }\n }\n );\n}, zme = Lt(\n ({\n numberOfVisibleRows: e,\n components: t,\n hiddenFirstCellTabIndex: n,\n isLastVisibleRow: r,\n numberOfColumns: a,\n ...i\n }, o) => {\n const s = (t == null ? void 0 : t.TableCell) ?? jme, u = !(t != null && t.TableCell);\n let l;\n const c = {\n ...i\n };\n if (u) {\n const d = e === i.rowIdx, p = i.idx === 0;\n d && p && (l = o, c.tabIndex = n);\n } else\n l = o;\n return /* @__PURE__ */ h.jsx(\n s,\n {\n ref: l,\n innerProps: c,\n data: {\n hiddenFirstCellTabIndex: n,\n isLastVisibleRow: r,\n numberOfColumns: a\n }\n }\n );\n }\n), qme = (e, t, n) => {\n if (!(e !== yr.Header && t !== na.Header)) {\n if (e === yr.Header && t === na.Header)\n return Mu.col;\n if (e === yr.Data && t === na.Header && n === 1)\n return Mu.colgroup;\n if (t !== na.Data)\n return Mu.row;\n }\n}, _N = (e, t, n) => e === yr.Data && t === na.Header && n === 1, Gme = (e) => e === Mu.colgroup, Ume = \"Table\", jg = new ke(Ume), RM = vt.forwardRef(\n (e, t) => {\n const {\n numberOfColumns: n,\n className: r = \"\",\n caption: a,\n children: i,\n shouldTruncateTable: o = !1,\n components: s\n } = e, u = se(\n jg.getElementClassName(\"table\"),\n jg.getElementClassName(`column-count-${n}`),\n r\n ), l = {\n \"--table-column-count\": n\n }, { pageSegment: c } = Ze(Vt);\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: jg.getElementClassName(\"tableWrapper\"),\n ref: t,\n children: [\n /* @__PURE__ */ h.jsxs(\"table\", { className: u, style: l, children: [\n /* @__PURE__ */ h.jsx(\"caption\", { className: \"caption\", children: a }),\n /* @__PURE__ */ h.jsx(\"tbody\", { children: i })\n ] }),\n o && Hme({\n components: s,\n truncateButtonProps: e,\n pageSegment: c\n })\n ]\n }\n );\n }\n);\nRM.displayName = \"TableBody\";\nconst BM = \"Table\", Wme = new ke(BM), FM = ({\n numberOfColumns: e,\n rows: t = [],\n caption: n,\n classes: r = {},\n analyticsCompName: a = BM,\n rowNumber: i = 5,\n truncateButton: o,\n components: s\n}) => {\n const [u, l] = ze(!1), [c, d] = ze(0), p = Ue(null), g = () => {\n l(!u);\n const w = p && p.current;\n u || setTimeout(() => {\n d(0), w == null || w.focus();\n });\n }, v = () => {\n d(-1);\n }, b = t.length > i, C = i - 1;\n return /* @__PURE__ */ h.jsx(\n RM,\n {\n numberOfColumns: e,\n caption: n,\n className: se(\n Wme.getElementClassName(\"bnpl-table\"),\n r.table\n ),\n shouldTruncateTable: b,\n isExpanded: u,\n truncateButton: o,\n numberOfHiddenRows: t.length - i,\n handleToggleView: g,\n analyticsCompName: a,\n components: s,\n numberOfVisibleRows: i,\n children: t.map((w, _) => /* @__PURE__ */ h.jsx(\n Vme,\n {\n row: w,\n classes: {\n headerRow: r == null ? void 0 : r.headerRow,\n dataRow: r == null ? void 0 : r.dataRow\n },\n isExpanded: u,\n isHiddenRow: _ >= i,\n shouldTruncateTable: b,\n isLastVisibleRow: C === _,\n components: s,\n children: w.cells.slice(0, e).map((x, S) => {\n const E = qme(\n w.type,\n x.type,\n w.cells.length\n ), N = Gme(E) ? e : void 0, P = t[_ + 1], H = _N(\n w.type,\n x.type,\n w.cells.length\n ), k = P && P.cells[0] && _N(\n P.type,\n P.cells[0].type,\n P.cells.length\n ), Q = H && k;\n return /* @__PURE__ */ h.jsx(\n zme,\n {\n ref: p,\n rowIdx: _,\n rowType: w.type,\n idx: S,\n cell: x,\n className: r.cell,\n handleOnBlur: v,\n scope: E,\n additionalEmptyCells: N,\n components: s,\n hiddenFirstCellTabIndex: c,\n numberOfVisibleRows: i,\n isLastVisibleRow: C === _,\n numberOfColumns: e,\n children: $me({\n row: w,\n cell: x,\n analyticsCompName: a,\n components: s,\n scope: E,\n isWithinMainCategoryHeader: Q\n })\n },\n `cell-${S + 1}`\n );\n })\n },\n `row-${_ + 1}`\n ))\n }\n );\n}, Kme = () => ({\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }\n});\nconst Lo = \"PricingTableCard\", ga = new ke(Lo), Yme = (e, t, n) => {\n const r = se(\n ga.getElementClassName(\"table-cell-data\"),\n ga.getPropsValueClassName(\n \"table-cell-data\",\n n.toString()\n )\n );\n return e.map((a, i) => {\n var s, u, l, c;\n const o = (u = (s = t == null ? void 0 : t[i]) == null ? void 0 : s.content) == null ? void 0 : u.text;\n return ((l = a == null ? void 0 : a.content) == null ? void 0 : l.type) === or.PricingCardItem ? /* @__PURE__ */ h.jsx(\n ul,\n {\n className: r,\n productName: o,\n ...(c = a == null ? void 0 : a.content) == null ? void 0 : c.pricingCardItem,\n analyticsCompName: Lo\n },\n `cell-data-${i + 1}`\n ) : null;\n });\n}, Xme = (e) => {\n const t = se(\n ga.getElementClassName(\"table-wrapper-tablet\")\n ), n = ga.getElementClassName(\"table-data-row\"), { numberOfColumns: r = 0 } = e, a = (e == null ? void 0 : e.rows) || [], i = a.filter(\n (o) => (o == null ? void 0 : o.type) === yr.Header\n );\n return /* @__PURE__ */ h.jsx(\"div\", { className: t, children: a.map((o, s) => {\n var l;\n const u = (o == null ? void 0 : o.cells) || [];\n return (o == null ? void 0 : o.type) === yr.Data ? /* @__PURE__ */ h.jsx(\"div\", { className: n, children: Yme(\n u,\n (l = i == null ? void 0 : i[0]) == null ? void 0 : l.cells,\n r\n ) }, `row-data-${s + 1}`) : null;\n }) });\n}, Zme = (e) => /* @__PURE__ */ h.jsx(\"div\", { className: ga.getElementClassName(\"table-wrapper-desktop\"), children: /* @__PURE__ */ h.jsx(\n FM,\n {\n ...e,\n classes: {\n table: ga.getElementClassName(\"table-container\"),\n headerRow: ga.getElementClassName(\"table-header-row\"),\n dataRow: ga.getElementClassName(\"table-data-row\")\n },\n analyticsCompName: Lo\n }\n) }), Qme = (e) => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n Zme(e),\n Xme(e)\n] }), w2 = ({\n className: e = \"\",\n topSpacer: t = \"4vw\",\n bottomSpacer: n = \"4vw\",\n theme: r = \"blue 700\",\n tableTheme: a = \"white\",\n disclosureTypeInside: i,\n disclosureTypeOutside: o,\n textGroup: s,\n truncatedTextGroup: u,\n cta: l,\n table: c,\n componentId: d\n}) => {\n const p = se(e), g = se(\n pn.getThemeClassName(a),\n ga.getElementClassName(\"grid-item\")\n ), v = { topSpacing: t, bottomSpacing: n }, b = Kme();\n return /* @__PURE__ */ h.jsx(\n cn,\n {\n className: p,\n theme: r,\n options: v,\n disclosure: o,\n id: d,\n children: /* @__PURE__ */ h.jsxs(lt, { ...b, className: g, children: [\n s && /* @__PURE__ */ h.jsx(\n mn,\n {\n ...s,\n className: ga.getElementClassName(\"text-group\"),\n analyticsCompName: Lo\n }\n ),\n u && /* @__PURE__ */ h.jsx(\n Ms,\n {\n ...u,\n styles: {\n wrapper: ga.getElementClassName(\"truncated-text-group\")\n },\n analyticsCompName: Lo\n }\n ),\n c && Qme(c),\n i && /* @__PURE__ */ h.jsx(\n Ci,\n {\n ...i,\n className: ga.getElementClassName(\"disclosure-inside\"),\n analyticsCompName: Lo,\n analyticsTextSection: \"disclosure-inside\"\n }\n ),\n l && /* @__PURE__ */ h.jsx(\n xi,\n {\n ...l,\n className: ga.getElementClassName(\"cta\"),\n analyticsCompName: Lo\n }\n )\n ] })\n }\n );\n};\nw2.displayName = Lo;\nconst Jme = (e, t = { viewportHeightOffset: 0 }) => {\n const { viewportHeightOffset: n } = t, [r, a] = ze(0), [i, o] = ze(0), [s, u] = ze(0), [l, c] = ze(0), [, d] = ze(0), { scrollY: p } = rb(), { height: g, width: v } = Sh(0), { inView: b, ref: C } = ah({\n rootMargin: \"200px 0px\",\n triggerOnce: !0,\n threshold: 0\n }), w = sr(\n (E) => {\n e.current = E, C(E);\n },\n [C, e]\n ), _ = Sc(\n p,\n [0, r, i],\n [0, 0, 1]\n ), x = Sc(\n p,\n [0, s, l],\n [0, 0, 1]\n ), S = typeof window < \"u\" ? window.scrollY : 0;\n return We(() => {\n if (!(e != null && e.current) || g === 0 || !b)\n return;\n const E = g - n, { top: N } = e.current.getBoundingClientRect(), P = N + S - n, H = e.current.offsetHeight, k = P + H, Q = P <= E, I = H <= E, G = Q ? 0 : P - E, $ = P + H, z = I ? 0 : P, B = I ? 0 : k - E;\n a(G), o($), u(z), c(B);\n const O = _.onChange(\n (D) => d(D)\n );\n return () => O();\n }, [\n e,\n _,\n g,\n v,\n n,\n b,\n S\n ]), { inView: b, refCallback: w, elScrollProgressOuter: _, elScrollProgressInner: x };\n}, ege = \".page-segment-control-nav.section-wrapper\", tge = ({ offsetHeight: e = 0 }) => {\n const [t, n] = ze(\"skip-check\"), { height: r } = Sh(0);\n return We(() => {\n const a = document.querySelector(ege);\n if (!a)\n return n(\"skip-check\");\n const i = ([u]) => {\n const { isIntersecting: l, intersectionRatio: c } = u;\n n((() => c === 1 ? \"pinned-above-viewport\" : l ? \"pinned\" : \"unpinned\")());\n }, o = -1 * (r - e - 1), s = new IntersectionObserver(i, {\n rootMargin: `10000px 0px ${o}px 0px`,\n threshold: [0, 1]\n });\n return s.observe(a), () => {\n s == null || s.unobserve(a);\n };\n }, [r, e]), t;\n}, nge = \"div.page-segment-control-nav-griditem\", rge = 2, age = bd(\n rge\n), jM = () => {\n const e = Ue(null), t = Ue({ pinned: 0 }), { pinned: n } = wh(), r = tge({\n offsetHeight: n\n });\n We(() => {\n e.current = typeof document < \"u\" ? document.querySelector(nge) : null;\n }, []);\n const a = sr(() => {\n var i;\n t.current.pinned = (((i = e.current) == null ? void 0 : i.clientHeight) || 0) + age;\n }, []);\n return yd(e.current, a), { pageSegCtrlHeightRef: t, componentPinnedStatus: r };\n}, ige = (e, t) => {\n if (!e.current || t === 0)\n return;\n const n = Array(t).fill(null), { top: r } = e.current.getBoundingClientRect(), a = r + window.scrollY, o = e.current.offsetHeight - window.innerHeight, s = 1 / t, u = o * s;\n return n.map((l, c) => {\n const d = s * (c + 1), p = d - s, g = a + u * (c + 0.01);\n return {\n min: p,\n max: d,\n target: g\n };\n });\n}, oge = (e) => e.reduce(\n (t, n) => {\n var o;\n const { mediaFrame: r, textGroup: a } = n, i = r.type === \"Image\" ? (o = r == null ? void 0 : r.image) == null ? void 0 : o.imageAltText : \"\";\n return {\n ...t,\n mediaCollection: [...t.mediaCollection, r],\n textGroupCollection: [\n ...t.textGroupCollection,\n { ...a, mediaDescription: i }\n ]\n };\n },\n { mediaCollection: [], textGroupCollection: [] }\n), sge = (e, t, n) => {\n const [r, a] = ze(0), [i, o] = ze(), s = sr(\n (c) => a(\n c[0].contentRect.height * c[0].contentRect.width\n ),\n []\n );\n yd(t, s);\n const u = typeof window < \"u\" ? window.scrollY : 0;\n return We(() => {\n if (!e)\n return;\n const c = ige(t, n);\n o(c);\n }, [t, e, n, r, u]), {\n segmentDefs: i,\n updateSegmentAnimateStateOnScroll: (c) => {\n const d = [];\n return Array(n).fill(null).forEach((p, g) => {\n if (!i) {\n d.push({\n animate: \"initial\"\n });\n return;\n }\n const { min: v, max: b } = i[g], w = g + 1 === n ? c >= v : c >= v && c < b;\n d.push({\n animate: w ? \"animate\" : \"initial\"\n });\n }), d;\n }\n };\n}, uge = (e, t) => {\n const n = wt(\n () => `${t ? `#${t}` : \"\"} div.text-group-container:not(.text-group-container-no-scrollable)`,\n [t]\n ), [r, a] = ze(null), i = Ue(0);\n We(() => {\n if (!e)\n return;\n const s = typeof document < \"u\" ? document.querySelector(n) : null;\n a(s);\n }, [n, e]);\n const o = sr(() => {\n i.current = (r == null ? void 0 : r.clientHeight) || 0;\n }, [r]);\n return yd(r, o), { textSectionElHeight: i, textSectionEl: r };\n}, lge = {\n initial: {\n opacity: 0.2\n },\n animate: {\n opacity: 1\n }\n}, cge = {\n initial: {\n opacity: 0\n },\n animate: {\n opacity: 1\n }\n}, dge = {\n initial: {\n height: 0\n },\n animate: {\n height: \"auto\"\n }\n}, fge = {\n initial: {\n opacity: 0,\n zIndex: 0\n },\n animate: {\n opacity: 1,\n zIndex: 1\n }\n};\nconst Ad = $o({\n isScrollable: !0,\n imagePosition: \"Left\",\n hasHeadline: !1\n}), $M = Lt(\n ({\n isScrollable: e,\n imagePosition: t,\n contentLength: n,\n offsetHeight: r,\n theme: a,\n topSpacer: i,\n bottomSpacer: o,\n children: s,\n componentId: u,\n hasHeadline: l,\n ...c\n }, d) => {\n const p = \"ProductSection\", g = new ke(p), v = se(g.getComponentClassName(), {\n [g.getPropsValueClassName(\"scrollable\", e)]: !e\n }), b = se(g.getElementClassName(\"contents\"), {\n [g.getElementClassName(\"contents-scrollable\")]: e,\n [g.getElementClassName(\"contents-no-scrollable\")]: !e\n }), C = wt(\n () => ({ isScrollable: e, imagePosition: t, hasHeadline: l }),\n [e, t, l]\n );\n return /* @__PURE__ */ ue(Ad.Provider, { value: C }, /* @__PURE__ */ ue(\n \"div\",\n {\n ref: d,\n id: u,\n className: v,\n css: V`\n min-height: calc(100vh - ${r}px);\n `,\n style: { \"--item-count\": n }\n },\n /* @__PURE__ */ ue(\n cn,\n {\n theme: a.toLowerCase(),\n options: {\n topSpacing: i,\n bottomSpacing: o\n },\n mdOptions: {\n rowsGap: \"value\",\n rowsGapValue: \"6vw\"\n },\n className: b,\n css: V`\n height: calc(100vh - ${r}px);\n top: ${r}px;\n `,\n ...c\n },\n s\n )\n ));\n }\n);\n$M.displayName = \"ProductSection\";\nconst Zf = ({\n hasHeadline: e,\n isScrollable: t,\n idx: n\n}) => t ? e ? 2 : 1 : e ? n + 2 : n + 1, Qf = ({\n hasHeadline: e,\n isScrollable: t,\n idx: n\n}) => t ? e ? 3 : 2 : e ? n + 3 : n + 2, EN = ({\n children: e,\n idx: t,\n hasHeadline: n,\n mediaSize: r = \"3:4\"\n}) => {\n const { imagePosition: a, isScrollable: i } = Ze(Ad), o = \"MediaContainer\", u = new ke(o).getComponentClassName(), l = r !== \"3:4\", c = () => a === \"Left\" ? l ? \"left-outer\" : \"left-inner\" : \"mid\", d = () => a === \"Left\" ? \"mid\" : l ? \"right-outer\" : \"right-inner\", p = {\n options: { columnStart: \"left-outer\", columnEnd: \"right-outer\" },\n mdOptions: {\n columnStart: c(),\n columnEnd: d(),\n rowStart: Zf({ hasHeadline: n, isScrollable: i, idx: t }),\n rowEnd: Qf({ hasHeadline: n, isScrollable: i, idx: t })\n },\n lgOptions: {\n columnStart: c(),\n columnEnd: d(),\n rowStart: Zf({ hasHeadline: n, isScrollable: i, idx: t }),\n rowEnd: Qf({ hasHeadline: n, isScrollable: i, idx: t })\n },\n className: u\n };\n return /* @__PURE__ */ ue(lt, { ...p }, e);\n}, wN = ({\n mediaFrame: e,\n variants: t,\n animate: n,\n mediaSize: r = \"3:4\",\n offsetHeight: a = 0,\n isMobileViewport: i\n}) => {\n const { isScrollable: o, hasHeadline: s } = Ze(Ad), u = \"MediaItem\", l = new ke(u), c = se(\n l.getComponentClassName(),\n {\n [l.getPropsValueClassName(\"scrollable\", o)]: !o\n },\n l.getPropsValueClassName(\"mediaSize\", r)\n ), d = s ? \"60vmin\" : \"88vmin\", p = () => V`\n & img {\n max-height: ${i ? \"none\" : `calc(${d} - ${a}px)`};\n }\n `;\n return o ? /* @__PURE__ */ ue(\n Cr.div,\n {\n variants: t,\n animate: n,\n className: c,\n css: p()\n },\n /* @__PURE__ */ ue(\n Ur,\n {\n ...e,\n \"aria-hidden\": o,\n maxSrcSetWidth: 2e3,\n analyticsCompName: u\n }\n )\n ) : /* @__PURE__ */ ue(\"div\", { className: c, css: p() }, /* @__PURE__ */ ue(\n Ur,\n {\n ...e,\n \"aria-hidden\": o,\n maxSrcSetWidth: 2e3,\n analyticsCompName: u\n }\n ));\n}, TN = ({\n style: e,\n idx: t,\n hasHeadline: n,\n children: r\n}) => {\n const { isScrollable: a, imagePosition: i } = Ze(Ad), o = \"TextGroupContainer\", s = new ke(o), u = se(s.getComponentClassName(), {\n [s.getPropsValueClassName(\"scrollable\", a)]: !a\n }), l = {\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: i === \"Left\" ? \"inner-3\" : \"left-inner\",\n columnEnd: i === \"Left\" ? \"right-inner\" : \"inner-3\",\n rowStart: Zf({ hasHeadline: n, isScrollable: a, idx: t }),\n rowEnd: Qf({ hasHeadline: n, isScrollable: a, idx: t })\n },\n lgOptions: {\n columnStart: i === \"Left\" ? \"inner-8\" : \"left-inner\",\n columnEnd: i === \"Left\" ? \"right-inner\" : \"inner-6\",\n rowStart: Zf({ hasHeadline: n, isScrollable: a, idx: t }),\n rowEnd: Qf({ hasHeadline: n, isScrollable: a, idx: t })\n },\n className: u\n };\n return /* @__PURE__ */ ue(lt, { ...l }, a ? /* @__PURE__ */ ue(Cr.div, { style: e }, r) : r);\n}, AN = ({\n textGroup: e,\n target: t,\n variants: n,\n animate: r\n}) => {\n const { isScrollable: a } = Ze(Ad), {\n headline: i,\n headlineTag: o,\n headlineSize: s,\n subheading: u,\n paragraph: l,\n paragraphSize: c,\n disclosureType: d\n } = e, p = \"TextGroupItem\", g = new ke(p), v = se(g.getComponentClassName(), {\n [g.getPropsValueClassName(\"scrollable\", a)]: !a\n }), b = () => {\n setTimeout(\n () => t && n2.scrollTo(t, {\n duration: 300,\n smooth: !0\n })\n );\n };\n return a ? /* @__PURE__ */ ue(\"div\", { className: v }, /* @__PURE__ */ ue(\n Cr.div,\n {\n className: g.getElementClassName(\"header\"),\n variants: n == null ? void 0 : n.alwaysDisplay,\n animate: r,\n onFocus: b,\n onClick: b,\n tabIndex: 0\n },\n /* @__PURE__ */ ue(\n mn,\n {\n headline: i,\n headlineTag: o,\n headlineSize: s,\n analyticsCompName: p\n }\n )\n ), /* @__PURE__ */ ue(\n Cr.div,\n {\n className: g.getElementClassName(\"info\"),\n variants: n == null ? void 0 : n.hideOnScroll,\n animate: r,\n transition: {\n duration: tn.constants.Functional.multiplier.appear * 2,\n ease: tn.constants.Functional.ease\n }\n },\n /* @__PURE__ */ ue(\n mn,\n {\n subheading: u,\n paragraph: l,\n paragraphSize: c,\n analyticsCompName: p,\n disclosureType: d\n }\n )\n )) : /* @__PURE__ */ ue(\"div\", { className: v }, /* @__PURE__ */ ue(\n mn,\n {\n className: g.getElementClassName(\"info\"),\n headline: i,\n headlineTag: o,\n headlineSize: s,\n subheading: u,\n paragraph: l,\n analyticsCompName: p,\n disclosureType: d\n }\n ));\n}, NN = (e) => {\n const {\n headline: t,\n headlineSize: n,\n headlineTag: r,\n subheading: a,\n subheadingTag: i,\n removeOrphanFromHeadline: o,\n type: s,\n byline: u,\n alignment: l\n } = e;\n return {\n headline: t,\n headlineSize: n,\n headlineTag: r,\n subheading: a,\n subheadingTag: i,\n removeOrphanFromHeadline: o,\n type: s,\n byline: u,\n alignment: l\n };\n}, pge = (e) => {\n let t = e;\n if (!Ra(e))\n t = {\n textGroup: NN(e)\n };\n else {\n const { textGroup: n } = e, r = NN(\n n\n );\n t = {\n ...e,\n textGroup: r\n };\n }\n return /* @__PURE__ */ h.jsx(Wr, { ...t });\n}, HM = ({\n collection: e = [],\n headline: t,\n applyScroll: n = !0,\n theme: r = \"white\",\n imagePosition: a = \"Left\",\n topSpacer: i = \"6vw\",\n bottomSpacer: o = \"6vw\",\n mediaSize: s = \"3:4\",\n componentId: u,\n itemSpotlightOption: l = \"default\",\n ...c\n}) => {\n const d = Ue(null), p = Qn(), g = Ji(), { pinned: v } = wh(), {\n pageSegCtrlHeightRef: {\n current: { pinned: b }\n }\n } = jM(), C = v + b, w = [\"xs\", \"sm\"].includes(p), _ = n && !g && !w, { inView: x, refCallback: S, elScrollProgressInner: E, elScrollProgressOuter: N } = Jme(d, {\n viewportHeightOffset: C\n }), P = e.length, { segmentDefs: H, updateSegmentAnimateStateOnScroll: k } = sge(x, d, P), { textSectionElHeight: Q, textSectionEl: I } = uge(\n _,\n u\n ), G = wt(() => {\n var de;\n const j = Q.current;\n if (j === 0)\n return [\"100%\", \"-100%\"];\n const F = ((de = I == null ? void 0 : I.children[0]) == null ? void 0 : de.clientHeight) || 0;\n if (j > F)\n return [\"50%\", \"-50%\"];\n const L = e.length, W = j * 0.7, X = F - F / L - C / 2;\n return [`${W}px`, `-${X}px`];\n }, [I == null ? void 0 : I.children, Q.current]), $ = Sc(\n N,\n [0, 1],\n G\n ), { mediaCollection: z = [], textGroupCollection: B = [] } = _ ? oge(e) : {}, O = E.get(), D = k(\n O\n ), T = (j) => j === \"exclusive\" ? cge : lge;\n return /* @__PURE__ */ h.jsx(td, { features: nd, strict: !0, children: /* @__PURE__ */ h.jsxs(\n $M,\n {\n ref: S,\n isScrollable: _,\n imagePosition: a,\n contentLength: P,\n offsetHeight: C,\n theme: r,\n topSpacer: i,\n bottomSpacer: o,\n componentId: u,\n hasHeadline: !!t,\n ...c,\n children: [\n t && pge(t),\n _ ? /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\n EN,\n {\n idx: 0,\n hasHeadline: !!t,\n mediaSize: s,\n children: z.map((j, F) => {\n const L = D[F].animate === \"animate\";\n return /* @__PURE__ */ h.jsx(\n wN,\n {\n mediaSize: s,\n offsetHeight: C,\n mediaFrame: j,\n variants: fge,\n animate: D[F].animate,\n isActive: L\n },\n `media-${F + 1}`\n );\n })\n }\n ),\n /* @__PURE__ */ h.jsx(\n TN,\n {\n hasHeadline: !!t,\n idx: 0,\n style: { y: $ },\n children: B.map((j, F) => /* @__PURE__ */ h.jsx(\n AN,\n {\n textGroup: j,\n target: H ? H[F].target : void 0,\n variants: {\n alwaysDisplay: T(l),\n hideOnScroll: dge\n },\n animate: D[F].animate\n },\n `product-text-group-${F + 1}`\n ))\n }\n )\n ] }) : e.map((j, F) => /* @__PURE__ */ h.jsxs(ws, { children: [\n /* @__PURE__ */ h.jsx(\n EN,\n {\n idx: F,\n mediaSize: s,\n hasHeadline: !!t,\n children: /* @__PURE__ */ h.jsx(\n wN,\n {\n mediaSize: s,\n mediaFrame: j.mediaFrame,\n isMobileViewport: w,\n offsetHeight: C\n }\n )\n }\n ),\n /* @__PURE__ */ h.jsx(TN, { idx: F, hasHeadline: !!t, children: /* @__PURE__ */ h.jsx(AN, { textGroup: j.textGroup }) })\n ] }, `product-${F + 1}`))\n ]\n }\n ) });\n}, hge = (e, t, n, r, a, i = \"regular\") => {\n const o = n ?? \"\", s = t ? \"8vw\" : \"0vw\", u = {\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"mid\"\n }\n }, l = {\n mdOptions: {\n columnStart: \"mid\",\n columnEnd: \"right-inner\"\n }\n }, c = {\n \"1:1\": \"left-inner\",\n \"1:1 Large\": \"left-outer\",\n \"1:1 Extra Large\": \"left-outer\",\n \"3:4\": \"left-inner\",\n \"3:4 Large\": \"left-outer\",\n \"4:3\": \"left-inner\"\n }, d = {\n \"1:1\": \"inner-3\",\n \"1:1 Large\": \"inner-3\",\n \"1:1 Extra Large\": \"inner-3\",\n \"3:4\": \"inner-3\",\n \"3:4 Large\": \"inner-3\",\n \"4:3\": \"inner-3\"\n }, p = i === \"compact\" ? {\n \"1:1\": \"inner-6\",\n \"1:1 Large\": \"mid\",\n \"1:1 Extra Large\": \"inner-7\",\n \"3:4\": \"inner-6\",\n \"3:4 Large\": \"inner-7\",\n \"4:3\": \"mid\"\n } : {\n \"1:1\": \"mid\",\n \"1:1 Large\": \"mid\",\n \"1:1 Extra Large\": \"inner-8\",\n \"3:4\": \"mid\",\n \"3:4 Large\": \"inner-8\",\n \"4:3\": \"mid\"\n }, g = {\n \"1:1\": \"inner-3\",\n \"1:1 Large\": \"inner-3\",\n \"1:1 Extra Large\": \"inner-3\",\n \"3:4\": \"inner-3\",\n \"3:4 Large\": \"inner-3\",\n \"4:3\": \"inner-3\"\n }, v = i === \"compact\" ? {\n \"1:1\": \"inner-8\",\n \"1:1 Large\": \"inner-8\",\n \"1:1 Extra Large\": \"inner-8\",\n \"3:4\": \"inner-8\",\n \"3:4 Large\": \"inner-8\",\n \"4:3\": \"inner-8\"\n } : {\n \"1:1\": \"inner-8\",\n \"1:1 Large\": \"inner-8\",\n \"1:1 Extra Large\": \"inner-9\",\n \"3:4\": \"inner-8\",\n \"3:4 Large\": \"inner-9\",\n \"4:3\": \"inner-8\"\n }, b = {\n \"1:1\": \"right-inner\",\n \"1:1 Large\": \"right-inner\",\n \"1:1 Extra Large\": \"right-inner\",\n \"3:4\": \"right-inner\",\n \"3:4 Large\": \"right-inner\",\n \"4:3\": \"right-inner\"\n }, C = {\n \"1:1\": \"inner-3\",\n \"1:1 Large\": \"inner-3\",\n \"1:1 Extra Large\": \"inner-3\",\n \"3:4\": \"inner-3\",\n \"3:4 Large\": \"inner-3\",\n \"4:3\": \"inner-3\"\n }, w = i === \"compact\" ? {\n \"1:1\": \"inner-8\",\n \"1:1 Large\": \"mid\",\n \"1:1 Extra Large\": \"mid\",\n \"3:4\": \"inner-8\",\n \"3:4 Large\": \"mid\",\n \"4:3\": \"mid\"\n } : {\n \"1:1\": \"mid\",\n \"1:1 Large\": \"mid\",\n \"1:1 Extra Large\": \"inner-6\",\n \"3:4\": \"mid\",\n \"3:4 Large\": \"inner-6\",\n \"4:3\": \"mid\"\n }, _ = {\n \"1:1\": \"right-inner\",\n \"1:1 Large\": \"right-outer\",\n \"1:1 Extra Large\": \"right-outer\",\n \"3:4\": \"right-inner\",\n \"3:4 Large\": \"right-outer\",\n \"4:3\": \"right-inner\"\n }, x = {\n \"1:1\": \"left-inner\",\n \"1:1 Large\": \"left-inner\",\n \"1:1 Extra Large\": \"left-inner\",\n \"3:4\": \"left-inner\",\n \"3:4 Large\": \"left-inner\",\n \"4:3\": \"left-inner\"\n }, S = i === \"compact\" ? {\n \"1:1\": \"inner-6\",\n \"1:1 Large\": \"inner-6\",\n \"1:1 Extra Large\": \"inner-6\",\n \"3:4\": \"inner-6\",\n \"3:4 Large\": \"inner-6\",\n \"4:3\": \"inner-6\"\n } : {\n \"1:1\": \"inner-6\",\n \"1:1 Large\": \"inner-6\",\n \"1:1 Extra Large\": \"inner-5\",\n \"3:4\": \"inner-6\",\n \"3:4 Large\": \"inner-5\",\n \"4:3\": \"inner-6\"\n }, E = {\n \"1:1\": \"inner-3\",\n \"1:1 Large\": \"inner-3\",\n \"1:1 Extra Large\": \"inner-3\",\n \"3:4\": \"inner-3\",\n \"3:4 Large\": \"inner-3\",\n \"4:3\": \"inner-3\"\n };\n return o && (u.className = \"split-section-item-start-col\", (t && a && (n === 3 || n === 4 || n === 5) || t && !a && (n === 2 || n === 3 || n === 4)) && (u.className = \"image-overlap split-section-item-start-col\"), u.options = {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: s\n }, u.mdOptions = {\n columnStart: c[r],\n columnEnd: d[r],\n rowStart: o,\n rowEnd: o + 1,\n topSpacing: \"none\"\n }, u.lgOptions = {\n columnStart: c[r],\n columnEnd: p[r],\n rowStart: o,\n rowEnd: o + 1,\n topSpacing: \"none\"\n }, l.options = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n topSpacing: \"6vw\"\n }, l.mdOptions = {\n columnStart: g[r],\n columnEnd: b[r],\n rowStart: o,\n rowEnd: o + 1,\n verticalAlign: \"center\",\n topSpacing: \"2rem\",\n bottomSpacing: \"2rem\"\n }, l.lgOptions = {\n columnStart: v[r],\n columnEnd: b[r],\n rowStart: o,\n rowEnd: o + 1,\n verticalAlign: \"center\",\n topSpacing: \"3rem\",\n bottomSpacing: \"3rem\"\n }, e && (u.className = \"split-section-item-start-col\", (t && a && (n === 3 || n === 4 || n === 5) || t && !a && (n === 2 || n === 3 || n === 4)) && (u.className = \"image-overlap split-section-item-start-col\"), u.options = {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n topSpacing: s\n }, u.mdOptions = {\n columnStart: C[r],\n columnEnd: _[r],\n rowStart: o,\n rowEnd: o + 1,\n topSpacing: \"none\"\n }, u.lgOptions = {\n columnStart: w[r],\n columnEnd: _[r],\n rowStart: o,\n rowEnd: o + 1,\n topSpacing: \"none\"\n }, l.options = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\",\n topSpacing: \"6vw\"\n }, l.mdOptions = {\n columnStart: x[r],\n columnEnd: E[r],\n rowStart: o,\n rowEnd: o + 1,\n verticalAlign: \"center\",\n topSpacing: \"2rem\",\n bottomSpacing: \"2rem\"\n }, l.lgOptions = {\n columnStart: x[r],\n columnEnd: S[r],\n rowStart: o,\n rowEnd: o + 1,\n verticalAlign: \"center\",\n topSpacing: \"3rem\",\n bottomSpacing: \"3rem\"\n })), {\n startCol: u,\n endCol: l\n };\n}, VM = \"SplitSectionItem\", ON = new ke(VM), mge = ({ mediaFrame: e, mediaSize: t }) => /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n ON.getElementClassName(\"mediaContainer\"),\n ON.getPropsValueClassName(\"ratio\", t)\n ),\n children: /* @__PURE__ */ h.jsx(\n Ur,\n {\n maxSrcSetWidth: 2e3,\n ...e,\n analyticsCompName: VM\n }\n )\n }\n), gge = ({ textGroup: e, featureList: t, analyticsCompName: n }) => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n e && /* @__PURE__ */ h.jsx(mn, { ...e, analyticsCompName: n }),\n t && /* @__PURE__ */ h.jsx(Ls, { analyticsCompName: n, ...t })\n] });\nconst T2 = \"SplitSectionItem\", A0 = new ke(T2), A2 = ({\n imageRightPosition: e,\n isSplitFlow: t = !1,\n topHeadline: n,\n gridRow: r,\n mediaSize: a,\n textGroup: i,\n featureList: o,\n mediaFrame: s,\n isImageFlushed: u = !1,\n analyticsCompName: l = T2\n}) => {\n const c = (i == null ? void 0 : i.type) === \"Quote Block\" && a === \"1:1 Extra Large\" ? \"1:1 Large\" : a, { foundationTheme: d } = Ze(lr), p = hge(\n e,\n t,\n r,\n c,\n n,\n d\n ), [g] = Ma([\"Below MD\"]), v = u && g, b = v ? { columnStart: \"left-outer\", columnEnd: \"right-outer\" } : {}, C = v ? { columnStart: \"left-inner\", columnEnd: \"right-inner\" } : {}, w = {\n ...p.startCol,\n options: {\n ...p.startCol.options,\n ...C\n }\n }, _ = {\n ...p.endCol,\n options: {\n ...p.endCol.options,\n ...b\n }\n }, x = /* @__PURE__ */ h.jsx(\n gge,\n {\n textGroup: i,\n featureList: o,\n analyticsCompName: l\n }\n ), S = /* @__PURE__ */ h.jsx(\n mge,\n {\n mediaFrame: s,\n mediaSize: c\n }\n );\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(\n A0.getElementClassName(\"startCol\"),\n A0.getElementClassName(\"media\")\n ),\n ...w,\n children: v ? x : S\n }\n ),\n /* @__PURE__ */ h.jsx(\n lt,\n {\n className: se(\n A0.getElementClassName(\"endCol\"),\n A0.getElementClassName(\"text\")\n ),\n ..._,\n children: v ? S : x\n }\n )\n ] });\n};\nA2.displayName = T2;\nconst vge = (e) => e % 2 === 0, bge = {\n start: 3,\n span: 8\n};\nconst Vh = \"SplitSection\", zM = new ke(Vh), yge = (e) => {\n let t = e;\n return Ra(e) || (t = {\n textGroup: e,\n ...bge\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: zM.getElementClassName(\"headlineCol\"),\n ...t,\n textGroup: {\n ...t.textGroup,\n analyticsCompName: Vh\n }\n }\n );\n}, N2 = ({\n className: e,\n collection: t = [],\n imagePosition: n,\n variant: r,\n headline: a,\n isImageFlushed: i = !1,\n topSpacer: o = \"4vw\",\n bottomSpacer: s = \"4vw\",\n theme: u = \"white\",\n disclosureType: l,\n componentId: c,\n ...d\n}) => {\n const p = se(e, zM.getComponentClassName()), g = n === \"End\", v = r === \"splitFlow\", b = !!a, C = {\n topSpacing: o,\n bottomSpacing: s,\n rowsGap: \"none\"\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: p,\n options: C,\n theme: u,\n disclosure: l,\n id: c,\n ...d,\n children: [\n a && yge(a),\n t.map((w, _) => /* @__PURE__ */ Xi(\n A2,\n {\n ...w,\n key: `Item${_ + 1}`,\n imageRightPosition: vge(_ + 1) ? !g : g,\n isSplitFlow: v,\n topHeadline: b,\n isImageFlushed: i,\n gridRow: b ? _ + 2 : _ + 1,\n analyticsCompName: Vh\n }\n ))\n ]\n }\n );\n};\nN2.displayName = Vh;\nconst Cge = (e, t) => {\n let n = {};\n const r = {};\n return t === \"Start\" ? n = {\n start: 1,\n span: 6\n } : t === \"Center\" && (n = {\n start: 3,\n span: 8\n }), e === \"Large\" ? r.options = {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n } : e === \"Medium\" ? r.options = {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n } : e === \"Small\" && (r.options = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n }), {\n startRow: n,\n endRow: r\n };\n};\nconst Jf = \"StackSection\", N0 = new ke(Jf), O2 = ({\n headline: e,\n mediaSize: t = \"Small\",\n className: n,\n mediaFrame: r,\n alignment: a = \"Start\",\n disclosureType: i,\n topSpacer: o = \"6vw\",\n bottomSpacer: s = \"6vw\",\n theme: u,\n componentId: l,\n ...c\n}) => {\n const d = {\n topSpacing: o,\n bottomSpacing: s,\n rowsGap: \"none\"\n }, p = Rh(r), g = Cge(t, a), v = se(N0.getComponentClassName(), n), b = (C) => {\n let w = C;\n return Ra(C) || (w = {\n ...g.startRow,\n textGroup: C\n }), /* @__PURE__ */ h.jsx(\n Wr,\n {\n className: N0.getElementClassName(\"row-spacing\"),\n ...w,\n textGroup: {\n ...w.textGroup,\n alignment: a,\n analyticsCompName: Jf\n }\n }\n );\n };\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: v,\n disclosure: i,\n options: d,\n theme: u,\n id: l,\n ...c,\n children: [\n e && b(e),\n p && /* @__PURE__ */ h.jsx(lt, { ...g.endRow, children: /* @__PURE__ */ h.jsx(\n Ur,\n {\n className: se(\n N0.getElementClassName(\"media\"),\n N0.getElementClassName(\"media-frame\") && t !== \"Large\"\n ),\n maxSrcSetWidth: 3301,\n roundedCorners: !0,\n ...p,\n analyticsCompName: Jf\n }\n ) })\n ]\n }\n );\n};\nO2.displayName = Jf;\nconst xge = \"comparison-variant\", gs = new ke(xge), qM = {\n TruncateButton: (e) => {\n const { innerProps: t, data: { truncateButtonProps: n } = {} } = e, r = () => {\n if (!n)\n return \"\";\n const {\n isExpanded: a,\n truncateButton: i,\n numberOfVisibleRows: o = 0,\n numberOfHiddenRows: s\n } = n;\n if (a || !i || !i.ariaTextMore)\n return \"\";\n const u = s + o, l = i.ariaTextMore, c = (u - o + 1).toString();\n return l.replace(\"${rowsCount}\", c);\n };\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: gs.getElementClassName(\n \"truncate-button-wrapper\"\n ),\n children: /* @__PURE__ */ h.jsx(bh, { ...t, \"aria-label\": r() })\n }\n );\n },\n TableCellContent: (e) => {\n const { innerProps: t, data: n } = e;\n if ((t == null ? void 0 : t.content.type) === or.HeaderWithImage) {\n const { cta: r, image: a, text: i, subtitle: o } = t.content;\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: gs.getElementClassName(\n \"header-cell-content\"\n ),\n children: [\n a && /* @__PURE__ */ h.jsx(\n ur,\n {\n ...a,\n className: gs.getElementClassName(\n \"header-image-frame\"\n ),\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n isAnimated: !1\n }\n ),\n /* @__PURE__ */ h.jsx(\n mn,\n {\n headline: i,\n headlineSize: \"Headline 7\",\n headlineTag: \"span\",\n paragraph: o,\n paragraphSize: \"Body\",\n alignment: \"Start\",\n actionGroup: r,\n analyticsCompName: t.analyticsCompName\n }\n )\n ]\n }\n );\n }\n if (t.content.type === or.Text) {\n const r = n == null ? void 0 : n.isWithinColGroupRow, a = (n == null ? void 0 : n.rowType) === yr.Data && (n == null ? void 0 : n.cellType) === na.Data;\n if (r || a) {\n const i = x2({\n content: t.content,\n analyticsCompName: t.analyticsCompName\n });\n return r ? /* @__PURE__ */ h.jsx(Sr, { as: \"span\", size: \"Title\", children: i }) : t.tooltip ? /* @__PURE__ */ h.jsx(S2, { tooltip: t.tooltip, children: /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Caption\", children: i }) }) : /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Caption\", children: i });\n }\n }\n return /* @__PURE__ */ h.jsx(_2, { ...t });\n },\n TableRow: ({ innerProps: e, data: t }) => {\n var a;\n const n = (t == null ? void 0 : t.shouldTruncateTable) && t.isLastVisibleRow && !e.isExpanded, r = {\n ...e.classes,\n dataRow: se((a = e.classes) == null ? void 0 : a.dataRow, {\n [gs.getElementClassName(\n \"last-visible-row-overlay\"\n )]: n\n })\n };\n return /* @__PURE__ */ h.jsx(\n E2,\n {\n ...e,\n isInert: n,\n classes: r\n }\n );\n },\n TableCell: Lt(({ innerProps: e, data: t }, n) => {\n const r = e.idx === 0;\n let a = {};\n return r && (t != null && t.isLastVisibleRow) && (a = {\n ref: n,\n tabIndex: t.hiddenFirstCellTabIndex\n }), /* @__PURE__ */ h.jsx(Hh, { ...e, ...a });\n })\n}, Sge = {\n ...qM,\n TableCell: Lt(({ innerProps: e, data: t }, n) => {\n const r = !e.cell.content.text && e.rowType === \"Header\", a = se(e.className, {\n [gs.getElementClassName(\"main-header-cell-empty\")]: r\n }), i = e.idx === 0;\n let o = {};\n i && (t != null && t.isLastVisibleRow) && (o = {\n ref: n,\n tabIndex: t.hiddenFirstCellTabIndex\n });\n const u = e.rowType === \"Data\" && e.cell.type === \"Header\" && (t != null && t.numberOfColumns) ? t.numberOfColumns : void 0;\n return /* @__PURE__ */ h.jsx(\n Hh,\n {\n ...e,\n ...o,\n className: a,\n colspan: u,\n additionalEmptyCells: void 0\n }\n );\n }),\n TableCellContent: (e) => {\n const { innerProps: t, data: n } = e;\n if ((t == null ? void 0 : t.content.type) === or.HeaderWithImage) {\n const { cta: r, image: a, text: i, subtitle: o } = t.content;\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: gs.getElementClassName(\n \"header-cell-content\"\n ),\n children: [\n a && /* @__PURE__ */ h.jsx(\n ur,\n {\n ...a,\n className: gs.getElementClassName(\n \"header-image-frame\"\n ),\n dimensions: { minHeight: \"auto\", minWidth: \"auto\" },\n isAnimated: !1\n }\n ),\n /* @__PURE__ */ h.jsx(\n mn,\n {\n headline: i,\n headlineSize: \"Headline 7\",\n headlineTag: \"span\",\n paragraph: o,\n paragraphSize: \"Body\",\n alignment: \"Start\",\n actionGroup: r,\n analyticsCompName: t.analyticsCompName\n }\n )\n ]\n }\n );\n }\n if (t.content.type === or.Text) {\n const r = n == null ? void 0 : n.isWithinColGroupRow, a = (n == null ? void 0 : n.rowType) === yr.Data && (n == null ? void 0 : n.cellType) === na.Data;\n if (r || a) {\n const i = x2({\n content: t.content,\n analyticsCompName: t.analyticsCompName\n });\n return r && n.isWithinMainCategoryHeader ? /* @__PURE__ */ h.jsx(Sr, { as: \"span\", size: \"Title\", children: i }) : t.tooltip ? /* @__PURE__ */ h.jsx(S2, { tooltip: t.tooltip, children: /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Caption\", children: i }) }) : /* @__PURE__ */ h.jsx(Gt, { as: \"span\", size: \"Caption\", children: i });\n }\n }\n return /* @__PURE__ */ h.jsx(_2, { ...t });\n }\n}, GM = (e) => {\n if (e)\n return e + 1;\n}, _ge = \"comparison-variant\", ko = new ke(_ge), Ege = (e) => {\n const t = [];\n return e.forEach((n) => {\n if (n.type === yr.Header) {\n const r = n.cells.filter(\n (a) => a.type === na.Header\n );\n t.push({ ...n, cells: r });\n } else if (n.type === yr.Data) {\n n.cells.forEach((a) => {\n a.type === \"Header\" && t.push({ type: yr.Data, cells: [a] });\n });\n const r = n.cells.filter((a) => a.type === \"Data\");\n r.length > 0 && t.push({ ...n, cells: r });\n }\n }), t;\n}, wge = ({\n table: e\n}) => ({\n ...e,\n rowNumber: GM(e.rowNumber),\n classes: {\n table: ko.getElementClassName(\"table\"),\n headerRow: ko.getElementClassName(\"header-row\"),\n dataRow: ko.getElementClassName(\"data-row\"),\n cell: ko.getElementClassName(\"cell\")\n },\n components: qM\n}), Tge = ({\n table: e\n}) => {\n const t = Ege(e.rows);\n return {\n ...e,\n rows: t,\n numberOfColumns: e.numberOfColumns - 1,\n rowNumber: GM(e.rowNumber),\n classes: {\n table: ko.getElementClassName(\"table\"),\n headerRow: ko.getElementClassName(\"header-row\"),\n dataRow: ko.getElementClassName(\"data-row\"),\n cell: ko.getElementClassName(\"cell\")\n },\n components: Sge\n };\n}, Age = ({\n table: e\n}) => e, Nge = (e, t, n) => {\n const r = [\"xs\", \"sm\", \"md\"].includes(n);\n return e === \"Table with Images\" ? r ? Tge(t) : wge(t) : Age(t);\n}, Oge = () => ({\n textCol: {\n start: 1,\n span: 7\n },\n tableCol: {\n twoXlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n },\n mdOptions: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\"\n }\n }\n}), Lge = (e, t) => {\n if (e === \"Default\")\n return [t];\n const n = [];\n let r;\n return t.rows.forEach((a) => {\n a.type === \"Header\" ? (r && n.push(r), r = {\n ...t,\n rows: [a]\n }) : r ? r.rows.push(a) : r = {\n ...t,\n rows: [a]\n };\n }), r && n.push(r), n;\n};\nconst ep = \"TableRebrand\", au = new ke(ep), L2 = ({\n variant: e = \"Default\",\n className: t = \"\",\n textGroup: n,\n topSpacer: r = \"4vw\",\n bottomSpacer: a = \"4vw\",\n disclosureType: i,\n table: o,\n tableId: s,\n componentId: u\n}) => {\n const l = Qn(), c = \"comparison-variant\", d = se(t, au.getComponentClassName(), {\n [c]: e === \"Table with Images\"\n }), p = { topSpacing: r, bottomSpacing: a }, g = Oge(), v = {\n options: {\n topSpacing: \"1rem\"\n },\n xlOptions: {\n topSpacing: \"1.5rem\"\n }\n };\n let b = n;\n n && !Ra(n) && (b = {\n ...g.textCol,\n textGroup: {\n ...n\n }\n });\n const C = Lge(e, o), w = C.length > 1, _ = se(\n au.getElementClassName(\"tableGrid\"),\n {\n [au.getElementClassName(\"multiple\")]: w\n }\n ), x = se({\n [au.getElementClassName(\"multiple-table-container\")]: w\n });\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n className: d,\n options: p,\n disclosure: i,\n disclosureGridItemProps: v,\n id: s || u,\n children: [\n n && /* @__PURE__ */ h.jsx(\n Wr,\n {\n ...b,\n textGroup: {\n ...b.textGroup,\n className: au.getElementClassName(\"text-group\"),\n analyticsCompName: ep\n }\n }\n ),\n /* @__PURE__ */ h.jsx(lt, { ...g.tableCol, className: x, children: C.map((S, E) => {\n const N = Nge(\n e,\n {\n table: S\n },\n l\n ), P = C.length === E + 1, H = E + 1, k = se(_, {\n [au.getElementClassName(\"lastTable\")]: w && P\n });\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: k,\n id: `tableGrid-${H}`,\n children: /* @__PURE__ */ h.jsx(FM, { ...N, analyticsCompName: ep })\n },\n `grid-item-${H}`\n );\n }) })\n ]\n }\n );\n};\nL2.displayName = ep;\nconst kge = {\n actionbanner: Ly,\n cardcarousel: Ry,\n cardwrappedcontentsection: By,\n featurecolumntype: $y,\n featurenavigation: tM,\n logostripsection: d2,\n logotickersection: DM,\n logotype: m2,\n offercardtype: b2,\n pricingcardhorizontaltype: C2,\n pricingcardtablerebrand: w2,\n pricingmegacard: Yf,\n pricingmegacardrebrand: Yf,\n productscrolltype: HM,\n relatedcontenttype: Ch,\n splitsectiontype: N2,\n stacksectiontype: O2,\n tablerebrand: L2,\n textsectiontype: Uy\n}, Ige = kge, Dge = {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\"\n }\n}, Pge = (e, t) => ({\n topSpacing: e,\n bottomSpacing: t,\n rowsGap: \"none\"\n}), Mge = (e) => e.slice(1).replace(/-/g, \" \"), Rge = /[\\u0300-\\u036f]/g, UM = (e) => e.normalize(\"NFD\").replace(Rge, \"\"), Bge = (e, t) => t.map((n) => n.toLowerCase()).indexOf(Mge(e).toLowerCase()) > -1, Fge = ({ contentTypeId: e, componentReference: t }, n = !0) => {\n const r = e.toLowerCase(), a = Ige[r];\n return a ? r === \"productscrolltype\" ? /* @__PURE__ */ Xi(\n a,\n {\n ...t,\n key: `prod-scroll-active-${n}`\n }\n ) : /* @__PURE__ */ h.jsx(a, { ...t }) : null;\n}, jge = {\n options: {\n verticalSpacing: \"0vw\"\n },\n lgOptions: {\n verticalSpacing: \"2vw\"\n }\n}, $ge = (e, t) => {\n const [n, r] = ze(e[0]), [a, i] = ze(!0), { pageSegCtrlHeightRef: o, componentPinnedStatus: s } = jM(), {\n current: { pinned: u }\n } = o, { pinned: l } = wh(), c = u + l, d = sr(\n (g) => () => {\n const v = Mc(n);\n r(g), t2.scrollTo(\n v.replace(vu.TAB, vu.PANEL),\n {\n duration: 0,\n delay: 0,\n smooth: !0,\n offset: -c\n }\n );\n },\n [n, c]\n ), p = sr(\n () => () => {\n if (!!window.location.hash) {\n const v = window.location.hash, b = e.map(\n (w) => UM(w)\n );\n if (Bge(v, b)) {\n const w = b.findIndex((_) => Un(_) === v.slice(1));\n d(e[w] || e[0])();\n }\n }\n },\n [e, d]\n );\n return We(() => {\n p()();\n }, [e, d, p]), We(() => {\n const g = Mc(n), v = document.getElementById(\n g.replace(vu.TAB, vu.PANEL)\n ), b = new IntersectionObserver(\n (C) => {\n p()();\n const w = C[0];\n w && w.isIntersecting && w.intersectionRatio && i(!1);\n },\n { threshold: 0 }\n );\n return v && a && b.observe(v), () => {\n b.disconnect();\n };\n }, [n, a, p]), We(() => {\n const g = document.querySelector(\n \".page-segment-control-nav.section-wrapper\"\n ), v = g == null ? void 0 : g.firstElementChild, b = document.querySelector(\"body\");\n t && (s.startsWith(\"pinned\") ? (g == null || g.classList.add(\"sticky\"), v == null || v.classList.add(\"sticky\")) : (g == null || g.classList.remove(\"sticky\"), v == null || v.classList.remove(\"sticky\")), l > 0 && (s === \"pinned\" ? b == null || b.classList.add(\"stacked-content\") : b == null || b.classList.remove(\"stacked-content\")));\n }, [s, l, t]), {\n currTabText: n,\n pageSegCtrlHeightRef: o,\n stickyPositionTop: l,\n tabClickHandler: d\n };\n};\nconst WM = \"PageSegmentControlNav\", _o = new ke(WM), Hge = (e) => `{\"link\":\"PageSegmentControlNav-Link-${Un(\n e\n)}\",\"event_name\":\"smb_text_link_cta_clicked\"}`, Vge = ({\n tabText: e,\n tab1: t,\n tab2: n,\n tab3: r,\n tab4: a,\n collection1: i,\n collection2: o,\n collection3: s,\n collection4: u\n}) => {\n switch (e) {\n case n:\n return o;\n case r:\n return s || [];\n case a:\n return u || [];\n case t:\n default:\n return i;\n }\n}, zge = (e) => () => t2.scrollTo(e, {\n duration: 300,\n delay: 0,\n smooth: !0\n}), qge = ({\n tabText: e,\n collection: t,\n activeTab: n\n}) => {\n const r = n === e, a = se(_o.getElementClassName(\"tab-content\"), {\n [_o.getElementClassName(\"active-content\")]: r\n });\n return /* @__PURE__ */ ue(\n \"div\",\n {\n role: \"tabpanel\",\n \"aria-labelledby\": Mc(e),\n id: zy(e),\n className: a\n },\n t.map((i, o) => /* @__PURE__ */ ue(ws, { key: `${e}-${i.contentTypeId}-${o + 1}` }, Fge(i, r)))\n );\n}, KM = ({\n className: e = \"\",\n tab1: t = \"\",\n tab2: n = \"\",\n tab3: r = \"\",\n tab4: a = \"\",\n collection1: i,\n collection2: o,\n collection3: s,\n collection4: u,\n anchorLinkText1: l = \"\",\n anchorLinkUrl1: c = \"\",\n anchorLinkText2: d = \"\",\n anchorLinkUrl2: p = \"\",\n topSpacer: g = \"2vw\",\n bottomSpacer: v = \"2vw\",\n sticky: b = !0\n}) => {\n const C = se(_o.getComponentClassName(), e), w = wt(\n () => [t, n, r, a].filter((G) => !!G),\n [t, n, r, a]\n ), {\n currTabText: _,\n stickyPositionTop: x,\n pageSegCtrlHeightRef: S,\n tabClickHandler: E\n } = $ge(w, b), [N] = Ma([\"Below XL\"]), P = {\n analyticsEventName: \"smb_text_link_cta_clicked\",\n selTabItemText: _,\n tabItems: w.map((G) => ({\n href: `#${Un(UM(G))}`,\n text: G,\n onClick: E(G)\n }))\n }, H = (G, $) => {\n const z = N ? \"Caption\" : \"Body\";\n return /* @__PURE__ */ ue(\n \"a\",\n {\n className: _o.getElementClassName(\"link\"),\n href: `#${$}`,\n role: \"tab\",\n onClick: zge($),\n id: Mc(G),\n \"data-pa-click\": Hge(G)\n },\n /* @__PURE__ */ ue(Gt, { as: \"span\", size: z }, /* @__PURE__ */ ue(\"strong\", null, G))\n );\n }, k = l && c, Q = d && p, I = () => {\n const {\n current: { pinned: G }\n } = S;\n return G;\n };\n return /* @__PURE__ */ ue(\"div\", { className: _o.getElementClassName(\"wrapper\") }, /* @__PURE__ */ ue(\n \"div\",\n {\n className: _o.getPropsValueClassName(\n \"sticky-wrapper\",\n b\n ),\n css: V`\n top: ${x}px;\n height: ${I()}px;\n `\n },\n /* @__PURE__ */ ue(\n cn,\n {\n className: C,\n options: Pge(\n g,\n v\n )\n },\n /* @__PURE__ */ ue(\n lt,\n {\n ...Dge,\n className: _o.getElementClassName(\"griditem\")\n },\n /* @__PURE__ */ ue(LP, { ...P, isLarge: !0 }),\n k && /* @__PURE__ */ ue(\n \"div\",\n {\n className: _o.getElementClassName(\"links\"),\n role: \"tablist\"\n },\n k && H(l, c),\n Q && H(d, p)\n )\n )\n )\n ), /* @__PURE__ */ ue(lt, { ...jge }), w.map((G) => /* @__PURE__ */ ue(ws, { key: G }, qge({\n tabText: G,\n activeTab: _,\n collection: Vge({\n tab1: t,\n tab2: n,\n tab3: r,\n tab4: a,\n collection1: i,\n collection2: o,\n collection3: s,\n collection4: u,\n tabText: G\n })\n }))));\n};\nKM.displayName = WM;\nconst YM = \"SplitGraphicBackground\", Gge = new ke(YM), XM = ({\n backgroundAsset: e,\n ariaHidden: t,\n ...n\n}) => {\n var i;\n const r = (i = n.graphicVersion) != null && i.includes(\"Left\") ? \"left: 0; right: unset;\" : \"right: 0; left: unset;\", { image: a } = e || {};\n return /* @__PURE__ */ ue(\n mi,\n {\n className: Gge.getComponentClassName(),\n css: V`\n position: absolute;\n width: 100%;\n overflow: hidden;\n top: 0;\n --height: 100vw;\n --image: 100%;\n @media (min-width: ${bn.md}) {\n --height: 100%;\n --image: 50%;\n --graphic-offset: 0%;\n }\n `,\n ...n,\n replay: !1,\n renderBackgroundImage: a ? () => /* @__PURE__ */ ue(\n gd,\n {\n baseImage: a == null ? void 0 : a.baseImage,\n mdImage: a == null ? void 0 : a.mdImage,\n imageAltText: a == null ? void 0 : a.imageAltText,\n loading: a == null ? void 0 : a.loading,\n fetchPriority: a == null ? void 0 : a.fetchPriority,\n imageServerKnobs: a == null ? void 0 : a.imageServerKnobs,\n css: V`\n background: var(--color-primary);\n .image-parallax-frame-inner {\n ${r}\n }\n `,\n ariaHidden: t\n }\n ) : void 0\n }\n );\n};\nXM.displayName = YM;\nconst Uge = (e) => e === \"Start\" ? {\n // IMAGE LEFT\n graphicVersion: \"SplitLeftLarge\",\n imageRightPosition: !1\n} : {\n // IMAGE RIGHT\n graphicVersion: \"SplitRightLarge\",\n imageRightPosition: !0\n}, Wge = (e) => e === \"WhiteOnBlue600\" ? \"blue 600\" : \"white\", $g = (e = \"regular\", t) => {\n const n = e === \"compact\" ? {\n topSpacing: \"6vw\",\n bottomSpacing: \"6vw\",\n rowsGap: \"value\",\n rowsGapValue: \"2vw\"\n } : {\n topSpacing: \"8vw\",\n bottomSpacing: \"8vw\",\n rowsGap: \"value\",\n rowsGapValue: \"4vw\"\n }, r = e === \"compact\" ? {\n topSpacing: \"4vw\",\n bottomSpacing: \"4vw\",\n rowsGap: \"value\",\n rowsGapValue: \"6vw\"\n } : {\n topSpacing: \"6vw\",\n bottomSpacing: \"6vw\",\n rowsGap: \"value\",\n rowsGapValue: \"8vw\"\n }, a = e === \"compact\" ? {\n topSpacing: \"2vw\",\n bottomSpacing: \"2vw\",\n rowsGap: \"value\",\n rowsGapValue: \"6vw\"\n } : {\n topSpacing: \"4vw\",\n bottomSpacing: \"4vw\",\n rowsGap: \"value\",\n rowsGapValue: \"8vw\"\n };\n return t === \"md\" ? r : t === \"xl\" ? a : n;\n};\nconst k2 = \"SplitGraphicSection\", Hg = new ke(k2), ZM = ({\n textGroup: e,\n foregroundMediaFrame: t,\n mediaSize: n = \"1:1 Large\",\n backgroundMediaFrame: r,\n imagePosition: a = \"End\",\n graphicColor: i = \"GoldOnWhite\",\n componentId: o\n}) => {\n const { foundationTheme: s } = Ze(lr), { graphicVersion: u, imageRightPosition: l } = Uge(a), c = Wge(i), d = $g(s), p = $g(\n s,\n \"md\"\n ), g = $g(\n s,\n \"xl\"\n ), v = se(\n Hg.getComponentClassName(),\n Hg.getPropsValueClassName(\"imagePosition\", a),\n Hg.getElementClassName(\"mobile-spacing\")\n ), b = (t == null ? void 0 : t.type) === \"Image\" && (r == null ? void 0 : r.type) === \"Image\";\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n theme: c,\n options: d,\n mdOptions: p,\n lgOptions: p,\n xlOptions: g,\n className: v,\n id: o,\n children: [\n /* @__PURE__ */ h.jsx(\n A2,\n {\n textGroup: e,\n mediaFrame: t,\n mediaSize: n,\n imageRightPosition: l,\n gridRow: 1,\n analyticsCompName: k2\n }\n ),\n /* @__PURE__ */ h.jsx(\n XM,\n {\n graphicColor: i,\n graphicVersion: u,\n backgroundAsset: r,\n ariaHidden: b\n }\n )\n ]\n }\n );\n};\nZM.displayName = k2;\nconst I2 = \"SwatchItem\", go = new ke(I2), Kge = {\n motionFeel: \"Expressive\",\n motionIntensity: \"md\",\n motionTypePreset: \"moveUp\",\n scrollTriggerOptions: {\n triggerOnce: !0\n }\n}, QM = ({\n className: e,\n headline: t,\n headlineTag: n = \"span\",\n rowStart: r = \"auto\",\n rowSpan: a = 1,\n columnStart: i = \"inner-2\",\n columnSpan: o = 10,\n textPosition: s = \"Bottom\",\n theme: u = \"blue 500\",\n backgroundImageMediaFrame: l,\n link: c,\n analyticsCompName: d = I2\n}) => {\n const p = Qn(), { pageSegment: g, host: v, country: b } = Ze(Vt), C = !!(l != null && l.baseImage), w = [\"xs\", \"sm\", \"md\", \"lg\"].includes(p), _ = w ? \"Large\" : \"Extra Large\", x = w ? \"Headline 6\" : \"Headline 5\", S = pn.getThemeClassName(u), E = Nn(\n {\n componentName: d,\n linkText: t,\n linkType: Pa.Tertiary,\n clickEvent: c == null ? void 0 : c.clickEventName,\n ariaLabel: c == null ? void 0 : c.ariaLabel\n },\n g,\n ln.CTA\n ), N = se(\n go.getComponentClassName(),\n e,\n S,\n \"arrow-icon-active-hover\"\n ), P = se(\n go.getElementClassName(\"container\"),\n go.getPropsValueClassName(\"textposition\", s),\n e\n ), H = se(\n go.getElementClassName(\"bgackgroundimg\"),\n e\n ), k = se(\n go.getElementClassName(\"textArrowSection\"),\n go.getPropsValueClassName(\"textPosition\", s)\n ), Q = ($) => $ === \"inner-2\" ? \"inner-1\" : \"inner-3\", I = ($) => $ === 10 ? 4 : 2, G = {\n options: {\n rowStart: \"auto\",\n rowSpan: a,\n columnStart: \"left-inner\",\n columnSpan: 4\n },\n mdOptions: {\n rowStart: r,\n rowSpan: a,\n columnStart: Q(i),\n columnSpan: I(o)\n },\n lgOptions: {\n rowStart: r,\n rowSpan: a,\n columnStart: i,\n columnSpan: o\n }\n };\n return /* @__PURE__ */ h.jsx(lt, { ...G, children: /* @__PURE__ */ h.jsxs(\n Wn,\n {\n as: \"a\",\n motionOptions: Kge,\n target: c == null ? void 0 : c.target,\n className: N,\n href: qi((c == null ? void 0 : c.url) || \"\", v, b),\n \"data-pa-click\": d && E,\n whileHover: {\n scale: 1.01,\n \"--background-scale\": \"1.02\"\n },\n children: [\n C && /* @__PURE__ */ h.jsx(\n Ur,\n {\n type: \"Image\",\n image: {\n baseImage: l == null ? void 0 : l.baseImage,\n imageAltText: l == null ? void 0 : l.imageAltText,\n dimensions: {\n minHeight: \"100%\",\n minWidth: \"100%\"\n }\n },\n maxSrcSetWidth: 1500,\n motionOptions: {\n motionTypePreset: \"appear\",\n motionIntensity: \"lg\"\n },\n className: H,\n ariaHidden: !0,\n analyticsCompName: d\n }\n ),\n /* @__PURE__ */ h.jsx(\"div\", { className: P, children: /* @__PURE__ */ h.jsxs(\"div\", { className: k, children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: go.getElementClassName(\"text-section\"), children: t && /* @__PURE__ */ h.jsx(\n mn,\n {\n headlineTag: n,\n headline: t,\n headlineSize: x,\n analyticsCompName: d\n }\n ) }),\n c && /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: go.getElementClassName(\"arrow-section\"),\n children: /* @__PURE__ */ h.jsx(Go, { ...c, size: _ })\n }\n )\n ] }) })\n ]\n }\n ) });\n};\nQM.displayName = I2;\nconst D2 = \"SwatchGridType\", LN = new ke(D2), JM = ({\n className: e = \"\",\n collection: t = [],\n topSpacer: n = \"4vw\",\n bottomSpacer: r = \"4vw\",\n theme: a,\n disclosureType: i,\n componentId: o,\n ...s\n}) => {\n const u = se(\n LN.getElementClassName(\"sectionContainer\"),\n LN.getPropsValueClassName(\"length\", `${t.length}`),\n e\n ), l = { topSpacing: n, bottomSpacing: r };\n return /* @__PURE__ */ h.jsx(\n cn,\n {\n className: u,\n options: l,\n theme: a,\n disclosure: i,\n id: o,\n ...s,\n children: t.map((c, d) => {\n const p = `grid-item-${d}`;\n return /* @__PURE__ */ h.jsx(\n QM,\n {\n ...c,\n analyticsCompName: D2\n },\n p\n );\n })\n }\n );\n};\nJM.displayName = D2;\nconst eR = \"TextGraphicBackground\", kN = new ke(eR), tR = ({\n baseImage: e = \"\",\n mdImage: t = \"\",\n imageAltText: n = \"\"\n}) => {\n const r = () => /* @__PURE__ */ h.jsx(\n gd,\n {\n baseImage: e,\n mdImage: t,\n imageAltText: n,\n css: V`\n width: var(--image);\n z-index: 0.5;\n `,\n parallaxFactor: 3,\n className: kN.getComponentClassName()\n }\n );\n return /* @__PURE__ */ h.jsx(\"div\", { className: kN.getElementClassName(\"container\"), children: r() });\n};\ntR.displayName = eR;\nconst Yge = (e) => {\n const { image: t } = e;\n return {\n baseImage: t == null ? void 0 : t.baseImage,\n mdImage: t == null ? void 0 : t.mdImage,\n imageAltText: t == null ? void 0 : t.imageAltText\n };\n}, Xge = () => ({\n options: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n mdOptions: {\n columnStart: \"inner-3\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n columnStart: \"inner-7\",\n columnEnd: \"right-inner\"\n },\n xlOptions: {\n columnStart: \"inner-6\",\n columnEnd: \"right-inner\"\n }\n}), P2 = \"TextGraphicSection\", IN = new ke(P2), nR = ({\n textGroup: e,\n mediaFrame: t = {\n type: \"Image\",\n image: {\n baseImage: \"\",\n imageAltText: \"\"\n }\n },\n topSpacer: n = \"0vw\",\n bottomSpacer: r = \"0vw\",\n componentId: a\n}) => {\n const i = \"white\", { baseImage: o, mdImage: s, imageAltText: u } = Yge(t), l = {\n topSpacing: n,\n bottomSpacing: r\n }, c = Xge(), d = IN.getComponentClassName();\n return /* @__PURE__ */ h.jsxs(\n cn,\n {\n theme: i,\n options: l,\n className: d,\n id: a,\n children: [\n e && /* @__PURE__ */ h.jsx(\n lt,\n {\n ...c,\n className: IN.getElementClassName(\"text-group-grid\"),\n children: /* @__PURE__ */ h.jsx(mn, { ...e, analyticsCompName: P2 })\n }\n ),\n /* @__PURE__ */ h.jsx(\n tR,\n {\n baseImage: o,\n mdImage: s,\n imageAltText: u\n }\n )\n ]\n }\n );\n};\nnR.displayName = P2;\nconst DN = {\n ActionBanner: Ly,\n AppDownloadBanner: Y9,\n ArticleCardCarousel: uP,\n CardCarousel: Ry,\n CardWrappedContentSection: By,\n Disclosure: Ci,\n DiscoveryLinkType: vP,\n FaqType: CP,\n FeatureColumnType: $y,\n HomepageLink: bM,\n HotspotSection: TM,\n LogoStripSection: d2,\n LogoType: m2,\n NavBanner: LM,\n OfferCardType: b2,\n PageSegmentControl: KM,\n PricingCardHorizontalType: C2,\n PricingCardTableRebrand: w2,\n PricingMegaCardRebrand: Yf,\n ProductScrollType: HM,\n SplitGraphicSectionType: ZM,\n SplitSectionType: N2,\n StackSectionType: O2,\n StickyQRBadge: _M,\n SubNav: e7,\n SwatchGridType: JM,\n TableRebrand: L2,\n TextGraphicSection: nR,\n TextSectionType: Uy\n}, Zge = (e, t) => {\n if (!(e in DN))\n return null;\n const n = DN[e];\n return /* @__PURE__ */ h.jsx(n, { ...t });\n};\nconst Qge = \"HomepageSegmentControl\", Jge = ({\n segments: e\n}) => {\n const t = [\n Ue({}),\n Ue({}),\n Ue({})\n ], [n, r] = ze(0), [a, i] = ze(\"mouse\"), o = () => {\n const s = new URLSearchParams(window.location.search);\n if (s.has(\"tab\")) {\n const u = e.findIndex(\n (l) => l.urlFragment === s.get(\"tab\")\n );\n u !== -1 && u !== n && r(u);\n }\n };\n return We(o, []), We(() => (window.addEventListener(\"popstate\", o), () => {\n window.removeEventListener(\"popstate\", o);\n })), We(() => {\n a === \"keyboard\" && setTimeout(() => {\n var s, u;\n (s = t == null ? void 0 : t[n]) != null && s.current && ((u = t[n].current) == null || u[e[n].tabText].focus());\n }, 300);\n }, [n]), /* @__PURE__ */ h.jsx(h.Fragment, { children: e.map(({ hero: s, tabText: u, collection: l }, c) => {\n const d = n === c;\n return /* @__PURE__ */ h.jsxs(ws, { children: [\n /* @__PURE__ */ h.jsx(\n vM,\n {\n ...s,\n componentId: zy(u),\n active: d,\n tabs: d && /* @__PURE__ */ h.jsx(\n CM,\n {\n segments: e,\n setActiveSegment: r,\n activeSegment: n,\n setClickSource: i,\n ref: t[c]\n }\n )\n }\n ),\n l && l.map(({ contentTypeId: p, componentReference: g }) => /* @__PURE__ */ h.jsx(\n eb.div,\n {\n variants: mM,\n animate: d ? \"animate\" : \"initial\",\n \"aria-hidden\": !d,\n children: Zge(p, g)\n },\n `collection ${u} ${p}`\n ))\n ] }, `hero ${u}`);\n }) });\n};\nJge.displayName = Qge;\nvar e1e = Object.defineProperty, t1e = (e, t, n) => t in e ? e1e(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n, PN = (e, t, n) => (t1e(e, typeof t != \"symbol\" ? t + \"\" : t, n), n);\nfunction rR(e) {\n var t, n, r = \"\";\n if (typeof e == \"string\" || typeof e == \"number\")\n r += e;\n else if (typeof e == \"object\")\n if (Array.isArray(e)) {\n var a = e.length;\n for (t = 0; t < a; t++)\n e[t] && (n = rR(e[t])) && (r && (r += \" \"), r += n);\n } else\n for (n in e)\n e[n] && (r && (r += \" \"), r += n);\n return r;\n}\nfunction Br() {\n for (var e, t, n = 0, r = \"\", a = arguments.length; n < a; n++)\n (e = arguments[n]) && (t = rR(e)) && (r && (r += \" \"), r += t);\n return r;\n}\nconst n1e = /([\\p{Ll}\\d])(\\p{Lu})/gu, r1e = /(\\p{Lu})([\\p{Lu}][\\p{Ll}])/gu, a1e = /(\\d)\\p{Ll}|(\\p{L})\\d/u, i1e = /[^\\p{L}\\d]+/giu, MN = \"$1\\0$2\", RN = \"\";\nfunction aR(e) {\n let t = e.trim();\n t = t.replace(n1e, MN).replace(r1e, MN), t = t.replace(i1e, \"\\0\");\n let n = 0, r = t.length;\n for (; t.charAt(n) === \"\\0\"; )\n n++;\n if (n === r)\n return [];\n for (; t.charAt(r - 1) === \"\\0\"; )\n r--;\n return t.slice(n, r).split(/\\0/g);\n}\nfunction o1e(e) {\n const t = aR(e);\n for (let n = 0; n < t.length; n++) {\n const r = t[n], a = a1e.exec(r);\n if (a) {\n const i = a.index + (a[1] ?? a[2]).length;\n t.splice(n, 1, r.slice(0, i), r.slice(i));\n }\n }\n return t;\n}\nfunction s1e(e, t) {\n const [n, r, a] = l1e(e, t);\n return n + r.map(u1e(t == null ? void 0 : t.locale)).join((t == null ? void 0 : t.delimiter) ?? \" \") + a;\n}\nfunction O0(e, t) {\n return s1e(e, { delimiter: \"-\", ...t });\n}\nfunction u1e(e) {\n return e === !1 ? (t) => t.toLowerCase() : (t) => t.toLocaleLowerCase(e);\n}\nfunction l1e(e, t = {}) {\n const n = t.split ?? (t.separateNumbers ? o1e : aR), r = t.prefixCharacters ?? RN, a = t.suffixCharacters ?? RN;\n let i = 0, o = e.length;\n for (; i < e.length; ) {\n const s = e.charAt(i);\n if (!r.includes(s))\n break;\n i++;\n }\n for (; o > i; ) {\n const s = o - 1, u = e.charAt(s);\n if (!a.includes(u))\n break;\n o = s;\n }\n return [\n e.slice(0, i),\n n(e.slice(i, o)),\n e.slice(o)\n ];\n}\nlet da = class {\n constructor(t, n) {\n PN(this, \"componentName\"), PN(this, \"styles\"), this.componentName = O0(t), this.styles = n;\n }\n getFinalClassName(t) {\n return this.styles ? this.styles[t] || `_${t}_` : t;\n }\n /**\n * @returns The formatted class name of the component\n &&\n * @example\n * classNameGen.getElementClassName();\n * // \"hero\"\n *\n * @example\n * classNameGen.getElementClassName();\n * // \"_hero_1xr4a_1\" -> When CSS Module `styles` object was used.\n *\n */\n getComponentClassName() {\n return this.getFinalClassName(this.componentName);\n }\n /**\n * @param elementName - The name of the element you want to style\n * @returns A formatted class name base on the provided element name\n *\n * @example\n * classNameGen.getElementClassName('content-col');\n * // \"hero-content-col\"\n *\n * @example\n * classNameGen.getElementClassName('content-col');\n * // \"_hero-content-col_1xr4a_1\" -> When CSS Module `styles` object was used.\n */\n getElementClassName(t) {\n const n = O0(t), r = `${this.componentName}-${n}`;\n return this.getFinalClassName(r);\n }\n /**\n * @param propsKey - The name of your component prop\n * @param propsValue - The value of your component prop\n * @returns A formatted class name based on the provided prop value\n *\n * @example\n * classNameGen.getPropsValueClassName('itemsAlignment', 'Vertical-Center');\n * // \"hero-items-alignment-vertical-center\"\n *\n * @example\n * classNameGen.getPropsValueClassName('itemsAlignment', 'Vertical-Center');\n * // \"_hero-items-alignment-vertical-center_1xr4a_1\" -> When CSS Module `styles` object was used.\n */\n getPropsValueClassName(t, n) {\n const r = O0(t), a = typeof n == \"string\", i = typeof n == \"boolean\", o = a || i;\n let s = \"\";\n if (!o)\n s = `${this.componentName}-${r}`;\n else if (i)\n s = n ? `${this.componentName}-${r}` : `${this.componentName}-no-${r}`;\n else {\n const u = O0(n);\n s = `${this.componentName}-${r}-${u}`;\n }\n return this.getFinalClassName(s);\n }\n};\nconst c1e = {\n \"0.25rem\": \"fixed-xs\",\n \"0.375rem\": \"fixed-sm\",\n \"0.5rem\": \"fixed-md\",\n \"0.75rem\": \"fixed-lg\",\n \"1rem\": \"fixed-xl\",\n \"1.5rem\": \"fixed-2xl\",\n \"2rem\": \"fixed-3xl\",\n \"3rem\": \"fixed-4xl\",\n \"4.5rem\": \"fixed-5xl\"\n}, d1e = {\n \"2vw\": \"fluid-sm\",\n \"4vw\": \"fluid-md\",\n \"6vw\": \"fluid-lg\",\n \"8vw\": \"fluid-xl\",\n \"12vw\": \"fluid-2xl\",\n \"16vw\": \"fluid-3xl\"\n}, f1e = {\n ...c1e,\n ...d1e,\n none: \"0\"\n}, iR = {\n bottomSpacing: \"pb\",\n topSpacing: \"pt\"\n}, Fc = ({\n optionValue: e\n}) => f1e[e], oR = {\n bottomSpacing: {\n transformType: \"direct\",\n transformFunction: Fc\n },\n topSpacing: {\n transformType: \"direct\",\n transformFunction: Fc\n }\n}, p1e = (e, t) => t === \"sm\" ? e : e.map((n) => `${t}:${n}`), sR = ({\n gridSystemOptionPrefixMap: e,\n gridSystemOptionValueTransformMap: t\n}) => {\n const n = ({\n gridSystemOptions: r,\n breakpoint: a\n }) => {\n const i = [];\n return Object.entries(r).forEach(([o, s]) => {\n const u = e[o], l = t[o];\n if (!u || !l)\n return;\n const { transformType: c, transformFunction: d } = l, p = d(c === \"direct\" ? {\n optionValue: s\n } : {\n optionValue: s,\n options: r,\n breakpoint: a\n });\n p && i.push(\n `${u}-${p}`\n );\n }), i;\n };\n return {\n getGridSystemResponsiveClasses: (r) => r.reduce(\n (a, i) => {\n const { options: o, breakpoint: s } = i, u = n({\n gridSystemOptions: o,\n breakpoint: s\n });\n return u.length && a.push(\n ...p1e(u, s)\n ), a;\n },\n []\n )\n };\n}, h1e = {\n ...iR,\n bottomMargin: \"mb\",\n topMargin: \"mt\",\n rowsGap: \"gap\"\n}, m1e = ({ optionValue: e, options: t = {} }) => {\n if (e === \"default\")\n return \"default\";\n const n = t.rowsGapValue || \"none\";\n return Fc({ optionValue: n });\n}, g1e = {\n ...oR,\n bottomMargin: {\n transformType: \"direct\",\n transformFunction: Fc\n },\n topMargin: {\n transformType: \"direct\",\n transformFunction: Fc\n },\n rowsGap: {\n transformType: \"custom\",\n transformFunction: m1e\n }\n}, { getGridSystemResponsiveClasses: v1e } = (\n // @ts-expect-error - We need to fix this error\n sR({\n gridSystemOptionPrefixMap: h1e,\n gridSystemOptionValueTransformMap: g1e\n })\n), b1e = \"_grid_bhcu0_4\", y1e = {\n grid: b1e\n}, uR = \"Grid\", C1e = new da(uR, y1e), x1e = Lt(\n ({\n className: e,\n children: t,\n as: n = \"section\",\n options: r = {},\n mdOptions: a = {},\n lgOptions: i = {},\n xlOptions: o = {},\n twoXlOptions: s = {},\n ...u\n }, l) => {\n const c = v1e([\n { options: r, breakpoint: \"sm\" },\n { options: a, breakpoint: \"md\" },\n { options: i, breakpoint: \"lg\" },\n { options: o, breakpoint: \"xl\" },\n { options: s, breakpoint: \"2xl\" }\n ]), d = Br(\n e,\n C1e.getComponentClassName(),\n c\n );\n return /* @__PURE__ */ h.jsx(n, { ref: l, className: d, ...u, children: t });\n }\n);\nx1e.displayName = uR;\nconst lR = {\n auto: \"auto\",\n /* The first 3 Column Lines of the Grid */\n \"left-edge\": \"l-edge\",\n // 1\n \"left-outer\": \"l-outer\",\n // 2\n \"left-inner\": \"l-inner\",\n // 3\n /* The Last 3 Column Lines of the Grid */\n \"right-inner\": \"r-inner\",\n // -3\n \"right-outer\": \"r-outer\",\n // -2\n \"right-edge\": \"r-edge\"\n // -1\n}, cR = {\n \"inner-1\": \"3\",\n \"inner-2\": \"4\",\n \"inner-3\": \"5\",\n \"inner-4\": \"6\",\n \"inner-5\": \"7\"\n}, S1e = {\n ...cR,\n \"inner-6\": \"8\",\n \"inner-7\": \"9\",\n \"inner-8\": \"10\",\n \"inner-9\": \"11\",\n \"inner-10\": \"12\",\n \"inner-11\": \"13\",\n \"inner-12\": \"14\",\n \"inner-13\": \"15\"\n}, BN = {\n ...lR,\n ...cR\n}, Vg = {\n ...lR,\n ...S1e\n}, _1e = {\n sm: BN,\n md: BN,\n lg: Vg,\n xl: Vg,\n \"2xl\": Vg\n}, E1e = {\n ...iR,\n rowStart: \"row-start\",\n rowEnd: \"row-end\",\n verticalAlign: \"align\",\n columnStart: \"col-start\",\n columnEnd: \"col-end\",\n display: \"d\",\n zIndex: \"z\"\n}, zl = ({\n optionValue: e\n}) => {\n if (typeof e == \"string\")\n return e;\n if (typeof e == \"number\")\n return String(e);\n}, FN = ({ optionValue: e, breakpoint: t }) => {\n const n = _1e[t];\n if (n)\n return n[e];\n}, w1e = {\n ...oR,\n rowStart: {\n transformType: \"direct\",\n transformFunction: zl\n },\n rowEnd: {\n transformType: \"direct\",\n transformFunction: zl\n },\n verticalAlign: {\n transformType: \"direct\",\n transformFunction: zl\n },\n columnStart: {\n transformType: \"custom\",\n transformFunction: FN\n },\n columnEnd: {\n transformType: \"custom\",\n transformFunction: FN\n },\n display: {\n transformType: \"direct\",\n transformFunction: zl\n },\n zIndex: {\n transformType: \"direct\",\n transformFunction: zl\n }\n}, { getGridSystemResponsiveClasses: T1e } = sR({\n gridSystemOptionPrefixMap: E1e,\n gridSystemOptionValueTransformMap: w1e\n}), A1e = {\n \"grid-item\": \"_grid-item_u5yv6_1\"\n}, dR = \"GridItem\", N1e = new da(dR, A1e), O1e = Lt(\n ({\n as: e = \"div\",\n className: t = \"\",\n options: n = {},\n mdOptions: r = {},\n lgOptions: a = {},\n xlOptions: i = {},\n twoXlOptions: o = {},\n children: s = null,\n ...u\n }, l) => {\n const c = T1e([\n {\n options: n,\n breakpoint: \"sm\"\n },\n { options: r, breakpoint: \"md\" },\n { options: a, breakpoint: \"lg\" },\n { options: i, breakpoint: \"xl\" },\n { options: o, breakpoint: \"2xl\" }\n ]), d = Br(\n t,\n N1e.getComponentClassName(),\n c\n );\n return /* @__PURE__ */ h.jsx(e, { ref: l, className: d, ...u, children: s });\n }\n);\nO1e.displayName = dR;\nvar fR = /* @__PURE__ */ ((e) => (e.DEVELOPMENT = \"development\", e.STAGING = \"staging\", e.PRODUCTION = \"production\", e.SANDBOX = \"sandbox\", e))(fR || {}), pR = /* @__PURE__ */ ((e) => (e.NONE = \"NONE\", e.GENERAL = \"GENERAL\", e.CONSUMER = \"CONSUMER\", e.BUSINESS = \"BUSINESS\", e))(pR || {}), M2 = /* @__PURE__ */ ((e) => (e.enterprise = \"enterprise\", e.ppcom = \"ppcom\", e.smb = \"smb\", e))(M2 || {});\nconst R2 = vt.createContext({\n isCMSPreview: !1,\n runMode: fR.DEVELOPMENT,\n userHome: pR.NONE,\n fpti: {\n dataString: \"\",\n jsURL: \"\",\n jsFullUrl: \"\",\n name: \"\",\n serverURL: \"\"\n },\n encryptedAccountNum: \"\",\n csrfToken: \"\",\n pageURI: \"\",\n baseURI: \"\",\n queryStringParams: void 0,\n loggedIn: !1,\n appEntryPoint: \"\",\n initialViewport: void 0,\n isRTL: !1,\n locality: {\n country: \"us\",\n language: \"en\",\n locale: \"en_US\"\n },\n pageSegment: M2.ppcom,\n clientInfo: void 0\n}), L1e = ({\n children: e,\n ...t\n}) => /* @__PURE__ */ h.jsx(R2.Provider, { value: t, children: e }), k1e = {\n \"body-text\": \"_body-text_1rlb5_2\",\n \"body-text-size-body\": \"_body-text-size-body_1rlb5_10\",\n \"body-text-size-body-large\": \"_body-text-size-body-large_1rlb5_11\",\n \"body-text-size-caption\": \"_body-text-size-caption_1rlb5_12\",\n \"body-text-size-body-strong\": \"_body-text-size-body-strong_1rlb5_13\",\n \"body-text-size-body-large-strong\": \"_body-text-size-body-large-strong_1rlb5_14\",\n \"body-text-size-caption-strong\": \"_body-text-size-caption-strong_1rlb5_15\",\n \"body-text-theme-secondary\": \"_body-text-theme-secondary_1rlb5_75\"\n}, I1e = \"BodyText\";\nnew da(I1e, k1e);\nvar La = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof global < \"u\" ? global : typeof self < \"u\" ? self : {}, D1e = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 });\n var t = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof La < \"u\" ? La : typeof self < \"u\" ? self : {};\n function n(b) {\n return b && b.__esModule && Object.prototype.hasOwnProperty.call(b, \"default\") ? b.default : b;\n }\n function r(b, C) {\n return C = { exports: {} }, b(C, C.exports), C.exports;\n }\n var a = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 }), C.BLOCKS = void 0;\n var w;\n (function(_) {\n _.DOCUMENT = \"document\", _.PARAGRAPH = \"paragraph\", _.HEADING_1 = \"heading-1\", _.HEADING_2 = \"heading-2\", _.HEADING_3 = \"heading-3\", _.HEADING_4 = \"heading-4\", _.HEADING_5 = \"heading-5\", _.HEADING_6 = \"heading-6\", _.OL_LIST = \"ordered-list\", _.UL_LIST = \"unordered-list\", _.LIST_ITEM = \"list-item\", _.HR = \"hr\", _.QUOTE = \"blockquote\", _.EMBEDDED_ENTRY = \"embedded-entry-block\", _.EMBEDDED_ASSET = \"embedded-asset-block\", _.EMBEDDED_RESOURCE = \"embedded-resource-block\", _.TABLE = \"table\", _.TABLE_ROW = \"table-row\", _.TABLE_CELL = \"table-cell\", _.TABLE_HEADER_CELL = \"table-header-cell\";\n })(w || (C.BLOCKS = w = {}));\n });\n n(a), a.BLOCKS;\n var i = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 }), C.INLINES = void 0;\n var w;\n (function(_) {\n _.HYPERLINK = \"hyperlink\", _.ENTRY_HYPERLINK = \"entry-hyperlink\", _.ASSET_HYPERLINK = \"asset-hyperlink\", _.RESOURCE_HYPERLINK = \"resource-hyperlink\", _.EMBEDDED_ENTRY = \"embedded-entry-inline\", _.EMBEDDED_RESOURCE = \"embedded-resource-inline\";\n })(w || (C.INLINES = w = {}));\n });\n n(i), i.INLINES;\n var o = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 });\n var w;\n (function(_) {\n _.BOLD = \"bold\", _.ITALIC = \"italic\", _.UNDERLINE = \"underline\", _.CODE = \"code\", _.SUPERSCRIPT = \"superscript\", _.SUBSCRIPT = \"subscript\";\n })(w || (w = {})), C.default = w;\n });\n n(o);\n var s = r(function(b, C) {\n var w = t && t.__spreadArray || function(E, N, P) {\n if (P || arguments.length === 2)\n for (var H = 0, k = N.length, Q; H < k; H++)\n (Q || !(H in N)) && (Q || (Q = Array.prototype.slice.call(N, 0, H)), Q[H] = N[H]);\n return E.concat(Q || Array.prototype.slice.call(N));\n }, _ = t && t.__importDefault || function(E) {\n return E && E.__esModule ? E : { default: E };\n }, x;\n Object.defineProperty(C, \"__esModule\", { value: !0 }), C.V1_MARKS = C.V1_NODE_TYPES = C.TEXT_CONTAINERS = C.HEADINGS = C.CONTAINERS = C.VOID_BLOCKS = C.TABLE_BLOCKS = C.LIST_ITEM_BLOCKS = C.TOP_LEVEL_BLOCKS = void 0;\n var S = _(o);\n C.TOP_LEVEL_BLOCKS = [\n a.BLOCKS.PARAGRAPH,\n a.BLOCKS.HEADING_1,\n a.BLOCKS.HEADING_2,\n a.BLOCKS.HEADING_3,\n a.BLOCKS.HEADING_4,\n a.BLOCKS.HEADING_5,\n a.BLOCKS.HEADING_6,\n a.BLOCKS.OL_LIST,\n a.BLOCKS.UL_LIST,\n a.BLOCKS.HR,\n a.BLOCKS.QUOTE,\n a.BLOCKS.EMBEDDED_ENTRY,\n a.BLOCKS.EMBEDDED_ASSET,\n a.BLOCKS.EMBEDDED_RESOURCE,\n a.BLOCKS.TABLE\n ], C.LIST_ITEM_BLOCKS = [\n a.BLOCKS.PARAGRAPH,\n a.BLOCKS.HEADING_1,\n a.BLOCKS.HEADING_2,\n a.BLOCKS.HEADING_3,\n a.BLOCKS.HEADING_4,\n a.BLOCKS.HEADING_5,\n a.BLOCKS.HEADING_6,\n a.BLOCKS.OL_LIST,\n a.BLOCKS.UL_LIST,\n a.BLOCKS.HR,\n a.BLOCKS.QUOTE,\n a.BLOCKS.EMBEDDED_ENTRY,\n a.BLOCKS.EMBEDDED_ASSET,\n a.BLOCKS.EMBEDDED_RESOURCE\n ], C.TABLE_BLOCKS = [\n a.BLOCKS.TABLE,\n a.BLOCKS.TABLE_ROW,\n a.BLOCKS.TABLE_CELL,\n a.BLOCKS.TABLE_HEADER_CELL\n ], C.VOID_BLOCKS = [\n a.BLOCKS.HR,\n a.BLOCKS.EMBEDDED_ENTRY,\n a.BLOCKS.EMBEDDED_ASSET,\n a.BLOCKS.EMBEDDED_RESOURCE\n ], C.CONTAINERS = (x = {}, x[a.BLOCKS.OL_LIST] = [a.BLOCKS.LIST_ITEM], x[a.BLOCKS.UL_LIST] = [a.BLOCKS.LIST_ITEM], x[a.BLOCKS.LIST_ITEM] = C.LIST_ITEM_BLOCKS, x[a.BLOCKS.QUOTE] = [a.BLOCKS.PARAGRAPH], x[a.BLOCKS.TABLE] = [a.BLOCKS.TABLE_ROW], x[a.BLOCKS.TABLE_ROW] = [a.BLOCKS.TABLE_CELL, a.BLOCKS.TABLE_HEADER_CELL], x[a.BLOCKS.TABLE_CELL] = [a.BLOCKS.PARAGRAPH], x[a.BLOCKS.TABLE_HEADER_CELL] = [a.BLOCKS.PARAGRAPH], x), C.HEADINGS = [\n a.BLOCKS.HEADING_1,\n a.BLOCKS.HEADING_2,\n a.BLOCKS.HEADING_3,\n a.BLOCKS.HEADING_4,\n a.BLOCKS.HEADING_5,\n a.BLOCKS.HEADING_6\n ], C.TEXT_CONTAINERS = w([a.BLOCKS.PARAGRAPH], C.HEADINGS, !0), C.V1_NODE_TYPES = [\n a.BLOCKS.DOCUMENT,\n a.BLOCKS.PARAGRAPH,\n a.BLOCKS.HEADING_1,\n a.BLOCKS.HEADING_2,\n a.BLOCKS.HEADING_3,\n a.BLOCKS.HEADING_4,\n a.BLOCKS.HEADING_5,\n a.BLOCKS.HEADING_6,\n a.BLOCKS.OL_LIST,\n a.BLOCKS.UL_LIST,\n a.BLOCKS.LIST_ITEM,\n a.BLOCKS.HR,\n a.BLOCKS.QUOTE,\n a.BLOCKS.EMBEDDED_ENTRY,\n a.BLOCKS.EMBEDDED_ASSET,\n i.INLINES.HYPERLINK,\n i.INLINES.ENTRY_HYPERLINK,\n i.INLINES.ASSET_HYPERLINK,\n i.INLINES.EMBEDDED_ENTRY,\n \"text\"\n ], C.V1_MARKS = [S.default.BOLD, S.default.CODE, S.default.ITALIC, S.default.UNDERLINE];\n });\n n(s), s.V1_MARKS, s.V1_NODE_TYPES, s.TEXT_CONTAINERS, s.HEADINGS, s.CONTAINERS, s.VOID_BLOCKS, s.TABLE_BLOCKS, s.LIST_ITEM_BLOCKS, s.TOP_LEVEL_BLOCKS;\n var u = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 });\n });\n n(u);\n var l = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 });\n });\n n(l);\n var c = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 });\n var w = {\n nodeType: a.BLOCKS.DOCUMENT,\n data: {},\n content: [\n {\n nodeType: a.BLOCKS.PARAGRAPH,\n data: {},\n content: [\n {\n nodeType: \"text\",\n value: \"\",\n marks: [],\n data: {}\n }\n ]\n }\n ]\n };\n C.default = w;\n });\n n(c);\n var d = r(function(b, C) {\n Object.defineProperty(C, \"__esModule\", { value: !0 }), C.isText = C.isBlock = C.isInline = void 0;\n function w(E, N) {\n for (var P = 0, H = Object.keys(E); P < H.length; P++) {\n var k = H[P];\n if (N === E[k])\n return !0;\n }\n return !1;\n }\n function _(E) {\n return w(i.INLINES, E.nodeType);\n }\n C.isInline = _;\n function x(E) {\n return w(a.BLOCKS, E.nodeType);\n }\n C.isBlock = x;\n function S(E) {\n return E.nodeType === \"text\";\n }\n C.isText = S;\n });\n n(d), d.isText, d.isBlock, d.isInline;\n var p = r(function(b, C) {\n var w = t && t.__createBinding || (Object.create ? function(P, H, k, Q) {\n Q === void 0 && (Q = k);\n var I = Object.getOwnPropertyDescriptor(H, k);\n (!I || (\"get\" in I ? !H.__esModule : I.writable || I.configurable)) && (I = { enumerable: !0, get: function() {\n return H[k];\n } }), Object.defineProperty(P, Q, I);\n } : function(P, H, k, Q) {\n Q === void 0 && (Q = k), P[Q] = H[k];\n }), _ = t && t.__setModuleDefault || (Object.create ? function(P, H) {\n Object.defineProperty(P, \"default\", { enumerable: !0, value: H });\n } : function(P, H) {\n P.default = H;\n }), x = t && t.__exportStar || function(P, H) {\n for (var k in P)\n k !== \"default\" && !Object.prototype.hasOwnProperty.call(H, k) && w(H, P, k);\n }, S = t && t.__importStar || function(P) {\n if (P && P.__esModule)\n return P;\n var H = {};\n if (P != null)\n for (var k in P)\n k !== \"default\" && Object.prototype.hasOwnProperty.call(P, k) && w(H, P, k);\n return _(H, P), H;\n }, E = t && t.__importDefault || function(P) {\n return P && P.__esModule ? P : { default: P };\n };\n Object.defineProperty(C, \"__esModule\", { value: !0 }), C.helpers = C.EMPTY_DOCUMENT = C.MARKS = C.INLINES = C.BLOCKS = void 0, Object.defineProperty(C, \"BLOCKS\", { enumerable: !0, get: function() {\n return a.BLOCKS;\n } }), Object.defineProperty(C, \"INLINES\", { enumerable: !0, get: function() {\n return i.INLINES;\n } }), Object.defineProperty(C, \"MARKS\", { enumerable: !0, get: function() {\n return E(o).default;\n } }), x(s, C), x(u, C), x(l, C), Object.defineProperty(C, \"EMPTY_DOCUMENT\", { enumerable: !0, get: function() {\n return E(c).default;\n } });\n var N = S(d);\n C.helpers = N;\n });\n n(p);\n var g = p.helpers;\n p.EMPTY_DOCUMENT, p.MARKS, p.INLINES, p.BLOCKS;\n function v(b, C) {\n return C === void 0 && (C = \" \"), !b || !b.content ? \"\" : b.content.reduce(function(w, _, x) {\n var S;\n if (g.isText(_))\n S = _.value;\n else if ((g.isBlock(_) || g.isInline(_)) && (S = v(_, C), !S.length))\n return w;\n var E = b.content[x + 1], N = E && g.isBlock(E), P = N ? C : \"\";\n return w + S + P;\n }, \"\");\n }\n e.documentToPlainTextString = v;\n})(D1e);\nconst P1e = (e = \"\", t = \"\", n = \"\", r = \"Started\", a = M2.ppcom) => {\n const i = {\n event_name: `${a}_${t}_${r.toLowerCase()}`,\n link: `${e}-${t}-${r}-${n}`\n };\n return JSON.stringify(i);\n}, M1e = {\n \"segment-control-tab\": \"_segment-control-tab_1l1co_1\",\n \"segment-control-tab-is-active\": \"_segment-control-tab-is-active_1l1co_51\",\n \"segment-control-tab-text\": \"_segment-control-tab-text_1l1co_71\",\n \"segment-control-tab-theme-secondary\": \"_segment-control-tab-theme-secondary_1l1co_88\"\n}, R1e = \"SegmentControlTab\";\nnew da(R1e, M1e);\nconst B1e = {\n \"segment-control-group\": \"_segment-control-group_55zyk_1\"\n}, F1e = \"SegmentControlGroup\";\nnew da(F1e, B1e);\nconst j1e = {\n \"button-type-primary\": \"_button-type-primary_1eyhu_1\",\n \"button-type-secondary\": \"_button-type-secondary_1eyhu_2\",\n \"button-type-branded\": \"_button-type-branded_1eyhu_3\",\n \"button-type-tertiary\": \"_button-type-tertiary_1eyhu_92\",\n \"button-inverse-primary\": \"_button-inverse-primary_1eyhu_135\",\n \"button-size-sm\": \"_button-size-sm_1eyhu_158\"\n}, $1e = \"Button\";\nnew da($1e, j1e);\nvar Ru = {}, Rs = {};\nObject.defineProperty(Rs, \"__esModule\", { value: !0 });\nRs.BLOCKS = void 0;\nvar jN;\n(function(e) {\n e.DOCUMENT = \"document\", e.PARAGRAPH = \"paragraph\", e.HEADING_1 = \"heading-1\", e.HEADING_2 = \"heading-2\", e.HEADING_3 = \"heading-3\", e.HEADING_4 = \"heading-4\", e.HEADING_5 = \"heading-5\", e.HEADING_6 = \"heading-6\", e.OL_LIST = \"ordered-list\", e.UL_LIST = \"unordered-list\", e.LIST_ITEM = \"list-item\", e.HR = \"hr\", e.QUOTE = \"blockquote\", e.EMBEDDED_ENTRY = \"embedded-entry-block\", e.EMBEDDED_ASSET = \"embedded-asset-block\", e.EMBEDDED_RESOURCE = \"embedded-resource-block\", e.TABLE = \"table\", e.TABLE_ROW = \"table-row\", e.TABLE_CELL = \"table-cell\", e.TABLE_HEADER_CELL = \"table-header-cell\";\n})(jN || (Rs.BLOCKS = jN = {}));\nvar ll = {};\nObject.defineProperty(ll, \"__esModule\", { value: !0 });\nll.INLINES = void 0;\nvar $N;\n(function(e) {\n e.HYPERLINK = \"hyperlink\", e.ENTRY_HYPERLINK = \"entry-hyperlink\", e.ASSET_HYPERLINK = \"asset-hyperlink\", e.RESOURCE_HYPERLINK = \"resource-hyperlink\", e.EMBEDDED_ENTRY = \"embedded-entry-inline\", e.EMBEDDED_RESOURCE = \"embedded-resource-inline\";\n})($N || (ll.INLINES = $N = {}));\nvar Nd = {};\nObject.defineProperty(Nd, \"__esModule\", { value: !0 });\nNd.MARKS = void 0;\nvar HN;\n(function(e) {\n e.BOLD = \"bold\", e.ITALIC = \"italic\", e.UNDERLINE = \"underline\", e.CODE = \"code\", e.SUPERSCRIPT = \"superscript\", e.SUBSCRIPT = \"subscript\";\n})(HN || (Nd.MARKS = HN = {}));\nvar hR = {};\n(function(e) {\n var t = La && La.__spreadArray || function(o, s, u) {\n if (u || arguments.length === 2)\n for (var l = 0, c = s.length, d; l < c; l++)\n (d || !(l in s)) && (d || (d = Array.prototype.slice.call(s, 0, l)), d[l] = s[l]);\n return o.concat(d || Array.prototype.slice.call(s));\n }, n;\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.V1_MARKS = e.V1_NODE_TYPES = e.TEXT_CONTAINERS = e.HEADINGS = e.CONTAINERS = e.VOID_BLOCKS = e.TABLE_BLOCKS = e.LIST_ITEM_BLOCKS = e.TOP_LEVEL_BLOCKS = void 0;\n var r = Rs, a = ll, i = Nd;\n e.TOP_LEVEL_BLOCKS = [\n r.BLOCKS.PARAGRAPH,\n r.BLOCKS.HEADING_1,\n r.BLOCKS.HEADING_2,\n r.BLOCKS.HEADING_3,\n r.BLOCKS.HEADING_4,\n r.BLOCKS.HEADING_5,\n r.BLOCKS.HEADING_6,\n r.BLOCKS.OL_LIST,\n r.BLOCKS.UL_LIST,\n r.BLOCKS.HR,\n r.BLOCKS.QUOTE,\n r.BLOCKS.EMBEDDED_ENTRY,\n r.BLOCKS.EMBEDDED_ASSET,\n r.BLOCKS.EMBEDDED_RESOURCE,\n r.BLOCKS.TABLE\n ], e.LIST_ITEM_BLOCKS = [\n r.BLOCKS.PARAGRAPH,\n r.BLOCKS.HEADING_1,\n r.BLOCKS.HEADING_2,\n r.BLOCKS.HEADING_3,\n r.BLOCKS.HEADING_4,\n r.BLOCKS.HEADING_5,\n r.BLOCKS.HEADING_6,\n r.BLOCKS.OL_LIST,\n r.BLOCKS.UL_LIST,\n r.BLOCKS.HR,\n r.BLOCKS.QUOTE,\n r.BLOCKS.EMBEDDED_ENTRY,\n r.BLOCKS.EMBEDDED_ASSET,\n r.BLOCKS.EMBEDDED_RESOURCE\n ], e.TABLE_BLOCKS = [\n r.BLOCKS.TABLE,\n r.BLOCKS.TABLE_ROW,\n r.BLOCKS.TABLE_CELL,\n r.BLOCKS.TABLE_HEADER_CELL\n ], e.VOID_BLOCKS = [\n r.BLOCKS.HR,\n r.BLOCKS.EMBEDDED_ENTRY,\n r.BLOCKS.EMBEDDED_ASSET,\n r.BLOCKS.EMBEDDED_RESOURCE\n ], e.CONTAINERS = (n = {}, n[r.BLOCKS.OL_LIST] = [r.BLOCKS.LIST_ITEM], n[r.BLOCKS.UL_LIST] = [r.BLOCKS.LIST_ITEM], n[r.BLOCKS.LIST_ITEM] = e.LIST_ITEM_BLOCKS, n[r.BLOCKS.QUOTE] = [r.BLOCKS.PARAGRAPH], n[r.BLOCKS.TABLE] = [r.BLOCKS.TABLE_ROW], n[r.BLOCKS.TABLE_ROW] = [r.BLOCKS.TABLE_CELL, r.BLOCKS.TABLE_HEADER_CELL], n[r.BLOCKS.TABLE_CELL] = [r.BLOCKS.PARAGRAPH], n[r.BLOCKS.TABLE_HEADER_CELL] = [r.BLOCKS.PARAGRAPH], n), e.HEADINGS = [\n r.BLOCKS.HEADING_1,\n r.BLOCKS.HEADING_2,\n r.BLOCKS.HEADING_3,\n r.BLOCKS.HEADING_4,\n r.BLOCKS.HEADING_5,\n r.BLOCKS.HEADING_6\n ], e.TEXT_CONTAINERS = t([r.BLOCKS.PARAGRAPH], e.HEADINGS, !0), e.V1_NODE_TYPES = [\n r.BLOCKS.DOCUMENT,\n r.BLOCKS.PARAGRAPH,\n r.BLOCKS.HEADING_1,\n r.BLOCKS.HEADING_2,\n r.BLOCKS.HEADING_3,\n r.BLOCKS.HEADING_4,\n r.BLOCKS.HEADING_5,\n r.BLOCKS.HEADING_6,\n r.BLOCKS.OL_LIST,\n r.BLOCKS.UL_LIST,\n r.BLOCKS.LIST_ITEM,\n r.BLOCKS.HR,\n r.BLOCKS.QUOTE,\n r.BLOCKS.EMBEDDED_ENTRY,\n r.BLOCKS.EMBEDDED_ASSET,\n a.INLINES.HYPERLINK,\n a.INLINES.ENTRY_HYPERLINK,\n a.INLINES.ASSET_HYPERLINK,\n a.INLINES.EMBEDDED_ENTRY,\n \"text\"\n ], e.V1_MARKS = [i.MARKS.BOLD, i.MARKS.CODE, i.MARKS.ITALIC, i.MARKS.UNDERLINE];\n})(hR);\nvar mR = {};\nObject.defineProperty(mR, \"__esModule\", { value: !0 });\nvar gR = {};\nObject.defineProperty(gR, \"__esModule\", { value: !0 });\nvar zh = {};\nObject.defineProperty(zh, \"__esModule\", { value: !0 });\nzh.EMPTY_DOCUMENT = void 0;\nvar VN = Rs;\nzh.EMPTY_DOCUMENT = {\n nodeType: VN.BLOCKS.DOCUMENT,\n data: {},\n content: [\n {\n nodeType: VN.BLOCKS.PARAGRAPH,\n data: {},\n content: [\n {\n nodeType: \"text\",\n value: \"\",\n marks: [],\n data: {}\n }\n ]\n }\n ]\n};\nvar Ro = {};\nObject.defineProperty(Ro, \"__esModule\", { value: !0 });\nRo.isText = Ro.isBlock = Ro.isInline = void 0;\nvar H1e = Rs, V1e = ll;\nfunction vR(e, t) {\n for (var n = 0, r = Object.keys(e); n < r.length; n++) {\n var a = r[n];\n if (t === e[a])\n return !0;\n }\n return !1;\n}\nfunction z1e(e) {\n return vR(V1e.INLINES, e.nodeType);\n}\nRo.isInline = z1e;\nfunction q1e(e) {\n return vR(H1e.BLOCKS, e.nodeType);\n}\nRo.isBlock = q1e;\nfunction G1e(e) {\n return e.nodeType === \"text\";\n}\nRo.isText = G1e;\n(function(e) {\n var t = La && La.__createBinding || (Object.create ? function(c, d, p, g) {\n g === void 0 && (g = p);\n var v = Object.getOwnPropertyDescriptor(d, p);\n (!v || (\"get\" in v ? !d.__esModule : v.writable || v.configurable)) && (v = { enumerable: !0, get: function() {\n return d[p];\n } }), Object.defineProperty(c, g, v);\n } : function(c, d, p, g) {\n g === void 0 && (g = p), c[g] = d[p];\n }), n = La && La.__setModuleDefault || (Object.create ? function(c, d) {\n Object.defineProperty(c, \"default\", { enumerable: !0, value: d });\n } : function(c, d) {\n c.default = d;\n }), r = La && La.__exportStar || function(c, d) {\n for (var p in c)\n p !== \"default\" && !Object.prototype.hasOwnProperty.call(d, p) && t(d, c, p);\n }, a = La && La.__importStar || function(c) {\n if (c && c.__esModule)\n return c;\n var d = {};\n if (c != null)\n for (var p in c)\n p !== \"default\" && Object.prototype.hasOwnProperty.call(c, p) && t(d, c, p);\n return n(d, c), d;\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.helpers = e.EMPTY_DOCUMENT = e.MARKS = e.INLINES = e.BLOCKS = void 0;\n var i = Rs;\n Object.defineProperty(e, \"BLOCKS\", { enumerable: !0, get: function() {\n return i.BLOCKS;\n } });\n var o = ll;\n Object.defineProperty(e, \"INLINES\", { enumerable: !0, get: function() {\n return o.INLINES;\n } });\n var s = Nd;\n Object.defineProperty(e, \"MARKS\", { enumerable: !0, get: function() {\n return s.MARKS;\n } }), r(hR, e), r(mR, e), r(gR, e);\n var u = zh;\n Object.defineProperty(e, \"EMPTY_DOCUMENT\", { enumerable: !0, get: function() {\n return u.EMPTY_DOCUMENT;\n } });\n var l = a(Ro);\n e.helpers = l;\n})(Ru);\nvar Ft = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof global < \"u\" ? global : typeof self < \"u\" ? self : {}, U1e = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 });\n var t = function() {\n return t = Object.assign || function(B) {\n for (var O, D = 1, T = arguments.length; D < T; D++) {\n O = arguments[D];\n for (var j in O)\n Object.prototype.hasOwnProperty.call(O, j) && (B[j] = O[j]);\n }\n return B;\n }, t.apply(this, arguments);\n };\n /*!\n * escape-html\n * Copyright(c) 2012-2013 TJ Holowaychuk\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n var n = /[\"'&<>]/, r = a;\n function a(B) {\n var O = \"\" + B, D = n.exec(O);\n if (!D)\n return O;\n var T, j = \"\", F = 0, L = 0;\n for (F = D.index; F < O.length; F++) {\n switch (O.charCodeAt(F)) {\n case 34:\n T = \""\";\n break;\n case 38:\n T = \"&\";\n break;\n case 39:\n T = \"'\";\n break;\n case 60:\n T = \"<\";\n break;\n case 62:\n T = \">\";\n break;\n default:\n continue;\n }\n L !== F && (j += O.substring(L, F)), L = F + 1, j += T;\n }\n return L !== F ? j + O.substring(L, F) : j;\n }\n var i = typeof globalThis < \"u\" ? globalThis : typeof window < \"u\" ? window : typeof Ft < \"u\" ? Ft : typeof self < \"u\" ? self : {};\n function o(B) {\n return B && B.__esModule && Object.prototype.hasOwnProperty.call(B, \"default\") ? B.default : B;\n }\n function s(B, O) {\n return O = { exports: {} }, B(O, O.exports), O.exports;\n }\n var u = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.BLOCKS = void 0;\n var D;\n (function(T) {\n T.DOCUMENT = \"document\", T.PARAGRAPH = \"paragraph\", T.HEADING_1 = \"heading-1\", T.HEADING_2 = \"heading-2\", T.HEADING_3 = \"heading-3\", T.HEADING_4 = \"heading-4\", T.HEADING_5 = \"heading-5\", T.HEADING_6 = \"heading-6\", T.OL_LIST = \"ordered-list\", T.UL_LIST = \"unordered-list\", T.LIST_ITEM = \"list-item\", T.HR = \"hr\", T.QUOTE = \"blockquote\", T.EMBEDDED_ENTRY = \"embedded-entry-block\", T.EMBEDDED_ASSET = \"embedded-asset-block\", T.EMBEDDED_RESOURCE = \"embedded-resource-block\", T.TABLE = \"table\", T.TABLE_ROW = \"table-row\", T.TABLE_CELL = \"table-cell\", T.TABLE_HEADER_CELL = \"table-header-cell\";\n })(D || (O.BLOCKS = D = {}));\n });\n o(u), u.BLOCKS;\n var l = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.INLINES = void 0;\n var D;\n (function(T) {\n T.HYPERLINK = \"hyperlink\", T.ENTRY_HYPERLINK = \"entry-hyperlink\", T.ASSET_HYPERLINK = \"asset-hyperlink\", T.RESOURCE_HYPERLINK = \"resource-hyperlink\", T.EMBEDDED_ENTRY = \"embedded-entry-inline\", T.EMBEDDED_RESOURCE = \"embedded-resource-inline\";\n })(D || (O.INLINES = D = {}));\n });\n o(l), l.INLINES;\n var c = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.MARKS = void 0;\n var D;\n (function(T) {\n T.BOLD = \"bold\", T.ITALIC = \"italic\", T.UNDERLINE = \"underline\", T.CODE = \"code\", T.SUPERSCRIPT = \"superscript\", T.SUBSCRIPT = \"subscript\";\n })(D || (O.MARKS = D = {}));\n });\n o(c), c.MARKS;\n var d = s(function(B, O) {\n var D = i && i.__spreadArray || function(j, F, L) {\n if (L || arguments.length === 2)\n for (var q = 0, W = F.length, X; q < W; q++)\n (X || !(q in F)) && (X || (X = Array.prototype.slice.call(F, 0, q)), X[q] = F[q]);\n return j.concat(X || Array.prototype.slice.call(F));\n }, T;\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.V1_MARKS = O.V1_NODE_TYPES = O.TEXT_CONTAINERS = O.HEADINGS = O.CONTAINERS = O.VOID_BLOCKS = O.TABLE_BLOCKS = O.LIST_ITEM_BLOCKS = O.TOP_LEVEL_BLOCKS = void 0, O.TOP_LEVEL_BLOCKS = [\n u.BLOCKS.PARAGRAPH,\n u.BLOCKS.HEADING_1,\n u.BLOCKS.HEADING_2,\n u.BLOCKS.HEADING_3,\n u.BLOCKS.HEADING_4,\n u.BLOCKS.HEADING_5,\n u.BLOCKS.HEADING_6,\n u.BLOCKS.OL_LIST,\n u.BLOCKS.UL_LIST,\n u.BLOCKS.HR,\n u.BLOCKS.QUOTE,\n u.BLOCKS.EMBEDDED_ENTRY,\n u.BLOCKS.EMBEDDED_ASSET,\n u.BLOCKS.EMBEDDED_RESOURCE,\n u.BLOCKS.TABLE\n ], O.LIST_ITEM_BLOCKS = [\n u.BLOCKS.PARAGRAPH,\n u.BLOCKS.HEADING_1,\n u.BLOCKS.HEADING_2,\n u.BLOCKS.HEADING_3,\n u.BLOCKS.HEADING_4,\n u.BLOCKS.HEADING_5,\n u.BLOCKS.HEADING_6,\n u.BLOCKS.OL_LIST,\n u.BLOCKS.UL_LIST,\n u.BLOCKS.HR,\n u.BLOCKS.QUOTE,\n u.BLOCKS.EMBEDDED_ENTRY,\n u.BLOCKS.EMBEDDED_ASSET,\n u.BLOCKS.EMBEDDED_RESOURCE\n ], O.TABLE_BLOCKS = [\n u.BLOCKS.TABLE,\n u.BLOCKS.TABLE_ROW,\n u.BLOCKS.TABLE_CELL,\n u.BLOCKS.TABLE_HEADER_CELL\n ], O.VOID_BLOCKS = [\n u.BLOCKS.HR,\n u.BLOCKS.EMBEDDED_ENTRY,\n u.BLOCKS.EMBEDDED_ASSET,\n u.BLOCKS.EMBEDDED_RESOURCE\n ], O.CONTAINERS = (T = {}, T[u.BLOCKS.OL_LIST] = [u.BLOCKS.LIST_ITEM], T[u.BLOCKS.UL_LIST] = [u.BLOCKS.LIST_ITEM], T[u.BLOCKS.LIST_ITEM] = O.LIST_ITEM_BLOCKS, T[u.BLOCKS.QUOTE] = [u.BLOCKS.PARAGRAPH], T[u.BLOCKS.TABLE] = [u.BLOCKS.TABLE_ROW], T[u.BLOCKS.TABLE_ROW] = [u.BLOCKS.TABLE_CELL, u.BLOCKS.TABLE_HEADER_CELL], T[u.BLOCKS.TABLE_CELL] = [u.BLOCKS.PARAGRAPH], T[u.BLOCKS.TABLE_HEADER_CELL] = [u.BLOCKS.PARAGRAPH], T), O.HEADINGS = [\n u.BLOCKS.HEADING_1,\n u.BLOCKS.HEADING_2,\n u.BLOCKS.HEADING_3,\n u.BLOCKS.HEADING_4,\n u.BLOCKS.HEADING_5,\n u.BLOCKS.HEADING_6\n ], O.TEXT_CONTAINERS = D([u.BLOCKS.PARAGRAPH], O.HEADINGS, !0), O.V1_NODE_TYPES = [\n u.BLOCKS.DOCUMENT,\n u.BLOCKS.PARAGRAPH,\n u.BLOCKS.HEADING_1,\n u.BLOCKS.HEADING_2,\n u.BLOCKS.HEADING_3,\n u.BLOCKS.HEADING_4,\n u.BLOCKS.HEADING_5,\n u.BLOCKS.HEADING_6,\n u.BLOCKS.OL_LIST,\n u.BLOCKS.UL_LIST,\n u.BLOCKS.LIST_ITEM,\n u.BLOCKS.HR,\n u.BLOCKS.QUOTE,\n u.BLOCKS.EMBEDDED_ENTRY,\n u.BLOCKS.EMBEDDED_ASSET,\n l.INLINES.HYPERLINK,\n l.INLINES.ENTRY_HYPERLINK,\n l.INLINES.ASSET_HYPERLINK,\n l.INLINES.EMBEDDED_ENTRY,\n \"text\"\n ], O.V1_MARKS = [c.MARKS.BOLD, c.MARKS.CODE, c.MARKS.ITALIC, c.MARKS.UNDERLINE];\n });\n o(d), d.V1_MARKS, d.V1_NODE_TYPES, d.TEXT_CONTAINERS, d.HEADINGS, d.CONTAINERS, d.VOID_BLOCKS, d.TABLE_BLOCKS, d.LIST_ITEM_BLOCKS, d.TOP_LEVEL_BLOCKS;\n var p = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 });\n });\n o(p);\n var g = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 });\n });\n o(g);\n var v = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.EMPTY_DOCUMENT = void 0, O.EMPTY_DOCUMENT = {\n nodeType: u.BLOCKS.DOCUMENT,\n data: {},\n content: [\n {\n nodeType: u.BLOCKS.PARAGRAPH,\n data: {},\n content: [\n {\n nodeType: \"text\",\n value: \"\",\n marks: [],\n data: {}\n }\n ]\n }\n ]\n };\n });\n o(v), v.EMPTY_DOCUMENT;\n var b = s(function(B, O) {\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.isText = O.isBlock = O.isInline = void 0;\n function D(L, q) {\n for (var W = 0, X = Object.keys(L); W < X.length; W++) {\n var de = X[W];\n if (q === L[de])\n return !0;\n }\n return !1;\n }\n function T(L) {\n return D(l.INLINES, L.nodeType);\n }\n O.isInline = T;\n function j(L) {\n return D(u.BLOCKS, L.nodeType);\n }\n O.isBlock = j;\n function F(L) {\n return L.nodeType === \"text\";\n }\n O.isText = F;\n });\n o(b), b.isText, b.isBlock, b.isInline;\n var C = s(function(B, O) {\n var D = i && i.__createBinding || (Object.create ? function(q, W, X, de) {\n de === void 0 && (de = X);\n var Se = Object.getOwnPropertyDescriptor(W, X);\n (!Se || (\"get\" in Se ? !W.__esModule : Se.writable || Se.configurable)) && (Se = { enumerable: !0, get: function() {\n return W[X];\n } }), Object.defineProperty(q, de, Se);\n } : function(q, W, X, de) {\n de === void 0 && (de = X), q[de] = W[X];\n }), T = i && i.__setModuleDefault || (Object.create ? function(q, W) {\n Object.defineProperty(q, \"default\", { enumerable: !0, value: W });\n } : function(q, W) {\n q.default = W;\n }), j = i && i.__exportStar || function(q, W) {\n for (var X in q)\n X !== \"default\" && !Object.prototype.hasOwnProperty.call(W, X) && D(W, q, X);\n }, F = i && i.__importStar || function(q) {\n if (q && q.__esModule)\n return q;\n var W = {};\n if (q != null)\n for (var X in q)\n X !== \"default\" && Object.prototype.hasOwnProperty.call(q, X) && D(W, q, X);\n return T(W, q), W;\n };\n Object.defineProperty(O, \"__esModule\", { value: !0 }), O.helpers = O.EMPTY_DOCUMENT = O.MARKS = O.INLINES = O.BLOCKS = void 0, Object.defineProperty(O, \"BLOCKS\", { enumerable: !0, get: function() {\n return u.BLOCKS;\n } }), Object.defineProperty(O, \"INLINES\", { enumerable: !0, get: function() {\n return l.INLINES;\n } }), Object.defineProperty(O, \"MARKS\", { enumerable: !0, get: function() {\n return c.MARKS;\n } }), j(d, O), j(p, O), j(g, O), Object.defineProperty(O, \"EMPTY_DOCUMENT\", { enumerable: !0, get: function() {\n return v.EMPTY_DOCUMENT;\n } });\n var L = F(b);\n O.helpers = L;\n });\n o(C);\n var w = C.helpers;\n C.EMPTY_DOCUMENT;\n var _ = C.MARKS, x = C.INLINES, S = C.BLOCKS, E, N, P = function(B) {\n return '\"'.concat(B.replace(/\"/g, \""\"), '\"');\n }, H = (E = {}, E[S.PARAGRAPH] = function(B, O) {\n return \"\".concat(O(B.content), \"
\");\n }, E[S.HEADING_1] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.HEADING_2] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.HEADING_3] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.HEADING_4] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.HEADING_5] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.HEADING_6] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.EMBEDDED_ENTRY] = function(B, O) {\n return \"\".concat(O(B.content), \"
\");\n }, E[S.EMBEDDED_RESOURCE] = function(B, O) {\n return \"\".concat(O(B.content), \"
\");\n }, E[S.UL_LIST] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.OL_LIST] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.LIST_ITEM] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.QUOTE] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.HR] = function() {\n return \" \";\n }, E[S.TABLE] = function(B, O) {\n return \"\".concat(O(B.content), \"
\");\n }, E[S.TABLE_ROW] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.TABLE_HEADER_CELL] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[S.TABLE_CELL] = function(B, O) {\n return \"\".concat(O(B.content), \" \");\n }, E[x.ASSET_HYPERLINK] = function(B) {\n return Q(x.ASSET_HYPERLINK, B);\n }, E[x.ENTRY_HYPERLINK] = function(B) {\n return Q(x.ENTRY_HYPERLINK, B);\n }, E[x.RESOURCE_HYPERLINK] = function(B) {\n return I(x.RESOURCE_HYPERLINK, B);\n }, E[x.EMBEDDED_ENTRY] = function(B) {\n return Q(x.EMBEDDED_ENTRY, B);\n }, E[x.EMBEDDED_RESOURCE] = function(B) {\n return I(x.EMBEDDED_RESOURCE, B);\n }, E[x.HYPERLINK] = function(B, O) {\n var D = typeof B.data.uri == \"string\" ? B.data.uri : \"\";\n return \"\").concat(O(B.content), \" \");\n }, E), k = (N = {}, N[_.BOLD] = function(B) {\n return \"\".concat(B, \" \");\n }, N[_.ITALIC] = function(B) {\n return \"\".concat(B, \" \");\n }, N[_.UNDERLINE] = function(B) {\n return \"\".concat(B, \" \");\n }, N[_.CODE] = function(B) {\n return \"\".concat(B, \"
\");\n }, N[_.SUPERSCRIPT] = function(B) {\n return \"\".concat(B, \" \");\n }, N[_.SUBSCRIPT] = function(B) {\n return \"\".concat(B, \" \");\n }, N), Q = function(B, O) {\n return \"type: \".concat(r(B), \" id: \").concat(r(O.data.target.sys.id), \" \");\n }, I = function(B, O) {\n return \"type: \".concat(r(B), \" urn: \").concat(r(O.data.target.sys.urn), \" \");\n };\n function G(B, O) {\n return O === void 0 && (O = {}), !B || !B.content ? \"\" : $(B.content, {\n renderNode: t(t({}, H), O.renderNode),\n renderMark: t(t({}, k), O.renderMark),\n preserveWhitespace: O.preserveWhitespace\n });\n }\n function $(B, O) {\n var D = O.renderNode, T = O.renderMark, j = O.preserveWhitespace;\n return B.map(function(F) {\n return z(F, { renderNode: D, renderMark: T, preserveWhitespace: j });\n }).join(\"\");\n }\n function z(B, O) {\n var D = O.renderNode, T = O.renderMark, j = O.preserveWhitespace;\n if (w.isText(B)) {\n var F = r(B.value);\n return j && (F = F.replace(/\\n/g, \" \").replace(/ {2,}/g, function(q) {\n return \" \".repeat(q.length);\n })), B.marks.length > 0 ? B.marks.reduce(function(q, W) {\n return T[W.type] ? T[W.type](q) : q;\n }, F) : F;\n } else {\n var L = function(q) {\n return $(q, { renderMark: T, renderNode: D, preserveWhitespace: j });\n };\n return !B.nodeType || !D[B.nodeType] ? \"\" : D[B.nodeType](B, L);\n }\n }\n e.documentToHtmlString = G;\n})(U1e);\nvar bR = {}, jc = {}, cl = {}, $c = {}, B2 = {};\nObject.defineProperty(B2, \"__esModule\", { value: !0 });\nB2.default = new Uint16Array(\n // prettier-ignore\n 'ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\\0\\0\\0\\0\\0\\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\\0\\0\\0͔͂\\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\\0\\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\\0\\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\\0ц\\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\\0\\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\\0\\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\\0ֿ\\0\\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\\0ࣃbleBracket;柦nǔࣈ\\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻\"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\\0စbleBracket;柧nǔည\\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\\0\\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\\0ጬጱ\\0\\0\\0\\0\\0ጸጽ፷ᎅ\\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\\0ᖰᖶᖿ\\0\\0\\0\\0ᗆᗛᗫᙟ᙭\\0ᚕ᚛ᚲᚹ\\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\\0\\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\\0\\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\\0ᠳƲᠯ\\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\\0᧨ᨑᨕᨲ\\0ᨷᩐ\\0\\0᪴\\0\\0᫁\\0\\0ᬡᬮ᭒\\0᯽\\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\\0\\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\\0\\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\\0\\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\\0\\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\\0\\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\\0\\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\\0\\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\\0ᾞ\\0ᾡᾧ\\0\\0ῆῌ\\0ΐ\\0ῦῪ \\0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\\0\\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\\0⁐β•‥‧\\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\\0‶;慔;慖ʴ‾⁁\\0\\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\\0⊪\\0⊸⋅⋎\\0⋕⋳\\0\\0⋸⌢⍧⍢⍿\\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\\0⒪\\0⒱\\0\\0\\0\\0\\0⒵Ⓔ\\0ⓆⓈⓍ\\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\\0\\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0ⴭ\\0ⴸⵈⵠⵥⶄᬇ\\0\\0ⶍⶫ\\0ⷈⷎ\\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\\0\\0\\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\\0\\0⺀⺝\\0⺢⺹\\0\\0⻋ຜ\\0⼓\\0\\0⼫⾼\\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\\0\\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\\0㍺㎤\\0\\0㏬㏰\\0㐨㑈㑚㒭㒱㓊㓱\\0㘖\\0\\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\\0\\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\\0㙾㛂\\0\\0\\0\\0\\0㛛㜃\\0㜉㝬\\0\\0\\0㞇ɲ㙖\\0\\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\\0\\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\\0\\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\\0㪋\\0㪐㪛\\0\\0㪝㪨㪫㪯\\0\\0㫃㫎\\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split(\"\").map(function(e) {\n return e.charCodeAt(0);\n })\n);\nvar F2 = {};\nObject.defineProperty(F2, \"__esModule\", { value: !0 });\nF2.default = new Uint16Array(\n // prettier-ignore\n \"Ȁaglq\t\u0015\u0018\\x1Bɭ\u000f\\0\\0\u0012p;䀦os;䀧t;䀾t;䀼uot;䀢\".split(\"\").map(function(e) {\n return e.charCodeAt(0);\n })\n);\nvar gv = {};\n(function(e) {\n var t;\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.replaceCodePoint = e.fromCodePoint = void 0;\n var n = /* @__PURE__ */ new Map([\n [0, 65533],\n // C1 Unicode control character reference replacements\n [128, 8364],\n [130, 8218],\n [131, 402],\n [132, 8222],\n [133, 8230],\n [134, 8224],\n [135, 8225],\n [136, 710],\n [137, 8240],\n [138, 352],\n [139, 8249],\n [140, 338],\n [142, 381],\n [145, 8216],\n [146, 8217],\n [147, 8220],\n [148, 8221],\n [149, 8226],\n [150, 8211],\n [151, 8212],\n [152, 732],\n [153, 8482],\n [154, 353],\n [155, 8250],\n [156, 339],\n [158, 382],\n [159, 376]\n ]);\n e.fromCodePoint = // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, node/no-unsupported-features/es-builtins\n (t = String.fromCodePoint) !== null && t !== void 0 ? t : function(i) {\n var o = \"\";\n return i > 65535 && (i -= 65536, o += String.fromCharCode(i >>> 10 & 1023 | 55296), i = 56320 | i & 1023), o += String.fromCharCode(i), o;\n };\n function r(i) {\n var o;\n return i >= 55296 && i <= 57343 || i > 1114111 ? 65533 : (o = n.get(i)) !== null && o !== void 0 ? o : i;\n }\n e.replaceCodePoint = r;\n function a(i) {\n return (0, e.fromCodePoint)(r(i));\n }\n e.default = a;\n})(gv);\n(function(e) {\n var t = Ft && Ft.__createBinding || (Object.create ? function(I, G, $, z) {\n z === void 0 && (z = $);\n var B = Object.getOwnPropertyDescriptor(G, $);\n (!B || (\"get\" in B ? !G.__esModule : B.writable || B.configurable)) && (B = { enumerable: !0, get: function() {\n return G[$];\n } }), Object.defineProperty(I, z, B);\n } : function(I, G, $, z) {\n z === void 0 && (z = $), I[z] = G[$];\n }), n = Ft && Ft.__setModuleDefault || (Object.create ? function(I, G) {\n Object.defineProperty(I, \"default\", { enumerable: !0, value: G });\n } : function(I, G) {\n I.default = G;\n }), r = Ft && Ft.__importStar || function(I) {\n if (I && I.__esModule)\n return I;\n var G = {};\n if (I != null)\n for (var $ in I)\n $ !== \"default\" && Object.prototype.hasOwnProperty.call(I, $) && t(G, I, $);\n return n(G, I), G;\n }, a = Ft && Ft.__importDefault || function(I) {\n return I && I.__esModule ? I : { default: I };\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.decodeXML = e.decodeHTMLStrict = e.decodeHTMLAttribute = e.decodeHTML = e.determineBranch = e.EntityDecoder = e.DecodingMode = e.BinTrieFlags = e.fromCodePoint = e.replaceCodePoint = e.decodeCodePoint = e.xmlDecodeTree = e.htmlDecodeTree = void 0;\n var i = a(B2);\n e.htmlDecodeTree = i.default;\n var o = a(F2);\n e.xmlDecodeTree = o.default;\n var s = r(gv);\n e.decodeCodePoint = s.default;\n var u = gv;\n Object.defineProperty(e, \"replaceCodePoint\", { enumerable: !0, get: function() {\n return u.replaceCodePoint;\n } }), Object.defineProperty(e, \"fromCodePoint\", { enumerable: !0, get: function() {\n return u.fromCodePoint;\n } });\n var l;\n (function(I) {\n I[I.NUM = 35] = \"NUM\", I[I.SEMI = 59] = \"SEMI\", I[I.EQUALS = 61] = \"EQUALS\", I[I.ZERO = 48] = \"ZERO\", I[I.NINE = 57] = \"NINE\", I[I.LOWER_A = 97] = \"LOWER_A\", I[I.LOWER_F = 102] = \"LOWER_F\", I[I.LOWER_X = 120] = \"LOWER_X\", I[I.LOWER_Z = 122] = \"LOWER_Z\", I[I.UPPER_A = 65] = \"UPPER_A\", I[I.UPPER_F = 70] = \"UPPER_F\", I[I.UPPER_Z = 90] = \"UPPER_Z\";\n })(l || (l = {}));\n var c = 32, d;\n (function(I) {\n I[I.VALUE_LENGTH = 49152] = \"VALUE_LENGTH\", I[I.BRANCH_LENGTH = 16256] = \"BRANCH_LENGTH\", I[I.JUMP_TABLE = 127] = \"JUMP_TABLE\";\n })(d = e.BinTrieFlags || (e.BinTrieFlags = {}));\n function p(I) {\n return I >= l.ZERO && I <= l.NINE;\n }\n function g(I) {\n return I >= l.UPPER_A && I <= l.UPPER_F || I >= l.LOWER_A && I <= l.LOWER_F;\n }\n function v(I) {\n return I >= l.UPPER_A && I <= l.UPPER_Z || I >= l.LOWER_A && I <= l.LOWER_Z || p(I);\n }\n function b(I) {\n return I === l.EQUALS || v(I);\n }\n var C;\n (function(I) {\n I[I.EntityStart = 0] = \"EntityStart\", I[I.NumericStart = 1] = \"NumericStart\", I[I.NumericDecimal = 2] = \"NumericDecimal\", I[I.NumericHex = 3] = \"NumericHex\", I[I.NamedEntity = 4] = \"NamedEntity\";\n })(C || (C = {}));\n var w;\n (function(I) {\n I[I.Legacy = 0] = \"Legacy\", I[I.Strict = 1] = \"Strict\", I[I.Attribute = 2] = \"Attribute\";\n })(w = e.DecodingMode || (e.DecodingMode = {}));\n var _ = (\n /** @class */\n function() {\n function I(G, $, z) {\n this.decodeTree = G, this.emitCodePoint = $, this.errors = z, this.state = C.EntityStart, this.consumed = 1, this.result = 0, this.treeIndex = 0, this.excess = 1, this.decodeMode = w.Strict;\n }\n return I.prototype.startEntity = function(G) {\n this.decodeMode = G, this.state = C.EntityStart, this.result = 0, this.treeIndex = 0, this.excess = 1, this.consumed = 1;\n }, I.prototype.write = function(G, $) {\n switch (this.state) {\n case C.EntityStart:\n return G.charCodeAt($) === l.NUM ? (this.state = C.NumericStart, this.consumed += 1, this.stateNumericStart(G, $ + 1)) : (this.state = C.NamedEntity, this.stateNamedEntity(G, $));\n case C.NumericStart:\n return this.stateNumericStart(G, $);\n case C.NumericDecimal:\n return this.stateNumericDecimal(G, $);\n case C.NumericHex:\n return this.stateNumericHex(G, $);\n case C.NamedEntity:\n return this.stateNamedEntity(G, $);\n }\n }, I.prototype.stateNumericStart = function(G, $) {\n return $ >= G.length ? -1 : (G.charCodeAt($) | c) === l.LOWER_X ? (this.state = C.NumericHex, this.consumed += 1, this.stateNumericHex(G, $ + 1)) : (this.state = C.NumericDecimal, this.stateNumericDecimal(G, $));\n }, I.prototype.addToNumericResult = function(G, $, z, B) {\n if ($ !== z) {\n var O = z - $;\n this.result = this.result * Math.pow(B, O) + parseInt(G.substr($, O), B), this.consumed += O;\n }\n }, I.prototype.stateNumericHex = function(G, $) {\n for (var z = $; $ < G.length; ) {\n var B = G.charCodeAt($);\n if (p(B) || g(B))\n $ += 1;\n else\n return this.addToNumericResult(G, z, $, 16), this.emitNumericEntity(B, 3);\n }\n return this.addToNumericResult(G, z, $, 16), -1;\n }, I.prototype.stateNumericDecimal = function(G, $) {\n for (var z = $; $ < G.length; ) {\n var B = G.charCodeAt($);\n if (p(B))\n $ += 1;\n else\n return this.addToNumericResult(G, z, $, 10), this.emitNumericEntity(B, 2);\n }\n return this.addToNumericResult(G, z, $, 10), -1;\n }, I.prototype.emitNumericEntity = function(G, $) {\n var z;\n if (this.consumed <= $)\n return (z = this.errors) === null || z === void 0 || z.absenceOfDigitsInNumericCharacterReference(this.consumed), 0;\n if (G === l.SEMI)\n this.consumed += 1;\n else if (this.decodeMode === w.Strict)\n return 0;\n return this.emitCodePoint((0, s.replaceCodePoint)(this.result), this.consumed), this.errors && (G !== l.SEMI && this.errors.missingSemicolonAfterCharacterReference(), this.errors.validateNumericCharacterReference(this.result)), this.consumed;\n }, I.prototype.stateNamedEntity = function(G, $) {\n for (var z = this.decodeTree, B = z[this.treeIndex], O = (B & d.VALUE_LENGTH) >> 14; $ < G.length; $++, this.excess++) {\n var D = G.charCodeAt($);\n if (this.treeIndex = S(z, B, this.treeIndex + Math.max(1, O), D), this.treeIndex < 0)\n return this.result === 0 || // If we are parsing an attribute\n this.decodeMode === w.Attribute && // We shouldn't have consumed any characters after the entity,\n (O === 0 || // And there should be no invalid characters.\n b(D)) ? 0 : this.emitNotTerminatedNamedEntity();\n if (B = z[this.treeIndex], O = (B & d.VALUE_LENGTH) >> 14, O !== 0) {\n if (D === l.SEMI)\n return this.emitNamedEntityData(this.treeIndex, O, this.consumed + this.excess);\n this.decodeMode !== w.Strict && (this.result = this.treeIndex, this.consumed += this.excess, this.excess = 0);\n }\n }\n return -1;\n }, I.prototype.emitNotTerminatedNamedEntity = function() {\n var G, $ = this, z = $.result, B = $.decodeTree, O = (B[z] & d.VALUE_LENGTH) >> 14;\n return this.emitNamedEntityData(z, O, this.consumed), (G = this.errors) === null || G === void 0 || G.missingSemicolonAfterCharacterReference(), this.consumed;\n }, I.prototype.emitNamedEntityData = function(G, $, z) {\n var B = this.decodeTree;\n return this.emitCodePoint($ === 1 ? B[G] & ~d.VALUE_LENGTH : B[G + 1], z), $ === 3 && this.emitCodePoint(B[G + 2], z), z;\n }, I.prototype.end = function() {\n var G;\n switch (this.state) {\n case C.NamedEntity:\n return this.result !== 0 && (this.decodeMode !== w.Attribute || this.result === this.treeIndex) ? this.emitNotTerminatedNamedEntity() : 0;\n case C.NumericDecimal:\n return this.emitNumericEntity(0, 2);\n case C.NumericHex:\n return this.emitNumericEntity(0, 3);\n case C.NumericStart:\n return (G = this.errors) === null || G === void 0 || G.absenceOfDigitsInNumericCharacterReference(this.consumed), 0;\n case C.EntityStart:\n return 0;\n }\n }, I;\n }()\n );\n e.EntityDecoder = _;\n function x(I) {\n var G = \"\", $ = new _(I, function(z) {\n return G += (0, s.fromCodePoint)(z);\n });\n return function(z, B) {\n for (var O = 0, D = 0; (D = z.indexOf(\"&\", D)) >= 0; ) {\n G += z.slice(O, D), $.startEntity(B);\n var T = $.write(\n z,\n // Skip the \"&\"\n D + 1\n );\n if (T < 0) {\n O = D + $.end();\n break;\n }\n O = D + T, D = T === 0 ? O + 1 : O;\n }\n var j = G + z.slice(O);\n return G = \"\", j;\n };\n }\n function S(I, G, $, z) {\n var B = (G & d.BRANCH_LENGTH) >> 7, O = G & d.JUMP_TABLE;\n if (B === 0)\n return O !== 0 && z === O ? $ : -1;\n if (O) {\n var D = z - O;\n return D < 0 || D >= B ? -1 : I[$ + D] - 1;\n }\n for (var T = $, j = T + B - 1; T <= j; ) {\n var F = T + j >>> 1, L = I[F];\n if (L < z)\n T = F + 1;\n else if (L > z)\n j = F - 1;\n else\n return I[F + B];\n }\n return -1;\n }\n e.determineBranch = S;\n var E = x(i.default), N = x(o.default);\n function P(I, G) {\n return G === void 0 && (G = w.Legacy), E(I, G);\n }\n e.decodeHTML = P;\n function H(I) {\n return E(I, w.Attribute);\n }\n e.decodeHTMLAttribute = H;\n function k(I) {\n return E(I, w.Strict);\n }\n e.decodeHTMLStrict = k;\n function Q(I) {\n return N(I, w.Strict);\n }\n e.decodeXML = Q;\n})($c);\nObject.defineProperty(cl, \"__esModule\", { value: !0 });\ncl.QuoteType = void 0;\nvar iu = $c, Ht;\n(function(e) {\n e[e.Tab = 9] = \"Tab\", e[e.NewLine = 10] = \"NewLine\", e[e.FormFeed = 12] = \"FormFeed\", e[e.CarriageReturn = 13] = \"CarriageReturn\", e[e.Space = 32] = \"Space\", e[e.ExclamationMark = 33] = \"ExclamationMark\", e[e.Number = 35] = \"Number\", e[e.Amp = 38] = \"Amp\", e[e.SingleQuote = 39] = \"SingleQuote\", e[e.DoubleQuote = 34] = \"DoubleQuote\", e[e.Dash = 45] = \"Dash\", e[e.Slash = 47] = \"Slash\", e[e.Zero = 48] = \"Zero\", e[e.Nine = 57] = \"Nine\", e[e.Semi = 59] = \"Semi\", e[e.Lt = 60] = \"Lt\", e[e.Eq = 61] = \"Eq\", e[e.Gt = 62] = \"Gt\", e[e.Questionmark = 63] = \"Questionmark\", e[e.UpperA = 65] = \"UpperA\", e[e.LowerA = 97] = \"LowerA\", e[e.UpperF = 70] = \"UpperF\", e[e.LowerF = 102] = \"LowerF\", e[e.UpperZ = 90] = \"UpperZ\", e[e.LowerZ = 122] = \"LowerZ\", e[e.LowerX = 120] = \"LowerX\", e[e.OpeningSquareBracket = 91] = \"OpeningSquareBracket\";\n})(Ht || (Ht = {}));\nvar at;\n(function(e) {\n e[e.Text = 1] = \"Text\", e[e.BeforeTagName = 2] = \"BeforeTagName\", e[e.InTagName = 3] = \"InTagName\", e[e.InSelfClosingTag = 4] = \"InSelfClosingTag\", e[e.BeforeClosingTagName = 5] = \"BeforeClosingTagName\", e[e.InClosingTagName = 6] = \"InClosingTagName\", e[e.AfterClosingTagName = 7] = \"AfterClosingTagName\", e[e.BeforeAttributeName = 8] = \"BeforeAttributeName\", e[e.InAttributeName = 9] = \"InAttributeName\", e[e.AfterAttributeName = 10] = \"AfterAttributeName\", e[e.BeforeAttributeValue = 11] = \"BeforeAttributeValue\", e[e.InAttributeValueDq = 12] = \"InAttributeValueDq\", e[e.InAttributeValueSq = 13] = \"InAttributeValueSq\", e[e.InAttributeValueNq = 14] = \"InAttributeValueNq\", e[e.BeforeDeclaration = 15] = \"BeforeDeclaration\", e[e.InDeclaration = 16] = \"InDeclaration\", e[e.InProcessingInstruction = 17] = \"InProcessingInstruction\", e[e.BeforeComment = 18] = \"BeforeComment\", e[e.CDATASequence = 19] = \"CDATASequence\", e[e.InSpecialComment = 20] = \"InSpecialComment\", e[e.InCommentLike = 21] = \"InCommentLike\", e[e.BeforeSpecialS = 22] = \"BeforeSpecialS\", e[e.BeforeSpecialT = 23] = \"BeforeSpecialT\", e[e.SpecialStartSequence = 24] = \"SpecialStartSequence\", e[e.InSpecialTag = 25] = \"InSpecialTag\", e[e.InEntity = 26] = \"InEntity\";\n})(at || (at = {}));\nfunction $i(e) {\n return e === Ht.Space || e === Ht.NewLine || e === Ht.Tab || e === Ht.FormFeed || e === Ht.CarriageReturn;\n}\nfunction L0(e) {\n return e === Ht.Slash || e === Ht.Gt || $i(e);\n}\nfunction W1e(e) {\n return e >= Ht.LowerA && e <= Ht.LowerZ || e >= Ht.UpperA && e <= Ht.UpperZ;\n}\nvar us;\n(function(e) {\n e[e.NoValue = 0] = \"NoValue\", e[e.Unquoted = 1] = \"Unquoted\", e[e.Single = 2] = \"Single\", e[e.Double = 3] = \"Double\";\n})(us || (cl.QuoteType = us = {}));\nvar Nr = {\n Cdata: new Uint8Array([67, 68, 65, 84, 65, 91]),\n // CDATA[\n CdataEnd: new Uint8Array([93, 93, 62]),\n // ]]>\n CommentEnd: new Uint8Array([45, 45, 62]),\n // `-->`\n ScriptEnd: new Uint8Array([60, 47, 115, 99, 114, 105, 112, 116]),\n // `<\\/script`\n StyleEnd: new Uint8Array([60, 47, 115, 116, 121, 108, 101]),\n // ` this.sectionStart && this.cbs.ontext(this.sectionStart, this.index), this.state = at.BeforeTagName, this.sectionStart = this.index) : this.decodeEntities && t === Ht.Amp && this.startEntity();\n }, e.prototype.stateSpecialStartSequence = function(t) {\n var n = this.sequenceIndex === this.currentSequence.length, r = n ? (\n // If we are at the end of the sequence, make sure the tag name has ended\n L0(t)\n ) : (\n // Otherwise, do a case-insensitive comparison\n (t | 32) === this.currentSequence[this.sequenceIndex]\n );\n if (!r)\n this.isSpecial = !1;\n else if (!n) {\n this.sequenceIndex++;\n return;\n }\n this.sequenceIndex = 0, this.state = at.InTagName, this.stateInTagName(t);\n }, e.prototype.stateInSpecialTag = function(t) {\n if (this.sequenceIndex === this.currentSequence.length) {\n if (t === Ht.Gt || $i(t)) {\n var n = this.index - this.currentSequence.length;\n if (this.sectionStart < n) {\n var r = this.index;\n this.index = n, this.cbs.ontext(this.sectionStart, n), this.index = r;\n }\n this.isSpecial = !1, this.sectionStart = n + 2, this.stateInClosingTagName(t);\n return;\n }\n this.sequenceIndex = 0;\n }\n (t | 32) === this.currentSequence[this.sequenceIndex] ? this.sequenceIndex += 1 : this.sequenceIndex === 0 ? this.currentSequence === Nr.TitleEnd ? this.decodeEntities && t === Ht.Amp && this.startEntity() : this.fastForwardTo(Ht.Lt) && (this.sequenceIndex = 1) : this.sequenceIndex = +(t === Ht.Lt);\n }, e.prototype.stateCDATASequence = function(t) {\n t === Nr.Cdata[this.sequenceIndex] ? ++this.sequenceIndex === Nr.Cdata.length && (this.state = at.InCommentLike, this.currentSequence = Nr.CdataEnd, this.sequenceIndex = 0, this.sectionStart = this.index + 1) : (this.sequenceIndex = 0, this.state = at.InDeclaration, this.stateInDeclaration(t));\n }, e.prototype.fastForwardTo = function(t) {\n for (; ++this.index < this.buffer.length + this.offset; )\n if (this.buffer.charCodeAt(this.index - this.offset) === t)\n return !0;\n return this.index = this.buffer.length + this.offset - 1, !1;\n }, e.prototype.stateInCommentLike = function(t) {\n t === this.currentSequence[this.sequenceIndex] ? ++this.sequenceIndex === this.currentSequence.length && (this.currentSequence === Nr.CdataEnd ? this.cbs.oncdata(this.sectionStart, this.index, 2) : this.cbs.oncomment(this.sectionStart, this.index, 2), this.sequenceIndex = 0, this.sectionStart = this.index + 1, this.state = at.Text) : this.sequenceIndex === 0 ? this.fastForwardTo(this.currentSequence[0]) && (this.sequenceIndex = 1) : t !== this.currentSequence[this.sequenceIndex - 1] && (this.sequenceIndex = 0);\n }, e.prototype.isTagStartChar = function(t) {\n return this.xmlMode ? !L0(t) : W1e(t);\n }, e.prototype.startSpecial = function(t, n) {\n this.isSpecial = !0, this.currentSequence = t, this.sequenceIndex = n, this.state = at.SpecialStartSequence;\n }, e.prototype.stateBeforeTagName = function(t) {\n if (t === Ht.ExclamationMark)\n this.state = at.BeforeDeclaration, this.sectionStart = this.index + 1;\n else if (t === Ht.Questionmark)\n this.state = at.InProcessingInstruction, this.sectionStart = this.index + 1;\n else if (this.isTagStartChar(t)) {\n var n = t | 32;\n this.sectionStart = this.index, this.xmlMode ? this.state = at.InTagName : n === Nr.ScriptEnd[2] ? this.state = at.BeforeSpecialS : n === Nr.TitleEnd[2] ? this.state = at.BeforeSpecialT : this.state = at.InTagName;\n } else\n t === Ht.Slash ? this.state = at.BeforeClosingTagName : (this.state = at.Text, this.stateText(t));\n }, e.prototype.stateInTagName = function(t) {\n L0(t) && (this.cbs.onopentagname(this.sectionStart, this.index), this.sectionStart = -1, this.state = at.BeforeAttributeName, this.stateBeforeAttributeName(t));\n }, e.prototype.stateBeforeClosingTagName = function(t) {\n $i(t) || (t === Ht.Gt ? this.state = at.Text : (this.state = this.isTagStartChar(t) ? at.InClosingTagName : at.InSpecialComment, this.sectionStart = this.index));\n }, e.prototype.stateInClosingTagName = function(t) {\n (t === Ht.Gt || $i(t)) && (this.cbs.onclosetag(this.sectionStart, this.index), this.sectionStart = -1, this.state = at.AfterClosingTagName, this.stateAfterClosingTagName(t));\n }, e.prototype.stateAfterClosingTagName = function(t) {\n (t === Ht.Gt || this.fastForwardTo(Ht.Gt)) && (this.state = at.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateBeforeAttributeName = function(t) {\n t === Ht.Gt ? (this.cbs.onopentagend(this.index), this.isSpecial ? (this.state = at.InSpecialTag, this.sequenceIndex = 0) : this.state = at.Text, this.sectionStart = this.index + 1) : t === Ht.Slash ? this.state = at.InSelfClosingTag : $i(t) || (this.state = at.InAttributeName, this.sectionStart = this.index);\n }, e.prototype.stateInSelfClosingTag = function(t) {\n t === Ht.Gt ? (this.cbs.onselfclosingtag(this.index), this.state = at.Text, this.sectionStart = this.index + 1, this.isSpecial = !1) : $i(t) || (this.state = at.BeforeAttributeName, this.stateBeforeAttributeName(t));\n }, e.prototype.stateInAttributeName = function(t) {\n (t === Ht.Eq || L0(t)) && (this.cbs.onattribname(this.sectionStart, this.index), this.sectionStart = this.index, this.state = at.AfterAttributeName, this.stateAfterAttributeName(t));\n }, e.prototype.stateAfterAttributeName = function(t) {\n t === Ht.Eq ? this.state = at.BeforeAttributeValue : t === Ht.Slash || t === Ht.Gt ? (this.cbs.onattribend(us.NoValue, this.sectionStart), this.sectionStart = -1, this.state = at.BeforeAttributeName, this.stateBeforeAttributeName(t)) : $i(t) || (this.cbs.onattribend(us.NoValue, this.sectionStart), this.state = at.InAttributeName, this.sectionStart = this.index);\n }, e.prototype.stateBeforeAttributeValue = function(t) {\n t === Ht.DoubleQuote ? (this.state = at.InAttributeValueDq, this.sectionStart = this.index + 1) : t === Ht.SingleQuote ? (this.state = at.InAttributeValueSq, this.sectionStart = this.index + 1) : $i(t) || (this.sectionStart = this.index, this.state = at.InAttributeValueNq, this.stateInAttributeValueNoQuotes(t));\n }, e.prototype.handleInAttributeValue = function(t, n) {\n t === n || !this.decodeEntities && this.fastForwardTo(n) ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(n === Ht.DoubleQuote ? us.Double : us.Single, this.index + 1), this.state = at.BeforeAttributeName) : this.decodeEntities && t === Ht.Amp && this.startEntity();\n }, e.prototype.stateInAttributeValueDoubleQuotes = function(t) {\n this.handleInAttributeValue(t, Ht.DoubleQuote);\n }, e.prototype.stateInAttributeValueSingleQuotes = function(t) {\n this.handleInAttributeValue(t, Ht.SingleQuote);\n }, e.prototype.stateInAttributeValueNoQuotes = function(t) {\n $i(t) || t === Ht.Gt ? (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = -1, this.cbs.onattribend(us.Unquoted, this.index), this.state = at.BeforeAttributeName, this.stateBeforeAttributeName(t)) : this.decodeEntities && t === Ht.Amp && this.startEntity();\n }, e.prototype.stateBeforeDeclaration = function(t) {\n t === Ht.OpeningSquareBracket ? (this.state = at.CDATASequence, this.sequenceIndex = 0) : this.state = t === Ht.Dash ? at.BeforeComment : at.InDeclaration;\n }, e.prototype.stateInDeclaration = function(t) {\n (t === Ht.Gt || this.fastForwardTo(Ht.Gt)) && (this.cbs.ondeclaration(this.sectionStart, this.index), this.state = at.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateInProcessingInstruction = function(t) {\n (t === Ht.Gt || this.fastForwardTo(Ht.Gt)) && (this.cbs.onprocessinginstruction(this.sectionStart, this.index), this.state = at.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateBeforeComment = function(t) {\n t === Ht.Dash ? (this.state = at.InCommentLike, this.currentSequence = Nr.CommentEnd, this.sequenceIndex = 2, this.sectionStart = this.index + 1) : this.state = at.InDeclaration;\n }, e.prototype.stateInSpecialComment = function(t) {\n (t === Ht.Gt || this.fastForwardTo(Ht.Gt)) && (this.cbs.oncomment(this.sectionStart, this.index, 0), this.state = at.Text, this.sectionStart = this.index + 1);\n }, e.prototype.stateBeforeSpecialS = function(t) {\n var n = t | 32;\n n === Nr.ScriptEnd[3] ? this.startSpecial(Nr.ScriptEnd, 4) : n === Nr.StyleEnd[3] ? this.startSpecial(Nr.StyleEnd, 4) : (this.state = at.InTagName, this.stateInTagName(t));\n }, e.prototype.stateBeforeSpecialT = function(t) {\n var n = t | 32;\n n === Nr.TitleEnd[3] ? this.startSpecial(Nr.TitleEnd, 4) : n === Nr.TextareaEnd[3] ? this.startSpecial(Nr.TextareaEnd, 4) : (this.state = at.InTagName, this.stateInTagName(t));\n }, e.prototype.startEntity = function() {\n this.baseState = this.state, this.state = at.InEntity, this.entityStart = this.index, this.entityDecoder.startEntity(this.xmlMode ? iu.DecodingMode.Strict : this.baseState === at.Text || this.baseState === at.InSpecialTag ? iu.DecodingMode.Legacy : iu.DecodingMode.Attribute);\n }, e.prototype.stateInEntity = function() {\n var t = this.entityDecoder.write(this.buffer, this.index - this.offset);\n t >= 0 ? (this.state = this.baseState, t === 0 && (this.index = this.entityStart)) : this.index = this.offset + this.buffer.length - 1;\n }, e.prototype.cleanup = function() {\n this.running && this.sectionStart !== this.index && (this.state === at.Text || this.state === at.InSpecialTag && this.sequenceIndex === 0 ? (this.cbs.ontext(this.sectionStart, this.index), this.sectionStart = this.index) : (this.state === at.InAttributeValueDq || this.state === at.InAttributeValueSq || this.state === at.InAttributeValueNq) && (this.cbs.onattribdata(this.sectionStart, this.index), this.sectionStart = this.index));\n }, e.prototype.shouldContinue = function() {\n return this.index < this.buffer.length + this.offset && this.running;\n }, e.prototype.parse = function() {\n for (; this.shouldContinue(); ) {\n var t = this.buffer.charCodeAt(this.index - this.offset);\n switch (this.state) {\n case at.Text: {\n this.stateText(t);\n break;\n }\n case at.SpecialStartSequence: {\n this.stateSpecialStartSequence(t);\n break;\n }\n case at.InSpecialTag: {\n this.stateInSpecialTag(t);\n break;\n }\n case at.CDATASequence: {\n this.stateCDATASequence(t);\n break;\n }\n case at.InAttributeValueDq: {\n this.stateInAttributeValueDoubleQuotes(t);\n break;\n }\n case at.InAttributeName: {\n this.stateInAttributeName(t);\n break;\n }\n case at.InCommentLike: {\n this.stateInCommentLike(t);\n break;\n }\n case at.InSpecialComment: {\n this.stateInSpecialComment(t);\n break;\n }\n case at.BeforeAttributeName: {\n this.stateBeforeAttributeName(t);\n break;\n }\n case at.InTagName: {\n this.stateInTagName(t);\n break;\n }\n case at.InClosingTagName: {\n this.stateInClosingTagName(t);\n break;\n }\n case at.BeforeTagName: {\n this.stateBeforeTagName(t);\n break;\n }\n case at.AfterAttributeName: {\n this.stateAfterAttributeName(t);\n break;\n }\n case at.InAttributeValueSq: {\n this.stateInAttributeValueSingleQuotes(t);\n break;\n }\n case at.BeforeAttributeValue: {\n this.stateBeforeAttributeValue(t);\n break;\n }\n case at.BeforeClosingTagName: {\n this.stateBeforeClosingTagName(t);\n break;\n }\n case at.AfterClosingTagName: {\n this.stateAfterClosingTagName(t);\n break;\n }\n case at.BeforeSpecialS: {\n this.stateBeforeSpecialS(t);\n break;\n }\n case at.BeforeSpecialT: {\n this.stateBeforeSpecialT(t);\n break;\n }\n case at.InAttributeValueNq: {\n this.stateInAttributeValueNoQuotes(t);\n break;\n }\n case at.InSelfClosingTag: {\n this.stateInSelfClosingTag(t);\n break;\n }\n case at.InDeclaration: {\n this.stateInDeclaration(t);\n break;\n }\n case at.BeforeDeclaration: {\n this.stateBeforeDeclaration(t);\n break;\n }\n case at.BeforeComment: {\n this.stateBeforeComment(t);\n break;\n }\n case at.InProcessingInstruction: {\n this.stateInProcessingInstruction(t);\n break;\n }\n case at.InEntity: {\n this.stateInEntity();\n break;\n }\n }\n this.index++;\n }\n this.cleanup();\n }, e.prototype.finish = function() {\n this.state === at.InEntity && (this.entityDecoder.end(), this.state = this.baseState), this.handleTrailingData(), this.cbs.onend();\n }, e.prototype.handleTrailingData = function() {\n var t = this.buffer.length + this.offset;\n this.sectionStart >= t || (this.state === at.InCommentLike ? this.currentSequence === Nr.CdataEnd ? this.cbs.oncdata(this.sectionStart, t, 0) : this.cbs.oncomment(this.sectionStart, t, 0) : this.state === at.InTagName || this.state === at.BeforeAttributeName || this.state === at.BeforeAttributeValue || this.state === at.AfterAttributeName || this.state === at.InAttributeName || this.state === at.InAttributeValueSq || this.state === at.InAttributeValueDq || this.state === at.InAttributeValueNq || this.state === at.InClosingTagName || this.cbs.ontext(this.sectionStart, t));\n }, e.prototype.emitCodePoint = function(t, n) {\n this.baseState !== at.Text && this.baseState !== at.InSpecialTag ? (this.sectionStart < this.entityStart && this.cbs.onattribdata(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + n, this.index = this.sectionStart - 1, this.cbs.onattribentity(t)) : (this.sectionStart < this.entityStart && this.cbs.ontext(this.sectionStart, this.entityStart), this.sectionStart = this.entityStart + n, this.index = this.sectionStart - 1, this.cbs.ontextentity(t, this.sectionStart));\n }, e;\n }()\n);\ncl.default = K1e;\nvar Y1e = Ft && Ft.__createBinding || (Object.create ? function(e, t, n, r) {\n r === void 0 && (r = n);\n var a = Object.getOwnPropertyDescriptor(t, n);\n (!a || (\"get\" in a ? !t.__esModule : a.writable || a.configurable)) && (a = { enumerable: !0, get: function() {\n return t[n];\n } }), Object.defineProperty(e, r, a);\n} : function(e, t, n, r) {\n r === void 0 && (r = n), e[r] = t[n];\n}), X1e = Ft && Ft.__setModuleDefault || (Object.create ? function(e, t) {\n Object.defineProperty(e, \"default\", { enumerable: !0, value: t });\n} : function(e, t) {\n e.default = t;\n}), Z1e = Ft && Ft.__importStar || function(e) {\n if (e && e.__esModule)\n return e;\n var t = {};\n if (e != null)\n for (var n in e)\n n !== \"default\" && Object.prototype.hasOwnProperty.call(e, n) && Y1e(t, e, n);\n return X1e(t, e), t;\n};\nObject.defineProperty(jc, \"__esModule\", { value: !0 });\njc.Parser = void 0;\nvar k0 = Z1e(cl), zN = $c, ou = /* @__PURE__ */ new Set([\n \"input\",\n \"option\",\n \"optgroup\",\n \"select\",\n \"button\",\n \"datalist\",\n \"textarea\"\n]), Tn = /* @__PURE__ */ new Set([\"p\"]), qN = /* @__PURE__ */ new Set([\"thead\", \"tbody\"]), GN = /* @__PURE__ */ new Set([\"dd\", \"dt\"]), UN = /* @__PURE__ */ new Set([\"rt\", \"rp\"]), Q1e = /* @__PURE__ */ new Map([\n [\"tr\", /* @__PURE__ */ new Set([\"tr\", \"th\", \"td\"])],\n [\"th\", /* @__PURE__ */ new Set([\"th\"])],\n [\"td\", /* @__PURE__ */ new Set([\"thead\", \"th\", \"td\"])],\n [\"body\", /* @__PURE__ */ new Set([\"head\", \"link\", \"script\"])],\n [\"li\", /* @__PURE__ */ new Set([\"li\"])],\n [\"p\", Tn],\n [\"h1\", Tn],\n [\"h2\", Tn],\n [\"h3\", Tn],\n [\"h4\", Tn],\n [\"h5\", Tn],\n [\"h6\", Tn],\n [\"select\", ou],\n [\"input\", ou],\n [\"output\", ou],\n [\"button\", ou],\n [\"datalist\", ou],\n [\"textarea\", ou],\n [\"option\", /* @__PURE__ */ new Set([\"option\"])],\n [\"optgroup\", /* @__PURE__ */ new Set([\"optgroup\", \"option\"])],\n [\"dd\", GN],\n [\"dt\", GN],\n [\"address\", Tn],\n [\"article\", Tn],\n [\"aside\", Tn],\n [\"blockquote\", Tn],\n [\"details\", Tn],\n [\"div\", Tn],\n [\"dl\", Tn],\n [\"fieldset\", Tn],\n [\"figcaption\", Tn],\n [\"figure\", Tn],\n [\"footer\", Tn],\n [\"form\", Tn],\n [\"header\", Tn],\n [\"hr\", Tn],\n [\"main\", Tn],\n [\"nav\", Tn],\n [\"ol\", Tn],\n [\"pre\", Tn],\n [\"section\", Tn],\n [\"table\", Tn],\n [\"ul\", Tn],\n [\"rt\", UN],\n [\"rp\", UN],\n [\"tbody\", qN],\n [\"tfoot\", qN]\n]), J1e = /* @__PURE__ */ new Set([\n \"area\",\n \"base\",\n \"basefont\",\n \"br\",\n \"col\",\n \"command\",\n \"embed\",\n \"frame\",\n \"hr\",\n \"img\",\n \"input\",\n \"isindex\",\n \"keygen\",\n \"link\",\n \"meta\",\n \"param\",\n \"source\",\n \"track\",\n \"wbr\"\n]), WN = /* @__PURE__ */ new Set([\"math\", \"svg\"]), KN = /* @__PURE__ */ new Set([\n \"mi\",\n \"mo\",\n \"mn\",\n \"ms\",\n \"mtext\",\n \"annotation-xml\",\n \"foreignobject\",\n \"desc\",\n \"title\"\n]), eve = /\\s|\\//, tve = (\n /** @class */\n function() {\n function e(t, n) {\n n === void 0 && (n = {});\n var r, a, i, o, s, u;\n this.options = n, this.startIndex = 0, this.endIndex = 0, this.openTagStart = 0, this.tagname = \"\", this.attribname = \"\", this.attribvalue = \"\", this.attribs = null, this.stack = [], this.buffers = [], this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1, this.cbs = t ?? {}, this.htmlMode = !this.options.xmlMode, this.lowerCaseTagNames = (r = n.lowerCaseTags) !== null && r !== void 0 ? r : this.htmlMode, this.lowerCaseAttributeNames = (a = n.lowerCaseAttributeNames) !== null && a !== void 0 ? a : this.htmlMode, this.recognizeSelfClosing = (i = n.recognizeSelfClosing) !== null && i !== void 0 ? i : !this.htmlMode, this.tokenizer = new ((o = n.Tokenizer) !== null && o !== void 0 ? o : k0.default)(this.options, this), this.foreignContext = [!this.htmlMode], (u = (s = this.cbs).onparserinit) === null || u === void 0 || u.call(s, this);\n }\n return e.prototype.ontext = function(t, n) {\n var r, a, i = this.getSlice(t, n);\n this.endIndex = n - 1, (a = (r = this.cbs).ontext) === null || a === void 0 || a.call(r, i), this.startIndex = n;\n }, e.prototype.ontextentity = function(t, n) {\n var r, a;\n this.endIndex = n - 1, (a = (r = this.cbs).ontext) === null || a === void 0 || a.call(r, (0, zN.fromCodePoint)(t)), this.startIndex = n;\n }, e.prototype.isVoidElement = function(t) {\n return this.htmlMode && J1e.has(t);\n }, e.prototype.onopentagname = function(t, n) {\n this.endIndex = n;\n var r = this.getSlice(t, n);\n this.lowerCaseTagNames && (r = r.toLowerCase()), this.emitOpenTag(r);\n }, e.prototype.emitOpenTag = function(t) {\n var n, r, a, i;\n this.openTagStart = this.startIndex, this.tagname = t;\n var o = this.htmlMode && Q1e.get(t);\n if (o)\n for (; this.stack.length > 0 && o.has(this.stack[0]); ) {\n var s = this.stack.shift();\n (r = (n = this.cbs).onclosetag) === null || r === void 0 || r.call(n, s, !0);\n }\n this.isVoidElement(t) || (this.stack.unshift(t), this.htmlMode && (WN.has(t) ? this.foreignContext.unshift(!0) : KN.has(t) && this.foreignContext.unshift(!1))), (i = (a = this.cbs).onopentagname) === null || i === void 0 || i.call(a, t), this.cbs.onopentag && (this.attribs = {});\n }, e.prototype.endOpenTag = function(t) {\n var n, r;\n this.startIndex = this.openTagStart, this.attribs && ((r = (n = this.cbs).onopentag) === null || r === void 0 || r.call(n, this.tagname, this.attribs, t), this.attribs = null), this.cbs.onclosetag && this.isVoidElement(this.tagname) && this.cbs.onclosetag(this.tagname, !0), this.tagname = \"\";\n }, e.prototype.onopentagend = function(t) {\n this.endIndex = t, this.endOpenTag(!1), this.startIndex = t + 1;\n }, e.prototype.onclosetag = function(t, n) {\n var r, a, i, o, s, u, l, c;\n this.endIndex = n;\n var d = this.getSlice(t, n);\n if (this.lowerCaseTagNames && (d = d.toLowerCase()), this.htmlMode && (WN.has(d) || KN.has(d)) && this.foreignContext.shift(), this.isVoidElement(d))\n this.htmlMode && d === \"br\" && ((o = (i = this.cbs).onopentagname) === null || o === void 0 || o.call(i, \"br\"), (u = (s = this.cbs).onopentag) === null || u === void 0 || u.call(s, \"br\", {}, !0), (c = (l = this.cbs).onclosetag) === null || c === void 0 || c.call(l, \"br\", !1));\n else {\n var p = this.stack.indexOf(d);\n if (p !== -1)\n for (var g = 0; g <= p; g++) {\n var v = this.stack.shift();\n (a = (r = this.cbs).onclosetag) === null || a === void 0 || a.call(r, v, g !== p);\n }\n else\n this.htmlMode && d === \"p\" && (this.emitOpenTag(\"p\"), this.closeCurrentTag(!0));\n }\n this.startIndex = n + 1;\n }, e.prototype.onselfclosingtag = function(t) {\n this.endIndex = t, this.recognizeSelfClosing || this.foreignContext[0] ? (this.closeCurrentTag(!1), this.startIndex = t + 1) : this.onopentagend(t);\n }, e.prototype.closeCurrentTag = function(t) {\n var n, r, a = this.tagname;\n this.endOpenTag(t), this.stack[0] === a && ((r = (n = this.cbs).onclosetag) === null || r === void 0 || r.call(n, a, !t), this.stack.shift());\n }, e.prototype.onattribname = function(t, n) {\n this.startIndex = t;\n var r = this.getSlice(t, n);\n this.attribname = this.lowerCaseAttributeNames ? r.toLowerCase() : r;\n }, e.prototype.onattribdata = function(t, n) {\n this.attribvalue += this.getSlice(t, n);\n }, e.prototype.onattribentity = function(t) {\n this.attribvalue += (0, zN.fromCodePoint)(t);\n }, e.prototype.onattribend = function(t, n) {\n var r, a;\n this.endIndex = n, (a = (r = this.cbs).onattribute) === null || a === void 0 || a.call(r, this.attribname, this.attribvalue, t === k0.QuoteType.Double ? '\"' : t === k0.QuoteType.Single ? \"'\" : t === k0.QuoteType.NoValue ? void 0 : null), this.attribs && !Object.prototype.hasOwnProperty.call(this.attribs, this.attribname) && (this.attribs[this.attribname] = this.attribvalue), this.attribvalue = \"\";\n }, e.prototype.getInstructionName = function(t) {\n var n = t.search(eve), r = n < 0 ? t : t.substr(0, n);\n return this.lowerCaseTagNames && (r = r.toLowerCase()), r;\n }, e.prototype.ondeclaration = function(t, n) {\n this.endIndex = n;\n var r = this.getSlice(t, n);\n if (this.cbs.onprocessinginstruction) {\n var a = this.getInstructionName(r);\n this.cbs.onprocessinginstruction(\"!\".concat(a), \"!\".concat(r));\n }\n this.startIndex = n + 1;\n }, e.prototype.onprocessinginstruction = function(t, n) {\n this.endIndex = n;\n var r = this.getSlice(t, n);\n if (this.cbs.onprocessinginstruction) {\n var a = this.getInstructionName(r);\n this.cbs.onprocessinginstruction(\"?\".concat(a), \"?\".concat(r));\n }\n this.startIndex = n + 1;\n }, e.prototype.oncomment = function(t, n, r) {\n var a, i, o, s;\n this.endIndex = n, (i = (a = this.cbs).oncomment) === null || i === void 0 || i.call(a, this.getSlice(t, n - r)), (s = (o = this.cbs).oncommentend) === null || s === void 0 || s.call(o), this.startIndex = n + 1;\n }, e.prototype.oncdata = function(t, n, r) {\n var a, i, o, s, u, l, c, d, p, g;\n this.endIndex = n;\n var v = this.getSlice(t, n - r);\n !this.htmlMode || this.options.recognizeCDATA ? ((i = (a = this.cbs).oncdatastart) === null || i === void 0 || i.call(a), (s = (o = this.cbs).ontext) === null || s === void 0 || s.call(o, v), (l = (u = this.cbs).oncdataend) === null || l === void 0 || l.call(u)) : ((d = (c = this.cbs).oncomment) === null || d === void 0 || d.call(c, \"[CDATA[\".concat(v, \"]]\")), (g = (p = this.cbs).oncommentend) === null || g === void 0 || g.call(p)), this.startIndex = n + 1;\n }, e.prototype.onend = function() {\n var t, n;\n if (this.cbs.onclosetag) {\n this.endIndex = this.startIndex;\n for (var r = 0; r < this.stack.length; r++)\n this.cbs.onclosetag(this.stack[r], !0);\n }\n (n = (t = this.cbs).onend) === null || n === void 0 || n.call(t);\n }, e.prototype.reset = function() {\n var t, n, r, a;\n (n = (t = this.cbs).onreset) === null || n === void 0 || n.call(t), this.tokenizer.reset(), this.tagname = \"\", this.attribname = \"\", this.attribs = null, this.stack.length = 0, this.startIndex = 0, this.endIndex = 0, (a = (r = this.cbs).onparserinit) === null || a === void 0 || a.call(r, this), this.buffers.length = 0, this.foreignContext.length = 0, this.foreignContext.unshift(!this.htmlMode), this.bufferOffset = 0, this.writeIndex = 0, this.ended = !1;\n }, e.prototype.parseComplete = function(t) {\n this.reset(), this.end(t);\n }, e.prototype.getSlice = function(t, n) {\n for (; t - this.bufferOffset >= this.buffers[0].length; )\n this.shiftBuffer();\n for (var r = this.buffers[0].slice(t - this.bufferOffset, n - this.bufferOffset); n - this.bufferOffset > this.buffers[0].length; )\n this.shiftBuffer(), r += this.buffers[0].slice(0, n - this.bufferOffset);\n return r;\n }, e.prototype.shiftBuffer = function() {\n this.bufferOffset += this.buffers[0].length, this.writeIndex--, this.buffers.shift();\n }, e.prototype.write = function(t) {\n var n, r;\n if (this.ended) {\n (r = (n = this.cbs).onerror) === null || r === void 0 || r.call(n, new Error(\".write() after done!\"));\n return;\n }\n this.buffers.push(t), this.tokenizer.running && (this.tokenizer.write(t), this.writeIndex++);\n }, e.prototype.end = function(t) {\n var n, r;\n if (this.ended) {\n (r = (n = this.cbs).onerror) === null || r === void 0 || r.call(n, new Error(\".end() after done!\"));\n return;\n }\n t && this.write(t), this.ended = !0, this.tokenizer.end();\n }, e.prototype.pause = function() {\n this.tokenizer.pause();\n }, e.prototype.resume = function() {\n for (this.tokenizer.resume(); this.tokenizer.running && this.writeIndex < this.buffers.length; )\n this.tokenizer.write(this.buffers[this.writeIndex++]);\n this.ended && this.tokenizer.end();\n }, e.prototype.parseChunk = function(t) {\n this.write(t);\n }, e.prototype.done = function(t) {\n this.end(t);\n }, e;\n }()\n);\njc.Parser = tve;\nvar gi = {}, dl = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.Doctype = e.CDATA = e.Tag = e.Style = e.Script = e.Comment = e.Directive = e.Text = e.Root = e.isTag = e.ElementType = void 0;\n var t;\n (function(r) {\n r.Root = \"root\", r.Text = \"text\", r.Directive = \"directive\", r.Comment = \"comment\", r.Script = \"script\", r.Style = \"style\", r.Tag = \"tag\", r.CDATA = \"cdata\", r.Doctype = \"doctype\";\n })(t = e.ElementType || (e.ElementType = {}));\n function n(r) {\n return r.type === t.Tag || r.type === t.Script || r.type === t.Style;\n }\n e.isTag = n, e.Root = t.Root, e.Text = t.Text, e.Directive = t.Directive, e.Comment = t.Comment, e.Script = t.Script, e.Style = t.Style, e.Tag = t.Tag, e.CDATA = t.CDATA, e.Doctype = t.Doctype;\n})(dl);\nvar un = {}, Wo = Ft && Ft.__extends || /* @__PURE__ */ function() {\n var e = function(t, n) {\n return e = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(r, a) {\n r.__proto__ = a;\n } || function(r, a) {\n for (var i in a)\n Object.prototype.hasOwnProperty.call(a, i) && (r[i] = a[i]);\n }, e(t, n);\n };\n return function(t, n) {\n if (typeof n != \"function\" && n !== null)\n throw new TypeError(\"Class extends value \" + String(n) + \" is not a constructor or null\");\n e(t, n);\n function r() {\n this.constructor = t;\n }\n t.prototype = n === null ? Object.create(n) : (r.prototype = n.prototype, new r());\n };\n}(), hc = Ft && Ft.__assign || function() {\n return hc = Object.assign || function(e) {\n for (var t, n = 1, r = arguments.length; n < r; n++) {\n t = arguments[n];\n for (var a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (e[a] = t[a]);\n }\n return e;\n }, hc.apply(this, arguments);\n};\nObject.defineProperty(un, \"__esModule\", { value: !0 });\nun.cloneNode = un.hasChildren = un.isDocument = un.isDirective = un.isComment = un.isText = un.isCDATA = un.isTag = un.Element = un.Document = un.CDATA = un.NodeWithChildren = un.ProcessingInstruction = un.Comment = un.Text = un.DataNode = un.Node = void 0;\nvar oa = dl, j2 = (\n /** @class */\n function() {\n function e() {\n this.parent = null, this.prev = null, this.next = null, this.startIndex = null, this.endIndex = null;\n }\n return Object.defineProperty(e.prototype, \"parentNode\", {\n // Read-write aliases for properties\n /**\n * Same as {@link parent}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.parent;\n },\n set: function(t) {\n this.parent = t;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(e.prototype, \"previousSibling\", {\n /**\n * Same as {@link prev}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.prev;\n },\n set: function(t) {\n this.prev = t;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(e.prototype, \"nextSibling\", {\n /**\n * Same as {@link next}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.next;\n },\n set: function(t) {\n this.next = t;\n },\n enumerable: !1,\n configurable: !0\n }), e.prototype.cloneNode = function(t) {\n return t === void 0 && (t = !1), $2(this, t);\n }, e;\n }()\n);\nun.Node = j2;\nvar qh = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t(n) {\n var r = e.call(this) || this;\n return r.data = n, r;\n }\n return Object.defineProperty(t.prototype, \"nodeValue\", {\n /**\n * Same as {@link data}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.data;\n },\n set: function(n) {\n this.data = n;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(j2)\n);\nun.DataNode = qh;\nvar yR = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = oa.ElementType.Text, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 3;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(qh)\n);\nun.Text = yR;\nvar CR = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = oa.ElementType.Comment, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 8;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(qh)\n);\nun.Comment = CR;\nvar xR = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t(n, r) {\n var a = e.call(this, r) || this;\n return a.name = n, a.type = oa.ElementType.Directive, a;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 1;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(qh)\n);\nun.ProcessingInstruction = xR;\nvar Gh = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t(n) {\n var r = e.call(this) || this;\n return r.children = n, r;\n }\n return Object.defineProperty(t.prototype, \"firstChild\", {\n // Aliases\n /** First child of the node. */\n get: function() {\n var n;\n return (n = this.children[0]) !== null && n !== void 0 ? n : null;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"lastChild\", {\n /** Last child of the node. */\n get: function() {\n return this.children.length > 0 ? this.children[this.children.length - 1] : null;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"childNodes\", {\n /**\n * Same as {@link children}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.children;\n },\n set: function(n) {\n this.children = n;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(j2)\n);\nun.NodeWithChildren = Gh;\nvar SR = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = oa.ElementType.CDATA, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 4;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Gh)\n);\nun.CDATA = SR;\nvar _R = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t() {\n var n = e !== null && e.apply(this, arguments) || this;\n return n.type = oa.ElementType.Root, n;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 9;\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Gh)\n);\nun.Document = _R;\nvar ER = (\n /** @class */\n function(e) {\n Wo(t, e);\n function t(n, r, a, i) {\n a === void 0 && (a = []), i === void 0 && (i = n === \"script\" ? oa.ElementType.Script : n === \"style\" ? oa.ElementType.Style : oa.ElementType.Tag);\n var o = e.call(this, a) || this;\n return o.name = n, o.attribs = r, o.type = i, o;\n }\n return Object.defineProperty(t.prototype, \"nodeType\", {\n get: function() {\n return 1;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"tagName\", {\n // DOM Level 1 aliases\n /**\n * Same as {@link name}.\n * [DOM spec](https://dom.spec.whatwg.org)-compatible alias.\n */\n get: function() {\n return this.name;\n },\n set: function(n) {\n this.name = n;\n },\n enumerable: !1,\n configurable: !0\n }), Object.defineProperty(t.prototype, \"attributes\", {\n get: function() {\n var n = this;\n return Object.keys(this.attribs).map(function(r) {\n var a, i;\n return {\n name: r,\n value: n.attribs[r],\n namespace: (a = n[\"x-attribsNamespace\"]) === null || a === void 0 ? void 0 : a[r],\n prefix: (i = n[\"x-attribsPrefix\"]) === null || i === void 0 ? void 0 : i[r]\n };\n });\n },\n enumerable: !1,\n configurable: !0\n }), t;\n }(Gh)\n);\nun.Element = ER;\nfunction wR(e) {\n return (0, oa.isTag)(e);\n}\nun.isTag = wR;\nfunction TR(e) {\n return e.type === oa.ElementType.CDATA;\n}\nun.isCDATA = TR;\nfunction AR(e) {\n return e.type === oa.ElementType.Text;\n}\nun.isText = AR;\nfunction NR(e) {\n return e.type === oa.ElementType.Comment;\n}\nun.isComment = NR;\nfunction OR(e) {\n return e.type === oa.ElementType.Directive;\n}\nun.isDirective = OR;\nfunction LR(e) {\n return e.type === oa.ElementType.Root;\n}\nun.isDocument = LR;\nfunction nve(e) {\n return Object.prototype.hasOwnProperty.call(e, \"children\");\n}\nun.hasChildren = nve;\nfunction $2(e, t) {\n t === void 0 && (t = !1);\n var n;\n if (AR(e))\n n = new yR(e.data);\n else if (NR(e))\n n = new CR(e.data);\n else if (wR(e)) {\n var r = t ? zg(e.children) : [], a = new ER(e.name, hc({}, e.attribs), r);\n r.forEach(function(u) {\n return u.parent = a;\n }), e.namespace != null && (a.namespace = e.namespace), e[\"x-attribsNamespace\"] && (a[\"x-attribsNamespace\"] = hc({}, e[\"x-attribsNamespace\"])), e[\"x-attribsPrefix\"] && (a[\"x-attribsPrefix\"] = hc({}, e[\"x-attribsPrefix\"])), n = a;\n } else if (TR(e)) {\n var r = t ? zg(e.children) : [], i = new SR(r);\n r.forEach(function(l) {\n return l.parent = i;\n }), n = i;\n } else if (LR(e)) {\n var r = t ? zg(e.children) : [], o = new _R(r);\n r.forEach(function(l) {\n return l.parent = o;\n }), e[\"x-mode\"] && (o[\"x-mode\"] = e[\"x-mode\"]), n = o;\n } else if (OR(e)) {\n var s = new xR(e.name, e.data);\n e[\"x-name\"] != null && (s[\"x-name\"] = e[\"x-name\"], s[\"x-publicId\"] = e[\"x-publicId\"], s[\"x-systemId\"] = e[\"x-systemId\"]), n = s;\n } else\n throw new Error(\"Not implemented yet: \".concat(e.type));\n return n.startIndex = e.startIndex, n.endIndex = e.endIndex, e.sourceCodeLocation != null && (n.sourceCodeLocation = e.sourceCodeLocation), n;\n}\nun.cloneNode = $2;\nfunction zg(e) {\n for (var t = e.map(function(r) {\n return $2(r, !0);\n }), n = 1; n < t.length; n++)\n t[n].prev = t[n - 1], t[n - 1].next = t[n];\n return t;\n}\n(function(e) {\n var t = Ft && Ft.__createBinding || (Object.create ? function(s, u, l, c) {\n c === void 0 && (c = l);\n var d = Object.getOwnPropertyDescriptor(u, l);\n (!d || (\"get\" in d ? !u.__esModule : d.writable || d.configurable)) && (d = { enumerable: !0, get: function() {\n return u[l];\n } }), Object.defineProperty(s, c, d);\n } : function(s, u, l, c) {\n c === void 0 && (c = l), s[c] = u[l];\n }), n = Ft && Ft.__exportStar || function(s, u) {\n for (var l in s)\n l !== \"default\" && !Object.prototype.hasOwnProperty.call(u, l) && t(u, s, l);\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.DomHandler = void 0;\n var r = dl, a = un;\n n(un, e);\n var i = {\n withStartIndices: !1,\n withEndIndices: !1,\n xmlMode: !1\n }, o = (\n /** @class */\n function() {\n function s(u, l, c) {\n this.dom = [], this.root = new a.Document(this.dom), this.done = !1, this.tagStack = [this.root], this.lastNode = null, this.parser = null, typeof l == \"function\" && (c = l, l = i), typeof u == \"object\" && (l = u, u = void 0), this.callback = u ?? null, this.options = l ?? i, this.elementCB = c ?? null;\n }\n return s.prototype.onparserinit = function(u) {\n this.parser = u;\n }, s.prototype.onreset = function() {\n this.dom = [], this.root = new a.Document(this.dom), this.done = !1, this.tagStack = [this.root], this.lastNode = null, this.parser = null;\n }, s.prototype.onend = function() {\n this.done || (this.done = !0, this.parser = null, this.handleCallback(null));\n }, s.prototype.onerror = function(u) {\n this.handleCallback(u);\n }, s.prototype.onclosetag = function() {\n this.lastNode = null;\n var u = this.tagStack.pop();\n this.options.withEndIndices && (u.endIndex = this.parser.endIndex), this.elementCB && this.elementCB(u);\n }, s.prototype.onopentag = function(u, l) {\n var c = this.options.xmlMode ? r.ElementType.Tag : void 0, d = new a.Element(u, l, void 0, c);\n this.addNode(d), this.tagStack.push(d);\n }, s.prototype.ontext = function(u) {\n var l = this.lastNode;\n if (l && l.type === r.ElementType.Text)\n l.data += u, this.options.withEndIndices && (l.endIndex = this.parser.endIndex);\n else {\n var c = new a.Text(u);\n this.addNode(c), this.lastNode = c;\n }\n }, s.prototype.oncomment = function(u) {\n if (this.lastNode && this.lastNode.type === r.ElementType.Comment) {\n this.lastNode.data += u;\n return;\n }\n var l = new a.Comment(u);\n this.addNode(l), this.lastNode = l;\n }, s.prototype.oncommentend = function() {\n this.lastNode = null;\n }, s.prototype.oncdatastart = function() {\n var u = new a.Text(\"\"), l = new a.CDATA([u]);\n this.addNode(l), u.parent = l, this.lastNode = u;\n }, s.prototype.oncdataend = function() {\n this.lastNode = null;\n }, s.prototype.onprocessinginstruction = function(u, l) {\n var c = new a.ProcessingInstruction(u, l);\n this.addNode(c);\n }, s.prototype.handleCallback = function(u) {\n if (typeof this.callback == \"function\")\n this.callback(u, this.dom);\n else if (u)\n throw u;\n }, s.prototype.addNode = function(u) {\n var l = this.tagStack[this.tagStack.length - 1], c = l.children[l.children.length - 1];\n this.options.withStartIndices && (u.startIndex = this.parser.startIndex), this.options.withEndIndices && (u.endIndex = this.parser.endIndex), l.children.push(u), c && (u.prev = c, c.next = u), u.parent = l, this.lastNode = null;\n }, s;\n }()\n );\n e.DomHandler = o, e.default = o;\n})(gi);\nvar of = {}, va = {}, Od = {}, kR = {}, Es = {}, H2 = {};\nObject.defineProperty(H2, \"__esModule\", { value: !0 });\nfunction I0(e) {\n for (var t = 1; t < e.length; t++)\n e[t][0] += e[t - 1][0] + 1;\n return e;\n}\nH2.default = new Map(/* @__PURE__ */ I0([[9, \"	\"], [0, \"
\"], [22, \"!\"], [0, \""\"], [0, \"#\"], [0, \"$\"], [0, \"%\"], [0, \"&\"], [0, \"'\"], [0, \"(\"], [0, \")\"], [0, \"*\"], [0, \"+\"], [0, \",\"], [1, \".\"], [0, \"/\"], [10, \":\"], [0, \";\"], [0, { v: \"<\", n: 8402, o: \"<⃒\" }], [0, { v: \"=\", n: 8421, o: \"=⃥\" }], [0, { v: \">\", n: 8402, o: \">⃒\" }], [0, \"?\"], [0, \"@\"], [26, \"[\"], [0, \"\\"], [0, \"]\"], [0, \"^\"], [0, \"_\"], [0, \"`\"], [5, { n: 106, o: \"fj\" }], [20, \"{\"], [0, \"|\"], [0, \"}\"], [34, \" \"], [0, \"¡\"], [0, \"¢\"], [0, \"£\"], [0, \"¤\"], [0, \"¥\"], [0, \"¦\"], [0, \"§\"], [0, \"¨\"], [0, \"©\"], [0, \"ª\"], [0, \"«\"], [0, \"¬\"], [0, \"\"], [0, \"®\"], [0, \"¯\"], [0, \"°\"], [0, \"±\"], [0, \"²\"], [0, \"³\"], [0, \"´\"], [0, \"µ\"], [0, \"¶\"], [0, \"·\"], [0, \"¸\"], [0, \"¹\"], [0, \"º\"], [0, \"»\"], [0, \"¼\"], [0, \"½\"], [0, \"¾\"], [0, \"¿\"], [0, \"À\"], [0, \"Á\"], [0, \"Â\"], [0, \"Ã\"], [0, \"Ä\"], [0, \"Å\"], [0, \"Æ\"], [0, \"Ç\"], [0, \"È\"], [0, \"É\"], [0, \"Ê\"], [0, \"Ë\"], [0, \"Ì\"], [0, \"Í\"], [0, \"Î\"], [0, \"Ï\"], [0, \"Ð\"], [0, \"Ñ\"], [0, \"Ò\"], [0, \"Ó\"], [0, \"Ô\"], [0, \"Õ\"], [0, \"Ö\"], [0, \"×\"], [0, \"Ø\"], [0, \"Ù\"], [0, \"Ú\"], [0, \"Û\"], [0, \"Ü\"], [0, \"Ý\"], [0, \"Þ\"], [0, \"ß\"], [0, \"à\"], [0, \"á\"], [0, \"â\"], [0, \"ã\"], [0, \"ä\"], [0, \"å\"], [0, \"æ\"], [0, \"ç\"], [0, \"è\"], [0, \"é\"], [0, \"ê\"], [0, \"ë\"], [0, \"ì\"], [0, \"í\"], [0, \"î\"], [0, \"ï\"], [0, \"ð\"], [0, \"ñ\"], [0, \"ò\"], [0, \"ó\"], [0, \"ô\"], [0, \"õ\"], [0, \"ö\"], [0, \"÷\"], [0, \"ø\"], [0, \"ù\"], [0, \"ú\"], [0, \"û\"], [0, \"ü\"], [0, \"ý\"], [0, \"þ\"], [0, \"ÿ\"], [0, \"Ā\"], [0, \"ā\"], [0, \"Ă\"], [0, \"ă\"], [0, \"Ą\"], [0, \"ą\"], [0, \"Ć\"], [0, \"ć\"], [0, \"Ĉ\"], [0, \"ĉ\"], [0, \"Ċ\"], [0, \"ċ\"], [0, \"Č\"], [0, \"č\"], [0, \"Ď\"], [0, \"ď\"], [0, \"Đ\"], [0, \"đ\"], [0, \"Ē\"], [0, \"ē\"], [2, \"Ė\"], [0, \"ė\"], [0, \"Ę\"], [0, \"ę\"], [0, \"Ě\"], [0, \"ě\"], [0, \"Ĝ\"], [0, \"ĝ\"], [0, \"Ğ\"], [0, \"ğ\"], [0, \"Ġ\"], [0, \"ġ\"], [0, \"Ģ\"], [1, \"Ĥ\"], [0, \"ĥ\"], [0, \"Ħ\"], [0, \"ħ\"], [0, \"Ĩ\"], [0, \"ĩ\"], [0, \"Ī\"], [0, \"ī\"], [2, \"Į\"], [0, \"į\"], [0, \"İ\"], [0, \"ı\"], [0, \"IJ\"], [0, \"ij\"], [0, \"Ĵ\"], [0, \"ĵ\"], [0, \"Ķ\"], [0, \"ķ\"], [0, \"ĸ\"], [0, \"Ĺ\"], [0, \"ĺ\"], [0, \"Ļ\"], [0, \"ļ\"], [0, \"Ľ\"], [0, \"ľ\"], [0, \"Ŀ\"], [0, \"ŀ\"], [0, \"Ł\"], [0, \"ł\"], [0, \"Ń\"], [0, \"ń\"], [0, \"Ņ\"], [0, \"ņ\"], [0, \"Ň\"], [0, \"ň\"], [0, \"ʼn\"], [0, \"Ŋ\"], [0, \"ŋ\"], [0, \"Ō\"], [0, \"ō\"], [2, \"Ő\"], [0, \"ő\"], [0, \"Œ\"], [0, \"œ\"], [0, \"Ŕ\"], [0, \"ŕ\"], [0, \"Ŗ\"], [0, \"ŗ\"], [0, \"Ř\"], [0, \"ř\"], [0, \"Ś\"], [0, \"ś\"], [0, \"Ŝ\"], [0, \"ŝ\"], [0, \"Ş\"], [0, \"ş\"], [0, \"Š\"], [0, \"š\"], [0, \"Ţ\"], [0, \"ţ\"], [0, \"Ť\"], [0, \"ť\"], [0, \"Ŧ\"], [0, \"ŧ\"], [0, \"Ũ\"], [0, \"ũ\"], [0, \"Ū\"], [0, \"ū\"], [0, \"Ŭ\"], [0, \"ŭ\"], [0, \"Ů\"], [0, \"ů\"], [0, \"Ű\"], [0, \"ű\"], [0, \"Ų\"], [0, \"ų\"], [0, \"Ŵ\"], [0, \"ŵ\"], [0, \"Ŷ\"], [0, \"ŷ\"], [0, \"Ÿ\"], [0, \"Ź\"], [0, \"ź\"], [0, \"Ż\"], [0, \"ż\"], [0, \"Ž\"], [0, \"ž\"], [19, \"ƒ\"], [34, \"Ƶ\"], [63, \"ǵ\"], [65, \"ȷ\"], [142, \"ˆ\"], [0, \"ˇ\"], [16, \"˘\"], [0, \"˙\"], [0, \"˚\"], [0, \"˛\"], [0, \"˜\"], [0, \"˝\"], [51, \"̑\"], [127, \"Α\"], [0, \"Β\"], [0, \"Γ\"], [0, \"Δ\"], [0, \"Ε\"], [0, \"Ζ\"], [0, \"Η\"], [0, \"Θ\"], [0, \"Ι\"], [0, \"Κ\"], [0, \"Λ\"], [0, \"Μ\"], [0, \"Ν\"], [0, \"Ξ\"], [0, \"Ο\"], [0, \"Π\"], [0, \"Ρ\"], [1, \"Σ\"], [0, \"Τ\"], [0, \"Υ\"], [0, \"Φ\"], [0, \"Χ\"], [0, \"Ψ\"], [0, \"Ω\"], [7, \"α\"], [0, \"β\"], [0, \"γ\"], [0, \"δ\"], [0, \"ε\"], [0, \"ζ\"], [0, \"η\"], [0, \"θ\"], [0, \"ι\"], [0, \"κ\"], [0, \"λ\"], [0, \"μ\"], [0, \"ν\"], [0, \"ξ\"], [0, \"ο\"], [0, \"π\"], [0, \"ρ\"], [0, \"ς\"], [0, \"σ\"], [0, \"τ\"], [0, \"υ\"], [0, \"φ\"], [0, \"χ\"], [0, \"ψ\"], [0, \"ω\"], [7, \"ϑ\"], [0, \"ϒ\"], [2, \"ϕ\"], [0, \"ϖ\"], [5, \"Ϝ\"], [0, \"ϝ\"], [18, \"ϰ\"], [0, \"ϱ\"], [3, \"ϵ\"], [0, \"϶\"], [10, \"Ё\"], [0, \"Ђ\"], [0, \"Ѓ\"], [0, \"Є\"], [0, \"Ѕ\"], [0, \"І\"], [0, \"Ї\"], [0, \"Ј\"], [0, \"Љ\"], [0, \"Њ\"], [0, \"Ћ\"], [0, \"Ќ\"], [1, \"Ў\"], [0, \"Џ\"], [0, \"А\"], [0, \"Б\"], [0, \"В\"], [0, \"Г\"], [0, \"Д\"], [0, \"Е\"], [0, \"Ж\"], [0, \"З\"], [0, \"И\"], [0, \"Й\"], [0, \"К\"], [0, \"Л\"], [0, \"М\"], [0, \"Н\"], [0, \"О\"], [0, \"П\"], [0, \"Р\"], [0, \"С\"], [0, \"Т\"], [0, \"У\"], [0, \"Ф\"], [0, \"Х\"], [0, \"Ц\"], [0, \"Ч\"], [0, \"Ш\"], [0, \"Щ\"], [0, \"Ъ\"], [0, \"Ы\"], [0, \"Ь\"], [0, \"Э\"], [0, \"Ю\"], [0, \"Я\"], [0, \"а\"], [0, \"б\"], [0, \"в\"], [0, \"г\"], [0, \"д\"], [0, \"е\"], [0, \"ж\"], [0, \"з\"], [0, \"и\"], [0, \"й\"], [0, \"к\"], [0, \"л\"], [0, \"м\"], [0, \"н\"], [0, \"о\"], [0, \"п\"], [0, \"р\"], [0, \"с\"], [0, \"т\"], [0, \"у\"], [0, \"ф\"], [0, \"х\"], [0, \"ц\"], [0, \"ч\"], [0, \"ш\"], [0, \"щ\"], [0, \"ъ\"], [0, \"ы\"], [0, \"ь\"], [0, \"э\"], [0, \"ю\"], [0, \"я\"], [1, \"ё\"], [0, \"ђ\"], [0, \"ѓ\"], [0, \"є\"], [0, \"ѕ\"], [0, \"і\"], [0, \"ї\"], [0, \"ј\"], [0, \"љ\"], [0, \"њ\"], [0, \"ћ\"], [0, \"ќ\"], [1, \"ў\"], [0, \"џ\"], [7074, \" \"], [0, \" \"], [0, \" \"], [0, \" \"], [1, \" \"], [0, \" \"], [0, \" \"], [0, \" \"], [0, \"​\"], [0, \"\"], [0, \"\"], [0, \"\"], [0, \"\"], [0, \"‐\"], [2, \"–\"], [0, \"—\"], [0, \"―\"], [0, \"‖\"], [1, \"‘\"], [0, \"’\"], [0, \"‚\"], [1, \"“\"], [0, \"”\"], [0, \"„\"], [1, \"†\"], [0, \"‡\"], [0, \"•\"], [2, \"‥\"], [0, \"…\"], [9, \"‰\"], [0, \"‱\"], [0, \"′\"], [0, \"″\"], [0, \"‴\"], [0, \"‵\"], [3, \"‹\"], [0, \"›\"], [3, \"‾\"], [2, \"⁁\"], [1, \"⁃\"], [0, \"⁄\"], [10, \"⁏\"], [7, \"⁗\"], [7, { v: \" \", n: 8202, o: \"  \" }], [0, \"⁠\"], [0, \"⁡\"], [0, \"⁢\"], [0, \"⁣\"], [72, \"€\"], [46, \"⃛\"], [0, \"⃜\"], [37, \"ℂ\"], [2, \"℅\"], [4, \"ℊ\"], [0, \"ℋ\"], [0, \"ℌ\"], [0, \"ℍ\"], [0, \"ℎ\"], [0, \"ℏ\"], [0, \"ℐ\"], [0, \"ℑ\"], [0, \"ℒ\"], [0, \"ℓ\"], [1, \"ℕ\"], [0, \"№\"], [0, \"℗\"], [0, \"℘\"], [0, \"ℙ\"], [0, \"ℚ\"], [0, \"ℛ\"], [0, \"ℜ\"], [0, \"ℝ\"], [0, \"℞\"], [3, \"™\"], [1, \"ℤ\"], [2, \"℧\"], [0, \"ℨ\"], [0, \"℩\"], [2, \"ℬ\"], [0, \"ℭ\"], [1, \"ℯ\"], [0, \"ℰ\"], [0, \"ℱ\"], [1, \"ℳ\"], [0, \"ℴ\"], [0, \"ℵ\"], [0, \"ℶ\"], [0, \"ℷ\"], [0, \"ℸ\"], [12, \"ⅅ\"], [0, \"ⅆ\"], [0, \"ⅇ\"], [0, \"ⅈ\"], [10, \"⅓\"], [0, \"⅔\"], [0, \"⅕\"], [0, \"⅖\"], [0, \"⅗\"], [0, \"⅘\"], [0, \"⅙\"], [0, \"⅚\"], [0, \"⅛\"], [0, \"⅜\"], [0, \"⅝\"], [0, \"⅞\"], [49, \"←\"], [0, \"↑\"], [0, \"→\"], [0, \"↓\"], [0, \"↔\"], [0, \"↕\"], [0, \"↖\"], [0, \"↗\"], [0, \"↘\"], [0, \"↙\"], [0, \"↚\"], [0, \"↛\"], [1, { v: \"↝\", n: 824, o: \"↝̸\" }], [0, \"↞\"], [0, \"↟\"], [0, \"↠\"], [0, \"↡\"], [0, \"↢\"], [0, \"↣\"], [0, \"↤\"], [0, \"↥\"], [0, \"↦\"], [0, \"↧\"], [1, \"↩\"], [0, \"↪\"], [0, \"↫\"], [0, \"↬\"], [0, \"↭\"], [0, \"↮\"], [1, \"↰\"], [0, \"↱\"], [0, \"↲\"], [0, \"↳\"], [1, \"↵\"], [0, \"↶\"], [0, \"↷\"], [2, \"↺\"], [0, \"↻\"], [0, \"↼\"], [0, \"↽\"], [0, \"↾\"], [0, \"↿\"], [0, \"⇀\"], [0, \"⇁\"], [0, \"⇂\"], [0, \"⇃\"], [0, \"⇄\"], [0, \"⇅\"], [0, \"⇆\"], [0, \"⇇\"], [0, \"⇈\"], [0, \"⇉\"], [0, \"⇊\"], [0, \"⇋\"], [0, \"⇌\"], [0, \"⇍\"], [0, \"⇎\"], [0, \"⇏\"], [0, \"⇐\"], [0, \"⇑\"], [0, \"⇒\"], [0, \"⇓\"], [0, \"⇔\"], [0, \"⇕\"], [0, \"⇖\"], [0, \"⇗\"], [0, \"⇘\"], [0, \"⇙\"], [0, \"⇚\"], [0, \"⇛\"], [1, \"⇝\"], [6, \"⇤\"], [0, \"⇥\"], [15, \"⇵\"], [7, \"⇽\"], [0, \"⇾\"], [0, \"⇿\"], [0, \"∀\"], [0, \"∁\"], [0, { v: \"∂\", n: 824, o: \"∂̸\" }], [0, \"∃\"], [0, \"∄\"], [0, \"∅\"], [1, \"∇\"], [0, \"∈\"], [0, \"∉\"], [1, \"∋\"], [0, \"∌\"], [2, \"∏\"], [0, \"∐\"], [0, \"∑\"], [0, \"−\"], [0, \"∓\"], [0, \"∔\"], [1, \"∖\"], [0, \"∗\"], [0, \"∘\"], [1, \"√\"], [2, \"∝\"], [0, \"∞\"], [0, \"∟\"], [0, { v: \"∠\", n: 8402, o: \"∠⃒\" }], [0, \"∡\"], [0, \"∢\"], [0, \"∣\"], [0, \"∤\"], [0, \"∥\"], [0, \"∦\"], [0, \"∧\"], [0, \"∨\"], [0, { v: \"∩\", n: 65024, o: \"∩︀\" }], [0, { v: \"∪\", n: 65024, o: \"∪︀\" }], [0, \"∫\"], [0, \"∬\"], [0, \"∭\"], [0, \"∮\"], [0, \"∯\"], [0, \"∰\"], [0, \"∱\"], [0, \"∲\"], [0, \"∳\"], [0, \"∴\"], [0, \"∵\"], [0, \"∶\"], [0, \"∷\"], [0, \"∸\"], [1, \"∺\"], [0, \"∻\"], [0, { v: \"∼\", n: 8402, o: \"∼⃒\" }], [0, { v: \"∽\", n: 817, o: \"∽̱\" }], [0, { v: \"∾\", n: 819, o: \"∾̳\" }], [0, \"∿\"], [0, \"≀\"], [0, \"≁\"], [0, { v: \"≂\", n: 824, o: \"≂̸\" }], [0, \"≃\"], [0, \"≄\"], [0, \"≅\"], [0, \"≆\"], [0, \"≇\"], [0, \"≈\"], [0, \"≉\"], [0, \"≊\"], [0, { v: \"≋\", n: 824, o: \"≋̸\" }], [0, \"≌\"], [0, { v: \"≍\", n: 8402, o: \"≍⃒\" }], [0, { v: \"≎\", n: 824, o: \"≎̸\" }], [0, { v: \"≏\", n: 824, o: \"≏̸\" }], [0, { v: \"≐\", n: 824, o: \"≐̸\" }], [0, \"≑\"], [0, \"≒\"], [0, \"≓\"], [0, \"≔\"], [0, \"≕\"], [0, \"≖\"], [0, \"≗\"], [1, \"≙\"], [0, \"≚\"], [1, \"≜\"], [2, \"≟\"], [0, \"≠\"], [0, { v: \"≡\", n: 8421, o: \"≡⃥\" }], [0, \"≢\"], [1, { v: \"≤\", n: 8402, o: \"≤⃒\" }], [0, { v: \"≥\", n: 8402, o: \"≥⃒\" }], [0, { v: \"≦\", n: 824, o: \"≦̸\" }], [0, { v: \"≧\", n: 824, o: \"≧̸\" }], [0, { v: \"≨\", n: 65024, o: \"≨︀\" }], [0, { v: \"≩\", n: 65024, o: \"≩︀\" }], [0, { v: \"≪\", n: new Map(/* @__PURE__ */ I0([[824, \"≪̸\"], [7577, \"≪⃒\"]])) }], [0, { v: \"≫\", n: new Map(/* @__PURE__ */ I0([[824, \"≫̸\"], [7577, \"≫⃒\"]])) }], [0, \"≬\"], [0, \"≭\"], [0, \"≮\"], [0, \"≯\"], [0, \"≰\"], [0, \"≱\"], [0, \"≲\"], [0, \"≳\"], [0, \"≴\"], [0, \"≵\"], [0, \"≶\"], [0, \"≷\"], [0, \"≸\"], [0, \"≹\"], [0, \"≺\"], [0, \"≻\"], [0, \"≼\"], [0, \"≽\"], [0, \"≾\"], [0, { v: \"≿\", n: 824, o: \"≿̸\" }], [0, \"⊀\"], [0, \"⊁\"], [0, { v: \"⊂\", n: 8402, o: \"⊂⃒\" }], [0, { v: \"⊃\", n: 8402, o: \"⊃⃒\" }], [0, \"⊄\"], [0, \"⊅\"], [0, \"⊆\"], [0, \"⊇\"], [0, \"⊈\"], [0, \"⊉\"], [0, { v: \"⊊\", n: 65024, o: \"⊊︀\" }], [0, { v: \"⊋\", n: 65024, o: \"⊋︀\" }], [1, \"⊍\"], [0, \"⊎\"], [0, { v: \"⊏\", n: 824, o: \"⊏̸\" }], [0, { v: \"⊐\", n: 824, o: \"⊐̸\" }], [0, \"⊑\"], [0, \"⊒\"], [0, { v: \"⊓\", n: 65024, o: \"⊓︀\" }], [0, { v: \"⊔\", n: 65024, o: \"⊔︀\" }], [0, \"⊕\"], [0, \"⊖\"], [0, \"⊗\"], [0, \"⊘\"], [0, \"⊙\"], [0, \"⊚\"], [0, \"⊛\"], [1, \"⊝\"], [0, \"⊞\"], [0, \"⊟\"], [0, \"⊠\"], [0, \"⊡\"], [0, \"⊢\"], [0, \"⊣\"], [0, \"⊤\"], [0, \"⊥\"], [1, \"⊧\"], [0, \"⊨\"], [0, \"⊩\"], [0, \"⊪\"], [0, \"⊫\"], [0, \"⊬\"], [0, \"⊭\"], [0, \"⊮\"], [0, \"⊯\"], [0, \"⊰\"], [1, \"⊲\"], [0, \"⊳\"], [0, { v: \"⊴\", n: 8402, o: \"⊴⃒\" }], [0, { v: \"⊵\", n: 8402, o: \"⊵⃒\" }], [0, \"⊶\"], [0, \"⊷\"], [0, \"⊸\"], [0, \"⊹\"], [0, \"⊺\"], [0, \"⊻\"], [1, \"⊽\"], [0, \"⊾\"], [0, \"⊿\"], [0, \"⋀\"], [0, \"⋁\"], [0, \"⋂\"], [0, \"⋃\"], [0, \"⋄\"], [0, \"⋅\"], [0, \"⋆\"], [0, \"⋇\"], [0, \"⋈\"], [0, \"⋉\"], [0, \"⋊\"], [0, \"⋋\"], [0, \"⋌\"], [0, \"⋍\"], [0, \"⋎\"], [0, \"⋏\"], [0, \"⋐\"], [0, \"⋑\"], [0, \"⋒\"], [0, \"⋓\"], [0, \"⋔\"], [0, \"⋕\"], [0, \"⋖\"], [0, \"⋗\"], [0, { v: \"⋘\", n: 824, o: \"⋘̸\" }], [0, { v: \"⋙\", n: 824, o: \"⋙̸\" }], [0, { v: \"⋚\", n: 65024, o: \"⋚︀\" }], [0, { v: \"⋛\", n: 65024, o: \"⋛︀\" }], [2, \"⋞\"], [0, \"⋟\"], [0, \"⋠\"], [0, \"⋡\"], [0, \"⋢\"], [0, \"⋣\"], [2, \"⋦\"], [0, \"⋧\"], [0, \"⋨\"], [0, \"⋩\"], [0, \"⋪\"], [0, \"⋫\"], [0, \"⋬\"], [0, \"⋭\"], [0, \"⋮\"], [0, \"⋯\"], [0, \"⋰\"], [0, \"⋱\"], [0, \"⋲\"], [0, \"⋳\"], [0, \"⋴\"], [0, { v: \"⋵\", n: 824, o: \"⋵̸\" }], [0, \"⋶\"], [0, \"⋷\"], [1, { v: \"⋹\", n: 824, o: \"⋹̸\" }], [0, \"⋺\"], [0, \"⋻\"], [0, \"⋼\"], [0, \"⋽\"], [0, \"⋾\"], [6, \"⌅\"], [0, \"⌆\"], [1, \"⌈\"], [0, \"⌉\"], [0, \"⌊\"], [0, \"⌋\"], [0, \"⌌\"], [0, \"⌍\"], [0, \"⌎\"], [0, \"⌏\"], [0, \"⌐\"], [1, \"⌒\"], [0, \"⌓\"], [1, \"⌕\"], [0, \"⌖\"], [5, \"⌜\"], [0, \"⌝\"], [0, \"⌞\"], [0, \"⌟\"], [2, \"⌢\"], [0, \"⌣\"], [9, \"⌭\"], [0, \"⌮\"], [7, \"⌶\"], [6, \"⌽\"], [1, \"⌿\"], [60, \"⍼\"], [51, \"⎰\"], [0, \"⎱\"], [2, \"⎴\"], [0, \"⎵\"], [0, \"⎶\"], [37, \"⏜\"], [0, \"⏝\"], [0, \"⏞\"], [0, \"⏟\"], [2, \"⏢\"], [4, \"⏧\"], [59, \"␣\"], [164, \"Ⓢ\"], [55, \"─\"], [1, \"│\"], [9, \"┌\"], [3, \"┐\"], [3, \"└\"], [3, \"┘\"], [3, \"├\"], [7, \"┤\"], [7, \"┬\"], [7, \"┴\"], [7, \"┼\"], [19, \"═\"], [0, \"║\"], [0, \"╒\"], [0, \"╓\"], [0, \"╔\"], [0, \"╕\"], [0, \"╖\"], [0, \"╗\"], [0, \"╘\"], [0, \"╙\"], [0, \"╚\"], [0, \"╛\"], [0, \"╜\"], [0, \"╝\"], [0, \"╞\"], [0, \"╟\"], [0, \"╠\"], [0, \"╡\"], [0, \"╢\"], [0, \"╣\"], [0, \"╤\"], [0, \"╥\"], [0, \"╦\"], [0, \"╧\"], [0, \"╨\"], [0, \"╩\"], [0, \"╪\"], [0, \"╫\"], [0, \"╬\"], [19, \"▀\"], [3, \"▄\"], [3, \"█\"], [8, \"░\"], [0, \"▒\"], [0, \"▓\"], [13, \"□\"], [8, \"▪\"], [0, \"▫\"], [1, \"▭\"], [0, \"▮\"], [2, \"▱\"], [1, \"△\"], [0, \"▴\"], [0, \"▵\"], [2, \"▸\"], [0, \"▹\"], [3, \"▽\"], [0, \"▾\"], [0, \"▿\"], [2, \"◂\"], [0, \"◃\"], [6, \"◊\"], [0, \"○\"], [32, \"◬\"], [2, \"◯\"], [8, \"◸\"], [0, \"◹\"], [0, \"◺\"], [0, \"◻\"], [0, \"◼\"], [8, \"★\"], [0, \"☆\"], [7, \"☎\"], [49, \"♀\"], [1, \"♂\"], [29, \"♠\"], [2, \"♣\"], [1, \"♥\"], [0, \"♦\"], [3, \"♪\"], [2, \"♭\"], [0, \"♮\"], [0, \"♯\"], [163, \"✓\"], [3, \"✗\"], [8, \"✠\"], [21, \"✶\"], [33, \"❘\"], [25, \"❲\"], [0, \"❳\"], [84, \"⟈\"], [0, \"⟉\"], [28, \"⟦\"], [0, \"⟧\"], [0, \"〈\"], [0, \"〉\"], [0, \"⟪\"], [0, \"⟫\"], [0, \"⟬\"], [0, \"⟭\"], [7, \"⟵\"], [0, \"⟶\"], [0, \"⟷\"], [0, \"⟸\"], [0, \"⟹\"], [0, \"⟺\"], [1, \"⟼\"], [2, \"⟿\"], [258, \"⤂\"], [0, \"⤃\"], [0, \"⤄\"], [0, \"⤅\"], [6, \"⤌\"], [0, \"⤍\"], [0, \"⤎\"], [0, \"⤏\"], [0, \"⤐\"], [0, \"⤑\"], [0, \"⤒\"], [0, \"⤓\"], [2, \"⤖\"], [2, \"⤙\"], [0, \"⤚\"], [0, \"⤛\"], [0, \"⤜\"], [0, \"⤝\"], [0, \"⤞\"], [0, \"⤟\"], [0, \"⤠\"], [2, \"⤣\"], [0, \"⤤\"], [0, \"⤥\"], [0, \"⤦\"], [0, \"⤧\"], [0, \"⤨\"], [0, \"⤩\"], [0, \"⤪\"], [8, { v: \"⤳\", n: 824, o: \"⤳̸\" }], [1, \"⤵\"], [0, \"⤶\"], [0, \"⤷\"], [0, \"⤸\"], [0, \"⤹\"], [2, \"⤼\"], [0, \"⤽\"], [7, \"⥅\"], [2, \"⥈\"], [0, \"⥉\"], [0, \"⥊\"], [0, \"⥋\"], [2, \"⥎\"], [0, \"⥏\"], [0, \"⥐\"], [0, \"⥑\"], [0, \"⥒\"], [0, \"⥓\"], [0, \"⥔\"], [0, \"⥕\"], [0, \"⥖\"], [0, \"⥗\"], [0, \"⥘\"], [0, \"⥙\"], [0, \"⥚\"], [0, \"⥛\"], [0, \"⥜\"], [0, \"⥝\"], [0, \"⥞\"], [0, \"⥟\"], [0, \"⥠\"], [0, \"⥡\"], [0, \"⥢\"], [0, \"⥣\"], [0, \"⥤\"], [0, \"⥥\"], [0, \"⥦\"], [0, \"⥧\"], [0, \"⥨\"], [0, \"⥩\"], [0, \"⥪\"], [0, \"⥫\"], [0, \"⥬\"], [0, \"⥭\"], [0, \"⥮\"], [0, \"⥯\"], [0, \"⥰\"], [0, \"⥱\"], [0, \"⥲\"], [0, \"⥳\"], [0, \"⥴\"], [0, \"⥵\"], [0, \"⥶\"], [1, \"⥸\"], [0, \"⥹\"], [1, \"⥻\"], [0, \"⥼\"], [0, \"⥽\"], [0, \"⥾\"], [0, \"⥿\"], [5, \"⦅\"], [0, \"⦆\"], [4, \"⦋\"], [0, \"⦌\"], [0, \"⦍\"], [0, \"⦎\"], [0, \"⦏\"], [0, \"⦐\"], [0, \"⦑\"], [0, \"⦒\"], [0, \"⦓\"], [0, \"⦔\"], [0, \"⦕\"], [0, \"⦖\"], [3, \"⦚\"], [1, \"⦜\"], [0, \"⦝\"], [6, \"⦤\"], [0, \"⦥\"], [0, \"⦦\"], [0, \"⦧\"], [0, \"⦨\"], [0, \"⦩\"], [0, \"⦪\"], [0, \"⦫\"], [0, \"⦬\"], [0, \"⦭\"], [0, \"⦮\"], [0, \"⦯\"], [0, \"⦰\"], [0, \"⦱\"], [0, \"⦲\"], [0, \"⦳\"], [0, \"⦴\"], [0, \"⦵\"], [0, \"⦶\"], [0, \"⦷\"], [1, \"⦹\"], [1, \"⦻\"], [0, \"⦼\"], [1, \"⦾\"], [0, \"⦿\"], [0, \"⧀\"], [0, \"⧁\"], [0, \"⧂\"], [0, \"⧃\"], [0, \"⧄\"], [0, \"⧅\"], [3, \"⧉\"], [3, \"⧍\"], [0, \"⧎\"], [0, { v: \"⧏\", n: 824, o: \"⧏̸\" }], [0, { v: \"⧐\", n: 824, o: \"⧐̸\" }], [11, \"⧜\"], [0, \"⧝\"], [0, \"⧞\"], [4, \"⧣\"], [0, \"⧤\"], [0, \"⧥\"], [5, \"⧫\"], [8, \"⧴\"], [1, \"⧶\"], [9, \"⨀\"], [0, \"⨁\"], [0, \"⨂\"], [1, \"⨄\"], [1, \"⨆\"], [5, \"⨌\"], [0, \"⨍\"], [2, \"⨐\"], [0, \"⨑\"], [0, \"⨒\"], [0, \"⨓\"], [0, \"⨔\"], [0, \"⨕\"], [0, \"⨖\"], [0, \"⨗\"], [10, \"⨢\"], [0, \"⨣\"], [0, \"⨤\"], [0, \"⨥\"], [0, \"⨦\"], [0, \"⨧\"], [1, \"⨩\"], [0, \"⨪\"], [2, \"⨭\"], [0, \"⨮\"], [0, \"⨯\"], [0, \"⨰\"], [0, \"⨱\"], [1, \"⨳\"], [0, \"⨴\"], [0, \"⨵\"], [0, \"⨶\"], [0, \"⨷\"], [0, \"⨸\"], [0, \"⨹\"], [0, \"⨺\"], [0, \"⨻\"], [0, \"⨼\"], [2, \"⨿\"], [0, \"⩀\"], [1, \"⩂\"], [0, \"⩃\"], [0, \"⩄\"], [0, \"⩅\"], [0, \"⩆\"], [0, \"⩇\"], [0, \"⩈\"], [0, \"⩉\"], [0, \"⩊\"], [0, \"⩋\"], [0, \"⩌\"], [0, \"⩍\"], [2, \"⩐\"], [2, \"⩓\"], [0, \"⩔\"], [0, \"⩕\"], [0, \"⩖\"], [0, \"⩗\"], [0, \"⩘\"], [1, \"⩚\"], [0, \"⩛\"], [0, \"⩜\"], [0, \"⩝\"], [1, \"⩟\"], [6, \"⩦\"], [3, \"⩪\"], [2, { v: \"⩭\", n: 824, o: \"⩭̸\" }], [0, \"⩮\"], [0, \"⩯\"], [0, { v: \"⩰\", n: 824, o: \"⩰̸\" }], [0, \"⩱\"], [0, \"⩲\"], [0, \"⩳\"], [0, \"⩴\"], [0, \"⩵\"], [1, \"⩷\"], [0, \"⩸\"], [0, \"⩹\"], [0, \"⩺\"], [0, \"⩻\"], [0, \"⩼\"], [0, { v: \"⩽\", n: 824, o: \"⩽̸\" }], [0, { v: \"⩾\", n: 824, o: \"⩾̸\" }], [0, \"⩿\"], [0, \"⪀\"], [0, \"⪁\"], [0, \"⪂\"], [0, \"⪃\"], [0, \"⪄\"], [0, \"⪅\"], [0, \"⪆\"], [0, \"⪇\"], [0, \"⪈\"], [0, \"⪉\"], [0, \"⪊\"], [0, \"⪋\"], [0, \"⪌\"], [0, \"⪍\"], [0, \"⪎\"], [0, \"⪏\"], [0, \"⪐\"], [0, \"⪑\"], [0, \"⪒\"], [0, \"⪓\"], [0, \"⪔\"], [0, \"⪕\"], [0, \"⪖\"], [0, \"⪗\"], [0, \"⪘\"], [0, \"⪙\"], [0, \"⪚\"], [2, \"⪝\"], [0, \"⪞\"], [0, \"⪟\"], [0, \"⪠\"], [0, { v: \"⪡\", n: 824, o: \"⪡̸\" }], [0, { v: \"⪢\", n: 824, o: \"⪢̸\" }], [1, \"⪤\"], [0, \"⪥\"], [0, \"⪦\"], [0, \"⪧\"], [0, \"⪨\"], [0, \"⪩\"], [0, \"⪪\"], [0, \"⪫\"], [0, { v: \"⪬\", n: 65024, o: \"⪬︀\" }], [0, { v: \"⪭\", n: 65024, o: \"⪭︀\" }], [0, \"⪮\"], [0, { v: \"⪯\", n: 824, o: \"⪯̸\" }], [0, { v: \"⪰\", n: 824, o: \"⪰̸\" }], [2, \"⪳\"], [0, \"⪴\"], [0, \"⪵\"], [0, \"⪶\"], [0, \"⪷\"], [0, \"⪸\"], [0, \"⪹\"], [0, \"⪺\"], [0, \"⪻\"], [0, \"⪼\"], [0, \"⪽\"], [0, \"⪾\"], [0, \"⪿\"], [0, \"⫀\"], [0, \"⫁\"], [0, \"⫂\"], [0, \"⫃\"], [0, \"⫄\"], [0, { v: \"⫅\", n: 824, o: \"⫅̸\" }], [0, { v: \"⫆\", n: 824, o: \"⫆̸\" }], [0, \"⫇\"], [0, \"⫈\"], [2, { v: \"⫋\", n: 65024, o: \"⫋︀\" }], [0, { v: \"⫌\", n: 65024, o: \"⫌︀\" }], [2, \"⫏\"], [0, \"⫐\"], [0, \"⫑\"], [0, \"⫒\"], [0, \"⫓\"], [0, \"⫔\"], [0, \"⫕\"], [0, \"⫖\"], [0, \"⫗\"], [0, \"⫘\"], [0, \"⫙\"], [0, \"⫚\"], [0, \"⫛\"], [8, \"⫤\"], [1, \"⫦\"], [0, \"⫧\"], [0, \"⫨\"], [0, \"⫩\"], [1, \"⫫\"], [0, \"⫬\"], [0, \"⫭\"], [0, \"⫮\"], [0, \"⫯\"], [0, \"⫰\"], [0, \"⫱\"], [0, \"⫲\"], [0, \"⫳\"], [9, { v: \"⫽\", n: 8421, o: \"⫽⃥\" }], [44343, { n: new Map(/* @__PURE__ */ I0([[56476, \"𝒜\"], [1, \"𝒞\"], [0, \"𝒟\"], [2, \"𝒢\"], [2, \"𝒥\"], [0, \"𝒦\"], [2, \"𝒩\"], [0, \"𝒪\"], [0, \"𝒫\"], [0, \"𝒬\"], [1, \"𝒮\"], [0, \"𝒯\"], [0, \"𝒰\"], [0, \"𝒱\"], [0, \"𝒲\"], [0, \"𝒳\"], [0, \"𝒴\"], [0, \"𝒵\"], [0, \"𝒶\"], [0, \"𝒷\"], [0, \"𝒸\"], [0, \"𝒹\"], [1, \"𝒻\"], [1, \"𝒽\"], [0, \"𝒾\"], [0, \"𝒿\"], [0, \"𝓀\"], [0, \"𝓁\"], [0, \"𝓂\"], [0, \"𝓃\"], [1, \"𝓅\"], [0, \"𝓆\"], [0, \"𝓇\"], [0, \"𝓈\"], [0, \"𝓉\"], [0, \"𝓊\"], [0, \"𝓋\"], [0, \"𝓌\"], [0, \"𝓍\"], [0, \"𝓎\"], [0, \"𝓏\"], [52, \"𝔄\"], [0, \"𝔅\"], [1, \"𝔇\"], [0, \"𝔈\"], [0, \"𝔉\"], [0, \"𝔊\"], [2, \"𝔍\"], [0, \"𝔎\"], [0, \"𝔏\"], [0, \"𝔐\"], [0, \"𝔑\"], [0, \"𝔒\"], [0, \"𝔓\"], [0, \"𝔔\"], [1, \"𝔖\"], [0, \"𝔗\"], [0, \"𝔘\"], [0, \"𝔙\"], [0, \"𝔚\"], [0, \"𝔛\"], [0, \"𝔜\"], [1, \"𝔞\"], [0, \"𝔟\"], [0, \"𝔠\"], [0, \"𝔡\"], [0, \"𝔢\"], [0, \"𝔣\"], [0, \"𝔤\"], [0, \"𝔥\"], [0, \"𝔦\"], [0, \"𝔧\"], [0, \"𝔨\"], [0, \"𝔩\"], [0, \"𝔪\"], [0, \"𝔫\"], [0, \"𝔬\"], [0, \"𝔭\"], [0, \"𝔮\"], [0, \"𝔯\"], [0, \"𝔰\"], [0, \"𝔱\"], [0, \"𝔲\"], [0, \"𝔳\"], [0, \"𝔴\"], [0, \"𝔵\"], [0, \"𝔶\"], [0, \"𝔷\"], [0, \"𝔸\"], [0, \"𝔹\"], [1, \"𝔻\"], [0, \"𝔼\"], [0, \"𝔽\"], [0, \"𝔾\"], [1, \"𝕀\"], [0, \"𝕁\"], [0, \"𝕂\"], [0, \"𝕃\"], [0, \"𝕄\"], [1, \"𝕆\"], [3, \"𝕊\"], [0, \"𝕋\"], [0, \"𝕌\"], [0, \"𝕍\"], [0, \"𝕎\"], [0, \"𝕏\"], [0, \"𝕐\"], [1, \"𝕒\"], [0, \"𝕓\"], [0, \"𝕔\"], [0, \"𝕕\"], [0, \"𝕖\"], [0, \"𝕗\"], [0, \"𝕘\"], [0, \"𝕙\"], [0, \"𝕚\"], [0, \"𝕛\"], [0, \"𝕜\"], [0, \"𝕝\"], [0, \"𝕞\"], [0, \"𝕟\"], [0, \"𝕠\"], [0, \"𝕡\"], [0, \"𝕢\"], [0, \"𝕣\"], [0, \"𝕤\"], [0, \"𝕥\"], [0, \"𝕦\"], [0, \"𝕧\"], [0, \"𝕨\"], [0, \"𝕩\"], [0, \"𝕪\"], [0, \"𝕫\"]])) }], [8906, \"ff\"], [0, \"fi\"], [0, \"fl\"], [0, \"ffi\"], [0, \"ffl\"]]));\nvar tp = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.escapeText = e.escapeAttribute = e.escapeUTF8 = e.escape = e.encodeXML = e.getCodePoint = e.xmlReplacer = void 0, e.xmlReplacer = /[\"&'<>$\\x80-\\uFFFF]/g;\n var t = /* @__PURE__ */ new Map([\n [34, \""\"],\n [38, \"&\"],\n [39, \"'\"],\n [60, \"<\"],\n [62, \">\"]\n ]);\n e.getCodePoint = // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition\n String.prototype.codePointAt != null ? function(a, i) {\n return a.codePointAt(i);\n } : (\n // http://mathiasbynens.be/notes/javascript-encoding#surrogate-formulae\n function(a, i) {\n return (a.charCodeAt(i) & 64512) === 55296 ? (a.charCodeAt(i) - 55296) * 1024 + a.charCodeAt(i + 1) - 56320 + 65536 : a.charCodeAt(i);\n }\n );\n function n(a) {\n for (var i = \"\", o = 0, s; (s = e.xmlReplacer.exec(a)) !== null; ) {\n var u = s.index, l = a.charCodeAt(u), c = t.get(l);\n c !== void 0 ? (i += a.substring(o, u) + c, o = u + 1) : (i += \"\".concat(a.substring(o, u), \"\").concat((0, e.getCodePoint)(a, u).toString(16), \";\"), o = e.xmlReplacer.lastIndex += +((l & 64512) === 55296));\n }\n return i + a.substr(o);\n }\n e.encodeXML = n, e.escape = n;\n function r(a, i) {\n return function(o) {\n for (var s, u = 0, l = \"\"; s = a.exec(o); )\n u !== s.index && (l += o.substring(u, s.index)), l += i.get(s[0].charCodeAt(0)), u = s.index + 1;\n return l + o.substring(u);\n };\n }\n e.escapeUTF8 = r(/[&<>'\"]/g, t), e.escapeAttribute = r(/[\"&\\u00A0]/g, /* @__PURE__ */ new Map([\n [34, \""\"],\n [38, \"&\"],\n [160, \" \"]\n ])), e.escapeText = r(/[&<>\\u00A0]/g, /* @__PURE__ */ new Map([\n [38, \"&\"],\n [60, \"<\"],\n [62, \">\"],\n [160, \" \"]\n ]));\n})(tp);\nvar rve = Ft && Ft.__importDefault || function(e) {\n return e && e.__esModule ? e : { default: e };\n};\nObject.defineProperty(Es, \"__esModule\", { value: !0 });\nEs.encodeNonAsciiHTML = Es.encodeHTML = void 0;\nvar ave = rve(H2), IR = tp, ive = /[\\t\\n!-,./:-@[-`\\f{-}$\\x80-\\uFFFF]/g;\nfunction ove(e) {\n return DR(ive, e);\n}\nEs.encodeHTML = ove;\nfunction sve(e) {\n return DR(IR.xmlReplacer, e);\n}\nEs.encodeNonAsciiHTML = sve;\nfunction DR(e, t) {\n for (var n = \"\", r = 0, a; (a = e.exec(t)) !== null; ) {\n var i = a.index;\n n += t.substring(r, i);\n var o = t.charCodeAt(i), s = ave.default.get(o);\n if (typeof s == \"object\") {\n if (i + 1 < t.length) {\n var u = t.charCodeAt(i + 1), l = typeof s.n == \"number\" ? s.n === u ? s.o : void 0 : s.n.get(u);\n if (l !== void 0) {\n n += l, r = e.lastIndex += 1;\n continue;\n }\n }\n s = s.v;\n }\n if (s !== void 0)\n n += s, r = i + 1;\n else {\n var c = (0, IR.getCodePoint)(t, i);\n n += \"\".concat(c.toString(16), \";\"), r = e.lastIndex += +(c !== o);\n }\n }\n return n + t.substr(r);\n}\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.decodeXMLStrict = e.decodeHTML5Strict = e.decodeHTML4Strict = e.decodeHTML5 = e.decodeHTML4 = e.decodeHTMLAttribute = e.decodeHTMLStrict = e.decodeHTML = e.decodeXML = e.DecodingMode = e.EntityDecoder = e.encodeHTML5 = e.encodeHTML4 = e.encodeNonAsciiHTML = e.encodeHTML = e.escapeText = e.escapeAttribute = e.escapeUTF8 = e.escape = e.encodeXML = e.encode = e.decodeStrict = e.decode = e.EncodingMode = e.EntityLevel = void 0;\n var t = $c, n = Es, r = tp, a;\n (function(p) {\n p[p.XML = 0] = \"XML\", p[p.HTML = 1] = \"HTML\";\n })(a = e.EntityLevel || (e.EntityLevel = {}));\n var i;\n (function(p) {\n p[p.UTF8 = 0] = \"UTF8\", p[p.ASCII = 1] = \"ASCII\", p[p.Extensive = 2] = \"Extensive\", p[p.Attribute = 3] = \"Attribute\", p[p.Text = 4] = \"Text\";\n })(i = e.EncodingMode || (e.EncodingMode = {}));\n function o(p, g) {\n g === void 0 && (g = a.XML);\n var v = typeof g == \"number\" ? g : g.level;\n if (v === a.HTML) {\n var b = typeof g == \"object\" ? g.mode : void 0;\n return (0, t.decodeHTML)(p, b);\n }\n return (0, t.decodeXML)(p);\n }\n e.decode = o;\n function s(p, g) {\n var v;\n g === void 0 && (g = a.XML);\n var b = typeof g == \"number\" ? { level: g } : g;\n return (v = b.mode) !== null && v !== void 0 || (b.mode = t.DecodingMode.Strict), o(p, b);\n }\n e.decodeStrict = s;\n function u(p, g) {\n g === void 0 && (g = a.XML);\n var v = typeof g == \"number\" ? { level: g } : g;\n return v.mode === i.UTF8 ? (0, r.escapeUTF8)(p) : v.mode === i.Attribute ? (0, r.escapeAttribute)(p) : v.mode === i.Text ? (0, r.escapeText)(p) : v.level === a.HTML ? v.mode === i.ASCII ? (0, n.encodeNonAsciiHTML)(p) : (0, n.encodeHTML)(p) : (0, r.encodeXML)(p);\n }\n e.encode = u;\n var l = tp;\n Object.defineProperty(e, \"encodeXML\", { enumerable: !0, get: function() {\n return l.encodeXML;\n } }), Object.defineProperty(e, \"escape\", { enumerable: !0, get: function() {\n return l.escape;\n } }), Object.defineProperty(e, \"escapeUTF8\", { enumerable: !0, get: function() {\n return l.escapeUTF8;\n } }), Object.defineProperty(e, \"escapeAttribute\", { enumerable: !0, get: function() {\n return l.escapeAttribute;\n } }), Object.defineProperty(e, \"escapeText\", { enumerable: !0, get: function() {\n return l.escapeText;\n } });\n var c = Es;\n Object.defineProperty(e, \"encodeHTML\", { enumerable: !0, get: function() {\n return c.encodeHTML;\n } }), Object.defineProperty(e, \"encodeNonAsciiHTML\", { enumerable: !0, get: function() {\n return c.encodeNonAsciiHTML;\n } }), Object.defineProperty(e, \"encodeHTML4\", { enumerable: !0, get: function() {\n return c.encodeHTML;\n } }), Object.defineProperty(e, \"encodeHTML5\", { enumerable: !0, get: function() {\n return c.encodeHTML;\n } });\n var d = $c;\n Object.defineProperty(e, \"EntityDecoder\", { enumerable: !0, get: function() {\n return d.EntityDecoder;\n } }), Object.defineProperty(e, \"DecodingMode\", { enumerable: !0, get: function() {\n return d.DecodingMode;\n } }), Object.defineProperty(e, \"decodeXML\", { enumerable: !0, get: function() {\n return d.decodeXML;\n } }), Object.defineProperty(e, \"decodeHTML\", { enumerable: !0, get: function() {\n return d.decodeHTML;\n } }), Object.defineProperty(e, \"decodeHTMLStrict\", { enumerable: !0, get: function() {\n return d.decodeHTMLStrict;\n } }), Object.defineProperty(e, \"decodeHTMLAttribute\", { enumerable: !0, get: function() {\n return d.decodeHTMLAttribute;\n } }), Object.defineProperty(e, \"decodeHTML4\", { enumerable: !0, get: function() {\n return d.decodeHTML;\n } }), Object.defineProperty(e, \"decodeHTML5\", { enumerable: !0, get: function() {\n return d.decodeHTML;\n } }), Object.defineProperty(e, \"decodeHTML4Strict\", { enumerable: !0, get: function() {\n return d.decodeHTMLStrict;\n } }), Object.defineProperty(e, \"decodeHTML5Strict\", { enumerable: !0, get: function() {\n return d.decodeHTMLStrict;\n } }), Object.defineProperty(e, \"decodeXMLStrict\", { enumerable: !0, get: function() {\n return d.decodeXML;\n } });\n})(kR);\nvar Ku = {};\nObject.defineProperty(Ku, \"__esModule\", { value: !0 });\nKu.attributeNames = Ku.elementNames = void 0;\nKu.elementNames = new Map([\n \"altGlyph\",\n \"altGlyphDef\",\n \"altGlyphItem\",\n \"animateColor\",\n \"animateMotion\",\n \"animateTransform\",\n \"clipPath\",\n \"feBlend\",\n \"feColorMatrix\",\n \"feComponentTransfer\",\n \"feComposite\",\n \"feConvolveMatrix\",\n \"feDiffuseLighting\",\n \"feDisplacementMap\",\n \"feDistantLight\",\n \"feDropShadow\",\n \"feFlood\",\n \"feFuncA\",\n \"feFuncB\",\n \"feFuncG\",\n \"feFuncR\",\n \"feGaussianBlur\",\n \"feImage\",\n \"feMerge\",\n \"feMergeNode\",\n \"feMorphology\",\n \"feOffset\",\n \"fePointLight\",\n \"feSpecularLighting\",\n \"feSpotLight\",\n \"feTile\",\n \"feTurbulence\",\n \"foreignObject\",\n \"glyphRef\",\n \"linearGradient\",\n \"radialGradient\",\n \"textPath\"\n].map(function(e) {\n return [e.toLowerCase(), e];\n}));\nKu.attributeNames = new Map([\n \"definitionURL\",\n \"attributeName\",\n \"attributeType\",\n \"baseFrequency\",\n \"baseProfile\",\n \"calcMode\",\n \"clipPathUnits\",\n \"diffuseConstant\",\n \"edgeMode\",\n \"filterUnits\",\n \"glyphRef\",\n \"gradientTransform\",\n \"gradientUnits\",\n \"kernelMatrix\",\n \"kernelUnitLength\",\n \"keyPoints\",\n \"keySplines\",\n \"keyTimes\",\n \"lengthAdjust\",\n \"limitingConeAngle\",\n \"markerHeight\",\n \"markerUnits\",\n \"markerWidth\",\n \"maskContentUnits\",\n \"maskUnits\",\n \"numOctaves\",\n \"pathLength\",\n \"patternContentUnits\",\n \"patternTransform\",\n \"patternUnits\",\n \"pointsAtX\",\n \"pointsAtY\",\n \"pointsAtZ\",\n \"preserveAlpha\",\n \"preserveAspectRatio\",\n \"primitiveUnits\",\n \"refX\",\n \"refY\",\n \"repeatCount\",\n \"repeatDur\",\n \"requiredExtensions\",\n \"requiredFeatures\",\n \"specularConstant\",\n \"specularExponent\",\n \"spreadMethod\",\n \"startOffset\",\n \"stdDeviation\",\n \"stitchTiles\",\n \"surfaceScale\",\n \"systemLanguage\",\n \"tableValues\",\n \"targetX\",\n \"targetY\",\n \"textLength\",\n \"viewBox\",\n \"viewTarget\",\n \"xChannelSelector\",\n \"yChannelSelector\",\n \"zoomAndPan\"\n].map(function(e) {\n return [e.toLowerCase(), e];\n}));\nvar yu = Ft && Ft.__assign || function() {\n return yu = Object.assign || function(e) {\n for (var t, n = 1, r = arguments.length; n < r; n++) {\n t = arguments[n];\n for (var a in t)\n Object.prototype.hasOwnProperty.call(t, a) && (e[a] = t[a]);\n }\n return e;\n }, yu.apply(this, arguments);\n}, uve = Ft && Ft.__createBinding || (Object.create ? function(e, t, n, r) {\n r === void 0 && (r = n);\n var a = Object.getOwnPropertyDescriptor(t, n);\n (!a || (\"get\" in a ? !t.__esModule : a.writable || a.configurable)) && (a = { enumerable: !0, get: function() {\n return t[n];\n } }), Object.defineProperty(e, r, a);\n} : function(e, t, n, r) {\n r === void 0 && (r = n), e[r] = t[n];\n}), lve = Ft && Ft.__setModuleDefault || (Object.create ? function(e, t) {\n Object.defineProperty(e, \"default\", { enumerable: !0, value: t });\n} : function(e, t) {\n e.default = t;\n}), cve = Ft && Ft.__importStar || function(e) {\n if (e && e.__esModule)\n return e;\n var t = {};\n if (e != null)\n for (var n in e)\n n !== \"default\" && Object.prototype.hasOwnProperty.call(e, n) && uve(t, e, n);\n return lve(t, e), t;\n};\nObject.defineProperty(Od, \"__esModule\", { value: !0 });\nOd.render = void 0;\nvar Bi = cve(dl), np = kR, PR = Ku, dve = /* @__PURE__ */ new Set([\n \"style\",\n \"script\",\n \"xmp\",\n \"iframe\",\n \"noembed\",\n \"noframes\",\n \"plaintext\",\n \"noscript\"\n]);\nfunction fve(e) {\n return e.replace(/\"/g, \""\");\n}\nfunction pve(e, t) {\n var n;\n if (e) {\n var r = ((n = t.encodeEntities) !== null && n !== void 0 ? n : t.decodeEntities) === !1 ? fve : t.xmlMode || t.encodeEntities !== \"utf8\" ? np.encodeXML : np.escapeAttribute;\n return Object.keys(e).map(function(a) {\n var i, o, s = (i = e[a]) !== null && i !== void 0 ? i : \"\";\n return t.xmlMode === \"foreign\" && (a = (o = PR.attributeNames.get(a)) !== null && o !== void 0 ? o : a), !t.emptyAttrs && !t.xmlMode && s === \"\" ? a : \"\".concat(a, '=\"').concat(r(s), '\"');\n }).join(\" \");\n }\n}\nvar YN = /* @__PURE__ */ new Set([\n \"area\",\n \"base\",\n \"basefont\",\n \"br\",\n \"col\",\n \"command\",\n \"embed\",\n \"frame\",\n \"hr\",\n \"img\",\n \"input\",\n \"isindex\",\n \"keygen\",\n \"link\",\n \"meta\",\n \"param\",\n \"source\",\n \"track\",\n \"wbr\"\n]);\nfunction Uh(e, t) {\n t === void 0 && (t = {});\n for (var n = (\"length\" in e) ? e : [e], r = \"\", a = 0; a < n.length; a++)\n r += hve(n[a], t);\n return r;\n}\nOd.render = Uh;\nOd.default = Uh;\nfunction hve(e, t) {\n switch (e.type) {\n case Bi.Root:\n return Uh(e.children, t);\n case Bi.Doctype:\n case Bi.Directive:\n return bve(e);\n case Bi.Comment:\n return xve(e);\n case Bi.CDATA:\n return Cve(e);\n case Bi.Script:\n case Bi.Style:\n case Bi.Tag:\n return vve(e, t);\n case Bi.Text:\n return yve(e, t);\n }\n}\nvar mve = /* @__PURE__ */ new Set([\n \"mi\",\n \"mo\",\n \"mn\",\n \"ms\",\n \"mtext\",\n \"annotation-xml\",\n \"foreignObject\",\n \"desc\",\n \"title\"\n]), gve = /* @__PURE__ */ new Set([\"svg\", \"math\"]);\nfunction vve(e, t) {\n var n;\n t.xmlMode === \"foreign\" && (e.name = (n = PR.elementNames.get(e.name)) !== null && n !== void 0 ? n : e.name, e.parent && mve.has(e.parent.name) && (t = yu(yu({}, t), { xmlMode: !1 }))), !t.xmlMode && gve.has(e.name) && (t = yu(yu({}, t), { xmlMode: \"foreign\" }));\n var r = \"<\".concat(e.name), a = pve(e.attribs, t);\n return a && (r += \" \".concat(a)), e.children.length === 0 && (t.xmlMode ? (\n // In XML mode or foreign mode, and user hasn't explicitly turned off self-closing tags\n t.selfClosingTags !== !1\n ) : (\n // User explicitly asked for self-closing tags, even in HTML mode\n t.selfClosingTags && YN.has(e.name)\n )) ? (t.xmlMode || (r += \" \"), r += \"/>\") : (r += \">\", e.children.length > 0 && (r += Uh(e.children, t)), (t.xmlMode || !YN.has(e.name)) && (r += \"\".concat(e.name, \">\"))), r;\n}\nfunction bve(e) {\n return \"<\".concat(e.data, \">\");\n}\nfunction yve(e, t) {\n var n, r = e.data || \"\";\n return ((n = t.encodeEntities) !== null && n !== void 0 ? n : t.decodeEntities) !== !1 && !(!t.xmlMode && e.parent && dve.has(e.parent.name)) && (r = t.xmlMode || t.encodeEntities !== \"utf8\" ? (0, np.encodeXML)(r) : (0, np.escapeText)(r)), r;\n}\nfunction Cve(e) {\n return \"\");\n}\nfunction xve(e) {\n return \"\");\n}\nvar Sve = Ft && Ft.__importDefault || function(e) {\n return e && e.__esModule ? e : { default: e };\n};\nObject.defineProperty(va, \"__esModule\", { value: !0 });\nva.innerText = va.textContent = va.getText = va.getInnerHTML = va.getOuterHTML = void 0;\nvar hi = gi, _ve = Sve(Od), Eve = dl;\nfunction MR(e, t) {\n return (0, _ve.default)(e, t);\n}\nva.getOuterHTML = MR;\nfunction wve(e, t) {\n return (0, hi.hasChildren)(e) ? e.children.map(function(n) {\n return MR(n, t);\n }).join(\"\") : \"\";\n}\nva.getInnerHTML = wve;\nfunction sf(e) {\n return Array.isArray(e) ? e.map(sf).join(\"\") : (0, hi.isTag)(e) ? e.name === \"br\" ? `\n` : sf(e.children) : (0, hi.isCDATA)(e) ? sf(e.children) : (0, hi.isText)(e) ? e.data : \"\";\n}\nva.getText = sf;\nfunction vv(e) {\n return Array.isArray(e) ? e.map(vv).join(\"\") : (0, hi.hasChildren)(e) && !(0, hi.isComment)(e) ? vv(e.children) : (0, hi.isText)(e) ? e.data : \"\";\n}\nva.textContent = vv;\nfunction bv(e) {\n return Array.isArray(e) ? e.map(bv).join(\"\") : (0, hi.hasChildren)(e) && (e.type === Eve.ElementType.Tag || (0, hi.isCDATA)(e)) ? bv(e.children) : (0, hi.isText)(e) ? e.data : \"\";\n}\nva.innerText = bv;\nvar gr = {};\nObject.defineProperty(gr, \"__esModule\", { value: !0 });\ngr.prevElementSibling = gr.nextElementSibling = gr.getName = gr.hasAttrib = gr.getAttributeValue = gr.getSiblings = gr.getParent = gr.getChildren = void 0;\nvar V2 = gi;\nfunction RR(e) {\n return (0, V2.hasChildren)(e) ? e.children : [];\n}\ngr.getChildren = RR;\nfunction BR(e) {\n return e.parent || null;\n}\ngr.getParent = BR;\nfunction Tve(e) {\n var t, n, r = BR(e);\n if (r != null)\n return RR(r);\n for (var a = [e], i = e.prev, o = e.next; i != null; )\n a.unshift(i), t = i, i = t.prev;\n for (; o != null; )\n a.push(o), n = o, o = n.next;\n return a;\n}\ngr.getSiblings = Tve;\nfunction Ave(e, t) {\n var n;\n return (n = e.attribs) === null || n === void 0 ? void 0 : n[t];\n}\ngr.getAttributeValue = Ave;\nfunction Nve(e, t) {\n return e.attribs != null && Object.prototype.hasOwnProperty.call(e.attribs, t) && e.attribs[t] != null;\n}\ngr.hasAttrib = Nve;\nfunction Ove(e) {\n return e.name;\n}\ngr.getName = Ove;\nfunction Lve(e) {\n for (var t, n = e.next; n !== null && !(0, V2.isTag)(n); )\n t = n, n = t.next;\n return n;\n}\ngr.nextElementSibling = Lve;\nfunction kve(e) {\n for (var t, n = e.prev; n !== null && !(0, V2.isTag)(n); )\n t = n, n = t.prev;\n return n;\n}\ngr.prevElementSibling = kve;\nvar ta = {};\nObject.defineProperty(ta, \"__esModule\", { value: !0 });\nta.prepend = ta.prependChild = ta.append = ta.appendChild = ta.replaceElement = ta.removeElement = void 0;\nfunction Ld(e) {\n if (e.prev && (e.prev.next = e.next), e.next && (e.next.prev = e.prev), e.parent) {\n var t = e.parent.children, n = t.lastIndexOf(e);\n n >= 0 && t.splice(n, 1);\n }\n e.next = null, e.prev = null, e.parent = null;\n}\nta.removeElement = Ld;\nfunction Ive(e, t) {\n var n = t.prev = e.prev;\n n && (n.next = t);\n var r = t.next = e.next;\n r && (r.prev = t);\n var a = t.parent = e.parent;\n if (a) {\n var i = a.children;\n i[i.lastIndexOf(e)] = t, e.parent = null;\n }\n}\nta.replaceElement = Ive;\nfunction Dve(e, t) {\n if (Ld(t), t.next = null, t.parent = e, e.children.push(t) > 1) {\n var n = e.children[e.children.length - 2];\n n.next = t, t.prev = n;\n } else\n t.prev = null;\n}\nta.appendChild = Dve;\nfunction Pve(e, t) {\n Ld(t);\n var n = e.parent, r = e.next;\n if (t.next = r, t.prev = e, e.next = t, t.parent = n, r) {\n if (r.prev = t, n) {\n var a = n.children;\n a.splice(a.lastIndexOf(r), 0, t);\n }\n } else\n n && n.children.push(t);\n}\nta.append = Pve;\nfunction Mve(e, t) {\n if (Ld(t), t.parent = e, t.prev = null, e.children.unshift(t) !== 1) {\n var n = e.children[1];\n n.prev = t, t.next = n;\n } else\n t.next = null;\n}\nta.prependChild = Mve;\nfunction Rve(e, t) {\n Ld(t);\n var n = e.parent;\n if (n) {\n var r = n.children;\n r.splice(r.indexOf(e), 0, t);\n }\n e.prev && (e.prev.next = t), t.parent = n, t.prev = e.prev, t.next = e, e.prev = t;\n}\nta.prepend = Rve;\nvar Gr = {};\nObject.defineProperty(Gr, \"__esModule\", { value: !0 });\nGr.findAll = Gr.existsOne = Gr.findOne = Gr.findOneChild = Gr.find = Gr.filter = void 0;\nvar Wh = gi;\nfunction Bve(e, t, n, r) {\n return n === void 0 && (n = !0), r === void 0 && (r = 1 / 0), FR(e, Array.isArray(t) ? t : [t], n, r);\n}\nGr.filter = Bve;\nfunction FR(e, t, n, r) {\n for (var a = [], i = [t], o = [0]; ; ) {\n if (o[0] >= i[0].length) {\n if (o.length === 1)\n return a;\n i.shift(), o.shift();\n continue;\n }\n var s = i[0][o[0]++];\n if (e(s) && (a.push(s), --r <= 0))\n return a;\n n && (0, Wh.hasChildren)(s) && s.children.length > 0 && (o.unshift(0), i.unshift(s.children));\n }\n}\nGr.find = FR;\nfunction Fve(e, t) {\n return t.find(e);\n}\nGr.findOneChild = Fve;\nfunction jR(e, t, n) {\n n === void 0 && (n = !0);\n for (var r = null, a = 0; a < t.length && !r; a++) {\n var i = t[a];\n if ((0, Wh.isTag)(i))\n e(i) ? r = i : n && i.children.length > 0 && (r = jR(e, i.children, !0));\n else\n continue;\n }\n return r;\n}\nGr.findOne = jR;\nfunction $R(e, t) {\n return t.some(function(n) {\n return (0, Wh.isTag)(n) && (e(n) || $R(e, n.children));\n });\n}\nGr.existsOne = $R;\nfunction jve(e, t) {\n for (var n = [], r = [t], a = [0]; ; ) {\n if (a[0] >= r[0].length) {\n if (r.length === 1)\n return n;\n r.shift(), a.shift();\n continue;\n }\n var i = r[0][a[0]++];\n (0, Wh.isTag)(i) && (e(i) && n.push(i), i.children.length > 0 && (a.unshift(0), r.unshift(i.children)));\n }\n}\nGr.findAll = jve;\nvar ba = {};\nObject.defineProperty(ba, \"__esModule\", { value: !0 });\nba.getElementsByTagType = ba.getElementsByTagName = ba.getElementById = ba.getElements = ba.testElement = void 0;\nvar ls = gi, Kh = Gr, rp = {\n tag_name: function(e) {\n return typeof e == \"function\" ? function(t) {\n return (0, ls.isTag)(t) && e(t.name);\n } : e === \"*\" ? ls.isTag : function(t) {\n return (0, ls.isTag)(t) && t.name === e;\n };\n },\n tag_type: function(e) {\n return typeof e == \"function\" ? function(t) {\n return e(t.type);\n } : function(t) {\n return t.type === e;\n };\n },\n tag_contains: function(e) {\n return typeof e == \"function\" ? function(t) {\n return (0, ls.isText)(t) && e(t.data);\n } : function(t) {\n return (0, ls.isText)(t) && t.data === e;\n };\n }\n};\nfunction HR(e, t) {\n return typeof t == \"function\" ? function(n) {\n return (0, ls.isTag)(n) && t(n.attribs[e]);\n } : function(n) {\n return (0, ls.isTag)(n) && n.attribs[e] === t;\n };\n}\nfunction $ve(e, t) {\n return function(n) {\n return e(n) || t(n);\n };\n}\nfunction VR(e) {\n var t = Object.keys(e).map(function(n) {\n var r = e[n];\n return Object.prototype.hasOwnProperty.call(rp, n) ? rp[n](r) : HR(n, r);\n });\n return t.length === 0 ? null : t.reduce($ve);\n}\nfunction Hve(e, t) {\n var n = VR(e);\n return n ? n(t) : !0;\n}\nba.testElement = Hve;\nfunction Vve(e, t, n, r) {\n r === void 0 && (r = 1 / 0);\n var a = VR(e);\n return a ? (0, Kh.filter)(a, t, n, r) : [];\n}\nba.getElements = Vve;\nfunction zve(e, t, n) {\n return n === void 0 && (n = !0), Array.isArray(t) || (t = [t]), (0, Kh.findOne)(HR(\"id\", e), t, n);\n}\nba.getElementById = zve;\nfunction qve(e, t, n, r) {\n return n === void 0 && (n = !0), r === void 0 && (r = 1 / 0), (0, Kh.filter)(rp.tag_name(e), t, n, r);\n}\nba.getElementsByTagName = qve;\nfunction Gve(e, t, n, r) {\n return n === void 0 && (n = !0), r === void 0 && (r = 1 / 0), (0, Kh.filter)(rp.tag_type(e), t, n, r);\n}\nba.getElementsByTagType = Gve;\nvar zR = {};\n(function(e) {\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.uniqueSort = e.compareDocumentPosition = e.DocumentPosition = e.removeSubsets = void 0;\n var t = gi;\n function n(o) {\n for (var s = o.length; --s >= 0; ) {\n var u = o[s];\n if (s > 0 && o.lastIndexOf(u, s - 1) >= 0) {\n o.splice(s, 1);\n continue;\n }\n for (var l = u.parent; l; l = l.parent)\n if (o.includes(l)) {\n o.splice(s, 1);\n break;\n }\n }\n return o;\n }\n e.removeSubsets = n;\n var r;\n (function(o) {\n o[o.DISCONNECTED = 1] = \"DISCONNECTED\", o[o.PRECEDING = 2] = \"PRECEDING\", o[o.FOLLOWING = 4] = \"FOLLOWING\", o[o.CONTAINS = 8] = \"CONTAINS\", o[o.CONTAINED_BY = 16] = \"CONTAINED_BY\";\n })(r = e.DocumentPosition || (e.DocumentPosition = {}));\n function a(o, s) {\n var u = [], l = [];\n if (o === s)\n return 0;\n for (var c = (0, t.hasChildren)(o) ? o : o.parent; c; )\n u.unshift(c), c = c.parent;\n for (c = (0, t.hasChildren)(s) ? s : s.parent; c; )\n l.unshift(c), c = c.parent;\n for (var d = Math.min(u.length, l.length), p = 0; p < d && u[p] === l[p]; )\n p++;\n if (p === 0)\n return r.DISCONNECTED;\n var g = u[p - 1], v = g.children, b = u[p], C = l[p];\n return v.indexOf(b) > v.indexOf(C) ? g === s ? r.FOLLOWING | r.CONTAINED_BY : r.FOLLOWING : g === o ? r.PRECEDING | r.CONTAINS : r.PRECEDING;\n }\n e.compareDocumentPosition = a;\n function i(o) {\n return o = o.filter(function(s, u, l) {\n return !l.includes(s, u + 1);\n }), o.sort(function(s, u) {\n var l = a(s, u);\n return l & r.PRECEDING ? -1 : l & r.FOLLOWING ? 1 : 0;\n }), o;\n }\n e.uniqueSort = i;\n})(zR);\nvar Yh = {};\nObject.defineProperty(Yh, \"__esModule\", { value: !0 });\nYh.getFeed = void 0;\nvar Uve = va, kd = ba;\nfunction Wve(e) {\n var t = ap(Qve, e);\n return t ? t.name === \"feed\" ? Kve(t) : Yve(t) : null;\n}\nYh.getFeed = Wve;\nfunction Kve(e) {\n var t, n = e.children, r = {\n type: \"atom\",\n items: (0, kd.getElementsByTagName)(\"entry\", n).map(function(o) {\n var s, u = o.children, l = { media: qR(u) };\n Jr(l, \"id\", \"id\", u), Jr(l, \"title\", \"title\", u);\n var c = (s = ap(\"link\", u)) === null || s === void 0 ? void 0 : s.attribs.href;\n c && (l.link = c);\n var d = Io(\"summary\", u) || Io(\"content\", u);\n d && (l.description = d);\n var p = Io(\"updated\", u);\n return p && (l.pubDate = new Date(p)), l;\n })\n };\n Jr(r, \"id\", \"id\", n), Jr(r, \"title\", \"title\", n);\n var a = (t = ap(\"link\", n)) === null || t === void 0 ? void 0 : t.attribs.href;\n a && (r.link = a), Jr(r, \"description\", \"subtitle\", n);\n var i = Io(\"updated\", n);\n return i && (r.updated = new Date(i)), Jr(r, \"author\", \"email\", n, !0), r;\n}\nfunction Yve(e) {\n var t, n, r = (n = (t = ap(\"channel\", e.children)) === null || t === void 0 ? void 0 : t.children) !== null && n !== void 0 ? n : [], a = {\n type: e.name.substr(0, 3),\n id: \"\",\n items: (0, kd.getElementsByTagName)(\"item\", e.children).map(function(o) {\n var s = o.children, u = { media: qR(s) };\n Jr(u, \"id\", \"guid\", s), Jr(u, \"title\", \"title\", s), Jr(u, \"link\", \"link\", s), Jr(u, \"description\", \"description\", s);\n var l = Io(\"pubDate\", s) || Io(\"dc:date\", s);\n return l && (u.pubDate = new Date(l)), u;\n })\n };\n Jr(a, \"title\", \"title\", r), Jr(a, \"link\", \"link\", r), Jr(a, \"description\", \"description\", r);\n var i = Io(\"lastBuildDate\", r);\n return i && (a.updated = new Date(i)), Jr(a, \"author\", \"managingEditor\", r, !0), a;\n}\nvar Xve = [\"url\", \"type\", \"lang\"], Zve = [\n \"fileSize\",\n \"bitrate\",\n \"framerate\",\n \"samplingrate\",\n \"channels\",\n \"duration\",\n \"height\",\n \"width\"\n];\nfunction qR(e) {\n return (0, kd.getElementsByTagName)(\"media:content\", e).map(function(t) {\n for (var n = t.attribs, r = {\n medium: n.medium,\n isDefault: !!n.isDefault\n }, a = 0, i = Xve; a < i.length; a++) {\n var o = i[a];\n n[o] && (r[o] = n[o]);\n }\n for (var s = 0, u = Zve; s < u.length; s++) {\n var o = u[s];\n n[o] && (r[o] = parseInt(n[o], 10));\n }\n return n.expression && (r.expression = n.expression), r;\n });\n}\nfunction ap(e, t) {\n return (0, kd.getElementsByTagName)(e, t, !0, 1)[0];\n}\nfunction Io(e, t, n) {\n return n === void 0 && (n = !1), (0, Uve.textContent)((0, kd.getElementsByTagName)(e, t, n, 1)).trim();\n}\nfunction Jr(e, t, n, r, a) {\n a === void 0 && (a = !1);\n var i = Io(n, r, a);\n i && (e[t] = i);\n}\nfunction Qve(e) {\n return e === \"rss\" || e === \"feed\" || e === \"rdf:RDF\";\n}\n(function(e) {\n var t = Ft && Ft.__createBinding || (Object.create ? function(a, i, o, s) {\n s === void 0 && (s = o);\n var u = Object.getOwnPropertyDescriptor(i, o);\n (!u || (\"get\" in u ? !i.__esModule : u.writable || u.configurable)) && (u = { enumerable: !0, get: function() {\n return i[o];\n } }), Object.defineProperty(a, s, u);\n } : function(a, i, o, s) {\n s === void 0 && (s = o), a[s] = i[o];\n }), n = Ft && Ft.__exportStar || function(a, i) {\n for (var o in a)\n o !== \"default\" && !Object.prototype.hasOwnProperty.call(i, o) && t(i, a, o);\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.hasChildren = e.isDocument = e.isComment = e.isText = e.isCDATA = e.isTag = void 0, n(va, e), n(gr, e), n(ta, e), n(Gr, e), n(ba, e), n(zR, e), n(Yh, e);\n var r = gi;\n Object.defineProperty(e, \"isTag\", { enumerable: !0, get: function() {\n return r.isTag;\n } }), Object.defineProperty(e, \"isCDATA\", { enumerable: !0, get: function() {\n return r.isCDATA;\n } }), Object.defineProperty(e, \"isText\", { enumerable: !0, get: function() {\n return r.isText;\n } }), Object.defineProperty(e, \"isComment\", { enumerable: !0, get: function() {\n return r.isComment;\n } }), Object.defineProperty(e, \"isDocument\", { enumerable: !0, get: function() {\n return r.isDocument;\n } }), Object.defineProperty(e, \"hasChildren\", { enumerable: !0, get: function() {\n return r.hasChildren;\n } });\n})(of);\n(function(e) {\n var t = Ft && Ft.__createBinding || (Object.create ? function(_, x, S, E) {\n E === void 0 && (E = S);\n var N = Object.getOwnPropertyDescriptor(x, S);\n (!N || (\"get\" in N ? !x.__esModule : N.writable || N.configurable)) && (N = { enumerable: !0, get: function() {\n return x[S];\n } }), Object.defineProperty(_, E, N);\n } : function(_, x, S, E) {\n E === void 0 && (E = S), _[E] = x[S];\n }), n = Ft && Ft.__setModuleDefault || (Object.create ? function(_, x) {\n Object.defineProperty(_, \"default\", { enumerable: !0, value: x });\n } : function(_, x) {\n _.default = x;\n }), r = Ft && Ft.__importStar || function(_) {\n if (_ && _.__esModule)\n return _;\n var x = {};\n if (_ != null)\n for (var S in _)\n S !== \"default\" && Object.prototype.hasOwnProperty.call(_, S) && t(x, _, S);\n return n(x, _), x;\n }, a = Ft && Ft.__importDefault || function(_) {\n return _ && _.__esModule ? _ : { default: _ };\n };\n Object.defineProperty(e, \"__esModule\", { value: !0 }), e.DomUtils = e.parseFeed = e.getFeed = e.ElementType = e.QuoteType = e.Tokenizer = e.createDomStream = e.createDocumentStream = e.parseDOM = e.parseDocument = e.DefaultHandler = e.DomHandler = e.Parser = void 0;\n var i = jc, o = jc;\n Object.defineProperty(e, \"Parser\", { enumerable: !0, get: function() {\n return o.Parser;\n } });\n var s = gi, u = gi;\n Object.defineProperty(e, \"DomHandler\", { enumerable: !0, get: function() {\n return u.DomHandler;\n } }), Object.defineProperty(e, \"DefaultHandler\", { enumerable: !0, get: function() {\n return u.DomHandler;\n } });\n function l(_, x) {\n var S = new s.DomHandler(void 0, x);\n return new i.Parser(S, x).end(_), S.root;\n }\n e.parseDocument = l;\n function c(_, x) {\n return l(_, x).children;\n }\n e.parseDOM = c;\n function d(_, x, S) {\n var E = new s.DomHandler(function(N) {\n return _(N, E.root);\n }, x, S);\n return new i.Parser(E, x);\n }\n e.createDocumentStream = d;\n function p(_, x, S) {\n var E = new s.DomHandler(_, x, S);\n return new i.Parser(E, x);\n }\n e.createDomStream = p;\n var g = cl;\n Object.defineProperty(e, \"Tokenizer\", { enumerable: !0, get: function() {\n return a(g).default;\n } }), Object.defineProperty(e, \"QuoteType\", { enumerable: !0, get: function() {\n return g.QuoteType;\n } }), e.ElementType = r(dl);\n var v = of, b = of;\n Object.defineProperty(e, \"getFeed\", { enumerable: !0, get: function() {\n return b.getFeed;\n } });\n var C = { xmlMode: !0 };\n function w(_, x) {\n return x === void 0 && (x = C), (0, v.getFeed)(c(_, x));\n }\n e.parseFeed = w, e.DomUtils = r(of);\n})(bR);\nvar Jve = typeof Ft == \"object\" && Ft && Ft.Object === Object && Ft, ebe = typeof self == \"object\" && self && self.Object === Object && self, tbe = Jve || ebe || Function(\"return this\")(), XN = tbe.Symbol, ZN = XN ? XN.prototype : void 0;\nZN && ZN.toString;\nconst nbe = [\n \"accept\",\n \"acceptCharset\",\n \"accessKey\",\n \"action\",\n \"allowFullScreen\",\n \"allowTransparency\",\n \"alt\",\n \"async\",\n \"autoComplete\",\n \"autoFocus\",\n \"autoPlay\",\n \"capture\",\n \"cellPadding\",\n \"cellSpacing\",\n \"challenge\",\n \"charSet\",\n \"checked\",\n \"cite\",\n \"classID\",\n \"className\",\n \"colSpan\",\n \"cols\",\n \"content\",\n \"contentEditable\",\n \"contextMenu\",\n \"controls\",\n \"coords\",\n \"crossOrigin\",\n \"data\",\n \"dateTime\",\n \"default\",\n \"defer\",\n \"dir\",\n \"disabled\",\n \"download\",\n \"draggable\",\n \"encType\",\n \"form\",\n \"formAction\",\n \"formEncType\",\n \"formMethod\",\n \"formNoValidate\",\n \"formTarget\",\n \"frameBorder\",\n \"headers\",\n \"height\",\n \"hidden\",\n \"high\",\n \"href\",\n \"hrefLang\",\n \"htmlFor\",\n \"httpEquiv\",\n \"icon\",\n \"id\",\n \"inputMode\",\n \"integrity\",\n \"is\",\n \"keyParams\",\n \"keyType\",\n \"kind\",\n \"label\",\n \"lang\",\n \"list\",\n \"loop\",\n \"low\",\n \"manifest\",\n \"marginHeight\",\n \"marginWidth\",\n \"max\",\n \"maxLength\",\n \"media\",\n \"mediaGroup\",\n \"method\",\n \"min\",\n \"minLength\",\n \"multiple\",\n \"muted\",\n \"name\",\n \"noValidate\",\n \"nonce\",\n \"open\",\n \"optimum\",\n \"pattern\",\n \"placeholder\",\n \"poster\",\n \"preload\",\n \"profile\",\n \"radioGroup\",\n \"readOnly\",\n \"rel\",\n \"required\",\n \"reversed\",\n \"role\",\n \"rowSpan\",\n \"rows\",\n \"sandbox\",\n \"scope\",\n \"scoped\",\n \"scrolling\",\n \"seamless\",\n \"selected\",\n \"shape\",\n \"size\",\n \"sizes\",\n \"span\",\n \"spellCheck\",\n \"src\",\n \"srcDoc\",\n \"srcLang\",\n \"srcSet\",\n \"start\",\n \"step\",\n \"style\",\n \"summary\",\n \"tabIndex\",\n \"target\",\n \"title\",\n \"type\",\n \"useMap\",\n \"value\",\n \"width\",\n \"wmode\",\n \"wrap\",\n \"onClick\"\n], rbe = [\n \"autoCapitalize\",\n \"autoCorrect\",\n \"color\",\n \"itemProp\",\n \"itemScope\",\n \"itemType\",\n \"itemRef\",\n \"itemID\",\n \"security\",\n \"unselectable\",\n \"results\",\n \"autoSave\"\n], abe = [\n \"accentHeight\",\n \"accumulate\",\n \"additive\",\n \"alignmentBaseline\",\n \"allowReorder\",\n \"alphabetic\",\n \"amplitude\",\n \"arabicForm\",\n \"ascent\",\n \"attributeName\",\n \"attributeType\",\n \"autoReverse\",\n \"azimuth\",\n \"baseFrequency\",\n \"baseProfile\",\n \"baselineShift\",\n \"bbox\",\n \"begin\",\n \"bias\",\n \"by\",\n \"calcMode\",\n \"capHeight\",\n \"clip\",\n \"clipPath\",\n \"clipPathUnits\",\n \"clipRule\",\n \"colorInterpolation\",\n \"colorInterpolationFilters\",\n \"colorProfile\",\n \"colorRendering\",\n \"contentScriptType\",\n \"contentStyleType\",\n \"cursor\",\n \"cx\",\n \"cy\",\n \"d\",\n \"decelerate\",\n \"descent\",\n \"diffuseConstant\",\n \"direction\",\n \"display\",\n \"divisor\",\n \"dominantBaseline\",\n \"dur\",\n \"dx\",\n \"dy\",\n \"edgeMode\",\n \"elevation\",\n \"enableBackground\",\n \"end\",\n \"exponent\",\n \"externalResourcesRequired\",\n \"fill\",\n \"fillOpacity\",\n \"fillRule\",\n \"filter\",\n \"filterRes\",\n \"filterUnits\",\n \"floodColor\",\n \"floodOpacity\",\n \"focusable\",\n \"fontFamily\",\n \"fontSize\",\n \"fontSizeAdjust\",\n \"fontStretch\",\n \"fontStyle\",\n \"fontVariant\",\n \"fontWeight\",\n \"format\",\n \"from\",\n \"fx\",\n \"fy\",\n \"g1\",\n \"g2\",\n \"glyphName\",\n \"glyphOrientationHorizontal\",\n \"glyphOrientationVertical\",\n \"glyphRef\",\n \"gradientTransform\",\n \"gradientUnits\",\n \"hanging\",\n \"horizAdvX\",\n \"horizOriginX\",\n \"ideographic\",\n \"imageRendering\",\n \"in\",\n \"in2\",\n \"intercept\",\n \"k\",\n \"k1\",\n \"k2\",\n \"k3\",\n \"k4\",\n \"kernelMatrix\",\n \"kernelUnitLength\",\n \"kerning\",\n \"keyPoints\",\n \"keySplines\",\n \"keyTimes\",\n \"lengthAdjust\",\n \"letterSpacing\",\n \"lightingColor\",\n \"limitingConeAngle\",\n \"local\",\n \"markerEnd\",\n \"markerHeight\",\n \"markerMid\",\n \"markerStart\",\n \"markerUnits\",\n \"markerWidth\",\n \"mask\",\n \"maskContentUnits\",\n \"maskUnits\",\n \"mathematical\",\n \"mode\",\n \"numOctaves\",\n \"offset\",\n \"opacity\",\n \"operator\",\n \"order\",\n \"orient\",\n \"orientation\",\n \"origin\",\n \"overflow\",\n \"overlinePosition\",\n \"overlineThickness\",\n \"paintOrder\",\n \"panose1\",\n \"pathLength\",\n \"patternContentUnits\",\n \"patternTransform\",\n \"patternUnits\",\n \"pointerEvents\",\n \"points\",\n \"pointsAtX\",\n \"pointsAtY\",\n \"pointsAtZ\",\n \"preserveAlpha\",\n \"preserveAspectRatio\",\n \"primitiveUnits\",\n \"r\",\n \"radius\",\n \"refX\",\n \"refY\",\n \"renderingIntent\",\n \"repeatCount\",\n \"repeatDur\",\n \"requiredExtensions\",\n \"requiredFeatures\",\n \"restart\",\n \"result\",\n \"rotate\",\n \"rx\",\n \"ry\",\n \"scale\",\n \"seed\",\n \"shapeRendering\",\n \"slope\",\n \"spacing\",\n \"specularConstant\",\n \"specularExponent\",\n \"speed\",\n \"spreadMethod\",\n \"startOffset\",\n \"stdDeviation\",\n \"stemh\",\n \"stemv\",\n \"stitchTiles\",\n \"stopColor\",\n \"stopOpacity\",\n \"strikethroughPosition\",\n \"strikethroughThickness\",\n \"string\",\n \"stroke\",\n \"strokeDasharray\",\n \"strokeDashoffset\",\n \"strokeLinecap\",\n \"strokeLinejoin\",\n \"strokeMiterlimit\",\n \"strokeOpacity\",\n \"strokeWidth\",\n \"surfaceScale\",\n \"systemLanguage\",\n \"tableValues\",\n \"targetX\",\n \"targetY\",\n \"textAnchor\",\n \"textDecoration\",\n \"textLength\",\n \"textRendering\",\n \"to\",\n \"transform\",\n \"u1\",\n \"u2\",\n \"underlinePosition\",\n \"underlineThickness\",\n \"unicode\",\n \"unicodeBidi\",\n \"unicodeRange\",\n \"unitsPerEm\",\n \"vAlphabetic\",\n \"vHanging\",\n \"vIdeographic\",\n \"vMathematical\",\n \"values\",\n \"vectorEffect\",\n \"version\",\n \"vertAdvY\",\n \"vertOriginX\",\n \"vertOriginY\",\n \"viewBox\",\n \"viewTarget\",\n \"visibility\",\n \"widths\",\n \"wordSpacing\",\n \"writingMode\",\n \"x\",\n \"x1\",\n \"x2\",\n \"xChannelSelector\",\n \"xHeight\",\n \"xlinkActuate\",\n \"xlinkArcrole\",\n \"xlinkHref\",\n \"xlinkRole\",\n \"xlinkShow\",\n \"xlinkTitle\",\n \"xlinkType\",\n \"xmlns\",\n \"xmlnsXlink\",\n \"xmlBase\",\n \"xmlLang\",\n \"xmlSpace\",\n \"y\",\n \"y1\",\n \"y2\",\n \"yChannelSelector\",\n \"z\",\n \"zoomAndPan\"\n];\nnbe.concat(rbe).concat(abe).reduce(function(e, t) {\n const n = t.toLowerCase();\n return n !== t && (e[n] = t), e;\n}, {});\nbR.Parser;\ngi.DomHandler;\nconst QN = {};\nfunction ibe(e) {\n let t = QN[e];\n if (t)\n return t;\n t = QN[e] = [];\n for (let n = 0; n < 128; n++) {\n const r = String.fromCharCode(n);\n t.push(r);\n }\n for (let n = 0; n < e.length; n++) {\n const r = e.charCodeAt(n);\n t[r] = \"%\" + (\"0\" + r.toString(16).toUpperCase()).slice(-2);\n }\n return t;\n}\nfunction Yu(e, t) {\n typeof t != \"string\" && (t = Yu.defaultChars);\n const n = ibe(t);\n return e.replace(/(%[a-f0-9]{2})+/gi, function(r) {\n let a = \"\";\n for (let i = 0, o = r.length; i < o; i += 3) {\n const s = parseInt(r.slice(i + 1, i + 3), 16);\n if (s < 128) {\n a += n[s];\n continue;\n }\n if ((s & 224) === 192 && i + 3 < o) {\n const u = parseInt(r.slice(i + 4, i + 6), 16);\n if ((u & 192) === 128) {\n const l = s << 6 & 1984 | u & 63;\n l < 128 ? a += \"��\" : a += String.fromCharCode(l), i += 3;\n continue;\n }\n }\n if ((s & 240) === 224 && i + 6 < o) {\n const u = parseInt(r.slice(i + 4, i + 6), 16), l = parseInt(r.slice(i + 7, i + 9), 16);\n if ((u & 192) === 128 && (l & 192) === 128) {\n const c = s << 12 & 61440 | u << 6 & 4032 | l & 63;\n c < 2048 || c >= 55296 && c <= 57343 ? a += \"���\" : a += String.fromCharCode(c), i += 6;\n continue;\n }\n }\n if ((s & 248) === 240 && i + 9 < o) {\n const u = parseInt(r.slice(i + 4, i + 6), 16), l = parseInt(r.slice(i + 7, i + 9), 16), c = parseInt(r.slice(i + 10, i + 12), 16);\n if ((u & 192) === 128 && (l & 192) === 128 && (c & 192) === 128) {\n let d = s << 18 & 1835008 | u << 12 & 258048 | l << 6 & 4032 | c & 63;\n d < 65536 || d > 1114111 ? a += \"����\" : (d -= 65536, a += String.fromCharCode(55296 + (d >> 10), 56320 + (d & 1023))), i += 9;\n continue;\n }\n }\n a += \"�\";\n }\n return a;\n });\n}\nYu.defaultChars = \";/?:@&=+$,#\";\nYu.componentChars = \"\";\nconst JN = {};\nfunction obe(e) {\n let t = JN[e];\n if (t)\n return t;\n t = JN[e] = [];\n for (let n = 0; n < 128; n++) {\n const r = String.fromCharCode(n);\n /^[0-9a-z]$/i.test(r) ? t.push(r) : t.push(\"%\" + (\"0\" + n.toString(16).toUpperCase()).slice(-2));\n }\n for (let n = 0; n < e.length; n++)\n t[e.charCodeAt(n)] = e[n];\n return t;\n}\nfunction Id(e, t, n) {\n typeof t != \"string\" && (n = t, t = Id.defaultChars), typeof n > \"u\" && (n = !0);\n const r = obe(t);\n let a = \"\";\n for (let i = 0, o = e.length; i < o; i++) {\n const s = e.charCodeAt(i);\n if (n && s === 37 && i + 2 < o && /^[0-9a-f]{2}$/i.test(e.slice(i + 1, i + 3))) {\n a += e.slice(i, i + 3), i += 2;\n continue;\n }\n if (s < 128) {\n a += r[s];\n continue;\n }\n if (s >= 55296 && s <= 57343) {\n if (s >= 55296 && s <= 56319 && i + 1 < o) {\n const u = e.charCodeAt(i + 1);\n if (u >= 56320 && u <= 57343) {\n a += encodeURIComponent(e[i] + e[i + 1]), i++;\n continue;\n }\n }\n a += \"%EF%BF%BD\";\n continue;\n }\n a += encodeURIComponent(e[i]);\n }\n return a;\n}\nId.defaultChars = \";/?:@&=+$,-_.!~*'()#\";\nId.componentChars = \"-_.!~*'()\";\nfunction z2(e) {\n let t = \"\";\n return t += e.protocol || \"\", t += e.slashes ? \"//\" : \"\", t += e.auth ? e.auth + \"@\" : \"\", e.hostname && e.hostname.indexOf(\":\") !== -1 ? t += \"[\" + e.hostname + \"]\" : t += e.hostname || \"\", t += e.port ? \":\" + e.port : \"\", t += e.pathname || \"\", t += e.search || \"\", t += e.hash || \"\", t;\n}\nfunction ip() {\n this.protocol = null, this.slashes = null, this.auth = null, this.port = null, this.hostname = null, this.hash = null, this.search = null, this.pathname = null;\n}\nconst sbe = /^([a-z0-9.+-]+:)/i, ube = /:[0-9]*$/, lbe = /^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/, cbe = [\"<\", \">\", '\"', \"`\", \" \", \"\\r\", `\n`, \"\t\"], dbe = [\"{\", \"}\", \"|\", \"\\\\\", \"^\", \"`\"].concat(cbe), fbe = [\"'\"].concat(dbe), e8 = [\"%\", \"/\", \"?\", \";\", \"#\"].concat(fbe), t8 = [\"/\", \"?\", \"#\"], pbe = 255, n8 = /^[+a-z0-9A-Z_-]{0,63}$/, hbe = /^([+a-z0-9A-Z_-]{0,63})(.*)$/, r8 = {\n javascript: !0,\n \"javascript:\": !0\n}, a8 = {\n http: !0,\n https: !0,\n ftp: !0,\n gopher: !0,\n file: !0,\n \"http:\": !0,\n \"https:\": !0,\n \"ftp:\": !0,\n \"gopher:\": !0,\n \"file:\": !0\n};\nfunction q2(e, t) {\n if (e && e instanceof ip)\n return e;\n const n = new ip();\n return n.parse(e, t), n;\n}\nip.prototype.parse = function(e, t) {\n let n, r, a, i = e;\n if (i = i.trim(), !t && e.split(\"#\").length === 1) {\n const l = lbe.exec(i);\n if (l)\n return this.pathname = l[1], l[2] && (this.search = l[2]), this;\n }\n let o = sbe.exec(i);\n if (o && (o = o[0], n = o.toLowerCase(), this.protocol = o, i = i.substr(o.length)), (t || o || i.match(/^\\/\\/[^@\\/]+@[^@\\/]+/)) && (a = i.substr(0, 2) === \"//\", a && !(o && r8[o]) && (i = i.substr(2), this.slashes = !0)), !r8[o] && (a || o && !a8[o])) {\n let l = -1;\n for (let v = 0; v < t8.length; v++)\n r = i.indexOf(t8[v]), r !== -1 && (l === -1 || r < l) && (l = r);\n let c, d;\n l === -1 ? d = i.lastIndexOf(\"@\") : d = i.lastIndexOf(\"@\", l), d !== -1 && (c = i.slice(0, d), i = i.slice(d + 1), this.auth = c), l = -1;\n for (let v = 0; v < e8.length; v++)\n r = i.indexOf(e8[v]), r !== -1 && (l === -1 || r < l) && (l = r);\n l === -1 && (l = i.length), i[l - 1] === \":\" && l--;\n const p = i.slice(0, l);\n i = i.slice(l), this.parseHost(p), this.hostname = this.hostname || \"\";\n const g = this.hostname[0] === \"[\" && this.hostname[this.hostname.length - 1] === \"]\";\n if (!g) {\n const v = this.hostname.split(/\\./);\n for (let b = 0, C = v.length; b < C; b++) {\n const w = v[b];\n if (w && !w.match(n8)) {\n let _ = \"\";\n for (let x = 0, S = w.length; x < S; x++)\n w.charCodeAt(x) > 127 ? _ += \"x\" : _ += w[x];\n if (!_.match(n8)) {\n const x = v.slice(0, b), S = v.slice(b + 1), E = w.match(hbe);\n E && (x.push(E[1]), S.unshift(E[2])), S.length && (i = S.join(\".\") + i), this.hostname = x.join(\".\");\n break;\n }\n }\n }\n }\n this.hostname.length > pbe && (this.hostname = \"\"), g && (this.hostname = this.hostname.substr(1, this.hostname.length - 2));\n }\n const s = i.indexOf(\"#\");\n s !== -1 && (this.hash = i.substr(s), i = i.slice(0, s));\n const u = i.indexOf(\"?\");\n return u !== -1 && (this.search = i.substr(u), i = i.slice(0, u)), i && (this.pathname = i), a8[n] && this.hostname && !this.pathname && (this.pathname = \"\"), this;\n};\nip.prototype.parseHost = function(e) {\n let t = ube.exec(e);\n t && (t = t[0], t !== \":\" && (this.port = t.substr(1)), e = e.substr(0, e.length - t.length)), e && (this.hostname = e);\n};\nconst mbe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({\n __proto__: null,\n decode: Yu,\n encode: Id,\n format: z2,\n parse: q2\n}, Symbol.toStringTag, { value: \"Module\" })), GR = /[\\0-\\uD7FF\\uE000-\\uFFFF]|[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/, UR = /[\\0-\\x1F\\x7F-\\x9F]/, gbe = /[\\xAD\\u0600-\\u0605\\u061C\\u06DD\\u070F\\u0890\\u0891\\u08E2\\u180E\\u200B-\\u200F\\u202A-\\u202E\\u2060-\\u2064\\u2066-\\u206F\\uFEFF\\uFFF9-\\uFFFB]|\\uD804[\\uDCBD\\uDCCD]|\\uD80D[\\uDC30-\\uDC3F]|\\uD82F[\\uDCA0-\\uDCA3]|\\uD834[\\uDD73-\\uDD7A]|\\uDB40[\\uDC01\\uDC20-\\uDC7F]/, G2 = /[!-#%-\\*,-\\/:;\\?@\\[-\\]_\\{\\}\\xA1\\xA7\\xAB\\xB6\\xB7\\xBB\\xBF\\u037E\\u0387\\u055A-\\u055F\\u0589\\u058A\\u05BE\\u05C0\\u05C3\\u05C6\\u05F3\\u05F4\\u0609\\u060A\\u060C\\u060D\\u061B\\u061D-\\u061F\\u066A-\\u066D\\u06D4\\u0700-\\u070D\\u07F7-\\u07F9\\u0830-\\u083E\\u085E\\u0964\\u0965\\u0970\\u09FD\\u0A76\\u0AF0\\u0C77\\u0C84\\u0DF4\\u0E4F\\u0E5A\\u0E5B\\u0F04-\\u0F12\\u0F14\\u0F3A-\\u0F3D\\u0F85\\u0FD0-\\u0FD4\\u0FD9\\u0FDA\\u104A-\\u104F\\u10FB\\u1360-\\u1368\\u1400\\u166E\\u169B\\u169C\\u16EB-\\u16ED\\u1735\\u1736\\u17D4-\\u17D6\\u17D8-\\u17DA\\u1800-\\u180A\\u1944\\u1945\\u1A1E\\u1A1F\\u1AA0-\\u1AA6\\u1AA8-\\u1AAD\\u1B5A-\\u1B60\\u1B7D\\u1B7E\\u1BFC-\\u1BFF\\u1C3B-\\u1C3F\\u1C7E\\u1C7F\\u1CC0-\\u1CC7\\u1CD3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205E\\u207D\\u207E\\u208D\\u208E\\u2308-\\u230B\\u2329\\u232A\\u2768-\\u2775\\u27C5\\u27C6\\u27E6-\\u27EF\\u2983-\\u2998\\u29D8-\\u29DB\\u29FC\\u29FD\\u2CF9-\\u2CFC\\u2CFE\\u2CFF\\u2D70\\u2E00-\\u2E2E\\u2E30-\\u2E4F\\u2E52-\\u2E5D\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301F\\u3030\\u303D\\u30A0\\u30FB\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA673\\uA67E\\uA6F2-\\uA6F7\\uA874-\\uA877\\uA8CE\\uA8CF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA95F\\uA9C1-\\uA9CD\\uA9DE\\uA9DF\\uAA5C-\\uAA5F\\uAADE\\uAADF\\uAAF0\\uAAF1\\uABEB\\uFD3E\\uFD3F\\uFE10-\\uFE19\\uFE30-\\uFE52\\uFE54-\\uFE61\\uFE63\\uFE68\\uFE6A\\uFE6B\\uFF01-\\uFF03\\uFF05-\\uFF0A\\uFF0C-\\uFF0F\\uFF1A\\uFF1B\\uFF1F\\uFF20\\uFF3B-\\uFF3D\\uFF3F\\uFF5B\\uFF5D\\uFF5F-\\uFF65]|\\uD800[\\uDD00-\\uDD02\\uDF9F\\uDFD0]|\\uD801\\uDD6F|\\uD802[\\uDC57\\uDD1F\\uDD3F\\uDE50-\\uDE58\\uDE7F\\uDEF0-\\uDEF6\\uDF39-\\uDF3F\\uDF99-\\uDF9C]|\\uD803[\\uDEAD\\uDF55-\\uDF59\\uDF86-\\uDF89]|\\uD804[\\uDC47-\\uDC4D\\uDCBB\\uDCBC\\uDCBE-\\uDCC1\\uDD40-\\uDD43\\uDD74\\uDD75\\uDDC5-\\uDDC8\\uDDCD\\uDDDB\\uDDDD-\\uDDDF\\uDE38-\\uDE3D\\uDEA9]|\\uD805[\\uDC4B-\\uDC4F\\uDC5A\\uDC5B\\uDC5D\\uDCC6\\uDDC1-\\uDDD7\\uDE41-\\uDE43\\uDE60-\\uDE6C\\uDEB9\\uDF3C-\\uDF3E]|\\uD806[\\uDC3B\\uDD44-\\uDD46\\uDDE2\\uDE3F-\\uDE46\\uDE9A-\\uDE9C\\uDE9E-\\uDEA2\\uDF00-\\uDF09]|\\uD807[\\uDC41-\\uDC45\\uDC70\\uDC71\\uDEF7\\uDEF8\\uDF43-\\uDF4F\\uDFFF]|\\uD809[\\uDC70-\\uDC74]|\\uD80B[\\uDFF1\\uDFF2]|\\uD81A[\\uDE6E\\uDE6F\\uDEF5\\uDF37-\\uDF3B\\uDF44]|\\uD81B[\\uDE97-\\uDE9A\\uDFE2]|\\uD82F\\uDC9F|\\uD836[\\uDE87-\\uDE8B]|\\uD83A[\\uDD5E\\uDD5F]/, WR = /[\\$\\+<->\\^`\\|~\\xA2-\\xA6\\xA8\\xA9\\xAC\\xAE-\\xB1\\xB4\\xB8\\xD7\\xF7\\u02C2-\\u02C5\\u02D2-\\u02DF\\u02E5-\\u02EB\\u02ED\\u02EF-\\u02FF\\u0375\\u0384\\u0385\\u03F6\\u0482\\u058D-\\u058F\\u0606-\\u0608\\u060B\\u060E\\u060F\\u06DE\\u06E9\\u06FD\\u06FE\\u07F6\\u07FE\\u07FF\\u0888\\u09F2\\u09F3\\u09FA\\u09FB\\u0AF1\\u0B70\\u0BF3-\\u0BFA\\u0C7F\\u0D4F\\u0D79\\u0E3F\\u0F01-\\u0F03\\u0F13\\u0F15-\\u0F17\\u0F1A-\\u0F1F\\u0F34\\u0F36\\u0F38\\u0FBE-\\u0FC5\\u0FC7-\\u0FCC\\u0FCE\\u0FCF\\u0FD5-\\u0FD8\\u109E\\u109F\\u1390-\\u1399\\u166D\\u17DB\\u1940\\u19DE-\\u19FF\\u1B61-\\u1B6A\\u1B74-\\u1B7C\\u1FBD\\u1FBF-\\u1FC1\\u1FCD-\\u1FCF\\u1FDD-\\u1FDF\\u1FED-\\u1FEF\\u1FFD\\u1FFE\\u2044\\u2052\\u207A-\\u207C\\u208A-\\u208C\\u20A0-\\u20C0\\u2100\\u2101\\u2103-\\u2106\\u2108\\u2109\\u2114\\u2116-\\u2118\\u211E-\\u2123\\u2125\\u2127\\u2129\\u212E\\u213A\\u213B\\u2140-\\u2144\\u214A-\\u214D\\u214F\\u218A\\u218B\\u2190-\\u2307\\u230C-\\u2328\\u232B-\\u2426\\u2440-\\u244A\\u249C-\\u24E9\\u2500-\\u2767\\u2794-\\u27C4\\u27C7-\\u27E5\\u27F0-\\u2982\\u2999-\\u29D7\\u29DC-\\u29FB\\u29FE-\\u2B73\\u2B76-\\u2B95\\u2B97-\\u2BFF\\u2CE5-\\u2CEA\\u2E50\\u2E51\\u2E80-\\u2E99\\u2E9B-\\u2EF3\\u2F00-\\u2FD5\\u2FF0-\\u2FFF\\u3004\\u3012\\u3013\\u3020\\u3036\\u3037\\u303E\\u303F\\u309B\\u309C\\u3190\\u3191\\u3196-\\u319F\\u31C0-\\u31E3\\u31EF\\u3200-\\u321E\\u322A-\\u3247\\u3250\\u3260-\\u327F\\u328A-\\u32B0\\u32C0-\\u33FF\\u4DC0-\\u4DFF\\uA490-\\uA4C6\\uA700-\\uA716\\uA720\\uA721\\uA789\\uA78A\\uA828-\\uA82B\\uA836-\\uA839\\uAA77-\\uAA79\\uAB5B\\uAB6A\\uAB6B\\uFB29\\uFBB2-\\uFBC2\\uFD40-\\uFD4F\\uFDCF\\uFDFC-\\uFDFF\\uFE62\\uFE64-\\uFE66\\uFE69\\uFF04\\uFF0B\\uFF1C-\\uFF1E\\uFF3E\\uFF40\\uFF5C\\uFF5E\\uFFE0-\\uFFE6\\uFFE8-\\uFFEE\\uFFFC\\uFFFD]|\\uD800[\\uDD37-\\uDD3F\\uDD79-\\uDD89\\uDD8C-\\uDD8E\\uDD90-\\uDD9C\\uDDA0\\uDDD0-\\uDDFC]|\\uD802[\\uDC77\\uDC78\\uDEC8]|\\uD805\\uDF3F|\\uD807[\\uDFD5-\\uDFF1]|\\uD81A[\\uDF3C-\\uDF3F\\uDF45]|\\uD82F\\uDC9C|\\uD833[\\uDF50-\\uDFC3]|\\uD834[\\uDC00-\\uDCF5\\uDD00-\\uDD26\\uDD29-\\uDD64\\uDD6A-\\uDD6C\\uDD83\\uDD84\\uDD8C-\\uDDA9\\uDDAE-\\uDDEA\\uDE00-\\uDE41\\uDE45\\uDF00-\\uDF56]|\\uD835[\\uDEC1\\uDEDB\\uDEFB\\uDF15\\uDF35\\uDF4F\\uDF6F\\uDF89\\uDFA9\\uDFC3]|\\uD836[\\uDC00-\\uDDFF\\uDE37-\\uDE3A\\uDE6D-\\uDE74\\uDE76-\\uDE83\\uDE85\\uDE86]|\\uD838[\\uDD4F\\uDEFF]|\\uD83B[\\uDCAC\\uDCB0\\uDD2E\\uDEF0\\uDEF1]|\\uD83C[\\uDC00-\\uDC2B\\uDC30-\\uDC93\\uDCA0-\\uDCAE\\uDCB1-\\uDCBF\\uDCC1-\\uDCCF\\uDCD1-\\uDCF5\\uDD0D-\\uDDAD\\uDDE6-\\uDE02\\uDE10-\\uDE3B\\uDE40-\\uDE48\\uDE50\\uDE51\\uDE60-\\uDE65\\uDF00-\\uDFFF]|\\uD83D[\\uDC00-\\uDED7\\uDEDC-\\uDEEC\\uDEF0-\\uDEFC\\uDF00-\\uDF76\\uDF7B-\\uDFD9\\uDFE0-\\uDFEB\\uDFF0]|\\uD83E[\\uDC00-\\uDC0B\\uDC10-\\uDC47\\uDC50-\\uDC59\\uDC60-\\uDC87\\uDC90-\\uDCAD\\uDCB0\\uDCB1\\uDD00-\\uDE53\\uDE60-\\uDE6D\\uDE70-\\uDE7C\\uDE80-\\uDE88\\uDE90-\\uDEBD\\uDEBF-\\uDEC5\\uDECE-\\uDEDB\\uDEE0-\\uDEE8\\uDEF0-\\uDEF8\\uDF00-\\uDF92\\uDF94-\\uDFCA]/, KR = /[ \\xA0\\u1680\\u2000-\\u200A\\u2028\\u2029\\u202F\\u205F\\u3000]/, vbe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({\n __proto__: null,\n Any: GR,\n Cc: UR,\n Cf: gbe,\n P: G2,\n S: WR,\n Z: KR\n}, Symbol.toStringTag, { value: \"Module\" })), bbe = new Uint16Array(\n // prettier-ignore\n 'ᵁ<Õıʊҝջאٵ۞ޢߖࠏઑඡ༉༦ረዡᐕᒝᓃᓟᔥ\\0\\0\\0\\0\\0\\0ᕫᛍᦍᰒᷝ↰⊍⏀⏻⑂⠤⤒ⴈ⹈⿎〖㊺㘹㞬㣾㨨㩱㫠㬮ࠀEMabcfglmnoprstu\\\\bfms¦³¹ÈÏlig耻Æ䃆P耻&䀦cute耻Á䃁reve;䄂Āiyx}rc耻Â䃂;䐐r;쀀𝔄rave耻À䃀pha;䎑acr;䄀d;橓Āgp¡on;䄄f;쀀𝔸plyFunction;恡ing耻Å䃅Ācs¾Ãr;쀀𝒜ign;扔ilde耻Ã䃃ml耻Ä䃄ЀaceforsuåûþėĜĢħĪĀcrêòkslash;或Ŷöø;櫧ed;挆y;䐑ƀcrtąċĔause;戵noullis;愬a;䎒r;쀀𝔅pf;쀀𝔹eve;䋘còēmpeq;扎܀HOacdefhilorsuōőŖƀƞƢƵƷƺǜȕɳɸɾcy;䐧PY耻©䂩ƀcpyŝŢźute;䄆Ā;iŧŨ拒talDifferentialD;慅leys;愭ȀaeioƉƎƔƘron;䄌dil耻Ç䃇rc;䄈nint;戰ot;䄊ĀdnƧƭilla;䂸terDot;䂷òſi;䎧rcleȀDMPTLJNjǑǖot;抙inus;抖lus;投imes;抗oĀcsǢǸkwiseContourIntegral;戲eCurlyĀDQȃȏoubleQuote;思uote;怙ȀlnpuȞȨɇɕonĀ;eȥȦ户;橴ƀgitȯȶȺruent;扡nt;戯ourIntegral;戮ĀfrɌɎ;愂oduct;成nterClockwiseContourIntegral;戳oss;樯cr;쀀𝒞pĀ;Cʄʅ拓ap;才րDJSZacefiosʠʬʰʴʸˋ˗ˡ˦̳ҍĀ;oŹʥtrahd;椑cy;䐂cy;䐅cy;䐏ƀgrsʿ˄ˇger;怡r;憡hv;櫤Āayː˕ron;䄎;䐔lĀ;t˝˞戇a;䎔r;쀀𝔇Āaf˫̧Ācm˰̢riticalȀADGT̖̜̀̆cute;䂴oŴ̋̍;䋙bleAcute;䋝rave;䁠ilde;䋜ond;拄ferentialD;慆Ѱ̽\\0\\0\\0͔͂\\0Ѕf;쀀𝔻ƀ;DE͈͉͍䂨ot;惜qual;扐blèCDLRUVͣͲϏϢϸontourIntegraìȹoɴ\\0\\0ͻ»͉nArrow;懓Āeo·ΤftƀARTΐΖΡrrow;懐ightArrow;懔eåˊngĀLRΫτeftĀARγιrrow;柸ightArrow;柺ightArrow;柹ightĀATϘϞrrow;懒ee;抨pɁϩ\\0\\0ϯrrow;懑ownArrow;懕erticalBar;戥ǹABLRTaВЪаўѿͼrrowƀ;BUНОТ憓ar;椓pArrow;懵reve;䌑eft˒к\\0ц\\0ѐightVector;楐eeVector;楞ectorĀ;Bљњ憽ar;楖ightǔѧ\\0ѱeeVector;楟ectorĀ;BѺѻ懁ar;楗eeĀ;A҆҇护rrow;憧ĀctҒҗr;쀀𝒟rok;䄐ࠀNTacdfglmopqstuxҽӀӄӋӞӢӧӮӵԡԯԶՒ՝ՠեG;䅊H耻Ð䃐cute耻É䃉ƀaiyӒӗӜron;䄚rc耻Ê䃊;䐭ot;䄖r;쀀𝔈rave耻È䃈ement;戈ĀapӺӾcr;䄒tyɓԆ\\0\\0ԒmallSquare;旻erySmallSquare;斫ĀgpԦԪon;䄘f;쀀𝔼silon;䎕uĀaiԼՉlĀ;TՂՃ橵ilde;扂librium;懌Āci՚r;愰m;橳a;䎗ml耻Ë䃋Āipժկsts;戃onentialE;慇ʀcfiosօֈ֍ֲy;䐤r;쀀𝔉lledɓ֗\\0\\0֣mallSquare;旼erySmallSquare;斪Ͱֺ\\0ֿ\\0\\0ׄf;쀀𝔽All;戀riertrf;愱còJTabcdfgorstרׯؒؖ؛؝أ٬ٲcy;䐃耻>䀾mmaĀ;d䎓;䏜reve;䄞ƀeiy؇،ؐdil;䄢rc;䄜;䐓ot;䄠r;쀀𝔊;拙pf;쀀𝔾eater̀EFGLSTصلَٖٛ٦qualĀ;Lؾؿ扥ess;招ullEqual;执reater;檢ess;扷lantEqual;橾ilde;扳cr;쀀𝒢;扫ЀAacfiosuڅڋږڛڞڪھۊRDcy;䐪Āctڐڔek;䋇;䁞irc;䄤r;愌lbertSpace;愋ǰگ\\0ڲf;愍izontalLine;攀Āctۃۅòکrok;䄦mpńېۘownHumðįqual;扏܀EJOacdfgmnostuۺ۾܃܇ܚܞܡܨ݄ݸދޏޕcy;䐕lig;䄲cy;䐁cute耻Í䃍Āiyܓܘrc耻Î䃎;䐘ot;䄰r;愑rave耻Ì䃌ƀ;apܠܯܿĀcgܴܷr;䄪inaryI;慈lieóϝǴ݉\\0ݢĀ;eݍݎ戬Āgrݓݘral;戫section;拂isibleĀCTݬݲomma;恣imes;恢ƀgptݿރވon;䄮f;쀀𝕀a;䎙cr;愐ilde;䄨ǫޚ\\0ޞcy;䐆l耻Ï䃏ʀcfosuެ߂ߐĀiyޱrc;䄴;䐙r;쀀𝔍pf;쀀𝕁ǣ߇\\0ߌr;쀀𝒥rcy;䐈kcy;䐄HJacfosߤߨ߽߬߱ࠂࠈcy;䐥cy;䐌ppa;䎚Āey߶dil;䄶;䐚r;쀀𝔎pf;쀀𝕂cr;쀀𝒦րJTaceflmostࠥࠩࠬࡐࡣসে্ੇcy;䐉耻<䀼ʀcmnpr࠷࠼ࡁࡄࡍute;䄹bda;䎛g;柪lacetrf;愒r;憞ƀaeyࡗࡡron;䄽dil;䄻;䐛Āfsࡨ॰tԀACDFRTUVarࡾࢩࢱࣦ࣠ࣼयज़ΐ४ĀnrࢃgleBracket;柨rowƀ;BR࢙࢚࢞憐ar;懤ightArrow;懆eiling;挈oǵࢷ\\0ࣃbleBracket;柦nǔࣈ\\0࣒eeVector;楡ectorĀ;Bࣛࣜ懃ar;楙loor;挊ightĀAV࣯ࣵrrow;憔ector;楎Āerँगeƀ;AVउऊऐ抣rrow;憤ector;楚iangleƀ;BEतथऩ抲ar;槏qual;抴pƀDTVषूौownVector;楑eeVector;楠ectorĀ;Bॖॗ憿ar;楘ectorĀ;B॥०憼ar;楒ightáΜs̀EFGLSTॾঋকঝঢভqualGreater;拚ullEqual;扦reater;扶ess;檡lantEqual;橽ilde;扲r;쀀𝔏Ā;eঽা拘ftarrow;懚idot;䄿ƀnpwਖਛgȀLRlr৷ਂਐeftĀAR০৬rrow;柵ightArrow;柷ightArrow;柶eftĀarγਊightáοightáϊf;쀀𝕃erĀLRਢਬeftArrow;憙ightArrow;憘ƀchtਾੀੂòࡌ;憰rok;䅁;扪Ѐacefiosuਗ਼અઋp;椅y;䐜Ādl੯iumSpace;恟lintrf;愳r;쀀𝔐nusPlus;戓pf;쀀𝕄cò੶;䎜ҀJacefostuણધભીଔଙඑඞcy;䐊cute;䅃ƀaeyહાron;䅇dil;䅅;䐝ƀgswે૰ativeƀMTV૨ediumSpace;怋hiĀcn૦ëeryThiîtedĀGLଆreaterGreateòٳessLesóੈLine;䀊r;쀀𝔑ȀBnptଢନଷreak;恠BreakingSpace;䂠f;愕ڀ;CDEGHLNPRSTV୕ୖ୪௫ఄ಄ದൡඅ櫬Āoungruent;扢pCap;扭oubleVerticalBar;戦ƀlqxஃஊement;戉ualĀ;Tஒஓ扠ilde;쀀≂̸ists;戄reater;EFGLSTஶஷ扯qual;扱ullEqual;쀀≧̸reater;쀀≫̸ess;批lantEqual;쀀⩾̸ilde;扵umpń௲ownHump;쀀≎̸qual;쀀≏̸eĀfsఊధtTriangleƀ;BEచఛడ拪ar;쀀⧏̸qual;括s̀;EGLSTవశ఼ౄోౘ扮qual;扰reater;扸ess;쀀≪̸lantEqual;쀀⩽̸ilde;扴estedĀGL౨౹reaterGreater;쀀⪢̸essLess;쀀⪡̸recedesƀ;ESಒಓಛ技qual;쀀⪯̸lantEqual;拠ĀeiಫಹverseElement;戌ghtTriangleƀ;BEೋೌ拫ar;쀀⧐̸qual;拭ĀquೝഌuareSuĀbp೨setĀ;Eೳ쀀⊏̸qual;拢ersetĀ;Eഃആ쀀⊐̸qual;拣ƀbcpഓതൎsetĀ;Eഛഞ쀀⊂⃒qual;抈ceedsȀ;ESTലള഻െ抁qual;쀀⪰̸lantEqual;拡ilde;쀀≿̸ersetĀ;E൘൛쀀⊃⃒qual;抉ildeȀ;EFT൮൯൵ൿ扁qual;扄ullEqual;扇ilde;扉erticalBar;戤cr;쀀𝒩ilde耻Ñ䃑;䎝܀Eacdfgmoprstuvලෂෛ෧ขภยา฿ไlig;䅒cute耻Ó䃓Āiyීrc耻Ô䃔;䐞blac;䅐r;쀀𝔒rave耻Ò䃒ƀaei෮ෲcr;䅌ga;䎩cron;䎟pf;쀀𝕆enCurlyĀDQฎบoubleQuote;怜uote;怘;橔Āclวฬr;쀀𝒪ash耻Ø䃘iŬืde耻Õ䃕es;樷ml耻Ö䃖erĀBP๋Āar๐๓r;怾acĀek๚;揞et;掴arenthesis;揜ҀacfhilorsງຊຏຒດຝະrtialD;戂y;䐟r;쀀𝔓i;䎦;䎠usMinus;䂱Āipຢອncareplanåڝf;愙Ȁ;eio຺ູ檻cedesȀ;EST່້扺qual;檯lantEqual;扼ilde;找me;怳Ādpuct;戏ortionĀ;aȥl;戝Āci༁༆r;쀀𝒫;䎨ȀUfos༑༖༛༟OT耻\"䀢r;쀀𝔔pf;愚cr;쀀𝒬BEacefhiorsu༾གྷཇའཱིྦྷྪྭ႖ႩႴႾarr;椐G耻®䂮ƀcnrཎནབute;䅔g;柫rĀ;tཛྷཝ憠l;椖ƀaeyཧཬཱron;䅘dil;䅖;䐠Ā;vླྀཹ愜erseĀEUྂྙĀlq྇ྎement;戋uilibrium;懋pEquilibrium;楯r»ཹo;䎡ghtЀACDFTUVa࿁ဢဨၛႇϘĀnr࿆࿒gleBracket;柩rowƀ;BL憒ar;懥eftArrow;懄eiling;按oǵ\\0စbleBracket;柧nǔည\\0နeeVector;楝ectorĀ;Bဝသ懂ar;楕loor;挋Āerိ၃eƀ;AVဵံြ抢rrow;憦ector;楛iangleƀ;BEၐၑၕ抳ar;槐qual;抵pƀDTVၣၮၸownVector;楏eeVector;楜ectorĀ;Bႂႃ憾ar;楔ectorĀ;B႑႒懀ar;楓Āpuႛ႞f;愝ndImplies;楰ightarrow;懛ĀchႹႼr;愛;憱leDelayed;槴ڀHOacfhimoqstuფჱჷჽᄙᄞᅑᅖᅡᅧᆵᆻᆿĀCcჩხHcy;䐩y;䐨FTcy;䐬cute;䅚ʀ;aeiyᄈᄉᄎᄓᄗ檼ron;䅠dil;䅞rc;䅜;䐡r;쀀𝔖ortȀDLRUᄪᄴᄾᅉownArrow»ОeftArrow»࢚ightArrow»pArrow;憑gma;䎣allCircle;战pf;쀀𝕊ɲᅭ\\0\\0ᅰt;戚areȀ;ISUᅻᅼᆉᆯ斡ntersection;抓uĀbpᆏᆞsetĀ;Eᆗᆘ抏qual;抑ersetĀ;Eᆨᆩ抐qual;抒nion;抔cr;쀀𝒮ar;拆ȀbcmpᇈᇛሉላĀ;sᇍᇎ拐etĀ;Eᇍᇕqual;抆ĀchᇠህeedsȀ;ESTᇭᇮᇴᇿ扻qual;檰lantEqual;扽ilde;承Tháྌ;我ƀ;esሒሓሣ拑rsetĀ;Eሜም抃qual;抇et»ሓրHRSacfhiorsሾቄቕቱቶኟዂወዑORN耻Þ䃞ADE;愢ĀHcቒcy;䐋y;䐦Ābuቚቜ;䀉;䎤ƀaeyብቪቯron;䅤dil;䅢;䐢r;쀀𝔗ĀeiቻDzኀ\\0ኇefore;戴a;䎘ĀcnኘkSpace;쀀 Space;怉ldeȀ;EFTካኬኲኼ戼qual;扃ullEqual;扅ilde;扈pf;쀀𝕋ipleDot;惛Āctዖዛr;쀀𝒯rok;䅦ૡዷጎጚጦ\\0ጬጱ\\0\\0\\0\\0\\0ጸጽ፷ᎅ\\0ᐄᐊᐐĀcrዻጁute耻Ú䃚rĀ;oጇገ憟cir;楉rǣጓ\\0y;䐎ve;䅬Āiyጞጣrc耻Û䃛;䐣blac;䅰r;쀀𝔘rave耻Ù䃙acr;䅪Ādiፁ፩erĀBPፈ፝Āarፍፐr;䁟acĀekፗፙ;揟et;掵arenthesis;揝onĀ;P፰፱拃lus;抎Āgp፻on;䅲f;쀀𝕌ЀADETadps᎕ᎮᎸᏄϨᏒᏗᏳrrowƀ;BDᅐᎠᎤar;椒ownArrow;懅ownArrow;憕quilibrium;楮eeĀ;AᏋᏌ报rrow;憥ownáϳerĀLRᏞᏨeftArrow;憖ightArrow;憗iĀ;lᏹᏺ䏒on;䎥ing;䅮cr;쀀𝒰ilde;䅨ml耻Ü䃜ҀDbcdefosvᐧᐬᐰᐳᐾᒅᒊᒐᒖash;披ar;櫫y;䐒ashĀ;lᐻᐼ抩;櫦Āerᑃᑅ;拁ƀbtyᑌᑐᑺar;怖Ā;iᑏᑕcalȀBLSTᑡᑥᑪᑴar;戣ine;䁼eparator;杘ilde;所ThinSpace;怊r;쀀𝔙pf;쀀𝕍cr;쀀𝒱dash;抪ʀcefosᒧᒬᒱᒶᒼirc;䅴dge;拀r;쀀𝔚pf;쀀𝕎cr;쀀𝒲Ȁfiosᓋᓐᓒᓘr;쀀𝔛;䎞pf;쀀𝕏cr;쀀𝒳ҀAIUacfosuᓱᓵᓹᓽᔄᔏᔔᔚᔠcy;䐯cy;䐇cy;䐮cute耻Ý䃝Āiyᔉᔍrc;䅶;䐫r;쀀𝔜pf;쀀𝕐cr;쀀𝒴ml;䅸ЀHacdefosᔵᔹᔿᕋᕏᕝᕠᕤcy;䐖cute;䅹Āayᕄᕉron;䅽;䐗ot;䅻Dzᕔ\\0ᕛoWidtèa;䎖r;愨pf;愤cr;쀀𝒵ᖃᖊᖐ\\0ᖰᖶᖿ\\0\\0\\0\\0ᗆᗛᗫᙟ᙭\\0ᚕ᚛ᚲᚹ\\0ᚾcute耻á䃡reve;䄃̀;Ediuyᖜᖝᖡᖣᖨᖭ戾;쀀∾̳;房rc耻â䃢te肻´̆;䐰lig耻æ䃦Ā;r²ᖺ;쀀𝔞rave耻à䃠ĀepᗊᗖĀfpᗏᗔsym;愵èᗓha;䎱ĀapᗟcĀclᗤᗧr;䄁g;樿ɤᗰ\\0\\0ᘊʀ;adsvᗺᗻᗿᘁᘇ戧nd;橕;橜lope;橘;橚;elmrszᘘᘙᘛᘞᘿᙏᙙ戠;榤e»ᘙsdĀ;aᘥᘦ戡ѡᘰᘲᘴᘶᘸᘺᘼᘾ;榨;榩;榪;榫;榬;榭;榮;榯tĀ;vᙅᙆ戟bĀ;dᙌᙍ抾;榝Āptᙔᙗh;戢»¹arr;捼Āgpᙣᙧon;䄅f;쀀𝕒;Eaeiopᙻᙽᚂᚄᚇᚊ;橰cir;橯;扊d;手s;䀧roxĀ;eᚒñᚃing耻å䃥ƀctyᚡᚦᚨr;쀀𝒶;䀪mpĀ;eᚯñʈilde耻ã䃣ml耻ä䃤Āciᛂᛈoninôɲnt;樑ࠀNabcdefiklnoprsu᛭ᛱᜰᝃᝈ០៦ᠹᡐᜍ᥈ᥰot;櫭ĀcrᛶkȀcepsᜀᜅᜍᜓong;扌psilon;䏶rime;怵imĀ;e戽q;拍Ŷᜢᜦee;抽edĀ;gᜬᜭ挅e»ᜭrkĀ;tbrk;掶Āoyᜁᝁ;䐱quo;怞ʀcmprtᝓᝡᝤᝨausĀ;eĊĉptyv;榰séᜌnoõēƀahwᝯᝳ;䎲;愶een;扬r;쀀𝔟gcostuvwឍឝឳេ៕៛ƀaiuបពរðݠrc;旯p»፱ƀdptឤឨឭot;樀lus;樁imes;樂ɱឹ\\0\\0ើcup;樆ar;昅riangleĀdu៍្own;施p;斳plus;樄eåᑄåᒭarow;植ƀakoᠦᠵĀcn៲ᠣkƀlst֫᠂ozenge;槫riangleȀ;dlr᠒᠓᠘斴own;斾eft;旂ight;斸k;搣Ʊᠫ\\0ᠳƲᠯ\\0ᠱ;斒;斑4;斓ck;斈ĀeoᠾᡍĀ;qᡃᡆ쀀=⃥uiv;쀀≡⃥t;挐Ȁptwxᡙᡞᡧᡬf;쀀𝕓Ā;tᏋᡣom»Ꮜtie;拈DHUVbdhmptuvᢅᢖᢪᢻᣗᣛᣬᤅᤊᤐᤡȀLRlrᢎᢐᢒᢔ;敗;敔;敖;敓ʀ;DUduᢡᢢᢤᢦᢨ敐;敦;敩;敤;敧ȀLRlrᢳᢵᢷᢹ;敝;敚;敜;教;HLRhlrᣊᣋᣍᣏᣑᣓᣕ救;敬;散;敠;敫;敢;敟ox;槉ȀLRlrᣤᣦᣨᣪ;敕;敒;攐;攌ʀ;DUduڽ;敥;敨;攬;攴inus;抟lus;択imes;抠ȀLRlrᤙᤛᤝ;敛;敘;攘;攔;HLRhlrᤰᤱᤳᤵᤷ᤻᤹攂;敪;敡;敞;攼;攤;攜Āevģbar耻¦䂦Ȁceioᥑᥖᥚᥠr;쀀𝒷mi;恏mĀ;elƀ;bhᥨᥩᥫ䁜;槅sub;柈ŬᥴlĀ;e怢t»pƀ;Eeįᦅᦇ;檮Ā;qۜۛೡᦧ\\0᧨ᨑᨕᨲ\\0ᨷᩐ\\0\\0᪴\\0\\0᫁\\0\\0ᬡᬮ᭒\\0᯽\\0ᰌƀcprᦲute;䄇̀;abcdsᦿᧀᧄ᧕᧙戩nd;橄rcup;橉Āau᧒p;橋p;橇ot;橀;쀀∩︀Āeo᧢᧥t;恁îړȀaeiu᧰᧻ᨁᨅǰ᧵\\0᧸s;橍on;䄍dil耻ç䃧rc;䄉psĀ;sᨌᨍ橌m;橐ot;䄋ƀdmnᨛᨠᨦil肻¸ƭptyv;榲t脀¢;eᨭᨮ䂢räƲr;쀀𝔠ƀceiᨽᩀᩍy;䑇ckĀ;mᩇᩈ朓ark»ᩈ;䏇r;Ecefms᩠ᩢᩫ᪤᪪旋;槃ƀ;elᩩᩪᩭ䋆q;扗eɡᩴ\\0\\0᪈rrowĀlr᩼᪁eft;憺ight;憻ʀRSacd᪒᪔᪖»ཇ;擈st;抛irc;抚ash;抝nint;樐id;櫯cir;槂ubsĀ;u᪻᪼晣it»᪼ˬ᫇\\0ᬊonĀ;eᫍᫎ䀺Ā;qÇÆɭ\\0\\0aĀ;t䀬;䁀ƀ;fl戁îᅠeĀmxent»eóɍǧ\\0ᬇĀ;dኻᬂot;橭nôɆƀfryᬐᬔᬗ;쀀𝕔oäɔ脀©;sŕᬝr;愗Āaoᬥᬩrr;憵ss;朗Ācuᬲᬷr;쀀𝒸Ābpᬼ᭄Ā;eᭁᭂ櫏;櫑Ā;eᭉᭊ櫐;櫒dot;拯delprvw᭠᭬᭷ᮂᮬᯔarrĀlr᭨᭪;椸;椵ɰ᭲\\0\\0᭵r;拞c;拟arrĀ;pᮀ憶;椽̀;bcdosᮏᮐᮖᮡᮥᮨ截rcap;橈Āauᮛᮞp;橆p;橊ot;抍r;橅;쀀∪︀Ȁalrv᮵ᮿᯞᯣrrĀ;mᮼᮽ憷;椼yƀevwᯇᯔᯘqɰᯎ\\0\\0ᯒreã᭳uã᭵ee;拎edge;拏en耻¤䂤earrowĀlrᯮ᯳eft»ᮀight»ᮽeäᯝĀciᰁᰇoninôǷnt;戱lcty;挭ঀAHabcdefhijlorstuwz᰻᰿ᱝᱩᱵᲞᲬᲷᴍᵻᶑᶫᶻ᷆᷍ròar;楥Ȁglrs᱈ᱍ᱒᱔ger;怠eth;愸òᄳhĀ;vᱚᱛ怐»ऊūᱡᱧarow;椏aã̕Āayᱮᱳron;䄏;䐴ƀ;ao̲ᱼᲄĀgrʿᲁr;懊tseq;橷ƀglmᲑᲔᲘ耻°䂰ta;䎴ptyv;榱ĀirᲣᲨsht;楿;쀀𝔡arĀlrᲳᲵ»ࣜ»သʀaegsv᳂᳖᳜᳠mƀ;oș᳔ndĀ;ș᳑uit;晦amma;䏝in;拲ƀ;io᳧᳨᳸䃷de脀÷;o᳧ᳰntimes;拇nø᳷cy;䑒cɯᴆ\\0\\0ᴊrn;挞op;挍ʀlptuwᴘᴝᴢᵉᵕlar;䀤f;쀀𝕕ʀ;emps̋ᴭᴷᴽᵂqĀ;d͒ᴳot;扑inus;戸lus;戔quare;抡blebarwedgåúnƀadhᄮᵝᵧownarrowóᲃarpoonĀlrᵲᵶefôᲴighôᲶŢᵿᶅkaro÷གɯᶊ\\0\\0ᶎrn;挟op;挌ƀcotᶘᶣᶦĀryᶝᶡ;쀀𝒹;䑕l;槶rok;䄑Ādrᶰᶴot;拱iĀ;fᶺ᠖斿Āah᷀᷃ròЩaòྦangle;榦Āci᷒ᷕy;䑟grarr;柿ऀDacdefglmnopqrstuxḁḉḙḸոḼṉṡṾấắẽỡἪἷὄĀDoḆᴴoôĀcsḎḔute耻é䃩ter;橮ȀaioyḢḧḱḶron;䄛rĀ;cḭḮ扖耻ê䃪lon;払;䑍ot;䄗ĀDrṁṅot;扒;쀀𝔢ƀ;rsṐṑṗ檚ave耻è䃨Ā;dṜṝ檖ot;檘Ȁ;ilsṪṫṲṴ檙nters;揧;愓Ā;dṹṺ檕ot;檗ƀapsẅẉẗcr;䄓tyƀ;svẒẓẕ戅et»ẓpĀ1;ẝẤijạả;怄;怅怃ĀgsẪẬ;䅋p;怂ĀgpẴẸon;䄙f;쀀𝕖ƀalsỄỎỒrĀ;sỊị拕l;槣us;橱iƀ;lvỚớở䎵on»ớ;䏵ȀcsuvỪỳἋἣĀioữḱrc»Ḯɩỹ\\0\\0ỻíՈantĀglἂἆtr»ṝess»ṺƀaeiἒἚls;䀽st;扟vĀ;DȵἠD;橸parsl;槥ĀDaἯἳot;打rr;楱ƀcdiἾὁỸr;愯oô͒ĀahὉὋ;䎷耻ð䃰Āmrὓὗl耻ë䃫o;悬ƀcipὡὤὧl;䀡sôծĀeoὬὴctatioîՙnentialåչৡᾒ\\0ᾞ\\0ᾡᾧ\\0\\0ῆῌ\\0ΐ\\0ῦῪ \\0 ⁚llingdotseñṄy;䑄male;晀ƀilrᾭᾳ῁lig;耀ffiɩᾹ\\0\\0᾽g;耀ffig;耀ffl;쀀𝔣lig;耀filig;쀀fjƀaltῙῡt;晭ig;耀flns;斱of;䆒ǰ΅\\0ῳf;쀀𝕗ĀakֿῷĀ;vῼ´拔;櫙artint;樍Āao⁕Ācs‑⁒ႉ‸⁅⁈\\0⁐β•‥‧\\0耻½䂽;慓耻¼䂼;慕;慙;慛Ƴ‴\\0‶;慔;慖ʴ‾⁁\\0\\0⁃耻¾䂾;慗;慜5;慘ƶ⁌\\0⁎;慚;慝8;慞l;恄wn;挢cr;쀀𝒻ࢀEabcdefgijlnorstv₂₉₥₰₴⃰℃ℒℸ̗ℾ⅒↞Ā;lٍ₇;檌ƀcmpₐₕute;䇵maĀ;dₜ᳚䎳;檆reve;䄟Āiy₪₮rc;䄝;䐳ot;䄡Ȁ;lqsؾق₽ƀ;qsؾٌlanô٥Ȁ;cdl٥⃒⃥⃕c;檩otĀ;o⃜⃝檀Ā;l⃢⃣檂;檄Ā;e⃪⃭쀀⋛︀s;檔r;쀀𝔤Ā;gٳ؛mel;愷cy;䑓Ȁ;Eajٚℌℎℐ;檒;檥;檤ȀEaesℛℝ℩ℴ;扩pĀ;p℣ℤ檊rox»ℤĀ;q℮ℯ檈Ā;q℮ℛim;拧pf;쀀𝕘Āci⅃ⅆr;愊mƀ;el٫ⅎ⅐;檎;檐茀>;cdlqrⅠⅪⅮⅳⅹĀciⅥⅧ;檧r;橺ot;拗Par;榕uest;橼ʀadelsↄⅪ←ٖ↛ǰ↉\\0proør;楸qĀlqؿ↖lesó₈ií٫Āen↣↭rtneqq;쀀≩︀Å↪ԀAabcefkosy⇄⇇⇱⇵⇺∘∝∯≨≽ròΠȀilmr⇐⇔⇗⇛rsðᒄf»․ilôکĀdr⇠⇤cy;䑊ƀ;cwࣴ⇫⇯ir;楈;憭ar;意irc;䄥ƀalr∁∎∓rtsĀ;u∉∊晥it»∊lip;怦con;抹r;쀀𝔥sĀew∣∩arow;椥arow;椦ʀamopr∺∾≃≞≣rr;懿tht;戻kĀlr≉≓eftarrow;憩ightarrow;憪f;쀀𝕙bar;怕ƀclt≯≴≸r;쀀𝒽asè⇴rok;䄧Ābp⊂⊇ull;恃hen»ᱛૡ⊣\\0⊪\\0⊸⋅⋎\\0⋕⋳\\0\\0⋸⌢⍧⍢⍿\\0⎆⎪⎴cute耻í䃭ƀ;iyݱ⊰⊵rc耻î䃮;䐸Ācx⊼⊿y;䐵cl耻¡䂡ĀfrΟ⋉;쀀𝔦rave耻ì䃬Ȁ;inoܾ⋝⋩⋮Āin⋢⋦nt;樌t;戭fin;槜ta;愩lig;䄳ƀaop⋾⌚⌝ƀcgt⌅⌈⌗r;䄫ƀelpܟ⌏⌓inåގarôܠh;䄱f;抷ed;䆵ʀ;cfotӴ⌬⌱⌽⍁are;愅inĀ;t⌸⌹戞ie;槝doô⌙ʀ;celpݗ⍌⍐⍛⍡al;抺Āgr⍕⍙eróᕣã⍍arhk;樗rod;樼Ȁcgpt⍯⍲⍶⍻y;䑑on;䄯f;쀀𝕚a;䎹uest耻¿䂿Āci⎊⎏r;쀀𝒾nʀ;EdsvӴ⎛⎝⎡ӳ;拹ot;拵Ā;v⎦⎧拴;拳Ā;iݷ⎮lde;䄩ǫ⎸\\0⎼cy;䑖l耻ï䃯̀cfmosu⏌⏗⏜⏡⏧⏵Āiy⏑⏕rc;䄵;䐹r;쀀𝔧ath;䈷pf;쀀𝕛ǣ⏬\\0⏱r;쀀𝒿rcy;䑘kcy;䑔Ѐacfghjos␋␖␢ppaĀ;v␓␔䎺;䏰Āey␛␠dil;䄷;䐺r;쀀𝔨reen;䄸cy;䑅cy;䑜pf;쀀𝕜cr;쀀𝓀ABEHabcdefghjlmnoprstuv⑰⒁⒆⒍⒑┎┽╚▀♎♞♥♹♽⚚⚲⛘❝❨➋⟀⠁⠒ƀart⑷⑺⑼ròòΕail;椛arr;椎Ā;gঔ⒋;檋ar;楢ॣ⒥\\0⒪\\0⒱\\0\\0\\0\\0\\0⒵Ⓔ\\0ⓆⓈⓍ\\0⓹ute;䄺mptyv;榴raîࡌbda;䎻gƀ;dlࢎⓁⓃ;榑åࢎ;檅uo耻«䂫rЀ;bfhlpst࢙ⓞⓦⓩ⓫⓮⓱⓵Ā;f࢝ⓣs;椟s;椝ë≒p;憫l;椹im;楳l;憢ƀ;ae⓿─┄檫il;椙Ā;s┉┊檭;쀀⪭︀ƀabr┕┙┝rr;椌rk;杲Āak┢┬cĀek┨┪;䁻;䁛Āes┱┳;榋lĀdu┹┻;榏;榍Ȁaeuy╆╋╖╘ron;䄾Ādi═╔il;䄼ìࢰâ┩;䐻Ȁcqrs╣╦╭╽a;椶uoĀ;rนᝆĀdu╲╷har;楧shar;楋h;憲ʀ;fgqs▋▌উ◳◿扤tʀahlrt▘▤▷◂◨rrowĀ;t࢙□aé⓶arpoonĀdu▯▴own»њp»०eftarrows;懇ightƀahs◍◖◞rrowĀ;sࣴࢧarpoonóquigarro÷⇰hreetimes;拋ƀ;qs▋ও◺lanôবʀ;cdgsব☊☍☝☨c;檨otĀ;o☔☕橿Ā;r☚☛檁;檃Ā;e☢☥쀀⋚︀s;檓ʀadegs☳☹☽♉♋pproøⓆot;拖qĀgq♃♅ôউgtò⒌ôছiíলƀilr♕࣡♚sht;楼;쀀𝔩Ā;Eজ♣;檑š♩♶rĀdu▲♮Ā;l॥♳;楪lk;斄cy;䑙ʀ;achtੈ⚈⚋⚑⚖rò◁orneòᴈard;楫ri;旺Āio⚟⚤dot;䅀ustĀ;a⚬⚭掰che»⚭ȀEaes⚻⚽⛉⛔;扨pĀ;p⛃⛄檉rox»⛄Ā;q⛎⛏檇Ā;q⛎⚻im;拦Ѐabnoptwz⛩⛴⛷✚✯❁❇❐Ānr⛮⛱g;柬r;懽rëࣁgƀlmr⛿✍✔eftĀar০✇ightá৲apsto;柼ightá৽parrowĀlr✥✩efô⓭ight;憬ƀafl✶✹✽r;榅;쀀𝕝us;樭imes;樴š❋❏st;戗áፎƀ;ef❗❘᠀旊nge»❘arĀ;l❤❥䀨t;榓ʀachmt❳❶❼➅➇ròࢨorneòᶌarĀ;d➃;業;怎ri;抿̀achiqt➘➝ੀ➢➮➻quo;怹r;쀀𝓁mƀ;egল➪➬;檍;檏Ābu┪➳oĀ;rฟ➹;怚rok;䅂萀<;cdhilqrࠫ⟒☹⟜⟠⟥⟪⟰Āci⟗⟙;檦r;橹reå◲mes;拉arr;楶uest;橻ĀPi⟵⟹ar;榖ƀ;ef⠀भ旃rĀdu⠇⠍shar;楊har;楦Āen⠗⠡rtneqq;쀀≨︀Å⠞܀Dacdefhilnopsu⡀⡅⢂⢎⢓⢠⢥⢨⣚⣢⣤ઃ⣳⤂Dot;戺Ȁclpr⡎⡒⡣⡽r耻¯䂯Āet⡗⡙;時Ā;e⡞⡟朠se»⡟Ā;sျ⡨toȀ;dluျ⡳⡷⡻owîҌefôएðᏑker;斮Āoy⢇⢌mma;権;䐼ash;怔asuredangle»ᘦr;쀀𝔪o;愧ƀcdn⢯⢴⣉ro耻µ䂵Ȁ;acdᑤ⢽⣀⣄sôᚧir;櫰ot肻·Ƶusƀ;bd⣒ᤃ⣓戒Ā;uᴼ⣘;横ţ⣞⣡p;櫛ò−ðઁĀdp⣩⣮els;抧f;쀀𝕞Āct⣸⣽r;쀀𝓂pos»ᖝƀ;lm⤉⤊⤍䎼timap;抸ఀGLRVabcdefghijlmoprstuvw⥂⥓⥾⦉⦘⧚⧩⨕⨚⩘⩝⪃⪕⪤⪨⬄⬇⭄⭿⮮ⰴⱧⱼ⳩Āgt⥇⥋;쀀⋙̸Ā;v⥐쀀≫⃒ƀelt⥚⥲⥶ftĀar⥡⥧rrow;懍ightarrow;懎;쀀⋘̸Ā;v⥻ే쀀≪⃒ightarrow;懏ĀDd⦎⦓ash;抯ash;抮ʀbcnpt⦣⦧⦬⦱⧌la»˞ute;䅄g;쀀∠⃒ʀ;Eiop⦼⧀⧅⧈;쀀⩰̸d;쀀≋̸s;䅉roøurĀ;a⧓⧔普lĀ;s⧓ସdz⧟\\0⧣p肻 ଷmpĀ;e௹ఀʀaeouy⧴⧾⨃⨐⨓ǰ⧹\\0⧻;橃on;䅈dil;䅆ngĀ;dൾ⨊ot;쀀⩭̸p;橂;䐽ash;怓;Aadqsxஒ⨩⨭⨻⩁⩅⩐rr;懗rĀhr⨳⨶k;椤Ā;oᏲᏰot;쀀≐̸uiöୣĀei⩊⩎ar;椨íistĀ;sடr;쀀𝔫ȀEest⩦⩹⩼ƀ;qs⩭ƀ;qs⩴lanôií௪Ā;rஶ⪁»ஷƀAap⪊⪍⪑rò⥱rr;憮ar;櫲ƀ;svྍ⪜ྌĀ;d⪡⪢拼;拺cy;䑚AEadest⪷⪺⪾⫂⫅⫶⫹rò⥦;쀀≦̸rr;憚r;急Ȁ;fqs⫎⫣⫯tĀar⫔⫙rro÷⫁ightarro÷⪐ƀ;qs⪺⫪lanôౕĀ;sౕ⫴»శiíౝĀ;rవ⫾iĀ;eచథiäඐĀpt⬌⬑f;쀀𝕟膀¬;in⬙⬚⬶䂬nȀ;Edvஉ⬤⬨⬮;쀀⋹̸ot;쀀⋵̸ǡஉ⬳⬵;拷;拶iĀ;vಸ⬼ǡಸ⭁⭃;拾;拽ƀaor⭋⭣⭩rȀ;ast⭕⭚⭟lleìl;쀀⫽⃥;쀀∂̸lint;樔ƀ;ceಒ⭰⭳uåಥĀ;cಘ⭸Ā;eಒ⭽ñಘȀAait⮈⮋⮝⮧rò⦈rrƀ;cw⮔⮕⮙憛;쀀⤳̸;쀀↝̸ghtarrow»⮕riĀ;eೋೖchimpqu⮽⯍⯙⬄⯤⯯Ȁ;cerല⯆ഷ⯉uå;쀀𝓃ortɭ⬅\\0\\0⯖ará⭖mĀ;e൮⯟Ā;q൴൳suĀbp⯫⯭ååഋƀbcp⯶ⰑⰙȀ;Ees⯿ⰀഢⰄ抄;쀀⫅̸etĀ;eഛⰋqĀ;qണⰀcĀ;eലⰗñസȀ;EesⰢⰣൟⰧ抅;쀀⫆̸etĀ;e൘ⰮqĀ;qൠⰣȀgilrⰽⰿⱅⱇìௗlde耻ñ䃱çృiangleĀlrⱒⱜeftĀ;eచⱚñదightĀ;eೋⱥñĀ;mⱬⱭ䎽ƀ;esⱴⱵⱹ䀣ro;愖p;怇ҀDHadgilrsⲏⲔⲙⲞⲣⲰⲶⳓⳣash;抭arr;椄p;쀀≍⃒ash;抬ĀetⲨⲬ;쀀≥⃒;쀀>⃒nfin;槞ƀAetⲽⳁⳅrr;椂;쀀≤⃒Ā;rⳊⳍ쀀<⃒ie;쀀⊴⃒ĀAtⳘⳜrr;椃rie;쀀⊵⃒im;쀀∼⃒ƀAan⳰ⴂrr;懖rĀhr⳺⳽k;椣Ā;oᏧᏥear;椧ቓ᪕\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0\\0ⴭ\\0ⴸⵈⵠⵥⶄᬇ\\0\\0ⶍⶫ\\0ⷈⷎ\\0ⷜ⸙⸫⸾⹃Ācsⴱ᪗ute耻ó䃳ĀiyⴼⵅrĀ;cⵂ耻ô䃴;䐾ʀabios᪠ⵒⵗLjⵚlac;䅑v;樸old;榼lig;䅓Ācrir;榿;쀀𝔬ͯ\\0\\0\\0ⶂn;䋛ave耻ò䃲;槁Ābmⶈ෴ar;榵Ȁacitⶕⶥⶨrò᪀Āirⶠr;榾oss;榻nå๒;槀ƀaeiⶱⶵⶹcr;䅍ga;䏉ƀcdnⷀⷅǍron;䎿;榶pf;쀀𝕠ƀaelⷔǒr;榷rp;榹;adiosvⷪⷫⷮ⸈⸍⸐⸖戨rò᪆Ȁ;efmⷷⷸ⸂⸅橝rĀ;oⷾⷿ愴f»ⷿ耻ª䂪耻º䂺gof;抶r;橖lope;橗;橛ƀclo⸟⸡⸧ò⸁ash耻ø䃸l;折iŬⸯ⸴de耻õ䃵esĀ;aǛ⸺s;樶ml耻ö䃶bar;挽ૡ\\0\\0⺀⺝\\0⺢⺹\\0\\0⻋ຜ\\0⼓\\0\\0⼫⾼\\0⿈rȀ;astЃ脀¶;l䂶leìЃɩ\\0\\0m;櫳;櫽y;䐿rʀcimpt⺋⺏⺓ᡥ⺗nt;䀥od;䀮il;怰enk;怱r;쀀𝔭ƀimo⺨⺰⺴Ā;v⺭⺮䏆;䏕maô੶ne;明ƀ;tv⺿⻀⻈䏀chfork»´;䏖Āau⻏⻟nĀck⻕⻝kĀ;h⇴⻛;愎ö⇴sҀ;abcdemst⻳ᤈ⼄⼆⼊⼎䀫cir;樣ir;樢Āouᵀ⼂;樥;橲n肻±ຝim;樦wo;樧ƀipu⼙⼠⼥ntint;樕f;쀀𝕡nd耻£䂣Ԁ;Eaceinosu່⼿⽁⽄⽇⾁⾉⾒⽾⾶;檳p;檷uå໙Ā;c໎⽌̀;acens່⽙⽟⽦⽨⽾pproø⽃urlyeñ໙ñ໎ƀaes⽯⽶⽺pprox;檹qq;檵im;拨iíໟmeĀ;s⾈ຮ怲ƀEas⽸⾐⽺ð⽵ƀdfp⾙⾯ƀals⾠⾥⾪lar;挮ine;挒urf;挓Ā;t⾴ïrel;抰Āci⿀⿅r;쀀𝓅;䏈ncsp;怈̀fiopsu⋢⿱r;쀀𝔮pf;쀀𝕢rime;恗cr;쀀𝓆ƀaeo⿸〉〓tĀei々rnionóڰnt;樖stĀ;e【】䀿ñἙô༔ABHabcdefhilmnoprstuxけさすムㄎㄫㅇㅢㅲㆎ㈆㈕㈤㈩㉘㉮㉲㊐㊰㊷ƀartぇおがròႳòϝail;検aròᱥar;楤cdenqrtとふへみわゔヌĀeuねぱ;쀀∽̱te;䅕iãᅮmptyv;榳gȀ;del࿑らるろ;榒;榥å࿑uo耻»䂻rր;abcfhlpstwガクシスゼゾダッデナp;極Ā;fゴs;椠;椳s;椞ë≝ð✮l;楅im;楴l;憣;憝Āaiパフil;椚oĀ;nホボ戶aló༞ƀabrョリヮrò៥rk;杳ĀakンヽcĀekヹ・;䁽;䁝Āes;榌lĀduㄊㄌ;榎;榐Ȁaeuyㄗㄜㄧㄩron;䅙Ādiㄡㄥil;䅗ìâヺ;䑀Ȁclqsㄴㄷㄽㅄa;椷dhar;楩uoĀ;rȎȍh;憳ƀacgㅎㅟངlȀ;ipsླྀㅘㅛႜnåႻarôྩt;断ƀilrㅩဣㅮsht;楽;쀀𝔯ĀaoㅷㆆrĀduㅽㅿ»ѻĀ;l႑ㆄ;楬Ā;vㆋㆌ䏁;䏱ƀgns㆕ㇹㇼht̀ahlrstㆤㆰ㇂㇘rrowĀ;tㆭaéトarpoonĀduㆻㆿowîㅾp»႒eftĀah㇊㇐rrowóarpoonóՑightarrows;應quigarro÷ニhreetimes;拌g;䋚ingdotseñἲƀahm㈍㈐㈓ròaòՑ;怏oustĀ;a㈞掱che»mid;櫮Ȁabpt㈲㈽㉀㉒Ānr㈷㈺g;柭r;懾rëဃƀafl㉇㉊㉎r;榆;쀀𝕣us;樮imes;樵Āap㉝㉧rĀ;g㉣㉤䀩t;榔olint;樒arò㇣Ȁachq㉻㊀Ⴜ㊅quo;怺r;쀀𝓇Ābu・㊊oĀ;rȔȓƀhir㊗㊛㊠reåㇸmes;拊iȀ;efl㊪ၙᠡ㊫方tri;槎luhar;楨;愞ൡ㋕㋛㋟㌬㌸㍱\\0㍺㎤\\0\\0㏬㏰\\0㐨㑈㑚㒭㒱㓊㓱\\0㘖\\0\\0㘳cute;䅛quï➺Ԁ;Eaceinpsyᇭ㋳㋵㋿㌂㌋㌏㌟㌦㌩;檴ǰ㋺\\0㋼;檸on;䅡uåᇾĀ;dᇳ㌇il;䅟rc;䅝ƀEas㌖㌘㌛;檶p;檺im;择olint;樓iíሄ;䑁otƀ;be㌴ᵇ㌵担;橦Aacmstx㍆㍊㍗㍛㍞㍣㍭rr;懘rĀhr㍐㍒ë∨Ā;oਸ਼t耻§䂧i;䀻war;椩mĀin㍩ðnuóñt;朶rĀ;o㍶⁕쀀𝔰Ȁacoy㎂㎆㎑㎠rp;景Āhy㎋㎏cy;䑉;䑈rtɭ㎙\\0\\0㎜iäᑤaraì耻䂭Āgm㎨㎴maƀ;fv㎱㎲㎲䏃;䏂Ѐ;deglnprካ㏅㏉㏎㏖㏞㏡㏦ot;橪Ā;qኰĀ;E㏓㏔檞;檠Ā;E㏛㏜檝;檟e;扆lus;樤arr;楲aròᄽȀaeit㏸㐈㐏㐗Āls㏽㐄lsetmé㍪hp;樳parsl;槤Ādlᑣ㐔e;挣Ā;e㐜㐝檪Ā;s㐢㐣檬;쀀⪬︀ƀflp㐮㐳㑂tcy;䑌Ā;b㐸㐹䀯Ā;a㐾㐿槄r;挿f;쀀𝕤aĀdr㑍ЂesĀ;u㑔㑕晠it»㑕ƀcsu㑠㑹㒟Āau㑥㑯pĀ;sᆈ㑫;쀀⊓︀pĀ;sᆴ㑵;쀀⊔︀uĀbp㑿㒏ƀ;esᆗᆜ㒆etĀ;eᆗ㒍ñᆝƀ;esᆨᆭ㒖etĀ;eᆨ㒝ñᆮƀ;afᅻ㒦ְrť㒫ֱ»ᅼaròᅈȀcemt㒹㒾㓂㓅r;쀀𝓈tmîñiì㐕aræᆾĀar㓎㓕rĀ;f㓔ឿ昆Āan㓚㓭ightĀep㓣㓪psiloîỠhé⺯s»⡒ʀbcmnp㓻㕞ሉ㖋㖎Ҁ;Edemnprs㔎㔏㔑㔕㔞㔣㔬㔱㔶抂;櫅ot;檽Ā;dᇚ㔚ot;櫃ult;櫁ĀEe㔨㔪;櫋;把lus;檿arr;楹ƀeiu㔽㕒㕕tƀ;en㔎㕅㕋qĀ;qᇚ㔏eqĀ;q㔫㔨m;櫇Ābp㕚㕜;櫕;櫓c̀;acensᇭ㕬㕲㕹㕻㌦pproø㋺urlyeñᇾñᇳƀaes㖂㖈㌛pproø㌚qñ㌗g;晪ڀ123;Edehlmnps㖩㖬㖯ሜ㖲㖴㗀㗉㗕㗚㗟㗨㗭耻¹䂹耻²䂲耻³䂳;櫆Āos㖹㖼t;檾ub;櫘Ā;dሢ㗅ot;櫄sĀou㗏㗒l;柉b;櫗arr;楻ult;櫂ĀEe㗤㗦;櫌;抋lus;櫀ƀeiu㗴㘉㘌tƀ;enሜ㗼㘂qĀ;qሢ㖲eqĀ;q㗧㗤m;櫈Ābp㘑㘓;櫔;櫖ƀAan㘜㘠㘭rr;懙rĀhr㘦㘨ë∮Ā;oਫwar;椪lig耻ß䃟㙑㙝㙠ዎ㙳㙹\\0㙾㛂\\0\\0\\0\\0\\0㛛㜃\\0㜉㝬\\0\\0\\0㞇ɲ㙖\\0\\0㙛get;挖;䏄rëƀaey㙦㙫㙰ron;䅥dil;䅣;䑂lrec;挕r;쀀𝔱Ȁeiko㚆㚝㚵㚼Dz㚋\\0㚑eĀ4fኄኁaƀ;sv㚘㚙㚛䎸ym;䏑Ācn㚢㚲kĀas㚨㚮pproøim»ኬsðኞĀas㚺㚮ðrn耻þ䃾Ǭ̟㛆⋧es膀×;bd㛏㛐㛘䃗Ā;aᤏ㛕r;樱;樰ƀeps㛡㛣㜀á⩍Ȁ;bcf҆㛬㛰㛴ot;挶ir;櫱Ā;o㛹㛼쀀𝕥rk;櫚á㍢rime;怴ƀaip㜏㜒㝤dåቈadempst㜡㝍㝀㝑㝗㝜㝟ngleʀ;dlqr㜰㜱㜶㝀㝂斵own»ᶻeftĀ;e⠀㜾ñम;扜ightĀ;e㊪㝋ñၚot;旬inus;樺lus;樹b;槍ime;樻ezium;揢ƀcht㝲㝽㞁Āry㝷㝻;쀀𝓉;䑆cy;䑛rok;䅧Āio㞋㞎xôheadĀlr㞗㞠eftarro÷ࡏightarrow»ཝऀAHabcdfghlmoprstuw㟐㟓㟗㟤㟰㟼㠎㠜㠣㠴㡑㡝㡫㢩㣌㣒㣪㣶ròϭar;楣Ācr㟜㟢ute耻ú䃺òᅐrǣ㟪\\0㟭y;䑞ve;䅭Āiy㟵㟺rc耻û䃻;䑃ƀabh㠃㠆㠋ròᎭlac;䅱aòᏃĀir㠓㠘sht;楾;쀀𝔲rave耻ù䃹š㠧㠱rĀlr㠬㠮»ॗ»ႃlk;斀Āct㠹㡍ɯ㠿\\0\\0㡊rnĀ;e㡅㡆挜r»㡆op;挏ri;旸Āal㡖㡚cr;䅫肻¨͉Āgp㡢㡦on;䅳f;쀀𝕦̀adhlsuᅋ㡸㡽፲㢑㢠ownáᎳarpoonĀlr㢈㢌efô㠭ighô㠯iƀ;hl㢙㢚㢜䏅»ᏺon»㢚parrows;懈ƀcit㢰㣄㣈ɯ㢶\\0\\0㣁rnĀ;e㢼㢽挝r»㢽op;挎ng;䅯ri;旹cr;쀀𝓊ƀdir㣙㣝㣢ot;拰lde;䅩iĀ;f㜰㣨»᠓Āam㣯㣲rò㢨l耻ü䃼angle;榧ހABDacdeflnoprsz㤜㤟㤩㤭㦵㦸㦽㧟㧤㧨㧳㧹㧽㨁㨠ròϷarĀ;v㤦㤧櫨;櫩asèϡĀnr㤲㤷grt;榜eknprst㓣㥆㥋㥒㥝㥤㦖appá␕othinçẖƀhir㓫⻈㥙opô⾵Ā;hᎷ㥢ïㆍĀiu㥩㥭gmá㎳Ābp㥲㦄setneqĀ;q㥽㦀쀀⊊︀;쀀⫋︀setneqĀ;q㦏㦒쀀⊋︀;쀀⫌︀Āhr㦛㦟etá㚜iangleĀlr㦪㦯eft»थight»ၑy;䐲ash»ံƀelr㧄㧒㧗ƀ;beⷪ㧋㧏ar;抻q;扚lip;拮Ābt㧜ᑨaòᑩr;쀀𝔳tré㦮suĀbp㧯㧱»ജ»൙pf;쀀𝕧roðtré㦴Ācu㨆㨋r;쀀𝓋Ābp㨐㨘nĀEe㦀㨖»㥾nĀEe㦒㨞»㦐igzag;榚cefoprs㨶㨻㩖㩛㩔㩡㩪irc;䅵Ādi㩀㩑Ābg㩅㩉ar;機eĀ;qᗺ㩏;扙erp;愘r;쀀𝔴pf;쀀𝕨Ā;eᑹ㩦atèᑹcr;쀀𝓌ૣណ㪇\\0㪋\\0㪐㪛\\0\\0㪝㪨㪫㪯\\0\\0㫃㫎\\0㫘ៜtré៑r;쀀𝔵ĀAa㪔㪗ròσrò৶;䎾ĀAa㪡㪤ròθrò৫að✓is;拻ƀdptឤ㪵㪾Āfl㪺ឩ;쀀𝕩imåឲĀAa㫇㫊ròώròਁĀcq㫒ីr;쀀𝓍Āpt៖㫜ré។Ѐacefiosu㫰㫽㬈㬌㬑㬕㬛㬡cĀuy㫶㫻te耻ý䃽;䑏Āiy㬂㬆rc;䅷;䑋n耻¥䂥r;쀀𝔶cy;䑗pf;쀀𝕪cr;쀀𝓎Ācm㬦㬩y;䑎l耻ÿ䃿Ԁacdefhiosw㭂㭈㭔㭘㭤㭩㭭㭴㭺㮀cute;䅺Āay㭍㭒ron;䅾;䐷ot;䅼Āet㭝㭡træᕟa;䎶r;쀀𝔷cy;䐶grarr;懝pf;쀀𝕫cr;쀀𝓏Ājn㮅㮇;怍j;怌'.split(\"\").map((e) => e.charCodeAt(0))\n), ybe = new Uint16Array(\n // prettier-ignore\n \"Ȁaglq\t\u0015\u0018\\x1Bɭ\u000f\\0\\0\u0012p;䀦os;䀧t;䀾t;䀼uot;䀢\".split(\"\").map((e) => e.charCodeAt(0))\n);\nvar qg;\nconst Cbe = /* @__PURE__ */ new Map([\n [0, 65533],\n // C1 Unicode control character reference replacements\n [128, 8364],\n [130, 8218],\n [131, 402],\n [132, 8222],\n [133, 8230],\n [134, 8224],\n [135, 8225],\n [136, 710],\n [137, 8240],\n [138, 352],\n [139, 8249],\n [140, 338],\n [142, 381],\n [145, 8216],\n [146, 8217],\n [147, 8220],\n [148, 8221],\n [149, 8226],\n [150, 8211],\n [151, 8212],\n [152, 732],\n [153, 8482],\n [154, 353],\n [155, 8250],\n [156, 339],\n [158, 382],\n [159, 376]\n]), xbe = (\n // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition, node/no-unsupported-features/es-builtins\n (qg = String.fromCodePoint) !== null && qg !== void 0 ? qg : function(e) {\n let t = \"\";\n return e > 65535 && (e -= 65536, t += String.fromCharCode(e >>> 10 & 1023 | 55296), e = 56320 | e & 1023), t += String.fromCharCode(e), t;\n }\n);\nfunction Sbe(e) {\n var t;\n return e >= 55296 && e <= 57343 || e > 1114111 ? 65533 : (t = Cbe.get(e)) !== null && t !== void 0 ? t : e;\n}\nvar br;\n(function(e) {\n e[e.NUM = 35] = \"NUM\", e[e.SEMI = 59] = \"SEMI\", e[e.EQUALS = 61] = \"EQUALS\", e[e.ZERO = 48] = \"ZERO\", e[e.NINE = 57] = \"NINE\", e[e.LOWER_A = 97] = \"LOWER_A\", e[e.LOWER_F = 102] = \"LOWER_F\", e[e.LOWER_X = 120] = \"LOWER_X\", e[e.LOWER_Z = 122] = \"LOWER_Z\", e[e.UPPER_A = 65] = \"UPPER_A\", e[e.UPPER_F = 70] = \"UPPER_F\", e[e.UPPER_Z = 90] = \"UPPER_Z\";\n})(br || (br = {}));\nconst _be = 32;\nvar Do;\n(function(e) {\n e[e.VALUE_LENGTH = 49152] = \"VALUE_LENGTH\", e[e.BRANCH_LENGTH = 16256] = \"BRANCH_LENGTH\", e[e.JUMP_TABLE = 127] = \"JUMP_TABLE\";\n})(Do || (Do = {}));\nfunction yv(e) {\n return e >= br.ZERO && e <= br.NINE;\n}\nfunction Ebe(e) {\n return e >= br.UPPER_A && e <= br.UPPER_F || e >= br.LOWER_A && e <= br.LOWER_F;\n}\nfunction wbe(e) {\n return e >= br.UPPER_A && e <= br.UPPER_Z || e >= br.LOWER_A && e <= br.LOWER_Z || yv(e);\n}\nfunction Tbe(e) {\n return e === br.EQUALS || wbe(e);\n}\nvar pr;\n(function(e) {\n e[e.EntityStart = 0] = \"EntityStart\", e[e.NumericStart = 1] = \"NumericStart\", e[e.NumericDecimal = 2] = \"NumericDecimal\", e[e.NumericHex = 3] = \"NumericHex\", e[e.NamedEntity = 4] = \"NamedEntity\";\n})(pr || (pr = {}));\nvar wo;\n(function(e) {\n e[e.Legacy = 0] = \"Legacy\", e[e.Strict = 1] = \"Strict\", e[e.Attribute = 2] = \"Attribute\";\n})(wo || (wo = {}));\nclass Abe {\n constructor(t, n, r) {\n this.decodeTree = t, this.emitCodePoint = n, this.errors = r, this.state = pr.EntityStart, this.consumed = 1, this.result = 0, this.treeIndex = 0, this.excess = 1, this.decodeMode = wo.Strict;\n }\n /** Resets the instance to make it reusable. */\n startEntity(t) {\n this.decodeMode = t, this.state = pr.EntityStart, this.result = 0, this.treeIndex = 0, this.excess = 1, this.consumed = 1;\n }\n /**\n * Write an entity to the decoder. This can be called multiple times with partial entities.\n * If the entity is incomplete, the decoder will return -1.\n *\n * Mirrors the implementation of `getDecoder`, but with the ability to stop decoding if the\n * entity is incomplete, and resume when the next string is written.\n *\n * @param string The string containing the entity (or a continuation of the entity).\n * @param offset The offset at which the entity begins. Should be 0 if this is not the first call.\n * @returns The number of characters that were consumed, or -1 if the entity is incomplete.\n */\n write(t, n) {\n switch (this.state) {\n case pr.EntityStart:\n return t.charCodeAt(n) === br.NUM ? (this.state = pr.NumericStart, this.consumed += 1, this.stateNumericStart(t, n + 1)) : (this.state = pr.NamedEntity, this.stateNamedEntity(t, n));\n case pr.NumericStart:\n return this.stateNumericStart(t, n);\n case pr.NumericDecimal:\n return this.stateNumericDecimal(t, n);\n case pr.NumericHex:\n return this.stateNumericHex(t, n);\n case pr.NamedEntity:\n return this.stateNamedEntity(t, n);\n }\n }\n /**\n * Switches between the numeric decimal and hexadecimal states.\n *\n * Equivalent to the `Numeric character reference state` in the HTML spec.\n *\n * @param str The string containing the entity (or a continuation of the entity).\n * @param offset The current offset.\n * @returns The number of characters that were consumed, or -1 if the entity is incomplete.\n */\n stateNumericStart(t, n) {\n return n >= t.length ? -1 : (t.charCodeAt(n) | _be) === br.LOWER_X ? (this.state = pr.NumericHex, this.consumed += 1, this.stateNumericHex(t, n + 1)) : (this.state = pr.NumericDecimal, this.stateNumericDecimal(t, n));\n }\n addToNumericResult(t, n, r, a) {\n if (n !== r) {\n const i = r - n;\n this.result = this.result * Math.pow(a, i) + parseInt(t.substr(n, i), a), this.consumed += i;\n }\n }\n /**\n * Parses a hexadecimal numeric entity.\n *\n * Equivalent to the `Hexademical character reference state` in the HTML spec.\n *\n * @param str The string containing the entity (or a continuation of the entity).\n * @param offset The current offset.\n * @returns The number of characters that were consumed, or -1 if the entity is incomplete.\n */\n stateNumericHex(t, n) {\n const r = n;\n for (; n < t.length; ) {\n const a = t.charCodeAt(n);\n if (yv(a) || Ebe(a))\n n += 1;\n else\n return this.addToNumericResult(t, r, n, 16), this.emitNumericEntity(a, 3);\n }\n return this.addToNumericResult(t, r, n, 16), -1;\n }\n /**\n * Parses a decimal numeric entity.\n *\n * Equivalent to the `Decimal character reference state` in the HTML spec.\n *\n * @param str The string containing the entity (or a continuation of the entity).\n * @param offset The current offset.\n * @returns The number of characters that were consumed, or -1 if the entity is incomplete.\n */\n stateNumericDecimal(t, n) {\n const r = n;\n for (; n < t.length; ) {\n const a = t.charCodeAt(n);\n if (yv(a))\n n += 1;\n else\n return this.addToNumericResult(t, r, n, 10), this.emitNumericEntity(a, 2);\n }\n return this.addToNumericResult(t, r, n, 10), -1;\n }\n /**\n * Validate and emit a numeric entity.\n *\n * Implements the logic from the `Hexademical character reference start\n * state` and `Numeric character reference end state` in the HTML spec.\n *\n * @param lastCp The last code point of the entity. Used to see if the\n * entity was terminated with a semicolon.\n * @param expectedLength The minimum number of characters that should be\n * consumed. Used to validate that at least one digit\n * was consumed.\n * @returns The number of characters that were consumed.\n */\n emitNumericEntity(t, n) {\n var r;\n if (this.consumed <= n)\n return (r = this.errors) === null || r === void 0 || r.absenceOfDigitsInNumericCharacterReference(this.consumed), 0;\n if (t === br.SEMI)\n this.consumed += 1;\n else if (this.decodeMode === wo.Strict)\n return 0;\n return this.emitCodePoint(Sbe(this.result), this.consumed), this.errors && (t !== br.SEMI && this.errors.missingSemicolonAfterCharacterReference(), this.errors.validateNumericCharacterReference(this.result)), this.consumed;\n }\n /**\n * Parses a named entity.\n *\n * Equivalent to the `Named character reference state` in the HTML spec.\n *\n * @param str The string containing the entity (or a continuation of the entity).\n * @param offset The current offset.\n * @returns The number of characters that were consumed, or -1 if the entity is incomplete.\n */\n stateNamedEntity(t, n) {\n const { decodeTree: r } = this;\n let a = r[this.treeIndex], i = (a & Do.VALUE_LENGTH) >> 14;\n for (; n < t.length; n++, this.excess++) {\n const o = t.charCodeAt(n);\n if (this.treeIndex = Nbe(r, a, this.treeIndex + Math.max(1, i), o), this.treeIndex < 0)\n return this.result === 0 || // If we are parsing an attribute\n this.decodeMode === wo.Attribute && // We shouldn't have consumed any characters after the entity,\n (i === 0 || // And there should be no invalid characters.\n Tbe(o)) ? 0 : this.emitNotTerminatedNamedEntity();\n if (a = r[this.treeIndex], i = (a & Do.VALUE_LENGTH) >> 14, i !== 0) {\n if (o === br.SEMI)\n return this.emitNamedEntityData(this.treeIndex, i, this.consumed + this.excess);\n this.decodeMode !== wo.Strict && (this.result = this.treeIndex, this.consumed += this.excess, this.excess = 0);\n }\n }\n return -1;\n }\n /**\n * Emit a named entity that was not terminated with a semicolon.\n *\n * @returns The number of characters consumed.\n */\n emitNotTerminatedNamedEntity() {\n var t;\n const { result: n, decodeTree: r } = this, a = (r[n] & Do.VALUE_LENGTH) >> 14;\n return this.emitNamedEntityData(n, a, this.consumed), (t = this.errors) === null || t === void 0 || t.missingSemicolonAfterCharacterReference(), this.consumed;\n }\n /**\n * Emit a named entity.\n *\n * @param result The index of the entity in the decode tree.\n * @param valueLength The number of bytes in the entity.\n * @param consumed The number of characters consumed.\n *\n * @returns The number of characters consumed.\n */\n emitNamedEntityData(t, n, r) {\n const { decodeTree: a } = this;\n return this.emitCodePoint(n === 1 ? a[t] & ~Do.VALUE_LENGTH : a[t + 1], r), n === 3 && this.emitCodePoint(a[t + 2], r), r;\n }\n /**\n * Signal to the parser that the end of the input was reached.\n *\n * Remaining data will be emitted and relevant errors will be produced.\n *\n * @returns The number of characters consumed.\n */\n end() {\n var t;\n switch (this.state) {\n case pr.NamedEntity:\n return this.result !== 0 && (this.decodeMode !== wo.Attribute || this.result === this.treeIndex) ? this.emitNotTerminatedNamedEntity() : 0;\n case pr.NumericDecimal:\n return this.emitNumericEntity(0, 2);\n case pr.NumericHex:\n return this.emitNumericEntity(0, 3);\n case pr.NumericStart:\n return (t = this.errors) === null || t === void 0 || t.absenceOfDigitsInNumericCharacterReference(this.consumed), 0;\n case pr.EntityStart:\n return 0;\n }\n }\n}\nfunction YR(e) {\n let t = \"\";\n const n = new Abe(e, (r) => t += xbe(r));\n return function(r, a) {\n let i = 0, o = 0;\n for (; (o = r.indexOf(\"&\", o)) >= 0; ) {\n t += r.slice(i, o), n.startEntity(a);\n const u = n.write(\n r,\n // Skip the \"&\"\n o + 1\n );\n if (u < 0) {\n i = o + n.end();\n break;\n }\n i = o + u, o = u === 0 ? i + 1 : i;\n }\n const s = t + r.slice(i);\n return t = \"\", s;\n };\n}\nfunction Nbe(e, t, n, r) {\n const a = (t & Do.BRANCH_LENGTH) >> 7, i = t & Do.JUMP_TABLE;\n if (a === 0)\n return i !== 0 && r === i ? n : -1;\n if (i) {\n const u = r - i;\n return u < 0 || u >= a ? -1 : e[n + u] - 1;\n }\n let o = n, s = o + a - 1;\n for (; o <= s; ) {\n const u = o + s >>> 1, l = e[u];\n if (l < r)\n o = u + 1;\n else if (l > r)\n s = u - 1;\n else\n return e[u + a];\n }\n return -1;\n}\nconst Obe = YR(bbe);\nYR(ybe);\nfunction XR(e, t = wo.Legacy) {\n return Obe(e, t);\n}\nfunction Lbe(e) {\n return Object.prototype.toString.call(e);\n}\nfunction U2(e) {\n return Lbe(e) === \"[object String]\";\n}\nconst kbe = Object.prototype.hasOwnProperty;\nfunction Ibe(e, t) {\n return kbe.call(e, t);\n}\nfunction Xh(e) {\n return Array.prototype.slice.call(arguments, 1).forEach(function(t) {\n if (t) {\n if (typeof t != \"object\")\n throw new TypeError(t + \"must be object\");\n Object.keys(t).forEach(function(n) {\n e[n] = t[n];\n });\n }\n }), e;\n}\nfunction ZR(e, t, n) {\n return [].concat(e.slice(0, t), n, e.slice(t + 1));\n}\nfunction W2(e) {\n return !(e >= 55296 && e <= 57343 || e >= 64976 && e <= 65007 || (e & 65535) === 65535 || (e & 65535) === 65534 || e >= 0 && e <= 8 || e === 11 || e >= 14 && e <= 31 || e >= 127 && e <= 159 || e > 1114111);\n}\nfunction op(e) {\n if (e > 65535) {\n e -= 65536;\n const t = 55296 + (e >> 10), n = 56320 + (e & 1023);\n return String.fromCharCode(t, n);\n }\n return String.fromCharCode(e);\n}\nconst QR = /\\\\([!\"#$%&'()*+,\\-./:;<=>?@[\\\\\\]^_`{|}~])/g, Dbe = /&([a-z#][a-z0-9]{1,31});/gi, Pbe = new RegExp(QR.source + \"|\" + Dbe.source, \"gi\"), Mbe = /^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))$/i;\nfunction Rbe(e, t) {\n if (t.charCodeAt(0) === 35 && Mbe.test(t)) {\n const r = t[1].toLowerCase() === \"x\" ? parseInt(t.slice(2), 16) : parseInt(t.slice(1), 10);\n return W2(r) ? op(r) : e;\n }\n const n = XR(e);\n return n !== e ? n : e;\n}\nfunction Bbe(e) {\n return e.indexOf(\"\\\\\") < 0 ? e : e.replace(QR, \"$1\");\n}\nfunction Xu(e) {\n return e.indexOf(\"\\\\\") < 0 && e.indexOf(\"&\") < 0 ? e : e.replace(Pbe, function(t, n, r) {\n return n || Rbe(t, r);\n });\n}\nconst Fbe = /[&<>\"]/, jbe = /[&<>\"]/g, $be = {\n \"&\": \"&\",\n \"<\": \"<\",\n \">\": \">\",\n '\"': \""\"\n};\nfunction Hbe(e) {\n return $be[e];\n}\nfunction jo(e) {\n return Fbe.test(e) ? e.replace(jbe, Hbe) : e;\n}\nconst Vbe = /[.?*+^$[\\]\\\\(){}|-]/g;\nfunction zbe(e) {\n return e.replace(Vbe, \"\\\\$&\");\n}\nfunction Dn(e) {\n switch (e) {\n case 9:\n case 32:\n return !0;\n }\n return !1;\n}\nfunction Hc(e) {\n if (e >= 8192 && e <= 8202)\n return !0;\n switch (e) {\n case 9:\n case 10:\n case 11:\n case 12:\n case 13:\n case 32:\n case 160:\n case 5760:\n case 8239:\n case 8287:\n case 12288:\n return !0;\n }\n return !1;\n}\nfunction Vc(e) {\n return G2.test(e) || WR.test(e);\n}\nfunction zc(e) {\n switch (e) {\n case 33:\n case 34:\n case 35:\n case 36:\n case 37:\n case 38:\n case 39:\n case 40:\n case 41:\n case 42:\n case 43:\n case 44:\n case 45:\n case 46:\n case 47:\n case 58:\n case 59:\n case 60:\n case 61:\n case 62:\n case 63:\n case 64:\n case 91:\n case 92:\n case 93:\n case 94:\n case 95:\n case 96:\n case 123:\n case 124:\n case 125:\n case 126:\n return !0;\n default:\n return !1;\n }\n}\nfunction Zh(e) {\n return e = e.trim().replace(/\\s+/g, \" \"), \"ẞ\".toLowerCase() === \"Ṿ\" && (e = e.replace(/ẞ/g, \"ß\")), e.toLowerCase().toUpperCase();\n}\nconst qbe = { mdurl: mbe, ucmicro: vbe }, Gbe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({\n __proto__: null,\n arrayReplaceAt: ZR,\n assign: Xh,\n escapeHtml: jo,\n escapeRE: zbe,\n fromCodePoint: op,\n has: Ibe,\n isMdAsciiPunct: zc,\n isPunctChar: Vc,\n isSpace: Dn,\n isString: U2,\n isValidEntityCode: W2,\n isWhiteSpace: Hc,\n lib: qbe,\n normalizeReference: Zh,\n unescapeAll: Xu,\n unescapeMd: Bbe\n}, Symbol.toStringTag, { value: \"Module\" }));\nfunction Ube(e, t, n) {\n let r, a, i, o;\n const s = e.posMax, u = e.pos;\n for (e.pos = t + 1, r = 1; e.pos < s; ) {\n if (i = e.src.charCodeAt(e.pos), i === 93 && (r--, r === 0)) {\n a = !0;\n break;\n }\n if (o = e.pos, e.md.inline.skipToken(e), i === 91) {\n if (o === e.pos - 1)\n r++;\n else if (n)\n return e.pos = u, -1;\n }\n }\n let l = -1;\n return a && (l = e.pos), e.pos = u, l;\n}\nfunction Wbe(e, t, n) {\n let r, a = t;\n const i = {\n ok: !1,\n pos: 0,\n str: \"\"\n };\n if (e.charCodeAt(a) === 60) {\n for (a++; a < n; ) {\n if (r = e.charCodeAt(a), r === 10 || r === 60)\n return i;\n if (r === 62)\n return i.pos = a + 1, i.str = Xu(e.slice(t + 1, a)), i.ok = !0, i;\n if (r === 92 && a + 1 < n) {\n a += 2;\n continue;\n }\n a++;\n }\n return i;\n }\n let o = 0;\n for (; a < n && (r = e.charCodeAt(a), !(r === 32 || r < 32 || r === 127)); ) {\n if (r === 92 && a + 1 < n) {\n if (e.charCodeAt(a + 1) === 32)\n break;\n a += 2;\n continue;\n }\n if (r === 40 && (o++, o > 32))\n return i;\n if (r === 41) {\n if (o === 0)\n break;\n o--;\n }\n a++;\n }\n return t === a || o !== 0 || (i.str = Xu(e.slice(t, a)), i.pos = a, i.ok = !0), i;\n}\nfunction Kbe(e, t, n, r) {\n let a, i = t;\n const o = {\n // if `true`, this is a valid link title\n ok: !1,\n // if `true`, this link can be continued on the next line\n can_continue: !1,\n // if `ok`, it's the position of the first character after the closing marker\n pos: 0,\n // if `ok`, it's the unescaped title\n str: \"\",\n // expected closing marker character code\n marker: 0\n };\n if (r)\n o.str = r.str, o.marker = r.marker;\n else {\n if (i >= n)\n return o;\n let s = e.charCodeAt(i);\n if (s !== 34 && s !== 39 && s !== 40)\n return o;\n t++, i++, s === 40 && (s = 41), o.marker = s;\n }\n for (; i < n; ) {\n if (a = e.charCodeAt(i), a === o.marker)\n return o.pos = i + 1, o.str += Xu(e.slice(t, i)), o.ok = !0, o;\n if (a === 40 && o.marker === 41)\n return o;\n a === 92 && i + 1 < n && i++, i++;\n }\n return o.can_continue = !0, o.str += Xu(e.slice(t, i)), o;\n}\nconst Ybe = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({\n __proto__: null,\n parseLinkDestination: Wbe,\n parseLinkLabel: Ube,\n parseLinkTitle: Kbe\n}, Symbol.toStringTag, { value: \"Module\" })), Ei = {};\nEi.code_inline = function(e, t, n, r, a) {\n const i = e[t];\n return \"\" + jo(i.content) + \"
\";\n};\nEi.code_block = function(e, t, n, r, a) {\n const i = e[t];\n return \"\" + jo(e[t].content) + `
\n`;\n};\nEi.fence = function(e, t, n, r, a) {\n const i = e[t], o = i.info ? Xu(i.info).trim() : \"\";\n let s = \"\", u = \"\";\n if (o) {\n const c = o.split(/(\\s+)/g);\n s = c[0], u = c.slice(2).join(\"\");\n }\n let l;\n if (n.highlight ? l = n.highlight(i.content, s, u) || jo(i.content) : l = jo(i.content), l.indexOf(\"${l}
\n`;\n }\n return `${l}
\n`;\n};\nEi.image = function(e, t, n, r, a) {\n const i = e[t];\n return i.attrs[i.attrIndex(\"alt\")][1] = a.renderInlineAsText(i.children, n, r), a.renderToken(e, t, n);\n};\nEi.hardbreak = function(e, t, n) {\n return n.xhtmlOut ? ` \n` : ` \n`;\n};\nEi.softbreak = function(e, t, n) {\n return n.breaks ? n.xhtmlOut ? ` \n` : ` \n` : `\n`;\n};\nEi.text = function(e, t) {\n return jo(e[t].content);\n};\nEi.html_block = function(e, t) {\n return e[t].content;\n};\nEi.html_inline = function(e, t) {\n return e[t].content;\n};\nfunction fl() {\n this.rules = Xh({}, Ei);\n}\nfl.prototype.renderAttrs = function(e) {\n let t, n, r;\n if (!e.attrs)\n return \"\";\n for (r = \"\", t = 0, n = e.attrs.length; t < n; t++)\n r += \" \" + jo(e.attrs[t][0]) + '=\"' + jo(e.attrs[t][1]) + '\"';\n return r;\n};\nfl.prototype.renderToken = function(e, t, n) {\n const r = e[t];\n let a = \"\";\n if (r.hidden)\n return \"\";\n r.block && r.nesting !== -1 && t && e[t - 1].hidden && (a += `\n`), a += (r.nesting === -1 ? \"\" : \"<\") + r.tag, a += this.renderAttrs(r), r.nesting === 0 && n.xhtmlOut && (a += \" /\");\n let i = !1;\n if (r.block && (i = !0, r.nesting === 1 && t + 1 < e.length)) {\n const o = e[t + 1];\n (o.type === \"inline\" || o.hidden || o.nesting === -1 && o.tag === r.tag) && (i = !1);\n }\n return a += i ? `>\n` : \">\", a;\n};\nfl.prototype.renderInline = function(e, t, n) {\n let r = \"\";\n const a = this.rules;\n for (let i = 0, o = e.length; i < o; i++) {\n const s = e[i].type;\n typeof a[s] < \"u\" ? r += a[s](e, i, t, n, this) : r += this.renderToken(e, i, t);\n }\n return r;\n};\nfl.prototype.renderInlineAsText = function(e, t, n) {\n let r = \"\";\n for (let a = 0, i = e.length; a < i; a++)\n switch (e[a].type) {\n case \"text\":\n r += e[a].content;\n break;\n case \"image\":\n r += this.renderInlineAsText(e[a].children, t, n);\n break;\n case \"html_inline\":\n case \"html_block\":\n r += e[a].content;\n break;\n case \"softbreak\":\n case \"hardbreak\":\n r += `\n`;\n break;\n }\n return r;\n};\nfl.prototype.render = function(e, t, n) {\n let r = \"\";\n const a = this.rules;\n for (let i = 0, o = e.length; i < o; i++) {\n const s = e[i].type;\n s === \"inline\" ? r += this.renderInline(e[i].children, t, n) : typeof a[s] < \"u\" ? r += a[s](e, i, t, n, this) : r += this.renderToken(e, i, t, n);\n }\n return r;\n};\nfunction ca() {\n this.__rules__ = [], this.__cache__ = null;\n}\nca.prototype.__find__ = function(e) {\n for (let t = 0; t < this.__rules__.length; t++)\n if (this.__rules__[t].name === e)\n return t;\n return -1;\n};\nca.prototype.__compile__ = function() {\n const e = this, t = [\"\"];\n e.__rules__.forEach(function(n) {\n n.enabled && n.alt.forEach(function(r) {\n t.indexOf(r) < 0 && t.push(r);\n });\n }), e.__cache__ = {}, t.forEach(function(n) {\n e.__cache__[n] = [], e.__rules__.forEach(function(r) {\n r.enabled && (n && r.alt.indexOf(n) < 0 || e.__cache__[n].push(r.fn));\n });\n });\n};\nca.prototype.at = function(e, t, n) {\n const r = this.__find__(e), a = n || {};\n if (r === -1)\n throw new Error(\"Parser rule not found: \" + e);\n this.__rules__[r].fn = t, this.__rules__[r].alt = a.alt || [], this.__cache__ = null;\n};\nca.prototype.before = function(e, t, n, r) {\n const a = this.__find__(e), i = r || {};\n if (a === -1)\n throw new Error(\"Parser rule not found: \" + e);\n this.__rules__.splice(a, 0, {\n name: t,\n enabled: !0,\n fn: n,\n alt: i.alt || []\n }), this.__cache__ = null;\n};\nca.prototype.after = function(e, t, n, r) {\n const a = this.__find__(e), i = r || {};\n if (a === -1)\n throw new Error(\"Parser rule not found: \" + e);\n this.__rules__.splice(a + 1, 0, {\n name: t,\n enabled: !0,\n fn: n,\n alt: i.alt || []\n }), this.__cache__ = null;\n};\nca.prototype.push = function(e, t, n) {\n const r = n || {};\n this.__rules__.push({\n name: e,\n enabled: !0,\n fn: t,\n alt: r.alt || []\n }), this.__cache__ = null;\n};\nca.prototype.enable = function(e, t) {\n Array.isArray(e) || (e = [e]);\n const n = [];\n return e.forEach(function(r) {\n const a = this.__find__(r);\n if (a < 0) {\n if (t)\n return;\n throw new Error(\"Rules manager: invalid rule name \" + r);\n }\n this.__rules__[a].enabled = !0, n.push(r);\n }, this), this.__cache__ = null, n;\n};\nca.prototype.enableOnly = function(e, t) {\n Array.isArray(e) || (e = [e]), this.__rules__.forEach(function(n) {\n n.enabled = !1;\n }), this.enable(e, t);\n};\nca.prototype.disable = function(e, t) {\n Array.isArray(e) || (e = [e]);\n const n = [];\n return e.forEach(function(r) {\n const a = this.__find__(r);\n if (a < 0) {\n if (t)\n return;\n throw new Error(\"Rules manager: invalid rule name \" + r);\n }\n this.__rules__[a].enabled = !1, n.push(r);\n }, this), this.__cache__ = null, n;\n};\nca.prototype.getRules = function(e) {\n return this.__cache__ === null && this.__compile__(), this.__cache__[e] || [];\n};\nfunction Ja(e, t, n) {\n this.type = e, this.tag = t, this.attrs = null, this.map = null, this.nesting = n, this.level = 0, this.children = null, this.content = \"\", this.markup = \"\", this.info = \"\", this.meta = null, this.block = !1, this.hidden = !1;\n}\nJa.prototype.attrIndex = function(e) {\n if (!this.attrs)\n return -1;\n const t = this.attrs;\n for (let n = 0, r = t.length; n < r; n++)\n if (t[n][0] === e)\n return n;\n return -1;\n};\nJa.prototype.attrPush = function(e) {\n this.attrs ? this.attrs.push(e) : this.attrs = [e];\n};\nJa.prototype.attrSet = function(e, t) {\n const n = this.attrIndex(e), r = [e, t];\n n < 0 ? this.attrPush(r) : this.attrs[n] = r;\n};\nJa.prototype.attrGet = function(e) {\n const t = this.attrIndex(e);\n let n = null;\n return t >= 0 && (n = this.attrs[t][1]), n;\n};\nJa.prototype.attrJoin = function(e, t) {\n const n = this.attrIndex(e);\n n < 0 ? this.attrPush([e, t]) : this.attrs[n][1] = this.attrs[n][1] + \" \" + t;\n};\nfunction JR(e, t, n) {\n this.src = e, this.env = n, this.tokens = [], this.inlineMode = !1, this.md = t;\n}\nJR.prototype.Token = Ja;\nconst Xbe = /\\r\\n?|\\n/g, Zbe = /\\0/g;\nfunction Qbe(e) {\n let t;\n t = e.src.replace(Xbe, `\n`), t = t.replace(Zbe, \"�\"), e.src = t;\n}\nfunction Jbe(e) {\n let t;\n e.inlineMode ? (t = new e.Token(\"inline\", \"\", 0), t.content = e.src, t.map = [0, 1], t.children = [], e.tokens.push(t)) : e.md.block.parse(e.src, e.md, e.env, e.tokens);\n}\nfunction eye(e) {\n const t = e.tokens;\n for (let n = 0, r = t.length; n < r; n++) {\n const a = t[n];\n a.type === \"inline\" && e.md.inline.parse(a.content, e.md, e.env, a.children);\n }\n}\nfunction tye(e) {\n return /^\\s]/i.test(e);\n}\nfunction nye(e) {\n return /^<\\/a\\s*>/i.test(e);\n}\nfunction rye(e) {\n const t = e.tokens;\n if (e.md.options.linkify)\n for (let n = 0, r = t.length; n < r; n++) {\n if (t[n].type !== \"inline\" || !e.md.linkify.pretest(t[n].content))\n continue;\n let a = t[n].children, i = 0;\n for (let o = a.length - 1; o >= 0; o--) {\n const s = a[o];\n if (s.type === \"link_close\") {\n for (o--; a[o].level !== s.level && a[o].type !== \"link_open\"; )\n o--;\n continue;\n }\n if (s.type === \"html_inline\" && (tye(s.content) && i > 0 && i--, nye(s.content) && i++), !(i > 0) && s.type === \"text\" && e.md.linkify.test(s.content)) {\n const u = s.content;\n let l = e.md.linkify.match(u);\n const c = [];\n let d = s.level, p = 0;\n l.length > 0 && l[0].index === 0 && o > 0 && a[o - 1].type === \"text_special\" && (l = l.slice(1));\n for (let g = 0; g < l.length; g++) {\n const v = l[g].url, b = e.md.normalizeLink(v);\n if (!e.md.validateLink(b))\n continue;\n let C = l[g].text;\n l[g].schema ? l[g].schema === \"mailto:\" && !/^mailto:/i.test(C) ? C = e.md.normalizeLinkText(\"mailto:\" + C).replace(/^mailto:/, \"\") : C = e.md.normalizeLinkText(C) : C = e.md.normalizeLinkText(\"http://\" + C).replace(/^http:\\/\\//, \"\");\n const w = l[g].index;\n if (w > p) {\n const E = new e.Token(\"text\", \"\", 0);\n E.content = u.slice(p, w), E.level = d, c.push(E);\n }\n const _ = new e.Token(\"link_open\", \"a\", 1);\n _.attrs = [[\"href\", b]], _.level = d++, _.markup = \"linkify\", _.info = \"auto\", c.push(_);\n const x = new e.Token(\"text\", \"\", 0);\n x.content = C, x.level = d, c.push(x);\n const S = new e.Token(\"link_close\", \"a\", -1);\n S.level = --d, S.markup = \"linkify\", S.info = \"auto\", c.push(S), p = l[g].lastIndex;\n }\n if (p < u.length) {\n const g = new e.Token(\"text\", \"\", 0);\n g.content = u.slice(p), g.level = d, c.push(g);\n }\n t[n].children = a = ZR(a, o, c);\n }\n }\n }\n}\nconst eB = /\\+-|\\.\\.|\\?\\?\\?\\?|!!!!|,,|--/, aye = /\\((c|tm|r)\\)/i, iye = /\\((c|tm|r)\\)/ig, oye = {\n c: \"©\",\n r: \"®\",\n tm: \"™\"\n};\nfunction sye(e, t) {\n return oye[t.toLowerCase()];\n}\nfunction uye(e) {\n let t = 0;\n for (let n = e.length - 1; n >= 0; n--) {\n const r = e[n];\n r.type === \"text\" && !t && (r.content = r.content.replace(iye, sye)), r.type === \"link_open\" && r.info === \"auto\" && t--, r.type === \"link_close\" && r.info === \"auto\" && t++;\n }\n}\nfunction lye(e) {\n let t = 0;\n for (let n = e.length - 1; n >= 0; n--) {\n const r = e[n];\n r.type === \"text\" && !t && eB.test(r.content) && (r.content = r.content.replace(/\\+-/g, \"±\").replace(/\\.{2,}/g, \"…\").replace(/([?!])…/g, \"$1..\").replace(/([?!]){4,}/g, \"$1$1$1\").replace(/,{2,}/g, \",\").replace(/(^|[^-])---(?=[^-]|$)/mg, \"$1—\").replace(/(^|\\s)--(?=\\s|$)/mg, \"$1–\").replace(/(^|[^-\\s])--(?=[^-\\s]|$)/mg, \"$1–\")), r.type === \"link_open\" && r.info === \"auto\" && t--, r.type === \"link_close\" && r.info === \"auto\" && t++;\n }\n}\nfunction cye(e) {\n let t;\n if (e.md.options.typographer)\n for (t = e.tokens.length - 1; t >= 0; t--)\n e.tokens[t].type === \"inline\" && (aye.test(e.tokens[t].content) && uye(e.tokens[t].children), eB.test(e.tokens[t].content) && lye(e.tokens[t].children));\n}\nconst dye = /['\"]/, i8 = /['\"]/g, o8 = \"’\";\nfunction D0(e, t, n) {\n return e.slice(0, t) + n + e.slice(t + 1);\n}\nfunction fye(e, t) {\n let n;\n const r = [];\n for (let a = 0; a < e.length; a++) {\n const i = e[a], o = e[a].level;\n for (n = r.length - 1; n >= 0 && !(r[n].level <= o); n--)\n ;\n if (r.length = n + 1, i.type !== \"text\")\n continue;\n let s = i.content, u = 0, l = s.length;\n e:\n for (; u < l; ) {\n i8.lastIndex = u;\n const c = i8.exec(s);\n if (!c)\n break;\n let d = !0, p = !0;\n u = c.index + 1;\n const g = c[0] === \"'\";\n let v = 32;\n if (c.index - 1 >= 0)\n v = s.charCodeAt(c.index - 1);\n else\n for (n = a - 1; n >= 0 && !(e[n].type === \"softbreak\" || e[n].type === \"hardbreak\"); n--)\n if (e[n].content) {\n v = e[n].content.charCodeAt(e[n].content.length - 1);\n break;\n }\n let b = 32;\n if (u < l)\n b = s.charCodeAt(u);\n else\n for (n = a + 1; n < e.length && !(e[n].type === \"softbreak\" || e[n].type === \"hardbreak\"); n++)\n if (e[n].content) {\n b = e[n].content.charCodeAt(0);\n break;\n }\n const C = zc(v) || Vc(String.fromCharCode(v)), w = zc(b) || Vc(String.fromCharCode(b)), _ = Hc(v), x = Hc(b);\n if (x ? d = !1 : w && (_ || C || (d = !1)), _ ? p = !1 : C && (x || w || (p = !1)), b === 34 && c[0] === '\"' && v >= 48 && v <= 57 && (p = d = !1), d && p && (d = C, p = w), !d && !p) {\n g && (i.content = D0(i.content, c.index, o8));\n continue;\n }\n if (p)\n for (n = r.length - 1; n >= 0; n--) {\n let S = r[n];\n if (r[n].level < o)\n break;\n if (S.single === g && r[n].level === o) {\n S = r[n];\n let E, N;\n g ? (E = t.md.options.quotes[2], N = t.md.options.quotes[3]) : (E = t.md.options.quotes[0], N = t.md.options.quotes[1]), i.content = D0(i.content, c.index, N), e[S.token].content = D0(\n e[S.token].content,\n S.pos,\n E\n ), u += N.length - 1, S.token === a && (u += E.length - 1), s = i.content, l = s.length, r.length = n;\n continue e;\n }\n }\n d ? r.push({\n token: a,\n pos: c.index,\n single: g,\n level: o\n }) : p && g && (i.content = D0(i.content, c.index, o8));\n }\n }\n}\nfunction pye(e) {\n if (e.md.options.typographer)\n for (let t = e.tokens.length - 1; t >= 0; t--)\n e.tokens[t].type !== \"inline\" || !dye.test(e.tokens[t].content) || fye(e.tokens[t].children, e);\n}\nfunction hye(e) {\n let t, n;\n const r = e.tokens, a = r.length;\n for (let i = 0; i < a; i++) {\n if (r[i].type !== \"inline\")\n continue;\n const o = r[i].children, s = o.length;\n for (t = 0; t < s; t++)\n o[t].type === \"text_special\" && (o[t].type = \"text\");\n for (t = n = 0; t < s; t++)\n o[t].type === \"text\" && t + 1 < s && o[t + 1].type === \"text\" ? o[t + 1].content = o[t].content + o[t + 1].content : (t !== n && (o[n] = o[t]), n++);\n t !== n && (o.length = n);\n }\n}\nconst Gg = [\n [\"normalize\", Qbe],\n [\"block\", Jbe],\n [\"inline\", eye],\n [\"linkify\", rye],\n [\"replacements\", cye],\n [\"smartquotes\", pye],\n // `text_join` finds `text_special` tokens (for escape sequences)\n // and joins them with the rest of the text\n [\"text_join\", hye]\n];\nfunction K2() {\n this.ruler = new ca();\n for (let e = 0; e < Gg.length; e++)\n this.ruler.push(Gg[e][0], Gg[e][1]);\n}\nK2.prototype.process = function(e) {\n const t = this.ruler.getRules(\"\");\n for (let n = 0, r = t.length; n < r; n++)\n t[n](e);\n};\nK2.prototype.State = JR;\nfunction wi(e, t, n, r) {\n this.src = e, this.md = t, this.env = n, this.tokens = r, this.bMarks = [], this.eMarks = [], this.tShift = [], this.sCount = [], this.bsCount = [], this.blkIndent = 0, this.line = 0, this.lineMax = 0, this.tight = !1, this.ddIndent = -1, this.listIndent = -1, this.parentType = \"root\", this.level = 0;\n const a = this.src;\n for (let i = 0, o = 0, s = 0, u = 0, l = a.length, c = !1; o < l; o++) {\n const d = a.charCodeAt(o);\n if (!c)\n if (Dn(d)) {\n s++, d === 9 ? u += 4 - u % 4 : u++;\n continue;\n } else\n c = !0;\n (d === 10 || o === l - 1) && (d !== 10 && o++, this.bMarks.push(i), this.eMarks.push(o), this.tShift.push(s), this.sCount.push(u), this.bsCount.push(0), c = !1, s = 0, u = 0, i = o + 1);\n }\n this.bMarks.push(a.length), this.eMarks.push(a.length), this.tShift.push(0), this.sCount.push(0), this.bsCount.push(0), this.lineMax = this.bMarks.length - 1;\n}\nwi.prototype.push = function(e, t, n) {\n const r = new Ja(e, t, n);\n return r.block = !0, n < 0 && this.level--, r.level = this.level, n > 0 && this.level++, this.tokens.push(r), r;\n};\nwi.prototype.isEmpty = function(e) {\n return this.bMarks[e] + this.tShift[e] >= this.eMarks[e];\n};\nwi.prototype.skipEmptyLines = function(e) {\n for (let t = this.lineMax; e < t && !(this.bMarks[e] + this.tShift[e] < this.eMarks[e]); e++)\n ;\n return e;\n};\nwi.prototype.skipSpaces = function(e) {\n for (let t = this.src.length; e < t; e++) {\n const n = this.src.charCodeAt(e);\n if (!Dn(n))\n break;\n }\n return e;\n};\nwi.prototype.skipSpacesBack = function(e, t) {\n if (e <= t)\n return e;\n for (; e > t; )\n if (!Dn(this.src.charCodeAt(--e)))\n return e + 1;\n return e;\n};\nwi.prototype.skipChars = function(e, t) {\n for (let n = this.src.length; e < n && this.src.charCodeAt(e) === t; e++)\n ;\n return e;\n};\nwi.prototype.skipCharsBack = function(e, t, n) {\n if (e <= n)\n return e;\n for (; e > n; )\n if (t !== this.src.charCodeAt(--e))\n return e + 1;\n return e;\n};\nwi.prototype.getLines = function(e, t, n, r) {\n if (e >= t)\n return \"\";\n const a = new Array(t - e);\n for (let i = 0, o = e; o < t; o++, i++) {\n let s = 0;\n const u = this.bMarks[o];\n let l = u, c;\n for (o + 1 < t || r ? c = this.eMarks[o] + 1 : c = this.eMarks[o]; l < c && s < n; ) {\n const d = this.src.charCodeAt(l);\n if (Dn(d))\n d === 9 ? s += 4 - (s + this.bsCount[o]) % 4 : s++;\n else if (l - u < this.tShift[o])\n s++;\n else\n break;\n l++;\n }\n s > n ? a[i] = new Array(s - n + 1).join(\" \") + this.src.slice(l, c) : a[i] = this.src.slice(l, c);\n }\n return a.join(\"\");\n};\nwi.prototype.Token = Ja;\nconst mye = 65536;\nfunction Ug(e, t) {\n const n = e.bMarks[t] + e.tShift[t], r = e.eMarks[t];\n return e.src.slice(n, r);\n}\nfunction s8(e) {\n const t = [], n = e.length;\n let r = 0, a = e.charCodeAt(r), i = !1, o = 0, s = \"\";\n for (; r < n; )\n a === 124 && (i ? (s += e.substring(o, r - 1), o = r) : (t.push(s + e.substring(o, r)), s = \"\", o = r + 1)), i = a === 92, r++, a = e.charCodeAt(r);\n return t.push(s + e.substring(o)), t;\n}\nfunction gye(e, t, n, r) {\n if (t + 2 > n)\n return !1;\n let a = t + 1;\n if (e.sCount[a] < e.blkIndent || e.sCount[a] - e.blkIndent >= 4)\n return !1;\n let i = e.bMarks[a] + e.tShift[a];\n if (i >= e.eMarks[a])\n return !1;\n const o = e.src.charCodeAt(i++);\n if (o !== 124 && o !== 45 && o !== 58 || i >= e.eMarks[a])\n return !1;\n const s = e.src.charCodeAt(i++);\n if (s !== 124 && s !== 45 && s !== 58 && !Dn(s) || o === 45 && Dn(s))\n return !1;\n for (; i < e.eMarks[a]; ) {\n const S = e.src.charCodeAt(i);\n if (S !== 124 && S !== 45 && S !== 58 && !Dn(S))\n return !1;\n i++;\n }\n let u = Ug(e, t + 1), l = u.split(\"|\");\n const c = [];\n for (let S = 0; S < l.length; S++) {\n const E = l[S].trim();\n if (!E) {\n if (S === 0 || S === l.length - 1)\n continue;\n return !1;\n }\n if (!/^:?-+:?$/.test(E))\n return !1;\n E.charCodeAt(E.length - 1) === 58 ? c.push(E.charCodeAt(0) === 58 ? \"center\" : \"right\") : E.charCodeAt(0) === 58 ? c.push(\"left\") : c.push(\"\");\n }\n if (u = Ug(e, t).trim(), u.indexOf(\"|\") === -1 || e.sCount[t] - e.blkIndent >= 4)\n return !1;\n l = s8(u), l.length && l[0] === \"\" && l.shift(), l.length && l[l.length - 1] === \"\" && l.pop();\n const d = l.length;\n if (d === 0 || d !== c.length)\n return !1;\n if (r)\n return !0;\n const p = e.parentType;\n e.parentType = \"table\";\n const g = e.md.block.ruler.getRules(\"blockquote\"), v = e.push(\"table_open\", \"table\", 1), b = [t, 0];\n v.map = b;\n const C = e.push(\"thead_open\", \"thead\", 1);\n C.map = [t, t + 1];\n const w = e.push(\"tr_open\", \"tr\", 1);\n w.map = [t, t + 1];\n for (let S = 0; S < l.length; S++) {\n const E = e.push(\"th_open\", \"th\", 1);\n c[S] && (E.attrs = [[\"style\", \"text-align:\" + c[S]]]);\n const N = e.push(\"inline\", \"\", 0);\n N.content = l[S].trim(), N.children = [], e.push(\"th_close\", \"th\", -1);\n }\n e.push(\"tr_close\", \"tr\", -1), e.push(\"thead_close\", \"thead\", -1);\n let _, x = 0;\n for (a = t + 2; a < n && !(e.sCount[a] < e.blkIndent); a++) {\n let S = !1;\n for (let N = 0, P = g.length; N < P; N++)\n if (g[N](e, a, n, !0)) {\n S = !0;\n break;\n }\n if (S || (u = Ug(e, a).trim(), !u) || e.sCount[a] - e.blkIndent >= 4 || (l = s8(u), l.length && l[0] === \"\" && l.shift(), l.length && l[l.length - 1] === \"\" && l.pop(), x += d - l.length, x > mye))\n break;\n if (a === t + 2) {\n const N = e.push(\"tbody_open\", \"tbody\", 1);\n N.map = _ = [t + 2, 0];\n }\n const E = e.push(\"tr_open\", \"tr\", 1);\n E.map = [a, a + 1];\n for (let N = 0; N < d; N++) {\n const P = e.push(\"td_open\", \"td\", 1);\n c[N] && (P.attrs = [[\"style\", \"text-align:\" + c[N]]]);\n const H = e.push(\"inline\", \"\", 0);\n H.content = l[N] ? l[N].trim() : \"\", H.children = [], e.push(\"td_close\", \"td\", -1);\n }\n e.push(\"tr_close\", \"tr\", -1);\n }\n return _ && (e.push(\"tbody_close\", \"tbody\", -1), _[1] = a), e.push(\"table_close\", \"table\", -1), b[1] = a, e.parentType = p, e.line = a, !0;\n}\nfunction vye(e, t, n) {\n if (e.sCount[t] - e.blkIndent < 4)\n return !1;\n let r = t + 1, a = r;\n for (; r < n; ) {\n if (e.isEmpty(r)) {\n r++;\n continue;\n }\n if (e.sCount[r] - e.blkIndent >= 4) {\n r++, a = r;\n continue;\n }\n break;\n }\n e.line = a;\n const i = e.push(\"code_block\", \"code\", 0);\n return i.content = e.getLines(t, a, 4 + e.blkIndent, !1) + `\n`, i.map = [t, e.line], !0;\n}\nfunction bye(e, t, n, r) {\n let a = e.bMarks[t] + e.tShift[t], i = e.eMarks[t];\n if (e.sCount[t] - e.blkIndent >= 4 || a + 3 > i)\n return !1;\n const o = e.src.charCodeAt(a);\n if (o !== 126 && o !== 96)\n return !1;\n let s = a;\n a = e.skipChars(a, o);\n let u = a - s;\n if (u < 3)\n return !1;\n const l = e.src.slice(s, a), c = e.src.slice(a, i);\n if (o === 96 && c.indexOf(String.fromCharCode(o)) >= 0)\n return !1;\n if (r)\n return !0;\n let d = t, p = !1;\n for (; d++, !(d >= n || (a = s = e.bMarks[d] + e.tShift[d], i = e.eMarks[d], a < i && e.sCount[d] < e.blkIndent)); )\n if (e.src.charCodeAt(a) === o && !(e.sCount[d] - e.blkIndent >= 4) && (a = e.skipChars(a, o), !(a - s < u) && (a = e.skipSpaces(a), !(a < i)))) {\n p = !0;\n break;\n }\n u = e.sCount[t], e.line = d + (p ? 1 : 0);\n const g = e.push(\"fence\", \"code\", 0);\n return g.info = c, g.content = e.getLines(t + 1, d, u, !0), g.markup = l, g.map = [t, e.line], !0;\n}\nfunction yye(e, t, n, r) {\n let a = e.bMarks[t] + e.tShift[t], i = e.eMarks[t];\n const o = e.lineMax;\n if (e.sCount[t] - e.blkIndent >= 4 || e.src.charCodeAt(a) !== 62)\n return !1;\n if (r)\n return !0;\n const s = [], u = [], l = [], c = [], d = e.md.block.ruler.getRules(\"blockquote\"), p = e.parentType;\n e.parentType = \"blockquote\";\n let g = !1, v;\n for (v = t; v < n; v++) {\n const x = e.sCount[v] < e.blkIndent;\n if (a = e.bMarks[v] + e.tShift[v], i = e.eMarks[v], a >= i)\n break;\n if (e.src.charCodeAt(a++) === 62 && !x) {\n let E = e.sCount[v] + 1, N, P;\n e.src.charCodeAt(a) === 32 ? (a++, E++, P = !1, N = !0) : e.src.charCodeAt(a) === 9 ? (N = !0, (e.bsCount[v] + E) % 4 === 3 ? (a++, E++, P = !1) : P = !0) : N = !1;\n let H = E;\n for (s.push(e.bMarks[v]), e.bMarks[v] = a; a < i; ) {\n const k = e.src.charCodeAt(a);\n if (Dn(k))\n k === 9 ? H += 4 - (H + e.bsCount[v] + (P ? 1 : 0)) % 4 : H++;\n else\n break;\n a++;\n }\n g = a >= i, u.push(e.bsCount[v]), e.bsCount[v] = e.sCount[v] + 1 + (N ? 1 : 0), l.push(e.sCount[v]), e.sCount[v] = H - E, c.push(e.tShift[v]), e.tShift[v] = a - e.bMarks[v];\n continue;\n }\n if (g)\n break;\n let S = !1;\n for (let E = 0, N = d.length; E < N; E++)\n if (d[E](e, v, n, !0)) {\n S = !0;\n break;\n }\n if (S) {\n e.lineMax = v, e.blkIndent !== 0 && (s.push(e.bMarks[v]), u.push(e.bsCount[v]), c.push(e.tShift[v]), l.push(e.sCount[v]), e.sCount[v] -= e.blkIndent);\n break;\n }\n s.push(e.bMarks[v]), u.push(e.bsCount[v]), c.push(e.tShift[v]), l.push(e.sCount[v]), e.sCount[v] = -1;\n }\n const b = e.blkIndent;\n e.blkIndent = 0;\n const C = e.push(\"blockquote_open\", \"blockquote\", 1);\n C.markup = \">\";\n const w = [t, 0];\n C.map = w, e.md.block.tokenize(e, t, v);\n const _ = e.push(\"blockquote_close\", \"blockquote\", -1);\n _.markup = \">\", e.lineMax = o, e.parentType = p, w[1] = e.line;\n for (let x = 0; x < c.length; x++)\n e.bMarks[x + t] = s[x], e.tShift[x + t] = c[x], e.sCount[x + t] = l[x], e.bsCount[x + t] = u[x];\n return e.blkIndent = b, !0;\n}\nfunction Cye(e, t, n, r) {\n const a = e.eMarks[t];\n if (e.sCount[t] - e.blkIndent >= 4)\n return !1;\n let i = e.bMarks[t] + e.tShift[t];\n const o = e.src.charCodeAt(i++);\n if (o !== 42 && o !== 45 && o !== 95)\n return !1;\n let s = 1;\n for (; i < a; ) {\n const l = e.src.charCodeAt(i++);\n if (l !== o && !Dn(l))\n return !1;\n l === o && s++;\n }\n if (s < 3)\n return !1;\n if (r)\n return !0;\n e.line = t + 1;\n const u = e.push(\"hr\", \"hr\", 0);\n return u.map = [t, e.line], u.markup = Array(s + 1).join(String.fromCharCode(o)), !0;\n}\nfunction u8(e, t) {\n const n = e.eMarks[t];\n let r = e.bMarks[t] + e.tShift[t];\n const a = e.src.charCodeAt(r++);\n if (a !== 42 && a !== 45 && a !== 43)\n return -1;\n if (r < n) {\n const i = e.src.charCodeAt(r);\n if (!Dn(i))\n return -1;\n }\n return r;\n}\nfunction l8(e, t) {\n const n = e.bMarks[t] + e.tShift[t], r = e.eMarks[t];\n let a = n;\n if (a + 1 >= r)\n return -1;\n let i = e.src.charCodeAt(a++);\n if (i < 48 || i > 57)\n return -1;\n for (; ; ) {\n if (a >= r)\n return -1;\n if (i = e.src.charCodeAt(a++), i >= 48 && i <= 57) {\n if (a - n >= 10)\n return -1;\n continue;\n }\n if (i === 41 || i === 46)\n break;\n return -1;\n }\n return a < r && (i = e.src.charCodeAt(a), !Dn(i)) ? -1 : a;\n}\nfunction xye(e, t) {\n const n = e.level + 2;\n for (let r = t + 2, a = e.tokens.length - 2; r < a; r++)\n e.tokens[r].level === n && e.tokens[r].type === \"paragraph_open\" && (e.tokens[r + 2].hidden = !0, e.tokens[r].hidden = !0, r += 2);\n}\nfunction Sye(e, t, n, r) {\n let a, i, o, s, u = t, l = !0;\n if (e.sCount[u] - e.blkIndent >= 4 || e.listIndent >= 0 && e.sCount[u] - e.listIndent >= 4 && e.sCount[u] < e.blkIndent)\n return !1;\n let c = !1;\n r && e.parentType === \"paragraph\" && e.sCount[u] >= e.blkIndent && (c = !0);\n let d, p, g;\n if ((g = l8(e, u)) >= 0) {\n if (d = !0, o = e.bMarks[u] + e.tShift[u], p = Number(e.src.slice(o, g - 1)), c && p !== 1)\n return !1;\n } else if ((g = u8(e, u)) >= 0)\n d = !1;\n else\n return !1;\n if (c && e.skipSpaces(g) >= e.eMarks[u])\n return !1;\n if (r)\n return !0;\n const v = e.src.charCodeAt(g - 1), b = e.tokens.length;\n d ? (s = e.push(\"ordered_list_open\", \"ol\", 1), p !== 1 && (s.attrs = [[\"start\", p]])) : s = e.push(\"bullet_list_open\", \"ul\", 1);\n const C = [u, 0];\n s.map = C, s.markup = String.fromCharCode(v);\n let w = !1;\n const _ = e.md.block.ruler.getRules(\"list\"), x = e.parentType;\n for (e.parentType = \"list\"; u < n; ) {\n i = g, a = e.eMarks[u];\n const S = e.sCount[u] + g - (e.bMarks[u] + e.tShift[u]);\n let E = S;\n for (; i < a; ) {\n const B = e.src.charCodeAt(i);\n if (B === 9)\n E += 4 - (E + e.bsCount[u]) % 4;\n else if (B === 32)\n E++;\n else\n break;\n i++;\n }\n const N = i;\n let P;\n N >= a ? P = 1 : P = E - S, P > 4 && (P = 1);\n const H = S + P;\n s = e.push(\"list_item_open\", \"li\", 1), s.markup = String.fromCharCode(v);\n const k = [u, 0];\n s.map = k, d && (s.info = e.src.slice(o, g - 1));\n const Q = e.tight, I = e.tShift[u], G = e.sCount[u], $ = e.listIndent;\n if (e.listIndent = e.blkIndent, e.blkIndent = H, e.tight = !0, e.tShift[u] = N - e.bMarks[u], e.sCount[u] = E, N >= a && e.isEmpty(u + 1) ? e.line = Math.min(e.line + 2, n) : e.md.block.tokenize(e, u, n, !0), (!e.tight || w) && (l = !1), w = e.line - u > 1 && e.isEmpty(e.line - 1), e.blkIndent = e.listIndent, e.listIndent = $, e.tShift[u] = I, e.sCount[u] = G, e.tight = Q, s = e.push(\"list_item_close\", \"li\", -1), s.markup = String.fromCharCode(v), u = e.line, k[1] = u, u >= n || e.sCount[u] < e.blkIndent || e.sCount[u] - e.blkIndent >= 4)\n break;\n let z = !1;\n for (let B = 0, O = _.length; B < O; B++)\n if (_[B](e, u, n, !0)) {\n z = !0;\n break;\n }\n if (z)\n break;\n if (d) {\n if (g = l8(e, u), g < 0)\n break;\n o = e.bMarks[u] + e.tShift[u];\n } else if (g = u8(e, u), g < 0)\n break;\n if (v !== e.src.charCodeAt(g - 1))\n break;\n }\n return d ? s = e.push(\"ordered_list_close\", \"ol\", -1) : s = e.push(\"bullet_list_close\", \"ul\", -1), s.markup = String.fromCharCode(v), C[1] = u, e.line = u, e.parentType = x, l && xye(e, b), !0;\n}\nfunction _ye(e, t, n, r) {\n let a = e.bMarks[t] + e.tShift[t], i = e.eMarks[t], o = t + 1;\n if (e.sCount[t] - e.blkIndent >= 4 || e.src.charCodeAt(a) !== 91)\n return !1;\n function s(_) {\n const x = e.lineMax;\n if (_ >= x || e.isEmpty(_))\n return null;\n let S = !1;\n if (e.sCount[_] - e.blkIndent > 3 && (S = !0), e.sCount[_] < 0 && (S = !0), !S) {\n const P = e.md.block.ruler.getRules(\"reference\"), H = e.parentType;\n e.parentType = \"reference\";\n let k = !1;\n for (let Q = 0, I = P.length; Q < I; Q++)\n if (P[Q](e, _, x, !0)) {\n k = !0;\n break;\n }\n if (e.parentType = H, k)\n return null;\n }\n const E = e.bMarks[_] + e.tShift[_], N = e.eMarks[_];\n return e.src.slice(E, N + 1);\n }\n let u = e.src.slice(a, i + 1);\n i = u.length;\n let l = -1;\n for (a = 1; a < i; a++) {\n const _ = u.charCodeAt(a);\n if (_ === 91)\n return !1;\n if (_ === 93) {\n l = a;\n break;\n } else if (_ === 10) {\n const x = s(o);\n x !== null && (u += x, i = u.length, o++);\n } else if (_ === 92 && (a++, a < i && u.charCodeAt(a) === 10)) {\n const x = s(o);\n x !== null && (u += x, i = u.length, o++);\n }\n }\n if (l < 0 || u.charCodeAt(l + 1) !== 58)\n return !1;\n for (a = l + 2; a < i; a++) {\n const _ = u.charCodeAt(a);\n if (_ === 10) {\n const x = s(o);\n x !== null && (u += x, i = u.length, o++);\n } else if (!Dn(_))\n break;\n }\n const c = e.md.helpers.parseLinkDestination(u, a, i);\n if (!c.ok)\n return !1;\n const d = e.md.normalizeLink(c.str);\n if (!e.md.validateLink(d))\n return !1;\n a = c.pos;\n const p = a, g = o, v = a;\n for (; a < i; a++) {\n const _ = u.charCodeAt(a);\n if (_ === 10) {\n const x = s(o);\n x !== null && (u += x, i = u.length, o++);\n } else if (!Dn(_))\n break;\n }\n let b = e.md.helpers.parseLinkTitle(u, a, i);\n for (; b.can_continue; ) {\n const _ = s(o);\n if (_ === null)\n break;\n u += _, a = i, i = u.length, o++, b = e.md.helpers.parseLinkTitle(u, a, i, b);\n }\n let C;\n for (a < i && v !== a && b.ok ? (C = b.str, a = b.pos) : (C = \"\", a = p, o = g); a < i; ) {\n const _ = u.charCodeAt(a);\n if (!Dn(_))\n break;\n a++;\n }\n if (a < i && u.charCodeAt(a) !== 10 && C)\n for (C = \"\", a = p, o = g; a < i; ) {\n const _ = u.charCodeAt(a);\n if (!Dn(_))\n break;\n a++;\n }\n if (a < i && u.charCodeAt(a) !== 10)\n return !1;\n const w = Zh(u.slice(1, l));\n return w ? (r || (typeof e.env.references > \"u\" && (e.env.references = {}), typeof e.env.references[w] > \"u\" && (e.env.references[w] = { title: C, href: d }), e.line = o), !0) : !1;\n}\nconst Eye = [\n \"address\",\n \"article\",\n \"aside\",\n \"base\",\n \"basefont\",\n \"blockquote\",\n \"body\",\n \"caption\",\n \"center\",\n \"col\",\n \"colgroup\",\n \"dd\",\n \"details\",\n \"dialog\",\n \"dir\",\n \"div\",\n \"dl\",\n \"dt\",\n \"fieldset\",\n \"figcaption\",\n \"figure\",\n \"footer\",\n \"form\",\n \"frame\",\n \"frameset\",\n \"h1\",\n \"h2\",\n \"h3\",\n \"h4\",\n \"h5\",\n \"h6\",\n \"head\",\n \"header\",\n \"hr\",\n \"html\",\n \"iframe\",\n \"legend\",\n \"li\",\n \"link\",\n \"main\",\n \"menu\",\n \"menuitem\",\n \"nav\",\n \"noframes\",\n \"ol\",\n \"optgroup\",\n \"option\",\n \"p\",\n \"param\",\n \"search\",\n \"section\",\n \"summary\",\n \"table\",\n \"tbody\",\n \"td\",\n \"tfoot\",\n \"th\",\n \"thead\",\n \"title\",\n \"tr\",\n \"track\",\n \"ul\"\n], wye = \"[a-zA-Z_:][a-zA-Z0-9:._-]*\", Tye = \"[^\\\"'=<>`\\\\x00-\\\\x20]+\", Aye = \"'[^']*'\", Nye = '\"[^\"]*\"', Oye = \"(?:\" + Tye + \"|\" + Aye + \"|\" + Nye + \")\", Lye = \"(?:\\\\s+\" + wye + \"(?:\\\\s*=\\\\s*\" + Oye + \")?)\", tB = \"<[A-Za-z][A-Za-z0-9\\\\-]*\" + Lye + \"*\\\\s*\\\\/?>\", nB = \"<\\\\/[A-Za-z][A-Za-z0-9\\\\-]*\\\\s*>\", kye = \"\", Iye = \"<[?][\\\\s\\\\S]*?[?]>\", Dye = \"]*>\", Pye = \"\", Mye = new RegExp(\"^(?:\" + tB + \"|\" + nB + \"|\" + kye + \"|\" + Iye + \"|\" + Dye + \"|\" + Pye + \")\"), Rye = new RegExp(\"^(?:\" + tB + \"|\" + nB + \")\"), su = [\n [/^<(script|pre|style|textarea)(?=(\\s|>|$))/i, /<\\/(script|pre|style|textarea)>/i, !0],\n [/^/, !0],\n [/^<\\?/, /\\?>/, !0],\n [/^/, !0],\n [/^/, !0],\n [new RegExp(\"^?(\" + Eye.join(\"|\") + \")(?=(\\\\s|/?>|$))\", \"i\"), /^$/, !0],\n [new RegExp(Rye.source + \"\\\\s*$\"), /^$/, !1]\n];\nfunction Bye(e, t, n, r) {\n let a = e.bMarks[t] + e.tShift[t], i = e.eMarks[t];\n if (e.sCount[t] - e.blkIndent >= 4 || !e.md.options.html || e.src.charCodeAt(a) !== 60)\n return !1;\n let o = e.src.slice(a, i), s = 0;\n for (; s < su.length && !su[s][0].test(o); s++)\n ;\n if (s === su.length)\n return !1;\n if (r)\n return su[s][2];\n let u = t + 1;\n if (!su[s][1].test(o)) {\n for (; u < n && !(e.sCount[u] < e.blkIndent); u++)\n if (a = e.bMarks[u] + e.tShift[u], i = e.eMarks[u], o = e.src.slice(a, i), su[s][1].test(o)) {\n o.length !== 0 && u++;\n break;\n }\n }\n e.line = u;\n const l = e.push(\"html_block\", \"\", 0);\n return l.map = [t, u], l.content = e.getLines(t, u, e.blkIndent, !0), !0;\n}\nfunction Fye(e, t, n, r) {\n let a = e.bMarks[t] + e.tShift[t], i = e.eMarks[t];\n if (e.sCount[t] - e.blkIndent >= 4)\n return !1;\n let o = e.src.charCodeAt(a);\n if (o !== 35 || a >= i)\n return !1;\n let s = 1;\n for (o = e.src.charCodeAt(++a); o === 35 && a < i && s <= 6; )\n s++, o = e.src.charCodeAt(++a);\n if (s > 6 || a < i && !Dn(o))\n return !1;\n if (r)\n return !0;\n i = e.skipSpacesBack(i, a);\n const u = e.skipCharsBack(i, 35, a);\n u > a && Dn(e.src.charCodeAt(u - 1)) && (i = u), e.line = t + 1;\n const l = e.push(\"heading_open\", \"h\" + String(s), 1);\n l.markup = \"########\".slice(0, s), l.map = [t, e.line];\n const c = e.push(\"inline\", \"\", 0);\n c.content = e.src.slice(a, i).trim(), c.map = [t, e.line], c.children = [];\n const d = e.push(\"heading_close\", \"h\" + String(s), -1);\n return d.markup = \"########\".slice(0, s), !0;\n}\nfunction jye(e, t, n) {\n const r = e.md.block.ruler.getRules(\"paragraph\");\n if (e.sCount[t] - e.blkIndent >= 4)\n return !1;\n const a = e.parentType;\n e.parentType = \"paragraph\";\n let i = 0, o, s = t + 1;\n for (; s < n && !e.isEmpty(s); s++) {\n if (e.sCount[s] - e.blkIndent > 3)\n continue;\n if (e.sCount[s] >= e.blkIndent) {\n let g = e.bMarks[s] + e.tShift[s];\n const v = e.eMarks[s];\n if (g < v && (o = e.src.charCodeAt(g), (o === 45 || o === 61) && (g = e.skipChars(g, o), g = e.skipSpaces(g), g >= v))) {\n i = o === 61 ? 1 : 2;\n break;\n }\n }\n if (e.sCount[s] < 0)\n continue;\n let p = !1;\n for (let g = 0, v = r.length; g < v; g++)\n if (r[g](e, s, n, !0)) {\n p = !0;\n break;\n }\n if (p)\n break;\n }\n if (!i)\n return !1;\n const u = e.getLines(t, s, e.blkIndent, !1).trim();\n e.line = s + 1;\n const l = e.push(\"heading_open\", \"h\" + String(i), 1);\n l.markup = String.fromCharCode(o), l.map = [t, e.line];\n const c = e.push(\"inline\", \"\", 0);\n c.content = u, c.map = [t, e.line - 1], c.children = [];\n const d = e.push(\"heading_close\", \"h\" + String(i), -1);\n return d.markup = String.fromCharCode(o), e.parentType = a, !0;\n}\nfunction $ye(e, t, n) {\n const r = e.md.block.ruler.getRules(\"paragraph\"), a = e.parentType;\n let i = t + 1;\n for (e.parentType = \"paragraph\"; i < n && !e.isEmpty(i); i++) {\n if (e.sCount[i] - e.blkIndent > 3 || e.sCount[i] < 0)\n continue;\n let l = !1;\n for (let c = 0, d = r.length; c < d; c++)\n if (r[c](e, i, n, !0)) {\n l = !0;\n break;\n }\n if (l)\n break;\n }\n const o = e.getLines(t, i, e.blkIndent, !1).trim();\n e.line = i;\n const s = e.push(\"paragraph_open\", \"p\", 1);\n s.map = [t, e.line];\n const u = e.push(\"inline\", \"\", 0);\n return u.content = o, u.map = [t, e.line], u.children = [], e.push(\"paragraph_close\", \"p\", -1), e.parentType = a, !0;\n}\nconst P0 = [\n // First 2 params - rule name & source. Secondary array - list of rules,\n // which can be terminated by this one.\n [\"table\", gye, [\"paragraph\", \"reference\"]],\n [\"code\", vye],\n [\"fence\", bye, [\"paragraph\", \"reference\", \"blockquote\", \"list\"]],\n [\"blockquote\", yye, [\"paragraph\", \"reference\", \"blockquote\", \"list\"]],\n [\"hr\", Cye, [\"paragraph\", \"reference\", \"blockquote\", \"list\"]],\n [\"list\", Sye, [\"paragraph\", \"reference\", \"blockquote\"]],\n [\"reference\", _ye],\n [\"html_block\", Bye, [\"paragraph\", \"reference\", \"blockquote\"]],\n [\"heading\", Fye, [\"paragraph\", \"reference\", \"blockquote\"]],\n [\"lheading\", jye],\n [\"paragraph\", $ye]\n];\nfunction Qh() {\n this.ruler = new ca();\n for (let e = 0; e < P0.length; e++)\n this.ruler.push(P0[e][0], P0[e][1], { alt: (P0[e][2] || []).slice() });\n}\nQh.prototype.tokenize = function(e, t, n) {\n const r = this.ruler.getRules(\"\"), a = r.length, i = e.md.options.maxNesting;\n let o = t, s = !1;\n for (; o < n && (e.line = o = e.skipEmptyLines(o), !(o >= n || e.sCount[o] < e.blkIndent)); ) {\n if (e.level >= i) {\n e.line = n;\n break;\n }\n const u = e.line;\n let l = !1;\n for (let c = 0; c < a; c++)\n if (l = r[c](e, o, n, !1), l) {\n if (u >= e.line)\n throw new Error(\"block rule didn't increment state.line\");\n break;\n }\n if (!l)\n throw new Error(\"none of the block rules matched\");\n e.tight = !s, e.isEmpty(e.line - 1) && (s = !0), o = e.line, o < n && e.isEmpty(o) && (s = !0, o++, e.line = o);\n }\n};\nQh.prototype.parse = function(e, t, n, r) {\n if (!e)\n return;\n const a = new this.State(e, t, n, r);\n this.tokenize(a, a.line, a.lineMax);\n};\nQh.prototype.State = wi;\nfunction Dd(e, t, n, r) {\n this.src = e, this.env = n, this.md = t, this.tokens = r, this.tokens_meta = Array(r.length), this.pos = 0, this.posMax = this.src.length, this.level = 0, this.pending = \"\", this.pendingLevel = 0, this.cache = {}, this.delimiters = [], this._prev_delimiters = [], this.backticks = {}, this.backticksScanned = !1, this.linkLevel = 0;\n}\nDd.prototype.pushPending = function() {\n const e = new Ja(\"text\", \"\", 0);\n return e.content = this.pending, e.level = this.pendingLevel, this.tokens.push(e), this.pending = \"\", e;\n};\nDd.prototype.push = function(e, t, n) {\n this.pending && this.pushPending();\n const r = new Ja(e, t, n);\n let a = null;\n return n < 0 && (this.level--, this.delimiters = this._prev_delimiters.pop()), r.level = this.level, n > 0 && (this.level++, this._prev_delimiters.push(this.delimiters), this.delimiters = [], a = { delimiters: this.delimiters }), this.pendingLevel = this.level, this.tokens.push(r), this.tokens_meta.push(a), r;\n};\nDd.prototype.scanDelims = function(e, t) {\n const n = this.posMax, r = this.src.charCodeAt(e), a = e > 0 ? this.src.charCodeAt(e - 1) : 32;\n let i = e;\n for (; i < n && this.src.charCodeAt(i) === r; )\n i++;\n const o = i - e, s = i < n ? this.src.charCodeAt(i) : 32, u = zc(a) || Vc(String.fromCharCode(a)), l = zc(s) || Vc(String.fromCharCode(s)), c = Hc(a), d = Hc(s), p = !d && (!l || c || u), g = !c && (!u || d || l);\n return { can_open: p && (t || !g || u), can_close: g && (t || !p || l), length: o };\n};\nDd.prototype.Token = Ja;\nfunction Hye(e) {\n switch (e) {\n case 10:\n case 33:\n case 35:\n case 36:\n case 37:\n case 38:\n case 42:\n case 43:\n case 45:\n case 58:\n case 60:\n case 61:\n case 62:\n case 64:\n case 91:\n case 92:\n case 93:\n case 94:\n case 95:\n case 96:\n case 123:\n case 125:\n case 126:\n return !0;\n default:\n return !1;\n }\n}\nfunction Vye(e, t) {\n let n = e.pos;\n for (; n < e.posMax && !Hye(e.src.charCodeAt(n)); )\n n++;\n return n === e.pos ? !1 : (t || (e.pending += e.src.slice(e.pos, n)), e.pos = n, !0);\n}\nconst zye = /(?:^|[^a-z0-9.+-])([a-z][a-z0-9.+-]*)$/i;\nfunction qye(e, t) {\n if (!e.md.options.linkify || e.linkLevel > 0)\n return !1;\n const n = e.pos, r = e.posMax;\n if (n + 3 > r || e.src.charCodeAt(n) !== 58 || e.src.charCodeAt(n + 1) !== 47 || e.src.charCodeAt(n + 2) !== 47)\n return !1;\n const a = e.pending.match(zye);\n if (!a)\n return !1;\n const i = a[1], o = e.md.linkify.matchAtStart(e.src.slice(n - i.length));\n if (!o)\n return !1;\n let s = o.url;\n if (s.length <= i.length)\n return !1;\n s = s.replace(/\\*+$/, \"\");\n const u = e.md.normalizeLink(s);\n if (!e.md.validateLink(u))\n return !1;\n if (!t) {\n e.pending = e.pending.slice(0, -i.length);\n const l = e.push(\"link_open\", \"a\", 1);\n l.attrs = [[\"href\", u]], l.markup = \"linkify\", l.info = \"auto\";\n const c = e.push(\"text\", \"\", 0);\n c.content = e.md.normalizeLinkText(s);\n const d = e.push(\"link_close\", \"a\", -1);\n d.markup = \"linkify\", d.info = \"auto\";\n }\n return e.pos += s.length - i.length, !0;\n}\nfunction Gye(e, t) {\n let n = e.pos;\n if (e.src.charCodeAt(n) !== 10)\n return !1;\n const r = e.pending.length - 1, a = e.posMax;\n if (!t)\n if (r >= 0 && e.pending.charCodeAt(r) === 32)\n if (r >= 1 && e.pending.charCodeAt(r - 1) === 32) {\n let i = r - 1;\n for (; i >= 1 && e.pending.charCodeAt(i - 1) === 32; )\n i--;\n e.pending = e.pending.slice(0, i), e.push(\"hardbreak\", \"br\", 0);\n } else\n e.pending = e.pending.slice(0, -1), e.push(\"softbreak\", \"br\", 0);\n else\n e.push(\"softbreak\", \"br\", 0);\n for (n++; n < a && Dn(e.src.charCodeAt(n)); )\n n++;\n return e.pos = n, !0;\n}\nconst Y2 = [];\nfor (let e = 0; e < 256; e++)\n Y2.push(0);\n\"\\\\!\\\"#$%&'()*+,./:;<=>?@[]^_`{|}~-\".split(\"\").forEach(function(e) {\n Y2[e.charCodeAt(0)] = 1;\n});\nfunction Uye(e, t) {\n let n = e.pos;\n const r = e.posMax;\n if (e.src.charCodeAt(n) !== 92 || (n++, n >= r))\n return !1;\n let a = e.src.charCodeAt(n);\n if (a === 10) {\n for (t || e.push(\"hardbreak\", \"br\", 0), n++; n < r && (a = e.src.charCodeAt(n), !!Dn(a)); )\n n++;\n return e.pos = n, !0;\n }\n let i = e.src[n];\n if (a >= 55296 && a <= 56319 && n + 1 < r) {\n const s = e.src.charCodeAt(n + 1);\n s >= 56320 && s <= 57343 && (i += e.src[n + 1], n++);\n }\n const o = \"\\\\\" + i;\n if (!t) {\n const s = e.push(\"text_special\", \"\", 0);\n a < 256 && Y2[a] !== 0 ? s.content = i : s.content = o, s.markup = o, s.info = \"escape\";\n }\n return e.pos = n + 1, !0;\n}\nfunction Wye(e, t) {\n let n = e.pos;\n if (e.src.charCodeAt(n) !== 96)\n return !1;\n const r = n;\n n++;\n const a = e.posMax;\n for (; n < a && e.src.charCodeAt(n) === 96; )\n n++;\n const i = e.src.slice(r, n), o = i.length;\n if (e.backticksScanned && (e.backticks[o] || 0) <= r)\n return t || (e.pending += i), e.pos += o, !0;\n let s = n, u;\n for (; (u = e.src.indexOf(\"`\", s)) !== -1; ) {\n for (s = u + 1; s < a && e.src.charCodeAt(s) === 96; )\n s++;\n const l = s - u;\n if (l === o) {\n if (!t) {\n const c = e.push(\"code_inline\", \"code\", 0);\n c.markup = i, c.content = e.src.slice(n, u).replace(/\\n/g, \" \").replace(/^ (.+) $/, \"$1\");\n }\n return e.pos = s, !0;\n }\n e.backticks[l] = u;\n }\n return e.backticksScanned = !0, t || (e.pending += i), e.pos += o, !0;\n}\nfunction Kye(e, t) {\n const n = e.pos, r = e.src.charCodeAt(n);\n if (t || r !== 126)\n return !1;\n const a = e.scanDelims(e.pos, !0);\n let i = a.length;\n const o = String.fromCharCode(r);\n if (i < 2)\n return !1;\n let s;\n i % 2 && (s = e.push(\"text\", \"\", 0), s.content = o, i--);\n for (let u = 0; u < i; u += 2)\n s = e.push(\"text\", \"\", 0), s.content = o + o, e.delimiters.push({\n marker: r,\n length: 0,\n // disable \"rule of 3\" length checks meant for emphasis\n token: e.tokens.length - 1,\n end: -1,\n open: a.can_open,\n close: a.can_close\n });\n return e.pos += a.length, !0;\n}\nfunction c8(e, t) {\n let n;\n const r = [], a = t.length;\n for (let i = 0; i < a; i++) {\n const o = t[i];\n if (o.marker !== 126 || o.end === -1)\n continue;\n const s = t[o.end];\n n = e.tokens[o.token], n.type = \"s_open\", n.tag = \"s\", n.nesting = 1, n.markup = \"~~\", n.content = \"\", n = e.tokens[s.token], n.type = \"s_close\", n.tag = \"s\", n.nesting = -1, n.markup = \"~~\", n.content = \"\", e.tokens[s.token - 1].type === \"text\" && e.tokens[s.token - 1].content === \"~\" && r.push(s.token - 1);\n }\n for (; r.length; ) {\n const i = r.pop();\n let o = i + 1;\n for (; o < e.tokens.length && e.tokens[o].type === \"s_close\"; )\n o++;\n o--, i !== o && (n = e.tokens[o], e.tokens[o] = e.tokens[i], e.tokens[i] = n);\n }\n}\nfunction Yye(e) {\n const t = e.tokens_meta, n = e.tokens_meta.length;\n c8(e, e.delimiters);\n for (let r = 0; r < n; r++)\n t[r] && t[r].delimiters && c8(e, t[r].delimiters);\n}\nconst rB = {\n tokenize: Kye,\n postProcess: Yye\n};\nfunction Xye(e, t) {\n const n = e.pos, r = e.src.charCodeAt(n);\n if (t || r !== 95 && r !== 42)\n return !1;\n const a = e.scanDelims(e.pos, r === 42);\n for (let i = 0; i < a.length; i++) {\n const o = e.push(\"text\", \"\", 0);\n o.content = String.fromCharCode(r), e.delimiters.push({\n // Char code of the starting marker (number).\n //\n marker: r,\n // Total length of these series of delimiters.\n //\n length: a.length,\n // A position of the token this delimiter corresponds to.\n //\n token: e.tokens.length - 1,\n // If this delimiter is matched as a valid opener, `end` will be\n // equal to its position, otherwise it's `-1`.\n //\n end: -1,\n // Boolean flags that determine if this delimiter could open or close\n // an emphasis.\n //\n open: a.can_open,\n close: a.can_close\n });\n }\n return e.pos += a.length, !0;\n}\nfunction d8(e, t) {\n const n = t.length;\n for (let r = n - 1; r >= 0; r--) {\n const a = t[r];\n if (a.marker !== 95 && a.marker !== 42 || a.end === -1)\n continue;\n const i = t[a.end], o = r > 0 && t[r - 1].end === a.end + 1 && // check that first two markers match and adjacent\n t[r - 1].marker === a.marker && t[r - 1].token === a.token - 1 && // check that last two markers are adjacent (we can safely assume they match)\n t[a.end + 1].token === i.token + 1, s = String.fromCharCode(a.marker), u = e.tokens[a.token];\n u.type = o ? \"strong_open\" : \"em_open\", u.tag = o ? \"strong\" : \"em\", u.nesting = 1, u.markup = o ? s + s : s, u.content = \"\";\n const l = e.tokens[i.token];\n l.type = o ? \"strong_close\" : \"em_close\", l.tag = o ? \"strong\" : \"em\", l.nesting = -1, l.markup = o ? s + s : s, l.content = \"\", o && (e.tokens[t[r - 1].token].content = \"\", e.tokens[t[a.end + 1].token].content = \"\", r--);\n }\n}\nfunction Zye(e) {\n const t = e.tokens_meta, n = e.tokens_meta.length;\n d8(e, e.delimiters);\n for (let r = 0; r < n; r++)\n t[r] && t[r].delimiters && d8(e, t[r].delimiters);\n}\nconst aB = {\n tokenize: Xye,\n postProcess: Zye\n};\nfunction Qye(e, t) {\n let n, r, a, i, o = \"\", s = \"\", u = e.pos, l = !0;\n if (e.src.charCodeAt(e.pos) !== 91)\n return !1;\n const c = e.pos, d = e.posMax, p = e.pos + 1, g = e.md.helpers.parseLinkLabel(e, e.pos, !0);\n if (g < 0)\n return !1;\n let v = g + 1;\n if (v < d && e.src.charCodeAt(v) === 40) {\n for (l = !1, v++; v < d && (n = e.src.charCodeAt(v), !(!Dn(n) && n !== 10)); v++)\n ;\n if (v >= d)\n return !1;\n if (u = v, a = e.md.helpers.parseLinkDestination(e.src, v, e.posMax), a.ok) {\n for (o = e.md.normalizeLink(a.str), e.md.validateLink(o) ? v = a.pos : o = \"\", u = v; v < d && (n = e.src.charCodeAt(v), !(!Dn(n) && n !== 10)); v++)\n ;\n if (a = e.md.helpers.parseLinkTitle(e.src, v, e.posMax), v < d && u !== v && a.ok)\n for (s = a.str, v = a.pos; v < d && (n = e.src.charCodeAt(v), !(!Dn(n) && n !== 10)); v++)\n ;\n }\n (v >= d || e.src.charCodeAt(v) !== 41) && (l = !0), v++;\n }\n if (l) {\n if (typeof e.env.references > \"u\")\n return !1;\n if (v < d && e.src.charCodeAt(v) === 91 ? (u = v + 1, v = e.md.helpers.parseLinkLabel(e, v), v >= 0 ? r = e.src.slice(u, v++) : v = g + 1) : v = g + 1, r || (r = e.src.slice(p, g)), i = e.env.references[Zh(r)], !i)\n return e.pos = c, !1;\n o = i.href, s = i.title;\n }\n if (!t) {\n e.pos = p, e.posMax = g;\n const b = e.push(\"link_open\", \"a\", 1), C = [[\"href\", o]];\n b.attrs = C, s && C.push([\"title\", s]), e.linkLevel++, e.md.inline.tokenize(e), e.linkLevel--, e.push(\"link_close\", \"a\", -1);\n }\n return e.pos = v, e.posMax = d, !0;\n}\nfunction Jye(e, t) {\n let n, r, a, i, o, s, u, l, c = \"\";\n const d = e.pos, p = e.posMax;\n if (e.src.charCodeAt(e.pos) !== 33 || e.src.charCodeAt(e.pos + 1) !== 91)\n return !1;\n const g = e.pos + 2, v = e.md.helpers.parseLinkLabel(e, e.pos + 1, !1);\n if (v < 0)\n return !1;\n if (i = v + 1, i < p && e.src.charCodeAt(i) === 40) {\n for (i++; i < p && (n = e.src.charCodeAt(i), !(!Dn(n) && n !== 10)); i++)\n ;\n if (i >= p)\n return !1;\n for (l = i, s = e.md.helpers.parseLinkDestination(e.src, i, e.posMax), s.ok && (c = e.md.normalizeLink(s.str), e.md.validateLink(c) ? i = s.pos : c = \"\"), l = i; i < p && (n = e.src.charCodeAt(i), !(!Dn(n) && n !== 10)); i++)\n ;\n if (s = e.md.helpers.parseLinkTitle(e.src, i, e.posMax), i < p && l !== i && s.ok)\n for (u = s.str, i = s.pos; i < p && (n = e.src.charCodeAt(i), !(!Dn(n) && n !== 10)); i++)\n ;\n else\n u = \"\";\n if (i >= p || e.src.charCodeAt(i) !== 41)\n return e.pos = d, !1;\n i++;\n } else {\n if (typeof e.env.references > \"u\")\n return !1;\n if (i < p && e.src.charCodeAt(i) === 91 ? (l = i + 1, i = e.md.helpers.parseLinkLabel(e, i), i >= 0 ? a = e.src.slice(l, i++) : i = v + 1) : i = v + 1, a || (a = e.src.slice(g, v)), o = e.env.references[Zh(a)], !o)\n return e.pos = d, !1;\n c = o.href, u = o.title;\n }\n if (!t) {\n r = e.src.slice(g, v);\n const b = [];\n e.md.inline.parse(\n r,\n e.md,\n e.env,\n b\n );\n const C = e.push(\"image\", \"img\", 0), w = [[\"src\", c], [\"alt\", \"\"]];\n C.attrs = w, C.children = b, C.content = r, u && w.push([\"title\", u]);\n }\n return e.pos = i, e.posMax = p, !0;\n}\nconst e2e = /^([a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/, t2e = /^([a-zA-Z][a-zA-Z0-9+.-]{1,31}):([^<>\\x00-\\x20]*)$/;\nfunction n2e(e, t) {\n let n = e.pos;\n if (e.src.charCodeAt(n) !== 60)\n return !1;\n const r = e.pos, a = e.posMax;\n for (; ; ) {\n if (++n >= a)\n return !1;\n const o = e.src.charCodeAt(n);\n if (o === 60)\n return !1;\n if (o === 62)\n break;\n }\n const i = e.src.slice(r + 1, n);\n if (t2e.test(i)) {\n const o = e.md.normalizeLink(i);\n if (!e.md.validateLink(o))\n return !1;\n if (!t) {\n const s = e.push(\"link_open\", \"a\", 1);\n s.attrs = [[\"href\", o]], s.markup = \"autolink\", s.info = \"auto\";\n const u = e.push(\"text\", \"\", 0);\n u.content = e.md.normalizeLinkText(i);\n const l = e.push(\"link_close\", \"a\", -1);\n l.markup = \"autolink\", l.info = \"auto\";\n }\n return e.pos += i.length + 2, !0;\n }\n if (e2e.test(i)) {\n const o = e.md.normalizeLink(\"mailto:\" + i);\n if (!e.md.validateLink(o))\n return !1;\n if (!t) {\n const s = e.push(\"link_open\", \"a\", 1);\n s.attrs = [[\"href\", o]], s.markup = \"autolink\", s.info = \"auto\";\n const u = e.push(\"text\", \"\", 0);\n u.content = e.md.normalizeLinkText(i);\n const l = e.push(\"link_close\", \"a\", -1);\n l.markup = \"autolink\", l.info = \"auto\";\n }\n return e.pos += i.length + 2, !0;\n }\n return !1;\n}\nfunction r2e(e) {\n return /^ \\s]/i.test(e);\n}\nfunction a2e(e) {\n return /^<\\/a\\s*>/i.test(e);\n}\nfunction i2e(e) {\n const t = e | 32;\n return t >= 97 && t <= 122;\n}\nfunction o2e(e, t) {\n if (!e.md.options.html)\n return !1;\n const n = e.posMax, r = e.pos;\n if (e.src.charCodeAt(r) !== 60 || r + 2 >= n)\n return !1;\n const a = e.src.charCodeAt(r + 1);\n if (a !== 33 && a !== 63 && a !== 47 && !i2e(a))\n return !1;\n const i = e.src.slice(r).match(Mye);\n if (!i)\n return !1;\n if (!t) {\n const o = e.push(\"html_inline\", \"\", 0);\n o.content = i[0], r2e(o.content) && e.linkLevel++, a2e(o.content) && e.linkLevel--;\n }\n return e.pos += i[0].length, !0;\n}\nconst s2e = /^((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i, u2e = /^&([a-z][a-z0-9]{1,31});/i;\nfunction l2e(e, t) {\n const n = e.pos, r = e.posMax;\n if (e.src.charCodeAt(n) !== 38 || n + 1 >= r)\n return !1;\n if (e.src.charCodeAt(n + 1) === 35) {\n const a = e.src.slice(n).match(s2e);\n if (a) {\n if (!t) {\n const i = a[1][0].toLowerCase() === \"x\" ? parseInt(a[1].slice(1), 16) : parseInt(a[1], 10), o = e.push(\"text_special\", \"\", 0);\n o.content = W2(i) ? op(i) : op(65533), o.markup = a[0], o.info = \"entity\";\n }\n return e.pos += a[0].length, !0;\n }\n } else {\n const a = e.src.slice(n).match(u2e);\n if (a) {\n const i = XR(a[0]);\n if (i !== a[0]) {\n if (!t) {\n const o = e.push(\"text_special\", \"\", 0);\n o.content = i, o.markup = a[0], o.info = \"entity\";\n }\n return e.pos += a[0].length, !0;\n }\n }\n }\n return !1;\n}\nfunction f8(e) {\n const t = {}, n = e.length;\n if (!n)\n return;\n let r = 0, a = -2;\n const i = [];\n for (let o = 0; o < n; o++) {\n const s = e[o];\n if (i.push(0), (e[r].marker !== s.marker || a !== s.token - 1) && (r = o), a = s.token, s.length = s.length || 0, !s.close)\n continue;\n t.hasOwnProperty(s.marker) || (t[s.marker] = [-1, -1, -1, -1, -1, -1]);\n const u = t[s.marker][(s.open ? 3 : 0) + s.length % 3];\n let l = r - i[r] - 1, c = l;\n for (; l > u; l -= i[l] + 1) {\n const d = e[l];\n if (d.marker === s.marker && d.open && d.end < 0) {\n let p = !1;\n if ((d.close || s.open) && (d.length + s.length) % 3 === 0 && (d.length % 3 !== 0 || s.length % 3 !== 0) && (p = !0), !p) {\n const g = l > 0 && !e[l - 1].open ? i[l - 1] + 1 : 0;\n i[o] = o - l + g, i[l] = g, s.open = !1, d.end = o, d.close = !1, c = -1, a = -2;\n break;\n }\n }\n }\n c !== -1 && (t[s.marker][(s.open ? 3 : 0) + (s.length || 0) % 3] = c);\n }\n}\nfunction c2e(e) {\n const t = e.tokens_meta, n = e.tokens_meta.length;\n f8(e.delimiters);\n for (let r = 0; r < n; r++)\n t[r] && t[r].delimiters && f8(t[r].delimiters);\n}\nfunction d2e(e) {\n let t, n, r = 0;\n const a = e.tokens, i = e.tokens.length;\n for (t = n = 0; t < i; t++)\n a[t].nesting < 0 && r--, a[t].level = r, a[t].nesting > 0 && r++, a[t].type === \"text\" && t + 1 < i && a[t + 1].type === \"text\" ? a[t + 1].content = a[t].content + a[t + 1].content : (t !== n && (a[n] = a[t]), n++);\n t !== n && (a.length = n);\n}\nconst Wg = [\n [\"text\", Vye],\n [\"linkify\", qye],\n [\"newline\", Gye],\n [\"escape\", Uye],\n [\"backticks\", Wye],\n [\"strikethrough\", rB.tokenize],\n [\"emphasis\", aB.tokenize],\n [\"link\", Qye],\n [\"image\", Jye],\n [\"autolink\", n2e],\n [\"html_inline\", o2e],\n [\"entity\", l2e]\n], Kg = [\n [\"balance_pairs\", c2e],\n [\"strikethrough\", rB.postProcess],\n [\"emphasis\", aB.postProcess],\n // rules for pairs separate '**' into its own text tokens, which may be left unused,\n // rule below merges unused segments back with the rest of the text\n [\"fragments_join\", d2e]\n];\nfunction Pd() {\n this.ruler = new ca();\n for (let e = 0; e < Wg.length; e++)\n this.ruler.push(Wg[e][0], Wg[e][1]);\n this.ruler2 = new ca();\n for (let e = 0; e < Kg.length; e++)\n this.ruler2.push(Kg[e][0], Kg[e][1]);\n}\nPd.prototype.skipToken = function(e) {\n const t = e.pos, n = this.ruler.getRules(\"\"), r = n.length, a = e.md.options.maxNesting, i = e.cache;\n if (typeof i[t] < \"u\") {\n e.pos = i[t];\n return;\n }\n let o = !1;\n if (e.level < a) {\n for (let s = 0; s < r; s++)\n if (e.level++, o = n[s](e, !0), e.level--, o) {\n if (t >= e.pos)\n throw new Error(\"inline rule didn't increment state.pos\");\n break;\n }\n } else\n e.pos = e.posMax;\n o || e.pos++, i[t] = e.pos;\n};\nPd.prototype.tokenize = function(e) {\n const t = this.ruler.getRules(\"\"), n = t.length, r = e.posMax, a = e.md.options.maxNesting;\n for (; e.pos < r; ) {\n const i = e.pos;\n let o = !1;\n if (e.level < a) {\n for (let s = 0; s < n; s++)\n if (o = t[s](e, !1), o) {\n if (i >= e.pos)\n throw new Error(\"inline rule didn't increment state.pos\");\n break;\n }\n }\n if (o) {\n if (e.pos >= r)\n break;\n continue;\n }\n e.pending += e.src[e.pos++];\n }\n e.pending && e.pushPending();\n};\nPd.prototype.parse = function(e, t, n, r) {\n const a = new this.State(e, t, n, r);\n this.tokenize(a);\n const i = this.ruler2.getRules(\"\"), o = i.length;\n for (let s = 0; s < o; s++)\n i[s](a);\n};\nPd.prototype.State = Dd;\nfunction f2e(e) {\n const t = {};\n e = e || {}, t.src_Any = GR.source, t.src_Cc = UR.source, t.src_Z = KR.source, t.src_P = G2.source, t.src_ZPCc = [t.src_Z, t.src_P, t.src_Cc].join(\"|\"), t.src_ZCc = [t.src_Z, t.src_Cc].join(\"|\");\n const n = \"[><|]\";\n return t.src_pseudo_letter = \"(?:(?!\" + n + \"|\" + t.src_ZPCc + \")\" + t.src_Any + \")\", t.src_ip4 = \"(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\", t.src_auth = \"(?:(?:(?!\" + t.src_ZCc + \"|[@/\\\\[\\\\]()]).)+@)?\", t.src_port = \"(?::(?:6(?:[0-4]\\\\d{3}|5(?:[0-4]\\\\d{2}|5(?:[0-2]\\\\d|3[0-5])))|[1-5]?\\\\d{1,4}))?\", t.src_host_terminator = \"(?=$|\" + n + \"|\" + t.src_ZPCc + \")(?!\" + (e[\"---\"] ? \"-(?!--)|\" : \"-|\") + \"_|:\\\\d|\\\\.-|\\\\.(?!$|\" + t.src_ZPCc + \"))\", t.src_path = \"(?:[/?#](?:(?!\" + t.src_ZCc + \"|\" + n + `|[()[\\\\]{}.,\"'?!\\\\-;]).|\\\\[(?:(?!` + t.src_ZCc + \"|\\\\]).)*\\\\]|\\\\((?:(?!\" + t.src_ZCc + \"|[)]).)*\\\\)|\\\\{(?:(?!\" + t.src_ZCc + '|[}]).)*\\\\}|\\\\\"(?:(?!' + t.src_ZCc + `|[\"]).)+\\\\\"|\\\\'(?:(?!` + t.src_ZCc + \"|[']).)+\\\\'|\\\\'(?=\" + t.src_pseudo_letter + \"|[-])|\\\\.{2,}[a-zA-Z0-9%/&]|\\\\.(?!\" + t.src_ZCc + \"|[.]|$)|\" + (e[\"---\"] ? \"\\\\-(?!--(?:[^-]|$))(?:-*)|\" : \"\\\\-+|\") + // allow `,,,` in paths\n \",(?!\" + t.src_ZCc + \"|$)|;(?!\" + t.src_ZCc + \"|$)|\\\\!+(?!\" + t.src_ZCc + \"|[!]|$)|\\\\?(?!\" + t.src_ZCc + \"|[?]|$))+|\\\\/)?\", t.src_email_name = '[\\\\-;:&=\\\\+\\\\$,\\\\.a-zA-Z0-9_][\\\\-;:&=\\\\+\\\\$,\\\\\"\\\\.a-zA-Z0-9_]*', t.src_xn = \"xn--[a-z0-9\\\\-]{1,59}\", t.src_domain_root = // Allow letters & digits (http://test1)\n \"(?:\" + t.src_xn + \"|\" + t.src_pseudo_letter + \"{1,63})\", t.src_domain = \"(?:\" + t.src_xn + \"|(?:\" + t.src_pseudo_letter + \")|(?:\" + t.src_pseudo_letter + \"(?:-|\" + t.src_pseudo_letter + \"){0,61}\" + t.src_pseudo_letter + \"))\", t.src_host = \"(?:(?:(?:(?:\" + t.src_domain + \")\\\\.)*\" + t.src_domain + \"))\", t.tpl_host_fuzzy = \"(?:\" + t.src_ip4 + \"|(?:(?:(?:\" + t.src_domain + \")\\\\.)+(?:%TLDS%)))\", t.tpl_host_no_ip_fuzzy = \"(?:(?:(?:\" + t.src_domain + \")\\\\.)+(?:%TLDS%))\", t.src_host_strict = t.src_host + t.src_host_terminator, t.tpl_host_fuzzy_strict = t.tpl_host_fuzzy + t.src_host_terminator, t.src_host_port_strict = t.src_host + t.src_port + t.src_host_terminator, t.tpl_host_port_fuzzy_strict = t.tpl_host_fuzzy + t.src_port + t.src_host_terminator, t.tpl_host_port_no_ip_fuzzy_strict = t.tpl_host_no_ip_fuzzy + t.src_port + t.src_host_terminator, t.tpl_host_fuzzy_test = \"localhost|www\\\\.|\\\\.\\\\d{1,3}\\\\.|(?:\\\\.(?:%TLDS%)(?:\" + t.src_ZPCc + \"|>|$))\", t.tpl_email_fuzzy = \"(^|\" + n + '|\"|\\\\(|' + t.src_ZCc + \")(\" + t.src_email_name + \"@\" + t.tpl_host_fuzzy_strict + \")\", t.tpl_link_fuzzy = // Fuzzy link can't be prepended with .:/\\- and non punctuation.\n // but can start with > (markdown blockquote)\n \"(^|(?![.:/\\\\-_@])(?:[$+<=>^`||]|\" + t.src_ZPCc + \"))((?![$+<=>^`||])\" + t.tpl_host_port_fuzzy_strict + t.src_path + \")\", t.tpl_link_no_ip_fuzzy = // Fuzzy link can't be prepended with .:/\\- and non punctuation.\n // but can start with > (markdown blockquote)\n \"(^|(?![.:/\\\\-_@])(?:[$+<=>^`||]|\" + t.src_ZPCc + \"))((?![$+<=>^`||])\" + t.tpl_host_port_no_ip_fuzzy_strict + t.src_path + \")\", t;\n}\nfunction Cv(e) {\n return Array.prototype.slice.call(arguments, 1).forEach(function(t) {\n t && Object.keys(t).forEach(function(n) {\n e[n] = t[n];\n });\n }), e;\n}\nfunction Jh(e) {\n return Object.prototype.toString.call(e);\n}\nfunction p2e(e) {\n return Jh(e) === \"[object String]\";\n}\nfunction h2e(e) {\n return Jh(e) === \"[object Object]\";\n}\nfunction m2e(e) {\n return Jh(e) === \"[object RegExp]\";\n}\nfunction p8(e) {\n return Jh(e) === \"[object Function]\";\n}\nfunction g2e(e) {\n return e.replace(/[.?*+^$[\\]\\\\(){}|-]/g, \"\\\\$&\");\n}\nconst iB = {\n fuzzyLink: !0,\n fuzzyEmail: !0,\n fuzzyIP: !1\n};\nfunction v2e(e) {\n return Object.keys(e || {}).reduce(function(t, n) {\n return t || iB.hasOwnProperty(n);\n }, !1);\n}\nconst b2e = {\n \"http:\": {\n validate: function(e, t, n) {\n const r = e.slice(t);\n return n.re.http || (n.re.http = new RegExp(\n \"^\\\\/\\\\/\" + n.re.src_auth + n.re.src_host_port_strict + n.re.src_path,\n \"i\"\n )), n.re.http.test(r) ? r.match(n.re.http)[0].length : 0;\n }\n },\n \"https:\": \"http:\",\n \"ftp:\": \"http:\",\n \"//\": {\n validate: function(e, t, n) {\n const r = e.slice(t);\n return n.re.no_http || (n.re.no_http = new RegExp(\n \"^\" + n.re.src_auth + // Don't allow single-level domains, because of false positives like '//test'\n // with code comments\n \"(?:localhost|(?:(?:\" + n.re.src_domain + \")\\\\.)+\" + n.re.src_domain_root + \")\" + n.re.src_port + n.re.src_host_terminator + n.re.src_path,\n \"i\"\n )), n.re.no_http.test(r) ? t >= 3 && e[t - 3] === \":\" || t >= 3 && e[t - 3] === \"/\" ? 0 : r.match(n.re.no_http)[0].length : 0;\n }\n },\n \"mailto:\": {\n validate: function(e, t, n) {\n const r = e.slice(t);\n return n.re.mailto || (n.re.mailto = new RegExp(\n \"^\" + n.re.src_email_name + \"@\" + n.re.src_host_strict,\n \"i\"\n )), n.re.mailto.test(r) ? r.match(n.re.mailto)[0].length : 0;\n }\n }\n}, y2e = \"a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]\", C2e = \"biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф\".split(\"|\");\nfunction x2e(e) {\n e.__index__ = -1, e.__text_cache__ = \"\";\n}\nfunction S2e(e) {\n return function(t, n) {\n const r = t.slice(n);\n return e.test(r) ? r.match(e)[0].length : 0;\n };\n}\nfunction h8() {\n return function(e, t) {\n t.normalize(e);\n };\n}\nfunction sp(e) {\n const t = e.re = f2e(e.__opts__), n = e.__tlds__.slice();\n e.onCompile(), e.__tlds_replaced__ || n.push(y2e), n.push(t.src_xn), t.src_tlds = n.join(\"|\");\n function r(s) {\n return s.replace(\"%TLDS%\", t.src_tlds);\n }\n t.email_fuzzy = RegExp(r(t.tpl_email_fuzzy), \"i\"), t.link_fuzzy = RegExp(r(t.tpl_link_fuzzy), \"i\"), t.link_no_ip_fuzzy = RegExp(r(t.tpl_link_no_ip_fuzzy), \"i\"), t.host_fuzzy_test = RegExp(r(t.tpl_host_fuzzy_test), \"i\");\n const a = [];\n e.__compiled__ = {};\n function i(s, u) {\n throw new Error('(LinkifyIt) Invalid schema \"' + s + '\": ' + u);\n }\n Object.keys(e.__schemas__).forEach(function(s) {\n const u = e.__schemas__[s];\n if (u === null)\n return;\n const l = { validate: null, link: null };\n if (e.__compiled__[s] = l, h2e(u)) {\n m2e(u.validate) ? l.validate = S2e(u.validate) : p8(u.validate) ? l.validate = u.validate : i(s, u), p8(u.normalize) ? l.normalize = u.normalize : u.normalize ? i(s, u) : l.normalize = h8();\n return;\n }\n if (p2e(u)) {\n a.push(s);\n return;\n }\n i(s, u);\n }), a.forEach(function(s) {\n e.__compiled__[e.__schemas__[s]] && (e.__compiled__[s].validate = e.__compiled__[e.__schemas__[s]].validate, e.__compiled__[s].normalize = e.__compiled__[e.__schemas__[s]].normalize);\n }), e.__compiled__[\"\"] = { validate: null, normalize: h8() };\n const o = Object.keys(e.__compiled__).filter(function(s) {\n return s.length > 0 && e.__compiled__[s];\n }).map(g2e).join(\"|\");\n e.re.schema_test = RegExp(\"(^|(?!_)(?:[><|]|\" + t.src_ZPCc + \"))(\" + o + \")\", \"i\"), e.re.schema_search = RegExp(\"(^|(?!_)(?:[><|]|\" + t.src_ZPCc + \"))(\" + o + \")\", \"ig\"), e.re.schema_at_start = RegExp(\"^\" + e.re.schema_search.source, \"i\"), e.re.pretest = RegExp(\n \"(\" + e.re.schema_test.source + \")|(\" + e.re.host_fuzzy_test.source + \")|@\",\n \"i\"\n ), x2e(e);\n}\nfunction _2e(e, t) {\n const n = e.__index__, r = e.__last_index__, a = e.__text_cache__.slice(n, r);\n this.schema = e.__schema__.toLowerCase(), this.index = n + t, this.lastIndex = r + t, this.raw = a, this.text = a, this.url = a;\n}\nfunction xv(e, t) {\n const n = new _2e(e, t);\n return e.__compiled__[n.schema].normalize(n, e), n;\n}\nfunction _a(e, t) {\n if (!(this instanceof _a))\n return new _a(e, t);\n t || v2e(e) && (t = e, e = {}), this.__opts__ = Cv({}, iB, t), this.__index__ = -1, this.__last_index__ = -1, this.__schema__ = \"\", this.__text_cache__ = \"\", this.__schemas__ = Cv({}, b2e, e), this.__compiled__ = {}, this.__tlds__ = C2e, this.__tlds_replaced__ = !1, this.re = {}, sp(this);\n}\n_a.prototype.add = function(e, t) {\n return this.__schemas__[e] = t, sp(this), this;\n};\n_a.prototype.set = function(e) {\n return this.__opts__ = Cv(this.__opts__, e), this;\n};\n_a.prototype.test = function(e) {\n if (this.__text_cache__ = e, this.__index__ = -1, !e.length)\n return !1;\n let t, n, r, a, i, o, s, u, l;\n if (this.re.schema_test.test(e)) {\n for (s = this.re.schema_search, s.lastIndex = 0; (t = s.exec(e)) !== null; )\n if (a = this.testSchemaAt(e, t[2], s.lastIndex), a) {\n this.__schema__ = t[2], this.__index__ = t.index + t[1].length, this.__last_index__ = t.index + t[0].length + a;\n break;\n }\n }\n return this.__opts__.fuzzyLink && this.__compiled__[\"http:\"] && (u = e.search(this.re.host_fuzzy_test), u >= 0 && (this.__index__ < 0 || u < this.__index__) && (n = e.match(this.__opts__.fuzzyIP ? this.re.link_fuzzy : this.re.link_no_ip_fuzzy)) !== null && (i = n.index + n[1].length, (this.__index__ < 0 || i < this.__index__) && (this.__schema__ = \"\", this.__index__ = i, this.__last_index__ = n.index + n[0].length))), this.__opts__.fuzzyEmail && this.__compiled__[\"mailto:\"] && (l = e.indexOf(\"@\"), l >= 0 && (r = e.match(this.re.email_fuzzy)) !== null && (i = r.index + r[1].length, o = r.index + r[0].length, (this.__index__ < 0 || i < this.__index__ || i === this.__index__ && o > this.__last_index__) && (this.__schema__ = \"mailto:\", this.__index__ = i, this.__last_index__ = o))), this.__index__ >= 0;\n};\n_a.prototype.pretest = function(e) {\n return this.re.pretest.test(e);\n};\n_a.prototype.testSchemaAt = function(e, t, n) {\n return this.__compiled__[t.toLowerCase()] ? this.__compiled__[t.toLowerCase()].validate(e, n, this) : 0;\n};\n_a.prototype.match = function(e) {\n const t = [];\n let n = 0;\n this.__index__ >= 0 && this.__text_cache__ === e && (t.push(xv(this, n)), n = this.__last_index__);\n let r = n ? e.slice(n) : e;\n for (; this.test(r); )\n t.push(xv(this, n)), r = r.slice(this.__last_index__), n += this.__last_index__;\n return t.length ? t : null;\n};\n_a.prototype.matchAtStart = function(e) {\n if (this.__text_cache__ = e, this.__index__ = -1, !e.length)\n return null;\n const t = this.re.schema_at_start.exec(e);\n if (!t)\n return null;\n const n = this.testSchemaAt(e, t[2], t[0].length);\n return n ? (this.__schema__ = t[2], this.__index__ = t.index + t[1].length, this.__last_index__ = t.index + t[0].length + n, xv(this, 0)) : null;\n};\n_a.prototype.tlds = function(e, t) {\n return e = Array.isArray(e) ? e : [e], t ? (this.__tlds__ = this.__tlds__.concat(e).sort().filter(function(n, r, a) {\n return n !== a[r - 1];\n }).reverse(), sp(this), this) : (this.__tlds__ = e.slice(), this.__tlds_replaced__ = !0, sp(this), this);\n};\n_a.prototype.normalize = function(e) {\n e.schema || (e.url = \"http://\" + e.url), e.schema === \"mailto:\" && !/^mailto:/i.test(e.url) && (e.url = \"mailto:\" + e.url);\n};\n_a.prototype.onCompile = function() {\n};\nconst Bu = 2147483647, ci = 36, X2 = 1, qc = 26, E2e = 38, w2e = 700, oB = 72, sB = 128, uB = \"-\", T2e = /^xn--/, A2e = /[^\\0-\\x7F]/, N2e = /[\\x2E\\u3002\\uFF0E\\uFF61]/g, O2e = {\n overflow: \"Overflow: input needs wider integers to process\",\n \"not-basic\": \"Illegal input >= 0x80 (not a basic code point)\",\n \"invalid-input\": \"Invalid input\"\n}, Yg = ci - X2, di = Math.floor, Xg = String.fromCharCode;\nfunction Eo(e) {\n throw new RangeError(O2e[e]);\n}\nfunction L2e(e, t) {\n const n = [];\n let r = e.length;\n for (; r--; )\n n[r] = t(e[r]);\n return n;\n}\nfunction lB(e, t) {\n const n = e.split(\"@\");\n let r = \"\";\n n.length > 1 && (r = n[0] + \"@\", e = n[1]), e = e.replace(N2e, \".\");\n const a = e.split(\".\"), i = L2e(a, t).join(\".\");\n return r + i;\n}\nfunction cB(e) {\n const t = [];\n let n = 0;\n const r = e.length;\n for (; n < r; ) {\n const a = e.charCodeAt(n++);\n if (a >= 55296 && a <= 56319 && n < r) {\n const i = e.charCodeAt(n++);\n (i & 64512) == 56320 ? t.push(((a & 1023) << 10) + (i & 1023) + 65536) : (t.push(a), n--);\n } else\n t.push(a);\n }\n return t;\n}\nconst k2e = (e) => String.fromCodePoint(...e), I2e = function(e) {\n return e >= 48 && e < 58 ? 26 + (e - 48) : e >= 65 && e < 91 ? e - 65 : e >= 97 && e < 123 ? e - 97 : ci;\n}, m8 = function(e, t) {\n return e + 22 + 75 * (e < 26) - ((t != 0) << 5);\n}, dB = function(e, t, n) {\n let r = 0;\n for (e = n ? di(e / w2e) : e >> 1, e += di(e / t); e > Yg * qc >> 1; r += ci)\n e = di(e / Yg);\n return di(r + (Yg + 1) * e / (e + E2e));\n}, fB = function(e) {\n const t = [], n = e.length;\n let r = 0, a = sB, i = oB, o = e.lastIndexOf(uB);\n o < 0 && (o = 0);\n for (let s = 0; s < o; ++s)\n e.charCodeAt(s) >= 128 && Eo(\"not-basic\"), t.push(e.charCodeAt(s));\n for (let s = o > 0 ? o + 1 : 0; s < n; ) {\n const u = r;\n for (let c = 1, d = ci; ; d += ci) {\n s >= n && Eo(\"invalid-input\");\n const p = I2e(e.charCodeAt(s++));\n p >= ci && Eo(\"invalid-input\"), p > di((Bu - r) / c) && Eo(\"overflow\"), r += p * c;\n const g = d <= i ? X2 : d >= i + qc ? qc : d - i;\n if (p < g)\n break;\n const v = ci - g;\n c > di(Bu / v) && Eo(\"overflow\"), c *= v;\n }\n const l = t.length + 1;\n i = dB(r - u, l, u == 0), di(r / l) > Bu - a && Eo(\"overflow\"), a += di(r / l), r %= l, t.splice(r++, 0, a);\n }\n return String.fromCodePoint(...t);\n}, pB = function(e) {\n const t = [];\n e = cB(e);\n const n = e.length;\n let r = sB, a = 0, i = oB;\n for (const u of e)\n u < 128 && t.push(Xg(u));\n const o = t.length;\n let s = o;\n for (o && t.push(uB); s < n; ) {\n let u = Bu;\n for (const c of e)\n c >= r && c < u && (u = c);\n const l = s + 1;\n u - r > di((Bu - a) / l) && Eo(\"overflow\"), a += (u - r) * l, r = u;\n for (const c of e)\n if (c < r && ++a > Bu && Eo(\"overflow\"), c === r) {\n let d = a;\n for (let p = ci; ; p += ci) {\n const g = p <= i ? X2 : p >= i + qc ? qc : p - i;\n if (d < g)\n break;\n const v = d - g, b = ci - g;\n t.push(\n Xg(m8(g + v % b, 0))\n ), d = di(v / b);\n }\n t.push(Xg(m8(d, 0))), i = dB(a, l, s === o), a = 0, ++s;\n }\n ++a, ++r;\n }\n return t.join(\"\");\n}, D2e = function(e) {\n return lB(e, function(t) {\n return T2e.test(t) ? fB(t.slice(4).toLowerCase()) : t;\n });\n}, P2e = function(e) {\n return lB(e, function(t) {\n return A2e.test(t) ? \"xn--\" + pB(t) : t;\n });\n}, hB = {\n /**\n * A string representing the current Punycode.js version number.\n * @memberOf punycode\n * @type String\n */\n version: \"2.3.1\",\n /**\n * An object of methods to convert from JavaScript's internal character\n * representation (UCS-2) to Unicode code points, and back.\n * @see \n * @memberOf punycode\n * @type Object\n */\n ucs2: {\n decode: cB,\n encode: k2e\n },\n decode: fB,\n encode: pB,\n toASCII: P2e,\n toUnicode: D2e\n}, M2e = {\n options: {\n // Enable HTML tags in source\n html: !1,\n // Use '/' to close single tags ( )\n xhtmlOut: !1,\n // Convert '\\n' in paragraphs into \n breaks: !1,\n // CSS language prefix for fenced blocks\n langPrefix: \"language-\",\n // autoconvert URL-like texts to links\n linkify: !1,\n // Enable some language-neutral replacements + quotes beautification\n typographer: !1,\n // Double + single quotes replacement pairs, when typographer enabled,\n // and smartquotes on. Could be either a String or an Array.\n //\n // For example, you can use '«»„“' for Russian, '„“‚‘' for German,\n // and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).\n quotes: \"“”‘’\",\n /* “”‘’ */\n // Highlighter function. Should return escaped HTML,\n // or '' if the source string is not changed and should be escaped externaly.\n // If result starts with )\n xhtmlOut: !1,\n // Convert '\\n' in paragraphs into \n breaks: !1,\n // CSS language prefix for fenced blocks\n langPrefix: \"language-\",\n // autoconvert URL-like texts to links\n linkify: !1,\n // Enable some language-neutral replacements + quotes beautification\n typographer: !1,\n // Double + single quotes replacement pairs, when typographer enabled,\n // and smartquotes on. Could be either a String or an Array.\n //\n // For example, you can use '«»„“' for Russian, '„“‚‘' for German,\n // and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).\n quotes: \"“”‘’\",\n /* “”‘’ */\n // Highlighter function. Should return escaped HTML,\n // or '' if the source string is not changed and should be escaped externaly.\n // If result starts with )\n xhtmlOut: !0,\n // Convert '\\n' in paragraphs into \n breaks: !1,\n // CSS language prefix for fenced blocks\n langPrefix: \"language-\",\n // autoconvert URL-like texts to links\n linkify: !1,\n // Enable some language-neutral replacements + quotes beautification\n typographer: !1,\n // Double + single quotes replacement pairs, when typographer enabled,\n // and smartquotes on. Could be either a String or an Array.\n //\n // For example, you can use '«»„“' for Russian, '„“‚‘' for German,\n // and ['«\\xA0', '\\xA0»', '‹\\xA0', '\\xA0›'] for French (including nbsp).\n quotes: \"“”‘’\",\n /* “”‘’ */\n // Highlighter function. Should return escaped HTML,\n // or '' if the source string is not changed and should be escaped externaly.\n // If result starts with = 0))\n try {\n t.hostname = hB.toASCII(t.hostname);\n } catch {\n }\n return Id(z2(t));\n}\nfunction z2e(e) {\n const t = q2(e, !0);\n if (t.hostname && (!t.protocol || mB.indexOf(t.protocol) >= 0))\n try {\n t.hostname = hB.toUnicode(t.hostname);\n } catch {\n }\n return Yu(z2(t), Yu.defaultChars + \"%\");\n}\nfunction Da(e, t) {\n if (!(this instanceof Da))\n return new Da(e, t);\n t || U2(e) || (t = e || {}, e = \"default\"), this.inline = new Pd(), this.block = new Qh(), this.core = new K2(), this.renderer = new fl(), this.linkify = new _a(), this.validateLink = H2e, this.normalizeLink = V2e, this.normalizeLinkText = z2e, this.utils = Gbe, this.helpers = Xh({}, Ybe), this.options = {}, this.configure(e), t && this.set(t);\n}\nDa.prototype.set = function(e) {\n return Xh(this.options, e), this;\n};\nDa.prototype.configure = function(e) {\n const t = this;\n if (U2(e)) {\n const n = e;\n if (e = F2e[n], !e)\n throw new Error('Wrong `markdown-it` preset \"' + n + '\", check name');\n }\n if (!e)\n throw new Error(\"Wrong `markdown-it` preset, can't be empty\");\n return e.options && t.set(e.options), e.components && Object.keys(e.components).forEach(function(n) {\n e.components[n].rules && t[n].ruler.enableOnly(e.components[n].rules), e.components[n].rules2 && t[n].ruler2.enableOnly(e.components[n].rules2);\n }), this;\n};\nDa.prototype.enable = function(e, t) {\n let n = [];\n Array.isArray(e) || (e = [e]), [\"core\", \"block\", \"inline\"].forEach(function(a) {\n n = n.concat(this[a].ruler.enable(e, !0));\n }, this), n = n.concat(this.inline.ruler2.enable(e, !0));\n const r = e.filter(function(a) {\n return n.indexOf(a) < 0;\n });\n if (r.length && !t)\n throw new Error(\"MarkdownIt. Failed to enable unknown rule(s): \" + r);\n return this;\n};\nDa.prototype.disable = function(e, t) {\n let n = [];\n Array.isArray(e) || (e = [e]), [\"core\", \"block\", \"inline\"].forEach(function(a) {\n n = n.concat(this[a].ruler.disable(e, !0));\n }, this), n = n.concat(this.inline.ruler2.disable(e, !0));\n const r = e.filter(function(a) {\n return n.indexOf(a) < 0;\n });\n if (r.length && !t)\n throw new Error(\"MarkdownIt. Failed to disable unknown rule(s): \" + r);\n return this;\n};\nDa.prototype.use = function(e) {\n const t = [this].concat(Array.prototype.slice.call(arguments, 1));\n return e.apply(e, t), this;\n};\nDa.prototype.parse = function(e, t) {\n if (typeof e != \"string\")\n throw new Error(\"Input data should be a String\");\n const n = new this.core.State(e, this, t);\n return this.core.process(n), n.tokens;\n};\nDa.prototype.render = function(e, t) {\n return t = t || {}, this.renderer.render(this.parse(e, t), this.options, t);\n};\nDa.prototype.parseInline = function(e, t) {\n const n = new this.core.State(e, this, t);\n return n.inlineMode = !0, this.core.process(n), n.tokens;\n};\nDa.prototype.renderInline = function(e, t) {\n return t = t || {}, this.renderer.render(this.parseInline(e, t), this.options, t);\n};\nconst q2e = /\\\\([ \\\\!\"#$%&'()*+,./:;<=>?@[\\]^_`{|}~-])/g;\nfunction G2e(e, t) {\n const n = e.posMax, r = e.pos;\n if (e.src.charCodeAt(r) !== 126 || t || r + 2 >= n)\n return !1;\n e.pos = r + 1;\n let a = !1;\n for (; e.pos < n; ) {\n if (e.src.charCodeAt(e.pos) === 126) {\n a = !0;\n break;\n }\n e.md.inline.skipToken(e);\n }\n if (!a || r + 1 === e.pos)\n return e.pos = r, !1;\n const i = e.src.slice(r + 1, e.pos);\n if (i.match(/(^|[^\\\\])(\\\\\\\\)*\\s/))\n return e.pos = r, !1;\n e.posMax = e.pos, e.pos = r + 1;\n const o = e.push(\"sub_open\", \"sub\", 1);\n o.markup = \"~\";\n const s = e.push(\"text\", \"\", 0);\n s.content = i.replace(q2e, \"$1\");\n const u = e.push(\"sub_close\", \"sub\", -1);\n return u.markup = \"~\", e.pos = e.posMax + 1, e.posMax = n, !0;\n}\nfunction U2e(e) {\n e.inline.ruler.after(\"emphasis\", \"sub\", G2e);\n}\nconst W2e = /\\\\([ \\\\!\"#$%&'()*+,./:;<=>?@[\\]^_`{|}~-])/g;\nfunction K2e(e, t) {\n const n = e.posMax, r = e.pos;\n if (e.src.charCodeAt(r) !== 94 || t || r + 2 >= n)\n return !1;\n e.pos = r + 1;\n let a = !1;\n for (; e.pos < n; ) {\n if (e.src.charCodeAt(e.pos) === 94) {\n a = !0;\n break;\n }\n e.md.inline.skipToken(e);\n }\n if (!a || r + 1 === e.pos)\n return e.pos = r, !1;\n const i = e.src.slice(r + 1, e.pos);\n if (i.match(/(^|[^\\\\])(\\\\\\\\)*\\s/))\n return e.pos = r, !1;\n e.posMax = e.pos, e.pos = r + 1;\n const o = e.push(\"sup_open\", \"sup\", 1);\n o.markup = \"^\";\n const s = e.push(\"text\", \"\", 0);\n s.content = i.replace(W2e, \"$1\");\n const u = e.push(\"sup_close\", \"sup\", -1);\n return u.markup = \"^\", e.pos = e.posMax + 1, e.posMax = n, !0;\n}\nfunction Y2e(e) {\n e.inline.ruler.after(\"emphasis\", \"sup\", K2e);\n}\nDa({ html: !0 }).use(Y2e).use(U2e);\nconst X2e = {\n cvPricingToken: \"feeDataKey\"\n};\nfunction Z2e(e, t) {\n var n, r, a;\n return ((a = (r = (n = e == null ? void 0 : e.data) == null ? void 0 : n.target) == null ? void 0 : r.fields) == null ? void 0 : a[t]) ?? \"\";\n}\nfunction Q2e(e) {\n var t, n, r, a, i;\n const o = (i = (a = (r = (n = (t = e == null ? void 0 : e.data) == null ? void 0 : t.target) == null ? void 0 : n.sys) == null ? void 0 : r.contentType) == null ? void 0 : a.sys) == null ? void 0 : i.id, s = X2e[o];\n return s ? Z2e(e, s) : \"\";\n}\nconst J2e = (e) => {\n const t = Q2e(e);\n return typeof t == \"string\" ? t : \"\";\n};\nRu.INLINES.EMBEDDED_ENTRY + \"\", Ru.BLOCKS.PARAGRAPH + \"\";\nRu.MARKS.BOLD + \"\", Ru.MARKS.ITALIC + \"\", Ru.MARKS.UNDERLINE + \"\";\nconst eCe = {\n \"heading-text\": \"_heading-text_1ku76_6\",\n \"heading-text-theme-secondary\": \"_heading-text-theme-secondary_1ku76_38\",\n \"heading-text-balance\": \"_heading-text-balance_1ku76_41\",\n \"heading-text-size-display-0\": \"_heading-text-size-display-0_1ku76_44\",\n \"heading-text-size-display-1\": \"_heading-text-size-display-1_1ku76_55\",\n \"heading-text-size-display-2\": \"_heading-text-size-display-2_1ku76_66\",\n \"heading-text-size-headline-1\": \"_heading-text-size-headline-1_1ku76_77\",\n \"heading-text-size-headline-2\": \"_heading-text-size-headline-2_1ku76_88\",\n \"heading-text-size-headline-3\": \"_heading-text-size-headline-3_1ku76_99\",\n \"heading-text-size-headline-4\": \"_heading-text-size-headline-4_1ku76_110\",\n \"heading-text-size-headline-5\": \"_heading-text-size-headline-5_1ku76_121\",\n \"heading-text-size-headline-6\": \"_heading-text-size-headline-6_1ku76_132\",\n \"heading-text-size-title\": \"_heading-text-size-title_1ku76_143\"\n}, tCe = \"HeadingText\";\nnew da(tCe, eCe);\nconst nCe = {\n \"text-group\": \"_text-group_psn70_1\",\n \"text-group-button\": \"_text-group-button_psn70_1\",\n \"text-group-paragraph\": \"_text-group-paragraph_psn70_4\",\n \"text-group-subheading\": \"_text-group-subheading_psn70_5\",\n \"text-group-legal-text\": \"_text-group-legal-text_psn70_6\",\n \"text-group-eyebrow-text\": \"_text-group-eyebrow-text_psn70_9\",\n \"text-group-alignment-center\": \"_text-group-alignment-center_psn70_12\"\n}, rCe = \"TextGroup\";\nnew da(rCe, nCe);\nconst aCe = () => {\n const [e, t] = ze(!1), n = mp();\n return We(() => {\n n !== null && t(n);\n }, [n]), e;\n};\nvar Sv = /* @__PURE__ */ new Map(), Zg = /* @__PURE__ */ new WeakMap(), g8 = 0, iCe = void 0;\nfunction oCe(e) {\n return e ? (Zg.has(e) || (g8 += 1, Zg.set(e, g8.toString())), Zg.get(e)) : \"0\";\n}\nfunction sCe(e) {\n return Object.keys(e).sort().filter(\n (t) => e[t] !== void 0\n ).map((t) => `${t}_${t === \"root\" ? oCe(e.root) : e[t]}`).toString();\n}\nfunction uCe(e) {\n const t = sCe(e);\n let n = Sv.get(t);\n if (!n) {\n const r = /* @__PURE__ */ new Map();\n let a;\n const i = new IntersectionObserver((o) => {\n o.forEach((s) => {\n var u;\n const l = s.isIntersecting && a.some((c) => s.intersectionRatio >= c);\n e.trackVisibility && typeof s.isVisible > \"u\" && (s.isVisible = l), (u = r.get(s.target)) == null || u.forEach((c) => {\n c(l, s);\n });\n });\n }, e);\n a = i.thresholds || (Array.isArray(e.threshold) ? e.threshold : [e.threshold || 0]), n = {\n id: t,\n observer: i,\n elements: r\n }, Sv.set(t, n);\n }\n return n;\n}\nfunction lCe(e, t, n = {}, r = iCe) {\n if (typeof window.IntersectionObserver > \"u\" && r !== void 0) {\n const u = e.getBoundingClientRect();\n return t(r, {\n isIntersecting: r,\n target: e,\n intersectionRatio: typeof n.threshold == \"number\" ? n.threshold : 0,\n time: 0,\n boundingClientRect: u,\n intersectionRect: u,\n rootBounds: u\n }), () => {\n };\n }\n const { id: a, observer: i, elements: o } = uCe(n), s = o.get(e) || [];\n return o.has(e) || o.set(e, s), s.push(t), i.observe(e), function() {\n s.splice(s.indexOf(t), 1), s.length === 0 && (o.delete(e), i.unobserve(e)), o.size === 0 && (i.disconnect(), Sv.delete(a));\n };\n}\nfunction cCe({\n threshold: e,\n delay: t,\n trackVisibility: n,\n rootMargin: r,\n root: a,\n triggerOnce: i,\n skip: o,\n initialInView: s,\n fallbackInView: u,\n onChange: l\n} = {}) {\n var c;\n const [d, p] = ut.useState(null), g = ut.useRef(), [v, b] = ut.useState({\n inView: !!s,\n entry: void 0\n });\n g.current = l, ut.useEffect(\n () => {\n if (o || !d)\n return;\n let x;\n return x = lCe(\n d,\n (S, E) => {\n b({\n inView: S,\n entry: E\n }), g.current && g.current(S, E), E.isIntersecting && i && x && (x(), x = void 0);\n },\n {\n root: a,\n rootMargin: r,\n threshold: e,\n // @ts-ignore\n trackVisibility: n,\n // @ts-ignore\n delay: t\n },\n u\n ), () => {\n x && x();\n };\n },\n // We break the rule here, because we aren't including the actual `threshold` variable\n // eslint-disable-next-line react-hooks/exhaustive-deps\n [\n // If the threshold is an array, convert it to a string, so it won't change between renders.\n Array.isArray(e) ? e.toString() : e,\n d,\n a,\n r,\n i,\n o,\n n,\n u,\n t\n ]\n );\n const C = (c = v.entry) == null ? void 0 : c.target, w = ut.useRef();\n !d && C && !i && !o && w.current !== C && (w.current = C, b({\n inView: !!s,\n entry: void 0\n }));\n const _ = [p, v.inView, v.entry];\n return _.ref = _[0], _.inView = _[1], _.entry = _[2], _;\n}\nconst dCe = {\n minHeight: \"18.75rem\",\n minWidth: \"auto\"\n}, fCe = ({\n rootMargin: e = \"700px 0px\"\n}) => ({\n rootMargin: e,\n triggerOnce: !0,\n threshold: 0\n}), pCe = ({\n children: e,\n className: t,\n containerDimensions: n = dCe,\n rootRef: r,\n rootMargin: a\n}) => {\n const { inView: i, ref: o } = cCe(\n fCe({ rootMargin: a })\n ), s = sr(\n (u) => {\n const l = r && \"current\" in r;\n typeof r == \"function\" ? r(u) : l && (r.current = u), o(u);\n },\n [o, r]\n );\n return /* @__PURE__ */ h.jsx(\"div\", { ref: s, className: t, style: n, children: i && e });\n}, hCe = {\n \"media-control-wrapper\": \"_media-control-wrapper_34mt4_1\",\n \"media-control-wrapper-outline\": \"_media-control-wrapper-outline_34mt4_17\",\n \"media-control-wrapper-inverse\": \"_media-control-wrapper-inverse_34mt4_20\",\n \"media-control-wrapper-size-small\": \"_media-control-wrapper-size-small_34mt4_23\",\n \"media-control-play-svg-small\": \"_media-control-play-svg-small_34mt4_24\",\n \"media-control-wrapper-size-large\": \"_media-control-wrapper-size-large_34mt4_28\",\n \"media-control-play-svg-large\": \"_media-control-play-svg-large_34mt4_29\",\n \"media-control-wrapper-size-x-large\": \"_media-control-wrapper-size-x-large_34mt4_33\",\n \"media-control-play-svg-x-large\": \"_media-control-play-svg-x-large_34mt4_34\",\n \"media-control-play-svg\": \"_media-control-play-svg_34mt4_24\",\n \"media-control-circle\": \"_media-control-circle_34mt4_41\",\n \"media-control-circle-inverse\": \"_media-control-circle-inverse_34mt4_44\",\n \"media-control-triangle-inverse\": \"_media-control-triangle-inverse_34mt4_56\",\n \"media-control-play-svg-outline-inverse\": \"_media-control-play-svg-outline-inverse_34mt4_59\",\n \"media-control-play-svg-outline\": \"_media-control-play-svg-outline_34mt4_59\"\n}, gB = \"MediaControl\", Xn = new da(gB, hCe), vB = Lt(\n ({\n className: e,\n playing: t,\n size: n = \"Large\",\n inverse: r = !1,\n outline: a = !1,\n videoId: i = \"\",\n analyticsCompName: o,\n analyticsVideoText: s = \"video\",\n playAriaLabel: u = \"Play video\",\n pauseAriaLabel: l = \"Pause video\",\n hasAriaPopup: c = !1,\n mediaClick: d\n }, p) => {\n const { pageSegment: g } = Ze(R2), v = t ? l : u, b = t ? \"Started\" : \"Stopped\", C = r && a, w = P1e(\n o ? `${o}-media` : \"media\",\n s,\n i,\n b,\n g\n ), _ = Br(\n e,\n Xn.getComponentClassName(),\n Xn.getElementClassName(\"wrapper\"),\n {\n [Xn.getElementClassName(\"wrapper-inverse\")]: r,\n [Xn.getElementClassName(\"wrapper-outline\")]: a\n },\n Xn.getPropsValueClassName(\"wrapperSize\", n)\n ), x = () => {\n const P = Br(\n Xn.getElementClassName(\"play-svg\"),\n Xn.getPropsValueClassName(\"playSvg\", n)\n ), H = Br(Xn.getElementClassName(\"circle\"), {\n [Xn.getElementClassName(\"circle-inverse\")]: r\n }), k = Br({\n [Xn.getElementClassName(\"triangle-inverse\")]: r\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: H,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207V0.512207C62.0914 0.512207 80 18.4208 80 40.5122V40.5122C80 62.6036 62.0914 80.5122 40 80.5122V80.5122C17.9086 80.5122 0 62.6036 0 40.5122V40.5122Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: k,\n d: \"M29.3164 50.4622V32.1643C29.3164 28.8916 32.9162 26.8965 35.6914 28.631L50.3297 37.7799C52.9409 39.4119 52.9409 43.2146 50.3297 44.8466L35.6914 53.9955C32.9162 55.73 29.3164 53.7349 29.3164 50.4622Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n }, S = () => {\n const P = Br(\n Xn.getElementClassName(\"play-svg\"),\n Xn.getPropsValueClassName(\"playSvg\", n)\n ), H = Br(Xn.getElementClassName(\"circle\"), {\n [Xn.getElementClassName(\"circle-inverse\")]: r\n }), k = Br({\n [Xn.getElementClassName(\"triangle-inverse\")]: r\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: H,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207C62.0914 0.512207 80 18.4208 80 40.5122C80 62.6036 62.0914 80.5122 40 80.5122C17.9086 80.5122 0 62.6036 0 40.5122Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: k,\n d: \"M35.191 27.9797H35.5115C37.0161 27.9797 38.2359 29.1073 38.2359 30.4983V52.1279C38.2359 53.5188 37.0161 54.6464 35.5115 54.6464H35.191C33.6864 54.6464 32.4666 53.5188 32.4666 52.1279V30.4983C32.4666 29.1073 33.6864 27.9797 35.191 27.9797ZM46.0884 27.9797H46.4089C47.9136 27.9797 49.1333 29.1073 49.1333 30.4983V52.1279C49.1333 53.5188 47.9136 54.6464 46.4089 54.6464H46.0884C44.5838 54.6464 43.3641 53.5188 43.3641 52.1279V30.4983C43.3641 29.1073 44.5838 27.9797 46.0884 27.9797Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n }, E = t ? (() => {\n const P = Br(\n Xn.getElementClassName(\"play-svg-outline\"),\n {\n [Xn.getElementClassName(\"play-svg-outline-inverse\")]: C\n },\n Xn.getPropsValueClassName(\"playSvg\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M35.191 27.4675H35.5115C37.0161 27.4675 38.2359 28.5951 38.2359 29.986V51.6157C38.2359 53.0066 37.0161 54.1342 35.5115 54.1342H35.191C33.6864 54.1342 32.4666 53.0066 32.4666 51.6157V29.986C32.4666 28.5951 33.6864 27.4675 35.191 27.4675ZM46.0884 27.4675H46.4089C47.9136 27.4675 49.1333 28.5951 49.1333 29.986V51.6157C49.1333 53.0066 47.9136 54.1342 46.4089 54.1342H46.0884C44.5838 54.1342 43.3641 53.0066 43.3641 51.6157V29.986C43.3641 28.5951 44.5838 27.4675 46.0884 27.4675Z\",\n fill: \"#001435\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M40 78C19.0132 78 2 60.9868 2 40H-2C-2 63.196 16.804 82 40 82V78ZM78 40C78 60.9868 60.9868 78 40 78V82C63.196 82 82 63.196 82 40H78ZM40 2C60.9868 2 78 19.0132 78 40H82C82 16.804 63.196 -2 40 -2V2ZM40 -2C16.804 -2 -2 16.804 -2 40H2C2 19.0132 19.0132 2 40 2V-2Z\",\n fill: \"#001435\"\n }\n )\n ]\n }\n );\n })() : (() => {\n const P = Br(\n Xn.getElementClassName(\"play-svg-outline\"),\n {\n [Xn.getElementClassName(\"play-svg-outline-inverse\")]: C\n },\n Xn.getPropsValueClassName(\"playSvg\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M40 78C19.0132 78 2 60.9868 2 40H-2C-2 63.196 16.804 82 40 82V78ZM78 40C78 60.9868 60.9868 78 40 78V82C63.196 82 82 63.196 82 40H78ZM40 2C60.9868 2 78 19.0132 78 40H82C82 16.804 63.196 -2 40 -2V2ZM40 -2C16.804 -2 -2 16.804 -2 40H2C2 19.0132 19.0132 2 40 2V-2Z\",\n fill: \"#001435\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M29.3164 49.95V31.6521C29.3164 28.3794 32.9162 26.3843 35.6914 28.1188L50.3297 37.2677C52.9409 38.8997 52.9409 42.7024 50.3297 44.3344L35.6914 53.4833C32.9162 55.2178 29.3164 53.2227 29.3164 49.95Z\",\n fill: \"#001435\"\n }\n )\n ]\n }\n );\n })(), N = t ? S() : x();\n return /* @__PURE__ */ h.jsx(\n \"button\",\n {\n ref: p,\n \"aria-label\": v,\n \"aria-haspopup\": c,\n type: \"button\",\n \"data-pa-click\": o && w,\n className: _,\n onClick: d,\n children: a ? E : N\n }\n );\n }\n);\nvB.displayName = gB;\nconst mCe = (e = []) => e.map(({ src: t, type: n }) => /* @__PURE__ */ h.jsx(\"source\", { src: t, type: n }, t)), gCe = (e) => {\n var t;\n const n = (t = e[0]) == null ? void 0 : t.src;\n return n == null ? void 0 : n.substring(n.lastIndexOf(\"/\") + 1).replace(/\\..+$/, \"\");\n}, vCe = ({\n videoRef: e,\n setInlineVideoPlaying: t,\n setIsVideoDurationAvailable: n\n}) => {\n const r = () => {\n e.current && (n(!1), t(!1), e.current.currentTime = 0, e.current.load());\n }, a = (d) => {\n e.current && (e.current.currentTime = d);\n }, i = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.currentTime) ?? 0;\n }, o = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.duration) ?? 0;\n }, s = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.readyState) ?? 0;\n }, u = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.seeking) ?? !1;\n }, l = async () => {\n e.current && (await e.current.play(), t(!0));\n }, c = () => {\n e.current && (e.current.pause(), t(!1));\n };\n return {\n playVideo: l,\n pauseVideo: c,\n setCurrentTime: a,\n getCurrentTime: i,\n getDuration: o,\n getReadyState: s,\n getIsSeeking: u,\n loadVideoAndResetState: r,\n handleInlineVideoState: (d) => {\n d === \"play\" ? l() : c();\n }\n };\n}, bCe = () => {\n if (typeof window > \"u\" || typeof window.navigator > \"u\")\n return !1;\n const { userAgent: e } = navigator, t = e.toLowerCase(), n = t.indexOf(\"safari\") > -1, r = t.indexOf(\"chrome\") > -1, a = /iPad|iPhone|iPod/i.test(e);\n return (n || a) && !r;\n}, yCe = () => {\n if (typeof window > \"u\" || typeof window.navigator > \"u\")\n return !1;\n const { userAgent: e } = navigator;\n return /firefox/i.test(e);\n}, CCe = ({\n autoPlay: e,\n forwardedVideoRef: t,\n isViewportTypeMismatch: n,\n hasMultipleVideoSources: r\n}) => {\n const a = Ue(null), i = Ue(!1), o = Ue(!1), s = aCe(), [u, l] = ze(!1), [c, d] = ze(!1), p = a == null ? void 0 : a.current, g = (p == null ? void 0 : p.duration) || 0, v = g && g > 5, {\n playVideo: b,\n pauseVideo: C,\n setCurrentTime: w,\n getCurrentTime: _,\n getDuration: x,\n getReadyState: S,\n getIsSeeking: E,\n loadVideoAndResetState: N,\n handleInlineVideoState: P\n } = vCe({\n videoRef: a,\n setInlineVideoPlaying: d,\n setIsVideoDurationAvailable: l\n });\n N8(\n t,\n () => ({\n playVideo: b,\n pauseVideo: C,\n setCurrentTime: w,\n getCurrentTime: _,\n getDuration: x,\n getReadyState: S,\n getIsSeeking: E\n }),\n [u]\n );\n const H = () => {\n o.current && !e && (b(), o.current = !1);\n }, k = sr((Q) => {\n Q !== null && (a.current = Q, Q.duration && l(!0));\n }, []);\n return We(() => {\n if (!i.current) {\n if (n === null)\n return;\n i.current = !0;\n }\n r && !bCe() && N();\n }, [n, r]), We(() => {\n u && (s && v || !e ? C() : b());\n }, [u, e]), {\n videoRef: a,\n videoLoadRef: k,\n isLargeDuration: v,\n handleInlineVideoState: P,\n inlineVideoPlaying: c,\n setInlineVideoPlaying: d,\n isVideoDurationAvailable: u,\n setIsVideoDurationAvailable: l,\n onVideoFullyLoaded: H\n };\n}, ql = {\n sm: \"23.4375rem\",\n md: \"41.0625rem\",\n lg: \"64rem\",\n xl: \"91.875rem\",\n \"2xl\": \"120rem\"\n}, Gl = {\n xs: \"23.375rem\",\n sm: \"41rem\",\n md: \"63.9375rem\",\n lg: \"91.8125rem\",\n xl: \"119.9375rem\"\n}, xCe = ({\n mediaQueryTypeKeys: e,\n mediaQueryMap: t,\n setViewportTypeObj: n\n}) => e.map((r) => [t[r], (a) => {\n a.matches && n((i) => ({\n ...i,\n viewportType: r\n }));\n}]), SCe = () => {\n const { initialViewport: e } = Ze(R2), [t, n] = ze({\n viewportType: e || \"sm\",\n isViewportTypeMismatch: null\n });\n return We(() => {\n const r = {\n xs: window.matchMedia(`(max-width: ${Gl.xs})`),\n sm: window.matchMedia(\n `(min-width: ${ql.sm}) and (max-width: ${Gl.sm})`\n ),\n md: window.matchMedia(\n `(min-width: ${ql.md}) and (max-width: ${Gl.md})`\n ),\n lg: window.matchMedia(\n `(min-width: ${ql.lg}) and (max-width: ${Gl.lg})`\n ),\n xl: window.matchMedia(\n `(min-width: ${ql.xl}) and (max-width: ${Gl.xl})`\n ),\n \"2xl\": window.matchMedia(`(min-width: ${ql[\"2xl\"]})`)\n }, a = Object.keys(r), i = xCe({\n mediaQueryTypeKeys: a,\n mediaQueryMap: r,\n viewportTypeObj: t,\n setViewportTypeObj: n\n });\n i.forEach(([u, l]) => {\n u.addEventListener ? u.addEventListener(\"change\", l) : u.addListener(l);\n });\n const o = a.find((u) => r[u].matches), s = t.viewportType !== o;\n return n({\n viewportType: o || \"sm\",\n isViewportTypeMismatch: s\n }), () => {\n i.forEach(([u, l]) => {\n u.removeEventListener ? u.removeEventListener(\"change\", l) : u.removeListener(l);\n });\n };\n }, []), t;\n}, _Ce = (e) => {\n const t = [...e];\n if (yCe()) {\n const n = t.findIndex(\n (r) => r.type === \"video/webm\"\n );\n if (n !== -1) {\n const r = t[n];\n t.splice(n, 1), t.unshift(r);\n }\n }\n return t;\n}, ECe = ({\n viewportType: e,\n baseVideoCollection: t,\n tabletVideoCollection: n,\n desktopVideoCollection: r,\n imageUrlBase: a,\n imageUrlTablet: i,\n imageUrlDesktop: o,\n altText: s\n}) => {\n let u = [], l = \"\", c = \"\";\n if (!(n || t || r))\n return {\n videoSourceCollection: u,\n videoName: l\n };\n const d = [\"xs\", \"sm\"].includes(e), p = e === \"md\", g = (b) => b ?? \"\";\n d ? (u = t ?? [], c = g(a)) : p ? (u = n ?? t ?? [], c = g(i ?? a)) : (u = r ?? n ?? t ?? [], c = g(\n o ?? i ?? a\n )), l = gCe(u);\n const v = _Ce(\n u\n );\n return {\n altTextLabel: s,\n videoSourceCollection: v.map((b) => ({\n ...b,\n src: `${b.src}#t=0.01`\n })),\n videoName: l,\n posterImageUrl: c\n };\n}, wCe = ({\n baseVideoCollection: e,\n tabletVideoCollection: t,\n desktopVideoCollection: n,\n imageUrlBase: r,\n imageUrlTablet: a,\n imageUrlDesktop: i,\n altText: o\n}) => {\n const { viewportType: s, isViewportTypeMismatch: u } = SCe();\n return {\n ...wt(\n () => ECe({\n viewportType: s,\n baseVideoCollection: e,\n tabletVideoCollection: t,\n desktopVideoCollection: n,\n imageUrlBase: r,\n imageUrlTablet: a,\n imageUrlDesktop: i,\n altText: o\n }),\n [s]\n ),\n viewportType: s,\n isViewportTypeMismatch: u\n };\n}, TCe = {\n \"inline-video\": \"_inline-video_8520u_1\"\n}, bB = \"InlineVideo\", ACe = new da(bB, TCe), yB = Lt(\n ({\n className: e,\n onEnded: t,\n onPlaying: n,\n onLoadedMetadata: r,\n onCanPlayThrough: a,\n autoPlay: i = !1,\n loop: o = !0,\n posterImageUrl: s,\n ariaLabel: u,\n quality: l = 75,\n disableRemotePlayback: c = !0,\n children: d,\n preload: p,\n ...g\n }, v) => {\n const b = Br(e, ACe.getComponentClassName()), C = {};\n return u && (C[\"aria-label\"] = u), s && (C.poster = `${s}?quality=${l}`), /* @__PURE__ */ h.jsxs(\n \"video\",\n {\n className: b,\n playsInline: !0,\n muted: !0,\n onEnded: t,\n onPlaying: n,\n onLoadedMetadata: r,\n disableRemotePlayback: c,\n disablePictureInPicture: !0,\n ref: v,\n autoPlay: i,\n loop: o,\n preload: p,\n ...C,\n ...g,\n children: [\n d,\n /* @__PURE__ */ h.jsx(\"track\", { kind: \"captions\" })\n ]\n }\n );\n }\n);\nyB.displayName = bB;\nconst NCe = {\n \"inline-video-overlay\": \"_inline-video-overlay_1slkw_1\"\n}, CB = \"InlineVideoOverlay\", OCe = new da(CB, NCe), xB = ({\n className: e\n}) => {\n const t = Br(e, OCe.getComponentClassName());\n return /* @__PURE__ */ h.jsx(\"div\", { className: t });\n};\nxB.displayName = CB;\nconst LCe = {\n \"video-frame\": \"_video-frame_7p40v_1\",\n \"video-frame-rounded-corners\": \"_video-frame-rounded-corners_7p40v_4\",\n \"video-frame-wrapper\": \"_video-frame-wrapper_7p40v_4\",\n \"video-frame-hide\": \"_video-frame-hide_7p40v_24\",\n \"video-frame-show\": \"_video-frame-show_7p40v_27\",\n \"video-frame-controls-container\": \"_video-frame-controls-container_7p40v_30\",\n \"video-frame-video-duration\": \"_video-frame-video-duration_7p40v_33\",\n \"video-frame-wrapper-media-control-disable\": \"_video-frame-wrapper-media-control-disable_7p40v_53\",\n \"video-frame-main-controls-container\": \"_video-frame-main-controls-container_7p40v_72\",\n \"video-frame-body-text\": \"_video-frame-body-text_7p40v_84\",\n \"video-frame-button-text-inverse\": \"_video-frame-button-text-inverse_7p40v_89\",\n \"video-frame-youtube-video\": \"_video-frame-youtube-video_7p40v_92\",\n \"video-frame-video-md\": \"_video-frame-video-md_7p40v_102\",\n \"video-frame-video-base\": \"_video-frame-video-base_7p40v_106\",\n \"video-cursor-pointer\": \"_video-cursor-pointer_7p40v_135\"\n}, SB = \"VideoFrame\", Cu = new da(SB, LCe), v8 = Lt(\n ({\n baseVideoCollection: e,\n // Mobile Video\n tabletVideoCollection: t,\n // Tablet Video\n desktopVideoCollection: n,\n // Desktop Video\n mediaControl: r,\n imageUrlDesktop: a,\n imageUrlTablet: i,\n imageUrlBase: o,\n altText: s,\n autoPlay: u = !1,\n loop: l = !1,\n inverse: c = !1,\n buttonStyle: d = \"Outline\",\n overlay: p = !1,\n imageServerKnobs: g = {},\n analyticsCompName: v,\n disableRemotePlayback: b = !0,\n disableMediaControl: C = !1,\n onLoadedMetadata: w,\n onPlaying: _,\n preload: x = \"auto\"\n }, S) => {\n var E;\n const N = !!(t != null && t.length) || !!(n != null && n.length), {\n videoName: P,\n videoSourceCollection: H,\n altTextLabel: k,\n posterImageUrl: Q,\n isViewportTypeMismatch: I\n } = wCe({\n baseVideoCollection: e,\n tabletVideoCollection: t,\n desktopVideoCollection: n,\n imageUrlBase: o,\n imageUrlDesktop: a,\n imageUrlTablet: i,\n altText: s\n }), {\n videoLoadRef: G,\n inlineVideoPlaying: $,\n setInlineVideoPlaying: z,\n isLargeDuration: B,\n handleInlineVideoState: O,\n setIsVideoDurationAvailable: D\n } = CCe({\n autoPlay: u,\n forwardedVideoRef: S,\n isViewportTypeMismatch: I,\n hasMultipleVideoSources: N\n }), T = !!n || !!t || !!e, { quality: j = 50 } = g, F = Br(\n Cu.getElementClassName(\"controls-container\"),\n {\n [Cu.getElementClassName(\"video-duration\")]: B\n }\n ), L = wt(() => mCe(H), [(E = H[0]) == null ? void 0 : E.src]);\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: Br(\n Cu.getElementClassName(\"wrapper\"),\n Cu.getPropsValueClassName(\n \"wrapperMediaControlDisable\",\n C\n )\n ),\n onClick: () => {\n O($ ? \"pause\" : \"play\");\n },\n role: \"none\",\n children: [\n p && /* @__PURE__ */ h.jsx(xB, {}),\n T && /* @__PURE__ */ h.jsx(\n yB,\n {\n ref: G,\n onEnded: () => z(!1),\n onPlaying: () => {\n z(!0), typeof _ == \"function\" && _();\n },\n onLoadedMetadata: () => {\n D(!0), typeof w == \"function\" && w();\n },\n autoPlay: !1,\n posterImageUrl: Q,\n loop: l,\n ariaLabel: k,\n disableRemotePlayback: b,\n preload: x,\n children: L\n }\n ),\n !T && /* @__PURE__ */ h.jsx(\n \"img\",\n {\n alt: k,\n src: Q && `${Q}?quality=${j}`\n }\n ),\n T && !C && /* @__PURE__ */ h.jsx(\"div\", { className: F, children: /* @__PURE__ */ h.jsx(\n vB,\n {\n mediaClick: (q) => {\n q.stopPropagation(), O($ ? \"pause\" : \"play\");\n },\n videoId: P,\n size: \"Small\",\n inverse: c,\n playing: $,\n outline: d === \"Outline\",\n playAriaLabel: r == null ? void 0 : r.playAriaLabel,\n pauseAriaLabel: r == null ? void 0 : r.pauseAriaLabel,\n analyticsCompName: v\n }\n ) })\n ]\n }\n );\n }\n), kCe = Lt(\n ({\n loading: e = \"lazy\",\n dimensions: t = {\n minHeight: \"auto\",\n minWidth: \"auto\"\n },\n lazyLoadProps: n = {},\n className: r,\n roundedCorners: a = !1,\n ...i\n }, o) => {\n const s = Br(\n r,\n Cu.getComponentClassName(),\n Cu.getPropsValueClassName(\"roundedCorners\", a)\n );\n return e === \"lazy\" ? /* @__PURE__ */ h.jsx(\n pCe,\n {\n className: s,\n containerDimensions: t,\n ...n,\n children: /* @__PURE__ */ h.jsx(v8, { ...i, ref: o })\n }\n ) : /* @__PURE__ */ h.jsx(\"div\", { className: s, children: /* @__PURE__ */ h.jsx(v8, { ...i, ref: o }) });\n }\n);\nkCe.displayName = SB;\nconst ICe = {\n \"hero-video-animation-video-container\": \"_hero-video-animation-video-container_1jm9h_1\",\n \"hero-video-animation-image-container\": \"_hero-video-animation-image-container_1jm9h_13\"\n}, DCe = \"HeroVideoAnimation\";\nnew da(DCe, ICe);\nconst up = {\n exit: \"exit\",\n reEntry: \"reEntry\"\n}, b8 = {\n ease: \"easeInOut\",\n duration: 0.7\n}, Qg = {\n [up.exit]: {\n translateY: \"40px\",\n opacity: 0,\n transition: b8\n },\n [up.reEntry]: {\n translateY: \"0px\",\n opacity: 1,\n transition: b8\n }\n};\n({\n ...Qg,\n [up.exit]: {\n ...Qg.exit\n },\n [up.reEntry]: {\n ...Qg.reEntry\n }\n});\nconst PCe = {\n \"hero-homepage-stack\": \"_hero-homepage-stack_2yf5k_2\",\n \"hero-homepage-stack-reduce-motion\": \"_hero-homepage-stack-reduce-motion_2yf5k_10\",\n \"hero-homepage-stack-sticky-container\": \"_hero-homepage-stack-sticky-container_2yf5k_13\",\n \"hero-homepage-stack-theme-white\": \"_hero-homepage-stack-theme-white_2yf5k_16\",\n \"hero-homepage-stack-theme-stone\": \"_hero-homepage-stack-theme-stone_2yf5k_22\",\n \"hero-homepage-stack-theme-slate\": \"_hero-homepage-stack-theme-slate_2yf5k_28\",\n \"hero-homepage-stack-theme-slate-gradient\": \"_hero-homepage-stack-theme-slate-gradient_2yf5k_29\",\n \"hero-homepage-stack-segment-control-group-wrapper\": \"_hero-homepage-stack-segment-control-group-wrapper_2yf5k_57\",\n \"hero-homepage-stack-segment-control-group\": \"_hero-homepage-stack-segment-control-group_2yf5k_57\",\n \"hero-homepage-stack-header-and-video-entry-animation\": \"_hero-homepage-stack-header-and-video-entry-animation_2yf5k_74\",\n \"header-and-video-entry\": \"_header-and-video-entry_2yf5k_1\",\n \"hero-homepage-stack-segment-control-group-entry-animation\": \"_hero-homepage-stack-segment-control-group-entry-animation_2yf5k_92\",\n \"segment-control-group-entry\": \"_segment-control-group-entry_2yf5k_1\"\n}, MCe = \"HeroHomepageStack\";\nnew da(MCe, PCe);\nvar RCe = Object.defineProperty, BCe = (e, t, n) => t in e ? RCe(e, t, { enumerable: !0, configurable: !0, writable: !0, value: n }) : e[t] = n, y8 = (e, t, n) => (BCe(e, typeof t != \"symbol\" ? t + \"\" : t, n), n);\nSa({ html: !0 }).use(fk).use(dk);\nFp.Parser();\nFp.ProcessNodeDefinitions();\nconst FCe = {\n cvPricingToken: \"feeDataKey\"\n};\nfunction jCe(e, t) {\n var n, r, a;\n return ((a = (r = (n = e == null ? void 0 : e.data) == null ? void 0 : n.target) == null ? void 0 : r.fields) == null ? void 0 : a[t]) ?? \"\";\n}\nfunction $Ce(e) {\n var t, n, r, a, i;\n const o = (i = (a = (r = (n = (t = e == null ? void 0 : e.data) == null ? void 0 : t.target) == null ? void 0 : n.sys) == null ? void 0 : r.contentType) == null ? void 0 : a.sys) == null ? void 0 : i.id, s = FCe[o];\n return s ? jCe(e, s) : \"\";\n}\nconst HCe = (e) => {\n const t = $Ce(e);\n return typeof t == \"string\" ? t : \"\";\n};\nya.INLINES.EMBEDDED_ENTRY + \"\", ya.BLOCKS.PARAGRAPH + \"\";\nya.MARKS.BOLD + \"\", ya.MARKS.ITALIC + \"\", ya.MARKS.UNDERLINE + \"\";\nclass pl {\n constructor(t, n) {\n y8(this, \"componentName\"), y8(this, \"styles\"), this.componentName = Un(t), this.styles = n;\n }\n getFinalClassName(t) {\n return this.styles ? this.styles[t] || `_${t}_` : t;\n }\n /**\n * @returns The formatted class name of the component\n &&\n * @example\n * classNameGen.getElementClassName();\n * // \"hero\"\n *\n * @example\n * classNameGen.getElementClassName();\n * // \"_hero_1xr4a_1\" -> When CSS Module `styles` object was used.\n *\n */\n getComponentClassName() {\n return this.getFinalClassName(this.componentName);\n }\n /**\n * @param elementName - The name of the element you want to style\n * @returns A formatted class name base on the provided element name\n *\n * @example\n * classNameGen.getElementClassName('content-col');\n * // \"hero-content-col\"\n *\n * @example\n * classNameGen.getElementClassName('content-col');\n * // \"_hero-content-col_1xr4a_1\" -> When CSS Module `styles` object was used.\n */\n getElementClassName(t) {\n const n = Un(t), r = `${this.componentName}-${n}`;\n return this.getFinalClassName(r);\n }\n /**\n * @param propsKey - The name of your component prop\n * @param propsValue - The value of your component prop\n * @returns A formatted class name based on the provided prop value\n *\n * @example\n * classNameGen.getPropsValueClassName('itemsAlignment', 'Vertical-Center');\n * // \"hero-items-alignment-vertical-center\"\n *\n * @example\n * classNameGen.getPropsValueClassName('itemsAlignment', 'Vertical-Center');\n * // \"_hero-items-alignment-vertical-center_1xr4a_1\" -> When CSS Module `styles` object was used.\n */\n getPropsValueClassName(t, n) {\n const r = Un(t), a = typeof n == \"string\", i = typeof n == \"boolean\", o = a || i;\n let s = \"\";\n if (!o)\n s = `${this.componentName}-${r}`;\n else if (i)\n s = n ? `${this.componentName}-${r}` : `${this.componentName}-no-${r}`;\n else {\n const u = Un(n);\n s = `${this.componentName}-${r}-${u}`;\n }\n return this.getFinalClassName(s);\n }\n}\nconst VCe = {\n \"0.25rem\": \"fixed-xs\",\n \"0.375rem\": \"fixed-sm\",\n \"0.5rem\": \"fixed-md\",\n \"0.75rem\": \"fixed-lg\",\n \"1rem\": \"fixed-xl\",\n \"1.5rem\": \"fixed-2xl\",\n \"2rem\": \"fixed-3xl\",\n \"3rem\": \"fixed-4xl\",\n \"4.5rem\": \"fixed-5xl\"\n}, zCe = {\n \"2vw\": \"fluid-sm\",\n \"4vw\": \"fluid-md\",\n \"6vw\": \"fluid-lg\",\n \"8vw\": \"fluid-xl\",\n \"12vw\": \"fluid-2xl\",\n \"16vw\": \"fluid-3xl\"\n}, qCe = {\n ...VCe,\n ...zCe,\n none: \"0\"\n}, _B = {\n bottomSpacing: \"pb\",\n topSpacing: \"pt\"\n}, Gc = ({\n optionValue: e\n}) => qCe[e], EB = {\n bottomSpacing: {\n transformType: \"direct\",\n transformFunction: Gc\n },\n topSpacing: {\n transformType: \"direct\",\n transformFunction: Gc\n }\n}, GCe = (e, t) => t === \"sm\" ? e : e.map((n) => `${t}:${n}`), wB = ({\n gridSystemOptionPrefixMap: e,\n gridSystemOptionValueTransformMap: t\n}) => {\n const n = ({\n gridSystemOptions: r,\n breakpoint: a\n }) => {\n const i = [];\n return Object.entries(r).forEach(([o, s]) => {\n const u = e[o], l = t[o];\n if (!u || !l)\n return;\n const { transformType: c, transformFunction: d } = l, p = d(c === \"direct\" ? {\n optionValue: s\n } : {\n optionValue: s,\n options: r,\n breakpoint: a\n });\n p && i.push(\n `${u}-${p}`\n );\n }), i;\n };\n return {\n getGridSystemResponsiveClasses: (r) => r.reduce(\n (a, i) => {\n const { options: o, breakpoint: s } = i, u = n({\n gridSystemOptions: o,\n breakpoint: s\n });\n return u.length && a.push(\n ...GCe(u, s)\n ), a;\n },\n []\n )\n };\n}, UCe = {\n ..._B,\n bottomMargin: \"mb\",\n topMargin: \"mt\",\n rowsGap: \"gap\"\n}, WCe = ({ optionValue: e, options: t = {} }) => {\n if (e === \"default\")\n return \"default\";\n const n = t.rowsGapValue || \"none\";\n return Gc({ optionValue: n });\n}, KCe = {\n ...EB,\n bottomMargin: {\n transformType: \"direct\",\n transformFunction: Gc\n },\n topMargin: {\n transformType: \"direct\",\n transformFunction: Gc\n },\n rowsGap: {\n transformType: \"custom\",\n transformFunction: WCe\n }\n}, { getGridSystemResponsiveClasses: YCe } = (\n // @ts-expect-error - We need to fix this error\n wB({\n gridSystemOptionPrefixMap: UCe,\n gridSystemOptionValueTransformMap: KCe\n })\n), XCe = \"_grid_bhcu0_4\", ZCe = {\n grid: XCe\n}, TB = \"Grid\", QCe = new pl(TB, ZCe), AB = Lt(\n ({\n className: e,\n children: t,\n as: n = \"section\",\n options: r = {},\n mdOptions: a = {},\n lgOptions: i = {},\n xlOptions: o = {},\n twoXlOptions: s = {},\n ...u\n }, l) => {\n const c = YCe([\n { options: r, breakpoint: \"sm\" },\n { options: a, breakpoint: \"md\" },\n { options: i, breakpoint: \"lg\" },\n { options: o, breakpoint: \"xl\" },\n { options: s, breakpoint: \"2xl\" }\n ]), d = se(\n e,\n QCe.getComponentClassName(),\n c\n );\n return /* @__PURE__ */ h.jsx(n, { ref: l, className: d, ...u, children: t });\n }\n);\nAB.displayName = TB;\nconst NB = {\n auto: \"auto\",\n /* The first 3 Column Lines of the Grid */\n \"left-edge\": \"l-edge\",\n // 1\n \"left-outer\": \"l-outer\",\n // 2\n \"left-inner\": \"l-inner\",\n // 3\n /* The Last 3 Column Lines of the Grid */\n \"right-inner\": \"r-inner\",\n // -3\n \"right-outer\": \"r-outer\",\n // -2\n \"right-edge\": \"r-edge\"\n // -1\n}, OB = {\n \"inner-1\": \"3\",\n \"inner-2\": \"4\",\n \"inner-3\": \"5\",\n \"inner-4\": \"6\",\n \"inner-5\": \"7\"\n}, JCe = {\n ...OB,\n \"inner-6\": \"8\",\n \"inner-7\": \"9\",\n \"inner-8\": \"10\",\n \"inner-9\": \"11\",\n \"inner-10\": \"12\",\n \"inner-11\": \"13\",\n \"inner-12\": \"14\",\n \"inner-13\": \"15\"\n}, C8 = {\n ...NB,\n ...OB\n}, Jg = {\n ...NB,\n ...JCe\n}, exe = {\n sm: C8,\n md: C8,\n lg: Jg,\n xl: Jg,\n \"2xl\": Jg\n}, txe = {\n ..._B,\n rowStart: \"row-start\",\n rowEnd: \"row-end\",\n verticalAlign: \"align\",\n columnStart: \"col-start\",\n columnEnd: \"col-end\",\n display: \"d\",\n zIndex: \"z\"\n}, Ul = ({\n optionValue: e\n}) => {\n if (typeof e == \"string\")\n return e;\n if (typeof e == \"number\")\n return String(e);\n}, x8 = ({ optionValue: e, breakpoint: t }) => {\n const n = exe[t];\n if (n)\n return n[e];\n}, nxe = {\n ...EB,\n rowStart: {\n transformType: \"direct\",\n transformFunction: Ul\n },\n rowEnd: {\n transformType: \"direct\",\n transformFunction: Ul\n },\n verticalAlign: {\n transformType: \"direct\",\n transformFunction: Ul\n },\n columnStart: {\n transformType: \"custom\",\n transformFunction: x8\n },\n columnEnd: {\n transformType: \"custom\",\n transformFunction: x8\n },\n display: {\n transformType: \"direct\",\n transformFunction: Ul\n },\n zIndex: {\n transformType: \"direct\",\n transformFunction: Ul\n }\n}, { getGridSystemResponsiveClasses: rxe } = wB({\n gridSystemOptionPrefixMap: txe,\n gridSystemOptionValueTransformMap: nxe\n}), axe = {\n \"grid-item\": \"_grid-item_u5yv6_1\"\n}, LB = \"GridItem\", ixe = new pl(LB, axe), uf = Lt(\n ({\n as: e = \"div\",\n className: t = \"\",\n options: n = {},\n mdOptions: r = {},\n lgOptions: a = {},\n xlOptions: i = {},\n twoXlOptions: o = {},\n children: s = null,\n ...u\n }, l) => {\n const c = rxe([\n {\n options: n,\n breakpoint: \"sm\"\n },\n { options: r, breakpoint: \"md\" },\n { options: a, breakpoint: \"lg\" },\n { options: i, breakpoint: \"xl\" },\n { options: o, breakpoint: \"2xl\" }\n ]), d = se(\n t,\n ixe.getComponentClassName(),\n c\n );\n return /* @__PURE__ */ h.jsx(e, { ref: l, className: d, ...u, children: s });\n }\n);\nuf.displayName = LB;\nconst oxe = {\n minHeight: \"18.75rem\",\n minWidth: \"auto\"\n}, sxe = ({\n rootMargin: e = \"700px 0px\"\n}) => ({\n rootMargin: e,\n triggerOnce: !0,\n threshold: 0\n}), uxe = ({\n children: e,\n className: t,\n containerDimensions: n = oxe,\n rootRef: r,\n rootMargin: a\n}) => {\n const { inView: i, ref: o } = ah(\n sxe({ rootMargin: a })\n ), s = sr(\n (u) => {\n const l = r && \"current\" in r;\n typeof r == \"function\" ? r(u) : l && (r.current = u), o(u);\n },\n [o, r]\n );\n return /* @__PURE__ */ h.jsx(\"div\", { ref: s, className: t, style: n, children: i && e });\n}, kB = vt.createContext(\n void 0\n), IB = \"KitUtilsParentProvider\", DB = ({\n children: e,\n value: t\n}) => /* @__PURE__ */ h.jsx(kB.Provider, { value: t, children: e }), PB = () => {\n const e = Ze(kB);\n if (!e)\n throw new Error(`useKitUtilsParent must be used within ${IB}`);\n return e;\n};\nDB.displayName = IB;\nvar MB = /* @__PURE__ */ ((e) => (e.enterprise = \"enterprise\", e.ppcom = \"ppcom\", e.smb = \"smb\", e))(MB || {});\nconst lxe = (e = \"\", t = \"\", n = \"\", r = \"Started\", a = MB.ppcom) => {\n const i = {\n event_name: `${a}_${t}_${r.toLowerCase()}`,\n link: `${e}-${t}-${r}-${n}`\n };\n return JSON.stringify(i);\n}, cxe = {\n \"media-control-wrapper\": \"_media-control-wrapper_34mt4_1\",\n \"media-control-wrapper-outline\": \"_media-control-wrapper-outline_34mt4_17\",\n \"media-control-wrapper-inverse\": \"_media-control-wrapper-inverse_34mt4_20\",\n \"media-control-wrapper-size-small\": \"_media-control-wrapper-size-small_34mt4_23\",\n \"media-control-play-svg-small\": \"_media-control-play-svg-small_34mt4_24\",\n \"media-control-wrapper-size-large\": \"_media-control-wrapper-size-large_34mt4_28\",\n \"media-control-play-svg-large\": \"_media-control-play-svg-large_34mt4_29\",\n \"media-control-wrapper-size-x-large\": \"_media-control-wrapper-size-x-large_34mt4_33\",\n \"media-control-play-svg-x-large\": \"_media-control-play-svg-x-large_34mt4_34\",\n \"media-control-play-svg\": \"_media-control-play-svg_34mt4_24\",\n \"media-control-circle\": \"_media-control-circle_34mt4_41\",\n \"media-control-circle-inverse\": \"_media-control-circle-inverse_34mt4_44\",\n \"media-control-triangle-inverse\": \"_media-control-triangle-inverse_34mt4_56\",\n \"media-control-play-svg-outline-inverse\": \"_media-control-play-svg-outline-inverse_34mt4_59\",\n \"media-control-play-svg-outline\": \"_media-control-play-svg-outline_34mt4_59\"\n}, RB = \"MediaControl\", Zn = new pl(RB, cxe), BB = Lt(\n ({\n className: e,\n playing: t,\n size: n = \"Large\",\n inverse: r = !1,\n outline: a = !1,\n videoId: i = \"\",\n analyticsCompName: o,\n analyticsVideoText: s = \"video\",\n playAriaLabel: u = \"Play video\",\n pauseAriaLabel: l = \"Pause video\",\n hasAriaPopup: c = !1,\n mediaClick: d\n }, p) => {\n const { pageSegment: g } = PB(), v = t ? l : u, b = t ? \"Started\" : \"Stopped\", C = r && a, w = lxe(\n o ? `${o}-media` : \"media\",\n s,\n i,\n b,\n g\n ), _ = se(\n e,\n Zn.getComponentClassName(),\n Zn.getElementClassName(\"wrapper\"),\n {\n [Zn.getElementClassName(\"wrapper-inverse\")]: r,\n [Zn.getElementClassName(\"wrapper-outline\")]: a\n },\n Zn.getPropsValueClassName(\"wrapperSize\", n)\n ), x = () => {\n const P = se(\n Zn.getElementClassName(\"play-svg\"),\n Zn.getPropsValueClassName(\"playSvg\", n)\n ), H = se(Zn.getElementClassName(\"circle\"), {\n [Zn.getElementClassName(\"circle-inverse\")]: r\n }), k = se({\n [Zn.getElementClassName(\"triangle-inverse\")]: r\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: H,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207V0.512207C62.0914 0.512207 80 18.4208 80 40.5122V40.5122C80 62.6036 62.0914 80.5122 40 80.5122V80.5122C17.9086 80.5122 0 62.6036 0 40.5122V40.5122Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: k,\n d: \"M29.3164 50.4622V32.1643C29.3164 28.8916 32.9162 26.8965 35.6914 28.631L50.3297 37.7799C52.9409 39.4119 52.9409 43.2146 50.3297 44.8466L35.6914 53.9955C32.9162 55.73 29.3164 53.7349 29.3164 50.4622Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n }, S = () => {\n const P = se(\n Zn.getElementClassName(\"play-svg\"),\n Zn.getPropsValueClassName(\"playSvg\", n)\n ), H = se(Zn.getElementClassName(\"circle\"), {\n [Zn.getElementClassName(\"circle-inverse\")]: r\n }), k = se({\n [Zn.getElementClassName(\"triangle-inverse\")]: r\n });\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 81\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: H,\n d: \"M0 40.5122C0 18.4208 17.9086 0.512207 40 0.512207C62.0914 0.512207 80 18.4208 80 40.5122C80 62.6036 62.0914 80.5122 40 80.5122C17.9086 80.5122 0 62.6036 0 40.5122Z\",\n fill: \"#003087\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n className: k,\n d: \"M35.191 27.9797H35.5115C37.0161 27.9797 38.2359 29.1073 38.2359 30.4983V52.1279C38.2359 53.5188 37.0161 54.6464 35.5115 54.6464H35.191C33.6864 54.6464 32.4666 53.5188 32.4666 52.1279V30.4983C32.4666 29.1073 33.6864 27.9797 35.191 27.9797ZM46.0884 27.9797H46.4089C47.9136 27.9797 49.1333 29.1073 49.1333 30.4983V52.1279C49.1333 53.5188 47.9136 54.6464 46.4089 54.6464H46.0884C44.5838 54.6464 43.3641 53.5188 43.3641 52.1279V30.4983C43.3641 29.1073 44.5838 27.9797 46.0884 27.9797Z\",\n fill: \"white\"\n }\n )\n ]\n }\n );\n }, E = t ? (() => {\n const P = se(\n Zn.getElementClassName(\"play-svg-outline\"),\n {\n [Zn.getElementClassName(\"play-svg-outline-inverse\")]: C\n },\n Zn.getPropsValueClassName(\"playSvg\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M35.191 27.4675H35.5115C37.0161 27.4675 38.2359 28.5951 38.2359 29.986V51.6157C38.2359 53.0066 37.0161 54.1342 35.5115 54.1342H35.191C33.6864 54.1342 32.4666 53.0066 32.4666 51.6157V29.986C32.4666 28.5951 33.6864 27.4675 35.191 27.4675ZM46.0884 27.4675H46.4089C47.9136 27.4675 49.1333 28.5951 49.1333 29.986V51.6157C49.1333 53.0066 47.9136 54.1342 46.4089 54.1342H46.0884C44.5838 54.1342 43.3641 53.0066 43.3641 51.6157V29.986C43.3641 28.5951 44.5838 27.4675 46.0884 27.4675Z\",\n fill: \"#001435\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M40 78C19.0132 78 2 60.9868 2 40H-2C-2 63.196 16.804 82 40 82V78ZM78 40C78 60.9868 60.9868 78 40 78V82C63.196 82 82 63.196 82 40H78ZM40 2C60.9868 2 78 19.0132 78 40H82C82 16.804 63.196 -2 40 -2V2ZM40 -2C16.804 -2 -2 16.804 -2 40H2C2 19.0132 19.0132 2 40 2V-2Z\",\n fill: \"#001435\"\n }\n )\n ]\n }\n );\n })() : (() => {\n const P = se(\n Zn.getElementClassName(\"play-svg-outline\"),\n {\n [Zn.getElementClassName(\"play-svg-outline-inverse\")]: C\n },\n Zn.getPropsValueClassName(\"playSvg\", n)\n );\n return /* @__PURE__ */ h.jsxs(\n \"svg\",\n {\n className: P,\n viewBox: \"0 0 80 80\",\n fill: \"none\",\n xmlns: \"http://www.w3.org/2000/svg\",\n children: [\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M40 78C19.0132 78 2 60.9868 2 40H-2C-2 63.196 16.804 82 40 82V78ZM78 40C78 60.9868 60.9868 78 40 78V82C63.196 82 82 63.196 82 40H78ZM40 2C60.9868 2 78 19.0132 78 40H82C82 16.804 63.196 -2 40 -2V2ZM40 -2C16.804 -2 -2 16.804 -2 40H2C2 19.0132 19.0132 2 40 2V-2Z\",\n fill: \"#001435\"\n }\n ),\n /* @__PURE__ */ h.jsx(\n \"path\",\n {\n d: \"M29.3164 49.95V31.6521C29.3164 28.3794 32.9162 26.3843 35.6914 28.1188L50.3297 37.2677C52.9409 38.8997 52.9409 42.7024 50.3297 44.3344L35.6914 53.4833C32.9162 55.2178 29.3164 53.2227 29.3164 49.95Z\",\n fill: \"#001435\"\n }\n )\n ]\n }\n );\n })(), N = t ? S() : x();\n return /* @__PURE__ */ h.jsx(\n \"button\",\n {\n ref: p,\n \"aria-label\": v,\n \"aria-haspopup\": c,\n type: \"button\",\n \"data-pa-click\": o && w,\n className: _,\n onClick: d,\n children: a ? E : N\n }\n );\n }\n);\nBB.displayName = RB;\nconst dxe = () => {\n const [e, t] = ze(!1), n = mp();\n return We(() => {\n n !== null && t(n);\n }, [n]), e;\n}, fxe = (e = []) => e.map(({ src: t, type: n }) => /* @__PURE__ */ h.jsx(\"source\", { src: t, type: n }, t)), pxe = (e) => {\n var t;\n const n = (t = e[0]) == null ? void 0 : t.src;\n return n == null ? void 0 : n.substring(n.lastIndexOf(\"/\") + 1).replace(/\\..+$/, \"\");\n}, hxe = ({\n videoRef: e,\n setInlineVideoPlaying: t,\n setIsVideoDurationAvailable: n\n}) => {\n const r = () => {\n e.current && (n(!1), t(!1), e.current.currentTime = 0, e.current.load());\n }, a = (d) => {\n e.current && (e.current.currentTime = d);\n }, i = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.currentTime) ?? 0;\n }, o = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.duration) ?? 0;\n }, s = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.readyState) ?? 0;\n }, u = () => {\n var d;\n return ((d = e.current) == null ? void 0 : d.seeking) ?? !1;\n }, l = async () => {\n e.current && (await e.current.play(), t(!0));\n }, c = () => {\n e.current && (e.current.pause(), t(!1));\n };\n return {\n playVideo: l,\n pauseVideo: c,\n setCurrentTime: a,\n getCurrentTime: i,\n getDuration: o,\n getReadyState: s,\n getIsSeeking: u,\n loadVideoAndResetState: r,\n handleInlineVideoState: (d) => {\n d === \"play\" ? l() : c();\n }\n };\n}, mxe = () => {\n if (typeof window > \"u\" || typeof window.navigator > \"u\")\n return !1;\n const { userAgent: e } = navigator, t = e.toLowerCase(), n = t.indexOf(\"safari\") > -1, r = t.indexOf(\"chrome\") > -1, a = /iPad|iPhone|iPod/i.test(e);\n return (n || a) && !r;\n}, gxe = () => {\n if (typeof window > \"u\" || typeof window.navigator > \"u\")\n return !1;\n const { userAgent: e } = navigator;\n return /firefox/i.test(e);\n}, vxe = ({\n autoPlay: e,\n forwardedVideoRef: t,\n isViewportTypeMismatch: n,\n hasMultipleVideoSources: r\n}) => {\n const a = Ue(null), i = Ue(!1), o = Ue(!1), s = dxe(), [u, l] = ze(!1), [c, d] = ze(!1), p = a == null ? void 0 : a.current, g = (p == null ? void 0 : p.duration) || 0, v = g && g > 5, {\n playVideo: b,\n pauseVideo: C,\n setCurrentTime: w,\n getCurrentTime: _,\n getDuration: x,\n getReadyState: S,\n getIsSeeking: E,\n loadVideoAndResetState: N,\n handleInlineVideoState: P\n } = hxe({\n videoRef: a,\n setInlineVideoPlaying: d,\n setIsVideoDurationAvailable: l\n });\n N8(\n t,\n () => ({\n playVideo: b,\n pauseVideo: C,\n setCurrentTime: w,\n getCurrentTime: _,\n getDuration: x,\n getReadyState: S,\n getIsSeeking: E\n }),\n [u]\n );\n const H = () => {\n o.current && !e && (b(), o.current = !1);\n }, k = sr((Q) => {\n Q !== null && (a.current = Q, Q.duration && l(!0));\n }, []);\n return We(() => {\n if (!i.current) {\n if (n === null)\n return;\n i.current = !0;\n }\n r && !mxe() && N();\n }, [n, r]), We(() => {\n u && (s && v || !e ? C() : b());\n }, [u, e]), {\n videoRef: a,\n videoLoadRef: k,\n isLargeDuration: v,\n handleInlineVideoState: P,\n inlineVideoPlaying: c,\n setInlineVideoPlaying: d,\n isVideoDurationAvailable: u,\n setIsVideoDurationAvailable: l,\n onVideoFullyLoaded: H\n };\n}, Wl = {\n sm: \"23.4375rem\",\n md: \"41.0625rem\",\n lg: \"64rem\",\n xl: \"91.875rem\",\n \"2xl\": \"120rem\"\n}, Kl = {\n xs: \"23.375rem\",\n sm: \"41rem\",\n md: \"63.9375rem\",\n lg: \"91.8125rem\",\n xl: \"119.9375rem\"\n}, bxe = ({\n mediaQueryTypeKeys: e,\n mediaQueryMap: t,\n setViewportTypeObj: n\n}) => e.map((r) => [t[r], (a) => {\n a.matches && n((i) => ({\n ...i,\n viewportType: r\n }));\n}]), yxe = () => {\n const { initialViewport: e } = PB(), [t, n] = ze({\n viewportType: e || \"sm\",\n isViewportTypeMismatch: null\n });\n return We(() => {\n const r = {\n xs: window.matchMedia(`(max-width: ${Kl.xs})`),\n sm: window.matchMedia(\n `(min-width: ${Wl.sm}) and (max-width: ${Kl.sm})`\n ),\n md: window.matchMedia(\n `(min-width: ${Wl.md}) and (max-width: ${Kl.md})`\n ),\n lg: window.matchMedia(\n `(min-width: ${Wl.lg}) and (max-width: ${Kl.lg})`\n ),\n xl: window.matchMedia(\n `(min-width: ${Wl.xl}) and (max-width: ${Kl.xl})`\n ),\n \"2xl\": window.matchMedia(`(min-width: ${Wl[\"2xl\"]})`)\n }, a = Object.keys(r), i = bxe({\n mediaQueryTypeKeys: a,\n mediaQueryMap: r,\n viewportTypeObj: t,\n setViewportTypeObj: n\n });\n i.forEach(([u, l]) => {\n u.addEventListener ? u.addEventListener(\"change\", l) : u.addListener(l);\n });\n const o = a.find((u) => r[u].matches), s = t.viewportType !== o;\n return n({\n viewportType: o || \"sm\",\n isViewportTypeMismatch: s\n }), () => {\n i.forEach(([u, l]) => {\n u.removeEventListener ? u.removeEventListener(\"change\", l) : u.removeListener(l);\n });\n };\n }, []), t;\n}, Cxe = (e) => {\n const t = [...e];\n if (gxe()) {\n const n = t.findIndex(\n (r) => r.type === \"video/webm\"\n );\n if (n !== -1) {\n const r = t[n];\n t.splice(n, 1), t.unshift(r);\n }\n }\n return t;\n}, xxe = ({\n viewportType: e,\n baseVideoCollection: t,\n tabletVideoCollection: n,\n desktopVideoCollection: r,\n imageUrlBase: a,\n imageUrlTablet: i,\n imageUrlDesktop: o,\n altText: s\n}) => {\n let u = [], l = \"\", c = \"\";\n if (!(n || t || r))\n return {\n videoSourceCollection: u,\n videoName: l\n };\n const d = [\"xs\", \"sm\"].includes(e), p = e === \"md\", g = (b) => b ?? \"\";\n d ? (u = t ?? [], c = g(a)) : p ? (u = n ?? t ?? [], c = g(i ?? a)) : (u = r ?? n ?? t ?? [], c = g(\n o ?? i ?? a\n )), l = pxe(u);\n const v = Cxe(\n u\n );\n return {\n altTextLabel: s,\n videoSourceCollection: v.map((b) => ({\n ...b,\n src: `${b.src}#t=0.01`\n })),\n videoName: l,\n posterImageUrl: c\n };\n}, Sxe = ({\n baseVideoCollection: e,\n tabletVideoCollection: t,\n desktopVideoCollection: n,\n imageUrlBase: r,\n imageUrlTablet: a,\n imageUrlDesktop: i,\n altText: o\n}) => {\n const { viewportType: s, isViewportTypeMismatch: u } = yxe();\n return {\n ...wt(\n () => xxe({\n viewportType: s,\n baseVideoCollection: e,\n tabletVideoCollection: t,\n desktopVideoCollection: n,\n imageUrlBase: r,\n imageUrlTablet: a,\n imageUrlDesktop: i,\n altText: o\n }),\n [s]\n ),\n viewportType: s,\n isViewportTypeMismatch: u\n };\n}, _xe = {\n \"inline-video\": \"_inline-video_8520u_1\"\n}, FB = \"InlineVideo\", Exe = new pl(FB, _xe), jB = Lt(\n ({\n className: e,\n onEnded: t,\n onPlaying: n,\n onLoadedMetadata: r,\n onCanPlayThrough: a,\n autoPlay: i = !1,\n loop: o = !0,\n posterImageUrl: s,\n ariaLabel: u,\n quality: l = 75,\n disableRemotePlayback: c = !0,\n children: d,\n preload: p,\n ...g\n }, v) => {\n const b = se(e, Exe.getComponentClassName()), C = {};\n return u && (C[\"aria-label\"] = u), s && (C.poster = `${s}?quality=${l}`), /* @__PURE__ */ h.jsxs(\n \"video\",\n {\n className: b,\n playsInline: !0,\n muted: !0,\n onEnded: t,\n onPlaying: n,\n onLoadedMetadata: r,\n disableRemotePlayback: c,\n disablePictureInPicture: !0,\n ref: v,\n autoPlay: i,\n loop: o,\n preload: p,\n ...C,\n ...g,\n children: [\n d,\n /* @__PURE__ */ h.jsx(\"track\", { kind: \"captions\" })\n ]\n }\n );\n }\n);\njB.displayName = FB;\nconst wxe = {\n \"inline-video-overlay\": \"_inline-video-overlay_1slkw_1\"\n}, $B = \"InlineVideoOverlay\", Txe = new pl($B, wxe), HB = ({\n className: e\n}) => {\n const t = se(e, Txe.getComponentClassName());\n return /* @__PURE__ */ h.jsx(\"div\", { className: t });\n};\nHB.displayName = $B;\nconst Axe = {\n \"video-frame\": \"_video-frame_7p40v_1\",\n \"video-frame-rounded-corners\": \"_video-frame-rounded-corners_7p40v_4\",\n \"video-frame-wrapper\": \"_video-frame-wrapper_7p40v_4\",\n \"video-frame-hide\": \"_video-frame-hide_7p40v_24\",\n \"video-frame-show\": \"_video-frame-show_7p40v_27\",\n \"video-frame-controls-container\": \"_video-frame-controls-container_7p40v_30\",\n \"video-frame-video-duration\": \"_video-frame-video-duration_7p40v_33\",\n \"video-frame-wrapper-media-control-disable\": \"_video-frame-wrapper-media-control-disable_7p40v_53\",\n \"video-frame-main-controls-container\": \"_video-frame-main-controls-container_7p40v_72\",\n \"video-frame-body-text\": \"_video-frame-body-text_7p40v_84\",\n \"video-frame-button-text-inverse\": \"_video-frame-button-text-inverse_7p40v_89\",\n \"video-frame-youtube-video\": \"_video-frame-youtube-video_7p40v_92\",\n \"video-frame-video-md\": \"_video-frame-video-md_7p40v_102\",\n \"video-frame-video-base\": \"_video-frame-video-base_7p40v_106\",\n \"video-cursor-pointer\": \"_video-cursor-pointer_7p40v_135\"\n}, VB = \"VideoFrame\", xu = new pl(VB, Axe), S8 = Lt(\n ({\n baseVideoCollection: e,\n // Mobile Video\n tabletVideoCollection: t,\n // Tablet Video\n desktopVideoCollection: n,\n // Desktop Video\n mediaControl: r,\n imageUrlDesktop: a,\n imageUrlTablet: i,\n imageUrlBase: o,\n altText: s,\n autoPlay: u = !1,\n loop: l = !1,\n inverse: c = !1,\n buttonStyle: d = \"Outline\",\n overlay: p = !1,\n imageServerKnobs: g = {},\n analyticsCompName: v,\n disableRemotePlayback: b = !0,\n disableMediaControl: C = !1,\n onLoadedMetadata: w,\n onPlaying: _,\n preload: x = \"auto\"\n }, S) => {\n var E;\n const N = !!(t != null && t.length) || !!(n != null && n.length), {\n videoName: P,\n videoSourceCollection: H,\n altTextLabel: k,\n posterImageUrl: Q,\n isViewportTypeMismatch: I\n } = Sxe({\n baseVideoCollection: e,\n tabletVideoCollection: t,\n desktopVideoCollection: n,\n imageUrlBase: o,\n imageUrlDesktop: a,\n imageUrlTablet: i,\n altText: s\n }), {\n videoLoadRef: G,\n inlineVideoPlaying: $,\n setInlineVideoPlaying: z,\n isLargeDuration: B,\n handleInlineVideoState: O,\n setIsVideoDurationAvailable: D\n } = vxe({\n autoPlay: u,\n forwardedVideoRef: S,\n isViewportTypeMismatch: I,\n hasMultipleVideoSources: N\n }), T = !!n || !!t || !!e, { quality: j = 50 } = g, F = se(\n xu.getElementClassName(\"controls-container\"),\n {\n [xu.getElementClassName(\"video-duration\")]: B\n }\n ), L = wt(() => fxe(H), [(E = H[0]) == null ? void 0 : E.src]);\n return /* @__PURE__ */ h.jsxs(\n \"div\",\n {\n className: se(\n xu.getElementClassName(\"wrapper\"),\n xu.getPropsValueClassName(\n \"wrapperMediaControlDisable\",\n C\n )\n ),\n onClick: () => {\n O($ ? \"pause\" : \"play\");\n },\n role: \"none\",\n children: [\n p && /* @__PURE__ */ h.jsx(HB, {}),\n T && /* @__PURE__ */ h.jsx(\n jB,\n {\n ref: G,\n onEnded: () => z(!1),\n onPlaying: () => {\n z(!0), typeof _ == \"function\" && _();\n },\n onLoadedMetadata: () => {\n D(!0), typeof w == \"function\" && w();\n },\n autoPlay: !1,\n posterImageUrl: Q,\n loop: l,\n ariaLabel: k,\n disableRemotePlayback: b,\n preload: x,\n children: L\n }\n ),\n !T && /* @__PURE__ */ h.jsx(\n \"img\",\n {\n alt: k,\n src: Q && `${Q}?quality=${j}`\n }\n ),\n T && !C && /* @__PURE__ */ h.jsx(\"div\", { className: F, children: /* @__PURE__ */ h.jsx(\n BB,\n {\n mediaClick: (q) => {\n q.stopPropagation(), O($ ? \"pause\" : \"play\");\n },\n videoId: P,\n size: \"Small\",\n inverse: c,\n playing: $,\n outline: d === \"Outline\",\n playAriaLabel: r == null ? void 0 : r.playAriaLabel,\n pauseAriaLabel: r == null ? void 0 : r.pauseAriaLabel,\n analyticsCompName: v\n }\n ) })\n ]\n }\n );\n }\n), zB = Lt(\n ({\n loading: e = \"lazy\",\n dimensions: t = {\n minHeight: \"auto\",\n minWidth: \"auto\"\n },\n lazyLoadProps: n = {},\n className: r,\n roundedCorners: a = !1,\n ...i\n }, o) => {\n const s = se(\n r,\n xu.getComponentClassName(),\n xu.getPropsValueClassName(\"roundedCorners\", a)\n );\n return e === \"lazy\" ? /* @__PURE__ */ h.jsx(\n uxe,\n {\n className: s,\n containerDimensions: t,\n ...n,\n children: /* @__PURE__ */ h.jsx(S8, { ...i, ref: o })\n }\n ) : /* @__PURE__ */ h.jsx(\"div\", { className: s, children: /* @__PURE__ */ h.jsx(S8, { ...i, ref: o }) });\n }\n);\nzB.displayName = VB;\nconst Nxe = \"KitUtilsProvider\", qB = ({ children: e }) => {\n const { pageSegment: t, clientInfo: n } = Ze(Vt), r = wt(\n () => ({\n initialViewport: n == null ? void 0 : n.initialViewPort,\n pageSegment: t\n }),\n [n == null ? void 0 : n.initialViewPort, t]\n );\n return /* @__PURE__ */ h.jsx(DB, { value: r, children: e });\n};\nqB.displayName = Nxe;\nconst Oxe = {\n \"segment-control-tab\": \"_segment-control-tab_h13hi_1\",\n \"segment-control-tab-is-active\": \"_segment-control-tab-is-active_h13hi_52\",\n \"segment-control-tab-text\": \"_segment-control-tab-text_h13hi_72\",\n \"focus-visible\": \"_focus-visible_h13hi_1\",\n \"segment-control-tab-theme-secondary\": \"_segment-control-tab-theme-secondary_h13hi_89\"\n}, GB = \"SegmentControlTab\", M0 = new ke(GB, Oxe), Lxe = ({ children: e }) => /* @__PURE__ */ h.jsx(\"li\", { children: e }), kxe = ({\n text: e,\n as: t = \"a\",\n isTabActive: n = !1,\n className: r = \"\",\n analyticsCompName: a = GB,\n theme: i = \"Secondary\",\n ...o\n}) => {\n const { pageSegment: s } = Ze(Vt), u = t === \"button\" ? \"button\" : \"a\", l = se(\n M0.getComponentClassName(),\n {\n [M0.getPropsValueClassName(\"is-active\", n)]: n\n },\n i === \"Secondary\" && M0.getPropsValueClassName(\"theme\", i),\n r\n ), c = Nn(\n {\n componentName: a,\n linkText: e,\n linkSection: \"\",\n clickEvent: Ho.SegmentControlTab\n },\n s,\n ln.Link\n );\n return /* @__PURE__ */ h.jsx(Lxe, { children: /* @__PURE__ */ h.jsx(\n u,\n {\n ...o,\n \"aria-current\": n ? \"page\" : !1,\n \"data-text\": e,\n \"data-pa-click\": c,\n className: l,\n children: /* @__PURE__ */ h.jsx(\n Gt,\n {\n as: \"span\",\n size: \"Body\",\n className: M0.getElementClassName(\"text\"),\n children: e\n }\n )\n }\n ) });\n}, Ixe = {\n \"segment-control-group\": \"_segment-control-group_55zyk_1\"\n}, UB = \"SegmentControlGroup\", Dxe = new ke(UB, Ixe), Pxe = ({ children: e, ariaLabel: t, ...n }) => /* @__PURE__ */ h.jsx(\"nav\", { ...n, \"aria-label\": t, children: /* @__PURE__ */ h.jsx(\"ul\", { children: e }) }), Mxe = ({\n selectedTabText: e,\n tabItems: t,\n analyticsCompName: n = UB,\n className: r = \"\",\n style: a = {},\n ariaLabel: i = \"\",\n theme: o\n}) => {\n const s = se(Dxe.getComponentClassName(), r);\n return /* @__PURE__ */ h.jsx(Pxe, { style: a, className: s, ariaLabel: i, children: t.map(({ text: u, ...l }, c) => /* @__PURE__ */ h.jsx(\n kxe,\n {\n text: u,\n isTabActive: e === u,\n analyticsCompName: n,\n theme: o,\n ...l\n },\n `segment-control-tab-${u}-${c + 1}`\n )) });\n};\nconst Rxe = ({\n children: e\n}) => /* @__PURE__ */ h.jsx(td, { features: nd, strict: !0, children: e }), Bxe = (e) => {\n const t = [];\n for (let n = 1; n <= 2; n += 1) {\n const r = e[`tab${n}Text`], a = e[`tab${n}Link`];\n r && a && t.push({\n text: r,\n href: a\n });\n }\n return t;\n}, Fxe = (...e) => {\n const t = Ue(!0), [n, r] = ze(null), a = Oq(...e);\n return We(() => {\n if (t.current) {\n t.current = !1;\n return;\n }\n r(a);\n }, [a]), n;\n}, jxe = (e) => {\n const t = Ue(e);\n We(() => {\n const n = t.current, r = (a) => {\n a.persisted && n();\n };\n return window.addEventListener(\"pageshow\", r), () => {\n window.removeEventListener(\"pageshow\", r);\n };\n }, [t]);\n}, $xe = (e) => {\n const t = Ue(e);\n We(() => {\n const n = t.current;\n return window.addEventListener(\"beforeunload\", n), () => {\n window.removeEventListener(\"beforeunload\", n);\n };\n }, [t]);\n}, Hxe = ({\n duration: e = 1,\n delay: t = 0,\n reduceMotion: n = !1\n} = {}) => {\n const [r, a] = ze(!1), i = {\n duration: e,\n delay: t,\n ease: \"easeInOut\"\n }, o = {\n initial: {\n opacity: 1,\n y: 0\n },\n exit: {\n opacity: 0,\n // TODO: Replace clamp with css variable but --grid-fluid-clamp-value--sm is not available at root\n y: \"clamp(0.5rem, -0.29999999999999993rem + 1.25vw, 1.2rem)\"\n // '2vw' corresponsds to var(--grid-fluid-clamp-value--sm)\n }\n };\n $xe(() => {\n a(!0);\n }), jxe(() => {\n a(!1);\n });\n const s = {\n opacity: r ? o.exit.opacity : o.initial.opacity,\n transform: r ? `translateY(${o.exit.y})` : `translateY(${o.initial.y})`,\n transition: `all ${i.duration}s ${Un(i.ease)} ${i.delay}s`\n };\n return {\n style: n ? {} : s,\n aboutToExit: r,\n variant: o,\n transition: i\n };\n}, Vxe = 0.99, zxe = () => ({\n options: {\n rowsGapValue: \"none\",\n rowsGap: \"value\"\n }\n}), qxe = () => ({\n options: {\n zIndex: 10,\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n rowStart: 1,\n rowEnd: 2,\n topSpacing: \"12vw\",\n bottomSpacing: \"12vw\"\n },\n mdOptions: {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n },\n lgOptions: {\n topSpacing: \"6vw\",\n bottomSpacing: \"6vw\"\n }\n}), Gxe = () => ({\n options: {\n zIndex: 5,\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\",\n rowStart: 1,\n rowEnd: 3\n }\n}), Uxe = (e) => {\n const t = {\n rowStart: 2,\n rowEnd: 3\n };\n return e === \"outer\" ? {\n options: {\n columnStart: \"left-outer\",\n columnEnd: \"right-outer\",\n bottomSpacing: \"8vw\",\n ...t\n },\n lgOptions: {\n bottomSpacing: \"6vw\"\n }\n } : {\n options: {\n columnStart: \"left-edge\",\n columnEnd: \"right-edge\",\n ...t\n }\n };\n}, Wxe = (e = {}) => ({\n baseVideoCollection: e.baseVideoCollection || [],\n tabletVideoCollection: e.tabletVideoCollection,\n desktopVideoCollection: e.mdVideoCollection,\n imageUrlBase: e.imageUrlMobile,\n imageUrlTablet: e.imageUrlTablet,\n imageUrlDesktop: e.imageUrlDesktop,\n altText: e.altTextMobile || e.altTextDesktop || \"\"\n}), Kxe = ({\n videoControlsRef: e,\n isHeaderInView: t,\n reduceMotion: n\n}) => {\n const r = Ue(!1);\n We(() => {\n var a;\n t !== null && (t || n || r.current || (r.current = !0, (a = e.current) == null || a.playVideo()));\n }, [t, n]);\n}, Yxe = {\n \"hero-video-animation-video-container\": \"_hero-video-animation-video-container_1jm9h_1\",\n \"hero-video-animation-image-container\": \"_hero-video-animation-image-container_1jm9h_13\"\n}, WB = \"HeroVideoAnimation\", _8 = new ke(WB, Yxe), KB = ({\n isHeaderInView: e,\n videoAnimation: t,\n reduceMotion: n,\n roundedCorners: r\n}) => {\n const a = Ue(null);\n Kxe({\n videoControlsRef: a,\n reduceMotion: n,\n isHeaderInView: e\n });\n const i = Wxe(t);\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: _8.getComponentClassName(),\n role: \"img\",\n \"aria-label\": i == null ? void 0 : i.altText,\n children: /* @__PURE__ */ h.jsx(\n zB,\n {\n ref: a,\n className: _8.getElementClassName(\"video-container\"),\n loading: \"eager\",\n preload: \"auto\",\n disableMediaControl: !0,\n ...i,\n roundedCorners: r\n }\n )\n }\n );\n};\nKB.displayName = WB;\nconst du = {\n transition: \"transition\",\n immediate: \"immediate\"\n}, vi = {\n exit: \"exit\",\n reEntry: \"reEntry\"\n}, Xxe = {\n [vi.exit]: {\n translateY: \"-30vh\",\n transition: {\n type: \"tween\",\n duration: 1\n }\n },\n [vi.reEntry]: {\n translateY: \"0vh\",\n transition: {\n type: \"tween\",\n duration: 0.7\n }\n }\n}, E8 = {\n ease: \"easeInOut\",\n duration: 0.7\n}, lf = {\n [vi.exit]: {\n translateY: \"40px\",\n opacity: 0,\n transition: E8\n },\n [vi.reEntry]: {\n translateY: \"0px\",\n opacity: 1,\n transition: E8\n }\n}, w8 = {\n [vi.exit]: {\n pointerEvents: \"none\"\n },\n [vi.reEntry]: {\n pointerEvents: \"auto\"\n }\n}, Zxe = {\n ...lf,\n [vi.exit]: {\n ...lf.exit,\n translateY: void 0\n },\n [vi.reEntry]: {\n ...lf.reEntry,\n translateY: void 0\n }\n}, T8 = (e, t) => {\n e.forEach((n) => {\n const [r, a, i] = n, o = a[t];\n i === du.transition ? r.start(o) : r.set(o);\n });\n}, Qxe = ({\n isHeaderInView: e,\n reduceMotion: t\n}) => {\n const n = Fx(), r = Fx();\n return We(() => {\n if (e === null)\n return;\n const a = e ? vi.reEntry : vi.exit;\n if (t) {\n const o = [\n [\n r,\n Zxe,\n du.transition\n ],\n [\n r,\n w8,\n du.immediate\n ]\n ];\n T8(o, a);\n return;\n }\n const i = [\n [n, Xxe, du.transition],\n [\n r,\n lf,\n du.transition\n ],\n [\n r,\n w8,\n du.immediate\n ]\n ];\n T8(i, a);\n }, [\n e,\n t,\n n,\n r\n ]), {\n headerControls: n,\n segmentControlGroupControls: r\n };\n}, YB = {\n \"hero-homepage-stack\": \"_hero-homepage-stack_khze3_2\",\n \"hero-homepage-stack-reduce-motion\": \"_hero-homepage-stack-reduce-motion_khze3_12\",\n \"hero-homepage-stack-sticky-container\": \"_hero-homepage-stack-sticky-container_khze3_15\",\n \"hero-homepage-stack-theme-white\": \"_hero-homepage-stack-theme-white_khze3_18\",\n \"hero-homepage-stack-theme-stone\": \"_hero-homepage-stack-theme-stone_khze3_24\",\n \"hero-homepage-stack-theme-slate\": \"_hero-homepage-stack-theme-slate_khze3_30\",\n \"hero-homepage-stack-theme-slate-gradient\": \"_hero-homepage-stack-theme-slate-gradient_khze3_31\",\n \"hero-homepage-stack-segment-control-group-wrapper\": \"_hero-homepage-stack-segment-control-group-wrapper_khze3_59\",\n \"hero-homepage-stack-segment-control-group\": \"_hero-homepage-stack-segment-control-group_khze3_59\",\n \"hero-homepage-stack-header-and-media-entry-animation\": \"_hero-homepage-stack-header-and-media-entry-animation_khze3_77\",\n \"header-and-video-entry\": \"_header-and-video-entry_khze3_1\",\n \"hero-homepage-stack-segment-control-group-entry-animation\": \"_hero-homepage-stack-segment-control-group-entry-animation_khze3_95\",\n \"segment-control-group-entry\": \"_segment-control-group-entry_khze3_1\",\n \"hero-homepage-stack-outer\": \"_hero-homepage-stack-outer_khze3_113\",\n \"hero-image-frame\": \"_hero-image-frame_khze3_120\"\n}, Z2 = \"HeroHomepageStack\", Jxe = \"hero-homepage-stack\", Ua = new ke(Z2, YB), R0 = Cr.div, XB = ({\n className: e,\n textGroup: t,\n tab1Link: n,\n tab1Text: r,\n tab2Link: a,\n tab2Text: i,\n segmentControlGroupLabel: o = \"\",\n componentId: s = Jxe,\n theme: u = \"stone\",\n mediaFrame: l,\n selectedTab: c = \"tab 1\",\n mediaRail: d = \"edge\",\n ...p\n}) => {\n const g = Ue(null), v = Ue(null), b = Ji(), C = Fxe(v, {\n amount: Vxe\n }), { style: w, aboutToExit: _ } = Hxe({\n reduceMotion: b\n }), { headerControls: x, segmentControlGroupControls: S } = Qxe({\n isHeaderInView: C,\n reduceMotion: b\n }), E = qxe(), N = zxe(), P = Gxe(), H = Uxe(d), k = _ ? w : {}, Q = d === \"outer\", I = se(\n Ua.getComponentClassName(),\n Ua.getPropsValueClassName(\"theme\", u),\n Ua.getElementClassName(d),\n pn.getThemeClassName(u),\n \"grid-compact\",\n e,\n {\n [Ua.getElementClassName(\"reduce-motion\")]: b\n }\n ), G = Bxe({\n tab1Link: n,\n tab1Text: r,\n tab2Link: a,\n tab2Text: i\n }), z = u === \"stone\" || u === \"white\" ? \"Primary\" : \"Secondary\", B = (O) => {\n const D = O.target, T = g.current, F = (D.getBoundingClientRect().top ?? 0) > 1;\n T != null && T.contains(D) && !F && T.scrollIntoView(!0);\n };\n return /* @__PURE__ */ h.jsx(Rxe, { children: /* @__PURE__ */ h.jsx(\n \"section\",\n {\n id: s,\n className: I,\n ref: g,\n onFocus: B,\n children: /* @__PURE__ */ h.jsxs(\n AB,\n {\n as: \"div\",\n className: Ua.getElementClassName(\"grid-container\"),\n ...N,\n ...p,\n children: [\n /* @__PURE__ */ h.jsx(uf, { ref: v, ...E, children: t && /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Ua.getElementClassName(\n \"header-and-media-entry-animation\"\n ),\n children: /* @__PURE__ */ h.jsx(\n R0,\n {\n style: k,\n className: Ua.getElementClassName(\"text-container\"),\n animate: x,\n children: /* @__PURE__ */ h.jsx(\n mn,\n {\n ...t,\n analyticsCompName: Z2,\n removeOrphanFromHeadline: !1\n }\n )\n }\n )\n }\n ) }),\n /* @__PURE__ */ h.jsx(\n uf,\n {\n className: Ua.getElementClassName(\n \"segment-control-group-wrapper\"\n ),\n ...P,\n children: r && G.length > 0 && /* @__PURE__ */ h.jsx(\n R0,\n {\n animate: S,\n className: Ua.getElementClassName(\n \"segment-control-group\"\n ),\n children: /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Ua.getElementClassName(\n \"segment-control-group-entry-animation\"\n ),\n children: /* @__PURE__ */ h.jsx(R0, { style: k, children: /* @__PURE__ */ h.jsx(\n Mxe,\n {\n selectedTabText: c === \"tab 1\" ? r : i,\n tabItems: G,\n ariaLabel: o,\n theme: z\n }\n ) })\n }\n )\n }\n )\n }\n ),\n /* @__PURE__ */ h.jsx(uf, { ...H, children: /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: Ua.getElementClassName(\n \"header-and-media-entry-animation\"\n ),\n children: /* @__PURE__ */ h.jsx(R0, { style: k, children: (l == null ? void 0 : l.type) === \"Video\" ? /* @__PURE__ */ h.jsx(\n KB,\n {\n isHeaderInView: C,\n videoAnimation: l.video,\n reduceMotion: b,\n roundedCorners: Q\n }\n ) : /* @__PURE__ */ h.jsx(\n Ur,\n {\n ...l,\n roundedCorners: Q,\n className: YB[\"hero-image-frame\"]\n }\n ) })\n }\n ) })\n ]\n }\n )\n }\n ) });\n};\nXB.displayName = Z2;\nconst eSe = \"HeroHomepage\", tSe = \"hero-homepage\", ZB = ({\n componentId: e = tSe,\n layout: t = \"stacked\",\n mediaRail: n = \"edge\",\n mediaSize: r = \"1:1\",\n ...a\n}) => t === \"split\" ? /* @__PURE__ */ h.jsx(\"div\", { \"data-media-size\": r, children: \"WIP HeroHomepageSplit\" }) : (\n /**\n * TODO: Implement KitUtilsProvider in Parent?\n * This provider was already implemented in Parent as part of the initial tests,\n * however, after testing this in `ppcmsnodeweb`, the KitUtils Context was not ready during SSR\n * which threw an error. In order to fix that, we might need to use the current \"Default Context\" approach in `component-kit-utils`,\n * but it is a good idea to explore other options.\n */\n /* @__PURE__ */ h.jsx(qB, { children: /* @__PURE__ */ h.jsx(\n XB,\n {\n componentId: e,\n mediaRail: n,\n ...a\n }\n ) })\n);\nZB.displayName = eSe;\nconst nSe = (e) => {\n const { pageSegment: t, clientInfo: n, baseUri: r, country: a } = e;\n return {\n // @ts-expect-error - There are values pageSegment values that don't apply for QL\n pageSegment: t,\n clientInfo: {\n clientOsType: (n == null ? void 0 : n.clientOsType) || yL.iPhone,\n clientType: (n == null ? void 0 : n.clientType) || Cf.mobile\n },\n baseURI: r,\n locality: {\n country: a || \"\",\n locale: (n == null ? void 0 : n.clientLocale) || \"\",\n language: \"\"\n },\n initialViewport: n == null ? void 0 : n.initialViewPort\n };\n}, RSe = ({\n mediaFrame: e,\n textGroup: t,\n ...n\n}) => {\n const r = Ze(Vt), a = nSe(r);\n return /* @__PURE__ */ h.jsx(L1e, { ...a, children: /* @__PURE__ */ h.jsx(\n ZB,\n {\n ...n,\n mediaFrame: e,\n textGroup: t,\n selectedTab: \"tab 2\"\n }\n ) });\n}, rSe = \"https://www.paypalobjects.com/marketing/pp-com-components/app-download-banner/star-rating.svg\", aSe = { minWidth: \"4.5rem\", minHeight: \"4.5rem\" }, iSe = {\n opacity: 0,\n y: \"-6.5rem\",\n height: 0,\n transition: {\n duration: 0.4\n }\n}, oSe = (e, t) => {\n const n = Un(t);\n return `{\"link\":\"${e}-button-${n}\",\"event_name\":\"${e}-${n}\"}`;\n};\nconst Q2 = \"MobileAppStoreBanner\", Fi = new ke(Q2), sSe = ({\n analyticsCompName: e = Q2,\n headline: t,\n description: n,\n logoImageUrl: r,\n logoImageAltText: a,\n ctaButton: i,\n closeButtonAriaLabel: o = \"\",\n starRatingImageUrl: s = rSe,\n starRatingAltText: u\n}) => {\n const [l, c] = ze(!0), d = () => {\n c(!1);\n }, p = oSe(\n e,\n o\n );\n return /* @__PURE__ */ h.jsx(qz, { children: l ? /* @__PURE__ */ h.jsx(Wn, { isAnimated: !1, exit: iSe, children: /* @__PURE__ */ h.jsxs(\"aside\", { className: Fi.getComponentClassName(), children: [\n /* @__PURE__ */ h.jsx(\n \"button\",\n {\n type: \"button\",\n \"aria-label\": o,\n className: Fi.getElementClassName(\"close-button\"),\n onClick: d,\n \"data-pa-click\": p,\n children: /* @__PURE__ */ h.jsx(\n Uc,\n {\n className: Fi.getElementClassName(\"close-icon\")\n }\n )\n }\n ),\n /* @__PURE__ */ h.jsx(\n _s,\n {\n className: Fi.getElementClassName(\"logo-frame\"),\n baseImage: r,\n imageAltText: a,\n dimensions: aSe\n }\n ),\n /* @__PURE__ */ h.jsxs(\"div\", { className: Fi.getElementClassName(\"text-group\"), children: [\n /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n content: t,\n className: Fi.getElementClassName(\"headline\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"span\",\n content: n,\n className: Fi.getElementClassName(\"description\")\n }\n ),\n /* @__PURE__ */ h.jsx(\n _s,\n {\n className: Fi.getElementClassName(\"star-rating-img\"),\n baseImage: s,\n imageAltText: u,\n dimensions: { minWidth: \"auto\", minHeight: \"auto\" }\n }\n )\n ] }),\n /* @__PURE__ */ h.jsx(\n ua,\n {\n ...i,\n className: Fi.getElementClassName(\"cta-button\"),\n analyticsCompName: e\n }\n )\n ] }) }) : null });\n};\nsSe.displayName = Q2;\nconst uSe = ({ actionCard: e, componentName: t, theme: n = \"white\" }) => /* @__PURE__ */ h.jsx(\n sl,\n {\n ...e,\n analyticsCompName: t,\n variant: \"Link with Divider\",\n theme: n\n }\n), QB = (e, t) => !e || !ks(e) ? null : /* @__PURE__ */ h.jsx(\n an,\n {\n content: e,\n as: t,\n customWrapper: ka(\"Body Large\")\n }\n), em = (e, t, n = \"Body Large\") => !e || !ks(e) ? null : /* @__PURE__ */ h.jsx(\n an,\n {\n as: t,\n content: e,\n customWrapper: ka(n)\n }\n), Zu = (e) => !e || !ks(e) ? null : /* @__PURE__ */ h.jsx(\n an,\n {\n as: \"p\",\n content: e,\n customWrapper: ka(\"Caption\")\n }\n), lSe = (e) => e === \"blue 600\" ? xs.Yellow200 : xs.Yellow300, tm = (e, t) => {\n if (!e)\n return null;\n const n = lSe(t);\n return /* @__PURE__ */ h.jsx(Ls, { ...e, checkmarkColor: n });\n}, Qu = (e) => e ? /* @__PURE__ */ h.jsx(Ns, { ...e }) : null, nm = (e) => !e || !ks(e) ? null : /* @__PURE__ */ h.jsx(\n an,\n {\n content: e,\n customWrapper: ka(\"Caption\")\n }\n), rm = (e) => e ? /* @__PURE__ */ h.jsx(\"div\", { children: e.map(\n ({\n numberGroup: t,\n text: n,\n topBorder: r,\n bottomBorder: a,\n topSpacer: i,\n bottomSpacer: o,\n indent: s,\n alignment: u,\n tooltip: l,\n actionGroup: c\n }, d) => {\n const p = `item-${d}+1`;\n return /* @__PURE__ */ h.jsx(\n pd,\n {\n numberGroup: t,\n text: n,\n textSize: \"Caption\",\n topBorder: r,\n bottomBorder: a,\n topSpacer: i,\n bottomSpacer: o,\n indent: s,\n alignment: u,\n tooltip: l,\n actionGroup: c\n },\n p\n );\n }\n) }) : null, cSe = (e) => e ? /* @__PURE__ */ h.jsx(\n Ur,\n {\n maxSrcSetWidth: 1280,\n roundedCorners: !0,\n ...e,\n motionOptions: {\n motionTypePreset: \"appear\",\n motionIntensity: \"lg\"\n }\n }\n) : null, dSe = ({\n collection: e = [],\n tableTheme: t,\n classNameGen: n\n}) => {\n const r = e[0];\n if (!r)\n return null;\n const {\n productName: a,\n productNameTag: i,\n paragraph: o,\n pricingCardFeatures: s,\n actionGroup: u,\n pricingCardItemHeadline: l,\n list: c\n } = r, d = se(\n n.getElementClassName(\"row\"),\n n.getElementClassName(\"2col-row\"),\n n.getElementClassName(\"top-border\")\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: d, children: [\n /* @__PURE__ */ h.jsxs(\"div\", { className: n.getElementClassName(\"subItemRow\"), children: [\n em(a, i),\n Zu(o),\n Qu(u),\n tm(s, t)\n ] }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: n.getElementClassName(\"pricingColumn\"), children: [\n nm(l),\n rm(c)\n ] })\n ] });\n}, fSe = ({\n collection: e = [],\n classNameGen: t,\n tableTheme: n\n}) => {\n const r = e[0];\n if (!r)\n return null;\n const {\n mediaFrame: a,\n productName: i,\n productNameTag: o,\n paragraph: s,\n pricingCardFeatures: u,\n actionGroup: l,\n pricingCardItemHeadline: c,\n list: d\n } = r, p = se(\n t.getElementClassName(\"row\"),\n t.getElementClassName(\"3col-media-row\"),\n t.getElementClassName(\"top-border\")\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: p, children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: t.getElementClassName(\"media\"), children: cSe(a) }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: t.getElementClassName(\"subItemRow\"), children: [\n em(i, o, \"Body Large Bold\"),\n Zu(s),\n Qu(l),\n tm(u, n)\n ] }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: t.getElementClassName(\"pricingColumn\"), children: [\n nm(c),\n rm(d)\n ] })\n ] });\n}, pSe = (e) => /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n QB(e == null ? void 0 : e.headline, \"h3\"),\n Zu(e == null ? void 0 : e.paragraph),\n Qu(e == null ? void 0 : e.actionGroup)\n] }), hSe = ({ classNameGen: e, textGroup: t }, n, r, a) => {\n const {\n productName: i,\n productNameTag: o,\n paragraph: s,\n actionGroup: u,\n pricingCardFeatures: l,\n pricingCardItemHeadline: c,\n list: d\n } = n;\n return /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(\"div\", { className: e.getElementClassName(\"sectionHeadlineRow\"), children: r && pSe(t) }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: e.getElementClassName(\"subItemRow\"), children: [\n em(i, o, \"Body Large Bold\"),\n Zu(s),\n Qu(u),\n tm(l, a)\n ] }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: e.getElementClassName(\"pricingColumn\"), children: [\n nm(c),\n rm(d)\n ] })\n ] });\n}, mSe = (e) => {\n const { collection: t = [], classNameGen: n, tableTheme: r } = e;\n return t[0] ? /* @__PURE__ */ h.jsx(h.Fragment, { children: t.map((i, o) => {\n const s = o === 0;\n return /* @__PURE__ */ h.jsx(\n \"div\",\n {\n className: se(\n n.getElementClassName(\"row\"),\n n.getElementClassName(\"3col-mixed-row\"),\n {\n [n.getElementClassName(\"top-border\")]: s\n }\n ),\n children: hSe(e, i, s, r)\n },\n `${o + 1}-index`\n );\n }) }) : null;\n}, gSe = ({\n collection: e = [],\n textGroup: t,\n tableTheme: n,\n classNameGen: r\n}) => {\n const a = e[0];\n if (!a)\n return null;\n const {\n productName: i,\n productNameTag: o,\n paragraph: s,\n pricingCardFeatures: u,\n actionGroup: l,\n pricingCardItemHeadline: c,\n list: d\n } = a, p = se(\n r.getElementClassName(\"row\"),\n r.getElementClassName(\"3col-row\"),\n r.getElementClassName(\"top-border\")\n );\n return /* @__PURE__ */ h.jsxs(\"div\", { className: p, children: [\n /* @__PURE__ */ h.jsxs(\"div\", { className: r.getElementClassName(\"sectionHeadlineRow\"), children: [\n QB(t == null ? void 0 : t.headline, \"h3\"),\n Zu(t == null ? void 0 : t.paragraph),\n Qu(t == null ? void 0 : t.actionGroup)\n ] }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: r.getElementClassName(\"subItemRow\"), children: [\n em(i, o),\n Zu(s),\n Qu(l),\n tm(u, n)\n ] }),\n /* @__PURE__ */ h.jsxs(\"div\", { className: r.getElementClassName(\"pricingColumn\"), children: [\n nm(c),\n rm(d)\n ] })\n ] });\n}, vSe = (e) => e === 2 || e === 3, bSe = (e) => e && e.length > 0, ySe = (e) => e.length >= 2 ? mSe : e[0].mediaFrame ? fSe : gSe, CSe = (e, t) => !vSe(e) || !bSe(t) ? null : e === 2 ? dSe : e === 3 ? ySe(t) : null, xSe = ({\n numberOfColumns: e,\n collection: t,\n tableTheme: n,\n ...r\n}) => {\n if (!((t == null ? void 0 : t.length) > 0))\n return null;\n const i = CSe(\n e,\n t\n );\n return i ? /* @__PURE__ */ h.jsx(\n i,\n {\n numberOfColumns: e,\n collection: t,\n tableTheme: n,\n ...r\n }\n ) : null;\n};\nconst mc = \"PricingFeatureTableCard\", e1 = new ke(mc), SSe = \"4vw\", _Se = ({\n actionCard: e,\n bottomSpacer: t = \"6vw\",\n componentId: n,\n disclosureTypeInside: r,\n disclosureTypeOutside: a,\n numberOfColumns: i = 2,\n rows: o = [],\n tableTheme: s = \"white\",\n textGroup: u,\n theme: l = \"white\",\n topSpacer: c = \"6vw\"\n}) => {\n const d = se(e1.getComponentClassName()), p = se(\n e1.getElementClassName(\"container\"),\n pn.getThemeClassName(s)\n ), g = {\n topSpacing: c,\n bottomSpacing: t\n }, v = {\n columnStart: \"left-inner\",\n columnEnd: \"right-inner\"\n };\n return /* @__PURE__ */ h.jsx(\n cn,\n {\n theme: l,\n className: d,\n options: g,\n disclosure: a,\n id: n,\n children: /* @__PURE__ */ h.jsxs(lt, { className: p, options: v, children: [\n u && /* @__PURE__ */ h.jsx(mn, { ...u, analyticsCompName: mc }),\n o == null ? void 0 : o.map((b, C) => /* @__PURE__ */ Xi(\n xSe,\n {\n ...b,\n numberOfColumns: i,\n tableTheme: s,\n key: `row-${C + 1}`,\n classNameGen: e1\n }\n )),\n e && /* @__PURE__ */ h.jsx(\n uSe,\n {\n actionCard: e,\n componentName: mc,\n theme: s\n }\n ),\n r && /* @__PURE__ */ h.jsxs(h.Fragment, { children: [\n /* @__PURE__ */ h.jsx(Bh, { space: SSe, theme: s }),\n /* @__PURE__ */ h.jsx(\n Ci,\n {\n ...r,\n analyticsCompName: mc,\n analyticsTextSection: \"disclosure-inside\"\n }\n )\n ] })\n ] })\n }\n );\n};\n_Se.displayName = mc;\nexport {\n Roe as AccountSelection,\n Ly as ActionBanner,\n Y9 as AppDownloadBanner,\n ch as AppDownloadGroup,\n uP as ArticleCardCarousel,\n f9 as Badge,\n Gt as BodyText,\n ua as Button,\n Ry as CardCarousel,\n Ch as CardContentSectionType,\n By as CardWrappedContentSection,\n Wse as ClickthruRebrand,\n Xp as CloseButton,\n an as ContentRenderer,\n DSe as CtaClosingRebrand,\n Ci as Disclosure,\n vP as DiscoveryLinkType,\n CP as FaqType,\n $y as FeatureColumnType,\n tM as FeatureNavigationSection,\n Ppe as FeatureSection,\n Ape as FormSectionRebrand,\n uM as FormTypeRebrand,\n Hpe as FormWrapperRebrand,\n Yc as Grid,\n lt as GridItem,\n Sr as HeadingText,\n Xpe as HeroRebrand,\n vM as HomepageHero,\n ZB as HomepageHeroRebrand,\n bM as HomepageLink,\n Jge as HomepageSegmentControl,\n TM as HotspotSection,\n ur as Image,\n PSe as JumpLinkNav,\n d2 as LogoStripSection,\n DM as LogoTickerSection,\n m2 as LogoType,\n RSe as MerchantHero,\n sSe as MobileAppStoreBanner,\n LM as NavBanner,\n b2 as OfferCardType,\n KM as PageSegmentControl,\n kSe as Parent,\n ISe as Placement,\n p0e as PpReactAlert,\n Mie as PpReactCurrencyInput,\n O7 as PpReactDropdownMenu,\n th as PpReactLoadingSpinner,\n C2 as PricingCardHorizontalType,\n w2 as PricingCardTableRebrand,\n _Se as PricingFeatureTable,\n Yf as PricingMegaCard,\n Yf as PricingMegaCardRebrand,\n HM as ProductScrollType,\n Ch as RelatedContentType,\n cn as SectionWrapper,\n Bh as Spacer,\n ZM as SplitGraphicSectionType,\n N2 as SplitSectionType,\n O2 as StackSection,\n O2 as StackSectionType,\n _M as StickyQRBadge,\n e7 as SubNav,\n JM as SwatchGridType,\n FM as Table,\n L2 as TableRebrand,\n nR as TextGraphicSection,\n mn as TextGroup,\n Uy as TextSection,\n Uy as TextSectionType,\n G9 as Video\n};\n//# sourceMappingURL=index.js.map\n","function defaultDispose() { }\nexport class StrongCache {\n constructor(max = Infinity, dispose = defaultDispose) {\n this.max = max;\n this.dispose = dispose;\n this.map = new Map();\n this.newest = null;\n this.oldest = null;\n }\n has(key) {\n return this.map.has(key);\n }\n get(key) {\n const node = this.getNode(key);\n return node && node.value;\n }\n get size() {\n return this.map.size;\n }\n getNode(key) {\n const node = this.map.get(key);\n if (node && node !== this.newest) {\n const { older, newer } = node;\n if (newer) {\n newer.older = older;\n }\n if (older) {\n older.newer = newer;\n }\n node.older = this.newest;\n node.older.newer = node;\n node.newer = null;\n this.newest = node;\n if (node === this.oldest) {\n this.oldest = newer;\n }\n }\n return node;\n }\n set(key, value) {\n let node = this.getNode(key);\n if (node) {\n return node.value = value;\n }\n node = {\n key,\n value,\n newer: null,\n older: this.newest\n };\n if (this.newest) {\n this.newest.newer = node;\n }\n this.newest = node;\n this.oldest = this.oldest || node;\n this.map.set(key, node);\n return node.value;\n }\n clean() {\n while (this.oldest && this.map.size > this.max) {\n this.delete(this.oldest.key);\n }\n }\n delete(key) {\n const node = this.map.get(key);\n if (node) {\n if (node === this.newest) {\n this.newest = node.older;\n }\n if (node === this.oldest) {\n this.oldest = node.newer;\n }\n if (node.newer) {\n node.newer.older = node.older;\n }\n if (node.older) {\n node.older.newer = node.newer;\n }\n this.map.delete(key);\n this.dispose(node.value, key);\n return true;\n }\n return false;\n }\n}\n//# sourceMappingURL=strong.js.map","function noop() { }\nconst defaultDispose = noop;\nconst _WeakRef = typeof WeakRef !== \"undefined\"\n ? WeakRef\n : function (value) {\n return { deref: () => value };\n };\nconst _WeakMap = typeof WeakMap !== \"undefined\" ? WeakMap : Map;\nconst _FinalizationRegistry = typeof FinalizationRegistry !== \"undefined\"\n ? FinalizationRegistry\n : function () {\n return {\n register: noop,\n unregister: noop,\n };\n };\nconst finalizationBatchSize = 10024;\nexport class WeakCache {\n constructor(max = Infinity, dispose = defaultDispose) {\n this.max = max;\n this.dispose = dispose;\n this.map = new _WeakMap();\n this.newest = null;\n this.oldest = null;\n this.unfinalizedNodes = new Set();\n this.finalizationScheduled = false;\n this.size = 0;\n this.finalize = () => {\n const iterator = this.unfinalizedNodes.values();\n for (let i = 0; i < finalizationBatchSize; i++) {\n const node = iterator.next().value;\n if (!node)\n break;\n this.unfinalizedNodes.delete(node);\n const key = node.key;\n delete node.key;\n node.keyRef = new _WeakRef(key);\n this.registry.register(key, node, node);\n }\n if (this.unfinalizedNodes.size > 0) {\n queueMicrotask(this.finalize);\n }\n else {\n this.finalizationScheduled = false;\n }\n };\n this.registry = new _FinalizationRegistry(this.deleteNode.bind(this));\n }\n has(key) {\n return this.map.has(key);\n }\n get(key) {\n const node = this.getNode(key);\n return node && node.value;\n }\n getNode(key) {\n const node = this.map.get(key);\n if (node && node !== this.newest) {\n const { older, newer } = node;\n if (newer) {\n newer.older = older;\n }\n if (older) {\n older.newer = newer;\n }\n node.older = this.newest;\n node.older.newer = node;\n node.newer = null;\n this.newest = node;\n if (node === this.oldest) {\n this.oldest = newer;\n }\n }\n return node;\n }\n set(key, value) {\n let node = this.getNode(key);\n if (node) {\n return (node.value = value);\n }\n node = {\n key,\n value,\n newer: null,\n older: this.newest,\n };\n if (this.newest) {\n this.newest.newer = node;\n }\n this.newest = node;\n this.oldest = this.oldest || node;\n this.scheduleFinalization(node);\n this.map.set(key, node);\n this.size++;\n return node.value;\n }\n clean() {\n while (this.oldest && this.size > this.max) {\n this.deleteNode(this.oldest);\n }\n }\n deleteNode(node) {\n if (node === this.newest) {\n this.newest = node.older;\n }\n if (node === this.oldest) {\n this.oldest = node.newer;\n }\n if (node.newer) {\n node.newer.older = node.older;\n }\n if (node.older) {\n node.older.newer = node.newer;\n }\n this.size--;\n const key = node.key || (node.keyRef && node.keyRef.deref());\n this.dispose(node.value, key);\n if (!node.keyRef) {\n this.unfinalizedNodes.delete(node);\n }\n else {\n this.registry.unregister(node);\n }\n if (key)\n this.map.delete(key);\n }\n delete(key) {\n const node = this.map.get(key);\n if (node) {\n this.deleteNode(node);\n return true;\n }\n return false;\n }\n scheduleFinalization(node) {\n this.unfinalizedNodes.add(node);\n if (!this.finalizationScheduled) {\n this.finalizationScheduled = true;\n queueMicrotask(this.finalize);\n }\n }\n}\n//# sourceMappingURL=weak.js.map","const { toString, hasOwnProperty } = Object.prototype;\nconst fnToStr = Function.prototype.toString;\nconst previousComparisons = new Map();\n/**\n * Performs a deep equality check on two JavaScript values, tolerating cycles.\n */\nexport function equal(a, b) {\n try {\n return check(a, b);\n }\n finally {\n previousComparisons.clear();\n }\n}\n// Allow default imports as well.\nexport default equal;\nfunction check(a, b) {\n // If the two values are strictly equal, our job is easy.\n if (a === b) {\n return true;\n }\n // Object.prototype.toString returns a representation of the runtime type of\n // the given value that is considerably more precise than typeof.\n const aTag = toString.call(a);\n const bTag = toString.call(b);\n // If the runtime types of a and b are different, they could maybe be equal\n // under some interpretation of equality, but for simplicity and performance\n // we just return false instead.\n if (aTag !== bTag) {\n return false;\n }\n switch (aTag) {\n case '[object Array]':\n // Arrays are a lot like other objects, but we can cheaply compare their\n // lengths as a short-cut before comparing their elements.\n if (a.length !== b.length)\n return false;\n // Fall through to object case...\n case '[object Object]': {\n if (previouslyCompared(a, b))\n return true;\n const aKeys = definedKeys(a);\n const bKeys = definedKeys(b);\n // If `a` and `b` have a different number of enumerable keys, they\n // must be different.\n const keyCount = aKeys.length;\n if (keyCount !== bKeys.length)\n return false;\n // Now make sure they have the same keys.\n for (let k = 0; k < keyCount; ++k) {\n if (!hasOwnProperty.call(b, aKeys[k])) {\n return false;\n }\n }\n // Finally, check deep equality of all child properties.\n for (let k = 0; k < keyCount; ++k) {\n const key = aKeys[k];\n if (!check(a[key], b[key])) {\n return false;\n }\n }\n return true;\n }\n case '[object Error]':\n return a.name === b.name && a.message === b.message;\n case '[object Number]':\n // Handle NaN, which is !== itself.\n if (a !== a)\n return b !== b;\n // Fall through to shared +a === +b case...\n case '[object Boolean]':\n case '[object Date]':\n return +a === +b;\n case '[object RegExp]':\n case '[object String]':\n return a == `${b}`;\n case '[object Map]':\n case '[object Set]': {\n if (a.size !== b.size)\n return false;\n if (previouslyCompared(a, b))\n return true;\n const aIterator = a.entries();\n const isMap = aTag === '[object Map]';\n while (true) {\n const info = aIterator.next();\n if (info.done)\n break;\n // If a instanceof Set, aValue === aKey.\n const [aKey, aValue] = info.value;\n // So this works the same way for both Set and Map.\n if (!b.has(aKey)) {\n return false;\n }\n // However, we care about deep equality of values only when dealing\n // with Map structures.\n if (isMap && !check(aValue, b.get(aKey))) {\n return false;\n }\n }\n return true;\n }\n case '[object Uint16Array]':\n case '[object Uint8Array]': // Buffer, in Node.js.\n case '[object Uint32Array]':\n case '[object Int32Array]':\n case '[object Int8Array]':\n case '[object Int16Array]':\n case '[object ArrayBuffer]':\n // DataView doesn't need these conversions, but the equality check is\n // otherwise the same.\n a = new Uint8Array(a);\n b = new Uint8Array(b);\n // Fall through...\n case '[object DataView]': {\n let len = a.byteLength;\n if (len === b.byteLength) {\n while (len-- && a[len] === b[len]) {\n // Keep looping as long as the bytes are equal.\n }\n }\n return len === -1;\n }\n case '[object AsyncFunction]':\n case '[object GeneratorFunction]':\n case '[object AsyncGeneratorFunction]':\n case '[object Function]': {\n const aCode = fnToStr.call(a);\n if (aCode !== fnToStr.call(b)) {\n return false;\n }\n // We consider non-native functions equal if they have the same code\n // (native functions require === because their code is censored).\n // Note that this behavior is not entirely sound, since !== function\n // objects with the same code can behave differently depending on\n // their closure scope. However, any function can behave differently\n // depending on the values of its input arguments (including this)\n // and its calling context (including its closure scope), even\n // though the function object is === to itself; and it is entirely\n // possible for functions that are not === to behave exactly the\n // same under all conceivable circumstances. Because none of these\n // factors are statically decidable in JavaScript, JS function\n // equality is not well-defined. This ambiguity allows us to\n // consider the best possible heuristic among various imperfect\n // options, and equating non-native functions that have the same\n // code has enormous practical benefits, such as when comparing\n // functions that are repeatedly passed as fresh function\n // expressions within objects that are otherwise deeply equal. Since\n // any function created from the same syntactic expression (in the\n // same code location) will always stringify to the same code\n // according to fnToStr.call, we can reasonably expect these\n // repeatedly passed function expressions to have the same code, and\n // thus behave \"the same\" (with all the caveats mentioned above),\n // even though the runtime function objects are !== to one another.\n return !endsWith(aCode, nativeCodeSuffix);\n }\n }\n // Otherwise the values are not equal.\n return false;\n}\nfunction definedKeys(obj) {\n // Remember that the second argument to Array.prototype.filter will be\n // used as `this` within the callback function.\n return Object.keys(obj).filter(isDefinedKey, obj);\n}\nfunction isDefinedKey(key) {\n return this[key] !== void 0;\n}\nconst nativeCodeSuffix = \"{ [native code] }\";\nfunction endsWith(full, suffix) {\n const fromIndex = full.length - suffix.length;\n return fromIndex >= 0 &&\n full.indexOf(suffix, fromIndex) === fromIndex;\n}\nfunction previouslyCompared(a, b) {\n // Though cyclic references can make an object graph appear infinite from the\n // perspective of a depth-first traversal, the graph still contains a finite\n // number of distinct object references. We use the previousComparisons cache\n // to avoid comparing the same pair of object references more than once, which\n // guarantees termination (even if we end up comparing every object in one\n // graph to every object in the other graph, which is extremely unlikely),\n // while still allowing weird isomorphic structures (like rings with different\n // lengths) a chance to pass the equality test.\n let bSet = previousComparisons.get(a);\n if (bSet) {\n // Return true here because we can be sure false will be returned somewhere\n // else if the objects are not equivalent.\n if (bSet.has(b))\n return true;\n }\n else {\n previousComparisons.set(a, bSet = new Set);\n }\n bSet.add(b);\n return false;\n}\n//# sourceMappingURL=index.js.map","export function devAssert(condition, message) {\n const booleanCondition = Boolean(condition);\n\n if (!booleanCondition) {\n throw new Error(message);\n }\n}\n","const MAX_ARRAY_LENGTH = 10;\nconst MAX_RECURSIVE_DEPTH = 2;\n/**\n * Used to print values in error messages.\n */\n\nexport function inspect(value) {\n return formatValue(value, []);\n}\n\nfunction formatValue(value, seenValues) {\n switch (typeof value) {\n case 'string':\n return JSON.stringify(value);\n\n case 'function':\n return value.name ? `[function ${value.name}]` : '[function]';\n\n case 'object':\n return formatObjectValue(value, seenValues);\n\n default:\n return String(value);\n }\n}\n\nfunction formatObjectValue(value, previouslySeenValues) {\n if (value === null) {\n return 'null';\n }\n\n if (previouslySeenValues.includes(value)) {\n return '[Circular]';\n }\n\n const seenValues = [...previouslySeenValues, value];\n\n if (isJSONable(value)) {\n const jsonValue = value.toJSON(); // check for infinite recursion\n\n if (jsonValue !== value) {\n return typeof jsonValue === 'string'\n ? jsonValue\n : formatValue(jsonValue, seenValues);\n }\n } else if (Array.isArray(value)) {\n return formatArray(value, seenValues);\n }\n\n return formatObject(value, seenValues);\n}\n\nfunction isJSONable(value) {\n return typeof value.toJSON === 'function';\n}\n\nfunction formatObject(object, seenValues) {\n const entries = Object.entries(object);\n\n if (entries.length === 0) {\n return '{}';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[' + getObjectTag(object) + ']';\n }\n\n const properties = entries.map(\n ([key, value]) => key + ': ' + formatValue(value, seenValues),\n );\n return '{ ' + properties.join(', ') + ' }';\n}\n\nfunction formatArray(array, seenValues) {\n if (array.length === 0) {\n return '[]';\n }\n\n if (seenValues.length > MAX_RECURSIVE_DEPTH) {\n return '[Array]';\n }\n\n const len = Math.min(MAX_ARRAY_LENGTH, array.length);\n const remaining = array.length - len;\n const items = [];\n\n for (let i = 0; i < len; ++i) {\n items.push(formatValue(array[i], seenValues));\n }\n\n if (remaining === 1) {\n items.push('... 1 more item');\n } else if (remaining > 1) {\n items.push(`... ${remaining} more items`);\n }\n\n return '[' + items.join(', ') + ']';\n}\n\nfunction getObjectTag(object) {\n const tag = Object.prototype.toString\n .call(object)\n .replace(/^\\[object /, '')\n .replace(/]$/, '');\n\n if (tag === 'Object' && typeof object.constructor === 'function') {\n const name = object.constructor.name;\n\n if (typeof name === 'string' && name !== '') {\n return name;\n }\n }\n\n return tag;\n}\n","/**\n * Contains a range of UTF-8 character offsets and token references that\n * identify the region of the source from which the AST derived.\n */\nexport class Location {\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The Token at which this Node begins.\n */\n\n /**\n * The Token at which this Node ends.\n */\n\n /**\n * The Source document the AST represents.\n */\n constructor(startToken, endToken, source) {\n this.start = startToken.start;\n this.end = endToken.end;\n this.startToken = startToken;\n this.endToken = endToken;\n this.source = source;\n }\n\n get [Symbol.toStringTag]() {\n return 'Location';\n }\n\n toJSON() {\n return {\n start: this.start,\n end: this.end,\n };\n }\n}\n/**\n * Represents a range of characters represented by a lexical token\n * within a Source.\n */\n\nexport class Token {\n /**\n * The kind of Token.\n */\n\n /**\n * The character offset at which this Node begins.\n */\n\n /**\n * The character offset at which this Node ends.\n */\n\n /**\n * The 1-indexed line number on which this Token appears.\n */\n\n /**\n * The 1-indexed column number at which this Token begins.\n */\n\n /**\n * For non-punctuation tokens, represents the interpreted value of the token.\n *\n * Note: is undefined for punctuation tokens, but typed as string for\n * convenience in the parser.\n */\n\n /**\n * Tokens exist as nodes in a double-linked-list amongst all tokens\n * including ignored tokens. is always the first node and \n * the last.\n */\n constructor(kind, start, end, line, column, value) {\n this.kind = kind;\n this.start = start;\n this.end = end;\n this.line = line;\n this.column = column; // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n\n this.value = value;\n this.prev = null;\n this.next = null;\n }\n\n get [Symbol.toStringTag]() {\n return 'Token';\n }\n\n toJSON() {\n return {\n kind: this.kind,\n value: this.value,\n line: this.line,\n column: this.column,\n };\n }\n}\n/**\n * The list of all possible AST node types.\n */\n\n/**\n * @internal\n */\nexport const QueryDocumentKeys = {\n Name: [],\n Document: ['definitions'],\n OperationDefinition: [\n 'name',\n 'variableDefinitions',\n 'directives',\n 'selectionSet',\n ],\n VariableDefinition: ['variable', 'type', 'defaultValue', 'directives'],\n Variable: ['name'],\n SelectionSet: ['selections'],\n Field: ['alias', 'name', 'arguments', 'directives', 'selectionSet'],\n Argument: ['name', 'value'],\n FragmentSpread: ['name', 'directives'],\n InlineFragment: ['typeCondition', 'directives', 'selectionSet'],\n FragmentDefinition: [\n 'name', // Note: fragment variable definitions are deprecated and will removed in v17.0.0\n 'variableDefinitions',\n 'typeCondition',\n 'directives',\n 'selectionSet',\n ],\n IntValue: [],\n FloatValue: [],\n StringValue: [],\n BooleanValue: [],\n NullValue: [],\n EnumValue: [],\n ListValue: ['values'],\n ObjectValue: ['fields'],\n ObjectField: ['name', 'value'],\n Directive: ['name', 'arguments'],\n NamedType: ['name'],\n ListType: ['type'],\n NonNullType: ['type'],\n SchemaDefinition: ['description', 'directives', 'operationTypes'],\n OperationTypeDefinition: ['type'],\n ScalarTypeDefinition: ['description', 'name', 'directives'],\n ObjectTypeDefinition: [\n 'description',\n 'name',\n 'interfaces',\n 'directives',\n 'fields',\n ],\n FieldDefinition: ['description', 'name', 'arguments', 'type', 'directives'],\n InputValueDefinition: [\n 'description',\n 'name',\n 'type',\n 'defaultValue',\n 'directives',\n ],\n InterfaceTypeDefinition: [\n 'description',\n 'name',\n 'interfaces',\n 'directives',\n 'fields',\n ],\n UnionTypeDefinition: ['description', 'name', 'directives', 'types'],\n EnumTypeDefinition: ['description', 'name', 'directives', 'values'],\n EnumValueDefinition: ['description', 'name', 'directives'],\n InputObjectTypeDefinition: ['description', 'name', 'directives', 'fields'],\n DirectiveDefinition: ['description', 'name', 'arguments', 'locations'],\n SchemaExtension: ['directives', 'operationTypes'],\n ScalarTypeExtension: ['name', 'directives'],\n ObjectTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n InterfaceTypeExtension: ['name', 'interfaces', 'directives', 'fields'],\n UnionTypeExtension: ['name', 'directives', 'types'],\n EnumTypeExtension: ['name', 'directives', 'values'],\n InputObjectTypeExtension: ['name', 'directives', 'fields'],\n};\nconst kindValues = new Set(Object.keys(QueryDocumentKeys));\n/**\n * @internal\n */\n\nexport function isNode(maybeNode) {\n const maybeKind =\n maybeNode === null || maybeNode === void 0 ? void 0 : maybeNode.kind;\n return typeof maybeKind === 'string' && kindValues.has(maybeKind);\n}\n/** Name */\n\nvar OperationTypeNode;\n\n(function (OperationTypeNode) {\n OperationTypeNode['QUERY'] = 'query';\n OperationTypeNode['MUTATION'] = 'mutation';\n OperationTypeNode['SUBSCRIPTION'] = 'subscription';\n})(OperationTypeNode || (OperationTypeNode = {}));\n\nexport { OperationTypeNode };\n","import { isWhiteSpace } from './characterClasses.mjs';\n/**\n * Produces the value of a block string from its parsed raw value, similar to\n * CoffeeScript's block string, Python's docstring trim or Ruby's strip_heredoc.\n *\n * This implements the GraphQL spec's BlockStringValue() static algorithm.\n *\n * @internal\n */\n\nexport function dedentBlockStringLines(lines) {\n var _firstNonEmptyLine2;\n\n let commonIndent = Number.MAX_SAFE_INTEGER;\n let firstNonEmptyLine = null;\n let lastNonEmptyLine = -1;\n\n for (let i = 0; i < lines.length; ++i) {\n var _firstNonEmptyLine;\n\n const line = lines[i];\n const indent = leadingWhitespace(line);\n\n if (indent === line.length) {\n continue; // skip empty lines\n }\n\n firstNonEmptyLine =\n (_firstNonEmptyLine = firstNonEmptyLine) !== null &&\n _firstNonEmptyLine !== void 0\n ? _firstNonEmptyLine\n : i;\n lastNonEmptyLine = i;\n\n if (i !== 0 && indent < commonIndent) {\n commonIndent = indent;\n }\n }\n\n return lines // Remove common indentation from all lines but first.\n .map((line, i) => (i === 0 ? line : line.slice(commonIndent))) // Remove leading and trailing blank lines.\n .slice(\n (_firstNonEmptyLine2 = firstNonEmptyLine) !== null &&\n _firstNonEmptyLine2 !== void 0\n ? _firstNonEmptyLine2\n : 0,\n lastNonEmptyLine + 1,\n );\n}\n\nfunction leadingWhitespace(str) {\n let i = 0;\n\n while (i < str.length && isWhiteSpace(str.charCodeAt(i))) {\n ++i;\n }\n\n return i;\n}\n/**\n * @internal\n */\n\nexport function isPrintableAsBlockString(value) {\n if (value === '') {\n return true; // empty string is printable\n }\n\n let isEmptyLine = true;\n let hasIndent = false;\n let hasCommonIndent = true;\n let seenNonEmptyLine = false;\n\n for (let i = 0; i < value.length; ++i) {\n switch (value.codePointAt(i)) {\n case 0x0000:\n case 0x0001:\n case 0x0002:\n case 0x0003:\n case 0x0004:\n case 0x0005:\n case 0x0006:\n case 0x0007:\n case 0x0008:\n case 0x000b:\n case 0x000c:\n case 0x000e:\n case 0x000f:\n return false;\n // Has non-printable characters\n\n case 0x000d:\n // \\r\n return false;\n // Has \\r or \\r\\n which will be replaced as \\n\n\n case 10:\n // \\n\n if (isEmptyLine && !seenNonEmptyLine) {\n return false; // Has leading new line\n }\n\n seenNonEmptyLine = true;\n isEmptyLine = true;\n hasIndent = false;\n break;\n\n case 9: // \\t\n\n case 32:\n // \n hasIndent || (hasIndent = isEmptyLine);\n break;\n\n default:\n hasCommonIndent && (hasCommonIndent = hasIndent);\n isEmptyLine = false;\n }\n }\n\n if (isEmptyLine) {\n return false; // Has trailing empty lines\n }\n\n if (hasCommonIndent && seenNonEmptyLine) {\n return false; // Has internal indent\n }\n\n return true;\n}\n/**\n * Print a block string in the indented block form by adding a leading and\n * trailing blank line. However, if a block string starts with whitespace and is\n * a single-line, adding a leading blank line would strip that whitespace.\n *\n * @internal\n */\n\nexport function printBlockString(value, options) {\n const escapedValue = value.replace(/\"\"\"/g, '\\\\\"\"\"'); // Expand a block string's raw value into independent lines.\n\n const lines = escapedValue.split(/\\r\\n|[\\n\\r]/g);\n const isSingleLine = lines.length === 1; // If common indentation is found we can fix some of those cases by adding leading new line\n\n const forceLeadingNewLine =\n lines.length > 1 &&\n lines\n .slice(1)\n .every((line) => line.length === 0 || isWhiteSpace(line.charCodeAt(0))); // Trailing triple quotes just looks confusing but doesn't force trailing new line\n\n const hasTrailingTripleQuotes = escapedValue.endsWith('\\\\\"\"\"'); // Trailing quote (single or double) or slash forces trailing new line\n\n const hasTrailingQuote = value.endsWith('\"') && !hasTrailingTripleQuotes;\n const hasTrailingSlash = value.endsWith('\\\\');\n const forceTrailingNewline = hasTrailingQuote || hasTrailingSlash;\n const printAsMultipleLines =\n !(options !== null && options !== void 0 && options.minimize) && // add leading and trailing new lines only if it improves readability\n (!isSingleLine ||\n value.length > 70 ||\n forceTrailingNewline ||\n forceLeadingNewLine ||\n hasTrailingTripleQuotes);\n let result = ''; // Format a multi-line block quote to account for leading space.\n\n const skipLeadingNewLine = isSingleLine && isWhiteSpace(value.charCodeAt(0));\n\n if ((printAsMultipleLines && !skipLeadingNewLine) || forceLeadingNewLine) {\n result += '\\n';\n }\n\n result += escapedValue;\n\n if (printAsMultipleLines || forceTrailingNewline) {\n result += '\\n';\n }\n\n return '\"\"\"' + result + '\"\"\"';\n}\n","/**\n * ```\n * WhiteSpace ::\n * - \"Horizontal Tab (U+0009)\"\n * - \"Space (U+0020)\"\n * ```\n * @internal\n */\nexport function isWhiteSpace(code) {\n return code === 0x0009 || code === 0x0020;\n}\n/**\n * ```\n * Digit :: one of\n * - `0` `1` `2` `3` `4` `5` `6` `7` `8` `9`\n * ```\n * @internal\n */\n\nexport function isDigit(code) {\n return code >= 0x0030 && code <= 0x0039;\n}\n/**\n * ```\n * Letter :: one of\n * - `A` `B` `C` `D` `E` `F` `G` `H` `I` `J` `K` `L` `M`\n * - `N` `O` `P` `Q` `R` `S` `T` `U` `V` `W` `X` `Y` `Z`\n * - `a` `b` `c` `d` `e` `f` `g` `h` `i` `j` `k` `l` `m`\n * - `n` `o` `p` `q` `r` `s` `t` `u` `v` `w` `x` `y` `z`\n * ```\n * @internal\n */\n\nexport function isLetter(code) {\n return (\n (code >= 0x0061 && code <= 0x007a) || // A-Z\n (code >= 0x0041 && code <= 0x005a) // a-z\n );\n}\n/**\n * ```\n * NameStart ::\n * - Letter\n * - `_`\n * ```\n * @internal\n */\n\nexport function isNameStart(code) {\n return isLetter(code) || code === 0x005f;\n}\n/**\n * ```\n * NameContinue ::\n * - Letter\n * - Digit\n * - `_`\n * ```\n * @internal\n */\n\nexport function isNameContinue(code) {\n return isLetter(code) || isDigit(code) || code === 0x005f;\n}\n","/**\n * The set of allowed kind values for AST nodes.\n */\nvar Kind;\n\n(function (Kind) {\n Kind['NAME'] = 'Name';\n Kind['DOCUMENT'] = 'Document';\n Kind['OPERATION_DEFINITION'] = 'OperationDefinition';\n Kind['VARIABLE_DEFINITION'] = 'VariableDefinition';\n Kind['SELECTION_SET'] = 'SelectionSet';\n Kind['FIELD'] = 'Field';\n Kind['ARGUMENT'] = 'Argument';\n Kind['FRAGMENT_SPREAD'] = 'FragmentSpread';\n Kind['INLINE_FRAGMENT'] = 'InlineFragment';\n Kind['FRAGMENT_DEFINITION'] = 'FragmentDefinition';\n Kind['VARIABLE'] = 'Variable';\n Kind['INT'] = 'IntValue';\n Kind['FLOAT'] = 'FloatValue';\n Kind['STRING'] = 'StringValue';\n Kind['BOOLEAN'] = 'BooleanValue';\n Kind['NULL'] = 'NullValue';\n Kind['ENUM'] = 'EnumValue';\n Kind['LIST'] = 'ListValue';\n Kind['OBJECT'] = 'ObjectValue';\n Kind['OBJECT_FIELD'] = 'ObjectField';\n Kind['DIRECTIVE'] = 'Directive';\n Kind['NAMED_TYPE'] = 'NamedType';\n Kind['LIST_TYPE'] = 'ListType';\n Kind['NON_NULL_TYPE'] = 'NonNullType';\n Kind['SCHEMA_DEFINITION'] = 'SchemaDefinition';\n Kind['OPERATION_TYPE_DEFINITION'] = 'OperationTypeDefinition';\n Kind['SCALAR_TYPE_DEFINITION'] = 'ScalarTypeDefinition';\n Kind['OBJECT_TYPE_DEFINITION'] = 'ObjectTypeDefinition';\n Kind['FIELD_DEFINITION'] = 'FieldDefinition';\n Kind['INPUT_VALUE_DEFINITION'] = 'InputValueDefinition';\n Kind['INTERFACE_TYPE_DEFINITION'] = 'InterfaceTypeDefinition';\n Kind['UNION_TYPE_DEFINITION'] = 'UnionTypeDefinition';\n Kind['ENUM_TYPE_DEFINITION'] = 'EnumTypeDefinition';\n Kind['ENUM_VALUE_DEFINITION'] = 'EnumValueDefinition';\n Kind['INPUT_OBJECT_TYPE_DEFINITION'] = 'InputObjectTypeDefinition';\n Kind['DIRECTIVE_DEFINITION'] = 'DirectiveDefinition';\n Kind['SCHEMA_EXTENSION'] = 'SchemaExtension';\n Kind['SCALAR_TYPE_EXTENSION'] = 'ScalarTypeExtension';\n Kind['OBJECT_TYPE_EXTENSION'] = 'ObjectTypeExtension';\n Kind['INTERFACE_TYPE_EXTENSION'] = 'InterfaceTypeExtension';\n Kind['UNION_TYPE_EXTENSION'] = 'UnionTypeExtension';\n Kind['ENUM_TYPE_EXTENSION'] = 'EnumTypeExtension';\n Kind['INPUT_OBJECT_TYPE_EXTENSION'] = 'InputObjectTypeExtension';\n})(Kind || (Kind = {}));\n\nexport { Kind };\n/**\n * The enum type representing the possible kind values of AST nodes.\n *\n * @deprecated Please use `Kind`. Will be remove in v17.\n */\n","/******************************************************************************\nCopyright (c) Microsoft Corporation.\n\nPermission to use, copy, modify, and/or distribute this software for any\npurpose with or without fee is hereby granted.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\nPERFORMANCE OF THIS SOFTWARE.\n***************************************************************************** */\n/* global Reflect, Promise, SuppressedError, Symbol */\n\nvar extendStatics = function(d, b) {\n extendStatics = Object.setPrototypeOf ||\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\n return extendStatics(d, b);\n};\n\nexport function __extends(d, b) {\n if (typeof b !== \"function\" && b !== null)\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\n extendStatics(d, b);\n function __() { this.constructor = d; }\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\n}\n\nexport var __assign = function() {\n __assign = Object.assign || function __assign(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\n }\n return t;\n }\n return __assign.apply(this, arguments);\n}\n\nexport function __rest(s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n}\n\nexport function __decorate(decorators, target, key, desc) {\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\n 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;\n return c > 3 && r && Object.defineProperty(target, key, r), r;\n}\n\nexport function __param(paramIndex, decorator) {\n return function (target, key) { decorator(target, key, paramIndex); }\n}\n\nexport function __esDecorate(ctor, descriptorIn, decorators, contextIn, initializers, extraInitializers) {\n function accept(f) { if (f !== void 0 && typeof f !== \"function\") throw new TypeError(\"Function expected\"); return f; }\n var kind = contextIn.kind, key = kind === \"getter\" ? \"get\" : kind === \"setter\" ? \"set\" : \"value\";\n var target = !descriptorIn && ctor ? contextIn[\"static\"] ? ctor : ctor.prototype : null;\n var descriptor = descriptorIn || (target ? Object.getOwnPropertyDescriptor(target, contextIn.name) : {});\n var _, done = false;\n for (var i = decorators.length - 1; i >= 0; i--) {\n var context = {};\n for (var p in contextIn) context[p] = p === \"access\" ? {} : contextIn[p];\n for (var p in contextIn.access) context.access[p] = contextIn.access[p];\n context.addInitializer = function (f) { if (done) throw new TypeError(\"Cannot add initializers after decoration has completed\"); extraInitializers.push(accept(f || null)); };\n var result = (0, decorators[i])(kind === \"accessor\" ? { get: descriptor.get, set: descriptor.set } : descriptor[key], context);\n if (kind === \"accessor\") {\n if (result === void 0) continue;\n if (result === null || typeof result !== \"object\") throw new TypeError(\"Object expected\");\n if (_ = accept(result.get)) descriptor.get = _;\n if (_ = accept(result.set)) descriptor.set = _;\n if (_ = accept(result.init)) initializers.unshift(_);\n }\n else if (_ = accept(result)) {\n if (kind === \"field\") initializers.unshift(_);\n else descriptor[key] = _;\n }\n }\n if (target) Object.defineProperty(target, contextIn.name, descriptor);\n done = true;\n};\n\nexport function __runInitializers(thisArg, initializers, value) {\n var useValue = arguments.length > 2;\n for (var i = 0; i < initializers.length; i++) {\n value = useValue ? initializers[i].call(thisArg, value) : initializers[i].call(thisArg);\n }\n return useValue ? value : void 0;\n};\n\nexport function __propKey(x) {\n return typeof x === \"symbol\" ? x : \"\".concat(x);\n};\n\nexport function __setFunctionName(f, name, prefix) {\n if (typeof name === \"symbol\") name = name.description ? \"[\".concat(name.description, \"]\") : \"\";\n return Object.defineProperty(f, \"name\", { configurable: true, value: prefix ? \"\".concat(prefix, \" \", name) : name });\n};\n\nexport function __metadata(metadataKey, metadataValue) {\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\n}\n\nexport function __awaiter(thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n}\n\nexport function __generator(thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (g && (g = 0, op[0] && (_ = 0)), _) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n}\n\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n var desc = Object.getOwnPropertyDescriptor(m, k);\n if (!desc || (\"get\" in desc ? !m.__esModule : desc.writable || desc.configurable)) {\n desc = { enumerable: true, get: function() { return m[k]; } };\n }\n Object.defineProperty(o, k2, desc);\n}) : (function(o, m, k, k2) {\n if (k2 === undefined) k2 = k;\n o[k2] = m[k];\n});\n\nexport function __exportStar(m, o) {\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\n}\n\nexport function __values(o) {\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\n if (m) return m.call(o);\n if (o && typeof o.length === \"number\") return {\n next: function () {\n if (o && i >= o.length) o = void 0;\n return { value: o && o[i++], done: !o };\n }\n };\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\n}\n\nexport function __read(o, n) {\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\n if (!m) return o;\n var i = m.call(o), r, ar = [], e;\n try {\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\n }\n catch (error) { e = { error: error }; }\n finally {\n try {\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\n }\n finally { if (e) throw e.error; }\n }\n return ar;\n}\n\n/** @deprecated */\nexport function __spread() {\n for (var ar = [], i = 0; i < arguments.length; i++)\n ar = ar.concat(__read(arguments[i]));\n return ar;\n}\n\n/** @deprecated */\nexport function __spreadArrays() {\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\n r[k] = a[j];\n return r;\n}\n\nexport function __spreadArray(to, from, pack) {\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\n if (ar || !(i in from)) {\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\n ar[i] = from[i];\n }\n }\n return to.concat(ar || Array.prototype.slice.call(from));\n}\n\nexport function __await(v) {\n return this instanceof __await ? (this.v = v, this) : new __await(v);\n}\n\nexport function __asyncGenerator(thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\", awaitReturn), i[Symbol.asyncIterator] = function () { return this; }, i;\n function awaitReturn(f) { return function (v) { return Promise.resolve(v).then(f, reject); }; }\n function verb(n, f) { if (g[n]) { i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; if (f) i[n] = f(i[n]); } }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n}\n\nexport function __asyncDelegator(o) {\n var i, p;\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: false } : f ? f(v) : v; } : f; }\n}\n\nexport function __asyncValues(o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n}\n\nexport function __makeTemplateObject(cooked, raw) {\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\n return cooked;\n};\n\nvar __setModuleDefault = Object.create ? (function(o, v) {\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\n}) : function(o, v) {\n o[\"default\"] = v;\n};\n\nexport function __importStar(mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\n __setModuleDefault(result, mod);\n return result;\n}\n\nexport function __importDefault(mod) {\n return (mod && mod.__esModule) ? mod : { default: mod };\n}\n\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\n}\n\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\n}\n\nexport function __classPrivateFieldIn(state, receiver) {\n if (receiver === null || (typeof receiver !== \"object\" && typeof receiver !== \"function\")) throw new TypeError(\"Cannot use 'in' operator on non-object\");\n return typeof state === \"function\" ? receiver === state : state.has(receiver);\n}\n\nexport function __addDisposableResource(env, value, async) {\n if (value !== null && value !== void 0) {\n if (typeof value !== \"object\" && typeof value !== \"function\") throw new TypeError(\"Object expected.\");\n var dispose, inner;\n if (async) {\n if (!Symbol.asyncDispose) throw new TypeError(\"Symbol.asyncDispose is not defined.\");\n dispose = value[Symbol.asyncDispose];\n }\n if (dispose === void 0) {\n if (!Symbol.dispose) throw new TypeError(\"Symbol.dispose is not defined.\");\n dispose = value[Symbol.dispose];\n if (async) inner = dispose;\n }\n if (typeof dispose !== \"function\") throw new TypeError(\"Object not disposable.\");\n if (inner) dispose = function() { try { inner.call(this); } catch (e) { return Promise.reject(e); } };\n env.stack.push({ value: value, dispose: dispose, async: async });\n }\n else if (async) {\n env.stack.push({ async: true });\n }\n return value;\n}\n\nvar _SuppressedError = typeof SuppressedError === \"function\" ? SuppressedError : function (error, suppressed, message) {\n var e = new Error(message);\n return e.name = \"SuppressedError\", e.error = error, e.suppressed = suppressed, e;\n};\n\nexport function __disposeResources(env) {\n function fail(e) {\n env.error = env.hasError ? new _SuppressedError(e, env.error, \"An error was suppressed during disposal.\") : e;\n env.hasError = true;\n }\n function next() {\n while (env.stack.length) {\n var rec = env.stack.pop();\n try {\n var result = rec.dispose && rec.dispose.call(rec.value);\n if (rec.async) return Promise.resolve(result).then(next, function(e) { fail(e); return next(); });\n }\n catch (e) {\n fail(e);\n }\n }\n if (env.hasError) throw env.error;\n }\n return next();\n}\n\nexport default {\n __extends,\n __assign,\n __rest,\n __decorate,\n __param,\n __metadata,\n __awaiter,\n __generator,\n __createBinding,\n __exportStar,\n __values,\n __read,\n __spread,\n __spreadArrays,\n __spreadArray,\n __await,\n __asyncGenerator,\n __asyncDelegator,\n __asyncValues,\n __makeTemplateObject,\n __importStar,\n __importDefault,\n __classPrivateFieldGet,\n __classPrivateFieldSet,\n __classPrivateFieldIn,\n __addDisposableResource,\n __disposeResources,\n};\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\tid: moduleId,\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n// expose the modules object (__webpack_modules__)\n__webpack_require__.m = __webpack_modules__;\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.f = {};\n// This file contains only the entry chunk.\n// The chunk loading function for additional chunks\n__webpack_require__.e = (chunkId) => {\n\treturn Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {\n\t\t__webpack_require__.f[key](chunkId, promises);\n\t\treturn promises;\n\t}, []));\n};","// This function allow to reference async chunks\n__webpack_require__.u = (chunkId) => {\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \".bundle.js\";\n};","// This function allow to reference all chunks\n__webpack_require__.miniCssF = (chunkId) => {\n\t// return url for filenames not based on template\n\tif (chunkId === 792) return \"main.css\";\n\t// return url for filenames based on template\n\treturn \"\" + chunkId + \".css\";\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","__webpack_require__.p = \"/client/\";","// no baseURI\n\n// object to store loaded and loading chunks\n// undefined = chunk not loaded, null = chunk preloaded/prefetched\n// [resolve, reject, Promise] = chunk loading, 0 = chunk loaded\nvar installedChunks = {\n\t792: 0\n};\n\n__webpack_require__.f.j = (chunkId, promises) => {\n\t\t// JSONP chunk loading for javascript\n\t\tvar installedChunkData = __webpack_require__.o(installedChunks, chunkId) ? installedChunks[chunkId] : undefined;\n\t\tif(installedChunkData !== 0) { // 0 means \"already installed\".\n\n\t\t\t// a Promise means \"currently loading\".\n\t\t\tif(installedChunkData) {\n\t\t\t\tpromises.push(installedChunkData[2]);\n\t\t\t} else {\n\t\t\t\tif(true) { // all chunks have JS\n\t\t\t\t\t// setup Promise in chunk cache\n\t\t\t\t\tvar promise = new Promise((resolve, reject) => (installedChunkData = installedChunks[chunkId] = [resolve, reject]));\n\t\t\t\t\tpromises.push(installedChunkData[2] = promise);\n\n\t\t\t\t\t// start chunk loading\n\t\t\t\t\tvar url = __webpack_require__.p + __webpack_require__.u(chunkId);\n\t\t\t\t\t// create error before stack unwound to get useful stacktrace later\n\t\t\t\t\tvar error = new Error();\n\t\t\t\t\tvar loadingEnded = (event) => {\n\t\t\t\t\t\tif(__webpack_require__.o(installedChunks, chunkId)) {\n\t\t\t\t\t\t\tinstalledChunkData = installedChunks[chunkId];\n\t\t\t\t\t\t\tif(installedChunkData !== 0) installedChunks[chunkId] = undefined;\n\t\t\t\t\t\t\tif(installedChunkData) {\n\t\t\t\t\t\t\t\tvar errorType = event && (event.type === 'load' ? 'missing' : event.type);\n\t\t\t\t\t\t\t\tvar realSrc = event && event.target && event.target.src;\n\t\t\t\t\t\t\t\terror.message = 'Loading chunk ' + chunkId + ' failed.\\n(' + errorType + ': ' + realSrc + ')';\n\t\t\t\t\t\t\t\terror.name = 'ChunkLoadError';\n\t\t\t\t\t\t\t\terror.type = errorType;\n\t\t\t\t\t\t\t\terror.request = realSrc;\n\t\t\t\t\t\t\t\tinstalledChunkData[1](error);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t\t__webpack_require__.l(url, loadingEnded, \"chunk-\" + chunkId, chunkId);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n};\n\n// no prefetching\n\n// no preloaded\n\n// no HMR\n\n// no HMR manifest\n\n// no on chunks loaded\n\n// install a JSONP callback for chunk loading\nvar webpackJsonpCallback = (parentChunkLoadingFunction, data) => {\n\tvar [chunkIds, moreModules, runtime] = data;\n\t// add \"moreModules\" to the modules object,\n\t// then flag all \"chunkIds\" as loaded and fire callback\n\tvar moduleId, chunkId, i = 0;\n\tif(chunkIds.some((id) => (installedChunks[id] !== 0))) {\n\t\tfor(moduleId in moreModules) {\n\t\t\tif(__webpack_require__.o(moreModules, moduleId)) {\n\t\t\t\t__webpack_require__.m[moduleId] = moreModules[moduleId];\n\t\t\t}\n\t\t}\n\t\tif(runtime) var result = runtime(__webpack_require__);\n\t}\n\tif(parentChunkLoadingFunction) parentChunkLoadingFunction(data);\n\tfor(;i < chunkIds.length; i++) {\n\t\tchunkId = chunkIds[i];\n\t\tif(__webpack_require__.o(installedChunks, chunkId) && installedChunks[chunkId]) {\n\t\t\tinstalledChunks[chunkId][0]();\n\t\t}\n\t\tinstalledChunks[chunkId] = 0;\n\t}\n\n}\n\nvar chunkLoadingGlobal = self[\"webpackChunk\"] = self[\"webpackChunk\"] || [];\nchunkLoadingGlobal.forEach(webpackJsonpCallback.bind(null, 0));\nchunkLoadingGlobal.push = webpackJsonpCallback.bind(null, chunkLoadingGlobal.push.bind(chunkLoadingGlobal));","__webpack_require__.nc = undefined;","// PLEASE THINK TWICE BEFORE CHANGING THIS FILE\n// let webpack know how to resolve dependencies for static assets\n// and dynamic imports\n// @ts-ignore\n__webpack_public_path__ = window.webpackPublicPath // wait for the dom to be loaded before attempting to start up the app\n\ndocument.addEventListener('DOMContentLoaded', () => {\n // this is the only `require` that should be in our app. Using `require` here\n // allows us to defer import resolution until after the DOMContentLoaded\n // event is fired.\n require('./render')\n})\n"],"names":["leafPrototypes","getProto","inProgress","StyleSheet","options","this","isSpeedy","undefined","speedy","tags","ctr","nonce","key","container","before","_proto","prototype","insert","rule","_tag","tag","document","createElement","setAttribute","appendChild","createTextNode","createStyleElement","length","nextSibling","insertBefore","push","sheet","i","styleSheets","ownerNode","sheetForTag","isImportRule","charCodeAt","insertRule","cssRules","e","flush","forEach","parentNode","removeChild","W","M","d","c","h","a","q","g","k","y","C","m","b","v","n","x","K","u","l","r","I","t","B","J","f","p","F","G","replace","N","trim","charAt","substring","ca","O","A","H","X","D","z","join","da","ea","fa","w","L","P","Y","E","ha","Q","split","ia","Z","indexOf","ja","ka","test","aa","ba","la","ma","R","na","oa","S","call","U","prefix","use","T","set","delimiter","needle","toSheet","block","Sheet","current","ruleSheet","context","content","selectors","parents","line","column","ns","depth","at","getRegisteredStyles","registered","registeredStyles","classNames","rawClassName","className","cache","serialized","isStringTag","name","styles","inserted","next","str","len","toString","animationIterationCount","borderImageOutset","borderImageSlice","borderImageWidth","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","columns","flex","flexGrow","flexPositive","flexShrink","flexNegative","flexOrder","gridRow","gridRowEnd","gridRowSpan","gridRowStart","gridColumn","gridColumnEnd","gridColumnSpan","gridColumnStart","msGridRow","msGridRowSpan","msGridColumn","msGridColumnSpan","fontWeight","lineHeight","opacity","order","orphans","tabSize","widows","zIndex","zoom","WebkitLineClamp","fillOpacity","floodOpacity","stopOpacity","strokeDasharray","strokeDashoffset","strokeMiterlimit","strokeOpacity","strokeWidth","hyphenateRegex","animationRegex","isCustomProperty","property","isProcessableValue","value","processStyleName","arg","styleName","toLowerCase","processStyleValue","match","p1","p2","cursor","handleInterpolation","mergedProps","interpolation","couldBeSelectorInterpolation","__emotion_styles","anim","obj","string","Array","isArray","_key","interpolated","_i","createStringFromObject","previousCursor","result","cached","labelPattern","args","stringMode","strings","raw","lastIndex","identifierName","exec","Object","hasOwnProperty","EmotionCacheContext","createContext","HTMLElement","stylisOptions","stylis","head","_insert","nodes","querySelectorAll","node","getAttribute","id","stylisPlugins","selector","shouldCache","Provider","func","render","props","ref","Consumer","forwardRef","typePropName","Noop","theme","cssProp","css","type","newProps","ele","possiblyStyleElement","Fragment","Emotion","jsx","arguments","apply","argsLength","createElementArgArray","createEmotionProps","classnames","cls","toAdd","_len","cx","_len2","_key2","merge","children","weakMemoize","WeakMap","has","get","ret","hasOwn","withEmotionCache","useContext","ThemeContext","useTheme","createCacheWithTheme","outerTheme","getTheme","ThemeProvider","Insertion","_ref","Emotion$1","WrappedComponent","keyframes","insertable","serializedArr","ClassNames","_this","_insertTag","insertionPoint","prepend","firstChild","hydrate","abs","Math","String","fromCharCode","assign","pattern","replacement","indexof","search","index","begin","end","slice","array","position","character","characters","root","parent","return","prev","peek","caret","token","alloc","dealloc","delimit","whitespace","escaping","count","commenter","identifier","COMMENT","callback","output","stringify","element","compile","parse","rules","rulesets","pseudo","points","declarations","offset","atrule","previous","variable","scanning","ampersand","reference","comment","declaration","ruleset","post","size","j","identifierWithPointTracking","fixedElements","compat","isImplicitRule","parsed","toRules","getRules","parentRules","removeLabel","hash","defaultStylisPlugins","map","createCache","ssrStyles","nodesToHydrate","attrib","currentSheet","collection","finalizingPlugins","serializer","concat","unitlessKeys","aspectRatio","memoize","fn","create","serializeStyles","registerStyles","insertStyles","useInsertionEffect","useInsertionEffectAlwaysWithSyncFallback","module","exports","Cldr","formatMessage","message","data","JSON","objectExtend","destination","source","prop","createError","code","attributes","error","Error","partsPush","parts","runtimeStringify","runtimeKey","validate","check","alwaysArray","stringOrArray","validateCldr","path","skipBoolean","skip","some","pathRe","validateParameterPresence","validateParameterType","expected","validateParameterTypeLocale","isPlainObject","alwaysCldr","localeOrCldr","validateLikelySubtags","cldr","once","Globalize","locale","load","_alwaysArray","_createError","_formatMessage","_formatMessageToParts","lastOffset","nameIncludingBrackets","filter","part","_isPlainObject","_objectExtend","_partsJoin","_partsPush","_regexpEscape","_runtimeBind","runtimeArgs","argsStr","fnName","matches","functionName","reduce","generatorString","_stringPad","right","_validate","_validateCldr","_validateDefaultLocale","_validateParameterPresence","_validateParameterRange","minimum","maximum","_validateParameterTypePlainObject","_validateParameterType","factory","_templateObject","_templateObject2","_templateObject3","_templateObject4","_templateObject5","_templateObject6","_templateObject7","_templateObject8","_templateObject9","_templateObject10","_templateObject11","tokens","colorTokens","keys","sysSizeIconXs","sysSizeIconSm","sysSizeIconMd","sysSizeIconLg","sysSizeIconXl","sysColorBackgroundMain","sysColorBackgroundAlt","sysColorBackgroundSurface","sysColorBackgroundSurfaceHover","sysColorBackgroundSurfaceActive","sysColorBackgroundHighContrast","sysColorBackgroundMediumContrast","sysColorPrimaryMain","sysColorPrimaryMainHover","sysColorPrimaryMainActive","sysColorPrimaryContrast","sysColorPrimaryContrastHover","sysColorPrimaryContrastActive","sysColorSecondaryMain","sysColorSecondaryMainHover","sysColorSecondaryMainActive","sysColorSecondaryContrast","sysColorTertiaryMain","sysColorTertiaryMainHover","sysColorTertiaryMainActive","sysColorTertiaryContrast","sysColorFeaturedMain","sysColorFeaturedMainHover","sysColorFeaturedMainActive","sysColorFeaturedContrast","sysColorUnselectedMain","sysColorUnselectedMainHover","sysColorUnselectedMainActive","sysColorUnselectedContrast","sysColorSelectedMain","sysColorSelectedMainHover","sysColorSelectedMainActive","sysColorSelectedContrast","sysColorSelectedRangeMain","sysColorSelectedRangeMainHover","sysColorSelectedRangeMainActive","sysColorSelectedRangeContrast","sysColorLinkMain","sysColorLinkMainHover","sysColorLinkMainActive","sysColorLinkAlt","sysColorLinkAltHover","sysColorLinkAltActive","sysColorLinkContrast","sysColorLinkContrastHover","sysColorLinkContrastActive","sysColorAccent1Main","sysColorAccent1Contrast","sysColorAccent2Main","sysColorAccent2Contrast","sysColorAccent3Main","sysColorAccent3Contrast","sysColorAccent4Main","sysColorAccent4Contrast","sysColorErrorMain","sysColorErrorMainHover","sysColorErrorMainActive","sysColorErrorContrast","sysColorWarningMain","sysColorWarningMainHover","sysColorWarningMainActive","sysColorWarningAlt","sysColorWarningContrast","sysColorSuccessMain","sysColorSuccessMainHover","sysColorSuccessMainActive","sysColorSuccessContrast","sysColorSystemMain","sysColorSystemMainHover","sysColorSystemMainActive","sysColorSystemContrast","sysColorInfoMain","sysColorInfoMainHover","sysColorInfoMainActive","sysColorInfoContrast","sysColorSpecialtyMain","sysColorSpecialtyMainHover","sysColorSpecialtyMainActive","sysColorSpecialtyContrast","base","backgroundBase","sizeXs","sizeSm","sizeMd","sizeLg","sizeXl","sizes","xs","sm","md","lg","xl","legalColors","ICON_FALLBACK_COLOR","svg","getIconSizeCss","sizeName","_sizes$sizeName","getMaskImageCss","colorName","iconName","cdnHost","iconURL","iconColor","getColorCss","_excluded","IconContainer","_iconStyles$getColorC","_ref$as","as","_ref$size","color","rest","iconStyles","useMemo","cssVal","_excluded7","_excluded43","_excluded57","_excluded58","_excluded59","_excluded60","_excluded61","_excluded65","_excluded70","_excluded82","_excluded155","_excluded247","_excluded313","_excluded325","_excluded331","AddIcon","svgElementRef","xmlns","fill","viewBox","width","height","CalendarIcon","fillRule","clipRule","CheckmarkBackgroundIcon","CheckmarkSmIcon","CheckmarkIcon","ChevronDownSmIcon","ChevronDownIcon","ChevronUpIcon","CloseIcon","CriticalIcon","InformationIcon","QuestionIcon","TransferIcon","VerifiedIcon","WarningIcon","PAYPAL_THEME","_defineProperties","o","enumerable","configurable","writable","defineProperty","toPropertyKey","_templateObject$1","_templateObject2$1","_templateObject3$1","_templateObject4$1","_templateObject$2","_templateObject2$2","_templateObject3$2","_templateObject4$2","_templateObject5$1","_templateObject6$1","_templateObject$3","_templateObject2$3","_templateObject3$3","_templateObject4$3","_templateObject5$2","_templateObject6$2","_templateObject7$1","_templateObject8$1","AnimateDirection","devWarning","sysBorderThicknessNormal","sysBorderRadiusLg","sysColorStructureShimmer","sysColorStructureShimmerInverse","sysColorStructureSheen","sysMotionDurationLoopStandard","sysMotionEasingLoopStandard","ppuiEaseLoopStandard","animation","inverse","defaults","_args$borderRadius","borderRadius","_args$width","_args$height","_templateObject$4","_templateObject2$4","_templateObject3$4","_templateObject4$4","_templateObject5$3","_templateObject6$3","svgBasePath","assetPath","VARIABLE_PATTERN","tokenTemplate","template","tokenMap","_match","_tokenMap$name","variables","sysMotionTimingX1","sysMotionTimingY1","sysMotionTimingX2","sysMotionTimingY2","sysMotionEasingEnterSmall","sysMotionEasingExitSmall","sysMotionEasingMoveSmall","ppuiEaseInOut","ppuiEaseEnterSmall","ppuiEaseExitSmall","ppuiEaseMoveSmall","styles$1","_variables","_focusStyles","sysColorStructureFocus","sysBorderThicknessEmphasis","sysColorStructureFocusOutline","sysColorStructureErrorOutline","stateFocusBorderColorInner","stateFocusBorderWidthInner","stateFocusBorderColorOuter","stateFocusBorderWidthOuter","focusInlineBorderThickness","focusElement","focusOffsetElement","focusInlineElement","stateErrorFocusBorderColorInner","stateErrorFocusBorderColorOuter","focusAfter","_args$radius","radius","_args$border","border","_args$top","top","_args$left","left","_args$right","_args$boxShadowColor","boxShadowColor","offsetFocusAfter","_args$radius2","_args$width2","_args$height2","_args$horizontalOffse","horizontalOffset","_args$verticalOffset","verticalOffset","_args$borderColor","borderColor","_args$boxShadowColor2","widthOffset","heightOffset","focusInline","_args$radius3","_args$colorInner","colorInner","_args$colorOuter","colorOuter","borderWidth","focusStyles","_shimmerStyles","_motionTimings","animationTiming","transitionTiming","motionTimings","_elevationStyles","sysColorStructureShadow","sysElevationHorizontalOffsetRatio","sysElevationOpacity","sysElevationVerticalOffsetRatio","sysElevationBlurCurve","sysElevationBlurSlope","sysElevationBlurBase","sysElevationBrightenFactor","getOffsetX","level","getOffsetY","getBlur","curveAndSlopValue","backgroundImage","shadowProps","elevation","level1","level2","level3","filterLevel1","filterLevel2","filterLevel3","level1Horizontal","level3Above","elevationStyles","_caretStyles","sysSpaceSm","sysSpaceMd","sysSpaceLg","caretSideLength","positionBottom","caretVerticalOffset","positionTop","positionCenter","caretWidth","positionShiftLeft","caretSpaceHorizontal","positionShiftRight","positionLeft","positionRight","caretStyles","shimmerStyles","mediaQuery","queriedCss","sysSizeMediaMd","styleStr","screenReader","ellipsis","slideTo","startPosition","RIGHT","firstParam","ScreenReaderContent","_excluded$1","Shimmer","_styles$defaults","isInverse","_ref$hasStyleDefaults","hasStyleDefaults","_styles","getColor","object","fallback","_object$name","params","ColorContext","getColorValue","containerTokens","componentColor","colorType","_containerTokens$acti","_containerTokens$hove","_containerTokens$main","contrast","active","hover","main","KeyboardCode","TypeError","_classCallCheck","NAME_ARROW_LEFT","CODE_ARROW_LEFT","includes","NAME_ARROW_RIGHT","CODE_ARROW_RIGHT","NAME_ARROW_UP","CODE_ARROW_UP","NAME_ARROW_DOWN","CODE_ARROW_DOWN","NAME_ENTER","CODE_ENTER","NAME_SPACE","CODE_SPACE","NAME_TAB","CODE_TAB","NAME_ESC","CODE_ESC","NAME_HOME","CODE_HOME","NAME_END","CODE_END","NAME_BACKSPACE","CODE_BACKSPACE","NAME_DELETE","CODE_DELETE","IS_ARROW_LEFT","IS_ARROW_RIGHT","IS_END","IS_HOME","IS_ARROW_UP","IS_ARROW_DOWN","warningText","isObject","WorldReady","_main","_temp","_ref$langSubtag","langSubtag","payPalLocaleCode","_locale$payPalLocaleC","_locale","_country","country","normalizeLocale","_normalizeLocale","globalize","bundle","language","region","market","weekInfo","minDays","firstDay","weekendStart","weekendEnd","metadata","providers","provider","ctor","prot","constructor","_Globalize","_formatToParts","messageParts","variableName","WORLDREADY_EXPERIENCE_KEY_PREFIX","getWorldReadyExperienceId","MessageFormat","worldReady","_options","_options$fallback","namespace","val","_message","getMessageParts","format","formatToParts","_ref9","_setPrototypeOf","setPrototypeOf","bind","__proto__","_excluded2","Context","ContextProvider","MessageParts","_ref2","_ref3","_Component","Message","superClass","subClass","_this$props","otherProps","excluded","target","_objectWithoutPropertiesLoose","messageFmt","Component","Symbol","toPrimitive","_toPrimitive","for","iterator","encodeURIComponent","isMounted","enqueueForceUpdate","enqueueReplaceState","enqueueSetState","refs","updater","isReactComponent","setState","forceUpdate","isPureReactComponent","__self","__source","defaultProps","$$typeof","_owner","pop","keyPrefix","done","V","escape","ReactCurrentDispatcher","ReactCurrentBatchConfig","suspense","ReactCurrentOwner","IsSomeRendererActing","Children","toArray","only","Profiler","PureComponent","StrictMode","Suspense","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","cloneElement","_calculateChangedBits","_currentValue","_currentValue2","_threadCount","_context","createFactory","createRef","isValidElement","lazy","_ctor","_status","_result","memo","compare","useCallback","useDebugValue","useEffect","useImperativeHandle","useLayoutEffect","useReducer","useRef","useState","version","self","modules","installedModules","moduleId","getter","toStringTag","mode","__esModule","default","s","_extends","utils_isPromise","item","Promise","window","Window","_toString","then","err","Logger","LOG_LEVEL","constants_PROTOCOL","canUseSendBeacon","extendIfDefined","util_isAmplitude","sendBeacon","getHTTPTransport","flushPromise","dispatchedErrors","possiblyUnhandledPromiseHandlers","activeCount","flushActive","promise","resolve","startActive","endActive","promise_ZalgoPromise","ZalgoPromise","handler","resolved","rejected","errorHandled","handlers","dispatching","stack","_error","isAsync","res","reject","dispatch","_this2","_err","setTimeout","asyncReject","chain","firstPromise","secondPromise","_handlers$i","onSuccess","onError","_result2","promiseResult","catch","finally","onFinally","try","timeout","time","_this3","clearTimeout","toPromise","all","promises","results","prom","awaitPromises","_loop","items","method","onPossiblyUnhandledException","cancel","splice","delay","_delay","isPromise","IE_WIN_ACCESS_ERROR","getActualProtocol","win","location","protocol","getProtocol","mockDomain","isAboutProtocol","canReadFromWindow","getActualDomain","host","getDomain","domain","isSameDomain","desc","getOwnPropertyDescriptor","iframeWindows","iframeFrames","isWindowClosed","allowMock","closed","mockclosed","iframeIndex","frame","contentWindow","doc","ownerDocument","documentElement","contains","isWindow","__cross_domain_utils_window_check__","util_safeIndexOf","objectIDs","weakmap_CrossDomainSafeWeakMap","CrossDomainSafeWeakMap","weakmap","values","random","freeze","testWeakMap","testKey","_cleanupClosedWindows","delete","isSafeToReadWrite","entry","getOrSet","getFunctionName","__name__","displayName","setFunctionName","uniqueID","chars","floor","btoa","parseInt","Buffer","from","Date","toISOString","getEmptyObject","memoizeGlobalIndex","memoizeGlobalIndexValidFrom","simpleCache","thisCache","_options$thisNamespac","thisNamespace","cacheTime","memoizeIndex","memoizedFunction","cacheKey","subkey","uid","passed","Element","nodeType","style","_","serializeArgs","_unused","cacheResult","now","reset","src_util_noop","objFilter","Boolean","isDocumentReady","body","readyState","isDocumentInteractive","dom_isBrowser","clear","interval","setInterval","clearInterval","currentScript","getCurrentScript","stackDetails","scriptLocation","_i22","_Array$prototype$slic2","getElementsByTagName","reverse","script","src","currentUID","hashedString","total","dataset","http_headerBuilders","DEBUG","INFO","WARN","ERROR","FILE","AUTO_FLUSH_LEVEL","LOG_LEVEL_PRIORITY","DEFAULT_LOG_LEVEL","headers","enableSendBeacon","hasHeaders","navigator","Blob","url","_ref2$win","_ref2$useBlob","useBlob","json","blob","httpWin","_ref$enableSendBeacon","beaconResult","_ref$method","_ref$headers","_ref$win","_ref$timeout","normalizedHeaders","_i4","_Object$keys2","accept","_i6","builtHeaders","_i8","_Object$keys4","_key3","xhr","XMLHttpRequest","_key4","addEventListener","responseHeaders","rawHeaders","_i2","_rawHeaders$trim$spli2","_line$split","getAllResponseHeaders","status","contentType","isJSON","responseBody","responseText","evt","open","setRequestHeader","ontimeout","send","_ref$logLevel","logLevel","_ref$transport","transport","amplitudeApiKey","_ref$flushInterval","flushInterval","events","tracking","payloadBuilders","metaBuilders","trackingBuilders","headerBuilders","print","event","payload","console","log","warning","immediateFlush","meta","api_key","event_type","transition_name","event_properties","localPromise","logger","logPayload","timestamp","addBuilder","builders","builder","loop","debug","info","warn","track","trackingPayload","addPayloadBuilder","addMetaBuilder","addTrackingBuilder","addHeaderBuilder","setTransport","newTransport","configure","opts","arrayIsArray","pathNormalize","arraySome","coreLikelySubtags","subtags","sep","localeSep","territory","variants","force","coreRemoveLikelySubtags","maxLanguageId","coreSubtags","aux","arrayForEach","bundleLookup","minLanguageId","availableBundleMap","_availableBundleMap","availableBundleMapQueue","_availableBundleMapQueue","existing","maxBundle","minBundle","objectKeys","attribute","validatePresence","validateType","validateTypePath","validateTypePlainObject","resourceGet","coreSetAvailableBundles","somethingOrArray","jsonMerge","sources","coreLoad","jsons","itemGetResolved","normalizedPath","_resolved","init","_coreLoad","_itemGetResolved","_jsonMerge","_pathNormalize","_resourceGet","_validatePresence","_validateType","_validateTypePath","_validateTypePlainObject","unicodeLocaleExtensions","variant","unicodeLocaleExtensionsRaw","EventEmitter","proto","indexOfListener","listeners","listener","alias","getListeners","response","_getEvents","RegExp","flattenListeners","flatListeners","getListenersAsObject","addListener","listenerIsWrapped","on","addOnceListener","defineEvent","defineEvents","evts","removeListener","off","addListeners","manipulateListeners","removeListeners","remove","single","multiple","removeEvent","_events","removeAllListeners","emitEvent","_getOnceReturnValue","trigger","emit","setOnceReturnValue","_onceReturnValue","noConflict","originalGlobalValue","superGet","superInit","validateTypeFunction","globalEe","validateThenCall","getOverload","ee","_eventInit","initSuper","supplemental","weekData","timeData","allowed","preferred","lookup","itemLookup","childLocale","_raw","substr","lastIndexOf","bundleParentLookup","resourceSet","_react","_propTypes2","_interopRequireDefault","_gud2","instance","Constructor","_possibleConstructorReturn","ReferenceError","_inherits","MAX_SIGNED_31_BIT_INT","defaultValue","calculateChangedBits","_Provider$childContex","_Consumer$contextType","contextProp","emitter","newValue","changedBits","getChildContext","componentWillReceiveProps","nextProps","oldValue","childContextTypes","isRequired","_Component2","_temp2","state","getValue","onUpdate","observedBits","componentDidMount","componentWillUnmount","contextTypes","_react2","_implementation2","reactIs","REACT_STATICS","contextType","getDefaultProps","getDerivedStateFromError","getDerivedStateFromProps","mixins","propTypes","KNOWN_STATICS","caller","callee","arity","MEMO_STATICS","TYPE_STATICS","getStatics","component","isMemo","ForwardRef","Memo","getOwnPropertyNames","getOwnPropertySymbols","getPrototypeOf","objectPrototype","hoistNonReactStatics","targetComponent","sourceComponent","blacklist","inheritedComponent","targetStatics","sourceStatics","descriptor","condition","argIndex","framesToPop","propIsEnumerable","propertyIsEnumerable","test1","test2","test3","letter","shouldUseNative","symbols","to","toObject","_getPrototypeOf","_isNativeReflectConstruct","valueOf","Reflect","construct","_wrapNativeSuper","Map","Function","Wrapper","last","defaultSymbolMap","infix","symbol","notation","precedence","rightToLeft","argCount","regSymbol","of","postfix","min","max","PolishedError","_Error","_assertThisInitialized","unitRegExp","operators","op","reverseString","math","formula","additionalSymbols","reversedFormula","formulaMatch","every","unit","expression","symbolMap","mergeSymbolMaps","sort","afterValue","bad","notNumber","notNewValue","notAfterValue","curr","calculate","endsWith","suffix","cssRegex$1","stripUnit","parseFloat","pixelsto","pxval","newPxval","newBase","cssRegex","getValueAndUnit","matchedValue","rem$1","defaultFontSize","convertBase","deconstructedValue","remToPx","rootFontSize","getComputedStyle","fontSize","getBaseFromDoc","colorToInt","round","convertToInt","red","green","blue","hslToRgb","hue","saturation","lightness","convert","huePrime","chroma","secondComponent","lightnessModification","namedColorMap","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","hexRegex","hexRgbaRegex","reducedHexRegex","reducedRgbaHexRegex","rgbRegex","rgbaRegex","hslRegex","hslaRegex","parseToRgb","normalizedColor","normalizedColorName","nameToHex","alpha","toFixed","_alpha","rgbMatched","rgbaMatched","hslMatched","rgbColorString","hslRgbMatched","hslaMatched","_rgbColorString","_hslRgbMatched","parseToHsl","delta","rgbToHsl","reduceHexValue$1","numberToHex","hex","colorToHex","convertToHex","hslToHex","rgb","rgba","firstValue","secondValue","thirdValue","fourthValue","rgbValue","toColorString","isRgba","isRgb","isHsla","hsla","isHsl","hsl","curried","acc","combined","curry","guard","lowerBoundary","upperBoundary","degree","hslColor","amount","mix$1","weight","otherColor","parsedColor1","color1","parsedColor2","color2","alphaDelta","weight1","weight2","parsedColor","percentage","ReactPropTypesSecret","emptyFunction","emptyFunctionWithReset","resetWarningCache","shim","propName","componentName","propFullName","secret","getShim","ReactPropTypes","bigint","bool","number","any","arrayOf","elementType","instanceOf","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","Set","add","acceptsBooleans","attributeName","attributeNamespace","mustUseProperty","propertyName","sanitizeURL","removeEmptyString","ra","sa","toUpperCase","ta","pa","isNaN","qa","removeAttribute","setAttributeNS","xlinkHref","ua","va","wa","ya","za","Aa","Ba","Ca","Da","Ea","Fa","Ga","Ha","Ia","Ja","Ka","La","Ma","Na","Oa","prepareStackTrace","Pa","Qa","_payload","_init","Ra","Sa","Ta","nodeName","Va","_valueTracker","setValue","stopTracking","Ua","Wa","checked","Xa","activeElement","Ya","defaultChecked","_wrapperState","initialChecked","Za","initialValue","controlled","ab","bb","cb","db","eb","fb","selected","defaultSelected","disabled","gb","dangerouslySetInnerHTML","hb","ib","jb","textContent","kb","lb","mb","nb","namespaceURI","innerHTML","MSApp","execUnsafeLocalFunction","ob","lastChild","nodeValue","pb","gridArea","lineClamp","qb","rb","sb","setProperty","tb","menuitem","area","br","col","embed","hr","img","input","keygen","link","param","wbr","ub","vb","is","wb","xb","srcElement","correspondingUseElement","yb","zb","Ab","Bb","Cb","stateNode","Db","Eb","Fb","Gb","Hb","Ib","Jb","Kb","Lb","Mb","removeEventListener","Nb","Ob","Pb","Qb","Rb","Sb","Tb","Vb","alternate","flags","Wb","memoizedState","dehydrated","Xb","Zb","child","sibling","Yb","$b","ac","unstable_scheduleCallback","bc","unstable_cancelCallback","cc","unstable_shouldYield","dc","unstable_requestPaint","unstable_now","ec","unstable_getCurrentPriorityLevel","fc","unstable_ImmediatePriority","gc","unstable_UserBlockingPriority","hc","unstable_NormalPriority","ic","unstable_LowPriority","jc","unstable_IdlePriority","kc","lc","oc","clz32","pc","qc","LN2","rc","sc","tc","uc","pendingLanes","suspendedLanes","pingedLanes","entangledLanes","entanglements","vc","xc","yc","zc","Ac","eventTimes","Cc","Dc","Ec","Fc","Gc","Hc","Ic","Jc","Kc","Lc","Mc","Nc","Oc","Pc","Qc","Rc","Sc","pointerId","Tc","nativeEvent","blockedOn","domEventName","eventSystemFlags","targetContainers","Vc","Wc","priority","isDehydrated","containerInfo","Xc","Yc","dispatchEvent","shift","Zc","$c","ad","bd","cd","dd","ed","transition","fd","gd","hd","Uc","stopPropagation","jd","kd","ld","nd","od","keyCode","charCode","pd","qd","rd","_reactName","_targetInst","currentTarget","isDefaultPrevented","defaultPrevented","returnValue","isPropagationStopped","preventDefault","cancelBubble","persist","isPersistent","wd","xd","yd","sd","eventPhase","bubbles","cancelable","timeStamp","isTrusted","td","ud","view","detail","vd","Ad","screenX","screenY","clientX","clientY","pageX","pageY","ctrlKey","shiftKey","altKey","metaKey","getModifierState","zd","button","buttons","relatedTarget","fromElement","toElement","movementX","movementY","Bd","Dd","dataTransfer","Fd","Hd","animationName","elapsedTime","pseudoElement","Id","clipboardData","Jd","Ld","Md","Esc","Spacebar","Left","Up","Right","Down","Del","Win","Menu","Apps","Scroll","MozPrintableKey","Nd","Od","Alt","Control","Meta","Shift","Pd","Qd","repeat","which","Rd","Td","pressure","tangentialPressure","tiltX","tiltY","twist","pointerType","isPrimary","Vd","touches","targetTouches","changedTouches","Xd","Yd","deltaX","wheelDeltaX","deltaY","wheelDeltaY","wheelDelta","deltaZ","deltaMode","Zd","$d","ae","be","documentMode","ce","de","fe","ge","he","ie","le","date","datetime","email","month","password","range","tel","text","week","me","ne","oe","pe","qe","re","se","te","ue","ve","we","xe","ye","ze","oninput","Ae","detachEvent","Be","Ce","attachEvent","De","Ee","Fe","He","Ie","Je","Ke","Le","compareDocumentPosition","Me","HTMLIFrameElement","href","Ne","contentEditable","Oe","focusedElem","selectionRange","start","selectionStart","selectionEnd","defaultView","getSelection","extend","rangeCount","anchorNode","anchorOffset","focusNode","focusOffset","createRange","setStart","removeAllRanges","addRange","setEnd","scrollLeft","scrollTop","focus","Pe","Qe","Re","Se","Te","Ue","Ve","We","animationend","animationiteration","animationstart","transitionend","Xe","Ye","Ze","$e","af","bf","cf","df","ef","ff","gf","hf","lf","mf","nf","Ub","pf","qf","rf","sf","capture","passive","tf","uf","parentWindow","vf","wf","xa","$a","je","char","ke","unshift","xf","yf","zf","Af","Bf","Cf","Df","Ef","__html","Ff","Gf","Hf","Jf","queueMicrotask","If","Kf","Lf","Mf","previousSibling","Nf","Of","Pf","Qf","Rf","Sf","Tf","Uf","Vf","Wf","Xf","Yf","__reactInternalMemoizedUnmaskedChildContext","__reactInternalMemoizedMaskedChildContext","Zf","$f","ag","bg","cg","__reactInternalMemoizedMergedChildContext","dg","eg","fg","gg","hg","jg","kg","mg","ng","og","pg","qg","rg","sg","tg","ug","vg","wg","xg","yg","zg","Ag","Bg","deletions","Cg","pendingProps","overflow","treeContext","retryLane","Dg","Eg","Fg","Gg","memoizedProps","Hg","Ig","Jg","Kg","Lg","Mg","Ng","Og","Pg","Qg","Rg","Sg","childLanes","Tg","dependencies","firstContext","lanes","Ug","Vg","memoizedValue","Wg","Xg","Yg","interleaved","Zg","$g","ah","updateQueue","baseState","firstBaseUpdate","lastBaseUpdate","shared","pending","effects","bh","ch","eventTime","lane","dh","eh","fh","gh","hh","ih","jh","kh","nh","_reactInternals","lh","mh","oh","shouldComponentUpdate","ph","qh","UNSAFE_componentWillReceiveProps","rh","getSnapshotBeforeUpdate","UNSAFE_componentWillMount","componentWillMount","sh","_stringRef","th","uh","vh","wh","xh","yh","implementation","zh","Ah","Bh","Ch","Dh","Eh","Fh","Gh","Hh","Ih","tagName","Jh","Kh","Lh","Mh","revealOrder","Nh","Oh","_workInProgressVersionPrimary","Ph","Qh","Rh","Sh","Th","Uh","Vh","Wh","Xh","Yh","Zh","$h","ai","bi","ci","baseQueue","queue","di","ei","fi","lastRenderedReducer","action","hasEagerState","eagerState","lastRenderedState","gi","hi","ii","ji","ki","getSnapshot","li","mi","ni","lastEffect","stores","oi","pi","qi","ri","destroy","deps","si","ti","ui","vi","wi","xi","yi","zi","Ai","Bi","Ci","Di","Ei","Fi","Gi","Hi","Ii","Ji","readContext","useDeferredValue","useTransition","useMutableSource","useSyncExternalStore","useId","unstable_isNewReconciler","identifierPrefix","Ki","digest","Li","Mi","Ni","Oi","Pi","Qi","Ri","componentDidCatch","Si","componentStack","Ti","pingCache","Ui","Vi","Wi","Xi","Yi","Zi","$i","aj","bj","cj","dj","ej","baseLanes","cachePool","transitions","fj","gj","hj","ij","jj","UNSAFE_componentWillUpdate","componentWillUpdate","componentDidUpdate","kj","lj","pendingContext","mj","Aj","Bj","Cj","Dj","nj","oj","pj","qj","rj","tj","dgst","uj","vj","_reactRetry","sj","subtreeFlags","wj","xj","isBackwards","rendering","renderingStartTime","tail","tailMode","yj","Ej","Fj","Gj","wasMultiple","suppressHydrationWarning","onClick","onclick","createElementNS","autoFocus","Hj","Ij","Jj","Kj","Lj","WeakSet","Mj","Nj","Oj","Qj","Rj","Sj","Tj","Uj","Vj","Wj","_reactRootContainer","Xj","Yj","Zj","ak","onCommitFiberUnmount","bk","ck","dk","ek","fk","isHidden","gk","hk","display","ik","jk","kk","lk","__reactInternalSnapshotBeforeUpdate","Wk","mk","ceil","nk","ok","pk","qk","rk","sk","tk","uk","Infinity","vk","wk","xk","yk","zk","Ak","Bk","Ck","Dk","Ek","callbackNode","expirationTimes","expiredLanes","wc","callbackPriority","ig","Fk","Gk","Hk","Ik","Jk","Kk","Lk","Mk","Nk","Ok","Pk","finishedWork","finishedLanes","Qk","timeoutHandle","Rk","Sk","Tk","Uk","Vk","mutableReadLanes","Bc","Pj","onCommitFiberRoot","mc","onRecoverableError","Xk","onPostCommitFiberRoot","Yk","Zk","al","pendingChildren","bl","mutableSourceEagerHydrationData","cl","pendingSuspenseBoundaries","el","fl","gl","hl","il","jl","zj","$k","ll","reportError","ml","_internalRoot","nl","ol","pl","ql","sl","rl","unmount","unstable_scheduleHydration","form","tl","usingClientEntryPoint","Events","ul","findFiberByHostInstance","bundleType","rendererPackageName","vl","rendererConfig","overrideHookState","overrideHookStateDeletePath","overrideHookStateRenamePath","overrideProps","overridePropsDeletePath","overridePropsRenamePath","setErrorHandler","setSuspenseHandler","scheduleUpdate","currentDispatcherRef","findHostInstanceByFiber","findHostInstancesForRefresh","scheduleRefresh","scheduleRoot","setRefreshHandler","getCurrentFiber","reconcilerVersion","__REACT_DEVTOOLS_GLOBAL_HOOK__","wl","isDisabled","supportsFiber","inject","createPortal","dl","createRoot","unstable_strictMode","findDOMNode","flushSync","hydrateRoot","hydratedSources","_getVersion","_source","unmountComponentAtNode","unstable_batchedUpdates","unstable_renderSubtreeIntoContainer","checkDCE","AsyncMode","ConcurrentMode","ContextConsumer","Lazy","Portal","isAsyncMode","isConcurrentMode","isContextConsumer","isContextProvider","isElement","isForwardRef","isFragment","isLazy","isPortal","isProfiler","isStrictMode","isSuspense","isValidElementType","typeOf","_defaultValue","_globalName","startTransition","unstable_act","__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","__SERVER_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE","sortIndex","performance","setImmediate","startTime","expirationTime","priorityLevel","scheduling","isInputPending","MessageChannel","port2","port1","onmessage","postMessage","unstable_Profiling","unstable_continueExecution","unstable_forceFrameRate","unstable_getFirstCallbackNode","unstable_next","unstable_pauseExecution","unstable_runWithPriority","unstable_wrapCallback","prevState","nextState","prevProps","__reactInternalSnapshotFlag","__reactInternalSnapshot","__suppressDeprecationWarning","transitioning","resolveTransition","startsWith","_to$split","toPathname","toQuery","basePathname","toSegments","segmentize","baseSegments","addQuery","pathname","allSegments","segments","segment","insertParams","_path$split","pathBase","_path$split$","query","constructedPath","paramRe","_params$location","_params$location$sear","searchSplit","isDynamic","isSplat","rankRoute","route","score","isRootSegment","SEGMENT_POINTS","rankRoutes","routes","uri","reservedNames","getLocation","_source$location","origin","hostname","port","canUseDOM","URL","encodeURI","decodeURI","history","globalHistory","initialPath","searchIndex","initialLocation","states","entries","pushState","_uri$split","_uri$split$","replaceState","_uri$split2","_uri$split2$","go","newIndex","createMemorySource","_onTransitionComplete","listen","popstateListener","navigate","_ref$replace","_objectWithoutProperties","createNamedContext","Ctx","LocationContext","Location","LocationProvider","_React$Component","getContext","unlisten","_props$history","isRedirect","_navigate","requestAnimationFrame","unmounted","BaseContext","baseuri","basepath","Router","baseContext","locationContext","RouterImpl","_React$PureComponent","_props","_navigate2","primary","_props$component","domProps","default_","uriPathname","uriSegments","isRootUri","ranked","missed","routeSegments","routeSegment","uriSegment","decodeURIComponent","dynamicMatch","pick","createRoute","clone","FocusWrapper","FocusHandler","wrapperProps","FocusContext","requestFocus","FocusHandlerImpl","initialRender","focusHandlerCount","_React$Component2","_this4","shouldFocus","myURIChanged","navigatedUpToMe","_this5","_props2","_props2$component","Comp","outline","tabIndex","foundWillMountName","foundWillReceivePropsName","foundWillUpdateName","newApiName","maybeSnapshot","snapshot","polyfill","Link","_ref4","innerRef","_ref5","_ref6","_props$getProps","getProps","anchorProps","encodedHref","isCurrent","isPartiallyCurrent","shouldNavigate","shouldReplace","_location$state","restState","obj1","obj2","obj1Keys","RedirectRequest","RedirectImpl","_React$Component3","_props3","_props3$replace","noThrow","resolvedTo","_props4","redirectTo","Redirect","_ref7","stripSlashes","elementPath","resourceBaseUrl","checkEligibilityURI","_generateProps","WorldReadyContext","serverData","backgroundMediaFrame","image","baseImage","imageAltText","getLocalizedText","loading","fetchPriority","roundedCorners","textGroup","actionGroup","clickEventName","trackClick","page","buttonStyle","alignment","eyebrowTag","eyebrowText","headline","marks","headlineSize","headlineTag","paragraph","paragraphSize","___EmotionJSX","Hero","graphicColor","graphicVariation","layout","FeatureSection","React","HighlightSection","SplitSection","PricingSection","HowToApplySection","FAQSection","FooterCtaSection","HeaderSection","FooterSection","fptiData","_arrayLikeToArray","arr","arr2","_createClass","protoProps","staticProps","hasSymbols","hasSymbol","getSymbol","observable","SymbolIterator","SymbolObservable","SymbolSpecies","getMethod","getSpecies","Observable","isObservable","hostReportError","enqueue","cleanupSubscription","subscription","cleanup","_cleanup","unsubscribe","closeSubscription","_observer","_queue","_state","notifySubscription","observer","onNotify","flushSubscription","Subscription","subscriber","subscriptionObserver","SubscriptionObserver","_subscription","_proto2","complete","_subscriber","_proto3","subscribe","hasSeed","hasValue","first","startNext","flatMap","_this6","subscriptions","outer","inner","completeIfDone","_step","_iterator","allowArrayLike","it","minLen","_unsupportedIterableToArray","_createForOfIteratorHelperLoose","getFragmentQueryDocument","fragmentName","actualFragmentName","fragments","definitions","definition","kind","operation","selectionSet","selections","createFragmentMap","symTable","fragment","getFragmentFromSelection","selection","fragmentMap","sortingMap","canonicalStringify","stableObjectReplacer","everyKeyInOrder","unsortedKey","sortedKeys","sortedKey","sortedObject_1","makeReference","__ref","isReference","valueToObjectRepresentation","argObj","isIntValue","isFloatValue","Number","isBooleanValue","isStringValue","isObjectValue","nestedArgObj_1","fields","isVariable","variableValue","isListValue","listValue","nestedArgArrayObj","isEnumValue","isNullValue","globalThis","__DEV__","KNOWN_DIRECTIVES","storeKeyNameStringify","getStoreKeyName","fieldName","directives","filterKeys","filteredArgs_1","completeFieldName","stringifiedArgs","setStringify","argumentsObjectFromField","field","argObj_1","_a","resultKeyNameFromField","getTypenameFromResult","__typename","_b","fragments_1","typename","operations","getOperationDefinition","getOperationName","getFragmentDefinitions","getQueryDefinition","queryDef","getMainDefinition","queryDoc","fragmentDefinition","getDefaultValues","defaultValues","defs","variableDefinitions","def","passthrough","forward","toLink","ApolloLink","isTerminating","request","empty","links","leftLink","rightLink","execute","starting","createOperation","transformedOperation","extensions","operationName","transformOperation","OPERATION_FIELDS","validateOperation","second","firstLink","nextLink","setOnError","BREAK","visitor","visitorKeys","enterLeaveMap","getEnterLeaveForKind","inArray","edits","ancestors","isLeaving","isEdited","editOffset","editKey","editValue","arrayKey","defineProperties","getOwnPropertyDescriptors","_enterLeaveMap$get","_enterLeaveMap$get2","devAssert","inspect","visitFn","leave","enter","_node$kind","kindVisitor","shouldInclude","directive","isInclusionDirective","directiveArguments","directiveName","ifArgument","ifValue","getInclusionDirectives","evaledValue","hasDirectives","names","nameSet","uniqueCount","Directive","hasClientExports","serializeFetchParameter","label","parseError","readerIterator","reader","read","canUse","asyncIterator","responseIterator","getReader","isReadableStream","stream","isStreamableBlob","arrayBuffer","isBlob","pipe","isNodeReadableStream","waiting","onData","chunk","shiftedArr","pair","onEnd","nodeStreamIterator","throwServerError","statusCode","mergeDeep","mergeDeepArray","merger","DeepMerger","defaultReconciler","reconciler","pastCopies","sourceKey","targetValue","shallowCopyForMerge","isExecutionPatchIncrementalResult","isApolloPayloadResult","mergeIncrementalData","prevResult","mergedData","incremental","parent_1","parseHeaders","headerText","headersInit","name_1","parseJsonBody","bodyText","getResult","escapedRegExp","escapedReplacer","escapeSequences","printDocASTReducer","Name","Variable","Document","OperationDefinition","varDefs","wrap","VariableDefinition","SelectionSet","Field","argsLine","indent","Argument","FragmentSpread","InlineFragment","typeCondition","FragmentDefinition","IntValue","FloatValue","StringValue","isBlockString","BooleanValue","NullValue","EnumValue","ListValue","ObjectValue","ObjectField","NamedType","ListType","NonNullType","SchemaDefinition","description","operationTypes","OperationTypeDefinition","ScalarTypeDefinition","ObjectTypeDefinition","interfaces","FieldDefinition","hasMultilineItems","InputValueDefinition","InterfaceTypeDefinition","UnionTypeDefinition","types","EnumTypeDefinition","EnumValueDefinition","InputObjectTypeDefinition","DirectiveDefinition","repeatable","locations","SchemaExtension","ScalarTypeExtension","ObjectTypeExtension","InterfaceTypeExtension","UnionTypeExtension","EnumTypeExtension","InputObjectTypeExtension","maybeArray","separator","_maybeArray$filter$jo","maybeString","_maybeArray$some","printCache","ast","fallbackHttpConfig","http","includeQuery","includeExtensions","preserveHeaderCase","defaultPrinter","printer","fromError","errorValue","TYPENAME_FIELD","FIELD","NAME","isEmpty","FRAGMENT_SPREAD","nullIfDocIsEmpty","fragmentDef","getFragmentDefinition","makeInUseGetterFunction","defaultKey","inUse","fragmentSpreads","removeDirectivesFromDocument","getInUseByOperationName","getInUseByFragmentName","getInUse","ancestor","OPERATION_DEFINITION","FRAGMENT_DEFINITION","operationCount","configs","tests","directiveMatcher","config","testConfig","shouldRemoveField","nodeDirectives","originalFragmentDefsByPath","firstVisitMadeChanges","fieldOrInlineFragmentVisitor","docWithoutDirectiveSubtrees","_parent","_path","removed","populateTransitiveVars","transitiveVars","childFragmentName","varName","allFragmentNamesUsed","enterVisitor","usedVariableNames_1","varDef","addTypenameToDocument","added","buildQueryFromSelectionSet","removeClientSetsFromDocument","backupFetch","fetch","createHttpLink","linkOptions","preferredFetch","useGETForQueries","_c","includeUnusedVariables","requestOptions","fetcher","checkFetcher","linkConfig","fetchOptions","credentials","chosenURI","fallbackURI","selectURI","clientAwarenessHeaders","clientAwareness","contextHeaders","contextConfig","transformedQuery","unusedNames","controller","normalizedHeaders_1","headerData","originalName","removeDuplicateHeaders","selectHttpOptionsAndBodyInternal","signal","AbortController","isSubscription","hasDefer","acceptHeader","queryParams","addQueryParam","serializedVariables","serializedExtensions","preFragment","fragmentStart","queryParamsPrefix","newURI","rewriteURIForGET","currentFetch","observerNext","setContext","ctype","nextValue","decoder","boundaryVal","boundary","buffer","running","searchFrom","contentType_1","_d","_e","TextDecoder","sent","decode","errors","hasNext","readMultipartBody","handleError","abort","HttpLink","_super","defaultMakeData","Trie","weakness","makeData","lookupArray","getChildTrie","peekArray","mapFor","removeArray","weak","strong","isObjRef","currentContext","MISSING_VALUE","idCounter","maybe","ignored","globalKey","globalHost","global","Slot","slots","withValue","thisArg","saved","noContext","parentEntrySlot","arrayFromSet","maybeUnsubscribe","entryOrDep","emptySetPool","POOL_TARGET_SIZE","assert","optionalMessage","valueIs","valueGet","valueCopy","Entry","childValues","dirtyChildren","dirty","recomputing","mightBeDirty","rememberParent","recompute","forgetChildren","recomputeNewValue","setDirty","maybeSubscribe","reportClean","setClean","reallyRecompute","reportDirty","dispose","eachParent","forgetChild","forget","dependOn","dep","forgetDeps","reportDirtyChild","reportCleanChild","normalizeResult","oldValueCopy","parentCount","parentWasClean","childValue","removeDirtyChild","_value","EntryMethods","depsByKey","depend","entryMethodName","defaultKeyTrie","defaultMakeCacheKey","originalFunction","pow","keyArgs","makeCacheKey","cacheOption","optimistic","clean","dirtyKey","peekKey","forgetKey","getKey","identity","DocumentTransform","transform","resultCache","getCacheKey","resetCache","predicate","transformDocument","stableCacheKeys_1","performWork","cacheKeys","transformedDocument","otherTransform","asyncMap","mapFn","catchFn","promiseQueue","makeCallback","examiner","both","sub","graphQLResultHasError","getGraphQLErrorsFromResult","graphQLErrors","incrementalResult","iterateObserversSafely","observers","argument","observersWithMethod","obs","fixObservableSubclass","subclass","species","Concast","addObserver","removeObserver","latest","notify","nextResultListeners","reason","iterable","deliverLastMessage","nextOrError","beforeNext","called","cloneDeep","cloneDeepHelper","seen","copy_1","copy_2","equalByQuery","aData","aRest","bData","bRest","equalBySelectionSet","aResult","bResult","seenSelections","selectionHasNonreactiveDirective","resultKey","aResultChild","bResultChild","childSelectionSet","aChildIsArray","bChildIsArray","length_1","directiveIsNonreactive","dir","ObservableQuery","queryManager","queryInfo","subObserver","defaultSubscriptionObserverErrorCallback","reobserve","tearDownQuery","waitForOwnResult","skipCacheDataFor","fetchPolicy","isTornDown","defaultOptions","watchQuery","defaultFetchPolicy","_f","initialFetchPolicy","queryId","generateQueryId","opDef","queryName","lastQuery","removeQuery","resetDiff","getCurrentResult","saveAsLastResult","lastResult","getLastResult","networkStatus","ready","getDocumentInfo","hasForcedResolvers","diff","getDiff","returnPartialData","partial","partialRefetch","logMissingFieldErrors","missing","updateLastResult","isDifferentFromLastResult","newResult","hasNonreactiveDirective","getLast","variablesMustMatch","getLastError","resetLastResults","resetQueryStoreErrors","resetErrors","refetch","reobserveOptions","pollInterval","vars","resetLastWrite","fetchMore","fetchMoreOptions","combinedOptions","qid","originalNetworkStatus","notifyOnNetworkStatusChange","observe","updatedQuerySet","fetchQuery","fetchMoreResult","batch","update","updateQuery","writeQuery","onWatchUpdated","watch","reobserveCacheFirst","subscribeToMore","startGraphQLSubscription","subscriptionData","setOptions","newOptions","silentSetOptions","mergedOptions","compact","setVariables","broadcastQueries","startPolling","updatePolling","stopPolling","applyNextFetchPolicy","nextFetchPolicy","newNetworkStatus","setObservableQuery","ssrMode","pollingInfo","hasObservers","maybeFetch","skipPollAttempt","poll","assumeImmutableResults","reobserveAsConcast","useDisposableConcast","oldVariables","oldFetchPolicy","finishWaitingForOwnResult","concast","fromLink","reportResult","resubscribeAfterError","lastError","isDifferent","errorResult","stopQuery","obsQuery","currentFetchPolicy","isSelectionNode","INLINE_FRAGMENT","cacheSlot","cacheInfoMap","getCacheInfo","forgetCache","rv","makeVar","caches","broadcastWatches","broadcast","oldListeners","attach","onNextChange","attachCache","LocalState","client","resolvers","fragmentMatcher","selectionsToResolveCache","addResolvers","setFragmentMatcher","resolverGroup","setResolvers","getResolvers","runResolvers","remoteResult","onlyRunForcedResolvers","resolveDocument","localResult","getFragmentMatcher","clientQuery","serverQuery","prepareContext","identify","addExportedVariables","document_1","buildRootValueFromCache","exportedVariables","shouldForceResolvers","forceResolvers","rootValue_1","rootValue","mainDefinition","selectionsToResolve","definitionOperation","defaultOperationType","execContext","collectSelectionsToResolve","resolveSelectionSet","isClientFieldDescendant","resultsToMerge","resolveField","fieldResult","isInlineFragment","fragmentResult","aliasedFieldName","aliasUsed","defaultResult","resultPromise","resolverType","resolverMap","isClientField","resolveSubSelectedArray","isSingleASTNode","collectByDefinition","definitionNode","matches_1","__","___","spread","fragmentSelections","destructiveMethodCounts","wrapDestructiveCacheMethod","methodName","original","cancelNotifyTimeout","QueryInfo","lastRequestId","stopped","observableQuery","lastDiff","networkError","getDiffOptions","updateWatch","oq","updateLastDiff","canonizeResults","setDiff","oldDiff","notifyTimeout","oqListener","fromOptimisticTransaction","shouldNotify","stop","watchOptions","watcher","lastWatch","lastWrite","shouldWrite","dmCount","markResult","cacheWriteBehavior","shouldWriteResult","errorPolicy","performTransaction","overwrite","diffOptions","markReady","markError","ignoreErrors","writeWithErrors","IGNORE","QueryManager","documentTransform","queryDeduplication","onBroadcast","localState","defaultContext","queries","fetchCancelFns","transformCache","queryIdCounter","requestIdCounter","mutationIdCounter","inFlightLinkObservables","defaultDocumentTransform","mutationStore","_info","stopQueryNoBroadcast","cancelPendingFetches","mutate","mutationId","mutationStoreValue","isOptimistic","mutation","optimisticResponse","updateQueries","refetchQueries","awaitRefetchQueries","updateWithProxyFn","onQueryUpdated","_g","_h","keepRootFields","_j","generateMutationId","transformForLink","getVariables","markMutationOptimistic","getObservableFromLink","storeResult","markMutationResult","removeOptimistic","cacheWrites","skipCache","dataId","asQuery","updateQueries_1","currentQueryResult","nextQueryResult","mutationResult","queryVariables","results_1","updateCache","write","isFinalResult","isExecutionPatchInitialResult","modify","DELETE","include","recordOptimisticTransaction","fetchConcastWithInfo","getQueryStore","store","cacheEntry","defaultVars","generateRequestId","stopQueryInStore","stopQueryInStoreNoBroadcast","clearStore","discardWatches","getObservableQueries","queryNamesAndDocs","legacyQueryOptions","makeUniqueId","getQuery","included","nameOrDoc","reFetchObservableQueries","includeStandby","observableQueryPromises","makeObservable","hasErrors","hasProtocolErrors","protocolErrors","observablePromise_1","getLocalState","deduplication","inFlightLinkObservables_1","forceFetch","printedServerQuery_1","varJson_1","getResultsFromLink","requestId","linkDocument","aqr","containsDataFromLink","normalized","fromVariables","sourcesWithInfo","fetchQueryByPolicy","cleanupCancelFn","includedQueriesById","refetchWritePolicy","oldNetworkStatus","readCache","resultsFromCache","fromData","resultsFromLink","newContext","hasSuggestedDevtools","ApolloClient","resetStoreCallbacks","clearStoreCallbacks","ssrForceFetchDelay","connectToDevTools","__APOLLO_CLIENT__","typeDefs","clientAwarenessName","clientAwarenessVersion","disableNetworkFetches","watchFragment","resetStore","devToolsHookCb","mutations","dataWithOptimisticResults","extract","windowWithDevTools","devtoolsSymbol","__APOLLO_DEVTOOLS_GLOBAL_HOOK__","nav","userAgent","mergeOptions","readQuery","readFragment","writeFragment","__actionHookForDevTools","__requestRaw","onResetStore","onClearStore","restore","serializedState","setLocalStateFragmentMatcher","setLink","newLink","getMemoryInternals","ApolloCache","getFragmentDoc","updateResult","optimisticId","transaction","rootId","latestDiff","immediate","updateFragment","MissingFieldError","isNullish","defaultDataIdFromObject","_id","keyObject","defaultConfig","dataIdFromObject","addTypename","resultCaching","shouldCanonizeResults","TypeOrFieldNameRegExp","fieldNameFromStoreName","storeFieldName","selectionSetMatchesResult","storeValueIsStoreObject","extractFragmentContext","lookupFragment","delModifier","INVALIDATE","EntityStore","policies","group","rootIds","getFieldValue","objectOrReference","maybeDeepFreeze","canRead","objOrRef","toReference","objOrIdOrRef","mergeIntoStore","storeObject","rootTypenamesById","Layer","dependOnExistence","older","newer","incoming","merged","storeObjectReconciler","caching","fieldsToDirty_1","__exists","hasKeyArgs","changedFields_1","needToMerge_1","allDeleted_1","sharedDetails_1","readField","fieldNameOrOptions","fieldValue","storage","getStorage","checkReference","seenReference","someNonReference","newValue_1","getStoreFieldName","evict","limit","evicted","extraRootIds","getRootIdSet","__META","newData","rest_1","retain","release","ids","findChildRefIds","idsToRemove","root_1","found_1","workSet_1","keyMaker","CacheGroup","resetCaching","makeDepKey","maybeDependOnExistenceOfEntity","entityId","supportsResultCaching","Root","seed","stump","Stump","storageTrie","addLayer","layerId","replay","removeLayer","ownStoreObject","parentStoreObject","fromParent","existingObject","incomingObject","existingValue","incomingValue","ObjectCanon","known","pool","passes","keysByJSON","admit","isKnown","pass","copy","shallowCopy","proto_1","array_1","firstValueIndex_1","sorted","obj_1","execSelectionSetKeyArgs","StoreReader","knownResults","canon","executeSelectionSet","peekArgs","other","enclosingRef","execSelectionSetImpl","resultCacheMaxSize","varString","executeSubSelectedArray","execSubSelectedArrayImpl","resetCanon","diffQueryAgainstStore","rootRef","execResult","firstMissing","isFresh","objectsToMerge","missingMerger","handleMissing","resultName","rootIdsByTypename","workSet","fragmentMatches","finalResult","frozen","childResult","getTypenameFromStoreObject","assertSelectionSetForIdValue","tree","specifierInfoCache","lookupSpecifierInfo","spec","keyFieldsFnFromSpecifier","specifier","keyFieldsFn","collectSpecifierPaths","schemaKeyPath","extracted","extractKeyPath","extractKey","keyArgsFnFromSpecifier","keyArgsFn","collected","keyPath","firstKey","firstChar","varKeyPath","directiveName_1","find","directiveArgs","extractor","getSpecifierPaths","toMerge","paths","paths_1","currentPath_1","normalize","reducer","argsFromFieldSpecifier","nullKeyFieldsFn","simpleKeyArgsFn","_args","mergeTrueFn","mergeObjects","mergeFalseFn","Policies","typePolicies","toBeAdded","supertypeMap","fuzzySubtypes","usingPossibleTypes","setRootTypename","possibleTypes","addPossibleTypes","addTypePolicies","partialContext","ROOT_QUERY","normalizeReadFieldOptions","policy","getTypePolicy","keyFn","specifierOrId","queryType","mutationType","subscriptionType","updateTypePolicy","keyFields","setMerge","getFieldPolicy","old","supertype","getSupertypeSet","subtype","policy_1","supertypes_1","regExp","fuzzy","fuzzySupertypes","inbox","createIfMissing","fieldPolicies","supertypeSet","typenameSupertypeSet","workQueue_1","maybeEnqueue_1","needToCheckFuzzySubtypes","checkingFuzzySubtypes","fuzzyString","fieldSpec","specifierOrString","directivesObj","storeKeyNameFromField","readOptions","makeFieldFunctionOptions","getReadFunction","getMergeFunction","parentTypename","childTypename","runMergeFunction","makeMergeObjectsFunction","readFieldArgs","argc","stringifyForDisplay","eType","iType","getContextFlavor","clientOnly","deferred","flavored","flavors","StoreWriter","writeToStore","operationDefinition","written","incomingById","processSelectionSet","mergeTree","fieldNodeSet","entityRef","applied","applyMerges","fieldsWithSelectionSets_1","hasSelectionSet_1","childTree","hasMergeFunction_1","existingRef","incomingObj","getChild","parentType","typeDotName","warnings","childTypenames","warnAboutDataLoss","result_1","flattenFields","resultFieldKey","getChildMergeTree","processFieldValue","maybeRecycleChildMergeTree","dataRef","sets","previous_1","mergeMergeTrees","mergeTreeIsEmpty","fieldMap","limitingTrie","flatten","inheritedContext","visitedNode","visited","if","getStorageArgs","e_1","i_1","getValue_1","eVal","iVal","aVal","emptyMergeTreePool","needToMergeMaps","remainingRightKeys_1","leftTree","InMemoryCache","watches","addTypenameTransform","txCount","normalizeConfig","rootStore","optimisticData","resetResultCache","resetResultIdentities","previousReader","storeReader","storeWriter","maybeBroadcastWatch","broadcastWatch","resetCaches","idToRemove","newOptimisticData","perform","layer","alreadyDirty","addFragmentsToDocument","PrivacyPolicySection","initServerData","rootElm","getElementById","requestURI","_csrf","_PAYPAL_THEME","WorldReadyContextProvider","locality","ApolloContext","parentContext","trackPage","HeroSection","_serverData$data","cookieBannerInfo","_serverData$data$cook","html","beaverLogger","debugInfo","generateOptions","experimentation","serverFPTIData","errorField","clientLogger","fpti","pgrp","pglk","pgln","client_id","article_search_count","article_search_query","experiment_name","experimentation_treatment","st","encrypted_customer_id","article_experience","article_doc_id","aidrk","article_document_title","erpg","erfd","eccd","PAYPAL","analytics","Analytics","recordClick","recordImpression","textId","dataNode","serverDataString","parentElement","___CSS_LOADER_EXPORT___","useSourceMap","list","sourceMap","base64","cssMapping","sourceMapping","unescape","sourceURLs","sourceRoot","cssWithMappingToString","dedupe","alreadyImportedModules","api","locals","getTarget","styleTarget","querySelector","contentDocument","stylesInDom","getIndexByIdentifier","modulesToDom","idCountMap","identifiers","media","references","addStyle","insertStyleElement","textStore","replaceText","applyToSingletonTag","styleSheet","cssText","cssNode","childNodes","applyToTag","singleton","singletonCounter","styleIndex","removeStyleElement","newObj","atob","lastIdentifiers","newList","newLastIdentifiers","_index","isCallable","tryToString","$TypeError","isConstructor","isPossiblePrototype","$String","wellKnownSymbol","UNSCOPABLES","ArrayPrototype","unicode","$forEach","STRICT_METHOD","arrayMethodIsStrict","callbackfn","toIndexedObject","toAbsoluteIndex","lengthOfArrayLike","createMethod","IS_INCLUDES","$this","fromIndex","uncurryThis","IndexedObject","arraySpeciesCreate","TYPE","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","IS_FILTER_REJECT","NO_HOLES","that","specificCreate","boundFunction","findIndex","filterReject","fails","V8_VERSION","SPECIES","METHOD_NAME","foo","DESCRIPTORS","SILENT_ON_NON_WRITABLE_LENGTH_SET","$Array","originalArray","arraySpeciesConstructor","stringSlice","TO_STRING_TAG_SUPPORT","classofRaw","TO_STRING_TAG","$Object","CORRECT_ARGUMENTS","tryGet","ownKeys","getOwnPropertyDescriptorModule","definePropertyModule","exceptions","MATCH","regexp","error1","error2","createPropertyDescriptor","bitmap","anObject","ordinaryToPrimitive","hint","makeBuiltIn","setter","defineGlobalProperty","simple","unsafe","nonConfigurable","nonWritable","EXISTS","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","classList","documentCreateElement","DOMTokenListPrototype","process","Deno","versions","v8","createNonEnumerableProperty","defineBuiltIn","copyConstructorProperties","isForced","targetProperty","sourceProperty","TARGET","GLOBAL","STATIC","stat","dontCallGetSet","forced","sham","regexpExec","RegExpPrototype","KEY","FORCED","SHAM","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","nativeRegExpMethod","methods","nativeMethod","arg2","forceStringMethod","$exec","NATIVE_BIND","FunctionPrototype","aCallable","getDescriptor","PROPER","CONFIGURABLE","uncurryThisWithBind","classof","replacer","rawLength","keysLength","isNullOrUndefined","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","matched","captures","namedCaptures","tailPos","getBuiltIn","dummy","NewTarget","NewTargetPrototype","functionToString","inspectSource","NATIVE_WEAK_MAP","sharedKey","hiddenKeys","OBJECT_ALREADY_INITIALIZED","facade","STATE","enforce","getterFor","documentAll","noop","constructorRegExp","INCORRECT_TO_STRING","isConstructorModern","isConstructorLegacy","feature","detection","POLYFILL","NATIVE","isRegExp","isPrototypeOf","USE_SYMBOL_AS_UID","$Symbol","toLength","CONFIGURABLE_FUNCTION_NAME","InternalStateModule","enforceInternalState","getInternalState","CONFIGURABLE_LENGTH","TEMPLATE","trunc","getOwnPropertySymbolsModule","propertyIsEnumerableModule","$assign","alphabet","chr","argumentsLength","activeXDocument","definePropertiesModule","enumBugKeys","PROTOTYPE","SCRIPT","IE_PROTO","EmptyConstructor","scriptTag","LT","NullProtoObjectViaActiveX","close","temp","NullProtoObject","ActiveXObject","iframeDocument","iframe","JS","Properties","V8_PROTOTYPE_DEFINE_BUG","IE8_DOM_DEFINE","$defineProperty","$getOwnPropertyDescriptor","ENUMERABLE","WRITABLE","Attributes","$getOwnPropertyNames","arraySlice","windowNames","getWindowNames","internalObjectKeys","$propertyIsEnumerable","NASHORN_BUG","uncurryThisAccessor","requireObjectCoercible","aPossiblePrototype","CORRECT_SETTER","pref","getOwnPropertyNamesModule","re1","re2","regexpFlags","stickyHelpers","UNSUPPORTED_DOT_ALL","UNSUPPORTED_NCG","nativeReplace","nativeExec","patchedExec","UPDATES_LAST_INDEX_WRONG","UNSUPPORTED_Y","BROKEN_CARET","NPCG_INCLUDED","reCopy","groups","sticky","charsAdded","strCopy","multiline","hasIndices","ignoreCase","dotAll","unicodeSets","$RegExp","MISSED_STICKY","TAG","IS_PURE","SHARED","copyright","license","aConstructor","defaultConstructor","toIntegerOrInfinity","CONVERT_TO_STRING","pos","codeAt","whitespaces","ltrim","rtrim","SymbolPrototype","TO_PRIMITIVE","NATIVE_SYMBOL","keyFor","integer","isSymbol","exoticToPrim","wrappedWellKnownSymbolModule","WellKnownSymbolsStore","createWellKnownSymbol","withoutSetter","$","doesNotExceedSafeInteger","createProperty","arrayMethodHasSpeciesSupport","IS_CONCAT_SPREADABLE","IS_CONCAT_SPREADABLE_SUPPORT","isConcatSpreadable","spreadable","$filter","$findIndex","addToUnscopables","FIND_INDEX","SKIPS_HOLES","$includes","nativeJoin","$map","nativeSlice","HAS_SPECIES_SUPPORT","fin","setArrayLength","deletePropertyOrThrow","deleteCount","insertCount","actualDeleteCount","actualStart","dateToPrimitive","DatePrototype","FUNCTION_NAME_EXISTS","defineBuiltInAccessor","nameRE","regExpExec","getReplacerFunction","$stringify","numberToString","tester","low","WRONG_SYMBOLS_CONVERSION","ILL_FORMED_UNICODE","stringifyWithSymbolsFix","$replacer","fixIllFormed","space","inheritIfRequired","thisNumberValue","NUMBER","NativeNumber","PureNumberNamespace","NumberPrototype","NumberWrapper","primValue","third","radix","maxCode","digits","NaN","toNumber","toNumeric","$getOwnPropertySymbols","notARegExp","correctIsRegExpLogic","stringIndexOf","searchString","fixRegExpWellKnownSymbolLogic","advanceStringIndex","getSubstitution","REPLACE","REPLACE_KEEPS_$0","REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE","maybeCallNative","UNSAFE_SUBSTITUTE","searchValue","replaceValue","rx","functionalReplace","fullUnicode","accumulatedResult","nextSourcePosition","replacerArgs","speciesConstructor","SPLIT_WORKS_WITH_OVERWRITTEN_EXEC","originalExec","BUGGY","SPLIT","nativeSplit","internalSplit","splitter","unicodeMatching","lim","$toString","nativeObjectCreate","getOwnPropertyNamesExternal","defineWellKnownSymbol","defineSymbolToPrimitive","setToStringTag","HIDDEN","setInternalState","ObjectPrototype","RangeError","QObject","nativeGetOwnPropertyDescriptor","nativeDefineProperty","nativeGetOwnPropertyNames","nativePropertyIsEnumerable","AllSymbols","ObjectPrototypeSymbols","USE_SETTER","findChild","fallbackDefineProperty","ObjectPrototypeDescriptor","setSymbolDescriptor","$defineProperties","properties","IS_OBJECT_PROTOTYPE","useSetter","useSimple","NativeSymbol","EmptyStringDescriptionStore","SymbolWrapper","thisSymbolValue","symbolDescriptiveString","NATIVE_SYMBOL_REGISTRY","StringToSymbolRegistry","SymbolToStringRegistry","sym","DOMIterables","handlePrototype","CollectionPrototype","COLLECTION_NAME","NetworkStatus","isNetworkRequestInFlight","PROTOCOL_ERRORS_SYMBOL","graphQLResultHasProtocolErrors","isApolloError","ApolloError","clientErrors","errorMessage","extraInfo","contextKey","getApolloContext","scheduledCleanup","schedule","AutoCleanedWeakCache","AutoCleanedStrongCache","globalCaches","registerGlobalCache","getSize","getApolloClientMemoryInternals","limits","fromEntries","parser","linkInfo","documentTransforms","transformInfo","getInMemoryCacheMemoryInternals","_getApolloCacheMemoryInternals","addTypenameDocumentTransform","inMemoryCache","getWrapperInformation","fragmentRegistry","findFragmentSpreads","getApolloCacheMemoryInternals","fragmentQueryDocuments","isWrapper","isDefined","recurseTransformInfo","cacheSizeSymbol","cacheSizes","isNonEmptyArray","canUseWeakMap","product","HermesInternal","canUseWeakSet","canUseSymbol","canUseAsyncIteratorSymbol","usingJSDOM","canUseLayoutEffect","objects","prefixCounts","isFrozen","shallowFreeze","isNonNullObject","undefId","genericMessage","InvariantError","invariant","verbosityLevels","verbosityLevel","wrapConsoleMethod","thunk","arg0","getHandledErrorMsg","getFallbackErrorMsg","newInvariantError","optionalParams","ApolloErrorMessageHandler","messageArgs","_defineProperty","_taggedTemplateLiteral","_typeof","yF","pm","CF","pt","dp","RF","k8","$F","HF","I8","EC","VF","zF","qF","D8","jsxs","lr","foundationTheme","foundationFont","fp","t1","TC","minSize","maxSize","KF","inherit","YF","XF","none","clampValue","clampValueFallback","UF","WF","n1","ZF","QF","bn","breakpoint","bottomSpacing","topSpacing","verticalSpacing","JF","bottomMargin","topMargin","rowsGap","rowsGapValue","gridRowGap","rowsDefinitions","rowsMinHeight","rowsMaxHeight","gridTemplateRows","gridAutoRows","mdOptions","lgOptions","xlOptions","twoXlOptions","P8","auto","M8","mid","AC","hm","Tl","verticalAlign","alignSelf","hide","rowStart","rowEnd","rowSpan","columnStart","columnEnd","columnSpan","lt","r1","R8","nr","An","Av","env","isEnabled","measureLayout","exit","drag","tap","pan","inView","a1","projectionNodeConstructor","Nv","strict","B8","pp","transformPagePoint","isStatic","reducedMotion","hp","Ju","Fu","i1","F8","mp","matchMedia","fu","j8","$8","custom","gp","forEachValue","getVelocity","vp","animate","initial","whileHover","whileDrag","whileTap","whileFocus","H8","NC","Jl","hasAnimatedSinceResize","hasEverUpdated","Ov","V8","updateProps","visualElement","setProps","preloadedFeatures","createVisualElement","useRender","useVisualState","layoutId","renderer","visualState","presenceId","blockInitialAnimation","shouldReduceMotion","syncRender","animationState","animateChanges","notifyUnmount","dragConstraints","layoutScroll","projection","getLatestValues","alwaysMeasureLayout","scheduleRender","animationType","initialPromotionConfig","mount","z8","Proxy","Lv","o1","$j","q8","G8","transformPerspective","U8","W8","s1","Ts","vo","qt","OC","kv","K8","cs","mm","To","u1","zr","Y8","X8","Z8","numColors","tokenised","Q8","J8","createTransformer","getAnimatableNone","e$","t$","n$","l1","LC","eO","borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth","borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius","maxWidth","maxHeight","bottom","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","margin","marginTop","marginRight","marginBottom","marginLeft","rotate","rotateX","rotateY","rotateZ","scale","scaleX","scaleY","scaleZ","skew","skewX","skewY","distance","translateX","translateY","translateZ","perspective","originX","originY","originZ","numOctaves","Iv","transformKeys","transformOrigin","enableHardwareAcceleration","allowTransformNone","Dv","tO","i$","transformTemplate","r$","transformValues","a$","dragListener","draggable","userSelect","WebkitUserSelect","WebkitTouchCallout","touchAction","o$","nO","require","kC","c$","d$","Pv","attrX","attrY","pathLength","pathSpacing","pathOffset","attrs","dimensions","l$","f$","rO","p$","h$","latestValues","u$","m$","aO","iO","getProjectionStyles","oO","sO","Mv","uO","Rv","v$","mix","toValue","lO","B0","IC","scrapeMotionValuesFromProps","createRenderState","onMount","b$","renderState","cO","transitionEnd","kn","y$","getBBox","getBoundingClientRect","C$","dO","forwardMotionProps","bp","c1","fO","PointerEvent","MouseEvent","pO","Animate","Hover","Tap","Drag","Focus","InView","Exit","_$","E$","w$","Bv","point","hO","S$","T$","onpointerdown","A$","ontouchstart","N$","onmousedown","O$","pointerdown","pointermove","pointerup","pointercancel","pointerover","pointerout","pointerenter","pointerleave","L$","mO","Su","gO","DC","PC","vO","bO","MC","setActive","yO","Fv","gm","I$","RC","D$","P$","R$","d1","sqrt","F$","j$","BC","jv","restSpeed","restDelta","stiffness","damping","mass","velocity","duration","isResolvedFromDuration","bounce","exp","B$","M$","$$","FC","sin","cos","sinh","cosh","flipTarget","needsInterpolation","Gn","vm","jC","H$","V$","$C","CO","f1","z$","yp","xO","_O","SO","q$","HC","numNumbers","numRGB","numHSL","G$","$v","clamp","ease","mixer","U$","W$","K$","Y$","Cp","Hv","EO","Q$","J$","Vv","zv","tH","TO","AO","acos","qv","nH","Gv","rH","aH","iH","Z$","oH","sH","uH","lH","dH","F0","pH","fH","VC","spring","decay","power","timeConstant","modifyTarget","NO","gH","OO","h1","_u","xp","vH","CH","ju","bm","yH","LO","kO","_H","IO","autoplay","driver","elapsed","repeatType","repeatDelay","onPlay","onStop","onComplete","onRepeat","mH","SH","xH","DO","m1","zC","PO","MO","RO","BO","FO","Gd","kH","Float32Array","j0","LH","AH","qC","g1","ym","PH","MH","jH","$H","rootMargin","threshold","IntersectionObserver","RH","unobserve","BH","getInstance","isIntersecting","isInView","hasEnteredView","onViewportEnter","onViewportLeave","HH","DH","Ao","jO","whileInView","viewport","onTap","onTapStart","onTapCancel","onHoverStart","onHoverEnd","VH","zH","$O","HO","isPresent","onExitComplete","register","VO","qH","linear","easeIn","easeInOut","easeOut","circIn","circInOut","circOut","backIn","backInOut","backOut","anticipate","bounceIn","bounceInOut","bounceOut","GC","GH","UC","Qo","Ud","Cm","UH","WC","backgroundColor","WH","KH","outlineColor","stroke","borderTopColor","borderRightColor","borderBottomColor","borderLeftColor","WebkitFilter","Uv","Wv","eV","Kv","KC","YC","bounceStiffness","bounceDamping","EH","QH","when","delayChildren","staggerChildren","staggerDirection","YH","times","yoyo","flip","XH","JH","Yv","ZH","tV","nV","Xv","Zv","nc","aV","timeDelta","lastUpdated","updateSubscribers","velocityUpdateSubscribers","renderSubscribers","canTrackVelocity","updateAndNotify","postRender","scheduleVelocityCheck","velocityCheck","hasAnimated","rV","onChange","clearListeners","onRenderRequest","passiveEffect","getPrevious","stopAnimation","clearAnimation","isAnimating","zO","qO","Al","oV","sV","uV","addValue","Qv","makeTargetAnimatable","v1","getVariant","variantChildren","dV","GO","notifyAnimationStart","b1","UO","notifyAnimationComplete","getDefaultTransition","transitionOverride","mV","pV","getState","gV","sortNodePosition","protectedKeys","needsAnimating","Jv","vV","bV","Jo","isActive","prevResolvedValues","WO","yV","SV","getVariantContext","manuallyAnimateOnMount","prevProp","xV","getBaseTarget","isAnimated","setAnimateFunction","CV","KO","startEvent","lastMoveEvent","lastMoveEventInfo","updatePoint","Sm","onStart","onMove","handlePointerMove","xm","handlePointerUp","onSessionEnd","onSessionStart","updateHandlers","XC","YO","_V","EV","ZC","QC","originPoint","translate","JC","ex","tx","nx","y1","ax","Rr","XO","_m","ZO","bo","sx","ux","C1","QO","Co","lx","MV","RV","pu","JO","DV","FV","jV","openGlobalLock","isDragging","currentDirection","constraints","hasMutatedConstraints","elastic","snapToCursor","panSession","dragPropagation","onDragStart","resolveConstraints","isAnimationBlocked","getAxisMotionValue","actual","dragDirectionLock","onDirectionLock","onDrag","$V","updateAxis","getTransformPagePoint","startAnimation","onDragEnd","Wd","TV","dragElastic","resolveRefConstraints","AV","kV","LV","onMeasureDragConstraints","scroll","BV","NV","IV","dragMomentum","dragTransition","dragSnapToOrigin","onDragTransitionEnd","startAxisValueAnimation","scalePositionWithinConstraints","OV","updateScroll","updateLayout","hasLayoutChanged","zV","onPan","onPanStart","onPanEnd","onPanSessionStart","dragControls","Kd","eL","treeType","build","measureViewportBox","readValueFromInstance","removeValueFromRenderState","clearAllListeners","updatePropListeners","qV","notifyUpdate","isVisible","addVariantChild","getClosestVariantNode","getLayoutId","getStaticValue","setStaticValue","setVisibility","removeValue","readValue","setBaseTarget","GV","UV","tL","Ge","x1","nL","S1","WV","getPropertyValue","dx","YV","rL","aL","fx","px","ZV","QV","hx","nz","XV","JV","pageYOffset","ez","scrollTo","tz","iL","az","resetTransform","restoreTransform","fV","cV","KV","rz","visibility","iz","oz","oL","mx","Nl","correct","gx","sz","treeScale","projectionDelta","uz","layoutGroup","switchLayoutGroup","cz","didUpdate","safeToRemove","layoutDependency","willUpdate","promote","relegate","getStack","members","currentAnimation","isLead","scheduleCheckAfterUnmount","deregister","applyTo","boxShadow","dz","sL","pz","vx","bx","yx","mz","uL","gz","Cx","xx","Sx","vz","bz","yz","_x","Ex","lL","cL","Cz","prevLead","lead","show","resumeFrom","preserveOpacity","animationValues","isShared","isUpdating","isLayoutDirty","crossfade","exitAnimationComplete","resumingFrom","removeLeadSnapshot","xz","wx","Sz","_z","isDirty","dL","attachResizeListener","defaultParent","measureScroll","checkIsScrollRoot","isTreeAnimating","updateManuallyBlocked","updateBlockedByResize","isSVG","needsReset","shouldResetTransform","eventHandlers","potentialNodes","checkUpdateFailed","clearAllSnapshots","updateProjection","Oz","Lz","hasProjected","animationProgress","sharedNodes","registerPotentialNode","notifyListeners","hasListeners","SVGElement","Nz","registerSharedNode","hasRelativeTargetChanged","isTreeAnimationBlocked","relativeTarget","Mz","onLayoutAnimationStart","onLayoutAnimationComplete","targetLayout","setAnimationOrigin","finishAnimation","preRender","blockUpdate","unblockUpdate","isUpdateBlocked","startUpdate","kz","prevTransformTemplateValue","updateSnapshot","Ax","Rz","Az","Ez","wz","Tz","Iz","scheduleUpdateProjection","measure","removeTransform","removeElementScroll","kx","measured","layoutCorrected","notifyLayoutMeasure","isScrollRoot","applyTransform","setTargetDelta","targetDelta","clearMeasurements","resolveTargetDelta","relativeParent","getClosestProjectingParent","relativeTargetOrigin","targetWithTransforms","wV","attemptToResolveRelativeTarget","calcProjection","pendingAnimation","getLead","PV","projectionDeltaWithTransform","projectionTransform","Pz","mixTargetDelta","Nx","Ox","Dz","opacityExit","hz","fz","completeAnimation","applyTransformsToTarget","preserveFollowOpacity","shouldPreserveFollowOpacity","getPrevLead","resetRotation","pointerEvents","clearSnapshot","resetTree","layoutDelta","onBeforeLayoutMeasure","notifyBeforeLayoutMeasure","Lx","Bz","Em","Cr","features","Tm","Wz","Uz","Kz","Ix","Gz","Yz","Xz","Zz","Qz","Jz","pL","hL","mL","gL","vL","bL","rq","$0","yo","contentRect","borderBoxSize","contentSize","inlineSize","blockSize","offsetWidth","offsetHeight","iq","sq","H0","pq","hq","progress","scrollLength","targetOffset","targetLength","containerLength","mq","Px","nq","bq","Enter","Any","All","_1","center","Mx","clientWidth","clientHeight","yq","Cq","xq","Sq","axis","offsetLeft","offsetTop","offsetParent","SVGGraphicsElement","vq","scrollWidth","scrollHeight","interpolate","interpolatorOffsets","eq","tq","wq","pause","forEachNative","easing","updateDuration","effect","updateTiming","currentTime","Ol","Rx","Am","Bx","Tq","_q","gq","Eq","innerWidth","innerHeight","dq","ResizeObserver","lq","fq","cancelAnimationFrame","Aq","scrollX","scrollY","scrollXProgress","scrollYProgress","Nq","lV","hV","Fx","ln","CTA","Button","FeatureCard","StandardCard","ContactSales","GetTheApp","SignUp","StickyNavClickToCall","StickyNavContactSales","StickyNavSignUp","ScrollTopButton","CarouselNextButton","CarouselPreviousButton","CarouselIndicatorButton","CarouselSlideButton","Ho","BRC","ClickToCall","Text","TextCta","SegmentControlTab","DEVELOPMENT","STAGING","PRODUCTION","SANDBOX","NONE","GENERAL","CONSUMER","BUSINESS","cvDataPoint","cvPricingToken","cvAmplitudeLink","datapoint","feeDatakey","mobile","portable","dedicated","Primary","Secondary","Tertiary","Branded","AppDownload","Sp","campaign","consumer","enterprise","ppcom","smb","brc","moneyhub","Vt","isCMSPreview","showErrors","runMode","userHome","dataString","jsURL","serverURL","encryptedAccountNum","csrfToken","pageURI","pageSegment","clientInfo","queryStringParams","loggedIn","baseUri","baseNolocaleUri","reduceMotion","isAboveTheFold","zs","Ll","kl","tn","baseValues","Functional","fixedMove","relativeMove","dropMove","appear","Expressive","constants","multiplier","stagger","motionIntensity","motionTypePresets","moveUp","direction","moveDown","moveLeft","moveRight","relativeMoveUp","relativeMoveDown","relativeMoveLeft","relativeMoveRight","dropMoveUpLeft","dropMoveUpRight","dropMoveDownLeft","dropMoveDownRight","scaleUp","scaleDown","reducedMotionVariant","Rq","Yl","triggerOnce","motionFeel","motionTypePreset","scrollTriggerOptions","Hq","orchestration","Wn","isMotionChild","isMotionContainer","motionOptions","isRTL","jq","Mq","Bq","Fq","CL","xL","SL","Vq","zq","qq","Gq","jx","$x","_L","Uq","Kq","wL","EL","toLocaleUpperCase","Yq","Xq","Un","Wq","toLocaleLowerCase","separateNumbers","prefixCharacters","suffixCharacters","getFinalClassName","getComponentClassName","getElementClassName","getPropsValueClassName","pn","getThemeClassName","Hx","As","BLOCKS","DOCUMENT","PARAGRAPH","HEADING_1","HEADING_2","HEADING_3","HEADING_4","HEADING_5","HEADING_6","OL_LIST","UL_LIST","LIST_ITEM","HR","QUOTE","EMBEDDED_ENTRY","EMBEDDED_ASSET","EMBEDDED_RESOURCE","TABLE","TABLE_ROW","TABLE_CELL","TABLE_HEADER_CELL","Vx","INLINES","HYPERLINK","ENTRY_HYPERLINK","ASSET_HYPERLINK","RESOURCE_HYPERLINK","zx","MARKS","BOLD","ITALIC","UNDERLINE","CODE","SUPERSCRIPT","SUBSCRIPT","STRIKETHROUGH","TL","__spreadArray","V1_MARKS","V1_NODE_TYPES","TEXT_CONTAINERS","HEADINGS","CONTAINERS","VOID_BLOCKS","TABLE_BLOCKS","LIST_ITEM_BLOCKS","TOP_LEVEL_BLOCKS","AL","NL","_p","EMPTY_DOCUMENT","qx","Po","isText","isBlock","isInline","Zq","Qq","OL","__createBinding","__setModuleDefault","__exportStar","__importStar","helpers","LL","nG","Gt","kL","sys","urn","renderNode","renderMark","preserveWhitespace","documentToHtmlString","Gx","$u","defaultChars","rG","componentChars","Ux","aG","slashes","auth","iG","oG","sG","lG","cG","Wx","Kx","Yx","fG","Xx","javascript","Zx","https","ftp","gopher","file","parseHost","pG","encode","IL","DL","PL","ML","mG","gG","Uint16Array","vG","Nm","bG","yG","fromCodePoint","vr","No","fr","E1","ZERO","NINE","SG","UPPER_A","UPPER_F","LOWER_A","LOWER_F","EG","EQUALS","UPPER_Z","LOWER_Z","_G","NUM","SEMI","LOWER_X","VALUE_LENGTH","BRANCH_LENGTH","JUMP_TABLE","EntityStart","NumericStart","NumericDecimal","NumericHex","NamedEntity","Legacy","Strict","Attribute","RL","decodeTree","emitCodePoint","consumed","treeIndex","excess","decodeMode","startEntity","stateNumericStart","stateNamedEntity","stateNumericDecimal","stateNumericHex","addToNumericResult","emitNumericEntity","absenceOfDigitsInNumericCharacterReference","CG","missingSemicolonAfterCharacterReference","validateNumericCharacterReference","wG","emitNotTerminatedNamedEntity","emitNamedEntityData","BL","TG","Eu","Om","w1","NG","T1","FL","jL","codePointAt","OG","$L","HL","VL","LG","V0","qL","zL","Bo","ds","GL","XML","HTML","UTF8","ASCII","Extensive","DG","DecodingMode","EncodingMode","EntityDecoder","EntityLevel","decodeHTML","decodeHTML4","decodeHTML4Strict","decodeHTML5","decodeHTML5Strict","decodeHTMLAttribute","decodeHTMLStrict","decodeStrict","decodeXML","decodeXMLStrict","encodeHTML","encodeHTML4","encodeHTML5","encodeNonAsciiHTML","encodeXML","escapeAttribute","escapeText","escapeUTF8","PG","MG","Ep","UL","WL","FG","jG","Hu","$G","VG","zG","qG","GG","Fo","UG","In","wp","KG","mdurl","ucmicro","YG","arrayReplaceAt","escapeHtml","escapeRE","isMdAsciiPunct","isPunctChar","isSpace","isString","isValidEntityCode","isWhiteSpace","lib","normalizeReference","unescapeAll","unescapeMd","JG","parseLinkDestination","parseLinkLabel","posMax","inline","skipToken","parseLinkTitle","can_continue","marker","__rules__","__cache__","nesting","markup","hidden","KL","inlineMode","code_inline","renderAttrs","code_block","fence","highlight","attrIndex","langPrefix","renderInlineAsText","renderToken","hardbreak","xhtmlOut","softbreak","breaks","html_block","html_inline","renderInline","__find__","__compile__","enabled","alt","after","enable","enableOnly","disable","attrPush","attrSet","attrGet","attrJoin","Token","eU","tU","iU","oU","YL","uU","lU","cU","tm","dU","fU","pU","mU","Qx","gU","quotes","Lm","linkify","pretest","normalizeLink","validateLink","schema","normalizeLinkText","typographer","ruler","bMarks","eMarks","tShift","sCount","bsCount","blkIndent","lineMax","tight","ddIndent","listIndent","km","eS","tS","nS","State","skipEmptyLines","skipSpaces","skipSpacesBack","skipChars","skipCharsBack","getLines","XL","ZL","jU","$U","qs","tokenize","wU","title","Tp","tokens_meta","pendingLevel","delimiters","_prev_delimiters","backticks","backticksScanned","linkLevel","GU","maxNesting","pushPending","scanDelims","can_open","can_close","WU","rS","QL","postProcess","aS","JL","aW","iW","dW","fW","iS","Im","matchAtStart","lW","sW","uW","Dm","ruler2","A1","Ap","oS","CW","fuzzyLink","fuzzyEmail","fuzzyIP","SW","src_auth","src_host_port_strict","src_path","no_http","src_domain","src_domain_root","src_port","src_host_terminator","mailto","src_email_name","src_host_strict","_W","EW","src_Any","src_Cc","src_Z","src_P","src_ZPCc","src_ZCc","src_pseudo_letter","src_ip4","src_xn","src_host","tpl_host_fuzzy","tpl_host_no_ip_fuzzy","tpl_host_fuzzy_strict","tpl_host_port_fuzzy_strict","tpl_host_port_no_ip_fuzzy_strict","tpl_host_fuzzy_test","tpl_email_fuzzy","tpl_link_fuzzy","tpl_link_no_ip_fuzzy","gW","__opts__","__tlds__","src_tlds","onCompile","__tlds_replaced__","email_fuzzy","link_fuzzy","link_no_ip_fuzzy","host_fuzzy_test","__compiled__","__schemas__","bW","yW","TW","vW","schema_test","schema_search","schema_at_start","__index__","__text_cache__","wW","AW","__last_index__","__schema__","N1","xW","testSchemaAt","tlds","wu","LW","kW","IW","DW","Mm","xo","PW","RW","uS","Pm","ucs2","toASCII","toUnicode","VW","components","core","zero","rules2","commonmark","zW","qW","GW","UW","WW","utils","parseInline","KW","YW","XW","ZW","Rm","Xl","aK","oK","sK","wrapTokenWithSpan","tK","QW","JW","nK","uK","replaceAll","trimEnd","O1","L1","replaceCodePoint","__importDefault","determineBranch","BinTrieFlags","decodeCodePoint","xmlDecodeTree","htmlDecodeTree","QuoteType","$t","rt","os","Gs","Space","NewLine","Tab","FormFeed","CarriageReturn","e0","Slash","ExclamationMark","Amp","SingleQuote","DoubleQuote","Dash","Zero","Nine","Semi","Lt","Questionmark","UpperA","LowerA","UpperF","LowerF","UpperZ","LowerZ","LowerX","OpeningSquareBracket","BeforeTagName","InTagName","InSelfClosingTag","BeforeClosingTagName","InClosingTagName","AfterClosingTagName","BeforeAttributeName","InAttributeName","AfterAttributeName","BeforeAttributeValue","InAttributeValueDq","InAttributeValueSq","InAttributeValueNq","BeforeDeclaration","InDeclaration","InProcessingInstruction","BeforeComment","CDATASequence","InSpecialComment","InCommentLike","BeforeSpecialS","BeforeSpecialT","SpecialStartSequence","InSpecialTag","InEntity","NoValue","Unquoted","Single","Double","Ar","Cdata","Uint8Array","CdataEnd","CommentEnd","ScriptEnd","StyleEnd","TitleEnd","TextareaEnd","mK","xmlMode","decodeEntities","cbs","sectionStart","entityStart","isSpecial","currentSequence","sequenceIndex","entityDecoder","finish","resume","stateText","fastForwardTo","ontext","stateSpecialStartSequence","stateInTagName","stateInSpecialTag","stateInClosingTagName","stateCDATASequence","stateInDeclaration","stateInCommentLike","oncdata","oncomment","isTagStartChar","hK","startSpecial","stateBeforeTagName","onopentagname","stateBeforeAttributeName","stateBeforeClosingTagName","onclosetag","stateAfterClosingTagName","onopentagend","stateInSelfClosingTag","onselfclosingtag","stateInAttributeName","onattribname","stateAfterAttributeName","onattribend","stateBeforeAttributeValue","stateInAttributeValueNoQuotes","handleInAttributeValue","onattribdata","stateInAttributeValueDoubleQuotes","stateInAttributeValueSingleQuotes","stateBeforeDeclaration","ondeclaration","stateInProcessingInstruction","onprocessinginstruction","stateBeforeComment","stateInSpecialComment","stateBeforeSpecialS","stateBeforeSpecialT","stateInEntity","shouldContinue","handleTrailingData","onend","onattribentity","ontextentity","gK","vK","bK","Parser","t0","lS","Us","wn","cS","dS","fS","yK","CK","pS","hS","xK","SK","startIndex","endIndex","openTagStart","tagname","attribname","attribvalue","attribs","buffers","bufferOffset","writeIndex","ended","htmlMode","lowerCaseTagNames","lowerCaseTags","lowerCaseAttributeNames","recognizeSelfClosing","tokenizer","Tokenizer","foreignContext","onparserinit","getSlice","isVoidElement","emitOpenTag","onopentag","endOpenTag","closeCurrentTag","onattribute","getInstructionName","oncommentend","recognizeCDATA","oncdatastart","oncdataend","onreset","parseComplete","shiftBuffer","onerror","parseChunk","Vo","Doctype","CDATA","Tag","Style","Script","Comment","isTag","ElementType","zo","__extends","__assign","cloneNode","hasChildren","isDocument","isDirective","isComment","isCDATA","NodeWithChildren","ProcessingInstruction","DataNode","Node","Np","Op","_k","Bm","sourceCodeLocation","DomHandler","withStartIndices","withEndIndices","dom","tagStack","lastNode","elementCB","handleCallback","addNode","z0","EK","Vu","attributeNames","elementNames","hu","wK","TK","AK","NK","OK","mS","Lp","kK","MK","FK","BK","IK","DK","encodeEntities","emptyAttrs","LK","selfClosingTags","PK","RK","jK","innerText","getText","getInnerHTML","getOuterHTML","$K","HK","q0","k1","I1","mr","prevElementSibling","nextElementSibling","getName","hasAttrib","getAttributeValue","getSiblings","getParent","getChildren","prependChild","append","replaceElement","removeElement","qr","findAll","existsOne","findOne","findOneChild","kp","getElementsByTagType","getElements","testElement","ss","Ip","tag_name","tag_type","tag_contains","rY","uniqueSort","DocumentPosition","removeSubsets","DISCONNECTED","FOLLOWING","CONTAINED_BY","PRECEDING","CONTAINS","Dp","getFeed","lY","mY","Qr","Oo","pubDate","updated","dY","fY","pY","hY","medium","isDefault","DomUtils","parseFeed","createDomStream","createDocumentStream","parseDOM","parseDocument","DefaultHandler","sn","qo","Pp","Mp","Fm","yY","CY","xY","SY","Rp","eI","tI","nI","rI","aI","iI","oI","_Y","AY","gS","sI","NY","uI","lI","D1","cI","lu","dI","vS","LY","bS","yS","fI","OY","pI","hI","IY","DY","PY","MY","RY","BY","FY","jY","HY","VY","zY","KY","WY","mI","eX","CS","xS","SS","Bp","oX","sX","nX","uX","qY","YY","QY","UY","fX","cX","iX","dX","lX","ZY","GY","XY","tX","rX","pX","vX","yX","CX","xX","_X","gI","SX","_S","wX","vI","processDefaultNode","AX","shouldProcessEveryNode","NX","bI","defaultProcessingInstructions","shouldProcessNode","processNode","yI","alwaysValid","kX","IX","DX","PX","MX","Fp","shouldPreprocessNode","preprocessNode","replaceChildren","parseWithInstructions","CI","qX","GX","UX","jm","VX","Nn","linkText","linkType","linkSection","clickEvent","ariaLabel","mabReward","event_name","xI","wS","ES","KX","YX","XX","ZX","JX","P1","SI","eZ","_I","tZ","nZ","rZ","aZ","M1","uZ","customWrapper","htmlOverrides","analyticsCompName","analyticsTextSection","sZ","QX","iZ","rel","oZ","clickeventname","EI","htmlString","an","renderMarkdownContent","renderHtmlContent","markdownStr","lK","htmlStr","wI","showSupScriptIndex","cZ","TI","dZ","fZ","TS","componentId","isQuantumLeap","R1","audios","audioFactory","_volume","_isMuted","addAudio","setRate","createAudio","Howl","isPlaying","play","seek","playing","rate","setVolume","setAudioFactory","_updateVolume","mute","unmute","getVolume","volume","Uint8ClampedArray","Int16Array","PI","totalTime","currentLoop","totalLoops","firstFrame","totalFrames","nativeError","Worker","createObjectURL","dataManager","Et","en","completed","hasMask","Ut","masksProperties","ty","layers","refId","shapes","St","__used","ks","assets","ip","sr","ot","Vn","Cn","At","__complete","checkColors","checkChars","checkPathProperties","checkShapes","completeLayers","assetLoader","getResponseHeader","responseType","onreadystatechange","fullPath","completeData","loadAnimation","loadData","fillStyle","fillRect","loadedAssets","totalImages","loadedFootagesCount","totalFootages","imagesLoadedCb","_imageLoaded","assetData","assetsPath","_footageLoaded","testImageLoaded","createFootageData","images","loadAssets","_createImageData","setAssetsPath","setPath","loadedImages","loadedFootages","getAsset","createImgData","crossOrigin","createImageData","_elementHelper","imageLoaded","footageLoaded","setCacheType","triggerEvent","_cbs","dr","cm","compositions","nm","prepareFrame","xt","currentFrame","compInterface","registerComposition","isLoaded","currentRawFrame","frameRate","frameMult","playSpeed","playDirection","playCount","animationData","isPaused","animationID","timeCompleted","segmentPos","isSubframeEnabled","_idle","_completedLoop","projectInterface","imagePreloader","audioController","markers","configAnimation","onSetupError","onSegmentComplete","drawnFrameEvent","setParams","wrapper","animType","rendererSettings","globalData","setProjectInterface","autoloadSegments","initialSegment","setupAnimation","fileName","setData","getNamedItem","prerender","includeLayers","fonts","fontManager","addChars","addFonts","initExpressions","loadNextSegment","loadSegments","imagesLoaded","checkLoaded","preloadImages","searchExtraCompositions","updaFrameModifier","waitForFontsLoaded","triggerConfigError","rendererType","initItems","gotoFrame","resize","updateContainerSize","setSubframe","renderFrame","triggerRenderFrameError","togglePause","setCurrentRawFrameValue","getMarkerData","goToAndStop","frameModifier","goToAndPlay","playSegments","advanceTime","checkSegments","adjustSegment","setSpeed","setDirection","setSegment","resetSegments","onEnterFrame","onLoopComplete","onSegmentStart","onDestroy","setLoop","getPath","getAssetsPath","getAssetData","getDuration","updateDocumentData","getElementByPath","elem","registerAnimation","searchAnimations","getElementsByClassName","unfreeze","getRegisteredAnimations","_mSampleValues","_precomputed","_precompute","_getTForX","_calcSampleValues","tt","Tt","double","ct","newElement","Dt","addedLength","percents","lengths","mt","totalLength","dt","segmentLength","partialLength","getSegmentsLength","_length","getNewSegment","getPointInSegment","buildBezierData","pointOnLine2D","pointOnLine3D","et","offsetTime","propType","pv","keyframesMetadata","bezierData","__fnct","getBezierEasing","lastFrame","_lastKeyframeIndex","_lastAddedLength","_lastPoint","$r","Yr","Xr","atan2","asin","keyframeMetadata","comp","renderedFrame","_caching","interpolateValue","mult","_mdf","frameId","effectsSequence","lock","setVValue","_isFirstFrame","kf","addDynamicProperty","vel","addEffect","getProp","Ot","dynamicProperties","_isAnimated","iterateDynamicProperties","initDynamicPropertyContainer","nt","_maxLength","setPathData","setLength","doubleArrayLength","setXYAt","setTripleAt","kt","addShape","releaseShapes","Mt","newShapeCollection","Kt","interpolateShape","localShapeCollection","convertEllToPath","sy","ir","convertToPath","convertStarToPath","convertPolygonToPath","or","convertRectToPath","Rt","_t","shear","Mr","ar","Hr","Nt","_identityCalculated","Fn","io","Zr","oo","so","uo","Xo","_identity","getInverseMatrix","applyToPointArray","isIdentity","skewFromAxis","setTransform","applyToPoint","applyToX","applyToY","applyToZ","applyToTriplePoints","applyToPointStringified","toCSS","to2dCSS","cloneFromProps","equals","inversePoints","inversePoint","jt","Rn","setLocationHref","setSubframeRendering","setQuality","inBrowser","installPlugin","useWebWorker","setIDPrefix","__getFactory","Ct","Wt","Bt","ft","bodymovin","registerModifier","getModifier","nn","Pn","Tr","initModifierProperties","addShapeToModifier","setAsAnimated","processKeys","sValue","eValue","pathsData","calculateShapeEdges","releasePathsData","processShapes","totalShapeLength","addShapes","addPaths","addSegment","addSegmentFromArray","processPath","ht","pre","appliedTransformations","py","ry","_isDirty","applyToMatrix","precalculateMatrix","autoOriented","getValueAtTime","autoOrient","_addDynamicProperty","getTransformProperty","gt","Jt","It","rn","eo","J2","Kn","Fs","eC","am","boundingBox","cy","bez","t2","tC","JB","im","Bs","om","hypot","nC","tF","eF","rC","nF","normalAngle","js","aC","tangentAngle","iC","intersections","oC","sC","inflectionPoints","uC","fStyle","fWeight","tr","pMatrix","rMatrix","sMatrix","tMatrix","matrix","applyTransforms","elemsData","_currentCopies","_elements","_groups","resetElements","_processed","cloneElements","changeGroupRender","_render","ix","reloadShapes","mProps","derivative","bounds","shapeSegment","shapeSegmentInverted","amplitude","frequency","pointsType","miterLimit","lineJoin","rF","fontFamily","fontVariant","fontStyle","letterSpacing","fFamily","fClass","OffscreenCanvas","font","measureText","getComputedTextLength","typekitLoaded","_warned","initTime","setIsLoadedBinded","setIsLoaded","checkLoadedFontsBinded","checkLoadedFonts","isModifier","isZeroWidthJoiner","isCombinedCharacter","helper","loaded","monoCase","sansCase","fPath","fOrigin","getCharData","getFontByName","fName","initRenderable","isInRange","isTransparent","renderableComponents","addRenderableComponent","removeRenderableComponent","prepareRenderableFrame","checkLayerLimits","checkTransparency","finalTransform","mProp","renderConfig","hideOnTransparent","renderRenderable","sourceRectAtTime","getLayerSize","textData","um","aF","iF","oF","sF","uF","lF","cF","dF","lC","effectElements","no","ro","initFrame","footageData","imageLoader","initBaseData","Kr","_isPlaying","_canPlay","audio","_currentTime","_volumeMultiplier","_previousVolume","_placeholder","lv","au","Pr","$s","Ko","storedData","maskElement","viewData","solidPath","inv","getShapeProp","lastPath","expan","lastOperator","filterId","lastRadius","createLayerSolidPath","invRect","drawPath","maskedElement","checkMasks","setBlendMode","baseElement","layerElement","effectsManager","getType","prepareProperties","_isParent","getBaseElement","getFootageData","checkLayers","elements","buildItem","checkPendingElements","createItem","createImage","createComp","createSolid","createNull","createShape","createText","createCamera","createFootage","buildAllItems","progressiveLoad","buildElementParenting","ind","setAsParent","setHierarchy","addPendingElement","pendingElements","setupGlobalData","animationItem","compSize","initTransform","_matMdf","_opMdf","mat","ao","renderTransform","hierarchy","globalToLocal","mHelper","getMaskProperty","getMaskelement","yl","createFilter","createAlphaToLuminanceFilter","cC","maskType","svgLumaHidden","offscreenCanvas","lm","dC","fC","filters","countsAsEffect","Cl","Hs","Sl","initElement","sourceRect","fF","pC","initRendererElement","createContainerElements","matteElement","transformedElement","_sizeChanged","matteMasks","renderElement","destroyBaseElement","maskManager","createRenderableComponents","renderableEffectsManager","getMatte","setMatte","initHierarchy","checkParenting","createContent","renderInnerContent","innerElem","pr","imagePreserveAspectRatio","addShapeToModifiers","shapeModifiers","isShapeInAnimatedModifiers","isAnimatedWithShape","renderModifiers","searchProcessedElement","processedElements","addProcessedElement","hC","mC","gC","transformers","lStr","lvl","vC","pElem","msElem","dataProps","dashStr","dashArray","dashoffset","bC","yC","CC","_l","_cmdf","_omdf","_collapsable","checkCollapsable","_hasOpacity","Vs","initGradientData","xC","pF","prevViewData","gr","hF","comparePoints","stops","setGradientData","setGradientOpacity","cst","ms","ost","maskId","SC","mF","createRenderFunction","er","shapesData","stylesList","itemsData","animatedContents","sw","jr","_frameId","keysIndex","canResize","minimumFontSize","currentData","ascent","boxWidth","defaultBoxWidth","justifyOffset","lineWidths","ls","ps","fillColorAnim","strokeColorAnim","strokeWidthAnim","yOffset","finalSize","finalText","finalLineHeight","copyData","searchProperty","completeTextData","initSecondaryElement","identityMatrix","buildExpressionInterface","searchShapes","filterUniqueShapes","setShapesAsAnimated","addToAnimatedContents","createGroupElement","createTransformElement","createShapeElement","setElementStyles","renderShape","setCurrentData","searchKeyframes","getKeyframeValue","buildFinalText","anIndexes","animatorJustifyOffset","extra","fs","totalChars","recalculate","canResizeFont","setMinimumFontSize","gF","_currentTextLength","finalS","finalE","getMult","textProperty","getTextSelectorProp","vF","Yo","_hasMaskedPath","_textData","_renderType","_elem","_animatorsData","_pathData","_moreOptions","renderedLetters","lettersChangedFlag","searchProperties","getMeasures","tLength","defaultPropsArray","atan","textAnimator","renderType","buildNewText","createPathShape","applyTextPropertiesToMatrix","buildColor","emptyProp","bF","textSpans","dm","El","supports3d","fm","svgElement","preserveAspectRatio","contentVisibility","viewBoxOnly","viewBoxSize","focusable","filterSize","runExpressions","frameNum","destroyed","singleShape","textContainer","buildTextContents","buildShapeData","span","childSpan","glyph","_debug","bbox","findIndexByInd","appendElementInPos","tp","setElements","destroyElements","pZ","Tu","byteOffset","bZ","circles","ArrayBuffer","isView","vZ","mZ","jp","yZ","En","CZ","AS","NS","B1","_r","$p","Hp","Vp","zp","qp","Gp","Wp","SZ","Kp","Yp","_Z","EZ","wZ","TZ","AI","tQ","NI","OI","iQ","Yn","uQ","lQ","goTo","speed","useSubframes","cQ","onLoad","fQ","xZ","dQ","hQ","Hn","Pt","blue_500","blue_600","blue_700","neutral_100","slate","pJ","GoldOnWhite","secondary","overlap","background","GoldBlue500OnWhite","Blue500OnWhite","Blue600OnWhite","Blue500Blue600OnWhite","Blue600Blue500OnWhite","WhiteOnBlue600","GoldOnNeutral100","GoldBlue500OnNeutral100","Blue500OnNeutral100","Blue600OnNeutral100","Blue500Blue600OnNeutral100","Blue600Blue500OnNeutral100","SlateOnWhite","LI","HeroSplit01Large","lottie","graphicHeight","graphicOffset","canUseImage","HeroSplit01Medium","HeroSplit02LargeUpper","HeroSplit02MediumUpper","HeroSplit01XLargeUpper","HeroSplit02XLargeUpper","HeroTall01","HeroTall02","SplitRightLarge","ratioType","SplitRightMedium","svgRatio","SplitRightSmall","SplitLeftLarge","SplitLeftMedium","SplitLeftSmall","GraphicLeftCurveLarge","GraphicLeftCurveMedium","GraphicLeftCurveSmall","GraphicLeftLarge","GraphicLeftSmall","GraphicLeftMini","GraphicOverlap01","GraphicOverlap02","GraphicOverlap03","GraphicOverlap04","GraphicOverlap05","GraphicOverlap06","GraphicOverlap07","GraphicRightCurveLarge","GraphicRightCurveMini","GraphicRightCurveSmall","GraphicRightLarge","GraphicRightSmall","SplitTall01","SplitTall02","hJ","mJ","gJ","graphic","renderBackgroundImage","graphicVersion","div","kI","$m","II","graphicShapeOptions","bJ","DI","disclosure","messageId","isThemeEnabled","gridProps","renderBottomContent","disclosureWrapper","disclosureGridItemProps","yJ","cn","motion","CJ","SJ","graphicVersionTop","graphicColorTop","graphicVersionBottom","graphicColorBottom","xJ","Hm","Xp","closeAriaLabel","iconClick","clickDataEvent","MI","Il","A8","Dl","RI","isShowing","ariaLabelCloseBtn","clickDataEventCloseBtn","additionalElmtProps","overlay","headerElmt","bodyElmt","role","header","_J","EJ","wJ","BI","toggle","Cs","UNSTARTED","ENDED","PLAYING","PAUSED","BUFFERING","CUED","cu","playVideo","pauseVideo","seekTo","unMute","TJ","LS","videoId","onReady","onStateChange","roundedStyle","playerState","allow","sandbox","Au","FI","AJ","youTubeId","modalWrapper","iconType","bt","Qt","NJ","jI","F1","G0","kJ","j1","LJ","kS","$J","IS","Lr","OJ","DS","PS","Vm","HJ","VJ","MS","zJ","vs","GJ","UJ","$I","$1","HI","Mo","KJ","zm","YJ","RS","BS","ZJ","QJ","JJ","eee","qm","tee","nee","ree","VS","zS","qS","GS","US","WS","KS","YS","XS","ZS","QS","e_","t_","n_","r_","a_","i_","o_","s_","u_","l_","c_","d_","f_","p_","h_","FS","Ws","jS","Gm","XJ","aee","$S","oee","see","uee","lee","VI","dee","HS","Zt","zI","LEFT","m_","g_","v_","b_","y_","C_","qI","vee","bee","GI","xr","pee","yee","hee","mee","Cee","xee","See","Zp","Qp","Xt","Jp","x_","Um","S_","E_","yn","cee","fee","Nee","kee","platform","imageClassName","ios","android","Aee","ios_white","Lee","Zl","Dee","Pee","clientLocale","Ks","Go","strokeLinecap","strokeLinejoin","UI","Wm","WI","Ree","mobileUrl","showArrowIcon","clientType","w_","T_","A_","N_","O_","L_","k_","I_","D_","Fr","sysTypographyDisplayFamily","sysTypographyDisplaySize","sysTypographyDisplayWeight","sysTypographyDisplayLineHeight","sysTypographyDisplayMaxScaleFactor","sysTypographyHeadingLgFamily","sysTypographyHeadingLgSize","sysTypographyHeadingLgWeight","sysTypographyHeadingLgLineHeight","sysTypographyHeadingLgMaxScaleFactor","sysTypographyHeadingSmFamily","sysTypographyHeadingSmSize","sysTypographyHeadingSmWeight","sysTypographyHeadingSmLineHeight","sysTypographyHeadingSmMaxScaleFactor","sysTypographyTitleStrongFamily","sysTypographyTitleStrongSize","sysTypographyTitleStrongWeight","sysTypographyTitleStrongLineHeight","sysTypographyTitleStrongMaxScaleFactor","sysTypographyTitleFamily","sysTypographyTitleSize","sysTypographyTitleWeight","sysTypographyTitleLineHeight","sysTypographyTitleMaxScaleFactor","sysTypographyBodyStrongFamily","sysTypographyBodyStrongSize","sysTypographyBodyStrongWeight","sysTypographyBodyStrongLineHeight","sysTypographyBodyStrongMaxScaleFactor","sysTypographyBodyFamily","sysTypographyBodySize","sysTypographyBodyWeight","sysTypographyBodyLineHeight","sysTypographyBodyMaxScaleFactor","sysTypographyCaptionFamily","sysTypographyCaptionSize","sysTypographyCaptionWeight","sysTypographyCaptionLineHeight","sysTypographyCaptionMaxScaleFactor","sysTypographyCaptionStrongFamily","sysTypographyCaptionStrongSize","sysTypographyCaptionStrongWeight","sysTypographyCaptionStrongLineHeight","sysTypographyCaptionStrongMaxScaleFactor","sysTypographyButtonLgFamily","sysTypographyButtonLgSize","sysTypographyButtonLgWeight","sysTypographyButtonLgLineHeight","sysTypographyButtonLgMaxScaleFactor","sysTypographyButtonSmFamily","sysTypographyButtonSmSize","sysTypographyButtonSmWeight","sysTypographyButtonSmLineHeight","sysTypographyButtonSmMaxScaleFactor","sysTypographyFieldLabelLgFamily","sysTypographyFieldLabelLgSize","sysTypographyFieldLabelLgWeight","sysTypographyFieldLabelLgLineHeight","sysTypographyFieldLabelLgMaxScaleFactor","sysTypographyFieldLabelSmFamily","sysTypographyFieldLabelSmSize","sysTypographyFieldLabelSmWeight","sysTypographyFieldLabelSmLineHeight","sysTypographyFieldLabelSmMaxScaleFactor","sysTypographyFieldValueXlFamily","sysTypographyFieldValueXlSize","sysTypographyFieldValueXlWeight","sysTypographyFieldValueXlLineHeight","sysTypographyFieldValueXlMaxScaleFactor","sysTypographyFieldValueLgFamily","sysTypographyFieldValueLgSize","sysTypographyFieldValueLgWeight","sysTypographyFieldValueLgLineHeight","_n","sysTypographyFieldValueLgMaxScaleFactor","sysTypographyFieldValueSmFamily","rr","sysTypographyFieldValueSmSize","Jn","sysTypographyFieldValueSmWeight","yt","sysTypographyFieldValueSmLineHeight","Yt","sysTypographyFieldValueSmMaxScaleFactor","dn","cr","wr","bodyStrong","caption","captionStrong","headingSm","headingLg","titleStrong","buttonLg","buttonSm","fieldLabelSm","fieldLabelLg","fieldValueSm","fieldValueLg","fieldValueXl","lineClamping","shimmer","shimmerDisplay","shimmerHeadingLg","shimmerHeadingSm","shimmerBody","shimmerCaption","shimmerTitle","P_","M_","R_","B_","F_","j_","$_","Bee","KI","isLoading","clampAtLine","Fee","$ee","screenReaderText","sysSizeCircleXs","sysSizeCircleSm","sysSizeCircleMd","sysSizeCircleXl","jee","H_","YI","shouldHide","onOpen","onClose","onCloseComplete","phaseProps","showing","hiding","closeMethod","animatee","stopImmediatePropagation","Hee","requestClose","onTransitionEnd","onAnimationEnd","XI","ZI","Vee","_invoke","__await","delegate","_sent","dispatchException","abrupt","nextLoc","tryLoc","catchLoc","finallyLoc","afterLoc","tryEntries","completion","isGeneratorFunction","mark","awrap","AsyncIterator","async","rval","delegateYield","U0","zee","qee","regeneratorRuntime","V_","QI","W0","K0","JI","Kee","Wee","eD","tD","useMedium","assignSyncMedium","assignMedium","ssr","nD","sideCar","isSideCarExport","rD","Km","onScrollCapture","onWheelCapture","onTouchMoveCapture","forwardProps","removeScrollBar","shards","noIsolation","inert","allowPinchZoom","gapMode","setCallbacks","lockRef","fullWidth","zeroRight","aD","iD","oD","Qee","H1","sD","Ym","uD","lD","nte","cD","rte","noFocusGuards","persistentFocus","crossFrame","allowTextSelection","whiteList","hasPositiveIndices","lockProps","returnFocus","focusOptions","onActivation","onDeactivation","observed","onBlur","onFocus","ate","dD","fD","pD","ite","scrollLock","focusLock","shouldIgnore","preventScrollOnFocus","preventScroll","setLockProps","hD","mD","DOCUMENT_FRAGMENT_NODE","gD","DOCUMENT_NODE","vD","ELEMENT_NODE","ste","ute","bD","fte","lte","yD","CD","xD","focusGuard","pte","hte","SD","gte","_D","shadowRoot","vte","cte","dte","z_","V1","q_","Nu","ED","DOCUMENT_POSITION_CONTAINED_BY","DOCUMENT_POSITION_CONTAINS","Cte","xte","wD","Ste","_te","wte","G_","U_","TD","z1","Xm","AD","Ite","kte","Tte","Ate","autofocus","Nte","Ote","bte","yte","Lte","Zm","Qm","ND","Pte","Ou","mu","Lu","Bte","W_","focusAutoGuard","lockItem","Hte","zte","portaledElement","Fte","Vte","Ete","qte","$te","blur","Dte","OD","ey","LD","observerNode","jte","moveFocusInside","focusInside","Zte","ote","nne","Jte","ene","tne","rne","dynamic","ane","gap","Jm","sne","une","lne","noRelative","noImportant","ine","one","q1","n0","Ys","kD","overflowY","overflowX","cne","Y_","ShadowRoot","ID","DD","dne","fne","pne","hne","r0","X_","Z_","bne","yne","Xs","mne","gne","vne","should","Zs","a0","i0","PD","Ene","xne","Sne","_ne","wne","Tne","Ane","Q_","One","onEscapeKey","onClickOutside","onMouseDown","onTouchStart","J_","e3","t3","n3","r3","a3","i3","o3","s3","u3","l3","c3","d3","f3","p3","h3","m3","g3","v3","b3","Lne","MD","Ine","y3","C3","x3","S3","_3","E3","w3","T3","A3","N3","O3","L3","k3","I3","D3","P3","M3","R3","B3","F3","j3","$3","H3","V3","z3","q3","G3","U3","W3","K3","Y3","X3","Z3","Q3","J3","eE","tE","nE","rE","aE","iE","oE","sE","uE","lE","cE","dE","fE","pE","hE","mE","gE","vE","yE","CE","xE","SE","_E","EE","ny","svgIconComponent","iconClassName","buttonType","btnState","sysSizeTapTargetXs","sysSizeTapTargetSm","sysSizeCircleLg","sysBorderRadiusSm","sysBorderRadiusInteractive","sysColorOverlayMain","sysColorOverlayContrast","sysColorOverlayMainHover","sysColorOverlayMainActive","successContainer","processingContainer","secondaryInverse","tertiary","tertiaryInverse","icon","shimmerSizeSm","shimmerSizeXl","loadingSpinner","processingState","successState","kne","Pne","Mne","Rne","onBeforeClose","noPadding","closeButtonLabel","noCloseButton","closeButtonProps","hideTitle","showLogo","mobileFixedHeight","headerContents","footerContents","footerAlign","returnFocusToTrigger","headerClassName","containerClassName","contentContainerRef","wrapperClassName","footerClassName","skipFormFocus","contentScrollTop","onContentScroll","showDrawer","sysSizeTapTargetDefault","sysSpaceXl","sysSizeMediaSm","sysSizeMediaLg","sysMotionDurationDepart","sysSpaceXs","sysMotionDurationArrive","sysSizeIndicatorMd","sysSpaceJumbo","sysSizeMediaXl","modalContents","modalContentsCenter","modalContentsNoPadding","modalHeader","modalHeaderScrolled","modalHeaderClose","modalHeaderAction","modalHeaderTitle","modalHeaderLogo","modalHeaderLogoImage","modalFooter","modalFooterScrolled","modalFooterAlignCenter","modalFooterAlignRight","modalDialog","modalBackdrop","modalBackdropShow","modalBackdropShowDialog","modalContentsClose","modalContentsDialog","containerMiddle","modalContentDialogPadding","modalSheet","modalSheetShow","modalSheetHeight90","modalSheetHeight50","modalNoContainer","modalHeaderSheet","modalHeaderSheetAction","modalHeaderWorkArea","modalContentsSheet","modalContentWithHeader","scrim","scrimShow","containerBottom","justifyRight","containerRightWidth","containerRight","containerLeft","drawerContainer","Dne","maxTouchPoints","msMaxTouchPoints","wee","Er","On","onTouchMove","onTouchEnd","onScroll","Bne","Fne","isOpen","containerRef","bE","sysBorderThicknessFocusOutline","menuContainer","minWidth","menuList","desktopPaddingBottom","desktopPaddingTop","menuListItem","hoverBgColor","activeBgColor","menuItemThumbnail","marginRightLeft","menuItemText","menuSecondaryText","menuLoadingContainer","menuKeyboardActive","menuListWidthMin","menuListWidthMax","RD","selectionMenuList","selectionMenuItemText","selectedIcon","itemThumbnailImage","itemHilite","unselectable","menuListStyles","wE","TE","AE","NE","OE","LE","kE","IE","DE","PE","ME","RE","BE","FE","jE","$E","HE","VE","zE","qE","GE","jne","$ne","Vne","menuName","primaryText","primaryTextLineClamp","secondaryText","secondaryTextLineClamp","decoration","isFocused","isHilite","isSelected","onItemClick","isLoadingOptions","isMobile","keyboardActive","scrollIntoView","behavior","BD","itemClassName","mobileHeaderClassName","sheetClassName","sheetWrapperClassName","initialItemFocus","ignoreKeyboard","mobileTitle","mobileHeaderContents","outsideClickCheck","onSelection","selectedIndex","activeItem","triggerElementId","triggerElementRef","rtl","searchEnabled","qne","zne","IS_ENTER","IS_TAB","IS_ESC","imgSrc","Une","Wne","UE","Yne","isMenu","isSmall","branded","iconComponent","fullWidthOnMobile","sysMotionDurationAction","sysMotionDurationHover","affordance","menuWrapper","successStateOverlay","successStateIcon","successStateIconSm","buttonGroup","buttonGroupSolo","btnFullWidth","btnGroupFullWidth","Gne","Kne","FD","Xne","Small","Large","ay","Ql","iy","legalPosition","disclosureType","inlinePlayButtonWrapper","Zne","Ns","IntersectionObserverEntry","intersectionRatio","THROTTLE_TIMEOUT","POLL_INTERVAL","USE_MUTATION_OBSERVER","_setupCrossOriginUpdater","_checkForIntersections","_resetCrossOriginUpdater","_observationTargets","_registerInstance","_monitorIntersections","_unmonitorIntersections","_unregisterInstance","disconnect","_unmonitorAllIntersections","takeRecords","_queuedEntries","_initThresholds","_parseRootMargin","_monitoringDocuments","MutationObserver","childList","characterData","subtree","_monitoringUnsubscribes","_rootIsInDom","_getRootRect","_rootContainsTarget","_computeTargetAndRootIntersection","boundingClientRect","rootBounds","intersectionRect","_hasCrossedThreshold","_callback","_expandRectByRootMargin","_rootMarginValues","thresholds","frameElement","assignedSlot","G1","o0","WE","Qne","nre","Jne","ere","trackVisibility","tre","initialInView","fallbackInView","jD","minHeight","$D","oy","containerDimensions","Qn","initialViewPort","mediaQueryTypeKeys","mediaQueryMap","setViewportType","rre","HD","qual","stripQueryParams","are","searchParams","Qs","ire","srcSet","VD","s0","zD","mdImage","imageLink","ariaHidden","ariaDescribedBy","maxSrcSetWidth","lazyLoadWrapper","lazyLoadRootMargin","imageServerKnobs","dataPaClick","imageLinkAttrs","pictureRef","quality","decoding","fetchpriority","ur","KE","YE","XE","ZE","QE","JE","ew","tw","nw","rw","aw","iw","ow","uw","lw","cw","dw","fw","pw","hw","mw","gw","vw","bw","yw","Cw","xw","Sw","_w","Ew","ww","Tw","Aw","Nw","Ow","Lw","kw","Iw","Dw","Pw","Mw","Rw","Bw","Fw","jw","$w","Hw","Vw","zw","qw","Gw","Uw","Ww","Kw","Yw","Xw","Zw","Qw","sysSpaceTiny","sysColorStructureBorderHighContrast","sysSizeFieldLg","labelWithScreenreader","helperText","iconRight","iconLeft","control","nolabelControl","errorControl","prefixWrapperError","prefixWrapperFocusError","controlErrorWithIconRight","controlErrorWithIconLeft","controlErrorWithIconLeftAndRight","noLabelControlError","placemat","noLabelPlacemat","controlWithIconRight","controlWithIconLeft","controlWithIconLeftAndRight","labelWithIconRight","labelWithIconLeft","errorText","errorIcon","successIcon","multiLineError","prefixWrapper","prefixSuffix","PrefixWrapperControl","noLabelSuffixOrPrefix","prefixWrapperControlWithPrefix","prefixWrapperControlWithSuffix","prefixWrapperControlWithPrefixSuffix","prefixWrapperFocus","labelWhenPlaceholderShownAndInputNotFocused","textAreaControl","textAreaControlError","textAreaControlLabel","textAreaControlErrorLabel","textAreaCounterWrapper","textAreaCounterWrapperFocus","textAreaCounterText","textAreaErrorCounterWrapper","textAreaErrorCounterWrapperFocus","textAreaErrorCounterText","textDisplayNoLabelControl","textDisplayControl","textDisplayLabel","textDisplayIconRight","textDisplaylabelIconRight","textDisplayControlIconRight","lre","Jw","u0","cre","errorIconAriaLabel","successText","successIconAriaLabel","e6","qD","setFocus","inputClassName","labelClassName","isLabelHidden","placeholder","leftIcon","rightIcon","renderContent","removeBorderRadiusLeft","removeBorderRadiusRight","removeBorderRadiusBoth","leftIconCSS","rightIconCSS","hasError","inputTag","dre","fre","hre","inputRef","htmlFor","mre","gre","prefixClassName","suffixClassName","vre","bre","zu","yre","Cre","xre","minRows","maxRows","showCharacterCounter","maxCharacters","counterStatusText","messageFormatter","ore","charCount","uy","GD","Sre","ly","Os","dy","UD","WD","Y0","Are","Nre","Ore","Lre","fy","Dre","Vre","kr","isArrayBuffer","isBuffer","isFormData","FormData","isArrayBufferView","isNumber","isUndefined","isDate","isFile","isFunction","isStream","isURLSearchParams","isStandardBrowserEnv","U1","stripBOM","inherits","toFlatObject","kindOf","kindOfTest","isTypedArray","isFileList","Js","t6","KD","zre","fulfilled","synchronous","runWhen","eject","qre","Gre","YD","qu","toJSON","lineNumber","columnNumber","XD","ZD","n6","r6","a6","i6","o6","s6","u6","c6","QD","silentJSONParsing","forcedJSONParsing","clarifyTimeoutError","JD","e9","Qre","Jre","ERR_CANCELED","__CANCEL__","d6","f6","iae","oae","p6","transitional","adapter","validateStatus","ERR_BAD_REQUEST","ERR_BAD_RESPONSE","Kre","toGMTString","cookie","Yre","eae","tae","cancelToken","username","Authorization","baseURL","statusText","paramsSerializer","onloadend","responseURL","onabort","ECONNABORTED","ERR_NETWORK","timeoutErrorMessage","ETIMEDOUT","withCredentials","xsrfCookieName","xsrfHeaderName","onDownloadProgress","onUploadProgress","upload","aborted","l6","sae","transformRequest","uae","transformResponse","maxContentLength","maxBodyLength","common","Accept","h6","hy","lae","cae","t9","m6","fae","pae","hae","throwIfRequested","g6","n9","timeoutMessage","decompress","beforeRedirect","httpAgent","httpsAgent","socketPath","responseEncoding","r9","gae","So","my","v6","ERR_DEPRECATED","C6","x6","S6","bae","assertOptions","ERR_BAD_OPTION_VALUE","ERR_BAD_OPTION","validators","a9","yae","b6","y6","Cae","i9","eu","Gu","interceptors","boolean","getUri","_6","wae","X0","Tae","o9","Axios","CanceledError","CancelToken","_listeners","Sae","isCancel","VERSION","toFormData","AxiosError","Cancel","isAxiosError","Eae","Lae","imageOptions","cornersDotOptions","cornersSquareOptions","qrOptions","errorCorrectionLevel","dotsOptions","s9","getPatternPosition","getBCHTypeNumber","getBCHTypeInfo","getMaskFunction","getRSBlocks","put","getMode","getLength","getLengthInBits","dataCount","putBit","totalCount","getBuffer","getErrorCorrectPolynomial","mod","getAt","addData","isDark","getModuleCount","make","getLostPoint","createTableTag","createSvgTag","cellSize","scalable","createDataURL","createImgTag","createASCII","renderTo2dContext","stringToBytes","stringToBytesFuncs","createStringToBytes","multiply","gexp","glog","SJIS","writeByte","writeShort","writeBytes","writeString","toByteArray","setPixel","_svg","_type","draw","_drawDot","_drawClassy","_drawClassyRounded","_drawRounded","_drawExtraRounded","_drawSquare","getNeighbor","_rotateFigure","rotation","_element","_basicDot","_basicSquare","_basicSideRounded","_basicCornerRounded","_basicCornerExtraRounded","_basicCornersRounded","_basicExtraRounded","_defs","_instanceId","instanceCount","getElement","replaceChild","drawQR","trys","ops","throw","hideXDots","hideYDots","_qr","loadImage","_image","imageSize","originalHeight","originalWidth","maxHiddenDots","maxHiddenAxisDots","dotSize","drawBackground","drawDots","hideBackgroundDots","drawCorners","drawImage","backgroundOptions","gradient","_createColor","additionalRotation","_dotsClipPath","_rectWidth","_cornersSquareClipPath","_cornersDotClipPath","Image","onload","colorStops","typeNumber","clearContainer","_getQRStylingElement","_svgDrawingPromise","_container","getRawData","XMLSerializer","serializeToString","download","extension","click","Dae","Mae","Pl","dataUrl","fallbackImageUrl","Pae","Z0","incentive_eligible","account_creation_eligible","account_creation_ineligible","vn","gy","imageUrl","phoneNumberText","cta","ctaSms","ctaMobile","successFallbackMessage","errorFallbackMessage","invalidFallbackMessage","accountCreationEligibleFallback","accountCreationIneligibleFallback","intent","tsrce","buttonGroupWrapper","dataQrUrl","Bae","jae","Fae","phoneNumber","personalizationTouchpoints","message_count","decision","Rae","onKeyPress","$ae","imageFrameWrapper","imageFrameProps","lineProps","Hae","Vae","zae","u9","qae","Sr","E6","w6","T6","A6","N6","O6","L6","k6","I6","D6","P6","Uae","Kae","leftIconLabel","sysBorderRadiusMd","badgeType","success","critical","neutral","authorized","onHold","favorite","numeric","Gae","Wae","l9","getMonth","getDate","padStart","getFullYear","c9","getTime","d9","c0","f9","expirationDate","Xae","M6","R6","B6","F6","j6","$6","H6","V6","z6","Ml","p9","verifiedIcon","windowId","triggerClassName","tooltipClassName","imageElement","imagePosition","sysSizePointerWidthLg","imageTopLeft","imageTopCenter","imageBottomLeft","imageBottomCenter","Zae","currentEvent","windowEl","pageXOffset","onMouseLeave","onMouseEnter","vy","gu","Qae","q6","G6","h9","number1","number2","by","Jae","numberGroup","textSize","topBorder","bottomBorder","tooltip","topSpacer","bottomSpacer","Green","Purple","Grey","Gold","Blue","White","Yellow200","Yellow300","Q0","Checkmark","U6","m9","tie","g9","d0","rie","aie","iie","oie","checkmarkColor","listItem","bulletWrapper","Ls","maxItems","nie","yy","documentToPlainTextString","W6","countryName","currencyName","currencyCode","currencySymbol","CN","VN","TH","IT","FR","GB","CA","AU","sie","mask","thousandsSeparator","padFractionalZeros","W1","K6","Y6","v9","cie","b9","currencyCodeSender","currencyValueSender","currencyCodeReceiver","currencyValueReceiver","lie","Ir","X6","Dr","Is","K1","hn","pie","Ds","fie","hie","mie","y9","Ln","J0","die","ku","bie","Cie","C9","Sie","Y1","qn","rawInserted","tailShift","Iu","zt","Cy","X1","Eie","cursorPos","oldSelection","startChangePos","insertedCount","removedCount","aggregate","_appendPlaceholder","Sn","InputMask","Ps","_update","DEFAULTS","isInitialized","withValueRefresh","doCommit","doParse","doFormat","extractInput","isComplete","appendTo","doPrepare","_appendCharRaw","doValidate","appendTail","_beforeTailState","_appendChar","eager","_appendEager","_refreshing","rawInputValue","_isolated","prepare","commit","extractTail","_ie","nearestInputPos","typedValue","EMPTY_VALUES","x9","MaskedRegExp","MaskedPattern","MaskedDate","MaskedNumber","MaskedDynamic","Masked","MaskedFunction","createMask","wie","Tie","S9","masked","isFilled","isOptional","placeholderChar","unmaskedValue","_9","isFixed","isUnmasking","_isRawInput","Aie","Z6","chunks","blockIndex","_mapPosToBlock","_stops","_blocks","Nie","_log","_blockStartPos","bindBlock","_pushLeft","_pushRight","Oie","Lie","Uo","_rebuildMask","_maskedBlocks","blocks","STOP_CHAR","ESCAPE_CHAR","_forEachBlocksInRange","_findStopBefore","pushRightBeforeInput","popState","pushLeftBeforeInput","pushRightBeforeFilled","pushLeftBeforeRequired","pushLeftBeforeFilled","pushRightBeforeRequired","maskedBlocks","InputDefinition","FixedDefinition","maxLength","padEnd","autofix","boundaries","_matchFrom","MaskedRange","xy","GET_DEFAULT_BLOCKS","isDateExist","Sy","_unsafeSelectionStart","_unsafeSelectionEnd","_unsafeSelect","MaskElement","_handlers","getRootNode","rootElement","setSelectionRange","_toggleEventHandler","EVENTS_MAP","selectionChange","drop","HTMLMaskElement","E9","HTMLContenteditableMaskElement","kie","Iie","isContentEditable","_unmaskedValue","_saveSelection","_onInput","_onChange","_onDrop","_onFocus","_onClick","alignCursor","alignCursorFriendly","_bindEvents","updateValue","maskEquals","updateOptions","updateControl","typedValueEquals","bindEvents","unbindEvents","_cursorChanging","_changingCursorPos","select","_selection","_fireChangeEvents","_delayUpdateCursor","_abortUpdateCursor","_fireEvent","_inputEvent","removeDirection","updateCursor","_unbindEvents","_y","_updateRegExps","allowNegative","_numberRegExpInput","_numberRegExp","_mapToRadixRegExp","mapToRadix","_thousandsSeparatorRegExp","_removeThousandsSeparators","_separatorsCount","_adjustRangeWithSeparators","_separatorsCountFromSlice","_insertThousandsSeparators","_findSeparatorAround","normalizeZeros","_normalizeZeros","_padFractionalZeros","signed","vie","yie","xie","gie","Die","Range","maskOptions","onAccept","Pie","Mie","currencyType","currencyFormatter","currency","intlMaskOptions","intlCurrencyPrefix","intlCurrencySuffix","ure","resolvedOptions","maximumFractionDigits","currencyMaskOptions","sre","inputMode","w9","Rie","Ey","Q6","bs","c2","co","cv","do","es","fo","ga","gn","in","jo","ky","mn","mv","np","nu","rs","ru","sv","tv","us","vu","ws","mo","J6","e4","t4","n4","r4","Fie","countryCode","noRoundCorners","sysColorStructureDivider","flagSize","flag","Bie","T9","a4","A9","N9","i4","Z1","currencyValue","onChangeCurrencyValue","Q1","Hie","conversionMode","sourceCurrency","destCurrencyCode","zie","preferredReceiverCountry","sender","receiver","jie","$ie","setSourceCurrencyValueToSender","setSourceCurrencyValueToReceiver","setSourceCurrencyToSender","setSourceCurrencyToReceiver","Vie","destCurrencyValue","exchangeRate","uie","O9","f0","L9","currencyInputSender","currencyInputReceiver","enableReceiverCurrencySelection","enableCurrencySelection","qie","CurrencyConverter","Gie","o4","customWrapperProps","componentInserts","shouldDisplayChildren","componentType","Kie","inlineStart","inlineEnd","Or","p0","cK","dK","fK","pK","Zie","Jie","appDownloadGroup","appDownloadGroupWrapper","wy","eyebrowBadge","subheading","subheadingTag","removeOrphanFromHeadline","byline","organization","featureList","componentInsertsTop","componentInsertsByRef","placement","referenceField","Uie","Wie","Xie","eoe","toe","P9","soe","Ty","M9","J1","analyticsVideoText","playAriaLabel","pauseAriaLabel","hasAriaPopup","mediaClick","ev","localStorage","getItem","R9","setItem","Ay","B9","posterImage","videoPlayedLabel","videoPlayed","playYouTubeVideo","F9","Rl","j9","replayButton","returnButton","playedVideosExpiry","hideModal","uoe","setDate","$9","poe","H9","onEnded","onPlaying","onLoadedMetadata","autoPlay","posterImageUrl","poster","playsInline","muted","V9","hoe","z9","lo","q9","baseVideoCollection","mdVideoCollection","ariaLabelCloseButton","mediaControl","imageUrlDesktop","altTextDesktop","imageUrlMobile","altTextMobile","buttonText","lazyLoadProps","isReducedMotion","endCardCollection","modalAriaLabel","videoName","videoContent","altTextLabel","s4","viewportType","foe","inlineVideoPlaying","setInlineVideoPlaying","isLargeDuration","handleInlineVideoState","videoLoadRef","setIsVideoDurationAvailable","videoRef","hasVideoLoaded","setHasVideoLoaded","isVideoDurationAvailable","doe","G9","moe","imageFramerWrapper","videoFrameWrapper","video","Ur","voe","yoe","U9","xoe","_oe","W9","Eoe","Ny","h0","K9","enableTruncation","truncateButtons","textGroupWrapper","textGroupWrapperProps","getCustomWrapperProps","lessTextLabel","moreTextLabel","truncateButton","zX","woe","Toe","noAnimate","Aoe","Ms","joe","Ly","backgroundTheme","Boe","Foe","l4","qoe","c4","m0","Yoe","pageLabel","currentPage","totalPages","disableCarousel","X9","Z9","Xoe","slideLabel","slideIdx","totalSlides","Zoe","hasNextSlide","Qoe","hasPrevSlide","Joe","btnClass","slideToPage","activeButton","onKeyDown","d4","f4","p4","nse","renderItem","carouselDetails","slidesPerView","spaceBetween","spacerSize","slideWidth","swipeOptions","classes","breakpoints","slideToNextPage","slideToPrevPage","visibleSlides","resizeCarouselTrack","getNextSlideIdx","translateTrack","cancelAnimation","getNewPageValues","getTrackTranslateX","getVisibleSlideIndices","doesSlideExist","calcSlidesPerView","transitionDuration","animationDuration","marginInlineStart","Koe","touchArea","restraint","allowedTime","disableMouseDrag","Woe","ese","tse","ise","trackContainer","prevButtonLabel","prevBtn","slide","nextButtonLabel","nextBtn","pageNavButtonLabel","navContainer","navBtn","Q9","Iy","J9","topicGroup","category","topic","lse","articleType","author","guest","speakerLabel","speakerName","speakerTitle","authorGroupLabels","authorSpeakerLabel","authorName","guestSpeakerLabel","hostSpeakerLabel","sse","dse","formattedDate","fse","summary","ctaLabel","articlePodcastLength","mse","gse","articleTypeLabel","articleTimeToRead","cardSize","pse","eP","yse","lazyLoad","Dy","datesObj","articleRelativeUrl","useCardDateAttribute","cardTheme","imageFrameClasses","headlineStr","isFeatureCard","vse","Yae","bse","shortDate","Cse","tP","nP","rP","Sse","_se","aP","wse","standard","large","Tse","Ase","Nse","iP","Lse","oP","h4","sP","headerTextGroup","headerTextGroupRenderer","xse","kse","maxCards","lP","m4","cP","maxColumns","av","dP","g0","Wr","mediaSize","Ise","Dse","Pse","fP","Py","tu","My","mediaFrame","collectionLength","isImageFlushed","cardVariant","noImage","onlyCta","pP","jf","Rse","Bse","carouselBreakpointValues","Fse","v4","renderAs","Mse","carouselBreakpoints","maxSlidesPerView","jse","hP","$se","Ry","mP","Hse","By","Fy","Bl","ov","Qse","Jse","eue","tue","isItemOpen","accordionItemRowId","accordionItemContentId","bP","po","nue","openItemIndex","toggleAccordionItem","rue","aue","yP","iue","b4","jy","sue","itemOpen","accordionItemWrapper","sectionWrapper","headlineTextGroup","oue","CP","Ss","cue","fue","pictogram","truncatedTextGroupWrapper","truncatedTextGroupWrapperProps","truncatedTextGroup","xP","SP","parallaxFactor","enableScale","disableParallax","y4","headlineAlignment","graphicImage","Cue","yue","Sue","xue","$y","hideGraphicShapes","startCol","endCol","lue","due","gridItemProps","isLastRow","uue","Eue","wue","Aue","Nue","_P","Hy","Oue","onMouseUp","Lue","C4","Mue","Iue","panelType","buttonTextSize","Due","showArrow","Pue","EP","containsCurrentPageLink","jue","Vue","zue","wP","TP","Vy","_s","AP","NP","OP","zy","Xue","isTabActive","useAriaControls","analyticsEventName","eventName","Yue","LP","selTabItemText","tabItems","isLarge","Fl","IP","tle","userType","laDataLayer","leadGenParam","tsrc","trackingInfo","DP","nle","loadingText","PP","pardotUrl","iframeTitle","Que","Jue","pageLoaded","formSubmit","targetInfoRequired","targetInfo","iframeHeight","initialisedTracking","frameBorder","MP","Pu","classNameGen","getDataPaClickString","BP","FP","jP","$P","HP","kP","Uu","buttonHtmlProps","buttonTypeProps","Rue","Bue","orientation","YP","__entries__","Lle","Ple","Mle","Rle","connected_","mutationEventsAdded_","mutationsObserver_","observers_","onTransitionEnd_","refresh","Ile","connect_","disconnect_","updateObservers_","gatherActive","hasActive","broadcastActive","instance_","XP","Wu","ZP","_4","$le","Vle","Fle","Ble","boxSizing","Hle","jle","qle","broadcastWidth","broadcastHeight","contentRect_","broadcastRect","Gle","DOMRectReadOnly","zle","Ule","activeObservations_","observations_","callback_","controller_","callbackCtx_","clearActive","QP","JP","Wle","T4","pinned","unpinned","qy","oce","sce","Gy","A4","Uy","zn","Wy","Cd","t7","N4","uce","lce","cce","dce","fce","pce","hce","mce","gce","bce","yce","Cce","O4","_ce","Ece","Sd","addPassiveEventListener","removePassiveEventListener","Ace","Oce","leading","trailing","maxWait","xce","Nce","jn","spyCallbacks","spySetState","scrollSpyContainers","Lce","scrollHandler","currentPositionX","compatMode","currentPositionY","addStateHandler","addSpyHandler","updateStates","updateHash","getHash","filterElementInContainer","scrollOffset","Pce","Ky","defaultEasing","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","Yy","Rce","Bce","Ed","dv","scrollEvent","Fce","L4","Vce","n7","smooth","fv","webkitRequestAnimationFrame","Gce","a7","containerElement","i7","Kce","ignoreCancelEvents","targetPosition","percent","currentPosition","horizontal","Xy","containerId","delayTimeout","absolute","qce","animateTopScroll","getAnimationType","scrollToTop","scrollToBottom","Uce","Wce","scrollMore","Jce","tde","Zy","rde","v0","b0","k4","unregister","getElementsByName","setActiveLink","getActiveLink","ode","sde","mountFlag","initialized","scroller","containers","handleHashChange","initStateFromHash","mapContainer","changeHash","y0","ude","I4","C0","fde","Bn","ho","D4","activeClass","activeStyle","spy","onSetActive","onSetInactive","hashSpy","saveHashHistory","spyThrottle","mde","gde","vde","getScrollSpyContainer","spyHandler","stateHandler","handleClick","P4","o7","Cde","M4","_de","xde","Sde","Qy","Ede","R4","s7","Ade","kde","Nde","Ode","Lde","Jy","Ide","Dde","B4","F4","j4","Fde","jde","childBindings","domNode","$de","registerElems","parentBindings","$4","Hde","H4","e2","qde","V4","u7","Ude","Wde","Kde","z4","q4","G4","U4","x0","ts","$n","W4","Yde","Xde","Helpers","ScrollElement","ScrollLink","n2","animateScroll","scrollSpy","l7","c7","d7","f7","p7","h7","m7","g7","v7","b7","s0e","K4","Y4","X4","Z4","Q4","J4","eT","tT","nT","rT","d0e","f0e","p0e","typeIconAriaLabel","closeButton","sysSizeFieldSm","svgIcon","closeBtn","noCloseBtn","alertType","alertCloseBtn","alertIcon","c0e","h0e","aT","formType","isSuccess","userLoggedIn","userAccountNumber","appEntryPoint","ccpg","rsta","v0e","flnm","fltp","cust","mrid","record","g0e","iT","oT","sT","uT","lT","cT","dT","fT","pT","hT","mT","gT","vT","bT","yT","CT","xT","ST","_T","ET","wT","TT","AT","NT","OT","kT","DT","PT","MT","RT","BT","FT","jT","$T","HT","VT","E0e","w0e","primaryAlt","sysBorderRadiusXs","getCaptionStyles","_0e","r2","checkboxBase","checkboxGroup","groupBase","checkboxLabel","groupLabel","iconLabel","checkIconContainer","checkIcon","checkboxInput","checkboxErrorState","errorCheckIconContainer","checkboxMessageText","partialIcon","labelError","groupHelper","checkboxItems","itemThumbnail","itemThumbnailDecoration","itemText","itemSecondaryText","groupBaseWithSecText","legalConsentLabel","legalConsentText","legalConsentSupportingTextWrapper","legalConsentSupportingTextWrapperWhenNoLabel","legalConsentLinksWrapper","legalConsentGroupSpacing","legalConsentLinksWrapperWhenNoLabel","T0e","A0e","labelIcon","inCheckboxGroup","N0e","zT","qT","O0e","L0e","C7","k0e","x7","I0e","S7","checkboxCollection","GT","UT","WT","P0e","KT","R0e","j0e","H0e","$0e","V0e","onTextChange","getMenuOptions","emptyMessage","autoComplete","M0e","B0e","menu","affordanceTrigger","D0e","textValue","z0e","q0e","YT","U0e","countryList","G0e","getDisplayNamesObject","_7","XT","E7","selectCountries","Z0e","countryListCDN","localeDisplayNames","territories","Q0e","J0e","Y0e","X0e","ZT","QT","JT","e5","t5","n5","r5","a5","i5","o5","s5","u5","l5","c5","d5","f5","p5","h5","m5","g5","v5","b5","y5","C5","x5","S5","_5","E5","w5","T5","A5","N5","O5","L5","k5","I5","D5","P5","M5","R5","B5","F5","j5","$5","H5","V5","z5","q5","G5","U5","W5","K5","Y5","X5","Z5","Q5","J5","eA","tA","nA","rA","aA","iA","oA","sA","uA","lA","cA","dA","fA","pA","hA","mA","nfe","rfe","afe","tfe","ife","ofe","w7","calendarTrigger","calendarContainer","calendarContainerLeft","calendarContainerRight","calendarNav","calendarTable","calendarNavButtonPrev","calendarNavButtonNext","calendarNavButtonsNotFocusable","calendarNavButtonsHidden","calendarCellInRange","calendarCellRangeStart","calendarCellRangeEnd","calendarDate","calendarDateNotCurrent","calendarDateDisabled","calendarDateToday","calendarDateSelected","calendarDueDate","calendarDueDateIconContainer","calendarDueDateIcon","calendarDateInRange","calendarDueDateSelected","legend","legendItem","legendKey","dueDateLegendKey","tableFullWidth","wrapperContainer","lfe","isCalendarVisible","calendarTriggerRef","wrapperContainerRef","onShowCalendar","calendarInSheet","cfe","vA","Hl","bA","T7","Intl","DateTimeFormat","timeZone","dfe","ffe","day","year","yA","mfe","calendar","selectedDate","parseDate","formatDate","formatterSkeleton","sheetContainerRef","dateTimeFormatter","pfe","_formatDate","_parseDate","hfe","START","END","A7","gfe","N7","toLocaleDateString","xA","SA","_A","EA","wA","TA","AA","NA","OA","LA","kA","yfe","IA","DA","O7","menuContainerClassName","menuListClassName","menuItemClassName","menuMobileHeaderClassName","menuButtonClassName","menuLabelClassName","skipButtonFocus","ariaLabelledby","renderButtonContent","showUnselect","buttonError","buttonActive","buttonErrorActive","affordanceIcon","labelActive","selectBox","bfe","xfe","Cfe","L7","Sfe","k7","I7","_fe","Efe","wfe","D7","supportingText","P7","PA","M7","hideSpinButton","MA","RA","BA","FA","jA","$A","HA","VA","zA","qA","GA","a2","sysSizeMediaXs","thumbnail","menuButton","menuButtonContent","telephoneInputRtlStyles","menuWidth","Tfe","Afe","R7","phoneFormatter","exampleGenerator","generate","nationalNumber","phoneRegion","Nfe","Ofe","countryOptions","flagId","codeId","countryPhoneCode","Lfe","kfe","inputLabel","menuLabel","menuId","menuClassName","onPhoneCodeChange","phoneCode","unselectLabel","phoneFormat","isPhoneMetaDataLoaded","Ife","Dfe","formatType","B7","Pfe","F7","j7","Mfe","$7","UA","WA","KA","YA","XA","ZA","QA","JA","eN","tN","nN","rN","aN","iN","oN","sN","H7","radioGroupBase","radioBase","radioGroupLabel","radioLabel","inputWithError","centeredLabelCheckIconContainer","centeredLabelInput","errorCenteredLabelInput","groupHelperText","Rfe","jfe","checkIconCssVals","$fe","Ffe","centeredLabel","Bfe","Hfe","uN","zfe","Vfe","qfe","msgId","Gfe","lN","cN","Ufe","radioLabelClassName","V7","Wfe","z7","q7","Kfe","G7","U7","Yfe","W7","Zfe","checkbox","Qfe","K7","npe","rpe","validations","inputName","epe","ape","displayCondition","triggerFieldId","Jfe","ipe","i2","Y7","X7","dpe","hpe","required","ope","spe","inputType","fpe","ppe","gpe","ype","formValidations","rerender","setErrors","bpe","mpe","vpe","handleSubmit","getFormData","Z7","requestUrl","actionUrl","inputFieldsCollection","formCta","formValidationMessage","formSubmissionInProgressText","formSubmissionCriticalErrorMessage","onFormSubmit","hasShadow","validationMode","Cpe","xpe","apis","pardot","saveFormData","b0e","m0e","x0e","formHandlerLocation","webformurl","gclid","S0e","formValidation","formData","countryLang","callbacks","y0e","leadSource","formName","onInit","onSubmit","C0e","noValidate","o2","Npe","Q7","Ope","Lpe","J7","listTitle","titleHref","showTitleArrows","listTitleButtonProps","listProps","shouldRenderAsAccordion","expanded","buttonID","regionID","Fue","$ue","eM","dN","tM","rM","fN","aM","mediaGallery","iM","buttonRow","featureImage","headlineImage","numberOfColumns","headerCol","disclosureCol","column1","column2","column3","nM","Vpe","showImage","zpe","qpe","lM","mN","cM","backgroundAsset","Minimal","heroContent","gridConfig","heroMedia","Default","DefaultXL","Featured","FeaturedMinimal","FeaturedQuantumLeap","Gpe","Wpe","Kpe","layoutDefs","Ype","applyMediaGlow","isMediaFlushed","Xpe","summarizedImageAltText","Upe","s2","Zpe","dM","tabs","fM","gN","pM","hM","_0","QuantumLeap","gM","u2","yM","ohe","CM","activeSegment","setActiveSegment","setClickSource","tabText","URLSearchParams","urlFragment","xM","closeButtonAriaLabel","SM","l2","mhe","vhe","EM","itemId","hotspotItemButtonText","toggleHotspotItem","wM","desktopCoordinates","mobileCoordinates","hotspotItemCardContent","dhe","row","anchorOptions","cardCorner","ghe","yN","She","_he","edge","Ehe","AM","w0","d2","logos","NM","f2","logos12Col","logos10Col","Dhe","Mhe","logoThemeClassName","h2","Rhe","logoCardTheme","Bhe","Fhe","jhe","whe","contentCol","isGraphicVariant","Vl","$he","m2","Phe","Lhe","text12Col","text10Col","khe","Ohe","Ihe","hs","Hhe","OM","showCloseButton","bannerId","bannerPreferences","Vhe","qhe","Ghe","g2","Uhe","kM","offerTitle","offerTitleTag","offerTitleSize","availability","arrowPosition","v2","hv","Whe","Khe","Yhe","b2","IM","Vr","Zhe","Jhe","Xhe","eme","tme","nme","rme","DM","ame","ime","ome","PM","lme","actionCard","isCompactThemeLayout","y2","Mn","dme","productName","productNameTag","productNameSize","pricingCardFeatures","secondaryPricing","pricingCardItemHeadline","pme","xN","hme","mme","row1","row2","ume","vme","gme","yme","xme","SN","Sme","C2","collection2","rowStackingBehavior","rowOffset","currentRow","_me","sme","Tme","Ame","collection1","collection3","collection4","numberRowTheme","collection1Disclosure","Nme","PricingCardItem","ButtonGroup","HeaderWithImage","Data","Header","Mu","colgroup","yr","rowIdx","rowType","cell","idx","handleOnBlur","scope","additionalEmptyCells","colspan","isRepeatingHeader","colSpan","MM","Ime","x2","kme","S2","_2","pricingCardItem","Lme","T0","E2","isExpanded","isHiddenRow","isInert","headerRow","dataRow","cells","Mme","Rme","innerProps","Bme","Fme","jme","$me","isWithinMainCategoryHeader","TableCellContent","cellType","isWithinColGroupRow","Hme","truncateButtonProps","numberOfHiddenRows","handleToggleView","TruncateButton","ariaTextMore","Vme","shouldTruncateTable","isLastVisibleRow","TableRow","zme","numberOfVisibleRows","hiddenFirstCellTabIndex","TableCell","_N","RM","BM","Wme","FM","rows","rowNumber","table","qme","Gme","Lo","Yme","Xme","Zme","Qme","w2","tableTheme","disclosureTypeInside","disclosureTypeOutside","age","jM","tge","pageSegCtrlHeightRef","componentPinnedStatus","lge","cge","dge","fge","isScrollable","hasHeadline","$M","contentLength","EN","wN","isMobileViewport","TN","AN","alwaysDisplay","hideOnScroll","NN","pge","HM","applyScroll","itemSpotlightOption","refCallback","elScrollProgressInner","elScrollProgressOuter","viewportHeightOffset","Jme","segmentDefs","updateSegmentAnimateStateOnScroll","ige","sge","textSectionElHeight","textSectionEl","uge","mediaCollection","textGroupCollection","mediaDescription","oge","VM","ON","mge","gge","T2","A0","A2","imageRightPosition","isSplitFlow","topHeadline","hge","vge","bge","zM","yge","N2","N0","O2","startRow","endRow","Cge","gs","qM","subtitle","Sge","GM","ko","Nge","Ege","Tge","wge","Age","ep","L2","tableId","Lge","Ige","actionbanner","cardcarousel","cardwrappedcontentsection","featurecolumntype","featurenavigation","logostripsection","logotickersection","logotype","offercardtype","pricingcardhorizontaltype","pricingcardtablerebrand","pricingmegacard","pricingmegacardrebrand","productscrolltype","relatedcontenttype","splitsectiontype","stacksectiontype","tablerebrand","textsectiontype","Dge","Pge","Rge","UM","jge","WM","_o","Hge","Vge","tab1","tab2","tab3","tab4","zge","anchorLinkText1","anchorLinkUrl1","anchorLinkText2","anchorLinkUrl2","currTabText","stickyPositionTop","tabClickHandler","Mge","Bge","firstElementChild","$ge","activeTab","contentTypeId","componentReference","Fge","qge","YM","Gge","XM","k2","I2","Kge","QM","textPosition","backgroundImageMediaFrame","D2","eR","kN","tR","P2","e1e","PN","t1e","rR","Br","n1e","r1e","a1e","i1e","MN","RN","aR","o1e","O0","l1e","u1e","s1e","f1e","iR","optionValue","oR","transformType","transformFunction","sR","gridSystemOptionPrefixMap","gridSystemOptionValueTransformMap","getGridSystemResponsiveClasses","gridSystemOptions","p1e","h1e","g1e","v1e","uR","C1e","grid","x1e","lR","cR","S1e","BN","_1e","E1e","zl","FN","w1e","T1e","dR","N1e","O1e","fR","pR","M2","R2","jsFullUrl","baseURI","initialViewport","jN","Ru","Rs","$N","HN","hR","mR","gR","Ro","H1e","V1e","vR","Ft","B2","F2","gv","Ht","iu","L0","Nr","K1e","W1e","Y1e","X1e","Z1e","k0","zN","ou","Tn","qN","GN","UN","Q1e","J1e","WN","KN","eve","tve","un","Wo","j2","$2","yR","CR","xR","SR","_R","ER","wR","TR","AR","NR","OR","LR","kR","Es","H2","I0","getCodePoint","xmlReplacer","rve","ave","IR","ive","DR","Ku","yu","uve","lve","cve","PR","dve","fve","YN","hve","bve","xve","Cve","mve","gve","pve","vve","yve","Sve","_ve","Eve","MR","vv","bv","V2","RR","BR","Gr","jR","$R","rp","$ve","VR","zR","Uve","ap","Qve","qR","Jr","Io","Kve","Yve","Xve","Zve","Jve","ebe","XN","ZN","QN","Yu","ibe","JN","obe","z2","sbe","ube","lbe","dbe","fbe","e8","t8","n8","hbe","r8","a8","q2","mbe","GR","UR","G2","WR","KR","vbe","bbe","ybe","Cbe","xbe","Do","wo","yv","Ebe","Tbe","wbe","Abe","Sbe","Nbe","YR","Obe","XR","U2","Lbe","kbe","ZR","W2","QR","Pbe","Mbe","Xu","Rbe","Fbe","jbe","$be","Hbe","Vbe","Dn","qbe","Gbe","Ybe","JR","Xbe","Zbe","tye","nye","eB","aye","iye","oye","sye","uye","lye","dye","i8","D0","fye","K2","s8","u8","l8","tB","nB","Mye","Rye","su","P0","xye","Hye","zye","Y2","c8","rB","d8","aB","e2e","t2e","s2e","u2e","f8","i2e","r2e","a2e","Cv","p8","g2e","iB","b2e","y2e","C2e","sp","f2e","h2e","m2e","S2e","p2e","x2e","_2e","xv","v2e","Bu","T2e","A2e","N2e","O2e","Eo","lB","L2e","cB","I2e","m8","dB","fB","pB","hB","F2e","j2e","$2e","H2e","mB","V2e","z2e","q2e","G2e","W2e","K2e","Sv","g8","lCe","oCe","sCe","uCe","dCe","pCe","cCe","fCe","gB","Xn","vB","P1e","_Ce","yCe","bB","ACe","yB","onCanPlayThrough","disableRemotePlayback","preload","disablePictureInPicture","CB","OCe","xB","SB","Cu","tabletVideoCollection","desktopVideoCollection","imageUrlTablet","imageUrlBase","altText","disableMediaControl","videoSourceCollection","isViewportTypeMismatch","setViewportTypeObj","xCe","viewportTypeObj","SCe","gCe","ECe","wCe","forwardedVideoRef","hasMultipleVideoSources","aCe","setCurrentTime","getCurrentTime","getReadyState","getIsSeeking","loadVideoAndResetState","seeking","vCe","bCe","onVideoFullyLoaded","CCe","mCe","kCe","RCe","y8","BCe","qCe","_B","EB","wB","GCe","UCe","KCe","YCe","TB","QCe","AB","NB","OB","JCe","C8","exe","txe","Ul","x8","nxe","rxe","LB","ixe","oxe","uxe","sxe","kB","IB","DB","PB","MB","RB","Zn","BB","lxe","Cxe","gxe","FB","Exe","jB","$B","Txe","HB","VB","xu","S8","bxe","yxe","pxe","xxe","Sxe","dxe","hxe","mxe","vxe","fxe","zB","qB","M0","Lxe","kxe","UB","Dxe","Pxe","Mxe","selectedTabText","Rxe","Hxe","$xe","persisted","jxe","aboutToExit","WB","_8","KB","isHeaderInView","videoAnimation","videoControlsRef","Kxe","Wxe","du","Xxe","E8","w8","Zxe","reEntry","YB","Z2","R0","XB","tab1Link","tab1Text","tab2Link","tab2Text","segmentControlGroupLabel","selectedTab","mediaRail","aq","Oq","Fxe","headerControls","segmentControlGroupControls","T8","Qxe","Uxe","Bxe","Q2","defaultDispose","StrongCache","newest","oldest","getNode","_WeakRef","WeakRef","deref","_WeakMap","_FinalizationRegistry","FinalizationRegistry","WeakCache","unfinalizedNodes","finalizationScheduled","finalize","keyRef","registry","deleteNode","scheduleFinalization","fnToStr","previousComparisons","equal","aTag","previouslyCompared","aKeys","definedKeys","bKeys","keyCount","aIterator","isMap","aKey","aValue","byteLength","aCode","full","nativeCodeSuffix","isDefinedKey","bSet","MAX_ARRAY_LENGTH","MAX_RECURSIVE_DEPTH","formatValue","seenValues","previouslySeenValues","isJSONable","jsonValue","remaining","formatArray","getObjectTag","formatObject","formatObjectValue","startToken","endToken","QueryDocumentKeys","kindValues","isNode","maybeNode","maybeKind","OperationTypeNode","dedentBlockStringLines","lines","_firstNonEmptyLine2","commonIndent","MAX_SAFE_INTEGER","firstNonEmptyLine","lastNonEmptyLine","_firstNonEmptyLine","leadingWhitespace","printBlockString","escapedValue","isSingleLine","forceLeadingNewLine","hasTrailingTripleQuotes","hasTrailingQuote","hasTrailingSlash","forceTrailingNewline","printAsMultipleLines","minimize","skipLeadingNewLine","isDigit","isLetter","isNameStart","isNameContinue","Kind","extendStatics","__rest","__awaiter","_arguments","generator","step","__generator","verb","pack","SuppressedError","__webpack_module_cache__","__webpack_require__","cachedModule","__webpack_modules__","chunkId","miniCssF","needAttach","scripts","charset","onScriptComplete","doneFns","installedChunks","installedChunkData","errorType","realSrc","webpackJsonpCallback","parentChunkLoadingFunction","chunkIds","moreModules","runtime","chunkLoadingGlobal","__webpack_public_path__","webpackPublicPath"],"sourceRoot":""}