@nyris/nyris-webapp 0.3.90 → 0.3.92

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.
Files changed (106) hide show
  1. package/build/asset-manifest.json +6 -6
  2. package/build/data/related-parts.json +83 -0
  3. package/build/index.html +1 -1
  4. package/build/js/settings.example.js +3 -0
  5. package/build/static/css/main.5ea01690.css +4 -0
  6. package/build/static/css/main.5ea01690.css.map +1 -0
  7. package/build/static/js/main.36b77705.js +3 -0
  8. package/build/static/js/{main.cede3ae1.js.map → main.36b77705.js.map} +1 -1
  9. package/package.json +4 -3
  10. package/public/data/related-parts.json +83 -0
  11. package/public/js/settings.example.js +3 -0
  12. package/src/App.test.tsx +0 -1
  13. package/src/App.tsx +0 -1
  14. package/src/assets/arrow_down_expanded.svg +3 -0
  15. package/src/assets/arrow_enter.svg +3 -0
  16. package/src/assets/camera.svg +3 -0
  17. package/src/assets/close.svg +3 -0
  18. package/src/assets/enter.svg +3 -0
  19. package/src/assets/refresh.svg +3 -0
  20. package/src/assets/vizo_avatar.svg +16 -0
  21. package/src/components/Cadenas/CadenasWebViewer.tsx +1 -1
  22. package/src/components/Cart.tsx +48 -36
  23. package/src/components/ChatAssistant/ChatAssistant.tsx +289 -0
  24. package/src/components/ChatAssistant/MobileChatAssistant.tsx +291 -0
  25. package/src/components/ChatAssistant/OptionChip.tsx +78 -0
  26. package/src/components/ChatAssistant/index.ts +3 -0
  27. package/src/components/ChatAssistant/useChatAssistantLogic.ts +745 -0
  28. package/src/components/CurrentRefinements.tsx +2 -2
  29. package/src/components/CustomCameraDrawer.tsx +56 -13
  30. package/src/components/DragDropFile.tsx +5 -5
  31. package/src/components/ExperienceVisualSearch/ExperienceVisualSearch.tsx +1 -1
  32. package/src/components/Header.tsx +116 -96
  33. package/src/components/Hint.tsx +1 -2
  34. package/src/components/HitsPerPage.tsx +9 -3
  35. package/src/components/ImagePreview.tsx +32 -17
  36. package/src/components/ImageUpload.tsx +16 -8
  37. package/src/components/Inquiry/InquiryBanner.tsx +1 -1
  38. package/src/components/Inquiry/InquiryModal.tsx +35 -29
  39. package/src/components/ItemSpecification.tsx +58 -126
  40. package/src/components/LocationInfoPopup.tsx +33 -33
  41. package/src/components/MatchNotificationBanner.tsx +90 -36
  42. package/src/components/PostFilter/PostFilter.tsx +1 -1
  43. package/src/components/PostFilter/PostFilterComponent.tsx +0 -1
  44. package/src/components/PostFilter/PostFilterFindApi.tsx +0 -1
  45. package/src/components/PoweredBy.tsx +1 -1
  46. package/src/components/PreFilter/PreFilter.tsx +14 -3
  47. package/src/components/PreFilter/PreFilterModal.tsx +0 -1
  48. package/src/components/Product/Product.tsx +15 -11
  49. package/src/components/Product/ProductAttribute.tsx +4 -5
  50. package/src/components/Product/ProductDetailViewModal.tsx +2 -4
  51. package/src/components/Product/ProductList.tsx +26 -13
  52. package/src/components/Rfq/RfqModal.tsx +1 -1
  53. package/src/components/SidePanel.tsx +124 -91
  54. package/src/components/SmartFilter.tsx +320 -0
  55. package/src/components/TextSearch.tsx +134 -70
  56. package/src/components/UploadDisclaimer.tsx +1 -1
  57. package/src/hooks/useBadResultsRecovery.ts +407 -0
  58. package/src/hooks/useEffectiveGroundingResults.ts +54 -0
  59. package/src/hooks/useGoodResultsChat.ts +651 -0
  60. package/src/hooks/useGroundedSearch.ts +88 -0
  61. package/src/hooks/useImageSearch.ts +139 -187
  62. package/src/hooks/useResultEvaluator.ts +417 -0
  63. package/src/index.css +1 -1
  64. package/src/index.tsx +0 -1
  65. package/src/layouts/AppLayout.tsx +53 -2
  66. package/src/pages/Home.tsx +11 -52
  67. package/src/pages/Login.tsx +1 -2
  68. package/src/pages/Logout.tsx +1 -1
  69. package/src/pages/Result.tsx +198 -200
  70. package/src/providers/AuthProvider.tsx +0 -1
  71. package/src/services/Feedback.ts +1 -1
  72. package/src/services/visualSearch.ts +0 -21
  73. package/src/services/vizo.ts +192 -4
  74. package/src/stores/chat/chatStore.ts +150 -0
  75. package/src/stores/chat/conversationStore.ts +300 -0
  76. package/src/stores/request/Misc/misc.slice.ts +2 -2
  77. package/src/stores/request/filter/filter.slice.ts +8 -8
  78. package/src/stores/request/query/query.slice.ts +2 -2
  79. package/src/stores/request/requestImage/requestImage.slice.ts +6 -6
  80. package/src/stores/request/specifications/specifications.slice.ts +10 -7
  81. package/src/stores/result/detectedRegions/detectedRegions.slice.ts +1 -1
  82. package/src/stores/result/prodcuts/products.initialState.ts +12 -0
  83. package/src/stores/result/prodcuts/products.slice.ts +28 -8
  84. package/src/stores/result/session/session.slice.ts +2 -2
  85. package/src/stores/smartFilters/smartFiltersStore.ts +270 -0
  86. package/src/stores/types.ts +41 -0
  87. package/src/stores/ui/ai/ai.initialState.ts +5 -0
  88. package/src/stores/ui/ai/ai.slice.ts +15 -0
  89. package/src/stores/ui/banner/banner.initialState.ts +6 -0
  90. package/src/stores/ui/banner/banner.slice.ts +14 -0
  91. package/src/stores/ui/feedback/feedback.slice.ts +1 -1
  92. package/src/stores/ui/loading/loading.slice.ts +4 -4
  93. package/src/stores/ui/uiStore.ts +7 -1
  94. package/src/styles/product.scss +0 -2
  95. package/src/types.ts +3 -7
  96. package/src/utils/cropImageToBase64.ts +32 -0
  97. package/src/utils/fetchProductImage.ts +109 -0
  98. package/src/utils/imageConverters.ts +124 -0
  99. package/src/utils/relatedParts.ts +35 -0
  100. package/src/utils/specificationFilter.ts +1 -5
  101. package/tailwind.config.js +3 -2
  102. package/build/static/css/main.734b52e1.css +0 -4
  103. package/build/static/css/main.734b52e1.css.map +0 -1
  104. package/build/static/js/main.cede3ae1.js +0 -3
  105. package/src/utils/addAssets.ts +0 -40
  106. /package/build/static/js/{main.cede3ae1.js.LICENSE.txt → main.36b77705.js.LICENSE.txt} +0 -0
package/src/types.ts CHANGED
@@ -90,6 +90,8 @@ export interface AppSettings extends NyrisAPISettings {
90
90
  enabled?: boolean;
91
91
  groundingEnabled?: boolean;
92
92
  fallbackToElasticSearch?: boolean;
93
+ chat?: boolean;
94
+ findRelatedParts?: boolean;
93
95
  };
94
96
  headerText?: string;
95
97
  instantRedirectPatterns: string[];
@@ -117,6 +119,7 @@ export interface AppSettings extends NyrisAPISettings {
117
119
  showFeedbackAndShare?: boolean;
118
120
  showGroup?: boolean;
119
121
  showImageDetails?: boolean;
122
+ useSmartFilters?: boolean;
120
123
  showPoweredByNyris?: boolean;
121
124
  simpleCardView?: boolean;
122
125
  support: Support;
@@ -134,15 +137,8 @@ export interface SearchSuiteSettings {
134
137
  primaryColor?: string;
135
138
  secondaryColor?: string;
136
139
  }
137
- export interface CanvasWithId {
138
- canvas: HTMLCanvasElement;
139
- id: string;
140
- }
141
-
142
140
  declare global {
143
141
  interface Window {
144
142
  settings: AppSettings;
145
143
  }
146
144
  }
147
-
148
- export type CadenasScriptStatus = 'ready' | 'loading' | 'failed' | 'disabled';
@@ -0,0 +1,32 @@
1
+ import {
2
+ RectCoords,
3
+ getElementSize,
4
+ getRectAspectRatio,
5
+ getThumbSizeArea,
6
+ elementToCanvas,
7
+ } from '@nyris/nyris-api';
8
+
9
+ export function cropImage(
10
+ canvas: HTMLCanvasElement,
11
+ region?: RectCoords,
12
+ maxWidth: number = 1024,
13
+ maxHeight: number = 1024,
14
+ ): HTMLCanvasElement {
15
+ if (!region) return canvas;
16
+
17
+ const crop: RectCoords = region || { x1: 0, x2: 1, y1: 0, y2: 1 };
18
+ const originalSize = getElementSize(canvas);
19
+ const aspectRatio = getRectAspectRatio(crop, originalSize);
20
+ const scaledSize = getThumbSizeArea(maxWidth, maxHeight, aspectRatio);
21
+ const croppedCanvas = elementToCanvas(canvas, scaledSize, crop);
22
+ return croppedCanvas;
23
+ }
24
+
25
+ export function canvasToBase64(
26
+ canvas: HTMLCanvasElement,
27
+ type: string = 'image/png',
28
+ quality?: number,
29
+ ): string {
30
+ const dataUrl = canvas.toDataURL(type, quality);
31
+ return dataUrl.split(',')[1];
32
+ }
@@ -0,0 +1,109 @@
1
+ /**
2
+ * Utility functions for fetching and processing product images.
3
+ * Handles resizing to 256px max, CORS, timeouts, and error handling.
4
+ */
5
+
6
+ /**
7
+ * Fetch a product image URL and return base64-encoded JPEG (resized to 256px max).
8
+ * Returns null on any failure (CORS, 404, timeout, etc.)
9
+ */
10
+ export async function fetchProductImageBase64(
11
+ imageUrl: string,
12
+ ): Promise<string | null> {
13
+ try {
14
+ const trimmedUrl = imageUrl?.trim();
15
+ if (!trimmedUrl) return null;
16
+
17
+ const controller = new AbortController();
18
+ const timeout = setTimeout(() => controller.abort(), 8000); // 8s timeout per image
19
+
20
+ const fetchAsBlob = async (url: string): Promise<Blob> => {
21
+ const response = await fetch(url, {
22
+ signal: controller.signal,
23
+ credentials: 'omit',
24
+ });
25
+
26
+ if (!response.ok) {
27
+ throw new Error(`HTTP ${response.status}`);
28
+ }
29
+
30
+ return response.blob();
31
+ };
32
+
33
+ try {
34
+ // Direct fetch from source URL only.
35
+ const blob = await fetchAsBlob(trimmedUrl);
36
+
37
+ const objectUrl = URL.createObjectURL(blob);
38
+
39
+ return new Promise(resolve => {
40
+ const img = new Image();
41
+ img.onload = () => {
42
+ try {
43
+ const maxSize = 256; // Small thumbnails to keep request size reasonable
44
+ const scale = Math.min(
45
+ 1,
46
+ maxSize / Math.max(img.width, img.height),
47
+ );
48
+ const canvas = document.createElement('canvas');
49
+ canvas.width = Math.round(img.width * scale);
50
+ canvas.height = Math.round(img.height * scale);
51
+ const ctx = canvas.getContext('2d');
52
+ if (!ctx) {
53
+ URL.revokeObjectURL(objectUrl);
54
+ resolve(null);
55
+ return;
56
+ }
57
+ ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
58
+ const dataUrl = canvas.toDataURL('image/jpeg', 0.6);
59
+ const b64 = dataUrl.split(',')[1] || '';
60
+ URL.revokeObjectURL(objectUrl);
61
+ resolve(b64 || null);
62
+ } catch (canvasErr) {
63
+ console.warn(
64
+ '[fetchProductImage] Canvas toDataURL failed:',
65
+ trimmedUrl,
66
+ canvasErr,
67
+ );
68
+ URL.revokeObjectURL(objectUrl);
69
+ resolve(null);
70
+ }
71
+ };
72
+ img.onerror = () => {
73
+ console.warn(
74
+ '[fetchProductImage] Image element load failed:',
75
+ trimmedUrl,
76
+ );
77
+ URL.revokeObjectURL(objectUrl);
78
+ resolve(null);
79
+ };
80
+ // Blob URL is same-origin — no CORS taint, canvas read will succeed
81
+ img.src = objectUrl;
82
+ });
83
+ } catch (fetchErr: any) {
84
+ const reason = fetchErr?.message || String(fetchErr);
85
+ console.warn(
86
+ `[fetchProductImage] Direct image fetch failed: ${trimmedUrl} | ${reason}`,
87
+ );
88
+ return null;
89
+ } finally {
90
+ clearTimeout(timeout);
91
+ }
92
+ } catch (err) {
93
+ console.warn('[fetchProductImage] Image processing error:', imageUrl, err);
94
+ return null;
95
+ }
96
+ }
97
+
98
+ /**
99
+ * Get the best available image URL for a product.
100
+ */
101
+ export function getProductImageUrl(product: any): string | null {
102
+ return (
103
+ product.matches?.[0]?.url ||
104
+ product.main_image_link ||
105
+ product.image ||
106
+ product.images?.[0] ||
107
+ null
108
+ );
109
+ }
@@ -0,0 +1,124 @@
1
+ import { decode } from 'tiff';
2
+
3
+ import * as pdfjsLib from 'pdfjs-dist';
4
+ import { GlobalWorkerOptions } from 'pdfjs-dist';
5
+
6
+ // @ts-ignore
7
+ import * as pdfjsWorker from 'pdfjs-dist/build/pdf.worker.min.mjs';
8
+
9
+ GlobalWorkerOptions.workerSrc = new URL(
10
+ pdfjsWorker,
11
+ import.meta.url,
12
+ ).toString();
13
+
14
+ export const tiffToJpg = async (file: File): Promise<Blob> => {
15
+ return new Promise((resolve, reject) => {
16
+ const reader = new FileReader();
17
+
18
+ reader.onload = (event: ProgressEvent<FileReader>) => {
19
+ if (event.target?.result) {
20
+ try {
21
+ const tiffArray = new Uint8Array(event.target.result as ArrayBuffer);
22
+ const tiffImages = decode(tiffArray);
23
+ const firstImage = tiffImages[0];
24
+ const { width, height, data } = firstImage;
25
+ const canvas = document.createElement('canvas');
26
+ const ctx = canvas.getContext('2d');
27
+ let firstImageData: any = data;
28
+
29
+ if (!ctx) {
30
+ reject(new Error('Failed to get canvas context.'));
31
+ return;
32
+ }
33
+
34
+ // Convert RGB to RGBA by adding an alpha channel.
35
+ if (data.length === width * height * 3) {
36
+ const fixedData = new Uint8ClampedArray(width * height * 4);
37
+ for (let i = 0, j = 0; i < data.length; i += 3, j += 4) {
38
+ fixedData[j] = data[i];
39
+ fixedData[j + 1] = data[i + 1];
40
+ fixedData[j + 2] = data[i + 2];
41
+ fixedData[j + 3] = 255;
42
+ }
43
+ firstImageData = fixedData;
44
+ }
45
+
46
+ canvas.width = firstImage.width;
47
+ canvas.height = firstImage.height;
48
+
49
+ const imageData = new ImageData(
50
+ new Uint8ClampedArray(firstImageData),
51
+ width,
52
+ height,
53
+ );
54
+ ctx.putImageData(imageData, 0, 0);
55
+
56
+ canvas.toBlob(blob => {
57
+ if (blob) {
58
+ resolve(blob);
59
+ } else {
60
+ reject(new Error('Failed to convert TIFF to JPG.'));
61
+ }
62
+ }, 'image/jpeg');
63
+ } catch (error) {
64
+ console.log(error);
65
+ reject(new Error('Error decoding TIFF file.'));
66
+ }
67
+ } else {
68
+ reject(new Error('FileReader failed to load file.'));
69
+ }
70
+ };
71
+
72
+ reader.onerror = () => reject(new Error('Error reading TIFF file.'));
73
+ reader.readAsArrayBuffer(file);
74
+ });
75
+ };
76
+
77
+ export const pdfToImage = async (file: File): Promise<Blob> => {
78
+ return new Promise((resolve, reject) => {
79
+ const reader = new FileReader();
80
+ reader.readAsArrayBuffer(file);
81
+ reader.onload = async () => {
82
+ if (!reader.result) {
83
+ reject(new Error('FileReader failed to load file.'));
84
+ return;
85
+ }
86
+
87
+ try {
88
+ const loadingTask = pdfjsLib.getDocument(
89
+ new Uint8Array(reader.result as ArrayBuffer),
90
+ );
91
+ const pdf = await loadingTask.promise;
92
+ const page = await pdf.getPage(1);
93
+
94
+ const scale = 2;
95
+ const viewport = page.getViewport({ scale });
96
+
97
+ const canvas = document.createElement('canvas');
98
+ const context = canvas.getContext('2d');
99
+ if (!context) {
100
+ reject(new Error('Failed to get canvas context.'));
101
+ return;
102
+ }
103
+
104
+ canvas.width = viewport.width;
105
+ canvas.height = viewport.height;
106
+
107
+ await page.render({ canvasContext: context, viewport }).promise;
108
+
109
+ canvas.toBlob(blob => {
110
+ if (blob) {
111
+ resolve(blob);
112
+ } else {
113
+ reject(new Error('Failed to convert PDF to image.'));
114
+ }
115
+ }, 'image/png');
116
+ } catch (error) {
117
+ console.log({ error });
118
+ reject(new Error('Error processing PDF file.'));
119
+ }
120
+ };
121
+
122
+ reader.onerror = () => reject(new Error('Error reading PDF file.'));
123
+ });
124
+ };
@@ -0,0 +1,35 @@
1
+ // ── Related-parts lookup table (cached after first fetch) ──
2
+ interface RelatedPartEntry {
3
+ keywords: string[];
4
+ relatedParts: { label: string; description: string }[];
5
+ }
6
+ type RelatedPartsTable = Record<string, RelatedPartEntry[]>;
7
+ let relatedPartsCache: RelatedPartsTable | null = null;
8
+
9
+ export async function loadRelatedPartsTable(): Promise<RelatedPartsTable> {
10
+ if (relatedPartsCache) return relatedPartsCache;
11
+ try {
12
+ const res = await fetch('/data/related-parts.json');
13
+ if (!res.ok) throw new Error(`HTTP ${res.status}`);
14
+ relatedPartsCache = await res.json();
15
+ return relatedPartsCache!;
16
+ } catch (err) {
17
+ console.warn('[RelatedParts] Failed to load lookup table:', err);
18
+ return {};
19
+ }
20
+ }
21
+
22
+ export function lookupRelatedParts(
23
+ table: RelatedPartsTable,
24
+ productDescription: string,
25
+ ): { label: string; description: string }[] | null {
26
+ const entries = table['GC Gruppe'];
27
+ if (!entries) return null;
28
+ const desc = productDescription.toLowerCase();
29
+ for (const entry of entries) {
30
+ if (entry.keywords.some(kw => desc.includes(kw.toLowerCase()))) {
31
+ return entry.relatedParts;
32
+ }
33
+ }
34
+ return null;
35
+ }
@@ -21,11 +21,7 @@ function getAllValues(obj: any): any[] {
21
21
  return values;
22
22
  }
23
23
 
24
- function findBestMatch(
25
- query: string,
26
- array: string[],
27
- threshold = 1,
28
- ): string | null {
24
+ function findBestMatch(query: string, array: string[]): string | null {
29
25
  const normalizedQuery = normalize(query);
30
26
 
31
27
  let bestMatch = null;
@@ -8,7 +8,8 @@ module.exports = {
8
8
  boxShadow: {
9
9
  outer: '0 0 16px 0 rgba(202, 202, 209, 0.5)',
10
10
  outer200: '0 0 16px 0 rgba(170, 171, 181, 0.5)',
11
- 'drop-shadow-1': '0 0 20px 0 rgba(221, 222, 231, 0.5)',
11
+ 'ds-1': '0 0 16px 0 rgba(221, 222, 231, 0.5)',
12
+ 'ds-2': '0 0 20px 0 rgba(221, 222, 231, 0.5)',
12
13
  },
13
14
  keyframes: {
14
15
  slideUp: {
@@ -67,7 +68,7 @@ module.exports = {
67
68
  'accordion-up': 'accordion-up 0.2s ease-out',
68
69
  },
69
70
  colors: {
70
- primary: '#2B2C46',
71
+ primary: '#3B3E5F',
71
72
  secondary: '#3E36DC',
72
73
  theme: {
73
74
  primary: 'var(--primary-color)',
@@ -1,4 +0,0 @@
1
- *,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*
2
- ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
3
- */*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}:host,html{-webkit-text-size-adjust:100%;font-feature-settings:normal;-webkit-tap-highlight-color:transparent;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-variation-settings:normal;line-height:1.5;tab-size:4}body{line-height:inherit}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-feature-settings:normal;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em;font-variation-settings:normal}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]:where(:not([hidden=until-found])){display:none}.\!container{width:100%!important}.container{width:100%}@media (min-width:400px){.\!container{max-width:400px!important}.container{max-width:400px}}@media (min-width:777px){.\!container{max-width:777px!important}.container{max-width:777px}}.sr-only{clip:rect(0,0,0,0);border-width:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.pointer-events-none{pointer-events:none}.visible{visibility:visible}.collapse{visibility:collapse}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.inset-0{inset:0}.inset-x-0{left:0;right:0}.-right-1{right:-.25rem}.-right-2{right:-.5rem}.-top-1{top:-.25rem}.-top-3\.5{top:-.875rem}.-top-4{top:-1rem}.bottom-0{bottom:0}.bottom-1{bottom:.25rem}.bottom-12{bottom:3rem}.bottom-2{bottom:.5rem}.bottom-24{bottom:6rem}.bottom-4{bottom:1rem}.bottom-6{bottom:1.5rem}.bottom-8{bottom:2rem}.bottom-\[49px\]{bottom:49px}.left-0{left:0}.left-1{left:.25rem}.left-2{left:.5rem}.left-4{left:1rem}.left-8{left:2rem}.left-\[50\%\]{left:50%}.right-0{right:0}.right-1{right:.25rem}.right-3{right:.75rem}.right-4{right:1rem}.right-7{right:1.75rem}.top-0{top:0}.top-1{top:.25rem}.top-2{top:.5rem}.top-2\.5{top:.625rem}.top-4{top:1rem}.top-7{top:1.75rem}.top-8{top:2rem}.top-\[50\%\]{top:50%}.z-10{z-index:10}.z-50{z-index:50}.z-\[-1\]{z-index:-1}.z-\[51\]{z-index:51}.z-\[9999\]{z-index:9999}.col-span-full{grid-column:1/-1}.m-0{margin:0}.m-auto{margin:auto}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-6{margin-bottom:1.5rem;margin-top:1.5rem}.my-8{margin-bottom:2rem;margin-top:2rem}.mb-0{margin-bottom:0}.mb-1{margin-bottom:.25rem}.mb-1\.5{margin-bottom:.375rem}.mb-2{margin-bottom:.5rem}.mb-20{margin-bottom:5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.ml-2{margin-left:.5rem}.ml-3{margin-left:.75rem}.ml-4{margin-left:1rem}.ml-auto{margin-left:auto}.mr-16{margin-right:4rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-4{margin-right:1rem}.mr-auto{margin-right:auto}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-24{margin-top:6rem}.mt-3{margin-top:.75rem}.mt-3\.5{margin-top:.875rem}.mt-4{margin-top:1rem}.mt-5{margin-top:1.25rem}.mt-8{margin-top:2rem}.mt-9{margin-top:2.25rem}.mt-\[6px\]{margin-top:6px}.mt-\[calc\(50vh-110px\)\]{margin-top:calc(50vh - 110px)}.mt-auto{margin-top:auto}.box-border{box-sizing:border-box}.box-content{box-sizing:content-box}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.contents{display:contents}.hidden{display:none}.aspect-square{aspect-ratio:1/1}.h-0{height:0}.h-1{height:.25rem}.h-1\.5{height:.375rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-16{height:4rem}.h-2\.5{height:.625rem}.h-3{height:.75rem}.h-36{height:9rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-\[12px\]{height:12px}.h-\[168px\]{height:168px}.h-\[22px\]{height:22px}.h-\[24px\]{height:24px}.h-\[368px\]{height:368px}.h-\[50px\]{height:50px}.h-\[52px\]{height:52px}.h-\[56px\]{height:56px}.h-\[60px\]{height:60px}.h-\[70px\]{height:70px}.h-\[72px\]{height:72px}.h-\[80\%\]{height:80%}.h-\[8px\]{height:8px}.h-auto{height:auto}.h-fit{height:-webkit-fit-content;height:fit-content}.h-full{height:100%}.h-screen{height:100vh}.max-h-\[368px\]{max-height:368px}.max-h-\[90svh\]{max-height:90svh}.max-h-\[95vh\]{max-height:95vh}.max-h-full{max-height:100%}.min-h-10{min-height:2.5rem}.min-h-5{min-height:1.25rem}.min-h-8{min-height:2rem}.min-h-\[106px\]{min-height:106px}.min-h-\[120px\]{min-height:120px}.min-h-\[268px\]{min-height:268px}.min-h-\[60px\]{min-height:60px}.w-0{width:0}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-10{width:2.5rem}.w-12{width:3rem}.w-2\.5{width:.625rem}.w-2\/3{width:66.666667%}.w-3{width:.75rem}.w-36{width:9rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-72{width:18rem}.w-8{width:2rem}.w-80{width:20rem}.w-\[110px\]{width:110px}.w-\[12px\]{width:12px}.w-\[152px\]{width:152px}.w-\[180px\]{width:180px}.w-\[215px\]{width:215px}.w-\[22px\]{width:22px}.w-\[243px\]{width:243px}.w-\[360px\]{width:360px}.w-\[410px\]{width:410px}.w-\[426px\]{width:426px}.w-\[50px\]{width:50px}.w-\[60px\]{width:60px}.w-\[70px\]{width:70px}.w-\[75px\]{width:75px}.w-\[8px\]{width:8px}.w-\[90\%\]{width:90%}.w-fit{width:-webkit-fit-content;width:fit-content}.w-full{width:100%}.w-max{width:-webkit-max-content;width:max-content}.w-screen{width:100vw}.min-w-0{min-width:0}.min-w-10{min-width:2.5rem}.min-w-4{min-width:1rem}.min-w-6{min-width:1.5rem}.min-w-\[283px\]{min-width:283px}.min-w-\[90px\]{min-width:90px}.max-w-\[100\%\]{max-width:100%}.max-w-\[1500px\]{max-width:1500px}.max-w-\[175px\]{max-width:175px}.max-w-\[190px\]{max-width:190px}.max-w-\[325px\]{max-width:325px}.max-w-\[350px\]{max-width:350px}.max-w-\[360px\]{max-width:360px}.max-w-\[532px\]{max-width:532px}.max-w-\[840px\]{max-width:840px}.max-w-fit{max-width:-webkit-fit-content;max-width:fit-content}.max-w-full{max-width:100%}.flex-1{flex:1 1}.flex-shrink-0,.shrink-0{flex-shrink:0}.flex-grow{flex-grow:1}.flex-grow-0{flex-grow:0}.translate-x-\[-50\%\]{--tw-translate-x:-50%}.translate-x-\[-50\%\],.translate-y-\[-50\%\]{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.translate-y-\[-50\%\]{--tw-translate-y:-50%}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes pulse{50%{opacity:.5}}.animate-pulse{animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.animate-spin{animation:spin 1s linear infinite}.cursor-pointer{cursor:pointer}.resize{resize:both}.scroll-pt-5{scroll-padding-top:1.25rem}.grid-cols-\[repeat\(auto-fit\2c _minmax\(180px\2c _0px\)\)\]{grid-template-columns:repeat(auto-fit,minmax(180px,0))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-wrap{flex-wrap:wrap}.content-start{align-content:flex-start}.content-end{align-content:flex-end}.items-start{align-items:flex-start}.items-center{align-items:center}.items-baseline{align-items:baseline}.justify-start{justify-content:flex-start}.justify-end{justify-content:flex-end}.justify-between{justify-content:space-between}.justify-items-center{justify-items:center}.gap-0{gap:0}.gap-1{gap:.25rem}.gap-1\.5{gap:.375rem}.gap-2{gap:.5rem}.gap-2\.5{gap:.625rem}.gap-3{gap:.75rem}.gap-4{gap:1rem}.gap-\[11px\]{gap:11px}.gap-x-1{column-gap:.25rem}.gap-x-2{column-gap:.5rem}.gap-x-5{column-gap:1.25rem}.gap-x-8{column-gap:2rem}.space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.375rem*var(--tw-space-y-reverse));margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)))}.self-stretch{align-self:stretch}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-hidden{overflow-y:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.break-words{overflow-wrap:break-word}.break-keep{word-break:keep-all}.rounded{border-radius:.25rem}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.rounded-\[12px\]{border-radius:12px}.rounded-\[16px\]{border-radius:16px}.rounded-\[1px\]{border-radius:1px}.rounded-\[21px\]{border-radius:21px}.rounded-\[4px\]{border-radius:4px}.rounded-\[50\%\]{border-radius:50%}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:.5rem}.rounded-md{border-radius:.375rem}.rounded-none{border-radius:0}.rounded-sm{border-radius:.125rem}.rounded-xl{border-radius:.75rem}.rounded-t-\[10px\]{border-top-left-radius:10px;border-top-right-radius:10px}.border{border-width:1px}.border-2{border-width:2px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-solid{border-style:solid}.border-dashed{border-style:dashed}.border-none{border-style:none}.border-\[\#3E36DC\]{--tw-border-opacity:1;border-color:#3e36dc;border-color:rgb(62 54 220/var(--tw-border-opacity,1))}.border-\[\#AAABB5\]{--tw-border-opacity:1;border-color:#aaabb5;border-color:rgb(170 171 181/var(--tw-border-opacity,1))}.border-\[\#CACAD1\]{--tw-border-opacity:1;border-color:#cacad1;border-color:rgb(202 202 209/var(--tw-border-opacity,1))}.border-\[\#DDDEE7\]{--tw-border-opacity:1;border-color:#dddee7;border-color:rgb(221 222 231/var(--tw-border-opacity,1))}.border-\[\#E0E0E0\]{--tw-border-opacity:1;border-color:#e0e0e0;border-color:rgb(224 224 224/var(--tw-border-opacity,1))}.border-\[\#E31B5D\]{--tw-border-opacity:1;border-color:#e31b5d;border-color:rgb(227 27 93/var(--tw-border-opacity,1))}.border-\[\#afafaf52\]{border-color:#afafaf52}.border-\[\#e0e0e0\]{--tw-border-opacity:1;border-color:#e0e0e0;border-color:rgb(224 224 224/var(--tw-border-opacity,1))}.border-\[\#e4e3ff\]{--tw-border-opacity:1;border-color:#e4e3ff;border-color:rgb(228 227 255/var(--tw-border-opacity,1))}.border-transparent{border-color:transparent}.border-white{--tw-border-opacity:1;border-color:#fff;border-color:rgb(255 255 255/var(--tw-border-opacity,1))}.\!bg-\[\#2B2C46\]{--tw-bg-opacity:1!important;background-color:#2b2c46!important;background-color:rgb(43 44 70/var(--tw-bg-opacity,1))!important}.\!bg-\[\#55566B\]{--tw-bg-opacity:1!important;background-color:#55566b!important;background-color:rgb(85 86 107/var(--tw-bg-opacity,1))!important}.bg-\[\#00000080\]{background-color:#00000080}.bg-\[\#10b981\]{--tw-bg-opacity:1;background-color:#10b981;background-color:rgb(16 185 129/var(--tw-bg-opacity,1))}.bg-\[\#2B2C46\]{--tw-bg-opacity:1;background-color:#2b2c46;background-color:rgb(43 44 70/var(--tw-bg-opacity,1))}.bg-\[\#373b53\]{--tw-bg-opacity:1;background-color:#373b53;background-color:rgb(55 59 83/var(--tw-bg-opacity,1))}.bg-\[\#3E36DC\]{--tw-bg-opacity:1;background-color:#3e36dc;background-color:rgb(62 54 220/var(--tw-bg-opacity,1))}.bg-\[\#55566B\],.bg-\[\#55566b\]{--tw-bg-opacity:1;background-color:#55566b;background-color:rgb(85 86 107/var(--tw-bg-opacity,1))}.bg-\[\#615e669f\]{background-color:#615e669f}.bg-\[\#E0E0E0\]{--tw-bg-opacity:1;background-color:#e0e0e0;background-color:rgb(224 224 224/var(--tw-bg-opacity,1))}.bg-\[\#E31B5D\]{--tw-bg-opacity:1;background-color:#e31b5d;background-color:rgb(227 27 93/var(--tw-bg-opacity,1))}.bg-\[\#E9E9EC\]{--tw-bg-opacity:1;background-color:#e9e9ec;background-color:rgb(233 233 236/var(--tw-bg-opacity,1))}.bg-\[\#F2FBF3\]{--tw-bg-opacity:1;background-color:#f2fbf3;background-color:rgb(242 251 243/var(--tw-bg-opacity,1))}.bg-\[\#F3F3F5\]{--tw-bg-opacity:1;background-color:#f3f3f5;background-color:rgb(243 243 245/var(--tw-bg-opacity,1))}.bg-\[\#F3F4F8\]{--tw-bg-opacity:1;background-color:#f3f4f8;background-color:rgb(243 244 248/var(--tw-bg-opacity,1))}.bg-\[\#FAFAFA\]{--tw-bg-opacity:1;background-color:#fafafa;background-color:rgb(250 250 250/var(--tw-bg-opacity,1))}.bg-\[\#FFE5EF4D\]{background-color:#ffe5ef4d}.bg-\[\#e0e0e0\]{--tw-bg-opacity:1;background-color:#e0e0e0;background-color:rgb(224 224 224/var(--tw-bg-opacity,1))}.bg-\[\#e4e3ff\]{--tw-bg-opacity:1;background-color:#e4e3ff;background-color:rgb(228 227 255/var(--tw-bg-opacity,1))}.bg-\[\#e9e9ec\]{--tw-bg-opacity:1;background-color:#e9e9ec;background-color:rgb(233 233 236/var(--tw-bg-opacity,1))}.bg-\[\#f3f3f5\]{--tw-bg-opacity:1;background-color:#f3f3f5;background-color:rgb(243 243 245/var(--tw-bg-opacity,1))}.bg-\[\#fafafa\]{--tw-bg-opacity:1;background-color:#fafafa;background-color:rgb(250 250 250/var(--tw-bg-opacity,1))}.bg-\[\#fff\]{--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-\[rgba\(243\2c 243\2c 245\2c 0\.4\)\]{background-color:hsla(240,9%,96%,.4)}.bg-black\/20{background-color:rgba(0,0,0,.2)}.bg-black\/50{background-color:rgba(0,0,0,.5)}.bg-black\/80{background-color:rgba(0,0,0,.8)}.bg-gray-100{--tw-bg-opacity:1;background-color:#f3f4f6;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.bg-gray-200{--tw-bg-opacity:1;background-color:#e5e7eb;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.bg-green-500{--tw-bg-opacity:1;background-color:#22c55e;background-color:rgb(34 197 94/var(--tw-bg-opacity,1))}.bg-neutral-50{--tw-bg-opacity:1;background-color:#fafafa;background-color:rgb(250 250 250/var(--tw-bg-opacity,1))}.bg-primary{--tw-bg-opacity:1;background-color:#2b2c46;background-color:rgb(43 44 70/var(--tw-bg-opacity,1))}.bg-primary\/10{background-color:rgba(43,44,70,.1)}.bg-transparent{background-color:transparent}.bg-white{--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-white\/50{background-color:hsla(0,0%,100%,.5)}.fill-\[\#2B2C46\]{fill:#2b2c46}.fill-\[\#55566B\]{fill:#55566b}.fill-black{fill:#000}.fill-theme-primary{fill:var(--primary-color)}.fill-white{fill:#fff}.object-contain{object-fit:contain}.object-cover{object-fit:cover}.p-0{padding:0}.p-0\.5{padding:.125rem}.p-1{padding:.25rem}.p-1\.5{padding:.375rem}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-3\.5{padding:.875rem}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.px-0\.5{padding-left:.125rem;padding-right:.125rem}.px-1{padding-left:.25rem;padding-right:.25rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.py-0{padding-bottom:0;padding-top:0}.py-0\.5{padding-bottom:.125rem;padding-top:.125rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.py-10{padding-bottom:2.5rem;padding-top:2.5rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.py-2\.5{padding-bottom:.625rem;padding-top:.625rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-4{padding-bottom:1rem;padding-top:1rem}.py-5{padding-bottom:1.25rem;padding-top:1.25rem}.py-\[3px\]{padding-bottom:3px;padding-top:3px}.pb-0{padding-bottom:0}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-6{padding-bottom:1.5rem}.pb-8{padding-bottom:2rem}.pl-1{padding-left:.25rem}.pl-1\.5{padding-left:.375rem}.pl-2{padding-left:.5rem}.pl-4{padding-left:1rem}.pl-8{padding-left:2rem}.pr-0\.5{padding-right:.125rem}.pr-1{padding-right:.25rem}.pr-1\.5{padding-right:.375rem}.pr-2{padding-right:.5rem}.pr-4{padding-right:1rem}.pr-5{padding-right:1.25rem}.pr-6{padding-right:1.5rem}.pt-0{padding-top:0}.pt-2{padding-top:.5rem}.pt-2\.5{padding-top:.625rem}.pt-3{padding-top:.75rem}.pt-4{padding-top:1rem}.pt-6{padding-top:1.5rem}.pt-\[15px\]{padding-top:15px}.text-left{text-align:left}.text-center{text-align:center}.text-start{text-align:start}.text-2xl{font-size:1.5rem;line-height:2rem}.text-\[10px\]{font-size:10px}.text-\[13px\]{font-size:13px}.text-\[25px\]{font-size:25px}.text-\[9px\]{font-size:9px}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.font-normal{font-weight:400}.font-semibold{font-weight:600}.normal-case{text-transform:none}.leading-4{line-height:1rem}.leading-\[18px\]{line-height:18px}.leading-\[22\.78px\]{line-height:22.78px}.leading-none{line-height:1}.tracking-tight{letter-spacing:-.025em}.text-\[\#22C55E\]{--tw-text-opacity:1;color:#22c55e;color:rgb(34 197 94/var(--tw-text-opacity,1))}.text-\[\#2B2C46\],.text-\[\#2b2c46\]{--tw-text-opacity:1;color:#2b2c46;color:rgb(43 44 70/var(--tw-text-opacity,1))}.text-\[\#3B3E5F\]{--tw-text-opacity:1;color:#3b3e5f;color:rgb(59 62 95/var(--tw-text-opacity,1))}.text-\[\#3E36DC\],.text-\[\#3e36dc\]{--tw-text-opacity:1;color:#3e36dc;color:rgb(62 54 220/var(--tw-text-opacity,1))}.text-\[\#4a5568\]{--tw-text-opacity:1;color:#4a5568;color:rgb(74 85 104/var(--tw-text-opacity,1))}.text-\[\#AAABB5\]{--tw-text-opacity:1;color:#aaabb5;color:rgb(170 171 181/var(--tw-text-opacity,1))}.text-\[\#CACAD1\]{--tw-text-opacity:1;color:#cacad1;color:rgb(202 202 209/var(--tw-text-opacity,1))}.text-\[\#E0E0E0\]{--tw-text-opacity:1;color:#e0e0e0;color:rgb(224 224 224/var(--tw-text-opacity,1))}.text-\[\#E31B5D\]{--tw-text-opacity:1;color:#e31b5d;color:rgb(227 27 93/var(--tw-text-opacity,1))}.text-\[\#cacad1\]{--tw-text-opacity:1;color:#cacad1;color:rgb(202 202 209/var(--tw-text-opacity,1))}.text-\[\#e31b5d\]{--tw-text-opacity:1;color:#e31b5d;color:rgb(227 27 93/var(--tw-text-opacity,1))}.text-black{--tw-text-opacity:1;color:#000;color:rgb(0 0 0/var(--tw-text-opacity,1))}.text-gray-800{--tw-text-opacity:1;color:#1f2937;color:rgb(31 41 55/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:#2b2c46;color:rgb(43 44 70/var(--tw-text-opacity,1))}.text-red-600{--tw-text-opacity:1;color:#dc2626;color:rgb(220 38 38/var(--tw-text-opacity,1))}.text-slate-900{--tw-text-opacity:1;color:#0f172a;color:rgb(15 23 42/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:#fff;color:rgb(255 255 255/var(--tw-text-opacity,1))}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-70{opacity:.7}.opacity-75{opacity:.75}.shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.shadow,.shadow-\[0px_0px_16px_0px_rgba\(170\2c 171\2c 181\2c 0\.50\)\]{box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[0px_0px_16px_0px_rgba\(170\2c 171\2c 181\2c 0\.50\)\]{--tw-shadow:0px 0px 16px 0px hsla(235,7%,69%,.5);--tw-shadow-colored:0px 0px 16px 0px var(--tw-shadow-color)}.shadow-\[3px_-2px_3px_-3px_\#d3d4d8\]{--tw-shadow:3px -2px 3px -3px #d3d4d8;--tw-shadow-colored:3px -2px 3px -3px var(--tw-shadow-color)}.shadow-\[3px_-2px_3px_-3px_\#d3d4d8\],.shadow-lg{box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.shadow-md,.shadow-outer{box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-outer{--tw-shadow:0 0 16px 0 hsla(240,7%,81%,.5);--tw-shadow-colored:0 0 16px 0 var(--tw-shadow-color)}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-text-decoration-color,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-all{transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-colors{transition-duration:.15s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.transition-opacity{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.delay-150{transition-delay:.15s}.delay-300{transition-delay:.3s}.duration-200{transition-duration:.2s}.duration-300{transition-duration:.3s}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#2b2c46;font-family:-apple-system,BlinkMacSystemFont,Source Sans\ 3,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}@font-face{font-display:swap;font-family:Source Sans\ 3;font-style:normal;font-weight:300;src:url(/static/media/SourceSans3-Light.37264fa35ee0d5f209ea.ttf)}@font-face{font-display:swap;font-family:Source Sans\ 3;font-style:normal;font-weight:400;src:url(/static/media/SourceSans3-Regular.c69f9658f16351f79f33.ttf)}@font-face{font-display:swap;font-family:Source Sans\ 3;font-style:medium;font-weight:500;src:url(/static/media/SourceSans3-Medium.c82b4c53fc5d38ef5784.ttf)}@font-face{font-display:swap;font-family:Source Sans\ 3;font-style:medium;font-weight:600;src:url(/static/media/SourceSans3-SemiBold.5ad6683a8a06e3ccea94.ttf)}@font-face{font-display:swap;font-family:Source Sans\ 3;font-style:medium;font-weight:700;src:url(/static/media/SourceSans3-Bold.17e068739e42bdb30d1c.ttf)}*,body{margin:0}*{font-family:Source Sans\ 3,sans-serif!important;padding:0}.sidepanel-scroll{-webkit-clip-path:inset(0 round 1px);clip-path:inset(0 round 1px);position:relative;scrollbar-color:transparent transparent;scrollbar-gutter:stable;scrollbar-width:thin}.sidepanel-scroll:hover{scrollbar-color:#c3c6cf transparent}.sidepanel-scroll::-webkit-scrollbar,.sidepanel-scroll:hover::-webkit-scrollbar{width:8px}.sidepanel-scroll::-webkit-scrollbar-track{background:transparent;margin:16px 0}.sidepanel-scroll::-webkit-scrollbar-thumb{background:transparent;background-clip:padding-box;border:2px solid transparent;border-radius:999px}.sidepanel-scroll:hover::-webkit-scrollbar-thumb{background:#c3c6cf}.sidepanel-scroll:after,.sidepanel-scroll:before{background:#fff;content:"";height:16px;pointer-events:none;position:absolute;right:0;width:8px;z-index:1}.sidepanel-scroll:before{border-top-right-radius:32px;top:0}.sidepanel-scroll:after{border-bottom-right-radius:32px;bottom:0}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{border:0;font:inherit;margin:0;padding:0}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body,button,input,select,textarea{-webkit-font-smoothing:antialiased;font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#2b2c46;font-family:Roboto,Arial,Helvetica,sans-serif;font-size:17px;font-weight:400;line-height:1.5;text-rendering:optimizeLegibility}a,b,h1,h2,h3,h4,h5,h6,strong{font-weight:700}body{background:#fafafa}h1,h2,h3,h4,h5,h6{line-height:1}h1,h2{color:#031f2b;line-height:1.618}h1{font-size:25px;margin:0 auto 25px}h1.entry-title a{color:#031f2b;font-size:25px}h2{font-size:16px;margin:15px auto 25px}h2.entry-title a{color:#031f2b;font-size:25px}h1 p,h2 p{margin-bottom:0}@media only screen and (min-width:530px) and (max-width:750px){h1 br,h2 br{display:none}}h3{color:#031f2b;font-size:17px;line-height:1.5;margin:22px auto 16px}h4{font-size:15px;margin:22px auto 12px}h5{font-size:13px;margin:22px auto 10px}h6{font-size:11px;margin:22px auto 8px}p a{text-decoration:underline}em{font-style:italic}iframe,img{height:auto;max-width:100%}a{color:rgba(3,31,43,.54);text-decoration:none}a:hover{color:rgba(3,31,43,.7);cursor:pointer}ol,ul{list-style:none;padding-left:20px}ol li,ul li{list-style:disc;margin-bottom:10px;padding-left:10px}.d-flex{display:flex!important}.justify-center{justify-content:center}.flex-end{align-items:flex-end}.flex-center{align-items:center}.hover\:w-\[215px\]:hover{width:215px}.hover\:cursor-pointer:hover{cursor:pointer}.hover\:gap-2:hover{gap:.5rem}.hover\:border-\[\#3E36DC\]:hover{--tw-border-opacity:1;border-color:#3e36dc;border-color:rgb(62 54 220/var(--tw-border-opacity,1))}.hover\:border-\[\#e0e0e0\]:hover{--tw-border-opacity:1;border-color:#e0e0e0;border-color:rgb(224 224 224/var(--tw-border-opacity,1))}.hover\:bg-\[\#2d3145\]:hover{--tw-bg-opacity:1;background-color:#2d3145;background-color:rgb(45 49 69/var(--tw-bg-opacity,1))}.hover\:bg-\[\#E9E9EC\]:hover{--tw-bg-opacity:1;background-color:#e9e9ec;background-color:rgb(233 233 236/var(--tw-bg-opacity,1))}.hover\:bg-\[\#F3F3F5\]:hover{--tw-bg-opacity:1;background-color:#f3f3f5;background-color:rgb(243 243 245/var(--tw-bg-opacity,1))}.hover\:bg-gray-100:hover{--tw-bg-opacity:1;background-color:#f3f4f6;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.hover\:bg-white:hover{--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.hover\:fill-\[url\(\#powered_by_nyris_colored_svg__gradient\)\]:hover{fill:url(#powered_by_nyris_colored_svg__gradient)}.hover\:px-0:hover{padding-left:0;padding-right:0}.hover\:px-0\.5:hover{padding-left:.125rem;padding-right:.125rem}.hover\:font-bold:hover{font-weight:700}.hover\:text-\[\#3E36DC\]:hover{--tw-text-opacity:1;color:#3e36dc;color:rgb(62 54 220/var(--tw-text-opacity,1))}.hover\:text-primary:hover{--tw-text-opacity:1;color:#2b2c46;color:rgb(43 44 70/var(--tw-text-opacity,1))}.hover\:opacity-100:hover{opacity:1}.focus\:bg-white:focus{--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.group:hover .group-hover\:max-w-fit{max-width:-webkit-fit-content;max-width:fit-content}.group:hover .group-hover\:flex-grow{flex-grow:1}.group:hover .group-hover\:fill-\[url\(\#powered_by_nyris_colored_svg__gradient\)\]{fill:url(#powered_by_nyris_colored_svg__gradient)}.group:hover .group-hover\:text-\[\#5a5b61\]{--tw-text-opacity:1;color:#5a5b61;color:rgb(90 91 97/var(--tw-text-opacity,1))}@keyframes accordion-up{0%{height:var(--radix-accordion-content-height)}to{height:0}}.data-\[state\=closed\]\:animate-accordion-up[data-state=closed]{animation:accordion-up .2s ease-out}@keyframes accordion-down{0%{height:0}to{height:var(--radix-accordion-content-height)}}.data-\[state\=open\]\:animate-accordion-down[data-state=open]{animation:accordion-down .2s ease-out}.group[data-state=closed] .group-data-\[state\=closed\]\:hidden,.group[data-state=open] .group-data-\[state\=open\]\:hidden{display:none}@media (min-width:400px){.mobile-md\:mx-2{margin-left:.5rem;margin-right:.5rem}}@media (min-width:777px){.desktop\:left-8{left:2rem}.desktop\:left-\[26px\]{left:26px}.desktop\:top-\[1px\]{top:1px}.desktop\:m-auto{margin:auto}.desktop\:mx-4{margin-left:1rem;margin-right:1rem}.desktop\:-mb-2{margin-bottom:-.5rem}.desktop\:mb-0{margin-bottom:0}.desktop\:mb-8{margin-bottom:2rem}.desktop\:mr-1{margin-right:.25rem}.desktop\:mt-0{margin-top:0}.desktop\:mt-6{margin-top:1.5rem}.desktop\:block{display:block}.desktop\:flex{display:flex}.desktop\:inline-flex{display:inline-flex}.desktop\:hidden{display:none}.desktop\:h-0{height:0}.desktop\:h-10{height:2.5rem}.desktop\:h-12{height:3rem}.desktop\:h-8{height:2rem}.desktop\:h-\[100\%\]{height:100%}.desktop\:h-\[18px\]{height:18px}.desktop\:h-\[456px\]{height:456px}.desktop\:h-\[58px\]{height:58px}.desktop\:h-\[8px\]{height:8px}.desktop\:h-full{height:100%}.desktop\:max-h-\[100\%\]{max-height:100%}.desktop\:max-h-\[456px\]{max-height:456px}.desktop\:min-h-8{min-height:2rem}.desktop\:min-h-\[468px\]{min-height:468px}.desktop\:min-h-\[58px\]{min-height:58px}.desktop\:w-0{width:0}.desktop\:w-8{width:2rem}.desktop\:w-\[18px\]{width:18px}.desktop\:w-\[190px\]{width:190px}.desktop\:w-\[378px\]{width:378px}.desktop\:w-\[500px\]{width:500px}.desktop\:w-\[600px\]{width:600px}.desktop\:w-\[8px\]{width:8px}.desktop\:w-fit{width:-webkit-fit-content;width:fit-content}.desktop\:min-w-8{min-width:2rem}.desktop\:min-w-\[18px\]{min-width:18px}.desktop\:max-w-\[600px\]{max-width:600px}.desktop\:grid-cols-\[repeat\(auto-fit\2c _minmax\(190px\2c _0px\)\)\]{grid-template-columns:repeat(auto-fit,minmax(190px,0))}.desktop\:flex-row{flex-direction:row}.desktop\:gap-1\.5{gap:.375rem}.desktop\:gap-6{gap:1.5rem}.desktop\:overflow-hidden{overflow:hidden}.desktop\:overflow-y-auto{overflow-y:auto}.desktop\:border{border-width:1px}.desktop\:border-b{border-bottom-width:1px}.desktop\:border-r{border-right-width:1px}.desktop\:border-solid{border-style:solid}.desktop\:border-\[\#E0E0E0\]{--tw-border-opacity:1;border-color:#e0e0e0;border-color:rgb(224 224 224/var(--tw-border-opacity,1))}.desktop\:border-gray-300{--tw-border-opacity:1;border-color:#d1d5db;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.desktop\:bg-\[\#2B2C46\]{--tw-bg-opacity:1;background-color:#2b2c46;background-color:rgb(43 44 70/var(--tw-bg-opacity,1))}.desktop\:bg-\[\#FAFAFA\]{--tw-bg-opacity:1;background-color:#fafafa;background-color:rgb(250 250 250/var(--tw-bg-opacity,1))}.desktop\:bg-gray-200{--tw-bg-opacity:1;background-color:#e5e7eb;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.desktop\:bg-theme-primary{background-color:var(--primary-color)}.desktop\:bg-transparent{background-color:transparent}.desktop\:fill-white{fill:#fff}.desktop\:p-2{padding:.5rem}.desktop\:p-3{padding:.75rem}.desktop\:p-6{padding:1.5rem}.desktop\:px-5{padding-left:1.25rem;padding-right:1.25rem}.desktop\:py-1{padding-bottom:.25rem;padding-top:.25rem}.desktop\:pb-0{padding-bottom:0}.desktop\:pl-1{padding-left:.25rem}.desktop\:pl-16{padding-left:4rem}.desktop\:pt-0{padding-top:0}.desktop\:pt-4{padding-top:1rem}.desktop\:pt-8{padding-top:2rem}.desktop\:text-\[10px\]{font-size:10px}.desktop\:shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.desktop\:focus-within\:bg-white:focus-within{--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.desktop\:focus-within\:shadow-\[0px_0px_6px_rgba\(202\2c 202\2c 209\2c 1\)\]:focus-within{--tw-shadow:0px 0px 6px #cacad1;--tw-shadow-colored:0px 0px 6px var(--tw-shadow-color);box-shadow:0 0 #0000,0 0 #0000,var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}.take-photo{padding:3px}.take-photo,.take-photo .take-photo-wrapper{border-radius:100%}.take-photo .take-photo-wrapper .outer{border-radius:100%;box-shadow:0 0 40px 0 #dddee7;display:block}.take-photo .take-photo-wrapper .inner{align-items:center;background:linear-gradient(180deg,#fff 30.73%,#dddee7);border-radius:100%;display:flex;height:260px;justify-content:center;width:260px}body.overflow-hidden{overflow:hidden}.experience-visual-button{align-items:center;background-color:#3e36dc;border-radius:25px;cursor:pointer;display:flex;flex-direction:row;height:40px;justify-content:center;margin:32px auto 0;width:40px}.experience-visual-button.hover,.experience-visual-button:hover{border-radius:25px;transition:.5s;width:197px}.experience-visual-button.hover span,.experience-visual-button:hover span{display:inline;font-family:Source Sans\ 3,sans-serif;font-size:14px;font-weight:600;line-height:16px;margin-right:8px;overflow:hidden;text-align:center;white-space:nowrap;width:149px}.experience-visual-button.hover span:before,.experience-visual-button:hover span:before{color:#fff;content:"Experience Visual Search"}.custom-modal-body{background-color:#f3f3f5;height:100%;padding:32px 16px;position:relative;width:100%}.custom-modal-body .close-icon{position:absolute;right:8px;top:8px}.custom-modal-body-title{font-family:Source Sans\ 3,sans-serif;font-size:20px;font-weight:700;line-height:24px;text-align:left}.custom-modal-body-content.experience-visual-search-images{display:flex;flex-direction:row;flex-wrap:wrap;gap:16px;height:auto;margin:32px auto;width:376px}.custom-modal-body-content.experience-visual-search-images .experience-visual-search-image-container{border-radius:4px;cursor:pointer;height:180px;overflow:hidden;position:relative;width:180px}.custom-modal-body-content.experience-visual-search-images .experience-visual-search-image-container .experience-visual-search-image{background-position:50%;background-size:cover;height:180px;transform:scale(1);width:180px}.custom-modal-body-content.experience-visual-search-images .experience-visual-search-image-container .experience-visual-search-image:hover{transform:scale(1.1);transition:all .3s}.custom-modal-body-content.experience-visual-search-images .experience-visual-search-image-container .box-icon-modal{align-items:center;background-color:#f3f3f5;border-radius:100%;bottom:6px;cursor:pointer;display:flex;height:32px;justify-content:center;overflow:hidden;position:absolute;right:6px;width:32px;z-index:11}@media only screen and (min-width:900px){.custom-modal-body{border-radius:4px;height:380px;max-width:900px;width:900px}.custom-modal-body-subtitle,.custom-modal-body-title{margin-left:24px}.custom-modal-body-content.experience-visual-search-images{width:770px}}@media only screen and (min-width:776px)and (max-width:899px){.custom-modal-body{border-radius:4px;height:600px;max-width:600px;padding:32px;width:600px}}@media only screen and (max-width:776px){.experience-visual-button{width:197px}.experience-visual-button span{display:inline;font-family:Source Sans\ 3,sans-serif;font-size:14px;font-weight:600;line-height:16px;margin-right:8px;overflow:hidden;text-align:center;white-space:nowrap;width:149px}.experience-visual-button span:before{color:#fff;content:"Experience Visual Search"}}@media only screen and (max-width:408px){.custom-modal-body{padding:32px 8px}.custom-modal-body-content.experience-visual-search-images{gap:8px;width:300px}.custom-modal-body-content.experience-visual-search-images .experience-visual-search-image-container,.custom-modal-body-content.experience-visual-search-images .experience-visual-search-image-container .experience-visual-search-image{height:145px;width:145px}}.wrap-main-item-result{border-radius:12px;box-shadow:0 0 16px hsla(0,0%,88%,.8);display:flex;flex-direction:column;overflow:hidden}@media screen and (max-width:776px){.wrap-main-item-result .wrap-main-item-result{max-width:180px!important;width:180px}.wrap-main-item-result .wrap-main-item-result:first-child{margin-top:0!important}}.box-icon-modal{right:6px}.box-icon-modal,.box-icon-modal-3d{align-items:center;background-color:#f3f3f5;border-radius:100%;bottom:6px;cursor:pointer;display:flex;height:32px;justify-content:center;overflow:hidden;position:absolute;width:32px;z-index:11}.box-icon-modal-3d{left:6px}.attribute-container{display:flex;flex-direction:row;flex-wrap:wrap;gap:8px;width:100%}.attribute-container .item-attribute{width:calc(50% - 4px)}.attribute-container .item-attribute:nth-child(odd):last-child{width:100%}.info-container{padding:16px 0 0}.info-container .info-sku{font-size:18px;font-weight:700;line-height:25.63px;padding-left:4px}.info-container .info-marking{background:#e0e0e0;border-radius:2px;font-size:16px;font-weight:400;letter-spacing:.2285714447px;line-height:12px;padding:4px;text-align:left;width:-webkit-max-content;width:max-content;word-break:break-all}.info-container .info-description{font-size:16px;font-weight:400;letter-spacing:.2285714447px;line-height:22.78px;padding:8px 0 0 4px}.info-container-card{background-color:#f3f3f5;display:flex;flex-direction:column;flex-grow:1;height:140px;padding:8px;z-index:40}.info-container-card.w-cta{height:168px}.info-container-card .info-sku{font-size:16px;font-weight:700;letter-spacing:.2285714447px;line-height:22.78px;padding-left:4px}.info-container-card .info-marking{-webkit-line-clamp:2;line-clamp:2;background:#e0e0e0;border-radius:2px;line-height:14px;max-width:-webkit-max-content;max-width:max-content;padding:2px 4px}.info-container-card .info-description,.info-container-card .info-marking{-webkit-box-orient:vertical;display:-webkit-box;font-size:14px;font-weight:400;letter-spacing:.2285714447px;overflow:hidden;word-break:break-all}.info-container-card .info-description{-webkit-line-clamp:3;line-clamp:2;line-height:19.94px;margin-top:8px;padding-left:4px}.splide__arrow{align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:flex;height:2em;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}.splide__track.splide__track--slide{margin:0 46px}.splide__arrow{background:transparent}.splide__arrow svg{fill:#a3a3a3}.splide__track--nav>.splide__list>.splide__slide.is-active{border:2px solid #e0e0e0;border-radius:2px}.img-container,.thumbs-list{display:flex;justify-content:center}.img-container img{max-height:400px}.box-carosel .splide.splide--slide{align-items:center;display:flex;height:calc(100% - 48px);justify-content:center}.box-carosel .splide.splide--slide .splide__track{height:100%;padding-bottom:8px}.feedback-floating{display:flex;height:-webkit-fit-content;height:fit-content;justify-content:flex-end;position:absolute;right:0;z-index:42}.feedback-floating .feedback-section{border-radius:26px;bottom:40px;min-height:48px;min-width:332px;position:fixed}@media screen and (max-width:776px){.feedback-floating .feedback-section{bottom:80px;display:flex;height:-webkit-fit-content!important;height:fit-content!important;justify-content:center;left:50%;margin-left:0;min-height:40px;min-width:300px;transform:translateX(-50%)}.feedback-floating{left:0;margin-left:auto;margin-right:auto;right:0;width:77%}}.feedback-backdrop-blur{-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.feedback-wrapper{align-items:center;border-radius:24px;color:#2b2c46;column-gap:22px;display:flex;flex-shrink:0;height:-webkit-fit-content;height:fit-content;justify-content:center;mix-blend-mode:multiply;padding:8px 8px 8px 24px;width:-webkit-fit-content;width:fit-content}@media screen and (max-width:776px){.feedback-wrapper{padding-left:16px;padding-right:6px;padding-top:6px}}.feedback-wrapper p{font-size:14px;font-weight:600}@media screen and (max-width:776px){.feedback-wrapper p{font-size:12px}}.feedback-wrapper .feedback-icon-wrapper{align-items:center;border-radius:100%;display:flex;justify-content:center;min-height:32px;min-width:32px}@media screen and (max-width:776px){.feedback-wrapper .feedback-icon-wrapper{min-height:28px;min-width:28px}}.feedback-wrapper .feedback-icon-wrapper-close{align-items:center;border-radius:100%;display:flex;justify-content:center;min-height:32px;min-width:32px}@media screen and (max-width:776px){.feedback-wrapper .feedback-icon-wrapper-close{min-height:28px;min-width:28px}}.feedback-wrapper .feedback-icon-wrapper-close:hover{background-color:#d3d1ff;cursor:pointer}.feedback-wrapper .feedback-icon-wrapper:hover{background-color:#fff;box-shadow:0 0 7.04px 0 rgba(0,0,0,.1);cursor:pointer}.feedback-wrapper .feedback-icon-wrapper svg{height:16px;width:16px}@media screen and (max-width:776px){.feedback-wrapper .feedback-icon-wrapper svg{height:14px;width:14px}.feedback-wrapper .feedback-icon-wrapper{height:25px;width:25px}}.feedback-success{align-items:center;background-color:#2b2c46;border-radius:26px;color:#fff;display:flex;font-size:14px;font-weight:600;justify-content:center;min-height:48px;text-align:center;width:100%}@media screen and (max-width:776px){.feedback-success{font-size:12px;min-height:42px}}.full-height{height:100dvh}.max-line-1{-webkit-line-clamp:1;max-height:33px}.max-line-1,.max-line-2{-webkit-box-orient:vertical;display:-webkit-box;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.max-line-2{-webkit-line-clamp:2;max-height:66px}.box-wrap-loading{background:rgba(0,0,0,.459);height:100%;left:0;position:fixed;top:0;width:100%;z-index:1000}.loadingSpinCT{border-radius:100%;height:104px;left:0;margin:auto;position:absolute;right:0;width:104px;z-index:111}.loading-spinner{animation:spin 3s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.rfq-box{padding:24px 40px}@media screen and (max-width:776px){.rfq-box{padding:16px}}@media screen and (max-width:820px){.rfq-box{padding:16px}}.rfq-box .support-button-wrapper{flex-wrap:nowrap}@media screen and (max-width:820px){.rfq-box .support-button-wrapper{gap:8px}}.psol-comp-webviewer3d-container{border-radius:12px!important}.psol-comp-viewbase-iconbutton-44{height:32px!important;width:32px!important}.psol-comp-viewbase-iconbutton-44 .psol-comp-viewbase-svgicon{height:16px!important;width:16px!important}.psol-comp-webviewer3d-copyright-container a{color:#55566b!important;font-size:10px!important}.psol-comp-webviewer3d-copyright-container{margin-bottom:-2px!important}.ComponentCustomizeWebViewer3DFavoriteButtonsBarContainer{padding-bottom:6px!important}.psol-comp-viewbase-svgcontainer{display:none!important}.drag-n-drop-label{background-color:transparent;padding:24px}.drag-n-drop-label:hover{background-color:#fff;border-radius:24px;box-shadow:0 4px 12px rgba(0,0,0,.2)}.drag-n-drop-label:hover .drag-n-drop-inner{background-color:#f0efff;border-color:#e0e0e0;color:#2b2c46}.custom-modal{align-items:center;background-color:hsla(0,0%,9%,.502);bottom:0;display:flex;height:100vh;justify-content:center;left:0;position:absolute;right:0;top:0;width:100vw;z-index:99999}.custom-modal-body{background:#f3f3f5;padding:32px}.custom-modal-body.geolocation{align-items:flex-start;display:flex;flex-direction:column;font-size:14px;font-weight:400;height:200px;justify-content:space-between;letter-spacing:.16px;line-height:16px;width:400px}.custom-modal-body.geolocation .geolocation-title{font-size:20px;font-weight:700;letter-spacing:0;line-height:24px}.custom-modal-body.geolocation button{align-self:flex-end;border:2px solid #3e36dc;border-radius:4px;font-size:16px;font-weight:600;letter-spacing:.16px;line-height:18px;padding:8px 32px}
4
- /*# sourceMappingURL=main.734b52e1.css.map*/
@@ -1 +0,0 @@
1
- {"version":3,"file":"static/css/main.734b52e1.css","mappings":"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","sources":["index.css","styles/mobileCameraCTA.scss","styles/experienceVisualSearch.scss","styles/product.scss","../../../node_modules/@splidejs/react-splide/dist/css/splide.min.css","../../../node_modules/@splidejs/react-splide/dist/css/splide-core.min.css","components/Carousel/ImagePreviewCarousel.scss","styles/feedback.scss","styles/common.scss"],"sourcesContent":["@tailwind base;\n@tailwind components;\n@tailwind utilities;\n\nbody {\n margin: 0;\n font-family: -apple-system, BlinkMacSystemFont, \"Source Sans 3\", \"Segoe UI\", \"Roboto\", \"Oxygen\",\n \"Ubuntu\", \"Cantarell\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\",\n sans-serif;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: #2B2C46\n}\n\n/* Source Sans 3 fonts */\n@font-face {\n font-family: \"Source Sans 3\";\n src: url(\"./common/assets/fonts/source-sans-3/SourceSans3-Light.ttf\");\n font-style: normal;\n font-weight: 300;\n font-display: swap;\n}\n@font-face {\n font-family: \"Source Sans 3\";\n src: url(\"./common/assets/fonts/source-sans-3/SourceSans3-Regular.ttf\");\n font-style: normal;\n font-weight: 400;\n font-display: swap;\n}\n@font-face {\n font-family: \"Source Sans 3\";\n src: url(\"./common/assets/fonts/source-sans-3/SourceSans3-Medium.ttf\");\n font-style: medium;\n font-weight: 500;\n font-display: swap;\n}\n@font-face {\n font-family: \"Source Sans 3\";\n src: url(\"./common/assets/fonts/source-sans-3/SourceSans3-SemiBold.ttf\");\n font-style: medium;\n font-weight: 600;\n font-display: swap;\n}\n@font-face {\n font-family: \"Source Sans 3\";\n src: url(\"./common/assets/fonts/source-sans-3/SourceSans3-Bold.ttf\");\n font-style: medium;\n font-weight: 700;\n font-display: swap;\n}\n\n* {\n margin: 0;\n padding: 0;\n font-family: 'Source Sans 3', sans-serif !important;\n}\n\n/* Side panel scrollbar: visible on hover only (Facebook-like). */\n.sidepanel-scroll {\n scrollbar-width: thin;\n scrollbar-color: transparent transparent;\n scrollbar-gutter: stable;\n position: relative;\n clip-path: inset(0 round 1px);\n}\n\n.sidepanel-scroll:hover {\n scrollbar-color: #c3c6cf transparent;\n}\n\n.sidepanel-scroll::-webkit-scrollbar {\n width: 8px;\n}\n\n.sidepanel-scroll:hover::-webkit-scrollbar {\n width: 8px;\n}\n\n.sidepanel-scroll::-webkit-scrollbar-track {\n background: transparent;\n margin: 16px 0;\n}\n\n.sidepanel-scroll::-webkit-scrollbar-thumb {\n background: transparent;\n border-radius: 999px;\n border: 2px solid transparent;\n background-clip: padding-box;\n}\n\n.sidepanel-scroll:hover::-webkit-scrollbar-thumb {\n background: #c3c6cf;\n}\n\n.sidepanel-scroll::before,\n.sidepanel-scroll::after {\n content: \"\";\n position: absolute;\n right: 0;\n width: 8px;\n height: 16px;\n background: #fff;\n pointer-events: none;\n z-index: 1;\n}\n\n.sidepanel-scroll::before {\n top: 0;\n border-top-right-radius: 32px;\n}\n\n.sidepanel-scroll::after {\n bottom: 0;\n border-bottom-right-radius: 32px;\n}\n\na,\nabbr,\nacronym,\naddress,\napplet,\narticle,\naside,\naudio,\nb,\nbig,\nblockquote,\nbody,\ncanvas,\ncaption,\ncenter,\ncite,\ncode,\ndd,\ndel,\ndetails,\ndfn,\ndiv,\ndl,\ndt,\nem,\nembed,\nfieldset,\nfigcaption,\nfigure,\nfooter,\nform,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nheader,\nhgroup,\nhtml,\ni,\niframe,\nimg,\nins,\nkbd,\nlabel,\nlegend,\nli,\nmark,\nmenu,\nnav,\nobject,\nol,\noutput,\np,\npre,\nq,\nruby,\ns,\nsamp,\nsection,\nsmall,\nspan,\nstrike,\nstrong,\nsub,\nsummary,\nsup,\ntable,\ntbody,\ntd,\ntfoot,\nth,\nthead,\ntime,\ntr,\ntt,\nu,\nul,\nvar,\nvideo {\n font: inherit;\n padding: 0;\n border: 0;\n margin: 0;\n /* vertical-align: baseline */\n}\n\nblockquote,\nq {\n quotes: none;\n}\n\nblockquote:after,\nblockquote:before,\nq:after,\nq:before {\n content: \"\";\n content: none;\n}\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmenu,\nnav,\nsection {\n display: block;\n}\n\nbody,\nbutton,\ninput,\nselect,\ntextarea {\n color: #2B2C46;\n font-family: Roboto, Arial, Helvetica, sans-serif;\n font-size: 17px;\n line-height: 1.5;\n font-weight: 400;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\na,\nb,\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\nstrong {\n font-weight: 700;\n}\n\nbody {\n background: #fafafa;\n}\n\nh1,\nh2,\nh3,\nh4,\nh5,\nh6 {\n line-height: 1;\n}\n\nh1,\nh2 {\n line-height: 1.618;\n color: #031f2b;\n}\n\nh1 {\n font-size: 25px;\n margin: 0 auto 25px;\n}\n\nh1.entry-title a {\n color: #031f2b;\n font-size: 25px;\n}\n\nh2 {\n font-size: 16px;\n margin: 15px auto 25px;\n}\n\nh2.entry-title a {\n color: #031f2b;\n font-size: 25px;\n}\n\nh1 p,\nh2 p {\n margin-bottom: 0;\n}\n\n@media only screen and (min-width: 530px) and (max-width: 750px) {\n h1 br,\n h2 br {\n display: none;\n }\n}\n\nh3 {\n color: #031f2b;\n font-size: 17px;\n line-height: 1.5;\n margin: 22px auto 16px;\n}\n\nh4 {\n font-size: 15px;\n margin: 22px auto 12px;\n}\n\nh5 {\n font-size: 13px;\n margin: 22px auto 10px;\n}\n\nh6 {\n font-size: 11px;\n margin: 22px auto 8px;\n}\n\np a {\n text-decoration: underline;\n}\n\nem {\n font-style: italic;\n}\n\niframe,\nimg {\n max-width: 100%;\n height: auto;\n}\n\na {\n text-decoration: none;\n color: rgba(3, 31, 43, 0.54);\n}\n\na:hover {\n cursor: pointer;\n color: rgba(3, 31, 43, 0.7);\n}\n\nol,\nul {\n list-style: none;\n padding-left: 20px;\n}\n\nol li,\nul li {\n list-style: disc;\n padding-left: 10px;\n margin-bottom: 10px;\n}\n\n/* Css Common all page */\n.d-flex {\n display: flex !important;\n}\n.justify-center {\n justify-content: center;\n}\n.flex-end {\n align-items: flex-end;\n}\n.flex-center {\n align-items: center;\n}\n",".take-photo {\n border-radius: 100%;\n padding: 3px;\n .take-photo-wrapper { \n border-radius: 100%;\n .outer {\n display: block;\n border-radius: 100%;\n box-shadow: 0 0 40px 0 #DDDEE7;\n }\n .inner {\n display: flex;\n justify-content: center;\n align-items: center;\n width: 260px;\n height: 260px;\n border-radius: 100%;\n background: linear-gradient(180deg, #FFFFFF 30.73%, #DDDEE7 100%);\n }\n }\n }","body.overflow-hidden {\n overflow: hidden;\n}\n\n.experience-visual-button {\n background-color: #3E36DC;\n width: 40px;\n height: 40px;\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n border-radius: 25px;\n cursor: pointer;\n margin: 32px auto 0;\n &:hover,\n &.hover {\n width: 197px;\n border-radius: 25px;\n transition: .5s;\n span {\n width: 149px;\n display: inline;\n margin-right: 8px;\n overflow: hidden;\n white-space: nowrap;\n font-family: 'Source Sans 3', sans-serif;\n font-size: 14px;\n font-weight: 600;\n line-height: 16px;\n text-align: center;\n &:before {\n color: #fff;\n content: 'Experience Visual Search';\n }\n }\n }\n}\n\n.custom-modal {\n\n &-body {\n position: relative;\n width: 100%;\n height: 100%;\n background-color: #F3F3F5;\n padding: 32px 16px;\n .close-icon {\n top: 8px;\n right: 8px;\n position: absolute;\n }\n &-title {\n font-family: 'Source Sans 3', sans-serif;;\n font-size: 20px;\n font-weight: 700;\n line-height: 24px;\n text-align: left;\n\n }\n &-content {\n &.experience-visual-search-images {\n margin: 32px auto;\n height: auto;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n gap: 16px;\n width: 376px;\n .experience-visual-search-image-container {\n width: 180px;\n height: 180px;\n overflow: hidden;\n border-radius: 4px;\n position: relative;\n cursor: pointer;\n .experience-visual-search-image {\n width: 180px;\n height: 180px;\n background-size: cover;\n background-position: center;\n transform: scale(1);\n &:hover {\n transition: all 0.3s;\n transform: scale(1.1);\n }\n }\n .box-icon-modal {\n bottom: 6px;\n right: 6px;\n position: absolute;\n border-radius: 100%;\n background-color: #F3F3F5;\n overflow: hidden;\n z-index: 11;\n width: 32px;\n height: 32px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n }\n }\n }\n }\n }\n}\n\n@media only screen and (min-width: 900px) {\n .custom-modal {\n &-body {\n width: 900px;\n max-width: 900px;\n height: 380px;\n border-radius: 4px;\n &-title,\n &-subtitle {\n margin-left: 24px;\n }\n &-content {\n &.experience-visual-search-images {\n width: 770px;\n }\n }\n }\n }\n}\n\n@media only screen and (min-width: 776px) and (max-width: 899px) {\n .custom-modal {\n &-body {\n width: 600px;\n max-width: 600px;\n height: 600px;\n padding: 32px;\n border-radius: 4px;\n }\n }\n}\n\n@media only screen and (max-width: 776px) {\n .experience-visual-button {\n width: 197px;\n span {\n width: 149px;\n display: inline;\n margin-right: 8px;\n overflow: hidden;\n white-space: nowrap;\n font-family: 'Source Sans 3', sans-serif;;\n font-size: 14px;\n font-weight: 600;\n line-height: 16px;\n text-align: center;\n &:before {\n color: #fff;\n content: 'Experience Visual Search';\n }\n }\n }\n}\n\n@media only screen and (max-width: 408px) {\n .custom-modal {\n &-body {\n padding: 32px 8px;\n &-content {\n &.experience-visual-search-images {\n width: 300px;\n gap: 8px;\n .experience-visual-search-image-container {\n width: 145px;\n height: 145px;\n .experience-visual-search-image {\n width: 145px;\n height: 145px;\n }\n }\n }\n }\n }\n }\n}\n\n",".wrap-main-item-result {\n display: flex;\n flex-direction: column;\n border-radius: 12px;\n overflow: hidden;\n box-shadow: 0px 0px 16px rgba(224, 224, 224, 0.8);\n\n @media screen and (max-width: 776px) {\n .wrap-main-item-result {\n width: 180px;\n max-width: 180px !important;\n \n &:first-child {\n margin-top: 0px !important;\n }\n }\n }\n \n }\n\n .box-icon-modal {\n bottom: 6px;\n right: 6px;\n position: absolute;\n border-radius: 100%;\n background-color: #F3F3F5;\n overflow: hidden;\n z-index: 11;\n width: 32px;\n height: 32px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n }\n\n .box-icon-modal-3d {\n bottom: 6px;\n left: 6px;\n position: absolute;\n border-radius: 100%;\n background-color: #F3F3F5;\n overflow: hidden;\n z-index: 11;\n width: 32px;\n height: 32px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n }\n\n .attribute-container {\n width: 100%;\n display: flex;\n flex-direction: row;\n flex-wrap: wrap;\n gap: 8px;\n .item-attribute {\n width: calc(50% - 4px);\n &:nth-child(odd):nth-last-child(1) {\n width: 100%;\n }\n }\n }\n\n .info-container {\n padding: 16px 0 0 0;\n .info-sku {\n font-size: 18px;\n font-weight: 700;\n line-height: 25.63px;\n padding-left: 4px;\n }\n .info-marking {\n width: max-content;\n background: #E0E0E0;\n border-radius: 2px;\n padding: 4px;\n word-break: break-all;\n font-size: 16px;\n font-weight: 400;\n line-height: 12px;\n letter-spacing: 0.22857144474983215px;\n text-align: left;\n }\n .info-description {\n font-size: 16px;\n font-weight: 400;\n line-height: 22.78px;\n letter-spacing: 0.22857144474983215px;\n padding: 8px 0 0 4px;\n }\n }\n\n\n .info-container-card {\n flex-direction: column;\n background-color: #F3F3F5;\n flex-grow: 1;\n z-index: 40;\n display: flex;\n padding: 8px;\n height: 140px;\n &.w-cta {\n height: 168px;\n }\n .info-sku {\n font-size: 16px;\n font-weight: 700;\n line-height: 22.78px;\n letter-spacing: 0.22857144474983215px;\n padding-left: 4px;\n }\n .info-marking {\n max-width: max-content;\n padding: 2px 4px;\n font-size: 14px;\n font-weight: 400;\n line-height: 14px;\n letter-spacing: 0.22857144474983215px;\n background: #E0E0E0;\n border-radius: 2px;\n word-break: break-all;\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 2;\n line-clamp: 2;\n -webkit-box-orient: vertical;\n }\n .info-description {\n margin-top: 8px;\n font-size: 14px;\n font-weight: 400;\n line-height: 19.94px;\n letter-spacing: 0.22857144474983215px;\n word-break: break-all;\n padding-left: 4px;\n overflow: hidden;\n display: -webkit-box;\n -webkit-line-clamp: 3;\n line-clamp: 2;\n -webkit-box-orient: vertical;\n }\n }\n \n .box-carosel {\n .splide.splide--slide {\n height: calc(100% - 48px);\n display: flex;\n align-items: center;\n justify-content: center;\n .splide__track {\n \n }\n }\n }",".splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}","@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}",".splide__track.splide__track--slide{\n margin: 0 46px;\n}\n\n.splide__arrow{\n background: transparent;\n svg {\n fill: #a3a3a3;\n }\n}\n\n.splide__track--nav>.splide__list>.splide__slide.is-active{\n border: 2px solid #e0e0e0;\n border-radius: 2px;\n}\n\n.thumbs-list{\n display: flex;\n justify-content: center;\n}\n\n.img-container {\n display: flex;\n justify-content: center;\n\n img {\n max-height: 400px;\n // @media only screen and (max-width: 776px) {\n // max-height: 335px;\n // }\n }\n}\n\n.box-carosel {\n .splide.splide--slide {\n height: calc(100% - 48px);\n display: flex;\n align-items: center;\n justify-content: center;\n .splide__track {\n height: 100%;\n padding-bottom: 8px;\n }\n }\n}\n",".feedback-floating {\n height: fit-content;\n right: 0px;\n position: absolute;\n z-index: 42;\n display: flex;\n justify-content: flex-end;\n \n .feedback-section {\n position: fixed;\n bottom: 40px;\n border-radius: 26px;\n min-width: 332px;\n min-height: 48px;\n \n @media screen and (max-width: 776px) {\n display: flex;\n margin-left: 0px;\n bottom: 80px;\n min-width: 300px;\n min-height: 40px;\n height: fit-content !important;\n justify-content: center;\n left: 50%;\n transform: translateX(-50%);\n }\n }\n \n @media screen and (max-width: 776px) {\n left: 0;\n right: 0;\n margin-left: auto;\n margin-right: auto;\n width: 77%;\n }\n }\n \n .feedback-backdrop-blur {\n backdrop-filter: blur(2px);\n \n }\n \n .feedback-wrapper {\n // background-color: #e4e3ffed;\n mix-blend-mode: multiply;\n border-radius: 24px;\n display: flex;\n justify-content: center;\n align-items: center;\n padding-left: 24px;\n padding-right: 8px;\n padding-top: 8px;\n padding-bottom: 8px;\n width: fit-content;\n height: fit-content;\n \n column-gap: 22px;\n \n flex-shrink: 0;\n color: #2B2C46;\n \n @media screen and (max-width: 776px) {\n padding-left: 16px;\n padding-right: 4px;\n padding-right: 6px;\n padding-top: 6px;\n }\n \n p{\n font-size: 14px;\n font-weight: 600;\n @media screen and (max-width: 776px) {\n font-size: 12px;\n }\n }\n \n .feedback-icon-wrapper {\n min-width: 32px;\n min-height: 32px;\n border-radius: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n \n @media screen and (max-width: 776px) {\n min-width: 28px;\n min-height: 28px;\n }\n \n &-close {\n min-width: 32px;\n min-height: 32px;\n border-radius: 100%;\n display: flex;\n justify-content: center;\n align-items: center;\n \n @media screen and (max-width: 776px) {\n min-width: 28px;\n min-height: 28px;\n }\n \n &:hover {\n background-color: #D3D1FF;\n cursor: pointer; \n }\n }\n \n \n \n &:hover {\n background-color: #FFF;\n box-shadow: 0px 0px 7.04px 0px rgba(0, 0, 0, 0.10);\n cursor: pointer;\n \n }\n \n svg{\n width: 16px;\n height: 16px;\n \n @media screen and (max-width: 776px) {\n width: 14px;\n height: 14px;\n }\n \n }\n \n @media screen and (max-width: 776px) {\n width: 25px;\n height: 25px;\n }\n }\n }\n \n .feedback-success {\n font-size: 14px;\n font-weight: 600;\n color: #fff;\n background-color: #2B2C46;\n width: 100%;\n min-height: 48px;\n // height: 100%;\n text-align: center;\n border-radius: 26px;\n display: flex;\n justify-content: center;\n align-items: center;\n \n @media screen and (max-width: 776px) {\n font-size: 12px;\n min-height: 42px;\n }\n }",".full-height {\n height: 100dvh; /* Fallback for browsers that do not support Custom Properties */\n }\n\n .max-line-1 {\n word-break: break-word;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n max-height: 33px; /* fallback */\n -webkit-line-clamp: 1; /* number of lines to show */\n -webkit-box-orient: vertical;\n }\n\n .max-line-2 {\n word-break: break-word;\n overflow: hidden;\n text-overflow: ellipsis;\n display: -webkit-box;\n max-height: 66px; /* fallback */\n -webkit-line-clamp: 2; /* number of lines to show */\n -webkit-box-orient: vertical;\n }\n\n .box-wrap-loading {\n position: fixed;\n background: #00000075;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 1000;\n top: 0;\n }\n\n .loadingSpinCT {\n position: absolute;\n width: 104px;\n height: 104px;\n \n // background: #fff;\n border-radius: 100%;\n z-index: 111;\n left: 0;\n right: 0;\n margin: auto;\n \n }\n\n .loading-spinner {\n animation: spin 3s linear infinite;\n }\n \n \n @keyframes spin {\n from {\n transform: rotate(0deg);\n }\n to {\n transform: rotate(360deg);\n }\n }\n\n\n\n .rfq-box{\n padding: 24px 40px 24px 40px;\n @media screen and (max-width: 776px) {\n padding: 16px 16px 16px 16px;\n \n }\n @media screen and (max-width: 820px) {\n padding: 16px 16px 16px 16px;\n \n }\n .support-button-wrapper {\n flex-wrap: nowrap;\n @media screen and (max-width: 820px) {\n gap: 8px;\n }\n }\n \n \n }\n\n.psol-comp-webviewer3d-container {\n border-radius: 12px !important;\n }\n\n.psol-comp-viewbase-iconbutton-44 {\n\n width: 32px !important;\n height: 32px !important;\n .psol-comp-viewbase-svgicon {\n width: 16px !important;\n height: 16px !important;\n }\n }\n \n.psol-comp-webviewer3d-copyright-container {\n a {\n font-size: 10px !important; \n color: #55566B !important;\n }\n }\n.psol-comp-webviewer3d-copyright-container {\n margin-bottom: -2px !important;\n }\n \n.ComponentCustomizeWebViewer3DFavoriteButtonsBarContainer{\n padding-bottom: 6px !important;\n }\n \n.psol-comp-viewbase-svgcontainer{\n display: none !important;\n }\n\n.drag-n-drop-label {\n background-color: transparent;\n padding: 24px;\n &:hover {\n background-color: #fff;\n box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);\n border-radius: 24px;\n .drag-n-drop-inner {\n background-color: #F0EFFF;\n border-color: #e0e0e0;\n color: #2B2C46;\n }\n }\n}\n\n.custom-modal {\n position: absolute;\n z-index: 99999;\n width: 100vw;\n height: 100vh;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n display: flex;\n align-items: center;\n justify-content: center;\n background-color: #16161680;\n &-body {\n padding: 32px;\n background: #F3F3F5;\n &.geolocation {\n width: 400px;\n height: 200px;\n font-weight: 400;\n font-size: 14px;\n line-height: 16px;\n letter-spacing: 0.16px;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: flex-start;\n .geolocation-title {\n font-weight: 700;\n font-size: 20px;\n line-height: 24px;\n letter-spacing: 0;\n }\n button {\n border: 2px solid #3E36DC;\n border-radius: 4px;\n padding: 8px 32px;\n align-self: flex-end;\n font-weight: 600;\n font-size: 16px;\n line-height: 18px;\n letter-spacing: 0.16px;\n }\n }\n }\n}"],"names":[],"sourceRoot":""}