@nyris/nyris-webapp 0.3.91 → 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.
- package/build/asset-manifest.json +6 -6
- package/build/data/related-parts.json +83 -0
- package/build/index.html +1 -1
- package/build/js/settings.example.js +3 -0
- package/build/static/css/main.5ea01690.css +4 -0
- package/build/static/css/main.5ea01690.css.map +1 -0
- package/build/static/js/main.36b77705.js +3 -0
- package/build/static/js/{main.f2255597.js.map → main.36b77705.js.map} +1 -1
- package/package.json +4 -3
- package/public/data/related-parts.json +83 -0
- package/public/js/settings.example.js +3 -0
- package/src/App.test.tsx +0 -1
- package/src/App.tsx +0 -1
- package/src/assets/arrow_down_expanded.svg +3 -0
- package/src/assets/arrow_enter.svg +3 -0
- package/src/assets/camera.svg +3 -0
- package/src/assets/close.svg +3 -0
- package/src/assets/enter.svg +3 -0
- package/src/assets/refresh.svg +3 -0
- package/src/assets/vizo_avatar.svg +16 -0
- package/src/components/Cadenas/CadenasWebViewer.tsx +1 -1
- package/src/components/Cart.tsx +48 -36
- package/src/components/ChatAssistant/ChatAssistant.tsx +289 -0
- package/src/components/ChatAssistant/MobileChatAssistant.tsx +291 -0
- package/src/components/ChatAssistant/OptionChip.tsx +78 -0
- package/src/components/ChatAssistant/index.ts +3 -0
- package/src/components/ChatAssistant/useChatAssistantLogic.ts +745 -0
- package/src/components/CurrentRefinements.tsx +2 -2
- package/src/components/CustomCameraDrawer.tsx +56 -13
- package/src/components/DragDropFile.tsx +5 -5
- package/src/components/ExperienceVisualSearch/ExperienceVisualSearch.tsx +1 -1
- package/src/components/Header.tsx +116 -96
- package/src/components/Hint.tsx +1 -2
- package/src/components/HitsPerPage.tsx +9 -3
- package/src/components/ImagePreview.tsx +32 -17
- package/src/components/ImageUpload.tsx +16 -8
- package/src/components/Inquiry/InquiryBanner.tsx +1 -1
- package/src/components/Inquiry/InquiryModal.tsx +35 -29
- package/src/components/ItemSpecification.tsx +58 -126
- package/src/components/LocationInfoPopup.tsx +33 -33
- package/src/components/MatchNotificationBanner.tsx +90 -36
- package/src/components/PostFilter/PostFilter.tsx +1 -1
- package/src/components/PostFilter/PostFilterComponent.tsx +0 -1
- package/src/components/PostFilter/PostFilterFindApi.tsx +0 -1
- package/src/components/PoweredBy.tsx +1 -1
- package/src/components/PreFilter/PreFilter.tsx +14 -3
- package/src/components/PreFilter/PreFilterModal.tsx +0 -1
- package/src/components/Product/Product.tsx +15 -11
- package/src/components/Product/ProductAttribute.tsx +4 -5
- package/src/components/Product/ProductDetailViewModal.tsx +2 -4
- package/src/components/Product/ProductList.tsx +26 -13
- package/src/components/Rfq/RfqModal.tsx +1 -1
- package/src/components/SidePanel.tsx +124 -91
- package/src/components/SmartFilter.tsx +320 -0
- package/src/components/TextSearch.tsx +134 -70
- package/src/components/UploadDisclaimer.tsx +1 -1
- package/src/hooks/useBadResultsRecovery.ts +407 -0
- package/src/hooks/useEffectiveGroundingResults.ts +54 -0
- package/src/hooks/useGoodResultsChat.ts +651 -0
- package/src/hooks/useGroundedSearch.ts +88 -0
- package/src/hooks/useImageSearch.ts +139 -187
- package/src/hooks/useResultEvaluator.ts +417 -0
- package/src/index.css +1 -1
- package/src/index.tsx +0 -1
- package/src/layouts/AppLayout.tsx +53 -2
- package/src/pages/Home.tsx +11 -52
- package/src/pages/Login.tsx +1 -2
- package/src/pages/Logout.tsx +1 -1
- package/src/pages/Result.tsx +198 -200
- package/src/providers/AuthProvider.tsx +0 -1
- package/src/services/Feedback.ts +1 -1
- package/src/services/visualSearch.ts +0 -21
- package/src/services/vizo.ts +192 -4
- package/src/stores/chat/chatStore.ts +150 -0
- package/src/stores/chat/conversationStore.ts +300 -0
- package/src/stores/request/Misc/misc.slice.ts +2 -2
- package/src/stores/request/filter/filter.slice.ts +8 -8
- package/src/stores/request/query/query.slice.ts +2 -2
- package/src/stores/request/requestImage/requestImage.slice.ts +6 -6
- package/src/stores/request/specifications/specifications.slice.ts +10 -7
- package/src/stores/result/detectedRegions/detectedRegions.slice.ts +1 -1
- package/src/stores/result/prodcuts/products.initialState.ts +12 -0
- package/src/stores/result/prodcuts/products.slice.ts +28 -8
- package/src/stores/result/session/session.slice.ts +2 -2
- package/src/stores/smartFilters/smartFiltersStore.ts +270 -0
- package/src/stores/types.ts +41 -0
- package/src/stores/ui/ai/ai.initialState.ts +5 -0
- package/src/stores/ui/ai/ai.slice.ts +15 -0
- package/src/stores/ui/banner/banner.initialState.ts +6 -0
- package/src/stores/ui/banner/banner.slice.ts +14 -0
- package/src/stores/ui/feedback/feedback.slice.ts +1 -1
- package/src/stores/ui/loading/loading.slice.ts +4 -4
- package/src/stores/ui/uiStore.ts +7 -1
- package/src/styles/product.scss +0 -2
- package/src/types.ts +3 -7
- package/src/utils/cropImageToBase64.ts +32 -0
- package/src/utils/fetchProductImage.ts +109 -0
- package/src/utils/imageConverters.ts +124 -0
- package/src/utils/relatedParts.ts +35 -0
- package/src/utils/specificationFilter.ts +1 -5
- package/tailwind.config.js +3 -2
- package/build/static/css/main.734b52e1.css +0 -4
- package/build/static/css/main.734b52e1.css.map +0 -1
- package/build/static/js/main.f2255597.js +0 -3
- package/src/utils/addAssets.ts +0 -40
- /package/build/static/js/{main.f2255597.js.LICENSE.txt → main.36b77705.js.LICENSE.txt} +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"files": {
|
|
3
|
-
"main.css": "/static/css/main.
|
|
4
|
-
"main.js": "/static/js/main.
|
|
3
|
+
"main.css": "/static/css/main.5ea01690.css",
|
|
4
|
+
"main.js": "/static/js/main.36b77705.js",
|
|
5
5
|
"static/js/95.c359f13c.chunk.js": "/static/js/95.c359f13c.chunk.js",
|
|
6
6
|
"static/js/296.fb6fd4dc.chunk.js": "/static/js/296.fb6fd4dc.chunk.js",
|
|
7
7
|
"static/media/SourceSans3-Regular.ttf": "/static/media/SourceSans3-Regular.c69f9658f16351f79f33.ttf",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"static/media/img-1-1.png": "/static/media/img-1-1.130fb8d0203452fee547.png",
|
|
24
24
|
"static/media/img3-1.png": "/static/media/img3-1.6eb26a22e6ea83629d27.png",
|
|
25
25
|
"index.html": "/index.html",
|
|
26
|
-
"main.
|
|
27
|
-
"main.
|
|
26
|
+
"main.5ea01690.css.map": "/static/css/main.5ea01690.css.map",
|
|
27
|
+
"main.36b77705.js.map": "/static/js/main.36b77705.js.map",
|
|
28
28
|
"95.c359f13c.chunk.js.map": "/static/js/95.c359f13c.chunk.js.map",
|
|
29
29
|
"296.fb6fd4dc.chunk.js.map": "/static/js/296.fb6fd4dc.chunk.js.map"
|
|
30
30
|
},
|
|
31
31
|
"entrypoints": [
|
|
32
|
-
"static/css/main.
|
|
33
|
-
"static/js/main.
|
|
32
|
+
"static/css/main.5ea01690.css",
|
|
33
|
+
"static/js/main.36b77705.js"
|
|
34
34
|
]
|
|
35
35
|
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
{
|
|
2
|
+
"GC Gruppe": [
|
|
3
|
+
{
|
|
4
|
+
"keywords": ["faucet", "mixer tap", "basin mixer", "Waschtischarmatur", "Armatur", "Mischer", "Einhandmischer", "Einhandmischbatterie", "Einhebelmischer", "Waschtischbatterie"],
|
|
5
|
+
"relatedParts": [
|
|
6
|
+
{ "label": "Filter Cartridge", "description": "Replacement ceramic or carbon filter cartridge for water purification" },
|
|
7
|
+
{ "label": "Sealing Tape", "description": "PTFE thread seal tape for leak-proof pipe connections" },
|
|
8
|
+
{ "label": "Aerator", "description": "Flow regulator/strainer insert for the faucet spout" },
|
|
9
|
+
{ "label": "Flexible Hose", "description": "Braided water supply connection hose" },
|
|
10
|
+
{ "label": "Angle Valve", "description": "Shut-off valve for the water supply line beneath the basin" }
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"keywords": ["shower", "Brause", "Dusche", "Duschkopf", "Duscharmatur", "Brausekopf", "shower head", "shower enclosure"],
|
|
15
|
+
"relatedParts": [
|
|
16
|
+
{ "label": "Shower Hose", "description": "Flexible connection hose between mixer and shower head" },
|
|
17
|
+
{ "label": "Wall Bracket", "description": "Mounting bracket or slide bar for the shower head" },
|
|
18
|
+
{ "label": "Sealing Set", "description": "Gaskets and O-rings for shower connections" },
|
|
19
|
+
{ "label": "Shower Filter", "description": "Inline water filter for limescale and chlorine reduction" },
|
|
20
|
+
{ "label": "Diverter Valve", "description": "Valve to switch water flow between tub spout and shower" }
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"keywords": ["radiator", "Heizkoerper", "Heizung", "Heizkörper", "Konvektor", "panel radiator"],
|
|
25
|
+
"relatedParts": [
|
|
26
|
+
{ "label": "Thermostat Valve", "description": "Temperature control valve head for the radiator" },
|
|
27
|
+
{ "label": "Bleed Valve", "description": "Air release valve for radiator maintenance" },
|
|
28
|
+
{ "label": "Wall Bracket", "description": "Mounting bracket set for radiator installation" },
|
|
29
|
+
{ "label": "Lockshield Valve", "description": "Return-side balancing valve for flow regulation" },
|
|
30
|
+
{ "label": "Radiator Plug", "description": "Blanking plug and seal for unused radiator connections" }
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"keywords": ["toilet", "WC", "Toilette", "Klosett", "wall-hung WC", "stand-WC"],
|
|
35
|
+
"relatedParts": [
|
|
36
|
+
{ "label": "Flush Valve", "description": "Internal flush mechanism and valve for the cistern" },
|
|
37
|
+
{ "label": "Toilet Seat", "description": "Replacement seat and lid with hinges" },
|
|
38
|
+
{ "label": "Flush Plate", "description": "Actuator plate for concealed cistern systems" },
|
|
39
|
+
{ "label": "Concealed Cistern", "description": "In-wall cistern frame for wall-hung installations" },
|
|
40
|
+
{ "label": "Connection Set", "description": "Waste pipe connector and seal kit for WC installation" }
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"keywords": ["pump", "Pumpe", "Umwälzpumpe", "circulation pump", "Heizungspumpe"],
|
|
45
|
+
"relatedParts": [
|
|
46
|
+
{ "label": "Check Valve", "description": "Non-return valve to prevent backflow in the system" },
|
|
47
|
+
{ "label": "Pump Flange Set", "description": "Connection flanges and gaskets for pump installation" },
|
|
48
|
+
{ "label": "Insulation Shell", "description": "Thermal insulation jacket for the pump body" },
|
|
49
|
+
{ "label": "Replacement Seal", "description": "Mechanical shaft seal for pump maintenance" },
|
|
50
|
+
{ "label": "Speed Controller", "description": "Electronic controller for variable pump speed" }
|
|
51
|
+
]
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"keywords": ["boiler", "Kessel", "Heizkessel", "Brennwertkessel", "Gaskessel", "water heater", "Warmwasserspeicher", "Durchlauferhitzer"],
|
|
55
|
+
"relatedParts": [
|
|
56
|
+
{ "label": "Expansion Vessel", "description": "Pressure compensation vessel for the heating circuit" },
|
|
57
|
+
{ "label": "Safety Valve", "description": "Pressure relief valve for overpressure protection" },
|
|
58
|
+
{ "label": "Flue Pipe", "description": "Exhaust gas duct for combustion venting" },
|
|
59
|
+
{ "label": "Condensate Trap", "description": "Siphon for condensate drainage from condensing boilers" },
|
|
60
|
+
{ "label": "Ignition Electrode", "description": "Replacement spark electrode for burner ignition" }
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"keywords": ["washbasin", "Waschbecken", "basin", "Waschtisch", "Handwaschbecken", "vanity"],
|
|
65
|
+
"relatedParts": [
|
|
66
|
+
{ "label": "Pop-up Waste", "description": "Click-clack or pop-up drain plug for the basin" },
|
|
67
|
+
{ "label": "Siphon", "description": "Bottle trap or P-trap for basin waste drainage" },
|
|
68
|
+
{ "label": "Basin Mixer", "description": "Single-lever or two-handle mixer tap for the washbasin" },
|
|
69
|
+
{ "label": "Mounting Kit", "description": "Fixing bolts and brackets for basin installation" },
|
|
70
|
+
{ "label": "Overflow Cover", "description": "Decorative cover for the basin overflow hole" }
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
"keywords": ["valve", "Ventil", "Absperrventil", "Regelventil", "ball valve", "Kugelventil", "gate valve"],
|
|
75
|
+
"relatedParts": [
|
|
76
|
+
{ "label": "Replacement Seal", "description": "O-ring or flat gasket set for valve maintenance" },
|
|
77
|
+
{ "label": "Handle Extension", "description": "Extended lever or wheel handle for hard-to-reach valves" },
|
|
78
|
+
{ "label": "Insulation Jacket", "description": "Thermal insulation shell for exposed valve bodies" },
|
|
79
|
+
{ "label": "Fitting Adapter", "description": "Thread adapter or compression fitting for pipe connection" }
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
]
|
|
83
|
+
}
|
package/build/index.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta name="robots" content="noindex, nofollow"><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,viewport-fit=auto,user-scalable=no"/><meta name="theme-color" content="#000000"/><link rel="apple-touch-icon" sizes="180x180" href="images/fav2/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="images/fav2/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="images/fav2/favicon-16x16.png"/><link rel="manifest" href="images/fav2/site.webmanifest"/><link rel="mask-icon" href="images/fav2/safari-pinned-tab.svg" color="#5bbad5"/><link rel="shortcut icon" href="images/fav2/favicon.ico"/><meta name="msapplication-TileColor" content="#da532c"/><meta name="theme-color" content="#ffffff"/><title>Spare parts search</title><script src="js/settings.js"></script><script>document.documentElement.style.setProperty("--primary-color",window.settings.theme.primaryColor),document.documentElement.style.setProperty("--secondary-color",window.settings.theme.secondaryColor)</script><script>let vh=.01*window.innerHeight;function checkScriptsLoaded(){window.dispatchEvent(new Event("cadenasScriptsLoaded"))}document.documentElement.style.setProperty("--vh",`${vh}px`)</script><script defer="defer" src="/static/js/main.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta name="robots" content="noindex, nofollow"><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,viewport-fit=auto,user-scalable=no"/><meta name="theme-color" content="#000000"/><link rel="apple-touch-icon" sizes="180x180" href="images/fav2/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="images/fav2/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="images/fav2/favicon-16x16.png"/><link rel="manifest" href="images/fav2/site.webmanifest"/><link rel="mask-icon" href="images/fav2/safari-pinned-tab.svg" color="#5bbad5"/><link rel="shortcut icon" href="images/fav2/favicon.ico"/><meta name="msapplication-TileColor" content="#da532c"/><meta name="theme-color" content="#ffffff"/><title>Spare parts search</title><script src="js/settings.js"></script><script>document.documentElement.style.setProperty("--primary-color",window.settings.theme.primaryColor),document.documentElement.style.setProperty("--secondary-color",window.settings.theme.secondaryColor)</script><script>let vh=.01*window.innerHeight;function checkScriptsLoaded(){window.dispatchEvent(new Event("cadenasScriptsLoaded"))}document.documentElement.style.setProperty("--vh",`${vh}px`)</script><script defer="defer" src="/static/js/main.36b77705.js"></script><link href="/static/css/main.5ea01690.css" rel="stylesheet"></head><body><script>if(window.settings?.cadenas?.cadenas3dWebView){const e=document.createElement("link");e.rel="stylesheet",e.href="https://assets.nyris.io/nyris-widget/cadenas/8.1.0/api/css/psol.components.min.css",document.head.appendChild(e);const s=document.createElement("script");s.type="text/javascript",s.src="https://assets.nyris.io/nyris-widget/cadenas/8.1.0/api/js/thirdparty.min.js",s.defer=!0,s.onload=()=>{const e=document.createElement("script");e.type="text/javascript",e.src="https://assets.nyris.io/nyris-widget/cadenas/8.1.0/api/js/psol.components.min.js",e.defer=!0,e.onload=()=>{window.psolComponents=!0,checkScriptsLoaded()},document.body.appendChild(e)},document.body.appendChild(s)}</script><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
|
@@ -46,6 +46,8 @@ var settings = {
|
|
|
46
46
|
vizo: {
|
|
47
47
|
groundingEnabled: false,
|
|
48
48
|
fallbackToElasticSearch: false,
|
|
49
|
+
chat: true,
|
|
50
|
+
findRelatedParts: true,
|
|
49
51
|
},
|
|
50
52
|
// UI - theme
|
|
51
53
|
theme: {
|
|
@@ -103,6 +105,7 @@ var settings = {
|
|
|
103
105
|
experienceVisualSearchImages: [],
|
|
104
106
|
simpleCardView: false,
|
|
105
107
|
noSimilarSearch: false,
|
|
108
|
+
useSmartFilters: false,
|
|
106
109
|
showFeedback: false,
|
|
107
110
|
geoLocation: false,
|
|
108
111
|
geoLocationMessage: '',
|
|
@@ -0,0 +1,4 @@
|
|
|
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-0\.5{top:-.125rem}.-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-\[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-3{top:.75rem}.top-4{top:1rem}.top-7{top:1.75rem}.top-\[50\%\]{top:50%}.z-10{z-index:10}.z-50{z-index:50}.z-\[-1\]{z-index:-1}.z-\[50\]{z-index:50}.z-\[51\]{z-index:51}.z-\[9999\]{z-index:9999}.col-span-full{grid-column:1/-1}.m-0{margin:0}.m-4{margin:1rem}.m-auto{margin:auto}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.mx-3{margin-left:.75rem;margin-right:.75rem}.mx-4{margin-left:1rem;margin-right:1rem}.mx-auto{margin-left:auto;margin-right:auto}.my-4{margin-bottom:1rem;margin-top:1rem}.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-3{margin-bottom:.75rem}.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-\[30px\]{margin-left:30px}.ml-auto{margin-left:auto}.mr-16{margin-right:4rem}.mr-2{margin-right:.5rem}.mr-3{margin-right:.75rem}.mr-3\.5{margin-right:.875rem}.mr-4{margin-right:1rem}.mr-auto{margin-right:auto}.mt-1{margin-top:.25rem}.mt-2{margin-top:.5rem}.mt-2\.5{margin-top:.625rem}.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}.inline{display:inline}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.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-14{height:3.5rem}.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-\[10px\]{height:10px}.h-\[12px\]{height:12px}.h-\[168px\]{height:168px}.h-\[22px\]{height:22px}.h-\[368px\]{height:368px}.h-\[48px\]{height:48px}.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-\[100px\]{max-height:100px}.max-h-\[368px\]{max-height:368px}.max-h-\[50vh\]{max-height:50vh}.max-h-\[90svh\]{max-height:90svh}.max-h-\[95vh\]{max-height:95vh}.max-h-full{max-height:100%}.min-h-0{min-height:0}.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-\[56px\]{min-height:56px}.min-h-\[60px\]{min-height:60px}.min-h-full{min-height:100%}.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-14{width:3.5rem}.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-\[10px\]{width:10px}.w-\[110px\]{width:110px}.w-\[12px\]{width:12px}.w-\[180px\]{width:180px}.w-\[215px\]{width:215px}.w-\[22px\]{width:22px}.w-\[295px\]{width:295px}.w-\[325px\]{width:325px}.w-\[334px\]{width:334px}.w-\[360px\]{width:360px}.w-\[410px\]{width:410px}.w-\[48px\]{width:48px}.w-\[50px\]{width:50px}.w-\[60px\]{width:60px}.w-\[636px\]{width:636px}.w-\[70px\]{width:70px}.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-14{min-width:3.5rem}.min-w-4{min-width:1rem}.min-w-6{min-width:1.5rem}.min-w-\[268px\]{min-width:268px}.min-w-\[325px\]{min-width:325px}.min-w-\[334px\]{min-width:334px}.min-w-\[56px\]{min-width:56px}.min-w-\[90px\]{min-width:90px}.max-w-0{max-width:0}.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-\[200px\]{max-width:200px}.max-w-\[325px\]{max-width:325px}.max-w-\[350px\]{max-width:350px}.max-w-\[360px\]{max-width:360px}.max-w-\[531px\]{max-width:531px}.max-w-\[532px\]{max-width:532px}.max-w-\[840px\]{max-width:840px}.max-w-\[85\%\]{max-width:85%}.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-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.resize-none{resize:none}.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}.flex-nowrap{flex-wrap:nowrap}.content-end{align-content:flex-end}.items-start{align-items:flex-start}.items-end{align-items:flex-end}.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-6{gap:1.5rem}.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)))}.space-y-2\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.625rem*var(--tw-space-y-reverse));margin-top:calc(.625rem*(1 - var(--tw-space-y-reverse)))}.space-y-3>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-bottom:calc(.75rem*var(--tw-space-y-reverse));margin-top:calc(.75rem*(1 - var(--tw-space-y-reverse)))}.self-start{align-self:flex-start}.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}.whitespace-pre-wrap{white-space:pre-wrap}.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-\[24px\]{border-radius:24px}.rounded-\[32px\]{border-radius:32px}.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}.rounded-t-\[24px\]{border-top-left-radius:24px;border-top-right-radius:24px}.rounded-bl-\[16px\]{border-bottom-left-radius:16px}.rounded-bl-sm{border-bottom-left-radius:.125rem}.rounded-br-\[16px\]{border-bottom-right-radius:16px}.rounded-tl-\[16px\]{border-top-left-radius:16px}.rounded-tr-\[8px\]{border-top-right-radius:8px}.border{border-width:1px}.border-2,.border-\[2px\]{border-width:2px}.border-b{border-bottom-width:1px}.border-r{border-right-width:1px}.border-t{border-top-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-\[\#545987\]{--tw-border-opacity:1;border-color:#545987;border-color:rgb(84 89 135/var(--tw-border-opacity,1))}.border-\[\#655EE3\]{--tw-border-opacity:1;border-color:#655ee3;border-color:rgb(101 94 227/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-\[\#BBBDCF\]{--tw-border-opacity:1;border-color:#bbbdcf;border-color:rgb(187 189 207/var(--tw-border-opacity,1))}.border-\[\#C7D2FE\]{--tw-border-opacity:1;border-color:#c7d2fe;border-color:rgb(199 210 254/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-\[\#E67E22\]{--tw-border-opacity:1;border-color:#e67e22;border-color:rgb(230 126 34/var(--tw-border-opacity,1))}.border-\[\#E7E8F1\]{--tw-border-opacity:1;border-color:#e7e8f1;border-color:rgb(231 232 241/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-\[\#e4e3ff\]{--tw-border-opacity:1;border-color:#e4e3ff;border-color:rgb(228 227 255/var(--tw-border-opacity,1))}.border-red-200{--tw-border-opacity:1;border-color:#fecaca;border-color:rgb(254 202 202/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-\[\#3B3E5F\]{--tw-bg-opacity:1;background-color:#3b3e5f;background-color:rgb(59 62 95/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-\[\#545987\]{--tw-bg-opacity:1;background-color:#545987;background-color:rgb(84 89 135/var(--tw-bg-opacity,1))}.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-\[\#E7E8F1\]{--tw-bg-opacity:1;background-color:#e7e8f1;background-color:rgb(231 232 241/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-\[\#EEF2FF\]{--tw-bg-opacity:1;background-color:#eef2ff;background-color:rgb(238 242 255/var(--tw-bg-opacity,1))}.bg-\[\#F0EFFF\]{--tw-bg-opacity:1;background-color:#f0efff;background-color:rgb(240 239 255/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-\[\#F8F8FF\]{--tw-bg-opacity:1;background-color:#f8f8ff;background-color:rgb(248 248 255/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-\[\#FFE5EF\]{--tw-bg-opacity:1;background-color:#ffe5ef;background-color:rgb(255 229 239/var(--tw-bg-opacity,1))}.bg-\[\#FFF8F0\]{--tw-bg-opacity:1;background-color:#fff8f0;background-color:rgb(255 248 240/var(--tw-bg-opacity,1))}.bg-\[\#FFF8FB\]{--tw-bg-opacity:1;background-color:#fff8fb;background-color:rgb(255 248 251/var(--tw-bg-opacity,1))}.bg-\[\#FFFFFF\]{--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.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:#3b3e5f;background-color:rgb(59 62 95/var(--tw-bg-opacity,1))}.bg-primary\/10{background-color:rgba(59,62,95,.1)}.bg-red-50{--tw-bg-opacity:1;background-color:#fef2f2;background-color:rgb(254 242 242/var(--tw-bg-opacity,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\/40{background-color:hsla(0,0%,100%,.4)}.bg-white\/50{background-color:hsla(0,0%,100%,.5)}.bg-white\/60{background-color:hsla(0,0%,100%,.6)}.bg-white\/80{background-color:hsla(0,0%,100%,.8)}.bg-\[radial-gradient\(ellipse_at_70\%_7\%\2c _\#F3F4F8_50\%\2c _\#E4E3FF_100\%\)\]{background-image:radial-gradient(ellipse at 70% 7%,#f3f4f8 50%,#e4e3ff 100%)}.fill-\[\#2B2C46\]{fill:#2b2c46}.fill-\[\#3B3E5F\]{fill:#3b3e5f}.fill-\[\#55566B\]{fill:#55566b}.fill-\[\#989BB7\]{fill:#989bb7}.fill-\[\#BBBDCF\]{fill:#bbbdcf}.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-2\.5{padding:.625rem}.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-3\.5{padding-left:.875rem;padding-right:.875rem}.px-4{padding-left:1rem;padding-right:1rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-7{padding-left:1.75rem;padding-right:1.75rem}.px-\[10px\]{padding-left:10px;padding-right:10px}.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-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pb-6{padding-bottom:1.5rem}.pb-8{padding-bottom:2rem}.pl-1\.5{padding-left:.375rem}.pl-2{padding-left:.5rem}.pl-4{padding-left:1rem}.pl-6{padding-left:1.5rem}.pl-8{padding-left:2rem}.pr-0\.5{padding-right:.125rem}.pr-1{padding-right:.25rem}.pr-1\.5{padding-right:.375rem}.pr-14{padding-right:3.5rem}.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}.font-sans{font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.text-2xl{font-size:1.5rem;line-height:2rem}.text-\[10px\]{font-size:10px}.text-\[11px\]{font-size:11px}.text-\[13px\]{font-size:13px}.text-\[14px\]{font-size:14px}.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-5{line-height:1.25rem}.leading-\[18px\]{line-height:18px}.leading-\[22\.78px\]{line-height:22.78px}.leading-none{line-height:1}.leading-relaxed{line-height:1.625}.tracking-\[0\.16px\]{letter-spacing:.16px}.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\]{--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-\[\#655EE3\]{--tw-text-opacity:1;color:#655ee3;color:rgb(101 94 227/var(--tw-text-opacity,1))}.text-\[\#666\]{--tw-text-opacity:1;color:#666;color:rgb(102 102 102/var(--tw-text-opacity,1))}.text-\[\#767A9F\]{--tw-text-opacity:1;color:#767a9f;color:rgb(118 122 159/var(--tw-text-opacity,1))}.text-\[\#989BB7\]{--tw-text-opacity:1;color:#989bb7;color:rgb(152 155 183/var(--tw-text-opacity,1))}.text-\[\#999\]{--tw-text-opacity:1;color:#999;color:rgb(153 153 153/var(--tw-text-opacity,1))}.text-\[\#AAABB5\]{--tw-text-opacity:1;color:#aaabb5;color:rgb(170 171 181/var(--tw-text-opacity,1))}.text-\[\#BBBDCF\]{--tw-text-opacity:1;color:#bbbdcf;color:rgb(187 189 207/var(--tw-text-opacity,1))}.text-\[\#CACAD1\]{--tw-text-opacity:1;color:#cacad1;color:rgb(202 202 209/var(--tw-text-opacity,1))}.text-\[\#D14343\]{--tw-text-opacity:1;color:#d14343;color:rgb(209 67 67/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-\[\#E67E22\]{--tw-text-opacity:1;color:#e67e22;color:rgb(230 126 34/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-blue-500{--tw-text-opacity:1;color:#3b82f6;color:rgb(59 130 246/var(--tw-text-opacity,1))}.text-blue-600{--tw-text-opacity:1;color:#2563eb;color:rgb(37 99 235/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-indigo-600{--tw-text-opacity:1;color:#4f46e5;color:rgb(79 70 229/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:#3b3e5f;color:rgb(59 62 95/var(--tw-text-opacity,1))}.text-red-500{--tw-text-opacity:1;color:#ef4444;color:rgb(239 68 68/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-red-700{--tw-text-opacity:1;color:#b91c1c;color:rgb(185 28 28/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))}.placeholder-\[\#989BB7\]::placeholder{--tw-placeholder-opacity:1;color:#989bb7;color:rgb(152 155 183/var(--tw-placeholder-opacity,1))}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.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_32px_0px_rgba\(152\2c 155\2c 183\2c 1\)\]{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_32px_0px_rgba\(152\2c 155\2c 183\2c 1\)\]{--tw-shadow:0px 0px 32px 0px #989bb7;--tw-shadow-colored:0px 0px 32px 0px var(--tw-shadow-color)}.shadow-ds-1{--tw-shadow:0 0 16px 0 rgba(221,222,231,.5);--tw-shadow-colored:0 0 16px 0 var(--tw-shadow-color)}.shadow-ds-1,.shadow-ds-2{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-ds-2{--tw-shadow:0 0 20px 0 rgba(221,222,231,.5);--tw-shadow-colored:0 0 20px 0 var(--tw-shadow-color)}.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-lg,.shadow-md{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-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-outer{--tw-shadow:0 0 16px 0 hsla(240,7%,81%,.5);--tw-shadow-colored:0 0 16px 0 var(--tw-shadow-color)}.shadow-outer,.shadow-sm{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-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.outline-none{outline:2px solid transparent;outline-offset:2px}.outline{outline-style:solid}.ring{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),0 0 #0000;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.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)}.backdrop-blur-\[8px\]{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.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:#3b3e5f;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-\[\#DDDEE7\]:hover{--tw-border-opacity:1;border-color:#dddee7;border-color:rgb(221 222 231/var(--tw-border-opacity,1))}.hover\:border-\[\#E7E8F1\]:hover{--tw-border-opacity:1;border-color:#e7e8f1;border-color:rgb(231 232 241/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-\[\#333653\]:hover{--tw-bg-opacity:1;background-color:#333653;background-color:rgb(51 54 83/var(--tw-bg-opacity,1))}.hover\:bg-\[\#3B3E5F\]:hover{--tw-bg-opacity:1;background-color:#3b3e5f;background-color:rgb(59 62 95/var(--tw-bg-opacity,1))}.hover\:bg-\[\#545987\]:hover{--tw-bg-opacity:1;background-color:#545987;background-color:rgb(84 89 135/var(--tw-bg-opacity,1))}.hover\:bg-\[\#E0E7FF\]:hover{--tw-bg-opacity:1;background-color:#e0e7ff;background-color:rgb(224 231 255/var(--tw-bg-opacity,1))}.hover\:bg-\[\#E67E22\]:hover{--tw-bg-opacity:1;background-color:#e67e22;background-color:rgb(230 126 34/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-\[\#F3F4F8\]:hover{--tw-bg-opacity:1;background-color:#f3f4f8;background-color:rgb(243 244 248/var(--tw-bg-opacity,1))}.hover\:bg-blue-100\/40:hover{background-color:rgba(219,234,254,.4)}.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\:bg-gradient-to-r:hover{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.hover\:from-white:hover{--tw-gradient-from:#fff var(--tw-gradient-from-position);--tw-gradient-to:hsla(0,0%,100%,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.hover\:to-\[\#E4E3FF\]:hover{--tw-gradient-to:#e4e3ff var(--tw-gradient-to-position)}.hover\:fill-\[url\(\#powered_by_nyris_colored_svg__gradient\)\]:hover{fill:url(#powered_by_nyris_colored_svg__gradient)}.hover\:px-0\.5:hover{padding-left:.125rem;padding-right:.125rem}.hover\:font-semibold:hover{font-weight:600}.hover\:text-\[\#2F29B7\]:hover{--tw-text-opacity:1;color:#2f29b7;color:rgb(47 41 183/var(--tw-text-opacity,1))}.hover\:text-\[\#3B3E5F\]:hover{--tw-text-opacity:1;color:#3b3e5f;color:rgb(59 62 95/var(--tw-text-opacity,1))}.hover\:text-\[\#F3F4F8\]:hover{--tw-text-opacity:1;color:#f3f4f8;color:rgb(243 244 248/var(--tw-text-opacity,1))}.hover\:text-primary:hover{--tw-text-opacity:1;color:#3b3e5f;color:rgb(59 62 95/var(--tw-text-opacity,1))}.hover\:text-white:hover{--tw-text-opacity:1;color:#fff;color:rgb(255 255 255/var(--tw-text-opacity,1))}.hover\:opacity-100:hover{opacity:1}.hover\:shadow-\[0_0_6px_0_\#DDDEE7\]:hover{--tw-shadow:0 0 6px 0 #dddee7;--tw-shadow-colored:0 0 6px 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)}.focus\:bg-\[\#FFFFFF\]: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}.disabled\:opacity-60:disabled{opacity:.6}.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-2{margin-bottom:.5rem}.desktop\:mb-8{margin-bottom:2rem}.desktop\:mt-0{margin-top:0}.desktop\:mt-4{margin-top:1rem}.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-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-\[52px\]{height:52px}.desktop\:h-\[68px\]{height:68px}.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-0{min-height:0}.desktop\:min-h-10{min-height:2.5rem}.desktop\:min-h-\[468px\]{min-height:468px}.desktop\:min-h-\[68px\]{min-height:68px}.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-10{min-width:2.5rem}.desktop\:min-w-\[18px\]{min-width:18px}.desktop\:min-w-\[68px\]{min-width:68px}.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\:items-start{align-items:flex-start}.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\:bg-\[\#E7E8F1\]{--tw-bg-opacity:1;background-color:#e7e8f1;background-color:rgb(231 232 241/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-theme-primary{background-color:var(--primary-color)}.desktop\:bg-transparent{background-color:transparent}.desktop\:fill-\[\#3B3E5F\]{fill:#3b3e5f}.desktop\:p-3{padding:.75rem}.desktop\:p-6{padding:1.5rem}.desktop\:px-4{padding-left:1rem;padding-right:1rem}.desktop\:px-5{padding-left:1.25rem;padding-right:1.25rem}.desktop\:py-1\.5{padding-bottom:.375rem;padding-top:.375rem}.desktop\:pb-0{padding-bottom:0}.desktop\:pl-1\.5{padding-left:.375rem}.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\:hover\:bg-\[\#FAFAFA\]:hover{--tw-bg-opacity:1;background-color:#fafafa;background-color:rgb(250 250 250/var(--tw-bg-opacity,1))}.desktop\:has-\[input\:focus\]\:bg-\[\#FFFFFF\]:has(input:focus){--tw-bg-opacity:1;background-color:#fff;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.desktop\:has-\[input\:focus\]\:shadow-ds-2:has(input:focus){--tw-shadow:0 0 20px 0 rgba(221,222,231,.5);--tw-shadow-colored:0 0 20px 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)}}.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{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.5ea01690.css.map*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"static/css/main.5ea01690.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: #3B3E5F\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 overflow: hidden;\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":""}
|