@volvo-cars/css 0.9.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -0
- package/dist/UNSTABLE_styles.cjs +2 -0
- package/dist/UNSTABLE_styles.cjs.map +1 -0
- package/dist/UNSTABLE_styles.d.ts +11 -0
- package/dist/UNSTABLE_styles.js +2 -0
- package/dist/UNSTABLE_styles.js.map +1 -0
- package/dist/chunk-NCFF3HX2.js +2 -0
- package/dist/{chunk-7GV2RAWW.js.map → chunk-NCFF3HX2.js.map} +0 -0
- package/dist/chunk-ULL7MQIG.js +2 -0
- package/dist/chunk-ULL7MQIG.js.map +1 -0
- package/dist/chunk-XLDOXGKL.js +2 -0
- package/dist/chunk-XLDOXGKL.js.map +1 -0
- package/dist/css/v0/styles.8f1da20d.css +1 -0
- package/dist/css/v0/styles_lg.21382e75.css +1 -0
- package/dist/css/v0/{styles_md.c4264ddd.css → styles_md.6f6f769c.css} +1 -1
- package/dist/css/v0/{tokens.30cd27f4.css → tokens.cef80cff.css} +1 -1
- package/dist/imports.json +4 -4
- package/dist/links.cjs +1 -1
- package/dist/links.js +1 -1
- package/dist/links.server.cjs +1 -1
- package/dist/links.server.js +1 -1
- package/dist/styles.css +1 -1
- package/dist/styles.d.ts +2 -147
- package/dist/styles.js +1 -1
- package/dist/styles.js.map +1 -1
- package/dist/styles.json +6 -0
- package/dist/styles_all-media.css +1 -1
- package/dist/styles_lg.css +1 -1
- package/dist/styles_md.css +1 -1
- package/dist/tokens.css +1 -1
- package/dist/unstable_styles.css +1 -1
- package/dist/utils.cjs +1 -1
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.js +1 -1
- package/dist/utils.js.map +1 -1
- package/package.json +20 -2
- package/dist/chunk-7GV2RAWW.js +0 -2
- package/dist/css/v0/styles.72e1c057.css +0 -1
- package/dist/css/v0/styles_lg.eaf41b08.css +0 -1
package/README.md
CHANGED
|
@@ -544,6 +544,8 @@ console.assert(vtokens.fontHeading1Size === 'var(--v-font-heading-1-size)');
|
|
|
544
544
|
document.body.style.font = vtokens.font16;
|
|
545
545
|
```
|
|
546
546
|
|
|
547
|
+
### clsx
|
|
548
|
+
|
|
547
549
|
To merge or apply class names conditionally you can use the `clsx` utility.
|
|
548
550
|
|
|
549
551
|
```tsx
|
|
@@ -556,3 +558,52 @@ import vss from '@volvo-cars/css/styles';
|
|
|
556
558
|
Button
|
|
557
559
|
</button>;
|
|
558
560
|
```
|
|
561
|
+
|
|
562
|
+
### Unstable styles
|
|
563
|
+
|
|
564
|
+
To simplify working with TypeScript even further, we ship a version of styles
|
|
565
|
+
that uses `Proxies` to merge and compose class names without having to manually
|
|
566
|
+
merge classes or import `clsx` seperately
|
|
567
|
+
|
|
568
|
+
```ts
|
|
569
|
+
import vss from '@volvo-cars/css/UNSTABLE_styles';
|
|
570
|
+
|
|
571
|
+
console.assert(`${vss.bgAccentBlue.title24}` === 'bg-accent-blue title-24');
|
|
572
|
+
console.assert(vss.body16.bgAccentBlue.toString() === 'body-16 bg-accent-blue');
|
|
573
|
+
```
|
|
574
|
+
|
|
575
|
+
> ⚠️ Calling `toString()` is required to convert the object to a string.
|
|
576
|
+
> Template literals (\`\`) and React `className` prop do this by default, so there is no need to manually call `toString()`.
|
|
577
|
+
|
|
578
|
+
Each accessed property returns another instance of `vss` allowing us to
|
|
579
|
+
infinitely nest styles until `toString()` is invoked.
|
|
580
|
+
|
|
581
|
+
To merge or apply class names conditionally you can use the `with` method.
|
|
582
|
+
|
|
583
|
+
`with` is a copy of the [clsx](#clsx) utility mentioned above.
|
|
584
|
+
|
|
585
|
+
```tsx
|
|
586
|
+
import vss from '@volvo-cars/css/UNSTABLE_styles';
|
|
587
|
+
|
|
588
|
+
<button
|
|
589
|
+
className={vss.bgFeedbackGreen
|
|
590
|
+
.with('foo', false && 'bar')
|
|
591
|
+
.with(vss.bgPrimary.bgTransparent)}
|
|
592
|
+
>
|
|
593
|
+
Button
|
|
594
|
+
</button>;
|
|
595
|
+
```
|
|
596
|
+
|
|
597
|
+
We can even nest `with` calls
|
|
598
|
+
|
|
599
|
+
```tsx
|
|
600
|
+
<button
|
|
601
|
+
className={vss.bgFeedbackGreen
|
|
602
|
+
.with('foo', 'bar')
|
|
603
|
+
.with(
|
|
604
|
+
vss.bgFeedbackGreen.with('foo', 'bar').with(vss.bgPrimary.bgTransparent)
|
|
605
|
+
)}
|
|
606
|
+
>
|
|
607
|
+
Button
|
|
608
|
+
</button>
|
|
609
|
+
```
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var o=Object.defineProperty;var S=Object.getOwnPropertyDescriptor;var d=Object.getOwnPropertyNames;var N=Object.prototype.hasOwnProperty;var b=(t,e)=>{for(var s in e)o(t,s,{get:e[s],enumerable:!0})},x=(t,e,s,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let a of d(e))!N.call(t,a)&&a!==s&&o(t,a,{get:()=>e[a],enumerable:!(r=S(e,a))||r.enumerable});return t};var A=t=>x(o({},"__esModule",{value:!0}),t);var h={};b(h,{default:()=>V});module.exports=A(h);function i(t){let e,s,r="";if(typeof t=="string"||typeof t=="number")r+=t;else if(t&&typeof t=="object"&&"_classes"in t)r+=t.toString();else if(typeof t=="object")if(Array.isArray(t))for(e=0;e<t.length;e++)t[e]&&(s=i(t[e]))&&(r&&(r+=" "),r+=s);else for(e in t)t[e]&&(r&&(r+=" "),r+=e);return r}function f(...t){let e=0,s,r,a="";for(;e<t.length;)(s=t[e++])&&(r=i(s))&&(a&&(a+=" "),a+=r);return a}var m="v0",c=`volvo_${m}`;function l(t){return t.replace(/([0-9])([A-Z])/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase()}function w(t){return t.startsWith("UNSTABLE_")?"UNSTABLE_"+l(t.replace("UNSTABLE_","")):l(t)}var v=new Proxy(Object.create({root:c}),{get(t,e){return e in t?t[e]:w(e)}}),u=v;function g(t=""){let e={_classes:new Set([t]),_add(s){e._classes.add(s),e._lastClassName=s},_lastClassName:t};return e.toString=function(){return[...e._classes].join(" ").trim()},e}var T=new Proxy(g(),{get:function t(...e){let[s,r]=e||[];if(typeof r=="symbol")return;if(r==="toString"||r==="valueOf")return Reflect.get(...e);if(r==="with")return(...p)=>{let n=s._proxy?s:y(t),C=f(n.toString(),...p);for(let _ of C.split(" "))n._add(_);return n._proxy};let a=u[r];return s._proxy?(s._add(a),s._proxy):y(t,a)._proxy}}),V=T;function y(t,e){let s=g(e);return s._proxy=new Proxy(s,{get:t}),s}0&&(module.exports={});
|
|
2
|
+
//# sourceMappingURL=UNSTABLE_styles.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/UNSTABLE_styles.ts","../src/clsx.ts","../src/root-class-name.js","../src/to-kebab-case.ts","../src/styles.ts"],"sourcesContent":["import { clsx } from './clsx';\nimport classNames from './styles';\n\ntype BaseStylesChain = {\n [key in keyof typeof classNames]: Styles;\n};\n\ntype ClsxClassValue = (Parameters<typeof clsx>[0] | Styles)[];\n\ntype Styles = BaseStylesChain &\n string & { with: (...classes: ClsxClassValue) => Styles };\n\ntype PrivateTarget = Styles & {\n _classes: Set<string>;\n _add: (value: string) => void;\n _lastClassName: string;\n _proxy?: PrivateTarget;\n};\n\nfunction createTarget(_className = ''): PrivateTarget {\n const target = {\n _classes: new Set([_className]),\n _add(value: string) {\n target._classes.add(value);\n target._lastClassName = value;\n },\n _lastClassName: _className,\n } as PrivateTarget;\n\n target.toString = function () {\n return [...target._classes].join(' ').trim();\n };\n\n return target;\n}\n\nconst chain: Styles = new Proxy(createTarget(), {\n get: function get(...args): Styles {\n let [target, key] = args || [];\n\n if (typeof key === 'symbol') {\n //@ts-ignore\n return;\n }\n\n if (key === 'toString' || key === 'valueOf') {\n return Reflect.get(...args);\n }\n\n if (key === 'with') {\n //@ts-ignore\n return (...classes: ClsxClassValue) => {\n const currentTarget = target._proxy\n ? target\n : createTargetAndAssignProxy(get);\n\n const newClasses = clsx(currentTarget.toString(), ...classes);\n for (const newClass of newClasses.split(' ')) {\n currentTarget._add(newClass);\n }\n return currentTarget._proxy;\n };\n }\n\n const className = classNames[key];\n\n if (target._proxy) {\n target._add(className);\n return target._proxy;\n }\n\n return createTargetAndAssignProxy(get, className)._proxy as Styles;\n },\n});\n\nexport default chain;\n\nfunction createTargetAndAssignProxy(get: any, className?: string) {\n const target = createTarget(className);\n target._proxy = new Proxy(target, { get });\n return target;\n}\n","/*\nMIT License\n\nCopyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\ntype ClassValue =\n | ClassArray\n | ClassDictionary\n | string\n | number\n | null\n | boolean\n | undefined;\n\ninterface ClassDictionary {\n [id: string]: unknown;\n}\n\ninterface ClassArray extends Array<ClassValue> {}\n\nfunction toVal(mix: NonNullable<ClassValue>) {\n let k: string | number,\n y: string,\n str = '';\n\n if (typeof mix === 'string' || typeof mix === 'number') {\n str += mix;\n } else if (mix && typeof mix === 'object' && '_classes' in mix) {\n str += mix.toString();\n } else if (typeof mix === 'object') {\n if (Array.isArray(mix)) {\n for (k = 0; k < mix.length; k++) {\n if (mix[k]) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n if ((y = toVal(mix[k]!))) {\n str && (str += ' ');\n str += y;\n }\n }\n }\n } else {\n for (k in mix) {\n if (mix[k]) {\n str && (str += ' ');\n str += k;\n }\n }\n }\n }\n\n return str;\n}\n\nexport function clsx(...classes: ClassValue[]): string {\n let i = 0;\n let tmp: ClassValue;\n let x: string;\n let str = '';\n while (i < classes.length) {\n if ((tmp = classes[i++])) {\n if ((x = toVal(tmp))) {\n str && (str += ' ');\n str += x;\n }\n }\n }\n return str;\n}\n","// Bump this version for any backward incompatible changes to the\n// CSS itself, such as if something would break if several versions\n// of the CSS are applied to the same elements.\nexport const cssVersion = 'v0';\n\nexport const rootClassName = `volvo_${cssVersion}`;\n","export function toKebabCase(x: string) {\n return x\n .replace(/([0-9])([A-Z])/g, '$1-$2')\n .replace(/([a-z])([A-Z0-9])/g, '$1-$2')\n .toLowerCase();\n}\n","import { rootClassName } from './root-class-name';\nimport { toKebabCase } from './to-kebab-case';\n\nexport interface ClassNames {\n [key: string]: string;\n}\n\nfunction toClassName(key: string) {\n if (key.startsWith('UNSTABLE_')) {\n return 'UNSTABLE_' + toKebabCase(key.replace('UNSTABLE_', ''));\n }\n return toKebabCase(key);\n}\n\nconst vss = new Proxy(Object.create({ root: rootClassName }), {\n get(target, key: string) {\n if (key in target) {\n return target[key];\n }\n return toClassName(key);\n },\n});\n\nexport default vss;\n"],"mappings":"4ZAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,aAAAE,IAAA,eAAAC,EAAAH,GC2BA,SAASI,EAAMC,EAA8B,CAC3C,IAAIC,EACFC,EACAC,EAAM,GAER,GAAI,OAAOH,GAAQ,UAAY,OAAOA,GAAQ,SAC5CG,GAAOH,UACEA,GAAO,OAAOA,GAAQ,UAAY,aAAcA,EACzDG,GAAOH,EAAI,SAAS,UACX,OAAOA,GAAQ,SACxB,GAAI,MAAM,QAAQA,CAAG,EACnB,IAAKC,EAAI,EAAGA,EAAID,EAAI,OAAQC,IACtBD,EAAIC,KAEDC,EAAIH,EAAMC,EAAIC,EAAG,KACpBE,IAAQA,GAAO,KACfA,GAAOD,OAKb,KAAKD,KAAKD,EACJA,EAAIC,KACNE,IAAQA,GAAO,KACfA,GAAOF,GAMf,OAAOE,CACT,CAEO,SAASC,KAAQC,EAA+B,CACrD,IAAIC,EAAI,EACJC,EACAC,EACAL,EAAM,GACV,KAAOG,EAAID,EAAQ,SACZE,EAAMF,EAAQC,QACZE,EAAIT,EAAMQ,CAAG,KAChBJ,IAAQA,GAAO,KACfA,GAAOK,GAIb,OAAOL,CACT,CCvEO,IAAMM,EAAa,KAEbC,EAAgB,SAASD,ICL/B,SAASE,EAAYC,EAAW,CACrC,OAAOA,EACJ,QAAQ,kBAAmB,OAAO,EAClC,QAAQ,qBAAsB,OAAO,EACrC,YAAY,CACjB,CCEA,SAASC,EAAYC,EAAa,CAChC,OAAIA,EAAI,WAAW,WAAW,EACrB,YAAcC,EAAYD,EAAI,QAAQ,YAAa,EAAE,CAAC,EAExDC,EAAYD,CAAG,CACxB,CAEA,IAAME,EAAM,IAAI,MAAM,OAAO,OAAO,CAAE,KAAMC,CAAc,CAAC,EAAG,CAC5D,IAAIC,EAAQJ,EAAa,CACvB,OAAIA,KAAOI,EACFA,EAAOJ,GAETD,EAAYC,CAAG,CACxB,CACF,CAAC,EAEMK,EAAQH,EJJf,SAASI,EAAaC,EAAa,GAAmB,CACpD,IAAMC,EAAS,CACb,SAAU,IAAI,IAAI,CAACD,CAAU,CAAC,EAC9B,KAAKE,EAAe,CAClBD,EAAO,SAAS,IAAIC,CAAK,EACzBD,EAAO,eAAiBC,CAC1B,EACA,eAAgBF,CAClB,EAEA,OAAAC,EAAO,SAAW,UAAY,CAC5B,MAAO,CAAC,GAAGA,EAAO,QAAQ,EAAE,KAAK,GAAG,EAAE,KAAK,CAC7C,EAEOA,CACT,CAEA,IAAME,EAAgB,IAAI,MAAMJ,EAAa,EAAG,CAC9C,IAAK,SAASK,KAAOC,EAAc,CACjC,GAAI,CAACJ,EAAQK,CAAG,EAAID,GAAQ,CAAC,EAE7B,GAAI,OAAOC,GAAQ,SAEjB,OAGF,GAAIA,IAAQ,YAAcA,IAAQ,UAChC,OAAO,QAAQ,IAAI,GAAGD,CAAI,EAG5B,GAAIC,IAAQ,OAEV,MAAO,IAAIC,IAA4B,CACrC,IAAMC,EAAgBP,EAAO,OACzBA,EACAQ,EAA2BL,CAAG,EAE5BM,EAAaC,EAAKH,EAAc,SAAS,EAAG,GAAGD,CAAO,EAC5D,QAAWK,KAAYF,EAAW,MAAM,GAAG,EACzCF,EAAc,KAAKI,CAAQ,EAE7B,OAAOJ,EAAc,MACvB,EAGF,IAAMK,EAAYC,EAAWR,GAE7B,OAAIL,EAAO,QACTA,EAAO,KAAKY,CAAS,EACdZ,EAAO,QAGTQ,EAA2BL,EAAKS,CAAS,EAAE,MACpD,CACF,CAAC,EAEME,EAAQZ,EAEf,SAASM,EAA2BL,EAAUS,EAAoB,CAChE,IAAMZ,EAASF,EAAac,CAAS,EACrC,OAAAZ,EAAO,OAAS,IAAI,MAAMA,EAAQ,CAAE,IAAAG,CAAI,CAAC,EAClCH,CACT","names":["UNSTABLE_styles_exports","__export","UNSTABLE_styles_default","__toCommonJS","toVal","mix","k","y","str","clsx","classes","i","tmp","x","cssVersion","rootClassName","toKebabCase","x","toClassName","key","toKebabCase","vss","rootClassName","target","styles_default","createTarget","_className","target","value","chain","get","args","key","classes","currentTarget","createTargetAndAssignProxy","newClasses","clsx","newClass","className","styles_default","UNSTABLE_styles_default"]}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { clsx } from './clsx';
|
|
2
|
+
import classNames from './styles';
|
|
3
|
+
type BaseStylesChain = {
|
|
4
|
+
[key in keyof typeof classNames]: Styles;
|
|
5
|
+
};
|
|
6
|
+
type ClsxClassValue = (Parameters<typeof clsx>[0] | Styles)[];
|
|
7
|
+
type Styles = BaseStylesChain & string & {
|
|
8
|
+
with: (...classes: ClsxClassValue) => Styles;
|
|
9
|
+
};
|
|
10
|
+
declare const chain: Styles;
|
|
11
|
+
export default chain;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{a as l}from"./chunk-ULL7MQIG.js";import"./chunk-Q6P47KLU.js";import{a as o}from"./chunk-XLDOXGKL.js";function y(s=""){let e={_classes:new Set([s]),_add(t){e._classes.add(t),e._lastClassName=t},_lastClassName:s};return e.toString=function(){return[...e._classes].join(" ").trim()},e}var u=new Proxy(y(),{get:function s(...e){let[t,r]=e||[];if(typeof r=="symbol")return;if(r==="toString"||r==="valueOf")return Reflect.get(...e);if(r==="with")return(...c)=>{let a=t._proxy?t:i(s),g=o(a.toString(),...c);for(let f of g.split(" "))a._add(f);return a._proxy};let n=l[r];return t._proxy?(t._add(n),t._proxy):i(s,n)._proxy}}),x=u;function i(s,e){let t=y(e);return t._proxy=new Proxy(t,{get:s}),t}export{x as default};
|
|
2
|
+
//# sourceMappingURL=UNSTABLE_styles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/UNSTABLE_styles.ts"],"sourcesContent":["import { clsx } from './clsx';\nimport classNames from './styles';\n\ntype BaseStylesChain = {\n [key in keyof typeof classNames]: Styles;\n};\n\ntype ClsxClassValue = (Parameters<typeof clsx>[0] | Styles)[];\n\ntype Styles = BaseStylesChain &\n string & { with: (...classes: ClsxClassValue) => Styles };\n\ntype PrivateTarget = Styles & {\n _classes: Set<string>;\n _add: (value: string) => void;\n _lastClassName: string;\n _proxy?: PrivateTarget;\n};\n\nfunction createTarget(_className = ''): PrivateTarget {\n const target = {\n _classes: new Set([_className]),\n _add(value: string) {\n target._classes.add(value);\n target._lastClassName = value;\n },\n _lastClassName: _className,\n } as PrivateTarget;\n\n target.toString = function () {\n return [...target._classes].join(' ').trim();\n };\n\n return target;\n}\n\nconst chain: Styles = new Proxy(createTarget(), {\n get: function get(...args): Styles {\n let [target, key] = args || [];\n\n if (typeof key === 'symbol') {\n //@ts-ignore\n return;\n }\n\n if (key === 'toString' || key === 'valueOf') {\n return Reflect.get(...args);\n }\n\n if (key === 'with') {\n //@ts-ignore\n return (...classes: ClsxClassValue) => {\n const currentTarget = target._proxy\n ? target\n : createTargetAndAssignProxy(get);\n\n const newClasses = clsx(currentTarget.toString(), ...classes);\n for (const newClass of newClasses.split(' ')) {\n currentTarget._add(newClass);\n }\n return currentTarget._proxy;\n };\n }\n\n const className = classNames[key];\n\n if (target._proxy) {\n target._add(className);\n return target._proxy;\n }\n\n return createTargetAndAssignProxy(get, className)._proxy as Styles;\n },\n});\n\nexport default chain;\n\nfunction createTargetAndAssignProxy(get: any, className?: string) {\n const target = createTarget(className);\n target._proxy = new Proxy(target, { get });\n return target;\n}\n"],"mappings":"4GAmBA,SAASA,EAAaC,EAAa,GAAmB,CACpD,IAAMC,EAAS,CACb,SAAU,IAAI,IAAI,CAACD,CAAU,CAAC,EAC9B,KAAKE,EAAe,CAClBD,EAAO,SAAS,IAAIC,CAAK,EACzBD,EAAO,eAAiBC,CAC1B,EACA,eAAgBF,CAClB,EAEA,OAAAC,EAAO,SAAW,UAAY,CAC5B,MAAO,CAAC,GAAGA,EAAO,QAAQ,EAAE,KAAK,GAAG,EAAE,KAAK,CAC7C,EAEOA,CACT,CAEA,IAAME,EAAgB,IAAI,MAAMJ,EAAa,EAAG,CAC9C,IAAK,SAASK,KAAOC,EAAc,CACjC,GAAI,CAACJ,EAAQK,CAAG,EAAID,GAAQ,CAAC,EAE7B,GAAI,OAAOC,GAAQ,SAEjB,OAGF,GAAIA,IAAQ,YAAcA,IAAQ,UAChC,OAAO,QAAQ,IAAI,GAAGD,CAAI,EAG5B,GAAIC,IAAQ,OAEV,MAAO,IAAIC,IAA4B,CACrC,IAAMC,EAAgBP,EAAO,OACzBA,EACAQ,EAA2BL,CAAG,EAE5BM,EAAaC,EAAKH,EAAc,SAAS,EAAG,GAAGD,CAAO,EAC5D,QAAWK,KAAYF,EAAW,MAAM,GAAG,EACzCF,EAAc,KAAKI,CAAQ,EAE7B,OAAOJ,EAAc,MACvB,EAGF,IAAMK,EAAYC,EAAWR,GAE7B,OAAIL,EAAO,QACTA,EAAO,KAAKY,CAAS,EACdZ,EAAO,QAGTQ,EAA2BL,EAAKS,CAAS,EAAE,MACpD,CACF,CAAC,EAEME,EAAQZ,EAEf,SAASM,EAA2BL,EAAUS,EAAoB,CAChE,IAAMZ,EAASF,EAAac,CAAS,EACrC,OAAAZ,EAAO,OAAS,IAAI,MAAMA,EAAQ,CAAE,IAAAG,CAAI,CAAC,EAClCH,CACT","names":["createTarget","_className","target","value","chain","get","args","key","classes","currentTarget","createTargetAndAssignProxy","newClasses","clsx","newClass","className","styles_default","UNSTABLE_styles_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
var t={"font-face.css":"css/v0/font-face.05a7ed4c.css","styles.css":"css/v0/styles.8f1da20d.css","styles_hover.css":"css/v0/styles_hover.e7965925.css","styles_lg.css":"css/v0/styles_lg.21382e75.css","styles_md.css":"css/v0/styles_md.6f6f769c.css","tokens.css":"css/v0/tokens.cef80cff.css"};var v={hover:"(hover: hover)",md:"(min-width: 30rem)",lg:"(min-width: 64rem)"};export{t as a,v as b};
|
|
2
|
+
//# sourceMappingURL=chunk-NCFF3HX2.js.map
|
|
File without changes
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import{a as o}from"./chunk-Q6P47KLU.js";var e="v0",s=`volvo_${e}`;function n(t){return t.startsWith("UNSTABLE_")?"UNSTABLE_"+o(t.replace("UNSTABLE_","")):o(t)}var a=new Proxy(Object.create({root:s}),{get(t,r){return r in t?t[r]:n(r)}}),f=a;export{f as a};
|
|
2
|
+
//# sourceMappingURL=chunk-ULL7MQIG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/root-class-name.js","../src/styles.ts"],"sourcesContent":["// Bump this version for any backward incompatible changes to the\n// CSS itself, such as if something would break if several versions\n// of the CSS are applied to the same elements.\nexport const cssVersion = 'v0';\n\nexport const rootClassName = `volvo_${cssVersion}`;\n","import { rootClassName } from './root-class-name';\nimport { toKebabCase } from './to-kebab-case';\n\nexport interface ClassNames {\n [key: string]: string;\n}\n\nfunction toClassName(key: string) {\n if (key.startsWith('UNSTABLE_')) {\n return 'UNSTABLE_' + toKebabCase(key.replace('UNSTABLE_', ''));\n }\n return toKebabCase(key);\n}\n\nconst vss = new Proxy(Object.create({ root: rootClassName }), {\n get(target, key: string) {\n if (key in target) {\n return target[key];\n }\n return toClassName(key);\n },\n});\n\nexport default vss;\n"],"mappings":"wCAGO,IAAMA,EAAa,KAEbC,EAAgB,SAASD,ICEtC,SAASE,EAAYC,EAAa,CAChC,OAAIA,EAAI,WAAW,WAAW,EACrB,YAAcC,EAAYD,EAAI,QAAQ,YAAa,EAAE,CAAC,EAExDC,EAAYD,CAAG,CACxB,CAEA,IAAME,EAAM,IAAI,MAAM,OAAO,OAAO,CAAE,KAAMC,CAAc,CAAC,EAAG,CAC5D,IAAIC,EAAQJ,EAAa,CACvB,OAAIA,KAAOI,EACFA,EAAOJ,GAETD,EAAYC,CAAG,CACxB,CACF,CAAC,EAEMK,EAAQH","names":["cssVersion","rootClassName","toClassName","key","toKebabCase","vss","rootClassName","target","styles_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
function s(e){let n,r,t="";if(typeof e=="string"||typeof e=="number")t+=e;else if(e&&typeof e=="object"&&"_classes"in e)t+=e.toString();else if(typeof e=="object")if(Array.isArray(e))for(n=0;n<e.length;n++)e[n]&&(r=s(e[n]))&&(t&&(t+=" "),t+=r);else for(n in e)e[n]&&(t&&(t+=" "),t+=n);return t}function a(...e){let n=0,r,t,l="";for(;n<e.length;)(r=e[n++])&&(t=s(r))&&(l&&(l+=" "),l+=t);return l}export{a};
|
|
2
|
+
//# sourceMappingURL=chunk-XLDOXGKL.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/clsx.ts"],"sourcesContent":["/*\nMIT License\n\nCopyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\ntype ClassValue =\n | ClassArray\n | ClassDictionary\n | string\n | number\n | null\n | boolean\n | undefined;\n\ninterface ClassDictionary {\n [id: string]: unknown;\n}\n\ninterface ClassArray extends Array<ClassValue> {}\n\nfunction toVal(mix: NonNullable<ClassValue>) {\n let k: string | number,\n y: string,\n str = '';\n\n if (typeof mix === 'string' || typeof mix === 'number') {\n str += mix;\n } else if (mix && typeof mix === 'object' && '_classes' in mix) {\n str += mix.toString();\n } else if (typeof mix === 'object') {\n if (Array.isArray(mix)) {\n for (k = 0; k < mix.length; k++) {\n if (mix[k]) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n if ((y = toVal(mix[k]!))) {\n str && (str += ' ');\n str += y;\n }\n }\n }\n } else {\n for (k in mix) {\n if (mix[k]) {\n str && (str += ' ');\n str += k;\n }\n }\n }\n }\n\n return str;\n}\n\nexport function clsx(...classes: ClassValue[]): string {\n let i = 0;\n let tmp: ClassValue;\n let x: string;\n let str = '';\n while (i < classes.length) {\n if ((tmp = classes[i++])) {\n if ((x = toVal(tmp))) {\n str && (str += ' ');\n str += x;\n }\n }\n }\n return str;\n}\n"],"mappings":"AA2BA,SAASA,EAAMC,EAA8B,CAC3C,IAAIC,EACFC,EACAC,EAAM,GAER,GAAI,OAAOH,GAAQ,UAAY,OAAOA,GAAQ,SAC5CG,GAAOH,UACEA,GAAO,OAAOA,GAAQ,UAAY,aAAcA,EACzDG,GAAOH,EAAI,SAAS,UACX,OAAOA,GAAQ,SACxB,GAAI,MAAM,QAAQA,CAAG,EACnB,IAAKC,EAAI,EAAGA,EAAID,EAAI,OAAQC,IACtBD,EAAIC,KAEDC,EAAIH,EAAMC,EAAIC,EAAG,KACpBE,IAAQA,GAAO,KACfA,GAAOD,OAKb,KAAKD,KAAKD,EACJA,EAAIC,KACNE,IAAQA,GAAO,KACfA,GAAOF,GAMf,OAAOE,CACT,CAEO,SAASC,KAAQC,EAA+B,CACrD,IAAIC,EAAI,EACJC,EACAC,EACAL,EAAM,GACV,KAAOG,EAAID,EAAQ,SACZE,EAAMF,EAAQC,QACZE,EAAIT,EAAMQ,CAAG,KAChBJ,IAAQA,GAAO,KACfA,GAAOK,GAIb,OAAOL,CACT","names":["toVal","mix","k","y","str","clsx","classes","i","tmp","x"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.volvo_v0,:where(.volvo_v0) [data-color-mode]{color:var(--v-color-foreground-primary);color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0)[data-color-mode=dark],:where(.volvo_v0) [data-color-mode=dark]{color-scheme:dark}.volvo_v0{--_v85627f:initial;font:var(--v-font-16);tab-size:4}.volvo_v0:lang(ar),.volvo_v0:lang(he){--_v85627f: }.volvo_v0:lang(bg){font-feature-settings:"locl" 0}:where(.volvo_v0) :where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100%,var(--v-font-14-size))}:where(.volvo_v0) :where(pre){white-space:break-spaces}:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{box-sizing:border-box}:where(.volvo_v0) :where(:not(progress,meter)){border-color:var(--v-color-ornament-primary);border-style:solid;border-width:0}:where(.volvo_v0 body,body.volvo_v0){min-height:100vh;min-height:100dvh;scrollbar-gutter:stable;background-color:var(--v-color-background-primary);margin:0}:where(.volvo_v0) :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(.volvo_v0) :where(button,input,ol,ul,legend,fieldset){padding:0}:where(.volvo_v0) :where(a){color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(.volvo_v0) :where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.volvo_v0) :where(img,picture,video,canvas,svg){max-width:100%}:where(.volvo_v0) :where(ol,ul){list-style:none}:where(.volvo_v0) :where(button,input:is([type=button],[type=reset],[type=submit])){-webkit-appearance:button;appearance:button;color:inherit;background-color:#0000}:where(.volvo_v0) :where(summary:is(details[class]>*,[class])){list-style:none}:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::marker,:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(.volvo_v0) :where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font:inherit}:where(.volvo_v0) :where(b,strong){font-weight:500}:where(.volvo_v0) :where(button,input,optgroup,select){line-height:1.3}:where(.volvo_v0) :where(textarea){resize:vertical}:where(.volvo_v0) :where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(.volvo_v0) [data-fluid-typography=min]{--_v17b0f5:0rem}:where(.volvo_v0) [data-fluid-typography=max]{--_v17b0f5:9rem}@media (prefers-reduced-motion:reduce){:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(.volvo_v0) :is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-section,.stack-text)>*+*{margin-top:var(--stack-gap)}:where(.volvo_v0) .stack-section>*{--stack-gap:var(--v-space-section)}:where(.volvo_v0) .stack-4>*{--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-8>*{--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-16>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-24>*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.title-20,.title-20:first-child)+:where(.body-16,.list,.micro,:is(p,ul,small):not([class])){--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-text>:where(.body-16.font-medium)+:where(.body-16,p:not([class])){--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])))+:where(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.volvo_v0) :where(.stack-text)>.statement-3+*,:where(.volvo_v0) :where(.stack-text)>.statement-3+:where(.heading-3,h3:not([class]))+*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>:where(.micro,small:not([class]))+:where(.micro,small:not([class])){--stack-gap:0rem}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])){width:var(--v-space-16);height:var(--v-space-16);-webkit-appearance:none;appearance:none;background-color:var(--v-color-background-primary);border:1px solid var(--v-color-foreground-secondary);border-radius:var(--v-radius-4);place-content:center;margin-top:.25em;transition:box-shadow .3s;display:inline-grid}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):before{width:var(--v-space-16);height:var(--v-space-16);content:"";background-color:var(--v-color-background-accent-blue);border-radius:var(--v-radius-4);opacity:0;transition:transform .1s ease-in-out,background-color .3s,outline .3s,opacity .2s}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):after{content:"";opacity:1;position:absolute}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])){border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):before{border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=checkbox]):is(.checkbox,:not([class])):after{--_v7e5a12:var(--_v85627f)-2px,-5px;width:var(--v-space-4);height:var(--v-space-8);content:"";transform:scaleX(-1)rotate(135deg)translate(var(--_v7e5a12,5px,2px));border-color:#0000;transition:border-top-color .15s linear,border-right-color .15s linear .1s}:where(.volvo_v0) :where([type=checkbox]:is(.checkbox,:not([class]))):checked:after{border-top:1px solid var(--v-color-always-white);border-right:1px solid var(--v-color-always-white)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):after{width:8px;height:8px;background-color:var(--v-color-always-white);border-radius:var(--v-radius-full);transition:transform .25s;transform:matrix(0,.001,.001,0,3,3)}:where(.volvo_v0) :where([type=radio]:is(.radio,:not([class]))):checked:after{--_v9bae6e:var(--_v85627f)-3;transform:matrix(0,1,1,0,var(--_v9bae6e,3),3)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled:after{border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled{background-color:var(--v-color-background-secondary);border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):is(:active,:checked)):enabled:before{opacity:1}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))[aria-invalid]:not([aria-invalid=false]),:is(fieldset,[role=radiogroup])[aria-invalid]:not([aria-invalid=false]) [type=radio]:is(.radio,:not([class]))):not(:disabled,:hover){border-color:var(--v-color-foreground-feedback-red);box-shadow:inset 0 0 0 1px var(--v-color-foreground-feedback-red)}:where(.volvo_v0) :where(h1:not([class])),:where(.volvo_v0) .heading-1{font:var(--v-font-heading-1)}:where(.volvo_v0) .heading-1[data-fluid-typography]{font-size:clamp(var(--v-font-heading-1-size-min),var(--_v17b0f5,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(.volvo_v0) :where(h2:not([class])),:where(.volvo_v0) .heading-2{font:var(--v-font-heading-2)}:where(.volvo_v0) .heading-2[data-fluid-typography]{font-size:clamp(var(--v-font-heading-2-size-min),var(--_v17b0f5,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(.volvo_v0) :where(h3:not([class])),:where(.volvo_v0) .heading-3{font:var(--v-font-heading-3)}:where(.volvo_v0) .heading-3[data-fluid-typography]{font-size:clamp(var(--v-font-heading-3-size-min),var(--_v17b0f5,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(.volvo_v0) :where(a[href]:not([class])),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline{color:var(--v-color-foreground-secondary);-webkit-text-decoration-line:underline;text-decoration-line:underline}:where(.volvo_v0) :where(ul,ol).list,:where(.volvo_v0) :where(ul,ol):where(:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.volvo_v0) .statement-1{font:var(--v-font-statement-1)}:where(.volvo_v0) .statement-1[data-fluid-typography]{font-size:clamp(var(--v-font-statement-1-size-min),var(--_v17b0f5),var(--v-font-statement-1-size-max))}:where(.volvo_v0) .statement-2{font:var(--v-font-statement-2)}:where(.volvo_v0) .statement-2[data-fluid-typography]{font-size:clamp(var(--v-font-statement-2-size-min),var(--_v17b0f5),var(--v-font-statement-2-size-max))}:where(.volvo_v0) .statement-3{font:var(--v-font-statement-3)}:where(.volvo_v0) .statement-3[data-fluid-typography]{font-size:clamp(var(--v-font-statement-3-size-min),var(--_v17b0f5),var(--v-font-statement-3-size-max))}:where(.volvo_v0) .statement-signature{font:var(--v-font-statement-signature);letter-spacing:.02em}:where(.volvo_v0) .statement-signature:where([data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v17b0f5),var(--v-font-statement-signature-size-max))}:where(.volvo_v0) .bg-inherit{background-color:inherit}:where(.volvo_v0) .bg-transparent{background-color:#0000}:where(.volvo_v0) .bg-always-black{background-color:var(--v-color-always-black)}:where(.volvo_v0) .bg-always-white{background-color:var(--v-color-always-white)}:where(.volvo_v0) .bg-primary{background-color:var(--v-color-background-primary)}:where(.volvo_v0) .bg-secondary{background-color:var(--v-color-background-secondary)}:where(.volvo_v0) .bg-accent-blue{background-color:var(--v-color-background-accent-blue)}:where(.volvo_v0) .bg-feedback-green{background-color:var(--v-color-background-feedback-green)}:where(.volvo_v0) .bg-feedback-orange{background-color:var(--v-color-background-feedback-orange)}:where(.volvo_v0) .bg-feedback-red{background-color:var(--v-color-background-feedback-red)}:where(.volvo_v0) .flex,:where(.volvo_v0) .flex-col,:where(.volvo_v0) .flex-row{display:flex}:where(.volvo_v0) .flex-row{flex-direction:row}:where(.volvo_v0) .flex-col{flex-direction:column}:where(.volvo_v0) .flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .flex-grow{flex-grow:1}:where(.volvo_v0) .flex-grow-0{flex-grow:0}:where(.volvo_v0) .flex-shrink{flex-shrink:1}:where(.volvo_v0) .flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .flex-items-start{align-items:flex-start}:where(.volvo_v0) .flex-items-end{align-items:flex-end}:where(.volvo_v0) .flex-items-center{align-items:center}:where(.volvo_v0) .flex-items-stretch{align-items:stretch}:where(.volvo_v0) .flex-self-start{align-self:flex-start}:where(.volvo_v0) .flex-self-end{align-self:flex-end}:where(.volvo_v0) .flex-self-center{align-self:center}:where(.volvo_v0) .flex-self-stretch{align-self:stretch}:where(.volvo_v0) .flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .flex-justify-around{justify-content:space-around}:where(.volvo_v0) .flex-justify-between{justify-content:space-between}:where(.volvo_v0) .flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .flex-justify-center{justify-content:center}:where(.volvo_v0) .title-24{font-size:var(--v-font-title-24-size);line-height:var(--v-font-title-24-lineheight)}:where(.volvo_v0) .title-20{font-size:var(--v-font-title-20-size);line-height:var(--v-font-title-20-lineheight)}:where(.volvo_v0) .body-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}:where(.volvo_v0) :where(small:not([class])),:where(.volvo_v0) .micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}:where(.volvo_v0) .font-medium{font-weight:500}:where(.volvo_v0) .font-light{font-weight:300}:where(.volvo_v0) .hyphens{-webkit-hyphens:auto;hyphens:auto}:where(.volvo_v0) .hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}:where(.volvo_v0) .block{display:block}:where(.volvo_v0) .empty\:hidden:empty,:where(.volvo_v0) .hidden{display:none}@media (max-width:calc(30rem - .001px)){:where(.volvo_v0) .until-md\:hidden{display:none}}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .until-lg\:hidden{display:none}}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .until-xl\:hidden{display:none}}:where(.volvo_v0) .m-0{margin:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .mr-0{margin-inline-end:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .ml-0{margin-inline-start:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mt-0{margin-top:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mb-0{margin-bottom:0}:where(.volvo_v0) .m-4{margin:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .mr-4{margin-inline-end:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .ml-4{margin-inline-start:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mt-4{margin-top:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mb-4{margin-bottom:.25rem}:where(.volvo_v0) .m-8{margin:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .mr-8{margin-inline-end:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .ml-8{margin-inline-start:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mt-8{margin-top:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mb-8{margin-bottom:.5rem}:where(.volvo_v0) .m-16{margin:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .mr-16{margin-inline-end:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .ml-16{margin-inline-start:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mt-16{margin-top:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mb-16{margin-bottom:1rem}:where(.volvo_v0) .m-24{margin:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .mr-24{margin-inline-end:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .ml-24{margin-inline-start:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mt-24{margin-top:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mb-24{margin-bottom:1.5rem}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mt-section{margin-top:var(--v-space-section)}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mb-section{margin-bottom:var(--v-space-section)}:where(.volvo_v0) .p-0{padding:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pr-0{padding-inline-end:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pl-0{padding-inline-start:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pt-0{padding-top:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pb-0{padding-bottom:0}:where(.volvo_v0) .p-4{padding:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pr-4{padding-inline-end:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pl-4{padding-inline-start:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pt-4{padding-top:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pb-4{padding-bottom:.25rem}:where(.volvo_v0) .p-8{padding:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pr-8{padding-inline-end:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pl-8{padding-inline-start:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pt-8{padding-top:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pb-8{padding-bottom:.5rem}:where(.volvo_v0) .p-16{padding:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pr-16{padding-inline-end:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pl-16{padding-inline-start:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pt-16{padding-top:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pb-16{padding-bottom:1rem}:where(.volvo_v0) .p-24{padding:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pr-24{padding-inline-end:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pl-24{padding-inline-start:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pt-24{padding-top:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pb-24{padding-bottom:1.5rem}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pt-section{padding-top:var(--v-space-section)}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pb-section{padding-bottom:var(--v-space-section)}:where(.volvo_v0) .text-start{text-align:start}:where(.volvo_v0) .text-end{text-align:end}:where(.volvo_v0) .text-center{text-align:center}:where(.volvo_v0) .text-inherit{color:inherit}:where(.volvo_v0) .text-always-black{color:var(--v-color-always-black)}:where(.volvo_v0) .text-always-white{color:var(--v-color-always-white)}:where(.volvo_v0) .text-primary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .text-secondary{color:var(--v-color-foreground-secondary)}:where(.volvo_v0) .text-accent-blue{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) .text-feedback-green{color:var(--v-color-foreground-feedback-green)}:where(.volvo_v0) .text-feedback-orange{color:var(--v-color-foreground-feedback-orange)}:where(.volvo_v0) .text-feedback-red{color:var(--v-color-foreground-feedback-red)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:where(.volvo_v0) .lg\:flex,:where(.volvo_v0) .lg\:flex-col,:where(.volvo_v0) .lg\:flex-row{display:flex}:where(.volvo_v0) .lg\:flex-row{flex-direction:row}:where(.volvo_v0) .lg\:flex-col{flex-direction:column}:where(.volvo_v0) .lg\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .lg\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .lg\:flex-grow{flex-grow:1}:where(.volvo_v0) .lg\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .lg\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .lg\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .lg\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .lg\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .lg\:flex-items-center{align-items:center}:where(.volvo_v0) .lg\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .lg\:flex-self-start{align-self:start}:where(.volvo_v0) .lg\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .lg\:flex-self-center{align-self:center}:where(.volvo_v0) .lg\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .lg\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .lg\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .lg\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .lg\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .lg\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .lg\:flex-justify-center{justify-content:center}:where(.volvo_v0) .lg\:hidden{display:none}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .lg\:until-xl\:hidden{display:none}}:where(.volvo_v0) .lg\:text-start{text-align:start}:where(.volvo_v0) .lg\:text-end{text-align:end}:where(.volvo_v0) .lg\:text-center{text-align:center}@media (min-width:100rem){:where(.volvo_v0) .xl\:flex,:where(.volvo_v0) .xl\:flex-col,:where(.volvo_v0) .xl\:flex-row{display:flex}:where(.volvo_v0) .xl\:flex-row{flex-direction:row}:where(.volvo_v0) .xl\:flex-col{flex-direction:column}:where(.volvo_v0) .xl\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .xl\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .xl\:flex-grow{flex-grow:1}:where(.volvo_v0) .xl\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .xl\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .xl\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .xl\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .xl\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .xl\:flex-items-center{align-items:center}:where(.volvo_v0) .xl\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .xl\:flex-self-start{align-self:start}:where(.volvo_v0) .xl\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .xl\:flex-self-center{align-self:center}:where(.volvo_v0) .xl\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .xl\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .xl\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .xl\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .xl\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .xl\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .xl\:flex-justify-center{justify-content:center}:where(.volvo_v0) .xl\:hidden{display:none}:where(.volvo_v0) .xl\:text-start{text-align:start}:where(.volvo_v0) .xl\:text-end{text-align:end}:where(.volvo_v0) .xl\:text-center{text-align:center}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:where(.volvo_v0) .md\:flex,:where(.volvo_v0) .md\:flex-col,:where(.volvo_v0) .md\:flex-row{display:flex}:where(.volvo_v0) .md\:flex-row{flex-direction:row}:where(.volvo_v0) .md\:flex-col{flex-direction:column}:where(.volvo_v0) .md\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .md\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .md\:flex-grow{flex-grow:1}:where(.volvo_v0) .md\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .md\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .md\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .md\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .md\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .md\:flex-items-center{align-items:center}:where(.volvo_v0) .md\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .md\:flex-self-start{align-self:start}:where(.volvo_v0) .md\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .md\:flex-self-center{align-self:center}:where(.volvo_v0) .md\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .md\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .md\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .md\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .md\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .md\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .md\:flex-justify-center{justify-content:center}:where(.volvo_v0) .md\:text-start{text-align:start}:where(.volvo_v0) .md\:text-end{text-align:end}:where(.volvo_v0) .md\:text-center{text-align:center}
|
|
1
|
+
:where(.volvo_v0) .md\:flex,:where(.volvo_v0) .md\:flex-col,:where(.volvo_v0) .md\:flex-row{display:flex}:where(.volvo_v0) .md\:flex-row{flex-direction:row}:where(.volvo_v0) .md\:flex-col{flex-direction:column}:where(.volvo_v0) .md\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .md\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .md\:flex-grow{flex-grow:1}:where(.volvo_v0) .md\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .md\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .md\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .md\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .md\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .md\:flex-items-center{align-items:center}:where(.volvo_v0) .md\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .md\:flex-self-start{align-self:start}:where(.volvo_v0) .md\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .md\:flex-self-center{align-self:center}:where(.volvo_v0) .md\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .md\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .md\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .md\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .md\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .md\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .md\:flex-justify-center{justify-content:center}:where(.volvo_v0) .md\:hidden{display:none}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .md\:until-lg\:hidden{display:none}}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .md\:until-xl\:hidden{display:none}}:where(.volvo_v0) .md\:text-start{text-align:start}:where(.volvo_v0) .md\:text-end{text-align:end}:where(.volvo_v0) .md\:text-center{text-align:center}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.volvo_v0{--v-font-sans-family:"Volvo Novum","Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif;--v-font-broad-family:"Volvo Broad","Arial Black",sans-serif;--v-font-mono-family:monospace;--v-font-16-size:1rem;--v-font-16-lineheight:1.5;--v-font-16:300 var(--v-font-16-size)/var(--v-font-16-lineheight)var(--v-font-sans-family);--v-font-14-size:.875rem;--v-font-14-lineheight:1.57;--v-font-14:300 var(--v-font-14-size)/var(--v-font-14-lineheight)var(--v-font-sans-family);--v-font-12-size:.75rem;--v-font-12-lineheight:1.67;--v-font-12:300 var(--v-font-12-size)/var(--v-font-12-lineheight)var(--v-font-sans-family);--_v2a3cb9:calc(.31rem + 2ex);--v-font-heading-1-lineheight:var(--_v2a3cb9);--v-font-heading-1-size-min:2rem;--v-font-heading-1-size-max:2.5rem;--v-font-heading-1-size:clamp(var(--v-font-heading-1-size-min),1vw + 1.7rem,var(--v-font-heading-1-size-max));--v-font-heading-1:500 var(--v-font-heading-1-size)/var(--v-font-heading-1-lineheight)var(--v-font-sans-family);--v-font-heading-2-lineheight:var(--_v2a3cb9);--v-font-heading-2-size-min:1.5rem;--v-font-heading-2-size-max:2rem;--v-font-heading-2-size:clamp(var(--v-font-heading-2-size-min),1vw + 1.2rem,var(--v-font-heading-2-size-max));--v-font-heading-2:500 var(--v-font-heading-2-size)/var(--v-font-heading-2-lineheight)var(--v-font-sans-family);--v-font-heading-3-lineheight:var(--_v2a3cb9);--v-font-heading-3-size-min:1.5rem;--v-font-heading-3-size-max:2rem;--v-font-heading-3-size:clamp(var(--v-font-heading-3-size-min),1vw + 1.2rem,var(--v-font-heading-3-size-max));--v-font-heading-3:300 var(--v-font-heading-3-size)/var(--v-font-heading-3-lineheight)var(--v-font-sans-family);--v-font-statement-1-lineheight:var(--_v2a3cb9);--v-font-statement-1-size-min:4.5rem;--v-font-statement-1-size-max:6rem;--v-font-statement-1-size:clamp(var(--v-font-statement-1-size-min),3vw + 3.6rem,var(--v-font-statement-1-size-max));--v-font-statement-1:500 var(--v-font-statement-1-size)/var(--v-font-statement-1-lineheight)var(--v-font-sans-family);--v-font-statement-2-lineheight:var(--_v2a3cb9);--v-font-statement-2-size-min:3.5rem;--v-font-statement-2-size-max:4.5rem;--v-font-statement-2-size:clamp(var(--v-font-statement-2-size-min),2vw + 2.9rem,var(--v-font-statement-2-size-max));--v-font-statement-2:500 var(--v-font-statement-2-size)/var(--v-font-statement-2-lineheight)var(--v-font-sans-family);--v-font-statement-3-lineheight:var(--_v2a3cb9);--v-font-statement-3-size-min:3rem;--v-font-statement-3-size-max:3.5rem;--v-font-statement-3-size:clamp(var(--v-font-statement-3-size-min),1vw + 2.7rem,var(--v-font-statement-3-size-max));--v-font-statement-3:500 var(--v-font-statement-3-size)/var(--v-font-statement-3-lineheight)var(--v-font-sans-family);--v-font-statement-signature-lineheight:1;--v-font-statement-signature-size-min:2.5rem;--v-font-statement-signature-size-max:4.5rem;--v-font-statement-signature-size:clamp(var(--v-font-statement-signature-size-min),4vw + 1.3rem,var(--v-font-statement-signature-size-max));--v-font-statement-signature:500 var(--v-font-statement-signature-size)/var(--v-font-statement-signature-lineheight)var(--v-font-broad-family);--v-font-title-24-size:1.5rem;--v-font-title-24-lineheight:1.334;--v-font-title-24:300 var(--v-font-title-24-size)/var(--v-font-title-24-lineheight)var(--v-font-sans-family);--v-font-title-20-size:1.25rem;--v-font-title-20-lineheight:1.4;--v-font-title-20:300 var(--v-font-title-20-size)/var(--v-font-title-20-lineheight)var(--v-font-sans-family)}.volvo_v0:where(:lang(vi)){--v-font-sans-family:"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}.volvo_v0,.volvo_v0 [data-color-mode=light]{--v-color-always-black:#141414;--v-color-always-white:#fff;--v-color-foreground-primary:#000000eb;--v-color-foreground-secondary:#0000008f;--v-color-ornament-primary:#00000029;--v-color-background-primary:#fff;--v-color-background-secondary:#fafafa;--v-color-foreground-accent-blue:#2a609d;--v-color-background-accent-blue:#2a609d;--_v492382:#234871;--v-color-foreground-feedback-green:#048220;--v-color-foreground-feedback-orange:#eb7400;--v-color-foreground-feedback-red:#bf2012;--v-color-background-feedback-green:#048220;--v-color-background-feedback-orange:#eb7400;--v-color-background-feedback-red:#bf2012}.volvo_v0 [data-color-mode=dark],.volvo_v0[data-color-mode=dark]{--v-color-foreground-primary:#fff;--v-color-foreground-secondary:#ffffffa3;--v-color-ornament-primary:#ffffff1f;--v-color-background-primary:#000;--v-color-background-secondary:#141414;--v-color-foreground-accent-blue:#2387eb;--v-color-background-accent-blue:#1f78d1;--v-color-foreground-feedback-green:#07a62b;--v-color-foreground-feedback-orange:#ff9400;--v-color-foreground-feedback-red:#ff3320;--v-color-background-feedback-green:#088924;--v-color-background-feedback-orange:#ff9400;--v-color-background-feedback-red:#cc2617}.volvo_v0{--v-space-4:.25rem;--v-space-8:.5rem;--v-space-16:1rem;--v-space-24:1.5rem;--v-space-section:clamp(4rem,4vw + 2.8rem,6rem);--v-radius-4:.25rem;--v-radius-full:9999px}
|
|
1
|
+
.volvo_v0{--v-font-sans-family:"Volvo Novum","Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif;--v-font-broad-family:"Volvo Broad","Arial Black",sans-serif;--v-font-mono-family:monospace;--v-font-16-size:1rem;--v-font-16-lineheight:1.5;--v-font-16:300 var(--v-font-16-size)/var(--v-font-16-lineheight)var(--v-font-sans-family);--v-font-14-size:.875rem;--v-font-14-lineheight:1.57;--v-font-14:300 var(--v-font-14-size)/var(--v-font-14-lineheight)var(--v-font-sans-family);--v-font-12-size:.75rem;--v-font-12-lineheight:1.67;--v-font-12:300 var(--v-font-12-size)/var(--v-font-12-lineheight)var(--v-font-sans-family);--_v2a3cb9:calc(.31rem + 2ex);--v-font-heading-1-lineheight:var(--_v2a3cb9);--v-font-heading-1-size-min:2rem;--v-font-heading-1-size-max:2.5rem;--v-font-heading-1-size:clamp(var(--v-font-heading-1-size-min),1vw + 1.7rem,var(--v-font-heading-1-size-max));--v-font-heading-1:500 var(--v-font-heading-1-size)/var(--v-font-heading-1-lineheight)var(--v-font-sans-family);--v-font-heading-2-lineheight:var(--_v2a3cb9);--v-font-heading-2-size-min:1.5rem;--v-font-heading-2-size-max:2rem;--v-font-heading-2-size:clamp(var(--v-font-heading-2-size-min),1vw + 1.2rem,var(--v-font-heading-2-size-max));--v-font-heading-2:500 var(--v-font-heading-2-size)/var(--v-font-heading-2-lineheight)var(--v-font-sans-family);--v-font-heading-3-lineheight:var(--_v2a3cb9);--v-font-heading-3-size-min:1.5rem;--v-font-heading-3-size-max:2rem;--v-font-heading-3-size:clamp(var(--v-font-heading-3-size-min),1vw + 1.2rem,var(--v-font-heading-3-size-max));--v-font-heading-3:300 var(--v-font-heading-3-size)/var(--v-font-heading-3-lineheight)var(--v-font-sans-family);--v-font-statement-1-lineheight:var(--_v2a3cb9);--v-font-statement-1-size-min:4.5rem;--v-font-statement-1-size-max:6rem;--v-font-statement-1-size:clamp(var(--v-font-statement-1-size-min),3vw + 3.6rem,var(--v-font-statement-1-size-max));--v-font-statement-1:500 var(--v-font-statement-1-size)/var(--v-font-statement-1-lineheight)var(--v-font-sans-family);--v-font-statement-2-lineheight:var(--_v2a3cb9);--v-font-statement-2-size-min:3.5rem;--v-font-statement-2-size-max:4.5rem;--v-font-statement-2-size:clamp(var(--v-font-statement-2-size-min),2vw + 2.9rem,var(--v-font-statement-2-size-max));--v-font-statement-2:500 var(--v-font-statement-2-size)/var(--v-font-statement-2-lineheight)var(--v-font-sans-family);--v-font-statement-3-lineheight:var(--_v2a3cb9);--v-font-statement-3-size-min:3rem;--v-font-statement-3-size-max:3.5rem;--v-font-statement-3-size:clamp(var(--v-font-statement-3-size-min),1vw + 2.7rem,var(--v-font-statement-3-size-max));--v-font-statement-3:500 var(--v-font-statement-3-size)/var(--v-font-statement-3-lineheight)var(--v-font-sans-family);--v-font-statement-signature-lineheight:1;--v-font-statement-signature-size-min:2.5rem;--v-font-statement-signature-size-max:4.5rem;--v-font-statement-signature-size:clamp(var(--v-font-statement-signature-size-min),4vw + 1.3rem,var(--v-font-statement-signature-size-max));--v-font-statement-signature:500 var(--v-font-statement-signature-size)/var(--v-font-statement-signature-lineheight)var(--v-font-broad-family);--v-font-title-24-size:1.5rem;--v-font-title-24-lineheight:1.334;--v-font-title-24:300 var(--v-font-title-24-size)/var(--v-font-title-24-lineheight)var(--v-font-sans-family);--v-font-title-20-size:1.25rem;--v-font-title-20-lineheight:1.4;--v-font-title-20:300 var(--v-font-title-20-size)/var(--v-font-title-20-lineheight)var(--v-font-sans-family)}.volvo_v0:where(:lang(vi),:lang(az)){--v-font-sans-family:"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}.volvo_v0,.volvo_v0 [data-color-mode=light]{--v-color-always-black:#141414;--v-color-always-white:#fff;--v-color-foreground-primary:#000000eb;--v-color-foreground-secondary:#0000008f;--v-color-ornament-primary:#00000029;--v-color-background-primary:#fff;--v-color-background-secondary:#fafafa;--v-color-foreground-accent-blue:#2a609d;--v-color-background-accent-blue:#2a609d;--_v492382:#234871;--v-color-foreground-feedback-green:#048220;--v-color-foreground-feedback-orange:#eb7400;--v-color-foreground-feedback-red:#bf2012;--v-color-background-feedback-green:#048220;--v-color-background-feedback-orange:#eb7400;--v-color-background-feedback-red:#bf2012}.volvo_v0 [data-color-mode=dark],.volvo_v0[data-color-mode=dark]{--v-color-foreground-primary:#fff;--v-color-foreground-secondary:#ffffffa3;--v-color-ornament-primary:#ffffff1f;--v-color-background-primary:#000;--v-color-background-secondary:#141414;--v-color-foreground-accent-blue:#2387eb;--v-color-background-accent-blue:#1f78d1;--v-color-foreground-feedback-green:#07a62b;--v-color-foreground-feedback-orange:#ff9400;--v-color-foreground-feedback-red:#ff3320;--v-color-background-feedback-green:#088924;--v-color-background-feedback-orange:#ff9400;--v-color-background-feedback-red:#cc2617}.volvo_v0{--v-space-4:.25rem;--v-space-8:.5rem;--v-space-16:1rem;--v-space-24:1.5rem;--v-space-section:clamp(4rem,4vw + 2.8rem,6rem);--v-radius-4:.25rem;--v-radius-full:9999px}
|
package/dist/imports.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"imports": {
|
|
3
3
|
"font-face.css": "css/v0/font-face.05a7ed4c.css",
|
|
4
|
-
"styles.css": "css/v0/styles.
|
|
4
|
+
"styles.css": "css/v0/styles.8f1da20d.css",
|
|
5
5
|
"styles_hover.css": "css/v0/styles_hover.e7965925.css",
|
|
6
|
-
"styles_lg.css": "css/v0/styles_lg.
|
|
7
|
-
"styles_md.css": "css/v0/styles_md.
|
|
8
|
-
"tokens.css": "css/v0/tokens.
|
|
6
|
+
"styles_lg.css": "css/v0/styles_lg.21382e75.css",
|
|
7
|
+
"styles_md.css": "css/v0/styles_md.6f6f769c.css",
|
|
8
|
+
"tokens.css": "css/v0/tokens.cef80cff.css"
|
|
9
9
|
}
|
|
10
10
|
}
|
package/dist/links.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var i=Object.defineProperty;var
|
|
1
|
+
var i=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var a=Object.prototype.hasOwnProperty;var m=(s,e)=>{for(var r in e)i(s,r,{get:e[r],enumerable:!0})},d=(s,e,r,o)=>{if(e&&typeof e=="object"||typeof e=="function")for(let t of p(e))!a.call(s,t)&&t!==r&&i(s,t,{get:()=>e[t],enumerable:!(o=f(e,t))||o.enumerable});return s};var y=s=>d(i({},"__esModule",{value:!0}),s);var w={};m(w,{links:()=>k});module.exports=y(w);var l={"font-face.css":"css/v0/font-face.05a7ed4c.css","styles.css":"css/v0/styles.8f1da20d.css","styles_hover.css":"css/v0/styles_hover.e7965925.css","styles_lg.css":"css/v0/styles_lg.21382e75.css","styles_md.css":"css/v0/styles_md.6f6f769c.css","tokens.css":"css/v0/tokens.cef80cff.css"};var c={hover:"(hover: hover)",md:"(min-width: 30rem)",lg:"(min-width: 64rem)"};var g="https://www.volvocars.com/static/shared/pkg/";function k({base:s=g}={}){if(s&&typeof s!="string"&&(s=s.href),typeof s=="string"&&s!==""&&!s.endsWith("/"))throw new TypeError("Missing trailing slash in base URL");return Object.entries(l).map(([e,r])=>{var n;let o={rel:"stylesheet",href:s+r,"data-volvo-css-name":e},t=(n=e.split("_").pop())==null?void 0:n.replace(".css","");return t&&t in c&&(o.media=c[t]),o})}0&&(module.exports={links});
|
|
2
2
|
//# sourceMappingURL=links.cjs.map
|
package/dist/links.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a as n,b as s}from"./chunk-
|
|
1
|
+
import{a as n,b as s}from"./chunk-NCFF3HX2.js";var a="https://www.volvocars.com/static/shared/pkg/";function m({base:e=a}={}){if(e&&typeof e!="string"&&(e=e.href),typeof e=="string"&&e!==""&&!e.endsWith("/"))throw new TypeError("Missing trailing slash in base URL");return Object.entries(n).map(([r,p])=>{var o;let i={rel:"stylesheet",href:e+p,"data-volvo-css-name":r},t=(o=r.split("_").pop())==null?void 0:o.replace(".css","");return t&&t in s&&(i.media=s[t]),i})}export{m as links};
|
|
2
2
|
//# sourceMappingURL=links.js.map
|
package/dist/links.server.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var l=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var m=Object.prototype.hasOwnProperty;var w=(o,t)=>{for(var f in t)l(o,f,{get:t[f],enumerable:!0})},d=(o,t,f,a)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of c(t))!m.call(o,s)&&s!==f&&l(o,s,{get:()=>t[s],enumerable:!(a=v(t,s))||a.enumerable});return o};var p=o=>d(l({},"__esModule",{value:!0}),o);var V={};w(V,{links:()=>k});module.exports=p(V);var r="QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tZ3JlZWstc2VtaS1saWdodC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtc2VtaS1saWdodC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtd2VpZ2h0OjMwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1zZW1pLWxpZ2h0LndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcH1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OjMwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1ncmVlay1zZW1pLWxpZ2h0LWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtc2VtaS1saWdodC1pdGFsaWMud29mZjIpZm9ybWF0KCJ3b2ZmMiIpO2ZvbnQtZGlzcGxheTpzd2FwO3VuaWNvZGUtcmFuZ2U6VSs0Pz99QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tc2VtaS1saWdodC1pdGFsaWMud29mZjIpZm9ybWF0KCJ3b2ZmMiIpO2ZvbnQtZGlzcGxheTpzd2FwfUBmb250LWZhY2V7Zm9udC1mYW1pbHk6Vm9sdm8gTm92dW07Zm9udC13ZWlnaHQ6NTAwO3NyYzp1cmwoaHR0cHM6Ly93d3cudm9sdm9jYXJzLmNvbS9zdGF0aWMvc2hhcmVkL2ZvbnRzL3ZvbHZvLW5vdnVtL3ZvbHZvLW5vdnVtLWdyZWVrLW1lZGl1bS53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtbWVkaXVtLndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcDt1bmljb2RlLXJhbmdlOlUrND8/fUBmb250LWZhY2V7Zm9udC1mYW1pbHk6Vm9sdm8gTm92dW07Zm9udC13ZWlnaHQ6NTAwO3NyYzp1cmwoaHR0cHM6Ly93d3cudm9sdm9jYXJzLmNvbS9zdGF0aWMvc2hhcmVkL2ZvbnRzL3ZvbHZvLW5vdnVtL3ZvbHZvLW5vdnVtLW1lZGl1bS53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXB9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tZ3JlZWstbWVkaXVtLWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtbWVkaXVtLWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OjUwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1tZWRpdW0taXRhbGljLndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcH1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIEJyb2FkO2ZvbnQtd2VpZ2h0OjQwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1icm9hZC92b2x2by1icm9hZC1jeXJpbGxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIEJyb2FkO2ZvbnQtd2VpZ2h0OjQwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1icm9hZC92b2x2by1icm9hZC1ncmVlay53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBCcm9hZDtmb250LXdlaWdodDo0MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tYnJvYWQvdm9sdm8tYnJvYWQtbGF0aW4tcmVzdC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzIwLTM2RixVKzUzMC1GQjAyfQ==";var n={"font-face.css":"css/v0/font-face.05a7ed4c.css","styles.css":"css/v0/styles.
|
|
1
|
+
var l=Object.defineProperty;var v=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var m=Object.prototype.hasOwnProperty;var w=(o,t)=>{for(var f in t)l(o,f,{get:t[f],enumerable:!0})},d=(o,t,f,a)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of c(t))!m.call(o,s)&&s!==f&&l(o,s,{get:()=>t[s],enumerable:!(a=v(t,s))||a.enumerable});return o};var p=o=>d(l({},"__esModule",{value:!0}),o);var V={};w(V,{links:()=>k});module.exports=p(V);var r="QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tZ3JlZWstc2VtaS1saWdodC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtc2VtaS1saWdodC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtd2VpZ2h0OjMwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1zZW1pLWxpZ2h0LndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcH1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OjMwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1ncmVlay1zZW1pLWxpZ2h0LWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtc2VtaS1saWdodC1pdGFsaWMud29mZjIpZm9ybWF0KCJ3b2ZmMiIpO2ZvbnQtZGlzcGxheTpzd2FwO3VuaWNvZGUtcmFuZ2U6VSs0Pz99QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tc2VtaS1saWdodC1pdGFsaWMud29mZjIpZm9ybWF0KCJ3b2ZmMiIpO2ZvbnQtZGlzcGxheTpzd2FwfUBmb250LWZhY2V7Zm9udC1mYW1pbHk6Vm9sdm8gTm92dW07Zm9udC13ZWlnaHQ6NTAwO3NyYzp1cmwoaHR0cHM6Ly93d3cudm9sdm9jYXJzLmNvbS9zdGF0aWMvc2hhcmVkL2ZvbnRzL3ZvbHZvLW5vdnVtL3ZvbHZvLW5vdnVtLWdyZWVrLW1lZGl1bS53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtbWVkaXVtLndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcDt1bmljb2RlLXJhbmdlOlUrND8/fUBmb250LWZhY2V7Zm9udC1mYW1pbHk6Vm9sdm8gTm92dW07Zm9udC13ZWlnaHQ6NTAwO3NyYzp1cmwoaHR0cHM6Ly93d3cudm9sdm9jYXJzLmNvbS9zdGF0aWMvc2hhcmVkL2ZvbnRzL3ZvbHZvLW5vdnVtL3ZvbHZvLW5vdnVtLW1lZGl1bS53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXB9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tZ3JlZWstbWVkaXVtLWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtbWVkaXVtLWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OjUwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1tZWRpdW0taXRhbGljLndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcH1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIEJyb2FkO2ZvbnQtd2VpZ2h0OjQwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1icm9hZC92b2x2by1icm9hZC1jeXJpbGxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIEJyb2FkO2ZvbnQtd2VpZ2h0OjQwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1icm9hZC92b2x2by1icm9hZC1ncmVlay53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBCcm9hZDtmb250LXdlaWdodDo0MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tYnJvYWQvdm9sdm8tYnJvYWQtbGF0aW4tcmVzdC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzIwLTM2RixVKzUzMC1GQjAyfQ==";var n={"font-face.css":"css/v0/font-face.05a7ed4c.css","styles.css":"css/v0/styles.8f1da20d.css","styles_hover.css":"css/v0/styles_hover.e7965925.css","styles_lg.css":"css/v0/styles_lg.21382e75.css","styles_md.css":"css/v0/styles_md.6f6f769c.css","tokens.css":"css/v0/tokens.cef80cff.css"};var e={hover:"(hover: hover)",md:"(min-width: 30rem)",lg:"(min-width: 64rem)"};var g="https://www.volvocars.com/static/shared/pkg/";function k({base:o=g}={}){return o&&typeof o!="string"&&(o=o.href),typeof o=="string"&&o!==""&&!o.endsWith("/")&&(o+="/"),Object.entries(n).flatMap(([t,f])=>{var i;let a={href:o+f,"data-volvo-css-name":t,rel:"stylesheet"},s=(i=t.split("_").pop())==null?void 0:i.replace(".css","");return s&&s in e&&(a.media=e[s]),t==="font-face.css"?{...a,href:`data:text/css;base64,${r}`}:[{...a,rel:"preload",as:"style"},a]}).sort((t,f)=>t.rel==="preload"&&f.rel==="preload"?0:t.rel==="preload"?-1:1)}0&&(module.exports={links});
|
|
2
2
|
//# sourceMappingURL=links.server.cjs.map
|
package/dist/links.server.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a as r,b as l}from"./chunk-
|
|
1
|
+
import{a as r,b as l}from"./chunk-NCFF3HX2.js";var n="QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tZ3JlZWstc2VtaS1saWdodC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtc2VtaS1saWdodC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtd2VpZ2h0OjMwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1zZW1pLWxpZ2h0LndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcH1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OjMwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1ncmVlay1zZW1pLWxpZ2h0LWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtc2VtaS1saWdodC1pdGFsaWMud29mZjIpZm9ybWF0KCJ3b2ZmMiIpO2ZvbnQtZGlzcGxheTpzd2FwO3VuaWNvZGUtcmFuZ2U6VSs0Pz99QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDozMDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tc2VtaS1saWdodC1pdGFsaWMud29mZjIpZm9ybWF0KCJ3b2ZmMiIpO2ZvbnQtZGlzcGxheTpzd2FwfUBmb250LWZhY2V7Zm9udC1mYW1pbHk6Vm9sdm8gTm92dW07Zm9udC13ZWlnaHQ6NTAwO3NyYzp1cmwoaHR0cHM6Ly93d3cudm9sdm9jYXJzLmNvbS9zdGF0aWMvc2hhcmVkL2ZvbnRzL3ZvbHZvLW5vdnVtL3ZvbHZvLW5vdnVtLWdyZWVrLW1lZGl1bS53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtbWVkaXVtLndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcDt1bmljb2RlLXJhbmdlOlUrND8/fUBmb250LWZhY2V7Zm9udC1mYW1pbHk6Vm9sdm8gTm92dW07Zm9udC13ZWlnaHQ6NTAwO3NyYzp1cmwoaHR0cHM6Ly93d3cudm9sdm9jYXJzLmNvbS9zdGF0aWMvc2hhcmVkL2ZvbnRzL3ZvbHZvLW5vdnVtL3ZvbHZvLW5vdnVtLW1lZGl1bS53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXB9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tZ3JlZWstbWVkaXVtLWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBOb3Z1bTtmb250LXN0eWxlOml0YWxpYztmb250LXdlaWdodDo1MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tbm92dW0vdm9sdm8tbm92dW0tY3lyaWxsaWMtbWVkaXVtLWl0YWxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIE5vdnVtO2ZvbnQtc3R5bGU6aXRhbGljO2ZvbnQtd2VpZ2h0OjUwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1ub3Z1bS92b2x2by1ub3Z1bS1tZWRpdW0taXRhbGljLndvZmYyKWZvcm1hdCgid29mZjIiKTtmb250LWRpc3BsYXk6c3dhcH1AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIEJyb2FkO2ZvbnQtd2VpZ2h0OjQwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1icm9hZC92b2x2by1icm9hZC1jeXJpbGxpYy53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzQ/P31AZm9udC1mYWNle2ZvbnQtZmFtaWx5OlZvbHZvIEJyb2FkO2ZvbnQtd2VpZ2h0OjQwMDtzcmM6dXJsKGh0dHBzOi8vd3d3LnZvbHZvY2Fycy5jb20vc3RhdGljL3NoYXJlZC9mb250cy92b2x2by1icm9hZC92b2x2by1icm9hZC1ncmVlay53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzM3MC0zRkZ9QGZvbnQtZmFjZXtmb250LWZhbWlseTpWb2x2byBCcm9hZDtmb250LXdlaWdodDo0MDA7c3JjOnVybChodHRwczovL3d3dy52b2x2b2NhcnMuY29tL3N0YXRpYy9zaGFyZWQvZm9udHMvdm9sdm8tYnJvYWQvdm9sdm8tYnJvYWQtbGF0aW4tcmVzdC53b2ZmMilmb3JtYXQoIndvZmYyIik7Zm9udC1kaXNwbGF5OnN3YXA7dW5pY29kZS1yYW5nZTpVKzIwLTM2RixVKzUzMC1GQjAyfQ==";var e="https://www.volvocars.com/static/shared/pkg/";function p({base:o=e}={}){return o&&typeof o!="string"&&(o=o.href),typeof o=="string"&&o!==""&&!o.endsWith("/")&&(o+="/"),Object.entries(r).flatMap(([t,s])=>{var i;let f={href:o+s,"data-volvo-css-name":t,rel:"stylesheet"},a=(i=t.split("_").pop())==null?void 0:i.replace(".css","");return a&&a in l&&(f.media=l[a]),t==="font-face.css"?{...f,href:`data:text/css;base64,${n}`}:[{...f,rel:"preload",as:"style"},f]}).sort((t,s)=>t.rel==="preload"&&s.rel==="preload"?0:t.rel==="preload"?-1:1)}export{p as links};
|
|
2
2
|
//# sourceMappingURL=links.server.js.map
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.volvo_v0,:where(.volvo_v0) [data-color-mode]{color:var(--v-color-foreground-primary);color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0)[data-color-mode=dark],:where(.volvo_v0) [data-color-mode=dark]{color-scheme:dark}.volvo_v0{--_v85627f:initial;font:var(--v-font-16);tab-size:4}.volvo_v0:lang(ar),.volvo_v0:lang(he){--_v85627f: }:where(.volvo_v0) :where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100%,var(--v-font-14-size))}:where(.volvo_v0) :where(pre){white-space:break-spaces}:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{box-sizing:border-box}:where(.volvo_v0) :where(:not(progress,meter)){border-color:var(--v-color-ornament-primary);border-style:solid;border-width:0}:where(.volvo_v0 body,body.volvo_v0){min-height:100vh;min-height:100dvh;scrollbar-gutter:stable;background-color:var(--v-color-background-primary);margin:0}:where(.volvo_v0) :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(.volvo_v0) :where(button,input,ol,ul,legend,fieldset){padding:0}:where(.volvo_v0) :where(a){color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(.volvo_v0) :where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.volvo_v0) :where(img,picture,video,canvas,svg){max-width:100%}:where(.volvo_v0) :where(ol,ul){list-style:none}:where(.volvo_v0) :where(button,input:is([type=button],[type=reset],[type=submit])){-webkit-appearance:button;appearance:button;color:inherit;background-color:#0000}:where(.volvo_v0) :where(summary:is(details[class]>*,[class])){list-style:none}:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::marker,:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(.volvo_v0) :where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font:inherit}:where(.volvo_v0) :where(b,strong){font-weight:500}:where(.volvo_v0) :where(button,input,optgroup,select){line-height:1.3}:where(.volvo_v0) :where(textarea){resize:vertical}:where(.volvo_v0) :where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(.volvo_v0) [data-fluid-typography=min]{--_v17b0f5:0rem}:where(.volvo_v0) [data-fluid-typography=max]{--_v17b0f5:9rem}@media (prefers-reduced-motion:reduce){:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(.volvo_v0) :is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-section,.stack-text)>*+*{margin-top:var(--stack-gap)}:where(.volvo_v0) .stack-section>*{--stack-gap:var(--v-space-section)}:where(.volvo_v0) .stack-4>*{--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-8>*{--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-16>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-24>*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.title-20,.title-20:first-child)+:where(.body-16,.list,.micro,:is(p,ul,small):not([class])){--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-text>:where(.body-16.font-medium)+:where(.body-16,p:not([class])){--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])))+:where(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.volvo_v0) :where(.stack-text)>.statement-3+*,:where(.volvo_v0) :where(.stack-text)>.statement-3+:where(.heading-3,h3:not([class]))+*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>:where(.micro,small:not([class]))+:where(.micro,small:not([class])){--stack-gap:0rem}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])){width:var(--v-space-16);height:var(--v-space-16);-webkit-appearance:none;appearance:none;background-color:var(--v-color-background-primary);border:1px solid var(--v-color-foreground-secondary);border-radius:var(--v-radius-4);place-content:center;margin-top:.25em;transition:box-shadow .3s;display:inline-grid}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):before{width:var(--v-space-16);height:var(--v-space-16);content:"";background-color:var(--v-color-background-accent-blue);border-radius:var(--v-radius-4);opacity:0;transition:transform .1s ease-in-out,background-color .3s,outline .3s,opacity .2s}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):after{content:"";opacity:1;position:absolute}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])){border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):before{border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=checkbox]):is(.checkbox,:not([class])):after{--_v7e5a12:var(--_v85627f)-2px,-5px;width:var(--v-space-4);height:var(--v-space-8);content:"";transform:scaleX(-1)rotate(135deg)translate(var(--_v7e5a12,5px,2px));border-color:#0000;transition:border-top-color .15s linear,border-right-color .15s linear .1s}:where(.volvo_v0) :where([type=checkbox]:is(.checkbox,:not([class]))):checked:after{border-top:1px solid var(--v-color-always-white);border-right:1px solid var(--v-color-always-white)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):after{width:8px;height:8px;background-color:var(--v-color-always-white);border-radius:var(--v-radius-full);transition:transform .25s;transform:matrix(0,.001,.001,0,3,3)}:where(.volvo_v0) :where([type=radio]:is(.radio,:not([class]))):checked:after{--_v9bae6e:var(--_v85627f)-3;transform:matrix(0,1,1,0,var(--_v9bae6e,3),3)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled:after{border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled{background-color:var(--v-color-background-secondary);border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):is(:active,:checked)):enabled:before{opacity:1}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))[aria-invalid]:not([aria-invalid=false]),:is(fieldset,[role=radiogroup])[aria-invalid]:not([aria-invalid=false]) [type=radio]:is(.radio,:not([class]))):not(:disabled,:hover){border-color:var(--v-color-foreground-feedback-red);box-shadow:inset 0 0 0 1px var(--v-color-foreground-feedback-red)}:where(.volvo_v0) :where(h1:not([class])),:where(.volvo_v0) .heading-1{font:var(--v-font-heading-1)}:where(.volvo_v0) .heading-1[data-fluid-typography]{font-size:clamp(var(--v-font-heading-1-size-min),var(--_v17b0f5,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(.volvo_v0) :where(h2:not([class])),:where(.volvo_v0) .heading-2{font:var(--v-font-heading-2)}:where(.volvo_v0) .heading-2[data-fluid-typography]{font-size:clamp(var(--v-font-heading-2-size-min),var(--_v17b0f5,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(.volvo_v0) :where(h3:not([class])),:where(.volvo_v0) .heading-3{font:var(--v-font-heading-3)}:where(.volvo_v0) .heading-3[data-fluid-typography]{font-size:clamp(var(--v-font-heading-3-size-min),var(--_v17b0f5,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(.volvo_v0) :where(a[href]:not([class])),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline{color:var(--v-color-foreground-secondary);-webkit-text-decoration-line:underline;text-decoration-line:underline}:where(.volvo_v0) :where(ul,ol).list,:where(.volvo_v0) :where(ul,ol):where(:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.volvo_v0) .statement-1{font:var(--v-font-statement-1)}:where(.volvo_v0) .statement-1[data-fluid-typography]{font-size:clamp(var(--v-font-statement-1-size-min),var(--_v17b0f5),var(--v-font-statement-1-size-max))}:where(.volvo_v0) .statement-2{font:var(--v-font-statement-2)}:where(.volvo_v0) .statement-2[data-fluid-typography]{font-size:clamp(var(--v-font-statement-2-size-min),var(--_v17b0f5),var(--v-font-statement-2-size-max))}:where(.volvo_v0) .statement-3{font:var(--v-font-statement-3)}:where(.volvo_v0) .statement-3[data-fluid-typography]{font-size:clamp(var(--v-font-statement-3-size-min),var(--_v17b0f5),var(--v-font-statement-3-size-max))}:where(.volvo_v0) .statement-signature{font:var(--v-font-statement-signature);letter-spacing:.02em}:where(.volvo_v0) .statement-signature:where([data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v17b0f5),var(--v-font-statement-signature-size-max))}:where(.volvo_v0) .bg-inherit{background-color:inherit}:where(.volvo_v0) .bg-transparent{background-color:#0000}:where(.volvo_v0) .bg-always-black{background-color:var(--v-color-always-black)}:where(.volvo_v0) .bg-always-white{background-color:var(--v-color-always-white)}:where(.volvo_v0) .bg-primary{background-color:var(--v-color-background-primary)}:where(.volvo_v0) .bg-secondary{background-color:var(--v-color-background-secondary)}:where(.volvo_v0) .bg-accent-blue{background-color:var(--v-color-background-accent-blue)}:where(.volvo_v0) .bg-feedback-green{background-color:var(--v-color-background-feedback-green)}:where(.volvo_v0) .bg-feedback-orange{background-color:var(--v-color-background-feedback-orange)}:where(.volvo_v0) .bg-feedback-red{background-color:var(--v-color-background-feedback-red)}:where(.volvo_v0) .flex,:where(.volvo_v0) .flex-col,:where(.volvo_v0) .flex-row{display:flex}:where(.volvo_v0) .flex-row{flex-direction:row}:where(.volvo_v0) .flex-col{flex-direction:column}:where(.volvo_v0) .flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .flex-grow{flex-grow:1}:where(.volvo_v0) .flex-grow-0{flex-grow:0}:where(.volvo_v0) .flex-shrink{flex-shrink:1}:where(.volvo_v0) .flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .flex-items-start{align-items:flex-start}:where(.volvo_v0) .flex-items-end{align-items:flex-end}:where(.volvo_v0) .flex-items-center{align-items:center}:where(.volvo_v0) .flex-items-stretch{align-items:stretch}:where(.volvo_v0) .flex-self-start{align-self:flex-start}:where(.volvo_v0) .flex-self-end{align-self:flex-end}:where(.volvo_v0) .flex-self-center{align-self:center}:where(.volvo_v0) .flex-self-stretch{align-self:stretch}:where(.volvo_v0) .flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .flex-justify-around{justify-content:space-around}:where(.volvo_v0) .flex-justify-between{justify-content:space-between}:where(.volvo_v0) .flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .flex-justify-center{justify-content:center}:where(.volvo_v0) .title-24{font-size:var(--v-font-title-24-size);line-height:var(--v-font-title-24-lineheight)}:where(.volvo_v0) .title-20{font-size:var(--v-font-title-20-size);line-height:var(--v-font-title-20-lineheight)}:where(.volvo_v0) .body-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}:where(.volvo_v0) :where(small:not([class])),:where(.volvo_v0) .micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}:where(.volvo_v0) .font-medium{font-weight:500}:where(.volvo_v0) .font-light{font-weight:300}:where(.volvo_v0) .hyphens{-webkit-hyphens:auto;hyphens:auto}:where(.volvo_v0) .hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}:where(.volvo_v0) .m-0{margin:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .mr-0{margin-inline-end:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .ml-0{margin-inline-start:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mt-0{margin-top:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mb-0{margin-bottom:0}:where(.volvo_v0) .m-4{margin:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .mr-4{margin-inline-end:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .ml-4{margin-inline-start:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mt-4{margin-top:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mb-4{margin-bottom:.25rem}:where(.volvo_v0) .m-8{margin:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .mr-8{margin-inline-end:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .ml-8{margin-inline-start:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mt-8{margin-top:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mb-8{margin-bottom:.5rem}:where(.volvo_v0) .m-16{margin:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .mr-16{margin-inline-end:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .ml-16{margin-inline-start:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mt-16{margin-top:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mb-16{margin-bottom:1rem}:where(.volvo_v0) .m-24{margin:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .mr-24{margin-inline-end:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .ml-24{margin-inline-start:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mt-24{margin-top:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mb-24{margin-bottom:1.5rem}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mt-section{margin-top:var(--v-space-section)}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mb-section{margin-bottom:var(--v-space-section)}:where(.volvo_v0) .p-0{padding:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pr-0{padding-inline-end:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pl-0{padding-inline-start:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pt-0{padding-top:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pb-0{padding-bottom:0}:where(.volvo_v0) .p-4{padding:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pr-4{padding-inline-end:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pl-4{padding-inline-start:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pt-4{padding-top:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pb-4{padding-bottom:.25rem}:where(.volvo_v0) .p-8{padding:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pr-8{padding-inline-end:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pl-8{padding-inline-start:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pt-8{padding-top:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pb-8{padding-bottom:.5rem}:where(.volvo_v0) .p-16{padding:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pr-16{padding-inline-end:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pl-16{padding-inline-start:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pt-16{padding-top:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pb-16{padding-bottom:1rem}:where(.volvo_v0) .p-24{padding:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pr-24{padding-inline-end:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pl-24{padding-inline-start:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pt-24{padding-top:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pb-24{padding-bottom:1.5rem}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pt-section{padding-top:var(--v-space-section)}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pb-section{padding-bottom:var(--v-space-section)}:where(.volvo_v0) .text-start{text-align:start}:where(.volvo_v0) .text-end{text-align:end}:where(.volvo_v0) .text-center{text-align:center}:where(.volvo_v0) .text-inherit{color:inherit}:where(.volvo_v0) .text-always-black{color:var(--v-color-always-black)}:where(.volvo_v0) .text-always-white{color:var(--v-color-always-white)}:where(.volvo_v0) .text-primary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .text-secondary{color:var(--v-color-foreground-secondary)}:where(.volvo_v0) .text-accent-blue{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) .text-feedback-green{color:var(--v-color-foreground-feedback-green)}:where(.volvo_v0) .text-feedback-orange{color:var(--v-color-foreground-feedback-orange)}:where(.volvo_v0) .text-feedback-red{color:var(--v-color-foreground-feedback-red)}
|
|
1
|
+
.volvo_v0,:where(.volvo_v0) [data-color-mode]{color:var(--v-color-foreground-primary);color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0)[data-color-mode=dark],:where(.volvo_v0) [data-color-mode=dark]{color-scheme:dark}.volvo_v0{--_v85627f:initial;font:var(--v-font-16);tab-size:4}.volvo_v0:lang(ar),.volvo_v0:lang(he){--_v85627f: }.volvo_v0:lang(bg){font-feature-settings:"locl" 0}:where(.volvo_v0) :where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100%,var(--v-font-14-size))}:where(.volvo_v0) :where(pre){white-space:break-spaces}:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{box-sizing:border-box}:where(.volvo_v0) :where(:not(progress,meter)){border-color:var(--v-color-ornament-primary);border-style:solid;border-width:0}:where(.volvo_v0 body,body.volvo_v0){min-height:100vh;min-height:100dvh;scrollbar-gutter:stable;background-color:var(--v-color-background-primary);margin:0}:where(.volvo_v0) :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(.volvo_v0) :where(button,input,ol,ul,legend,fieldset){padding:0}:where(.volvo_v0) :where(a){color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(.volvo_v0) :where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.volvo_v0) :where(img,picture,video,canvas,svg){max-width:100%}:where(.volvo_v0) :where(ol,ul){list-style:none}:where(.volvo_v0) :where(button,input:is([type=button],[type=reset],[type=submit])){-webkit-appearance:button;appearance:button;color:inherit;background-color:#0000}:where(.volvo_v0) :where(summary:is(details[class]>*,[class])){list-style:none}:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::marker,:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(.volvo_v0) :where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font:inherit}:where(.volvo_v0) :where(b,strong){font-weight:500}:where(.volvo_v0) :where(button,input,optgroup,select){line-height:1.3}:where(.volvo_v0) :where(textarea){resize:vertical}:where(.volvo_v0) :where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(.volvo_v0) [data-fluid-typography=min]{--_v17b0f5:0rem}:where(.volvo_v0) [data-fluid-typography=max]{--_v17b0f5:9rem}@media (prefers-reduced-motion:reduce){:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(.volvo_v0) :is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-section,.stack-text)>*+*{margin-top:var(--stack-gap)}:where(.volvo_v0) .stack-section>*{--stack-gap:var(--v-space-section)}:where(.volvo_v0) .stack-4>*{--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-8>*{--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-16>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-24>*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.title-20,.title-20:first-child)+:where(.body-16,.list,.micro,:is(p,ul,small):not([class])){--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-text>:where(.body-16.font-medium)+:where(.body-16,p:not([class])){--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])))+:where(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.volvo_v0) :where(.stack-text)>.statement-3+*,:where(.volvo_v0) :where(.stack-text)>.statement-3+:where(.heading-3,h3:not([class]))+*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>:where(.micro,small:not([class]))+:where(.micro,small:not([class])){--stack-gap:0rem}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])){width:var(--v-space-16);height:var(--v-space-16);-webkit-appearance:none;appearance:none;background-color:var(--v-color-background-primary);border:1px solid var(--v-color-foreground-secondary);border-radius:var(--v-radius-4);place-content:center;margin-top:.25em;transition:box-shadow .3s;display:inline-grid}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):before{width:var(--v-space-16);height:var(--v-space-16);content:"";background-color:var(--v-color-background-accent-blue);border-radius:var(--v-radius-4);opacity:0;transition:transform .1s ease-in-out,background-color .3s,outline .3s,opacity .2s}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):after{content:"";opacity:1;position:absolute}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])){border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):before{border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=checkbox]):is(.checkbox,:not([class])):after{--_v7e5a12:var(--_v85627f)-2px,-5px;width:var(--v-space-4);height:var(--v-space-8);content:"";transform:scaleX(-1)rotate(135deg)translate(var(--_v7e5a12,5px,2px));border-color:#0000;transition:border-top-color .15s linear,border-right-color .15s linear .1s}:where(.volvo_v0) :where([type=checkbox]:is(.checkbox,:not([class]))):checked:after{border-top:1px solid var(--v-color-always-white);border-right:1px solid var(--v-color-always-white)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):after{width:8px;height:8px;background-color:var(--v-color-always-white);border-radius:var(--v-radius-full);transition:transform .25s;transform:matrix(0,.001,.001,0,3,3)}:where(.volvo_v0) :where([type=radio]:is(.radio,:not([class]))):checked:after{--_v9bae6e:var(--_v85627f)-3;transform:matrix(0,1,1,0,var(--_v9bae6e,3),3)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled:after{border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled{background-color:var(--v-color-background-secondary);border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):is(:active,:checked)):enabled:before{opacity:1}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))[aria-invalid]:not([aria-invalid=false]),:is(fieldset,[role=radiogroup])[aria-invalid]:not([aria-invalid=false]) [type=radio]:is(.radio,:not([class]))):not(:disabled,:hover){border-color:var(--v-color-foreground-feedback-red);box-shadow:inset 0 0 0 1px var(--v-color-foreground-feedback-red)}:where(.volvo_v0) :where(h1:not([class])),:where(.volvo_v0) .heading-1{font:var(--v-font-heading-1)}:where(.volvo_v0) .heading-1[data-fluid-typography]{font-size:clamp(var(--v-font-heading-1-size-min),var(--_v17b0f5,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(.volvo_v0) :where(h2:not([class])),:where(.volvo_v0) .heading-2{font:var(--v-font-heading-2)}:where(.volvo_v0) .heading-2[data-fluid-typography]{font-size:clamp(var(--v-font-heading-2-size-min),var(--_v17b0f5,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(.volvo_v0) :where(h3:not([class])),:where(.volvo_v0) .heading-3{font:var(--v-font-heading-3)}:where(.volvo_v0) .heading-3[data-fluid-typography]{font-size:clamp(var(--v-font-heading-3-size-min),var(--_v17b0f5,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(.volvo_v0) :where(a[href]:not([class])),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline{color:var(--v-color-foreground-secondary);-webkit-text-decoration-line:underline;text-decoration-line:underline}:where(.volvo_v0) :where(ul,ol).list,:where(.volvo_v0) :where(ul,ol):where(:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.volvo_v0) .statement-1{font:var(--v-font-statement-1)}:where(.volvo_v0) .statement-1[data-fluid-typography]{font-size:clamp(var(--v-font-statement-1-size-min),var(--_v17b0f5),var(--v-font-statement-1-size-max))}:where(.volvo_v0) .statement-2{font:var(--v-font-statement-2)}:where(.volvo_v0) .statement-2[data-fluid-typography]{font-size:clamp(var(--v-font-statement-2-size-min),var(--_v17b0f5),var(--v-font-statement-2-size-max))}:where(.volvo_v0) .statement-3{font:var(--v-font-statement-3)}:where(.volvo_v0) .statement-3[data-fluid-typography]{font-size:clamp(var(--v-font-statement-3-size-min),var(--_v17b0f5),var(--v-font-statement-3-size-max))}:where(.volvo_v0) .statement-signature{font:var(--v-font-statement-signature);letter-spacing:.02em}:where(.volvo_v0) .statement-signature:where([data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v17b0f5),var(--v-font-statement-signature-size-max))}:where(.volvo_v0) .bg-inherit{background-color:inherit}:where(.volvo_v0) .bg-transparent{background-color:#0000}:where(.volvo_v0) .bg-always-black{background-color:var(--v-color-always-black)}:where(.volvo_v0) .bg-always-white{background-color:var(--v-color-always-white)}:where(.volvo_v0) .bg-primary{background-color:var(--v-color-background-primary)}:where(.volvo_v0) .bg-secondary{background-color:var(--v-color-background-secondary)}:where(.volvo_v0) .bg-accent-blue{background-color:var(--v-color-background-accent-blue)}:where(.volvo_v0) .bg-feedback-green{background-color:var(--v-color-background-feedback-green)}:where(.volvo_v0) .bg-feedback-orange{background-color:var(--v-color-background-feedback-orange)}:where(.volvo_v0) .bg-feedback-red{background-color:var(--v-color-background-feedback-red)}:where(.volvo_v0) .flex,:where(.volvo_v0) .flex-col,:where(.volvo_v0) .flex-row{display:flex}:where(.volvo_v0) .flex-row{flex-direction:row}:where(.volvo_v0) .flex-col{flex-direction:column}:where(.volvo_v0) .flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .flex-grow{flex-grow:1}:where(.volvo_v0) .flex-grow-0{flex-grow:0}:where(.volvo_v0) .flex-shrink{flex-shrink:1}:where(.volvo_v0) .flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .flex-items-start{align-items:flex-start}:where(.volvo_v0) .flex-items-end{align-items:flex-end}:where(.volvo_v0) .flex-items-center{align-items:center}:where(.volvo_v0) .flex-items-stretch{align-items:stretch}:where(.volvo_v0) .flex-self-start{align-self:flex-start}:where(.volvo_v0) .flex-self-end{align-self:flex-end}:where(.volvo_v0) .flex-self-center{align-self:center}:where(.volvo_v0) .flex-self-stretch{align-self:stretch}:where(.volvo_v0) .flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .flex-justify-around{justify-content:space-around}:where(.volvo_v0) .flex-justify-between{justify-content:space-between}:where(.volvo_v0) .flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .flex-justify-center{justify-content:center}:where(.volvo_v0) .title-24{font-size:var(--v-font-title-24-size);line-height:var(--v-font-title-24-lineheight)}:where(.volvo_v0) .title-20{font-size:var(--v-font-title-20-size);line-height:var(--v-font-title-20-lineheight)}:where(.volvo_v0) .body-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}:where(.volvo_v0) :where(small:not([class])),:where(.volvo_v0) .micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}:where(.volvo_v0) .font-medium{font-weight:500}:where(.volvo_v0) .font-light{font-weight:300}:where(.volvo_v0) .hyphens{-webkit-hyphens:auto;hyphens:auto}:where(.volvo_v0) .hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}:where(.volvo_v0) .block{display:block}:where(.volvo_v0) .empty\:hidden:empty,:where(.volvo_v0) .hidden{display:none}@media (max-width:calc(30rem - .001px)){:where(.volvo_v0) .until-md\:hidden{display:none}}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .until-lg\:hidden{display:none}}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .until-xl\:hidden{display:none}}:where(.volvo_v0) .m-0{margin:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .mr-0{margin-inline-end:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .ml-0{margin-inline-start:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mt-0{margin-top:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mb-0{margin-bottom:0}:where(.volvo_v0) .m-4{margin:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .mr-4{margin-inline-end:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .ml-4{margin-inline-start:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mt-4{margin-top:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mb-4{margin-bottom:.25rem}:where(.volvo_v0) .m-8{margin:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .mr-8{margin-inline-end:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .ml-8{margin-inline-start:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mt-8{margin-top:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mb-8{margin-bottom:.5rem}:where(.volvo_v0) .m-16{margin:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .mr-16{margin-inline-end:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .ml-16{margin-inline-start:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mt-16{margin-top:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mb-16{margin-bottom:1rem}:where(.volvo_v0) .m-24{margin:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .mr-24{margin-inline-end:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .ml-24{margin-inline-start:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mt-24{margin-top:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mb-24{margin-bottom:1.5rem}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mt-section{margin-top:var(--v-space-section)}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mb-section{margin-bottom:var(--v-space-section)}:where(.volvo_v0) .p-0{padding:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pr-0{padding-inline-end:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pl-0{padding-inline-start:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pt-0{padding-top:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pb-0{padding-bottom:0}:where(.volvo_v0) .p-4{padding:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pr-4{padding-inline-end:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pl-4{padding-inline-start:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pt-4{padding-top:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pb-4{padding-bottom:.25rem}:where(.volvo_v0) .p-8{padding:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pr-8{padding-inline-end:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pl-8{padding-inline-start:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pt-8{padding-top:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pb-8{padding-bottom:.5rem}:where(.volvo_v0) .p-16{padding:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pr-16{padding-inline-end:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pl-16{padding-inline-start:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pt-16{padding-top:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pb-16{padding-bottom:1rem}:where(.volvo_v0) .p-24{padding:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pr-24{padding-inline-end:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pl-24{padding-inline-start:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pt-24{padding-top:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pb-24{padding-bottom:1.5rem}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pt-section{padding-top:var(--v-space-section)}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pb-section{padding-bottom:var(--v-space-section)}:where(.volvo_v0) .text-start{text-align:start}:where(.volvo_v0) .text-end{text-align:end}:where(.volvo_v0) .text-center{text-align:center}:where(.volvo_v0) .text-inherit{color:inherit}:where(.volvo_v0) .text-always-black{color:var(--v-color-always-black)}:where(.volvo_v0) .text-always-white{color:var(--v-color-always-white)}:where(.volvo_v0) .text-primary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .text-secondary{color:var(--v-color-foreground-secondary)}:where(.volvo_v0) .text-accent-blue{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) .text-feedback-green{color:var(--v-color-foreground-feedback-green)}:where(.volvo_v0) .text-feedback-orange{color:var(--v-color-foreground-feedback-orange)}:where(.volvo_v0) .text-feedback-red{color:var(--v-color-foreground-feedback-red)}
|
package/dist/styles.d.ts
CHANGED
|
@@ -1,150 +1,5 @@
|
|
|
1
1
|
export interface ClassNames {
|
|
2
|
-
|
|
3
|
-
readonly bgAccentBlue: 'bg-accent-blue';
|
|
4
|
-
readonly bgAlwaysBlack: 'bg-always-black';
|
|
5
|
-
readonly bgAlwaysWhite: 'bg-always-white';
|
|
6
|
-
readonly bgFeedbackGreen: 'bg-feedback-green';
|
|
7
|
-
readonly bgFeedbackOrange: 'bg-feedback-orange';
|
|
8
|
-
readonly bgFeedbackRed: 'bg-feedback-red';
|
|
9
|
-
readonly bgInherit: 'bg-inherit';
|
|
10
|
-
readonly bgPrimary: 'bg-primary';
|
|
11
|
-
readonly bgSecondary: 'bg-secondary';
|
|
12
|
-
readonly bgTransparent: 'bg-transparent';
|
|
13
|
-
readonly body16: 'body-16';
|
|
14
|
-
readonly checkbox: 'checkbox';
|
|
15
|
-
readonly flex: 'flex';
|
|
16
|
-
readonly flexCol: 'flex-col';
|
|
17
|
-
readonly flexGrow: 'flex-grow';
|
|
18
|
-
readonly flexGrow0: 'flex-grow-0';
|
|
19
|
-
readonly flexItemsCenter: 'flex-items-center';
|
|
20
|
-
readonly flexItemsEnd: 'flex-items-end';
|
|
21
|
-
readonly flexItemsStart: 'flex-items-start';
|
|
22
|
-
readonly flexItemsStretch: 'flex-items-stretch';
|
|
23
|
-
readonly flexJustifyAround: 'flex-justify-around';
|
|
24
|
-
readonly flexJustifyBetween: 'flex-justify-between';
|
|
25
|
-
readonly flexJustifyCenter: 'flex-justify-center';
|
|
26
|
-
readonly flexJustifyEnd: 'flex-justify-end';
|
|
27
|
-
readonly flexJustifyEvenly: 'flex-justify-evenly';
|
|
28
|
-
readonly flexJustifyStart: 'flex-justify-start';
|
|
29
|
-
readonly flexNowrap: 'flex-nowrap';
|
|
30
|
-
readonly flexRow: 'flex-row';
|
|
31
|
-
readonly flexSelfCenter: 'flex-self-center';
|
|
32
|
-
readonly flexSelfEnd: 'flex-self-end';
|
|
33
|
-
readonly flexSelfStart: 'flex-self-start';
|
|
34
|
-
readonly flexSelfStretch: 'flex-self-stretch';
|
|
35
|
-
readonly flexShrink: 'flex-shrink';
|
|
36
|
-
readonly flexShrink0: 'flex-shrink-0';
|
|
37
|
-
readonly flexWrap: 'flex-wrap';
|
|
38
|
-
readonly fontLight: 'font-light';
|
|
39
|
-
readonly fontMedium: 'font-medium';
|
|
40
|
-
readonly heading1: 'heading-1';
|
|
41
|
-
readonly heading2: 'heading-2';
|
|
42
|
-
readonly heading3: 'heading-3';
|
|
43
|
-
readonly hyphens: 'hyphens';
|
|
44
|
-
readonly linkInline: 'link-inline';
|
|
45
|
-
readonly list: 'list';
|
|
46
|
-
readonly m0: 'm-0';
|
|
47
|
-
readonly m16: 'm-16';
|
|
48
|
-
readonly m24: 'm-24';
|
|
49
|
-
readonly m4: 'm-4';
|
|
50
|
-
readonly m8: 'm-8';
|
|
51
|
-
readonly mb0: 'mb-0';
|
|
52
|
-
readonly mb16: 'mb-16';
|
|
53
|
-
readonly mb24: 'mb-24';
|
|
54
|
-
readonly mb4: 'mb-4';
|
|
55
|
-
readonly mb8: 'mb-8';
|
|
56
|
-
readonly mbSection: 'mb-section';
|
|
57
|
-
readonly micro: 'micro';
|
|
58
|
-
readonly ml0: 'ml-0';
|
|
59
|
-
readonly ml16: 'ml-16';
|
|
60
|
-
readonly ml24: 'ml-24';
|
|
61
|
-
readonly ml4: 'ml-4';
|
|
62
|
-
readonly ml8: 'ml-8';
|
|
63
|
-
readonly mr0: 'mr-0';
|
|
64
|
-
readonly mr16: 'mr-16';
|
|
65
|
-
readonly mr24: 'mr-24';
|
|
66
|
-
readonly mr4: 'mr-4';
|
|
67
|
-
readonly mr8: 'mr-8';
|
|
68
|
-
readonly mt0: 'mt-0';
|
|
69
|
-
readonly mt16: 'mt-16';
|
|
70
|
-
readonly mt24: 'mt-24';
|
|
71
|
-
readonly mt4: 'mt-4';
|
|
72
|
-
readonly mt8: 'mt-8';
|
|
73
|
-
readonly mtSection: 'mt-section';
|
|
74
|
-
readonly mx0: 'mx-0';
|
|
75
|
-
readonly mx16: 'mx-16';
|
|
76
|
-
readonly mx24: 'mx-24';
|
|
77
|
-
readonly mx4: 'mx-4';
|
|
78
|
-
readonly mx8: 'mx-8';
|
|
79
|
-
readonly my0: 'my-0';
|
|
80
|
-
readonly my16: 'my-16';
|
|
81
|
-
readonly my24: 'my-24';
|
|
82
|
-
readonly my4: 'my-4';
|
|
83
|
-
readonly my8: 'my-8';
|
|
84
|
-
readonly mySection: 'my-section';
|
|
85
|
-
readonly p0: 'p-0';
|
|
86
|
-
readonly p16: 'p-16';
|
|
87
|
-
readonly p24: 'p-24';
|
|
88
|
-
readonly p4: 'p-4';
|
|
89
|
-
readonly p8: 'p-8';
|
|
90
|
-
readonly pb0: 'pb-0';
|
|
91
|
-
readonly pb16: 'pb-16';
|
|
92
|
-
readonly pb24: 'pb-24';
|
|
93
|
-
readonly pb4: 'pb-4';
|
|
94
|
-
readonly pb8: 'pb-8';
|
|
95
|
-
readonly pbSection: 'pb-section';
|
|
96
|
-
readonly pl0: 'pl-0';
|
|
97
|
-
readonly pl16: 'pl-16';
|
|
98
|
-
readonly pl24: 'pl-24';
|
|
99
|
-
readonly pl4: 'pl-4';
|
|
100
|
-
readonly pl8: 'pl-8';
|
|
101
|
-
readonly pr0: 'pr-0';
|
|
102
|
-
readonly pr16: 'pr-16';
|
|
103
|
-
readonly pr24: 'pr-24';
|
|
104
|
-
readonly pr4: 'pr-4';
|
|
105
|
-
readonly pr8: 'pr-8';
|
|
106
|
-
readonly pt0: 'pt-0';
|
|
107
|
-
readonly pt16: 'pt-16';
|
|
108
|
-
readonly pt24: 'pt-24';
|
|
109
|
-
readonly pt4: 'pt-4';
|
|
110
|
-
readonly pt8: 'pt-8';
|
|
111
|
-
readonly ptSection: 'pt-section';
|
|
112
|
-
readonly px0: 'px-0';
|
|
113
|
-
readonly px16: 'px-16';
|
|
114
|
-
readonly px24: 'px-24';
|
|
115
|
-
readonly px4: 'px-4';
|
|
116
|
-
readonly px8: 'px-8';
|
|
117
|
-
readonly py0: 'py-0';
|
|
118
|
-
readonly py16: 'py-16';
|
|
119
|
-
readonly py24: 'py-24';
|
|
120
|
-
readonly py4: 'py-4';
|
|
121
|
-
readonly py8: 'py-8';
|
|
122
|
-
readonly pySection: 'py-section';
|
|
123
|
-
readonly radio: 'radio';
|
|
124
|
-
readonly stack16: 'stack-16';
|
|
125
|
-
readonly stack24: 'stack-24';
|
|
126
|
-
readonly stack4: 'stack-4';
|
|
127
|
-
readonly stack8: 'stack-8';
|
|
128
|
-
readonly stackSection: 'stack-section';
|
|
129
|
-
readonly stackText: 'stack-text';
|
|
130
|
-
readonly statement1: 'statement-1';
|
|
131
|
-
readonly statement2: 'statement-2';
|
|
132
|
-
readonly statement3: 'statement-3';
|
|
133
|
-
readonly statementSignature: 'statement-signature';
|
|
134
|
-
readonly textAccentBlue: 'text-accent-blue';
|
|
135
|
-
readonly textAlwaysBlack: 'text-always-black';
|
|
136
|
-
readonly textAlwaysWhite: 'text-always-white';
|
|
137
|
-
readonly textCenter: 'text-center';
|
|
138
|
-
readonly textEnd: 'text-end';
|
|
139
|
-
readonly textFeedbackGreen: 'text-feedback-green';
|
|
140
|
-
readonly textFeedbackOrange: 'text-feedback-orange';
|
|
141
|
-
readonly textFeedbackRed: 'text-feedback-red';
|
|
142
|
-
readonly textInherit: 'text-inherit';
|
|
143
|
-
readonly textPrimary: 'text-primary';
|
|
144
|
-
readonly textSecondary: 'text-secondary';
|
|
145
|
-
readonly textStart: 'text-start';
|
|
146
|
-
readonly title20: 'title-20';
|
|
147
|
-
readonly title24: 'title-24';
|
|
2
|
+
[key: string]: string;
|
|
148
3
|
}
|
|
149
|
-
declare const vss:
|
|
4
|
+
declare const vss: any;
|
|
150
5
|
export default vss;
|
package/dist/styles.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{a
|
|
1
|
+
import{a}from"./chunk-ULL7MQIG.js";import"./chunk-Q6P47KLU.js";export{a as default};
|
|
2
2
|
//# sourceMappingURL=styles.js.map
|
package/dist/styles.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/styles.json
CHANGED
|
@@ -9,8 +9,10 @@
|
|
|
9
9
|
"bg-primary",
|
|
10
10
|
"bg-secondary",
|
|
11
11
|
"bg-transparent",
|
|
12
|
+
"block",
|
|
12
13
|
"body-16",
|
|
13
14
|
"checkbox",
|
|
15
|
+
"empty:hidden",
|
|
14
16
|
"flex",
|
|
15
17
|
"flex-col",
|
|
16
18
|
"flex-grow",
|
|
@@ -39,6 +41,7 @@
|
|
|
39
41
|
"heading-1",
|
|
40
42
|
"heading-2",
|
|
41
43
|
"heading-3",
|
|
44
|
+
"hidden",
|
|
42
45
|
"hyphens",
|
|
43
46
|
"link-inline",
|
|
44
47
|
"list",
|
|
@@ -144,5 +147,8 @@
|
|
|
144
147
|
"text-start",
|
|
145
148
|
"title-20",
|
|
146
149
|
"title-24",
|
|
150
|
+
"until-lg:hidden",
|
|
151
|
+
"until-md:hidden",
|
|
152
|
+
"until-xl:hidden",
|
|
147
153
|
"volvo_v0"
|
|
148
154
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.volvo_v0,:where(.volvo_v0) [data-color-mode]{color:var(--v-color-foreground-primary);color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0)[data-color-mode=dark],:where(.volvo_v0) [data-color-mode=dark]{color-scheme:dark}.volvo_v0{--_v85627f:initial;font:var(--v-font-16);tab-size:4}.volvo_v0:lang(ar),.volvo_v0:lang(he){--_v85627f: }:where(.volvo_v0) :where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100%,var(--v-font-14-size))}:where(.volvo_v0) :where(pre){white-space:break-spaces}:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{box-sizing:border-box}:where(.volvo_v0) :where(:not(progress,meter)){border-color:var(--v-color-ornament-primary);border-style:solid;border-width:0}:where(.volvo_v0 body,body.volvo_v0){min-height:100vh;min-height:100dvh;scrollbar-gutter:stable;background-color:var(--v-color-background-primary);margin:0}:where(.volvo_v0) :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(.volvo_v0) :where(button,input,ol,ul,legend,fieldset){padding:0}:where(.volvo_v0) :where(a){color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(.volvo_v0) :where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.volvo_v0) :where(img,picture,video,canvas,svg){max-width:100%}:where(.volvo_v0) :where(ol,ul){list-style:none}:where(.volvo_v0) :where(button,input:is([type=button],[type=reset],[type=submit])){-webkit-appearance:button;appearance:button;color:inherit;background-color:#0000}:where(.volvo_v0) :where(summary:is(details[class]>*,[class])){list-style:none}:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::marker,:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(.volvo_v0) :where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font:inherit}:where(.volvo_v0) :where(b,strong){font-weight:500}:where(.volvo_v0) :where(button,input,optgroup,select){line-height:1.3}:where(.volvo_v0) :where(textarea){resize:vertical}:where(.volvo_v0) :where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(.volvo_v0) [data-fluid-typography=min]{--_v17b0f5:0rem}:where(.volvo_v0) [data-fluid-typography=max]{--_v17b0f5:9rem}@media (prefers-reduced-motion:reduce){:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(.volvo_v0) :is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-section,.stack-text)>*+*{margin-top:var(--stack-gap)}:where(.volvo_v0) .stack-section>*{--stack-gap:var(--v-space-section)}:where(.volvo_v0) .stack-4>*{--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-8>*{--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-16>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-24>*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.title-20,.title-20:first-child)+:where(.body-16,.list,.micro,:is(p,ul,small):not([class])){--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-text>:where(.body-16.font-medium)+:where(.body-16,p:not([class])){--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])))+:where(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.volvo_v0) :where(.stack-text)>.statement-3+*,:where(.volvo_v0) :where(.stack-text)>.statement-3+:where(.heading-3,h3:not([class]))+*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>:where(.micro,small:not([class]))+:where(.micro,small:not([class])){--stack-gap:0rem}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])){width:var(--v-space-16);height:var(--v-space-16);-webkit-appearance:none;appearance:none;background-color:var(--v-color-background-primary);border:1px solid var(--v-color-foreground-secondary);border-radius:var(--v-radius-4);place-content:center;margin-top:.25em;transition:box-shadow .3s;display:inline-grid}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):before{width:var(--v-space-16);height:var(--v-space-16);content:"";background-color:var(--v-color-background-accent-blue);border-radius:var(--v-radius-4);opacity:0;transition:transform .1s ease-in-out,background-color .3s,outline .3s,opacity .2s}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):after{content:"";opacity:1;position:absolute}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])){border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):before{border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=checkbox]):is(.checkbox,:not([class])):after{--_v7e5a12:var(--_v85627f)-2px,-5px;width:var(--v-space-4);height:var(--v-space-8);content:"";transform:scaleX(-1)rotate(135deg)translate(var(--_v7e5a12,5px,2px));border-color:#0000;transition:border-top-color .15s linear,border-right-color .15s linear .1s}:where(.volvo_v0) :where([type=checkbox]:is(.checkbox,:not([class]))):checked:after{border-top:1px solid var(--v-color-always-white);border-right:1px solid var(--v-color-always-white)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):after{width:8px;height:8px;background-color:var(--v-color-always-white);border-radius:var(--v-radius-full);transition:transform .25s;transform:matrix(0,.001,.001,0,3,3)}:where(.volvo_v0) :where([type=radio]:is(.radio,:not([class]))):checked:after{--_v9bae6e:var(--_v85627f)-3;transform:matrix(0,1,1,0,var(--_v9bae6e,3),3)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled:after{border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled{background-color:var(--v-color-background-secondary);border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):is(:active,:checked)):enabled:before{opacity:1}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))[aria-invalid]:not([aria-invalid=false]),:is(fieldset,[role=radiogroup])[aria-invalid]:not([aria-invalid=false]) [type=radio]:is(.radio,:not([class]))):not(:disabled,:hover){border-color:var(--v-color-foreground-feedback-red);box-shadow:inset 0 0 0 1px var(--v-color-foreground-feedback-red)}:where(.volvo_v0) :where(h1:not([class])),:where(.volvo_v0) .heading-1{font:var(--v-font-heading-1)}:where(.volvo_v0) .heading-1[data-fluid-typography]{font-size:clamp(var(--v-font-heading-1-size-min),var(--_v17b0f5,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(.volvo_v0) :where(h2:not([class])),:where(.volvo_v0) .heading-2{font:var(--v-font-heading-2)}:where(.volvo_v0) .heading-2[data-fluid-typography]{font-size:clamp(var(--v-font-heading-2-size-min),var(--_v17b0f5,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(.volvo_v0) :where(h3:not([class])),:where(.volvo_v0) .heading-3{font:var(--v-font-heading-3)}:where(.volvo_v0) .heading-3[data-fluid-typography]{font-size:clamp(var(--v-font-heading-3-size-min),var(--_v17b0f5,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(.volvo_v0) :where(a[href]:not([class])),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline{color:var(--v-color-foreground-secondary);-webkit-text-decoration-line:underline;text-decoration-line:underline}:where(.volvo_v0) :where(ul,ol).list,:where(.volvo_v0) :where(ul,ol):where(:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.volvo_v0) .statement-1{font:var(--v-font-statement-1)}:where(.volvo_v0) .statement-1[data-fluid-typography]{font-size:clamp(var(--v-font-statement-1-size-min),var(--_v17b0f5),var(--v-font-statement-1-size-max))}:where(.volvo_v0) .statement-2{font:var(--v-font-statement-2)}:where(.volvo_v0) .statement-2[data-fluid-typography]{font-size:clamp(var(--v-font-statement-2-size-min),var(--_v17b0f5),var(--v-font-statement-2-size-max))}:where(.volvo_v0) .statement-3{font:var(--v-font-statement-3)}:where(.volvo_v0) .statement-3[data-fluid-typography]{font-size:clamp(var(--v-font-statement-3-size-min),var(--_v17b0f5),var(--v-font-statement-3-size-max))}:where(.volvo_v0) .statement-signature{font:var(--v-font-statement-signature);letter-spacing:.02em}:where(.volvo_v0) .statement-signature:where([data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v17b0f5),var(--v-font-statement-signature-size-max))}:where(.volvo_v0) .bg-inherit{background-color:inherit}:where(.volvo_v0) .bg-transparent{background-color:#0000}:where(.volvo_v0) .bg-always-black{background-color:var(--v-color-always-black)}:where(.volvo_v0) .bg-always-white{background-color:var(--v-color-always-white)}:where(.volvo_v0) .bg-primary{background-color:var(--v-color-background-primary)}:where(.volvo_v0) .bg-secondary{background-color:var(--v-color-background-secondary)}:where(.volvo_v0) .bg-accent-blue{background-color:var(--v-color-background-accent-blue)}:where(.volvo_v0) .bg-feedback-green{background-color:var(--v-color-background-feedback-green)}:where(.volvo_v0) .bg-feedback-orange{background-color:var(--v-color-background-feedback-orange)}:where(.volvo_v0) .bg-feedback-red{background-color:var(--v-color-background-feedback-red)}:where(.volvo_v0) .flex,:where(.volvo_v0) .flex-col,:where(.volvo_v0) .flex-row{display:flex}:where(.volvo_v0) .flex-row{flex-direction:row}:where(.volvo_v0) .flex-col{flex-direction:column}:where(.volvo_v0) .flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .flex-grow{flex-grow:1}:where(.volvo_v0) .flex-grow-0{flex-grow:0}:where(.volvo_v0) .flex-shrink{flex-shrink:1}:where(.volvo_v0) .flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .flex-items-start{align-items:flex-start}:where(.volvo_v0) .flex-items-end{align-items:flex-end}:where(.volvo_v0) .flex-items-center{align-items:center}:where(.volvo_v0) .flex-items-stretch{align-items:stretch}:where(.volvo_v0) .flex-self-start{align-self:flex-start}:where(.volvo_v0) .flex-self-end{align-self:flex-end}:where(.volvo_v0) .flex-self-center{align-self:center}:where(.volvo_v0) .flex-self-stretch{align-self:stretch}:where(.volvo_v0) .flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .flex-justify-around{justify-content:space-around}:where(.volvo_v0) .flex-justify-between{justify-content:space-between}:where(.volvo_v0) .flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .flex-justify-center{justify-content:center}:where(.volvo_v0) .title-24{font-size:var(--v-font-title-24-size);line-height:var(--v-font-title-24-lineheight)}:where(.volvo_v0) .title-20{font-size:var(--v-font-title-20-size);line-height:var(--v-font-title-20-lineheight)}:where(.volvo_v0) .body-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}:where(.volvo_v0) :where(small:not([class])),:where(.volvo_v0) .micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}:where(.volvo_v0) .font-medium{font-weight:500}:where(.volvo_v0) .font-light{font-weight:300}:where(.volvo_v0) .hyphens{-webkit-hyphens:auto;hyphens:auto}:where(.volvo_v0) .hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}:where(.volvo_v0) .m-0{margin:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .mr-0{margin-inline-end:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .ml-0{margin-inline-start:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mt-0{margin-top:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mb-0{margin-bottom:0}:where(.volvo_v0) .m-4{margin:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .mr-4{margin-inline-end:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .ml-4{margin-inline-start:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mt-4{margin-top:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mb-4{margin-bottom:.25rem}:where(.volvo_v0) .m-8{margin:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .mr-8{margin-inline-end:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .ml-8{margin-inline-start:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mt-8{margin-top:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mb-8{margin-bottom:.5rem}:where(.volvo_v0) .m-16{margin:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .mr-16{margin-inline-end:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .ml-16{margin-inline-start:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mt-16{margin-top:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mb-16{margin-bottom:1rem}:where(.volvo_v0) .m-24{margin:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .mr-24{margin-inline-end:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .ml-24{margin-inline-start:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mt-24{margin-top:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mb-24{margin-bottom:1.5rem}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mt-section{margin-top:var(--v-space-section)}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mb-section{margin-bottom:var(--v-space-section)}:where(.volvo_v0) .p-0{padding:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pr-0{padding-inline-end:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pl-0{padding-inline-start:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pt-0{padding-top:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pb-0{padding-bottom:0}:where(.volvo_v0) .p-4{padding:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pr-4{padding-inline-end:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pl-4{padding-inline-start:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pt-4{padding-top:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pb-4{padding-bottom:.25rem}:where(.volvo_v0) .p-8{padding:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pr-8{padding-inline-end:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pl-8{padding-inline-start:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pt-8{padding-top:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pb-8{padding-bottom:.5rem}:where(.volvo_v0) .p-16{padding:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pr-16{padding-inline-end:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pl-16{padding-inline-start:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pt-16{padding-top:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pb-16{padding-bottom:1rem}:where(.volvo_v0) .p-24{padding:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pr-24{padding-inline-end:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pl-24{padding-inline-start:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pt-24{padding-top:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pb-24{padding-bottom:1.5rem}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pt-section{padding-top:var(--v-space-section)}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pb-section{padding-bottom:var(--v-space-section)}:where(.volvo_v0) .text-start{text-align:start}:where(.volvo_v0) .text-end{text-align:end}:where(.volvo_v0) .text-center{text-align:center}:where(.volvo_v0) .text-inherit{color:inherit}:where(.volvo_v0) .text-always-black{color:var(--v-color-always-black)}:where(.volvo_v0) .text-always-white{color:var(--v-color-always-white)}:where(.volvo_v0) .text-primary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .text-secondary{color:var(--v-color-foreground-secondary)}:where(.volvo_v0) .text-accent-blue{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) .text-feedback-green{color:var(--v-color-foreground-feedback-green)}:where(.volvo_v0) .text-feedback-orange{color:var(--v-color-foreground-feedback-orange)}:where(.volvo_v0) .text-feedback-red{color:var(--v-color-foreground-feedback-red)}@media (hover:hover){:where(.volvo_v0) :where(:-webkit-any(button,[type=button],[type=reset],[type=submit],[type=checkbox],[type=radio],label[for],summary,[role=button],[role=link]):not(:disabled,[aria-disabled])),:where(.volvo_v0) :where([type=file]:not(:disabled,[aria-disabled]))::-webkit-file-upload-button{cursor:pointer}:where(.volvo_v0) :where(:is(button,[type=button],[type=reset],[type=submit],[type=checkbox],[type=radio],label[for],summary,[role=button],[role=link]):not(:disabled,[aria-disabled])),:where(.volvo_v0) :where([type=file]:not(:disabled,[aria-disabled]))::file-selector-button{cursor:pointer}:where(.volvo_v0) :where(input:is(:disabled,[aria-disabled])+label:hover){cursor:default}:where(.volvo_v0) :where(a[href]:not([class]):hover),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline:hover{color:var(--v-color-foreground-primary);-webkit-text-decoration-line:none;text-decoration-line:none}:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).UNSTABLE_link-secondary:hover{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):enabled:checked):hover:before{background-color:var(--_v492382)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):enabled):hover{box-shadow:inset 0 0 0 1px var(--v-color-background-accent-blue)}}@media (min-width:30rem){:where(.volvo_v0) .md\:flex,:where(.volvo_v0) .md\:flex-col,:where(.volvo_v0) .md\:flex-row{display:flex}:where(.volvo_v0) .md\:flex-row{flex-direction:row}:where(.volvo_v0) .md\:flex-col{flex-direction:column}:where(.volvo_v0) .md\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .md\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .md\:flex-grow{flex-grow:1}:where(.volvo_v0) .md\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .md\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .md\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .md\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .md\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .md\:flex-items-center{align-items:center}:where(.volvo_v0) .md\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .md\:flex-self-start{align-self:start}:where(.volvo_v0) .md\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .md\:flex-self-center{align-self:center}:where(.volvo_v0) .md\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .md\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .md\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .md\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .md\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .md\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .md\:flex-justify-center{justify-content:center}}@media (min-width:30rem){:where(.volvo_v0) .md\:text-start{text-align:start}:where(.volvo_v0) .md\:text-end{text-align:end}:where(.volvo_v0) .md\:text-center{text-align:center}}@media (min-width:30rem){}@media (min-width:64rem){:where(.volvo_v0) .lg\:flex,:where(.volvo_v0) .lg\:flex-col,:where(.volvo_v0) .lg\:flex-row{display:flex}:where(.volvo_v0) .lg\:flex-row{flex-direction:row}:where(.volvo_v0) .lg\:flex-col{flex-direction:column}:where(.volvo_v0) .lg\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .lg\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .lg\:flex-grow{flex-grow:1}:where(.volvo_v0) .lg\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .lg\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .lg\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .lg\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .lg\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .lg\:flex-items-center{align-items:center}:where(.volvo_v0) .lg\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .lg\:flex-self-start{align-self:start}:where(.volvo_v0) .lg\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .lg\:flex-self-center{align-self:center}:where(.volvo_v0) .lg\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .lg\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .lg\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .lg\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .lg\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .lg\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .lg\:flex-justify-center{justify-content:center}}@media (min-width:64rem){:where(.volvo_v0) .lg\:text-start{text-align:start}:where(.volvo_v0) .lg\:text-end{text-align:end}:where(.volvo_v0) .lg\:text-center{text-align:center}}@media (min-width:64rem){}
|
|
1
|
+
.volvo_v0,:where(.volvo_v0) [data-color-mode]{color:var(--v-color-foreground-primary);color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0)[data-color-mode=dark],:where(.volvo_v0) [data-color-mode=dark]{color-scheme:dark}.volvo_v0{--_v85627f:initial;font:var(--v-font-16);tab-size:4}.volvo_v0:lang(ar),.volvo_v0:lang(he){--_v85627f: }.volvo_v0:lang(bg){font-feature-settings:"locl" 0}:where(.volvo_v0) :where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100%,var(--v-font-14-size))}:where(.volvo_v0) :where(pre){white-space:break-spaces}:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{box-sizing:border-box}:where(.volvo_v0) :where(:not(progress,meter)){border-color:var(--v-color-ornament-primary);border-style:solid;border-width:0}:where(.volvo_v0 body,body.volvo_v0){min-height:100vh;min-height:100dvh;scrollbar-gutter:stable;background-color:var(--v-color-background-primary);margin:0}:where(.volvo_v0) :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(.volvo_v0) :where(button,input,ol,ul,legend,fieldset){padding:0}:where(.volvo_v0) :where(a){color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(.volvo_v0) :where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.volvo_v0) :where(img,picture,video,canvas,svg){max-width:100%}:where(.volvo_v0) :where(ol,ul){list-style:none}:where(.volvo_v0) :where(button,input:is([type=button],[type=reset],[type=submit])){-webkit-appearance:button;appearance:button;color:inherit;background-color:#0000}:where(.volvo_v0) :where(summary:is(details[class]>*,[class])){list-style:none}:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::marker,:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(.volvo_v0) :where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font:inherit}:where(.volvo_v0) :where(b,strong){font-weight:500}:where(.volvo_v0) :where(button,input,optgroup,select){line-height:1.3}:where(.volvo_v0) :where(textarea){resize:vertical}:where(.volvo_v0) :where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(.volvo_v0) [data-fluid-typography=min]{--_v17b0f5:0rem}:where(.volvo_v0) [data-fluid-typography=max]{--_v17b0f5:9rem}@media (prefers-reduced-motion:reduce){:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(.volvo_v0) :is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-section,.stack-text)>*+*{margin-top:var(--stack-gap)}:where(.volvo_v0) .stack-section>*{--stack-gap:var(--v-space-section)}:where(.volvo_v0) .stack-4>*{--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-8>*{--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-16>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-24>*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.title-20,.title-20:first-child)+:where(.body-16,.list,.micro,:is(p,ul,small):not([class])){--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-text>:where(.body-16.font-medium)+:where(.body-16,p:not([class])){--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])))+:where(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.volvo_v0) :where(.stack-text)>.statement-3+*,:where(.volvo_v0) :where(.stack-text)>.statement-3+:where(.heading-3,h3:not([class]))+*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>:where(.micro,small:not([class]))+:where(.micro,small:not([class])){--stack-gap:0rem}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])){width:var(--v-space-16);height:var(--v-space-16);-webkit-appearance:none;appearance:none;background-color:var(--v-color-background-primary);border:1px solid var(--v-color-foreground-secondary);border-radius:var(--v-radius-4);place-content:center;margin-top:.25em;transition:box-shadow .3s;display:inline-grid}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):before{width:var(--v-space-16);height:var(--v-space-16);content:"";background-color:var(--v-color-background-accent-blue);border-radius:var(--v-radius-4);opacity:0;transition:transform .1s ease-in-out,background-color .3s,outline .3s,opacity .2s}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):after{content:"";opacity:1;position:absolute}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])){border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):before{border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=checkbox]):is(.checkbox,:not([class])):after{--_v7e5a12:var(--_v85627f)-2px,-5px;width:var(--v-space-4);height:var(--v-space-8);content:"";transform:scaleX(-1)rotate(135deg)translate(var(--_v7e5a12,5px,2px));border-color:#0000;transition:border-top-color .15s linear,border-right-color .15s linear .1s}:where(.volvo_v0) :where([type=checkbox]:is(.checkbox,:not([class]))):checked:after{border-top:1px solid var(--v-color-always-white);border-right:1px solid var(--v-color-always-white)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):after{width:8px;height:8px;background-color:var(--v-color-always-white);border-radius:var(--v-radius-full);transition:transform .25s;transform:matrix(0,.001,.001,0,3,3)}:where(.volvo_v0) :where([type=radio]:is(.radio,:not([class]))):checked:after{--_v9bae6e:var(--_v85627f)-3;transform:matrix(0,1,1,0,var(--_v9bae6e,3),3)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled:after{border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled{background-color:var(--v-color-background-secondary);border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):is(:active,:checked)):enabled:before{opacity:1}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))[aria-invalid]:not([aria-invalid=false]),:is(fieldset,[role=radiogroup])[aria-invalid]:not([aria-invalid=false]) [type=radio]:is(.radio,:not([class]))):not(:disabled,:hover){border-color:var(--v-color-foreground-feedback-red);box-shadow:inset 0 0 0 1px var(--v-color-foreground-feedback-red)}:where(.volvo_v0) :where(h1:not([class])),:where(.volvo_v0) .heading-1{font:var(--v-font-heading-1)}:where(.volvo_v0) .heading-1[data-fluid-typography]{font-size:clamp(var(--v-font-heading-1-size-min),var(--_v17b0f5,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(.volvo_v0) :where(h2:not([class])),:where(.volvo_v0) .heading-2{font:var(--v-font-heading-2)}:where(.volvo_v0) .heading-2[data-fluid-typography]{font-size:clamp(var(--v-font-heading-2-size-min),var(--_v17b0f5,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(.volvo_v0) :where(h3:not([class])),:where(.volvo_v0) .heading-3{font:var(--v-font-heading-3)}:where(.volvo_v0) .heading-3[data-fluid-typography]{font-size:clamp(var(--v-font-heading-3-size-min),var(--_v17b0f5,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(.volvo_v0) :where(a[href]:not([class])),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline{color:var(--v-color-foreground-secondary);-webkit-text-decoration-line:underline;text-decoration-line:underline}:where(.volvo_v0) :where(ul,ol).list,:where(.volvo_v0) :where(ul,ol):where(:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.volvo_v0) .statement-1{font:var(--v-font-statement-1)}:where(.volvo_v0) .statement-1[data-fluid-typography]{font-size:clamp(var(--v-font-statement-1-size-min),var(--_v17b0f5),var(--v-font-statement-1-size-max))}:where(.volvo_v0) .statement-2{font:var(--v-font-statement-2)}:where(.volvo_v0) .statement-2[data-fluid-typography]{font-size:clamp(var(--v-font-statement-2-size-min),var(--_v17b0f5),var(--v-font-statement-2-size-max))}:where(.volvo_v0) .statement-3{font:var(--v-font-statement-3)}:where(.volvo_v0) .statement-3[data-fluid-typography]{font-size:clamp(var(--v-font-statement-3-size-min),var(--_v17b0f5),var(--v-font-statement-3-size-max))}:where(.volvo_v0) .statement-signature{font:var(--v-font-statement-signature);letter-spacing:.02em}:where(.volvo_v0) .statement-signature:where([data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v17b0f5),var(--v-font-statement-signature-size-max))}:where(.volvo_v0) .bg-inherit{background-color:inherit}:where(.volvo_v0) .bg-transparent{background-color:#0000}:where(.volvo_v0) .bg-always-black{background-color:var(--v-color-always-black)}:where(.volvo_v0) .bg-always-white{background-color:var(--v-color-always-white)}:where(.volvo_v0) .bg-primary{background-color:var(--v-color-background-primary)}:where(.volvo_v0) .bg-secondary{background-color:var(--v-color-background-secondary)}:where(.volvo_v0) .bg-accent-blue{background-color:var(--v-color-background-accent-blue)}:where(.volvo_v0) .bg-feedback-green{background-color:var(--v-color-background-feedback-green)}:where(.volvo_v0) .bg-feedback-orange{background-color:var(--v-color-background-feedback-orange)}:where(.volvo_v0) .bg-feedback-red{background-color:var(--v-color-background-feedback-red)}:where(.volvo_v0) .flex,:where(.volvo_v0) .flex-col,:where(.volvo_v0) .flex-row{display:flex}:where(.volvo_v0) .flex-row{flex-direction:row}:where(.volvo_v0) .flex-col{flex-direction:column}:where(.volvo_v0) .flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .flex-grow{flex-grow:1}:where(.volvo_v0) .flex-grow-0{flex-grow:0}:where(.volvo_v0) .flex-shrink{flex-shrink:1}:where(.volvo_v0) .flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .flex-items-start{align-items:flex-start}:where(.volvo_v0) .flex-items-end{align-items:flex-end}:where(.volvo_v0) .flex-items-center{align-items:center}:where(.volvo_v0) .flex-items-stretch{align-items:stretch}:where(.volvo_v0) .flex-self-start{align-self:flex-start}:where(.volvo_v0) .flex-self-end{align-self:flex-end}:where(.volvo_v0) .flex-self-center{align-self:center}:where(.volvo_v0) .flex-self-stretch{align-self:stretch}:where(.volvo_v0) .flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .flex-justify-around{justify-content:space-around}:where(.volvo_v0) .flex-justify-between{justify-content:space-between}:where(.volvo_v0) .flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .flex-justify-center{justify-content:center}:where(.volvo_v0) .title-24{font-size:var(--v-font-title-24-size);line-height:var(--v-font-title-24-lineheight)}:where(.volvo_v0) .title-20{font-size:var(--v-font-title-20-size);line-height:var(--v-font-title-20-lineheight)}:where(.volvo_v0) .body-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}:where(.volvo_v0) :where(small:not([class])),:where(.volvo_v0) .micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}:where(.volvo_v0) .font-medium{font-weight:500}:where(.volvo_v0) .font-light{font-weight:300}:where(.volvo_v0) .hyphens{-webkit-hyphens:auto;hyphens:auto}:where(.volvo_v0) .hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}:where(.volvo_v0) .block{display:block}:where(.volvo_v0) .empty\:hidden:empty,:where(.volvo_v0) .hidden{display:none}@media (max-width:calc(30rem - .001px)){:where(.volvo_v0) .until-md\:hidden{display:none}}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .until-lg\:hidden{display:none}}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .until-xl\:hidden{display:none}}:where(.volvo_v0) .m-0{margin:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .mr-0{margin-inline-end:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .ml-0{margin-inline-start:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mt-0{margin-top:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mb-0{margin-bottom:0}:where(.volvo_v0) .m-4{margin:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .mr-4{margin-inline-end:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .ml-4{margin-inline-start:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mt-4{margin-top:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mb-4{margin-bottom:.25rem}:where(.volvo_v0) .m-8{margin:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .mr-8{margin-inline-end:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .ml-8{margin-inline-start:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mt-8{margin-top:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mb-8{margin-bottom:.5rem}:where(.volvo_v0) .m-16{margin:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .mr-16{margin-inline-end:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .ml-16{margin-inline-start:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mt-16{margin-top:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mb-16{margin-bottom:1rem}:where(.volvo_v0) .m-24{margin:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .mr-24{margin-inline-end:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .ml-24{margin-inline-start:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mt-24{margin-top:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mb-24{margin-bottom:1.5rem}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mt-section{margin-top:var(--v-space-section)}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mb-section{margin-bottom:var(--v-space-section)}:where(.volvo_v0) .p-0{padding:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pr-0{padding-inline-end:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pl-0{padding-inline-start:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pt-0{padding-top:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pb-0{padding-bottom:0}:where(.volvo_v0) .p-4{padding:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pr-4{padding-inline-end:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pl-4{padding-inline-start:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pt-4{padding-top:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pb-4{padding-bottom:.25rem}:where(.volvo_v0) .p-8{padding:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pr-8{padding-inline-end:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pl-8{padding-inline-start:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pt-8{padding-top:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pb-8{padding-bottom:.5rem}:where(.volvo_v0) .p-16{padding:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pr-16{padding-inline-end:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pl-16{padding-inline-start:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pt-16{padding-top:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pb-16{padding-bottom:1rem}:where(.volvo_v0) .p-24{padding:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pr-24{padding-inline-end:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pl-24{padding-inline-start:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pt-24{padding-top:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pb-24{padding-bottom:1.5rem}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pt-section{padding-top:var(--v-space-section)}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pb-section{padding-bottom:var(--v-space-section)}:where(.volvo_v0) .text-start{text-align:start}:where(.volvo_v0) .text-end{text-align:end}:where(.volvo_v0) .text-center{text-align:center}:where(.volvo_v0) .text-inherit{color:inherit}:where(.volvo_v0) .text-always-black{color:var(--v-color-always-black)}:where(.volvo_v0) .text-always-white{color:var(--v-color-always-white)}:where(.volvo_v0) .text-primary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .text-secondary{color:var(--v-color-foreground-secondary)}:where(.volvo_v0) .text-accent-blue{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) .text-feedback-green{color:var(--v-color-foreground-feedback-green)}:where(.volvo_v0) .text-feedback-orange{color:var(--v-color-foreground-feedback-orange)}:where(.volvo_v0) .text-feedback-red{color:var(--v-color-foreground-feedback-red)}@media (hover:hover){:where(.volvo_v0) :where(:-webkit-any(button,[type=button],[type=reset],[type=submit],[type=checkbox],[type=radio],label[for],summary,[role=button],[role=link]):not(:disabled,[aria-disabled])),:where(.volvo_v0) :where([type=file]:not(:disabled,[aria-disabled]))::-webkit-file-upload-button{cursor:pointer}:where(.volvo_v0) :where(:is(button,[type=button],[type=reset],[type=submit],[type=checkbox],[type=radio],label[for],summary,[role=button],[role=link]):not(:disabled,[aria-disabled])),:where(.volvo_v0) :where([type=file]:not(:disabled,[aria-disabled]))::file-selector-button{cursor:pointer}:where(.volvo_v0) :where(input:is(:disabled,[aria-disabled])+label:hover){cursor:default}:where(.volvo_v0) :where(a[href]:not([class]):hover),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline:hover{color:var(--v-color-foreground-primary);-webkit-text-decoration-line:none;text-decoration-line:none}:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).UNSTABLE_link-secondary:hover{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):enabled:checked):hover:before{background-color:var(--_v492382)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):enabled):hover{box-shadow:inset 0 0 0 1px var(--v-color-background-accent-blue)}}@media (min-width:30rem){:where(.volvo_v0) .md\:flex,:where(.volvo_v0) .md\:flex-col,:where(.volvo_v0) .md\:flex-row{display:flex}:where(.volvo_v0) .md\:flex-row{flex-direction:row}:where(.volvo_v0) .md\:flex-col{flex-direction:column}:where(.volvo_v0) .md\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .md\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .md\:flex-grow{flex-grow:1}:where(.volvo_v0) .md\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .md\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .md\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .md\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .md\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .md\:flex-items-center{align-items:center}:where(.volvo_v0) .md\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .md\:flex-self-start{align-self:start}:where(.volvo_v0) .md\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .md\:flex-self-center{align-self:center}:where(.volvo_v0) .md\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .md\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .md\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .md\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .md\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .md\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .md\:flex-justify-center{justify-content:center}:where(.volvo_v0) .md\:hidden{display:none}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .md\:until-lg\:hidden{display:none}}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .md\:until-xl\:hidden{display:none}}:where(.volvo_v0) .md\:text-start{text-align:start}:where(.volvo_v0) .md\:text-end{text-align:end}:where(.volvo_v0) .md\:text-center{text-align:center}}@media (min-width:64rem){:where(.volvo_v0) .lg\:flex,:where(.volvo_v0) .lg\:flex-col,:where(.volvo_v0) .lg\:flex-row{display:flex}:where(.volvo_v0) .lg\:flex-row{flex-direction:row}:where(.volvo_v0) .lg\:flex-col{flex-direction:column}:where(.volvo_v0) .lg\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .lg\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .lg\:flex-grow{flex-grow:1}:where(.volvo_v0) .lg\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .lg\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .lg\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .lg\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .lg\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .lg\:flex-items-center{align-items:center}:where(.volvo_v0) .lg\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .lg\:flex-self-start{align-self:start}:where(.volvo_v0) .lg\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .lg\:flex-self-center{align-self:center}:where(.volvo_v0) .lg\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .lg\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .lg\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .lg\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .lg\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .lg\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .lg\:flex-justify-center{justify-content:center}:where(.volvo_v0) .lg\:hidden{display:none}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .lg\:until-xl\:hidden{display:none}}:where(.volvo_v0) .lg\:text-start{text-align:start}:where(.volvo_v0) .lg\:text-end{text-align:end}:where(.volvo_v0) .lg\:text-center{text-align:center}}@media (min-width:64rem) and (min-width:100rem){:where(.volvo_v0) .xl\:flex,:where(.volvo_v0) .xl\:flex-col,:where(.volvo_v0) .xl\:flex-row{display:flex}:where(.volvo_v0) .xl\:flex-row{flex-direction:row}:where(.volvo_v0) .xl\:flex-col{flex-direction:column}:where(.volvo_v0) .xl\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .xl\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .xl\:flex-grow{flex-grow:1}:where(.volvo_v0) .xl\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .xl\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .xl\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .xl\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .xl\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .xl\:flex-items-center{align-items:center}:where(.volvo_v0) .xl\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .xl\:flex-self-start{align-self:start}:where(.volvo_v0) .xl\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .xl\:flex-self-center{align-self:center}:where(.volvo_v0) .xl\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .xl\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .xl\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .xl\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .xl\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .xl\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .xl\:flex-justify-center{justify-content:center}:where(.volvo_v0) .xl\:hidden{display:none}:where(.volvo_v0) .xl\:text-start{text-align:start}:where(.volvo_v0) .xl\:text-end{text-align:end}:where(.volvo_v0) .xl\:text-center{text-align:center}}
|
package/dist/styles_lg.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:where(.volvo_v0) .lg\:flex,:where(.volvo_v0) .lg\:flex-col,:where(.volvo_v0) .lg\:flex-row{display:flex}:where(.volvo_v0) .lg\:flex-row{flex-direction:row}:where(.volvo_v0) .lg\:flex-col{flex-direction:column}:where(.volvo_v0) .lg\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .lg\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .lg\:flex-grow{flex-grow:1}:where(.volvo_v0) .lg\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .lg\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .lg\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .lg\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .lg\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .lg\:flex-items-center{align-items:center}:where(.volvo_v0) .lg\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .lg\:flex-self-start{align-self:start}:where(.volvo_v0) .lg\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .lg\:flex-self-center{align-self:center}:where(.volvo_v0) .lg\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .lg\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .lg\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .lg\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .lg\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .lg\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .lg\:flex-justify-center{justify-content:center}:where(.volvo_v0) .lg\:text-start{text-align:start}:where(.volvo_v0) .lg\:text-end{text-align:end}:where(.volvo_v0) .lg\:text-center{text-align:center}
|
|
1
|
+
:where(.volvo_v0) .lg\:flex,:where(.volvo_v0) .lg\:flex-col,:where(.volvo_v0) .lg\:flex-row{display:flex}:where(.volvo_v0) .lg\:flex-row{flex-direction:row}:where(.volvo_v0) .lg\:flex-col{flex-direction:column}:where(.volvo_v0) .lg\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .lg\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .lg\:flex-grow{flex-grow:1}:where(.volvo_v0) .lg\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .lg\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .lg\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .lg\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .lg\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .lg\:flex-items-center{align-items:center}:where(.volvo_v0) .lg\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .lg\:flex-self-start{align-self:start}:where(.volvo_v0) .lg\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .lg\:flex-self-center{align-self:center}:where(.volvo_v0) .lg\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .lg\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .lg\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .lg\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .lg\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .lg\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .lg\:flex-justify-center{justify-content:center}:where(.volvo_v0) .lg\:hidden{display:none}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .lg\:until-xl\:hidden{display:none}}:where(.volvo_v0) .lg\:text-start{text-align:start}:where(.volvo_v0) .lg\:text-end{text-align:end}:where(.volvo_v0) .lg\:text-center{text-align:center}@media (min-width:100rem){:where(.volvo_v0) .xl\:flex,:where(.volvo_v0) .xl\:flex-col,:where(.volvo_v0) .xl\:flex-row{display:flex}:where(.volvo_v0) .xl\:flex-row{flex-direction:row}:where(.volvo_v0) .xl\:flex-col{flex-direction:column}:where(.volvo_v0) .xl\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .xl\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .xl\:flex-grow{flex-grow:1}:where(.volvo_v0) .xl\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .xl\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .xl\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .xl\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .xl\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .xl\:flex-items-center{align-items:center}:where(.volvo_v0) .xl\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .xl\:flex-self-start{align-self:start}:where(.volvo_v0) .xl\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .xl\:flex-self-center{align-self:center}:where(.volvo_v0) .xl\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .xl\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .xl\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .xl\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .xl\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .xl\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .xl\:flex-justify-center{justify-content:center}:where(.volvo_v0) .xl\:hidden{display:none}:where(.volvo_v0) .xl\:text-start{text-align:start}:where(.volvo_v0) .xl\:text-end{text-align:end}:where(.volvo_v0) .xl\:text-center{text-align:center}}
|
package/dist/styles_md.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:where(.volvo_v0) .md\:flex,:where(.volvo_v0) .md\:flex-col,:where(.volvo_v0) .md\:flex-row{display:flex}:where(.volvo_v0) .md\:flex-row{flex-direction:row}:where(.volvo_v0) .md\:flex-col{flex-direction:column}:where(.volvo_v0) .md\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .md\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .md\:flex-grow{flex-grow:1}:where(.volvo_v0) .md\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .md\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .md\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .md\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .md\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .md\:flex-items-center{align-items:center}:where(.volvo_v0) .md\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .md\:flex-self-start{align-self:start}:where(.volvo_v0) .md\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .md\:flex-self-center{align-self:center}:where(.volvo_v0) .md\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .md\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .md\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .md\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .md\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .md\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .md\:flex-justify-center{justify-content:center}:where(.volvo_v0) .md\:text-start{text-align:start}:where(.volvo_v0) .md\:text-end{text-align:end}:where(.volvo_v0) .md\:text-center{text-align:center}
|
|
1
|
+
:where(.volvo_v0) .md\:flex,:where(.volvo_v0) .md\:flex-col,:where(.volvo_v0) .md\:flex-row{display:flex}:where(.volvo_v0) .md\:flex-row{flex-direction:row}:where(.volvo_v0) .md\:flex-col{flex-direction:column}:where(.volvo_v0) .md\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .md\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .md\:flex-grow{flex-grow:1}:where(.volvo_v0) .md\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .md\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .md\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .md\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .md\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .md\:flex-items-center{align-items:center}:where(.volvo_v0) .md\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .md\:flex-self-start{align-self:start}:where(.volvo_v0) .md\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .md\:flex-self-center{align-self:center}:where(.volvo_v0) .md\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .md\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .md\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .md\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .md\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .md\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .md\:flex-justify-center{justify-content:center}:where(.volvo_v0) .md\:hidden{display:none}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .md\:until-lg\:hidden{display:none}}@media (max-width:calc(100rem - .001px)){:where(.volvo_v0) .md\:until-xl\:hidden{display:none}}:where(.volvo_v0) .md\:text-start{text-align:start}:where(.volvo_v0) .md\:text-end{text-align:end}:where(.volvo_v0) .md\:text-center{text-align:center}
|
package/dist/tokens.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.volvo_v0{--v-font-sans-family:"Volvo Novum","Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif;--v-font-broad-family:"Volvo Broad","Arial Black",sans-serif;--v-font-mono-family:monospace;--v-font-16-size:1rem;--v-font-16-lineheight:1.5;--v-font-16:300 var(--v-font-16-size)/var(--v-font-16-lineheight)var(--v-font-sans-family);--v-font-14-size:.875rem;--v-font-14-lineheight:1.57;--v-font-14:300 var(--v-font-14-size)/var(--v-font-14-lineheight)var(--v-font-sans-family);--v-font-12-size:.75rem;--v-font-12-lineheight:1.67;--v-font-12:300 var(--v-font-12-size)/var(--v-font-12-lineheight)var(--v-font-sans-family);--_v2a3cb9:calc(.31rem + 2ex);--v-font-heading-1-lineheight:var(--_v2a3cb9);--v-font-heading-1-size-min:2rem;--v-font-heading-1-size-max:2.5rem;--v-font-heading-1-size:clamp(var(--v-font-heading-1-size-min),1vw + 1.7rem,var(--v-font-heading-1-size-max));--v-font-heading-1:500 var(--v-font-heading-1-size)/var(--v-font-heading-1-lineheight)var(--v-font-sans-family);--v-font-heading-2-lineheight:var(--_v2a3cb9);--v-font-heading-2-size-min:1.5rem;--v-font-heading-2-size-max:2rem;--v-font-heading-2-size:clamp(var(--v-font-heading-2-size-min),1vw + 1.2rem,var(--v-font-heading-2-size-max));--v-font-heading-2:500 var(--v-font-heading-2-size)/var(--v-font-heading-2-lineheight)var(--v-font-sans-family);--v-font-heading-3-lineheight:var(--_v2a3cb9);--v-font-heading-3-size-min:1.5rem;--v-font-heading-3-size-max:2rem;--v-font-heading-3-size:clamp(var(--v-font-heading-3-size-min),1vw + 1.2rem,var(--v-font-heading-3-size-max));--v-font-heading-3:300 var(--v-font-heading-3-size)/var(--v-font-heading-3-lineheight)var(--v-font-sans-family);--v-font-statement-1-lineheight:var(--_v2a3cb9);--v-font-statement-1-size-min:4.5rem;--v-font-statement-1-size-max:6rem;--v-font-statement-1-size:clamp(var(--v-font-statement-1-size-min),3vw + 3.6rem,var(--v-font-statement-1-size-max));--v-font-statement-1:500 var(--v-font-statement-1-size)/var(--v-font-statement-1-lineheight)var(--v-font-sans-family);--v-font-statement-2-lineheight:var(--_v2a3cb9);--v-font-statement-2-size-min:3.5rem;--v-font-statement-2-size-max:4.5rem;--v-font-statement-2-size:clamp(var(--v-font-statement-2-size-min),2vw + 2.9rem,var(--v-font-statement-2-size-max));--v-font-statement-2:500 var(--v-font-statement-2-size)/var(--v-font-statement-2-lineheight)var(--v-font-sans-family);--v-font-statement-3-lineheight:var(--_v2a3cb9);--v-font-statement-3-size-min:3rem;--v-font-statement-3-size-max:3.5rem;--v-font-statement-3-size:clamp(var(--v-font-statement-3-size-min),1vw + 2.7rem,var(--v-font-statement-3-size-max));--v-font-statement-3:500 var(--v-font-statement-3-size)/var(--v-font-statement-3-lineheight)var(--v-font-sans-family);--v-font-statement-signature-lineheight:1;--v-font-statement-signature-size-min:2.5rem;--v-font-statement-signature-size-max:4.5rem;--v-font-statement-signature-size:clamp(var(--v-font-statement-signature-size-min),4vw + 1.3rem,var(--v-font-statement-signature-size-max));--v-font-statement-signature:500 var(--v-font-statement-signature-size)/var(--v-font-statement-signature-lineheight)var(--v-font-broad-family);--v-font-title-24-size:1.5rem;--v-font-title-24-lineheight:1.334;--v-font-title-24:300 var(--v-font-title-24-size)/var(--v-font-title-24-lineheight)var(--v-font-sans-family);--v-font-title-20-size:1.25rem;--v-font-title-20-lineheight:1.4;--v-font-title-20:300 var(--v-font-title-20-size)/var(--v-font-title-20-lineheight)var(--v-font-sans-family)}.volvo_v0:where(:lang(vi)){--v-font-sans-family:"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}.volvo_v0,.volvo_v0 [data-color-mode=light]{--v-color-always-black:#141414;--v-color-always-white:#fff;--v-color-foreground-primary:#000000eb;--v-color-foreground-secondary:#0000008f;--v-color-ornament-primary:#00000029;--v-color-background-primary:#fff;--v-color-background-secondary:#fafafa;--v-color-foreground-accent-blue:#2a609d;--v-color-background-accent-blue:#2a609d;--_v492382:#234871;--v-color-foreground-feedback-green:#048220;--v-color-foreground-feedback-orange:#eb7400;--v-color-foreground-feedback-red:#bf2012;--v-color-background-feedback-green:#048220;--v-color-background-feedback-orange:#eb7400;--v-color-background-feedback-red:#bf2012}.volvo_v0 [data-color-mode=dark],.volvo_v0[data-color-mode=dark]{--v-color-foreground-primary:#fff;--v-color-foreground-secondary:#ffffffa3;--v-color-ornament-primary:#ffffff1f;--v-color-background-primary:#000;--v-color-background-secondary:#141414;--v-color-foreground-accent-blue:#2387eb;--v-color-background-accent-blue:#1f78d1;--v-color-foreground-feedback-green:#07a62b;--v-color-foreground-feedback-orange:#ff9400;--v-color-foreground-feedback-red:#ff3320;--v-color-background-feedback-green:#088924;--v-color-background-feedback-orange:#ff9400;--v-color-background-feedback-red:#cc2617}.volvo_v0{--v-space-4:.25rem;--v-space-8:.5rem;--v-space-16:1rem;--v-space-24:1.5rem;--v-space-section:clamp(4rem,4vw + 2.8rem,6rem);--v-radius-4:.25rem;--v-radius-full:9999px}
|
|
1
|
+
.volvo_v0{--v-font-sans-family:"Volvo Novum","Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif;--v-font-broad-family:"Volvo Broad","Arial Black",sans-serif;--v-font-mono-family:monospace;--v-font-16-size:1rem;--v-font-16-lineheight:1.5;--v-font-16:300 var(--v-font-16-size)/var(--v-font-16-lineheight)var(--v-font-sans-family);--v-font-14-size:.875rem;--v-font-14-lineheight:1.57;--v-font-14:300 var(--v-font-14-size)/var(--v-font-14-lineheight)var(--v-font-sans-family);--v-font-12-size:.75rem;--v-font-12-lineheight:1.67;--v-font-12:300 var(--v-font-12-size)/var(--v-font-12-lineheight)var(--v-font-sans-family);--_v2a3cb9:calc(.31rem + 2ex);--v-font-heading-1-lineheight:var(--_v2a3cb9);--v-font-heading-1-size-min:2rem;--v-font-heading-1-size-max:2.5rem;--v-font-heading-1-size:clamp(var(--v-font-heading-1-size-min),1vw + 1.7rem,var(--v-font-heading-1-size-max));--v-font-heading-1:500 var(--v-font-heading-1-size)/var(--v-font-heading-1-lineheight)var(--v-font-sans-family);--v-font-heading-2-lineheight:var(--_v2a3cb9);--v-font-heading-2-size-min:1.5rem;--v-font-heading-2-size-max:2rem;--v-font-heading-2-size:clamp(var(--v-font-heading-2-size-min),1vw + 1.2rem,var(--v-font-heading-2-size-max));--v-font-heading-2:500 var(--v-font-heading-2-size)/var(--v-font-heading-2-lineheight)var(--v-font-sans-family);--v-font-heading-3-lineheight:var(--_v2a3cb9);--v-font-heading-3-size-min:1.5rem;--v-font-heading-3-size-max:2rem;--v-font-heading-3-size:clamp(var(--v-font-heading-3-size-min),1vw + 1.2rem,var(--v-font-heading-3-size-max));--v-font-heading-3:300 var(--v-font-heading-3-size)/var(--v-font-heading-3-lineheight)var(--v-font-sans-family);--v-font-statement-1-lineheight:var(--_v2a3cb9);--v-font-statement-1-size-min:4.5rem;--v-font-statement-1-size-max:6rem;--v-font-statement-1-size:clamp(var(--v-font-statement-1-size-min),3vw + 3.6rem,var(--v-font-statement-1-size-max));--v-font-statement-1:500 var(--v-font-statement-1-size)/var(--v-font-statement-1-lineheight)var(--v-font-sans-family);--v-font-statement-2-lineheight:var(--_v2a3cb9);--v-font-statement-2-size-min:3.5rem;--v-font-statement-2-size-max:4.5rem;--v-font-statement-2-size:clamp(var(--v-font-statement-2-size-min),2vw + 2.9rem,var(--v-font-statement-2-size-max));--v-font-statement-2:500 var(--v-font-statement-2-size)/var(--v-font-statement-2-lineheight)var(--v-font-sans-family);--v-font-statement-3-lineheight:var(--_v2a3cb9);--v-font-statement-3-size-min:3rem;--v-font-statement-3-size-max:3.5rem;--v-font-statement-3-size:clamp(var(--v-font-statement-3-size-min),1vw + 2.7rem,var(--v-font-statement-3-size-max));--v-font-statement-3:500 var(--v-font-statement-3-size)/var(--v-font-statement-3-lineheight)var(--v-font-sans-family);--v-font-statement-signature-lineheight:1;--v-font-statement-signature-size-min:2.5rem;--v-font-statement-signature-size-max:4.5rem;--v-font-statement-signature-size:clamp(var(--v-font-statement-signature-size-min),4vw + 1.3rem,var(--v-font-statement-signature-size-max));--v-font-statement-signature:500 var(--v-font-statement-signature-size)/var(--v-font-statement-signature-lineheight)var(--v-font-broad-family);--v-font-title-24-size:1.5rem;--v-font-title-24-lineheight:1.334;--v-font-title-24:300 var(--v-font-title-24-size)/var(--v-font-title-24-lineheight)var(--v-font-sans-family);--v-font-title-20-size:1.25rem;--v-font-title-20-lineheight:1.4;--v-font-title-20:300 var(--v-font-title-20-size)/var(--v-font-title-20-lineheight)var(--v-font-sans-family)}.volvo_v0:where(:lang(vi),:lang(az)){--v-font-sans-family:"Segoe UI","Helvetica Neue","Helvetica","Arial",sans-serif}.volvo_v0,.volvo_v0 [data-color-mode=light]{--v-color-always-black:#141414;--v-color-always-white:#fff;--v-color-foreground-primary:#000000eb;--v-color-foreground-secondary:#0000008f;--v-color-ornament-primary:#00000029;--v-color-background-primary:#fff;--v-color-background-secondary:#fafafa;--v-color-foreground-accent-blue:#2a609d;--v-color-background-accent-blue:#2a609d;--_v492382:#234871;--v-color-foreground-feedback-green:#048220;--v-color-foreground-feedback-orange:#eb7400;--v-color-foreground-feedback-red:#bf2012;--v-color-background-feedback-green:#048220;--v-color-background-feedback-orange:#eb7400;--v-color-background-feedback-red:#bf2012}.volvo_v0 [data-color-mode=dark],.volvo_v0[data-color-mode=dark]{--v-color-foreground-primary:#fff;--v-color-foreground-secondary:#ffffffa3;--v-color-ornament-primary:#ffffff1f;--v-color-background-primary:#000;--v-color-background-secondary:#141414;--v-color-foreground-accent-blue:#2387eb;--v-color-background-accent-blue:#1f78d1;--v-color-foreground-feedback-green:#07a62b;--v-color-foreground-feedback-orange:#ff9400;--v-color-foreground-feedback-red:#ff3320;--v-color-background-feedback-green:#088924;--v-color-background-feedback-orange:#ff9400;--v-color-background-feedback-red:#cc2617}.volvo_v0{--v-space-4:.25rem;--v-space-8:.5rem;--v-space-16:1rem;--v-space-24:1.5rem;--v-space-section:clamp(4rem,4vw + 2.8rem,6rem);--v-radius-4:.25rem;--v-radius-full:9999px}
|
package/dist/unstable_styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
:where(.volvo_v0) :where(img,picture,video,canvas){display:block}:where(.volvo_v0) :where(img){object-fit:cover;object-position:center}:where(.volvo_v0) :where(img[width][height]){height:auto}:where(.volvo_v0) .container{--_v6f5eba:80rem;--_v341c80:var(--v-space-page-margin);--_vd90f1f:min(100vw - (var(--_v341c80)*2) - env(safe-area-inset-left,0) - env(safe-area-inset-right,0),160rem - (var(--_v341c80)*2),100%
|
|
1
|
+
:where(.volvo_v0) :where(img,picture,video,canvas){display:block}:where(.volvo_v0) :where(img){object-fit:cover;object-position:center}:where(.volvo_v0) :where(img[width][height]){height:auto}:where(.volvo_v0) .container{--_v6f5eba:80rem;--_v341c80:var(--v-space-page-margin);--_vd90f1f:min(100vw - (var(--_v341c80)*2) - env(safe-area-inset-left,0) - env(safe-area-inset-right,0),160rem - (var(--_v341c80)*2),100%);width:min(var(--_vd90f1f),var(--_v6f5eba) - min(var(--_v9f2db4))*2);margin-inline:auto}:where(.volvo_v0) .container[data-max-width=full]{--_v6f5eba:100vw}:where(.volvo_v0) .container[data-bleed]:where(:not([data-bleed^=until])),:where(.volvo_v0) .container:not([data-bleed]) :where(.container){--_v341c80:0px}@media (max-width:calc(30rem - .001px)){:where(.volvo_v0) .container[data-bleed=until-md]{--_v341c80:0px}}@media (max-width:calc(64rem - .001px)){:where(.volvo_v0) .container[data-bleed=until-lg]{--_v341c80:0px}}:where(.volvo_v0) :where(a,button,[role=link],[role=button]).UNSTABLE_link-secondary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .inline-icon{align-items:center;column-gap:4px;display:flex}:where(.volvo_v0) .gap-x-4{column-gap:var(--v-space-4)}:where(.volvo_v0) .gap-x-8{column-gap:var(--v-space-8)}:where(.volvo_v0) .gap-x-16{column-gap:var(--v-space-16)}:where(.volvo_v0) .gap-y-8{row-gap:var(--v-space-8)}:where(.volvo_v0) .gap-y-16{row-gap:var(--v-space-16)}
|
package/dist/utils.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var s=Object.defineProperty;var
|
|
1
|
+
var s=Object.defineProperty;var o=Object.getOwnPropertyDescriptor;var i=Object.getOwnPropertyNames;var u=Object.prototype.hasOwnProperty;var y=(e,t)=>{for(var l in t)s(e,l,{get:t[l],enumerable:!0})},c=(e,t,l,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of i(t))!u.call(e,n)&&n!==l&&s(e,n,{get:()=>t[n],enumerable:!(r=o(t,n))||r.enumerable});return e};var g=e=>c(s({},"__esModule",{value:!0}),e);var C={};y(C,{clsx:()=>f});module.exports=g(C);function a(e){let t,l,r="";if(typeof e=="string"||typeof e=="number")r+=e;else if(e&&typeof e=="object"&&"_classes"in e)r+=e.toString();else if(typeof e=="object")if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(l=a(e[t]))&&(r&&(r+=" "),r+=l);else for(t in e)e[t]&&(r&&(r+=" "),r+=t);return r}function f(...e){let t=0,l,r,n="";for(;t<e.length;)(l=e[t++])&&(r=a(l))&&(n&&(n+=" "),n+=r);return n}0&&(module.exports={clsx});
|
|
2
2
|
//# sourceMappingURL=utils.cjs.map
|
package/dist/utils.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/utils.ts","../src/clsx.ts"],"sourcesContent":["export { clsx } from './clsx';\n","/*\nMIT License\n\nCopyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\ntype ClassValue =\n | ClassArray\n | ClassDictionary\n | string\n | number\n | null\n | boolean\n | undefined;\n\ninterface ClassDictionary {\n [id: string]: unknown;\n}\n\ninterface ClassArray extends Array<ClassValue> {}\n\nfunction toVal(mix: NonNullable<ClassValue>) {\n let k: string | number,\n y: string,\n str = '';\n\n if (typeof mix === 'string' || typeof mix === 'number') {\n str += mix;\n } else if (typeof mix === 'object') {\n if (Array.isArray(mix)) {\n for (k = 0; k < mix.length; k++) {\n if (mix[k]) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n if ((y = toVal(mix[k]!))) {\n str && (str += ' ');\n str += y;\n }\n }\n }\n } else {\n for (k in mix) {\n if (mix[k]) {\n str && (str += ' ');\n str += k;\n }\n }\n }\n }\n\n return str;\n}\n\nexport function clsx(...classes: ClassValue[]): string {\n let i = 0;\n let tmp: ClassValue;\n let x: string;\n let str = '';\n while (i < classes.length) {\n if ((tmp = classes[i++])) {\n if ((x = toVal(tmp))) {\n str && (str += ' ');\n str += x;\n }\n }\n }\n return str;\n}\n"],"mappings":"4ZAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,UAAAE,IAAA,eAAAC,EAAAH,GC2BA,SAASI,EAAMC,EAA8B,CAC3C,IAAIC,EACFC,EACAC,EAAM,GAER,GAAI,OAAOH,GAAQ,UAAY,OAAOA,GAAQ,SAC5CG,GAAOH,
|
|
1
|
+
{"version":3,"sources":["../src/utils.ts","../src/clsx.ts"],"sourcesContent":["export { clsx } from './clsx';\n","/*\nMIT License\n\nCopyright (c) Luke Edwards <luke.edwards05@gmail.com> (lukeed.com)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\ntype ClassValue =\n | ClassArray\n | ClassDictionary\n | string\n | number\n | null\n | boolean\n | undefined;\n\ninterface ClassDictionary {\n [id: string]: unknown;\n}\n\ninterface ClassArray extends Array<ClassValue> {}\n\nfunction toVal(mix: NonNullable<ClassValue>) {\n let k: string | number,\n y: string,\n str = '';\n\n if (typeof mix === 'string' || typeof mix === 'number') {\n str += mix;\n } else if (mix && typeof mix === 'object' && '_classes' in mix) {\n str += mix.toString();\n } else if (typeof mix === 'object') {\n if (Array.isArray(mix)) {\n for (k = 0; k < mix.length; k++) {\n if (mix[k]) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n if ((y = toVal(mix[k]!))) {\n str && (str += ' ');\n str += y;\n }\n }\n }\n } else {\n for (k in mix) {\n if (mix[k]) {\n str && (str += ' ');\n str += k;\n }\n }\n }\n }\n\n return str;\n}\n\nexport function clsx(...classes: ClassValue[]): string {\n let i = 0;\n let tmp: ClassValue;\n let x: string;\n let str = '';\n while (i < classes.length) {\n if ((tmp = classes[i++])) {\n if ((x = toVal(tmp))) {\n str && (str += ' ');\n str += x;\n }\n }\n }\n return str;\n}\n"],"mappings":"4ZAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,UAAAE,IAAA,eAAAC,EAAAH,GC2BA,SAASI,EAAMC,EAA8B,CAC3C,IAAIC,EACFC,EACAC,EAAM,GAER,GAAI,OAAOH,GAAQ,UAAY,OAAOA,GAAQ,SAC5CG,GAAOH,UACEA,GAAO,OAAOA,GAAQ,UAAY,aAAcA,EACzDG,GAAOH,EAAI,SAAS,UACX,OAAOA,GAAQ,SACxB,GAAI,MAAM,QAAQA,CAAG,EACnB,IAAKC,EAAI,EAAGA,EAAID,EAAI,OAAQC,IACtBD,EAAIC,KAEDC,EAAIH,EAAMC,EAAIC,EAAG,KACpBE,IAAQA,GAAO,KACfA,GAAOD,OAKb,KAAKD,KAAKD,EACJA,EAAIC,KACNE,IAAQA,GAAO,KACfA,GAAOF,GAMf,OAAOE,CACT,CAEO,SAASC,KAAQC,EAA+B,CACrD,IAAIC,EAAI,EACJC,EACAC,EACAL,EAAM,GACV,KAAOG,EAAID,EAAQ,SACZE,EAAMF,EAAQC,QACZE,EAAIT,EAAMQ,CAAG,KAChBJ,IAAQA,GAAO,KACfA,GAAOK,GAIb,OAAOL,CACT","names":["utils_exports","__export","clsx","__toCommonJS","toVal","mix","k","y","str","clsx","classes","i","tmp","x"]}
|
package/dist/utils.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import{a as o}from"./chunk-XLDOXGKL.js";export{o as clsx};
|
|
2
2
|
//# sourceMappingURL=utils.js.map
|
package/dist/utils.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":[
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volvo-cars/css",
|
|
3
3
|
"description": "Volvo Cars shared CSS",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"type": "module",
|
|
@@ -56,6 +56,16 @@
|
|
|
56
56
|
"import": "./dist/styles.js",
|
|
57
57
|
"require": "./dist/styles.cjs"
|
|
58
58
|
},
|
|
59
|
+
"./UNSTABLE_styles": {
|
|
60
|
+
"types": "./dist/UNSTABLE_styles.d.ts",
|
|
61
|
+
"import": "./dist/UNSTABLE_styles.js",
|
|
62
|
+
"require": "./dist/UNSTABLE_styles.cjs"
|
|
63
|
+
},
|
|
64
|
+
"./UNSTABLE_styles.js": {
|
|
65
|
+
"types": "./dist/UNSTABLE_styles.d.ts",
|
|
66
|
+
"import": "./dist/UNSTABLE_styles.js",
|
|
67
|
+
"require": "./dist/UNSTABLE_styles.cjs"
|
|
68
|
+
},
|
|
59
69
|
"./tokens": {
|
|
60
70
|
"types": "./dist/tokens.d.ts",
|
|
61
71
|
"import": "./dist/tokens.js",
|
|
@@ -87,6 +97,12 @@
|
|
|
87
97
|
"styles.js": [
|
|
88
98
|
"./dist/styles.d.ts"
|
|
89
99
|
],
|
|
100
|
+
"UNSTABLE_styles": [
|
|
101
|
+
"./dist/UNSTABLE_styles.d.ts"
|
|
102
|
+
],
|
|
103
|
+
"UNSTABLE_styles.js": [
|
|
104
|
+
"./dist/UNSTABLE_styles.d.ts"
|
|
105
|
+
],
|
|
90
106
|
"tokens": [
|
|
91
107
|
"./dist/tokens.d.ts"
|
|
92
108
|
],
|
|
@@ -106,7 +122,7 @@
|
|
|
106
122
|
"build:css": "node scripts/build-css.js",
|
|
107
123
|
"build:css-types": "node scripts/build-types.js",
|
|
108
124
|
"build:dts": "tsc -p tsconfig.build.json",
|
|
109
|
-
"build:prod": "rm -rf dist && yarn run build:css && tsup --sourcemap --minify
|
|
125
|
+
"build:prod": "rm -rf dist && yarn run build:css && yarn run build:dts && tsup --sourcemap --minify",
|
|
110
126
|
"clean": "rm -rf .turbo dist && rm -rf *.tsbuildinfo",
|
|
111
127
|
"dev": "yarn run watch:js & yarn run watch:css",
|
|
112
128
|
"test": "yarn run -T jest packages/css",
|
|
@@ -120,11 +136,13 @@
|
|
|
120
136
|
"directory": "packages/css"
|
|
121
137
|
},
|
|
122
138
|
"devDependencies": {
|
|
139
|
+
"@vcc/testing": "workspace:*",
|
|
123
140
|
"@volvo-cars/browserslist-config": "workspace:*",
|
|
124
141
|
"browserslist": "4.21.5",
|
|
125
142
|
"chokidar-cli": "3.0.0",
|
|
126
143
|
"lightningcss": "1.18.0",
|
|
127
144
|
"lodash": "4.17.21",
|
|
145
|
+
"react": "18.2.0",
|
|
128
146
|
"tsup": "6.5.0",
|
|
129
147
|
"typescript": "4.9.5"
|
|
130
148
|
},
|
package/dist/chunk-7GV2RAWW.js
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
var t={"font-face.css":"css/v0/font-face.05a7ed4c.css","styles.css":"css/v0/styles.72e1c057.css","styles_hover.css":"css/v0/styles_hover.e7965925.css","styles_lg.css":"css/v0/styles_lg.eaf41b08.css","styles_md.css":"css/v0/styles_md.c4264ddd.css","tokens.css":"css/v0/tokens.30cd27f4.css"};var v={hover:"(hover: hover)",md:"(min-width: 30rem)",lg:"(min-width: 64rem)"};export{t as a,v as b};
|
|
2
|
-
//# sourceMappingURL=chunk-7GV2RAWW.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
.volvo_v0,:where(.volvo_v0) [data-color-mode]{color:var(--v-color-foreground-primary);color-scheme:light;accent-color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0)[data-color-mode=dark],:where(.volvo_v0) [data-color-mode=dark]{color-scheme:dark}.volvo_v0{--_v85627f:initial;font:var(--v-font-16);tab-size:4}.volvo_v0:lang(ar),.volvo_v0:lang(he){--_v85627f: }:where(.volvo_v0) :where(code,kbd,samp,pre){font-family:var(--v-font-mono-family);font-size:min(100%,var(--v-font-14-size))}:where(.volvo_v0) :where(pre){white-space:break-spaces}:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{box-sizing:border-box}:where(.volvo_v0) :where(:not(progress,meter)){border-color:var(--v-color-ornament-primary);border-style:solid;border-width:0}:where(.volvo_v0 body,body.volvo_v0){min-height:100vh;min-height:100dvh;scrollbar-gutter:stable;background-color:var(--v-color-background-primary);margin:0}:where(.volvo_v0) :where(h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd,ol,ul,pre,input,fieldset){margin:0}:where(.volvo_v0) :where(button,input,ol,ul,legend,fieldset){padding:0}:where(.volvo_v0) :where(a){color:inherit;-webkit-text-decoration:inherit;text-decoration:inherit;-webkit-text-decoration-skip-ink:auto;text-decoration-skip-ink:auto}:where(.volvo_v0) :where(:focus-visible){outline:2px solid var(--v-color-foreground-primary);outline-offset:2px}:where(.volvo_v0) :where(img,picture,video,canvas,svg){max-width:100%}:where(.volvo_v0) :where(ol,ul){list-style:none}:where(.volvo_v0) :where(button,input:is([type=button],[type=reset],[type=submit])){-webkit-appearance:button;appearance:button;color:inherit;background-color:#0000}:where(.volvo_v0) :where(summary:is(details[class]>*,[class])){list-style:none}:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::marker,:where(.volvo_v0) :where(summary:is(details[class]>*,[class]))::-webkit-details-marker{display:none}:where(.volvo_v0) :where(button,input,optgroup,select,textarea,h1,h2,h3,h4,h5,h6,small){font:inherit}:where(.volvo_v0) :where(b,strong){font-weight:500}:where(.volvo_v0) :where(button,input,optgroup,select){line-height:1.3}:where(.volvo_v0) :where(textarea){resize:vertical}:where(.volvo_v0) :where(p,li,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(.volvo_v0) [data-fluid-typography=min]{--_v17b0f5:0rem}:where(.volvo_v0) [data-fluid-typography=max]{--_v17b0f5:9rem}@media (prefers-reduced-motion:reduce){:where(.volvo_v0) *,:where(.volvo_v0) :before,:where(.volvo_v0) :after{transition-duration:0s!important;animation-duration:0s!important;animation-iteration-count:1!important}}:where(.volvo_v0) :is(.stack-4,.stack-8,.stack-16,.stack-24,.stack-section,.stack-text)>*+*{margin-top:var(--stack-gap)}:where(.volvo_v0) .stack-section>*{--stack-gap:var(--v-space-section)}:where(.volvo_v0) .stack-4>*{--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-8>*{--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-16>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-24>*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>*{--stack-gap:var(--v-space-16)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class]))+.title-20,.title-20:first-child)+:where(.body-16,.list,.micro,:is(p,ul,small):not([class])){--stack-gap:var(--v-space-8)}:where(.volvo_v0) .stack-text>:where(.body-16.font-medium)+:where(.body-16,p:not([class])){--stack-gap:var(--v-space-4)}:where(.volvo_v0) .stack-text>:where(:not(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])))+:where(.heading-1,.heading-2,.heading-3,:is(h1,h2,h3):not([class])){--stack-gap:calc(var(--v-space-8) + 1em)}:where(.volvo_v0) :where(.stack-text)>.statement-3+*,:where(.volvo_v0) :where(.stack-text)>.statement-3+:where(.heading-3,h3:not([class]))+*{--stack-gap:var(--v-space-24)}:where(.volvo_v0) .stack-text>:where(.micro,small:not([class]))+:where(.micro,small:not([class])){--stack-gap:0rem}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])){width:var(--v-space-16);height:var(--v-space-16);-webkit-appearance:none;appearance:none;background-color:var(--v-color-background-primary);border:1px solid var(--v-color-foreground-secondary);border-radius:var(--v-radius-4);place-content:center;margin-top:.25em;transition:box-shadow .3s;display:inline-grid}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):before{width:var(--v-space-16);height:var(--v-space-16);content:"";background-color:var(--v-color-background-accent-blue);border-radius:var(--v-radius-4);opacity:0;transition:transform .1s ease-in-out,background-color .3s,outline .3s,opacity .2s}:where(.volvo_v0) :where([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):after{content:"";opacity:1;position:absolute}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])){border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):before{border-radius:var(--v-radius-full)}:where(.volvo_v0) :where([type=checkbox]):is(.checkbox,:not([class])):after{--_v7e5a12:var(--_v85627f)-2px,-5px;width:var(--v-space-4);height:var(--v-space-8);content:"";transform:scaleX(-1)rotate(135deg)translate(var(--_v7e5a12,5px,2px));border-color:#0000;transition:border-top-color .15s linear,border-right-color .15s linear .1s}:where(.volvo_v0) :where([type=checkbox]:is(.checkbox,:not([class]))):checked:after{border-top:1px solid var(--v-color-always-white);border-right:1px solid var(--v-color-always-white)}:where(.volvo_v0) :where([type=radio]):is(.radio,:not([class])):after{width:8px;height:8px;background-color:var(--v-color-always-white);border-radius:var(--v-radius-full);transition:transform .25s;transform:matrix(0,.001,.001,0,3,3)}:where(.volvo_v0) :where([type=radio]:is(.radio,:not([class]))):checked:after{--_v9bae6e:var(--_v85627f)-3;transform:matrix(0,1,1,0,var(--_v9bae6e,3),3)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled:after{border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))):disabled{background-color:var(--v-color-background-secondary);border-color:var(--v-color-ornament-primary)}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class])):is(:active,:checked)):enabled:before{opacity:1}:where(.volvo_v0) :where(:is([type=checkbox],[type=radio]):is(.radio,.checkbox,:not([class]))[aria-invalid]:not([aria-invalid=false]),:is(fieldset,[role=radiogroup])[aria-invalid]:not([aria-invalid=false]) [type=radio]:is(.radio,:not([class]))):not(:disabled,:hover){border-color:var(--v-color-foreground-feedback-red);box-shadow:inset 0 0 0 1px var(--v-color-foreground-feedback-red)}:where(.volvo_v0) :where(h1:not([class])),:where(.volvo_v0) .heading-1{font:var(--v-font-heading-1)}:where(.volvo_v0) .heading-1[data-fluid-typography]{font-size:clamp(var(--v-font-heading-1-size-min),var(--_v17b0f5,var(--v-font-heading-1-size)),var(--v-font-heading-1-size-max))}:where(.volvo_v0) :where(h2:not([class])),:where(.volvo_v0) .heading-2{font:var(--v-font-heading-2)}:where(.volvo_v0) .heading-2[data-fluid-typography]{font-size:clamp(var(--v-font-heading-2-size-min),var(--_v17b0f5,var(--v-font-heading-2-size)),var(--v-font-heading-2-size-max))}:where(.volvo_v0) :where(h3:not([class])),:where(.volvo_v0) .heading-3{font:var(--v-font-heading-3)}:where(.volvo_v0) .heading-3[data-fluid-typography]{font-size:clamp(var(--v-font-heading-3-size-min),var(--_v17b0f5,var(--v-font-heading-3-size)),var(--v-font-heading-3-size-max))}:where(.volvo_v0) :where(a[href]:not([class])),:where(.volvo_v0) :where(a[href],button,[role=link],[role=button]).link-inline{color:var(--v-color-foreground-secondary);-webkit-text-decoration-line:underline;text-decoration-line:underline}:where(.volvo_v0) :where(ul,ol).list,:where(.volvo_v0) :where(ul,ol):where(:not([class])){list-style-type:revert;padding-inline-start:2rem}:where(.volvo_v0) .statement-1{font:var(--v-font-statement-1)}:where(.volvo_v0) .statement-1[data-fluid-typography]{font-size:clamp(var(--v-font-statement-1-size-min),var(--_v17b0f5),var(--v-font-statement-1-size-max))}:where(.volvo_v0) .statement-2{font:var(--v-font-statement-2)}:where(.volvo_v0) .statement-2[data-fluid-typography]{font-size:clamp(var(--v-font-statement-2-size-min),var(--_v17b0f5),var(--v-font-statement-2-size-max))}:where(.volvo_v0) .statement-3{font:var(--v-font-statement-3)}:where(.volvo_v0) .statement-3[data-fluid-typography]{font-size:clamp(var(--v-font-statement-3-size-min),var(--_v17b0f5),var(--v-font-statement-3-size-max))}:where(.volvo_v0) .statement-signature{font:var(--v-font-statement-signature);letter-spacing:.02em}:where(.volvo_v0) .statement-signature:where([data-fluid-typography]){font-size:clamp(var(--v-font-statement-signature-size-min),var(--_v17b0f5),var(--v-font-statement-signature-size-max))}:where(.volvo_v0) .bg-inherit{background-color:inherit}:where(.volvo_v0) .bg-transparent{background-color:#0000}:where(.volvo_v0) .bg-always-black{background-color:var(--v-color-always-black)}:where(.volvo_v0) .bg-always-white{background-color:var(--v-color-always-white)}:where(.volvo_v0) .bg-primary{background-color:var(--v-color-background-primary)}:where(.volvo_v0) .bg-secondary{background-color:var(--v-color-background-secondary)}:where(.volvo_v0) .bg-accent-blue{background-color:var(--v-color-background-accent-blue)}:where(.volvo_v0) .bg-feedback-green{background-color:var(--v-color-background-feedback-green)}:where(.volvo_v0) .bg-feedback-orange{background-color:var(--v-color-background-feedback-orange)}:where(.volvo_v0) .bg-feedback-red{background-color:var(--v-color-background-feedback-red)}:where(.volvo_v0) .flex,:where(.volvo_v0) .flex-col,:where(.volvo_v0) .flex-row{display:flex}:where(.volvo_v0) .flex-row{flex-direction:row}:where(.volvo_v0) .flex-col{flex-direction:column}:where(.volvo_v0) .flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .flex-grow{flex-grow:1}:where(.volvo_v0) .flex-grow-0{flex-grow:0}:where(.volvo_v0) .flex-shrink{flex-shrink:1}:where(.volvo_v0) .flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .flex-items-start{align-items:flex-start}:where(.volvo_v0) .flex-items-end{align-items:flex-end}:where(.volvo_v0) .flex-items-center{align-items:center}:where(.volvo_v0) .flex-items-stretch{align-items:stretch}:where(.volvo_v0) .flex-self-start{align-self:flex-start}:where(.volvo_v0) .flex-self-end{align-self:flex-end}:where(.volvo_v0) .flex-self-center{align-self:center}:where(.volvo_v0) .flex-self-stretch{align-self:stretch}:where(.volvo_v0) .flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .flex-justify-around{justify-content:space-around}:where(.volvo_v0) .flex-justify-between{justify-content:space-between}:where(.volvo_v0) .flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .flex-justify-center{justify-content:center}:where(.volvo_v0) .title-24{font-size:var(--v-font-title-24-size);line-height:var(--v-font-title-24-lineheight)}:where(.volvo_v0) .title-20{font-size:var(--v-font-title-20-size);line-height:var(--v-font-title-20-lineheight)}:where(.volvo_v0) .body-16{font-size:var(--v-font-16-size);line-height:var(--v-font-16-lineheight)}:where(.volvo_v0) :where(small:not([class])),:where(.volvo_v0) .micro{font-size:var(--v-font-12-size);line-height:var(--v-font-12-lineheight);letter-spacing:.02em}:where(.volvo_v0) .font-medium{font-weight:500}:where(.volvo_v0) .font-light{font-weight:300}:where(.volvo_v0) .hyphens{-webkit-hyphens:auto;hyphens:auto}:where(.volvo_v0) .hyphens:where(:lang(en)){-webkit-hyphenate-limit-before:2;-webkit-hyphenate-limit-after:4;-webkit-hyphenate-limit-lines:2;hyphenate-limit-lines:2;hyphenate-limit-chars:10 2 4}:where(.volvo_v0) .m-0{margin:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .mr-0{margin-inline-end:0}:where(.volvo_v0) .mx-0,:where(.volvo_v0) .ml-0{margin-inline-start:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mt-0{margin-top:0}:where(.volvo_v0) .my-0,:where(.volvo_v0) .mb-0{margin-bottom:0}:where(.volvo_v0) .m-4{margin:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .mr-4{margin-inline-end:.25rem}:where(.volvo_v0) .mx-4,:where(.volvo_v0) .ml-4{margin-inline-start:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mt-4{margin-top:.25rem}:where(.volvo_v0) .my-4,:where(.volvo_v0) .mb-4{margin-bottom:.25rem}:where(.volvo_v0) .m-8{margin:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .mr-8{margin-inline-end:.5rem}:where(.volvo_v0) .mx-8,:where(.volvo_v0) .ml-8{margin-inline-start:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mt-8{margin-top:.5rem}:where(.volvo_v0) .my-8,:where(.volvo_v0) .mb-8{margin-bottom:.5rem}:where(.volvo_v0) .m-16{margin:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .mr-16{margin-inline-end:1rem}:where(.volvo_v0) .mx-16,:where(.volvo_v0) .ml-16{margin-inline-start:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mt-16{margin-top:1rem}:where(.volvo_v0) .my-16,:where(.volvo_v0) .mb-16{margin-bottom:1rem}:where(.volvo_v0) .m-24{margin:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .mr-24{margin-inline-end:1.5rem}:where(.volvo_v0) .mx-24,:where(.volvo_v0) .ml-24{margin-inline-start:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mt-24{margin-top:1.5rem}:where(.volvo_v0) .my-24,:where(.volvo_v0) .mb-24{margin-bottom:1.5rem}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mt-section{margin-top:var(--v-space-section)}:where(.volvo_v0) .my-section,:where(.volvo_v0) .mb-section{margin-bottom:var(--v-space-section)}:where(.volvo_v0) .p-0{padding:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pr-0{padding-inline-end:0}:where(.volvo_v0) .px-0,:where(.volvo_v0) .pl-0{padding-inline-start:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pt-0{padding-top:0}:where(.volvo_v0) .py-0,:where(.volvo_v0) .pb-0{padding-bottom:0}:where(.volvo_v0) .p-4{padding:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pr-4{padding-inline-end:.25rem}:where(.volvo_v0) .px-4,:where(.volvo_v0) .pl-4{padding-inline-start:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pt-4{padding-top:.25rem}:where(.volvo_v0) .py-4,:where(.volvo_v0) .pb-4{padding-bottom:.25rem}:where(.volvo_v0) .p-8{padding:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pr-8{padding-inline-end:.5rem}:where(.volvo_v0) .px-8,:where(.volvo_v0) .pl-8{padding-inline-start:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pt-8{padding-top:.5rem}:where(.volvo_v0) .py-8,:where(.volvo_v0) .pb-8{padding-bottom:.5rem}:where(.volvo_v0) .p-16{padding:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pr-16{padding-inline-end:1rem}:where(.volvo_v0) .px-16,:where(.volvo_v0) .pl-16{padding-inline-start:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pt-16{padding-top:1rem}:where(.volvo_v0) .py-16,:where(.volvo_v0) .pb-16{padding-bottom:1rem}:where(.volvo_v0) .p-24{padding:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pr-24{padding-inline-end:1.5rem}:where(.volvo_v0) .px-24,:where(.volvo_v0) .pl-24{padding-inline-start:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pt-24{padding-top:1.5rem}:where(.volvo_v0) .py-24,:where(.volvo_v0) .pb-24{padding-bottom:1.5rem}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pt-section{padding-top:var(--v-space-section)}:where(.volvo_v0) .py-section,:where(.volvo_v0) .pb-section{padding-bottom:var(--v-space-section)}:where(.volvo_v0) .text-start{text-align:start}:where(.volvo_v0) .text-end{text-align:end}:where(.volvo_v0) .text-center{text-align:center}:where(.volvo_v0) .text-inherit{color:inherit}:where(.volvo_v0) .text-always-black{color:var(--v-color-always-black)}:where(.volvo_v0) .text-always-white{color:var(--v-color-always-white)}:where(.volvo_v0) .text-primary{color:var(--v-color-foreground-primary)}:where(.volvo_v0) .text-secondary{color:var(--v-color-foreground-secondary)}:where(.volvo_v0) .text-accent-blue{color:var(--v-color-foreground-accent-blue)}:where(.volvo_v0) .text-feedback-green{color:var(--v-color-foreground-feedback-green)}:where(.volvo_v0) .text-feedback-orange{color:var(--v-color-foreground-feedback-orange)}:where(.volvo_v0) .text-feedback-red{color:var(--v-color-foreground-feedback-red)}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
:where(.volvo_v0) .lg\:flex,:where(.volvo_v0) .lg\:flex-col,:where(.volvo_v0) .lg\:flex-row{display:flex}:where(.volvo_v0) .lg\:flex-row{flex-direction:row}:where(.volvo_v0) .lg\:flex-col{flex-direction:column}:where(.volvo_v0) .lg\:flex-wrap{flex-wrap:wrap}:where(.volvo_v0) .lg\:flex-nowrap{flex-wrap:nowrap}:where(.volvo_v0) .lg\:flex-grow{flex-grow:1}:where(.volvo_v0) .lg\:flex-grow-0{flex-grow:0}:where(.volvo_v0) .lg\:flex-shrink{flex-shrink:1}:where(.volvo_v0) .lg\:flex-shrink-0{flex-shrink:0}:where(.volvo_v0) .lg\:flex-items-start{align-items:flex-start}:where(.volvo_v0) .lg\:flex-items-end{align-items:flex-end}:where(.volvo_v0) .lg\:flex-items-center{align-items:center}:where(.volvo_v0) .lg\:flex-items-stretch{align-items:stretch}:where(.volvo_v0) .lg\:flex-self-start{align-self:start}:where(.volvo_v0) .lg\:flex-self-end{align-self:flex-end}:where(.volvo_v0) .lg\:flex-self-center{align-self:center}:where(.volvo_v0) .lg\:flex-self-stretch{align-self:stretch}:where(.volvo_v0) .lg\:flex-justify-start{justify-content:flex-start}:where(.volvo_v0) .lg\:flex-justify-end{justify-content:flex-end}:where(.volvo_v0) .lg\:flex-justify-around{justify-content:space-around}:where(.volvo_v0) .lg\:flex-justify-between{justify-content:space-between}:where(.volvo_v0) .lg\:flex-justify-evenly{justify-content:space-evenly}:where(.volvo_v0) .lg\:flex-justify-center{justify-content:center}:where(.volvo_v0) .lg\:text-start{text-align:start}:where(.volvo_v0) .lg\:text-end{text-align:end}:where(.volvo_v0) .lg\:text-center{text-align:center}
|