@websolutespa/bom-llm 0.0.1
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/CHANGELOG.md +7 -0
- package/README.md +113 -0
- package/dist/umd/index.css +2796 -0
- package/dist/umd/index.js +26319 -0
- package/dist/umd/index.js.map +1 -0
- package/package.json +101 -0
- package/src/__tests/example.test.ts +8 -0
- package/src/app.scss +128 -0
- package/src/app.tsx +125 -0
- package/src/error-handler.tsx +20 -0
- package/src/index.ts +1 -0
- package/src/label.json +128 -0
- package/src/main.tsx +28 -0
- package/src/types.ts +13 -0
|
@@ -0,0 +1,2796 @@
|
|
|
1
|
+
.llm html,
|
|
2
|
+
.llm body,
|
|
3
|
+
.llm p,
|
|
4
|
+
.llm ol,
|
|
5
|
+
.llm ul,
|
|
6
|
+
.llm li,
|
|
7
|
+
.llm dl,
|
|
8
|
+
.llm dt,
|
|
9
|
+
.llm dd,
|
|
10
|
+
.llm blockquote,
|
|
11
|
+
.llm figure,
|
|
12
|
+
.llm fieldset,
|
|
13
|
+
.llm legend,
|
|
14
|
+
.llm textarea,
|
|
15
|
+
.llm pre,
|
|
16
|
+
.llm iframe,
|
|
17
|
+
.llm hr,
|
|
18
|
+
.llm h1,
|
|
19
|
+
.llm h2,
|
|
20
|
+
.llm h3,
|
|
21
|
+
.llm h4,
|
|
22
|
+
.llm h5,
|
|
23
|
+
.llm h6 {
|
|
24
|
+
margin: 0;
|
|
25
|
+
padding: 0;
|
|
26
|
+
}
|
|
27
|
+
.llm h1,
|
|
28
|
+
.llm h2,
|
|
29
|
+
.llm h3,
|
|
30
|
+
.llm h4,
|
|
31
|
+
.llm h5,
|
|
32
|
+
.llm h6 {
|
|
33
|
+
font-size: 100%;
|
|
34
|
+
font-weight: normal;
|
|
35
|
+
}
|
|
36
|
+
.llm ul {
|
|
37
|
+
list-style: none;
|
|
38
|
+
}
|
|
39
|
+
.llm button,
|
|
40
|
+
.llm input,
|
|
41
|
+
.llm select {
|
|
42
|
+
margin: 0;
|
|
43
|
+
padding: 0;
|
|
44
|
+
}
|
|
45
|
+
.llm button {
|
|
46
|
+
border: none;
|
|
47
|
+
text-decoration: none;
|
|
48
|
+
background: none;
|
|
49
|
+
appearance: none;
|
|
50
|
+
font-family: inherit;
|
|
51
|
+
font-style: inherit;
|
|
52
|
+
font-variant-ligatures: inherit;
|
|
53
|
+
font-variant-caps: inherit;
|
|
54
|
+
font-variant-numeric: inherit;
|
|
55
|
+
font-variant-east-asian: inherit;
|
|
56
|
+
font-weight: inherit;
|
|
57
|
+
font-stretch: inherit;
|
|
58
|
+
text-rendering: inherit;
|
|
59
|
+
letter-spacing: inherit;
|
|
60
|
+
word-spacing: inherit;
|
|
61
|
+
line-height: inherit;
|
|
62
|
+
text-transform: none;
|
|
63
|
+
text-indent: inherit;
|
|
64
|
+
text-shadow: none;
|
|
65
|
+
text-align: inherit;
|
|
66
|
+
}
|
|
67
|
+
.llm html {
|
|
68
|
+
box-sizing: border-box;
|
|
69
|
+
-webkit-text-size-adjust: none;
|
|
70
|
+
color-scheme: dark light;
|
|
71
|
+
}
|
|
72
|
+
.llm *,
|
|
73
|
+
.llm *::before,
|
|
74
|
+
.llm *::after {
|
|
75
|
+
box-sizing: inherit;
|
|
76
|
+
}
|
|
77
|
+
.llm img,
|
|
78
|
+
.llm video {
|
|
79
|
+
height: auto;
|
|
80
|
+
max-width: 100%;
|
|
81
|
+
}
|
|
82
|
+
.llm iframe {
|
|
83
|
+
border: 0;
|
|
84
|
+
}
|
|
85
|
+
.llm table {
|
|
86
|
+
border-collapse: collapse;
|
|
87
|
+
border-spacing: 0;
|
|
88
|
+
}
|
|
89
|
+
.llm td,
|
|
90
|
+
.llm th {
|
|
91
|
+
padding: 0;
|
|
92
|
+
}
|
|
93
|
+
.llm html,
|
|
94
|
+
.llm body {
|
|
95
|
+
margin: 0;
|
|
96
|
+
padding: 0;
|
|
97
|
+
block-size: 100%;
|
|
98
|
+
block-size: 100dvb;
|
|
99
|
+
font-size: 20px;
|
|
100
|
+
line-height: 1.5;
|
|
101
|
+
font-family: system-ui, sans-serif;
|
|
102
|
+
-webkit-font-smoothing: antialiased;
|
|
103
|
+
}
|
|
104
|
+
.llm a {
|
|
105
|
+
color: inherit;
|
|
106
|
+
text-decoration: none;
|
|
107
|
+
}
|
|
108
|
+
.llm__scroller::-webkit-scrollbar {
|
|
109
|
+
width: 6px;
|
|
110
|
+
height: 6px;
|
|
111
|
+
border-radius: 3px;
|
|
112
|
+
}
|
|
113
|
+
.llm__scroller::-webkit-scrollbar-button {
|
|
114
|
+
display: none;
|
|
115
|
+
}
|
|
116
|
+
.llm__scroller::-webkit-scrollbar-button:hover {
|
|
117
|
+
display: none;
|
|
118
|
+
}
|
|
119
|
+
.llm__scroller::-webkit-scrollbar-thumb {
|
|
120
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
121
|
+
box-shadow: none;
|
|
122
|
+
border-radius: 2px;
|
|
123
|
+
}
|
|
124
|
+
.llm__scroller::-webkit-scrollbar-thumb:hover {
|
|
125
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
126
|
+
}
|
|
127
|
+
.llm__scroller::-webkit-scrollbar-track {
|
|
128
|
+
background-color: transparent;
|
|
129
|
+
border-radius: 2px;
|
|
130
|
+
}
|
|
131
|
+
.llm__scroller::-webkit-scrollbar-track:hover {
|
|
132
|
+
background-color: transparent;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.llm {
|
|
136
|
+
--llm-button-size: 60px;
|
|
137
|
+
--llm-color-ui-1: #003c8c;
|
|
138
|
+
--llm-color-ui-2: #73c3ff;
|
|
139
|
+
--llm-color-ui-3: #96dca0;
|
|
140
|
+
--llm-color-ui-4: #dcdc3c;
|
|
141
|
+
--llm-color-ui-5: #b41e5f;
|
|
142
|
+
--llm-color-ui-6: #aa96f0;
|
|
143
|
+
--llm-color-ui-7: #007378;
|
|
144
|
+
--llm-color-ui-8: #dcdc3c;
|
|
145
|
+
--llm-color-ui-9: #cda582;
|
|
146
|
+
--llm-color-ui-10: #ffe6a0;
|
|
147
|
+
--llm-color-ui-white: #fff;
|
|
148
|
+
--llm-color-ui-black: #000;
|
|
149
|
+
--llm-color-ui-grey-00: #6a6969;
|
|
150
|
+
--llm-color-ui-grey-01: #999;
|
|
151
|
+
--llm-color-ui-grey-02: #cdcdcd;
|
|
152
|
+
--llm-color-ui-grey-03: #e8e8e8;
|
|
153
|
+
--llm-color-ui-grey-04: #f6f6f6;
|
|
154
|
+
--llm-color-ui-grey-05: #fbfbfb;
|
|
155
|
+
--llm-font-primary: "Aeonik";
|
|
156
|
+
--llm-font-secondary: "Capraia";
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
@font-face {
|
|
160
|
+
font-family: "Aeonik";
|
|
161
|
+
src: url("https://design.wslabs.it/llm/fonts/Aeonik-Medium.woff2") format("woff2"), url("https://design.wslabs.it/llm/fonts/Aeonik-Medium.woff2") format("woff");
|
|
162
|
+
font-weight: 500;
|
|
163
|
+
font-style: normal;
|
|
164
|
+
font-display: swap;
|
|
165
|
+
}
|
|
166
|
+
@font-face {
|
|
167
|
+
font-family: "Aeonik";
|
|
168
|
+
src: url("https://design.wslabs.it/llm/fonts/Aeonik-Bold.woff2") format("woff2"), url("https://design.wslabs.it/llm/fonts/Aeonik-Bold.woff") format("woff");
|
|
169
|
+
font-weight: 700;
|
|
170
|
+
font-style: normal;
|
|
171
|
+
font-display: swap;
|
|
172
|
+
}
|
|
173
|
+
@font-face {
|
|
174
|
+
font-family: "Capraia";
|
|
175
|
+
src: url("https://design.wslabs.it/llm/fonts/Capraia-Regular.woff2") format("woff2");
|
|
176
|
+
font-style: normal;
|
|
177
|
+
font-weight: 400;
|
|
178
|
+
font-display: swap;
|
|
179
|
+
}
|
|
180
|
+
@font-face {
|
|
181
|
+
font-family: "Capraia";
|
|
182
|
+
src: url("https://design.wslabs.it/llm/fonts/Capraia-Light_W.woff2") format("woff2");
|
|
183
|
+
font-weight: 300;
|
|
184
|
+
font-style: normal;
|
|
185
|
+
font-display: swap;
|
|
186
|
+
}
|
|
187
|
+
@font-face {
|
|
188
|
+
font-family: "Capraia";
|
|
189
|
+
src: url("https://design.wslabs.it/llm/fonts/Capraia-LightItalic_W.woff2") format("woff2");
|
|
190
|
+
font-style: italic;
|
|
191
|
+
font-weight: 300;
|
|
192
|
+
font-display: swap;
|
|
193
|
+
}
|
|
194
|
+
.llm html,
|
|
195
|
+
.llm body,
|
|
196
|
+
.llm p,
|
|
197
|
+
.llm ol,
|
|
198
|
+
.llm ul,
|
|
199
|
+
.llm li,
|
|
200
|
+
.llm dl,
|
|
201
|
+
.llm dt,
|
|
202
|
+
.llm dd,
|
|
203
|
+
.llm blockquote,
|
|
204
|
+
.llm figure,
|
|
205
|
+
.llm fieldset,
|
|
206
|
+
.llm legend,
|
|
207
|
+
.llm textarea,
|
|
208
|
+
.llm pre,
|
|
209
|
+
.llm iframe,
|
|
210
|
+
.llm button,
|
|
211
|
+
.llm input,
|
|
212
|
+
.llm select,
|
|
213
|
+
.llm hr,
|
|
214
|
+
.llm h1,
|
|
215
|
+
.llm h2,
|
|
216
|
+
.llm h3,
|
|
217
|
+
.llm h4,
|
|
218
|
+
.llm h5,
|
|
219
|
+
.llm h6 {
|
|
220
|
+
margin: 0;
|
|
221
|
+
padding: 0;
|
|
222
|
+
}
|
|
223
|
+
.llm h1,
|
|
224
|
+
.llm h2,
|
|
225
|
+
.llm h3,
|
|
226
|
+
.llm h4,
|
|
227
|
+
.llm h5,
|
|
228
|
+
.llm h6 {
|
|
229
|
+
font-size: 100%;
|
|
230
|
+
font-weight: normal;
|
|
231
|
+
}
|
|
232
|
+
.llm ul {
|
|
233
|
+
list-style: none;
|
|
234
|
+
}
|
|
235
|
+
.llm button {
|
|
236
|
+
border: none;
|
|
237
|
+
text-decoration: none;
|
|
238
|
+
background: none;
|
|
239
|
+
appearance: none;
|
|
240
|
+
font-family: inherit;
|
|
241
|
+
font-style: inherit;
|
|
242
|
+
font-variant-ligatures: inherit;
|
|
243
|
+
font-variant-caps: inherit;
|
|
244
|
+
font-variant-numeric: inherit;
|
|
245
|
+
font-variant-east-asian: inherit;
|
|
246
|
+
font-weight: inherit;
|
|
247
|
+
font-stretch: inherit;
|
|
248
|
+
text-rendering: inherit;
|
|
249
|
+
letter-spacing: inherit;
|
|
250
|
+
word-spacing: inherit;
|
|
251
|
+
line-height: inherit;
|
|
252
|
+
text-transform: none;
|
|
253
|
+
text-indent: inherit;
|
|
254
|
+
text-shadow: none;
|
|
255
|
+
text-align: inherit;
|
|
256
|
+
}
|
|
257
|
+
.llm *,
|
|
258
|
+
.llm *::before,
|
|
259
|
+
.llm *::after {
|
|
260
|
+
box-sizing: border-box;
|
|
261
|
+
}
|
|
262
|
+
.llm img,
|
|
263
|
+
.llm video {
|
|
264
|
+
height: auto;
|
|
265
|
+
max-width: 100%;
|
|
266
|
+
}
|
|
267
|
+
.llm iframe {
|
|
268
|
+
border: 0;
|
|
269
|
+
}
|
|
270
|
+
.llm table {
|
|
271
|
+
border-collapse: collapse;
|
|
272
|
+
border-spacing: 0;
|
|
273
|
+
}
|
|
274
|
+
.llm td,
|
|
275
|
+
.llm th {
|
|
276
|
+
padding: 0;
|
|
277
|
+
}
|
|
278
|
+
.llm a {
|
|
279
|
+
color: inherit;
|
|
280
|
+
text-decoration: none;
|
|
281
|
+
}
|
|
282
|
+
.llm * {
|
|
283
|
+
box-sizing: border-box;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.llm {
|
|
287
|
+
position: fixed;
|
|
288
|
+
display: flex;
|
|
289
|
+
flex-direction: column;
|
|
290
|
+
align-items: center;
|
|
291
|
+
justify-content: flex-end;
|
|
292
|
+
top: 0;
|
|
293
|
+
left: 0;
|
|
294
|
+
width: 100%;
|
|
295
|
+
height: 100%;
|
|
296
|
+
pointer-events: none;
|
|
297
|
+
z-index: 9999;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.-llm-t-display-1 {
|
|
301
|
+
line-height: 1;
|
|
302
|
+
font-family: var(--llm-font-primary);
|
|
303
|
+
font-weight: 500;
|
|
304
|
+
line-height: 110%;
|
|
305
|
+
letter-spacing: 0.02em;
|
|
306
|
+
font-size: clamp(32px, calc(32px + (100vw - 375px) / (1920 - 375) * (40)), 72px);
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.-llm-t-display-2 {
|
|
310
|
+
line-height: 1;
|
|
311
|
+
font-family: var(--llm-font-primary);
|
|
312
|
+
font-weight: 500;
|
|
313
|
+
line-height: 120%;
|
|
314
|
+
letter-spacing: 0.01em;
|
|
315
|
+
font-size: clamp(32px, calc(32px + (100vw - 375px) / (1920 - 375) * (32)), 64px);
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.-llm-t-display-3 {
|
|
319
|
+
line-height: 1;
|
|
320
|
+
font-family: var(--llm-font-primary);
|
|
321
|
+
font-weight: 500;
|
|
322
|
+
line-height: 130%;
|
|
323
|
+
letter-spacing: 0.02em;
|
|
324
|
+
font-size: clamp(24px, calc(24px + (100vw - 375px) / (1920 - 375) * (32)), 56px);
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
.-llm-t-display-4 {
|
|
328
|
+
line-height: 1;
|
|
329
|
+
font-family: var(--llm-font-primary);
|
|
330
|
+
font-weight: 500;
|
|
331
|
+
line-height: 130%;
|
|
332
|
+
letter-spacing: 0.02em;
|
|
333
|
+
font-size: clamp(24px, calc(24px + (100vw - 375px) / (1920 - 375) * (24)), 48px);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.-llm-t-display-5 {
|
|
337
|
+
line-height: 1;
|
|
338
|
+
font-family: var(--llm-font-primary);
|
|
339
|
+
font-weight: 500;
|
|
340
|
+
line-height: 130%;
|
|
341
|
+
letter-spacing: 0.02em;
|
|
342
|
+
font-size: clamp(24px, calc(24px + (100vw - 375px) / (1920 - 375) * (16)), 40px);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.-llm-t-display-6 {
|
|
346
|
+
line-height: 1;
|
|
347
|
+
font-family: var(--llm-font-primary);
|
|
348
|
+
font-weight: 500;
|
|
349
|
+
line-height: 130%;
|
|
350
|
+
letter-spacing: 0.02em;
|
|
351
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (16)), 32px);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.-llm-t-heading-1 {
|
|
355
|
+
line-height: 1;
|
|
356
|
+
font-family: var(--llm-font-primary);
|
|
357
|
+
font-weight: 500;
|
|
358
|
+
line-height: 130%;
|
|
359
|
+
letter-spacing: 0.02em;
|
|
360
|
+
font-size: clamp(18px, calc(18px + (100vw - 375px) / (1920 - 375) * (14)), 32px);
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.-llm-t-heading-2 {
|
|
364
|
+
line-height: 1;
|
|
365
|
+
font-family: var(--llm-font-primary);
|
|
366
|
+
font-weight: 500;
|
|
367
|
+
line-height: 130%;
|
|
368
|
+
letter-spacing: 0.03em;
|
|
369
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.-llm-t-body-1 {
|
|
373
|
+
line-height: 1;
|
|
374
|
+
font-family: var(--llm-font-secondary);
|
|
375
|
+
font-weight: normal;
|
|
376
|
+
line-height: 140%;
|
|
377
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.-llm-t-body-2 {
|
|
381
|
+
line-height: 1;
|
|
382
|
+
font-family: var(--llm-font-primary);
|
|
383
|
+
font-weight: 500;
|
|
384
|
+
line-height: 140%;
|
|
385
|
+
letter-spacing: 0.02em;
|
|
386
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (2)), 18px);
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
.-llm-t-body-3 {
|
|
390
|
+
line-height: 1;
|
|
391
|
+
font-family: var(--llm-font-secondary);
|
|
392
|
+
font-weight: normal;
|
|
393
|
+
line-height: 140%;
|
|
394
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (4)), 18px);
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
.-llm-t-body-4 {
|
|
398
|
+
line-height: 1;
|
|
399
|
+
font-family: var(--llm-font-primary);
|
|
400
|
+
font-weight: 500;
|
|
401
|
+
line-height: 150%;
|
|
402
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.-llm-t-body-5 {
|
|
406
|
+
line-height: 1;
|
|
407
|
+
font-family: var(--llm-font-secondary);
|
|
408
|
+
font-weight: normal;
|
|
409
|
+
line-height: 150%;
|
|
410
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.-llm-t-label-1 {
|
|
414
|
+
line-height: 1;
|
|
415
|
+
font-family: var(--llm-font-primary);
|
|
416
|
+
font-weight: 500;
|
|
417
|
+
letter-spacing: 0.08em;
|
|
418
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.-llm-t-cta-1 {
|
|
422
|
+
line-height: 1;
|
|
423
|
+
font-family: var(--llm-font-primary);
|
|
424
|
+
font-weight: 500;
|
|
425
|
+
line-height: 100%;
|
|
426
|
+
letter-spacing: 0.08em;
|
|
427
|
+
text-transform: uppercase;
|
|
428
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.-llm-t-cta-2 {
|
|
432
|
+
line-height: 1;
|
|
433
|
+
font-family: var(--llm-font-primary);
|
|
434
|
+
font-weight: 700;
|
|
435
|
+
line-height: 120%;
|
|
436
|
+
letter-spacing: 0.02em;
|
|
437
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
.-llm-t-cta-3 {
|
|
441
|
+
line-height: 1;
|
|
442
|
+
font-family: var(--llm-font-primary);
|
|
443
|
+
font-weight: 500;
|
|
444
|
+
line-height: 100%;
|
|
445
|
+
letter-spacing: 0.06em;
|
|
446
|
+
font-size: clamp(12px, calc(12px + (100vw - 375px) / (1920 - 375) * (2)), 14px);
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
.-llm-t-cta-4 {
|
|
450
|
+
line-height: 1;
|
|
451
|
+
font-family: var(--llm-font-secondary);
|
|
452
|
+
font-weight: 300;
|
|
453
|
+
line-height: 100%;
|
|
454
|
+
font-style: italic;
|
|
455
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
.llm-container {
|
|
459
|
+
margin: 0 clamp(20px,
|
|
460
|
+
calc(20px + (100vw - 375px) / (1920 - 375) * (90)),
|
|
461
|
+
110px);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.llm-row {
|
|
465
|
+
position: relative;
|
|
466
|
+
display: flex;
|
|
467
|
+
flex-wrap: wrap;
|
|
468
|
+
margin-left: calc(clamp(10px,
|
|
469
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
470
|
+
12px) * -1);
|
|
471
|
+
margin-right: calc(clamp(10px,
|
|
472
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
473
|
+
12px) * -1);
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
*[class*=llm-span] {
|
|
477
|
+
width: 100%;
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
.llm-span-xs-1 {
|
|
481
|
+
padding-left: clamp(10px,
|
|
482
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
483
|
+
12px);
|
|
484
|
+
padding-right: clamp(10px,
|
|
485
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
486
|
+
12px);
|
|
487
|
+
}
|
|
488
|
+
@media (min-width: 0) {
|
|
489
|
+
.llm-span-xs-1 {
|
|
490
|
+
width: auto;
|
|
491
|
+
max-width: calc(1/ 4 * 100%);
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.llm-span-xs-2 {
|
|
496
|
+
padding-left: clamp(10px,
|
|
497
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
498
|
+
12px);
|
|
499
|
+
padding-right: clamp(10px,
|
|
500
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
501
|
+
12px);
|
|
502
|
+
}
|
|
503
|
+
@media (min-width: 0) {
|
|
504
|
+
.llm-span-xs-2 {
|
|
505
|
+
width: auto;
|
|
506
|
+
max-width: calc(2/ 4 * 100%);
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.llm-span-xs-3, .llm .llm__message--user .llm__inner--string {
|
|
511
|
+
padding-left: clamp(10px,
|
|
512
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
513
|
+
12px);
|
|
514
|
+
padding-right: clamp(10px,
|
|
515
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
516
|
+
12px);
|
|
517
|
+
}
|
|
518
|
+
@media (min-width: 0) {
|
|
519
|
+
.llm-span-xs-3, .llm .llm__message--user .llm__inner--string {
|
|
520
|
+
width: auto;
|
|
521
|
+
max-width: calc(3/ 4 * 100%);
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
.llm-span-xs-4, .llm .llm__inner--tripadvisorGroup, .llm .llm__inner--eventGroup, .llm .llm__inner--formRecap, .llm .llm__inner--event {
|
|
526
|
+
padding-left: clamp(10px,
|
|
527
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
528
|
+
12px);
|
|
529
|
+
padding-right: clamp(10px,
|
|
530
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
531
|
+
12px);
|
|
532
|
+
}
|
|
533
|
+
@media (min-width: 0) {
|
|
534
|
+
.llm-span-xs-4, .llm .llm__inner--tripadvisorGroup, .llm .llm__inner--eventGroup, .llm .llm__inner--formRecap, .llm .llm__inner--event {
|
|
535
|
+
width: auto;
|
|
536
|
+
max-width: calc(4/ 4 * 100%);
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.llm-span-sm-1 {
|
|
541
|
+
padding-left: clamp(10px,
|
|
542
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
543
|
+
12px);
|
|
544
|
+
padding-right: clamp(10px,
|
|
545
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
546
|
+
12px);
|
|
547
|
+
}
|
|
548
|
+
@media (min-width: 768px) {
|
|
549
|
+
.llm-span-sm-1 {
|
|
550
|
+
width: auto;
|
|
551
|
+
max-width: calc(1/ 4 * 100%);
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
.llm-span-sm-2 {
|
|
556
|
+
padding-left: clamp(10px,
|
|
557
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
558
|
+
12px);
|
|
559
|
+
padding-right: clamp(10px,
|
|
560
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
561
|
+
12px);
|
|
562
|
+
}
|
|
563
|
+
@media (min-width: 768px) {
|
|
564
|
+
.llm-span-sm-2 {
|
|
565
|
+
width: auto;
|
|
566
|
+
max-width: calc(2/ 4 * 100%);
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.llm-span-sm-3 {
|
|
571
|
+
padding-left: clamp(10px,
|
|
572
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
573
|
+
12px);
|
|
574
|
+
padding-right: clamp(10px,
|
|
575
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
576
|
+
12px);
|
|
577
|
+
}
|
|
578
|
+
@media (min-width: 768px) {
|
|
579
|
+
.llm-span-sm-3 {
|
|
580
|
+
width: auto;
|
|
581
|
+
max-width: calc(3/ 4 * 100%);
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
.llm-span-sm-4 {
|
|
586
|
+
padding-left: clamp(10px,
|
|
587
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
588
|
+
12px);
|
|
589
|
+
padding-right: clamp(10px,
|
|
590
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
591
|
+
12px);
|
|
592
|
+
}
|
|
593
|
+
@media (min-width: 768px) {
|
|
594
|
+
.llm-span-sm-4 {
|
|
595
|
+
width: auto;
|
|
596
|
+
max-width: calc(4/ 4 * 100%);
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.llm-span-md-1 {
|
|
601
|
+
padding-left: clamp(10px,
|
|
602
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
603
|
+
12px);
|
|
604
|
+
padding-right: clamp(10px,
|
|
605
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
606
|
+
12px);
|
|
607
|
+
}
|
|
608
|
+
@media (min-width: 1024px) {
|
|
609
|
+
.llm-span-md-1 {
|
|
610
|
+
width: auto;
|
|
611
|
+
max-width: calc(1/ 12 * 100%);
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.llm-span-md-2 {
|
|
616
|
+
padding-left: clamp(10px,
|
|
617
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
618
|
+
12px);
|
|
619
|
+
padding-right: clamp(10px,
|
|
620
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
621
|
+
12px);
|
|
622
|
+
}
|
|
623
|
+
@media (min-width: 1024px) {
|
|
624
|
+
.llm-span-md-2 {
|
|
625
|
+
width: auto;
|
|
626
|
+
max-width: calc(2/ 12 * 100%);
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.llm-span-md-3 {
|
|
631
|
+
padding-left: clamp(10px,
|
|
632
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
633
|
+
12px);
|
|
634
|
+
padding-right: clamp(10px,
|
|
635
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
636
|
+
12px);
|
|
637
|
+
}
|
|
638
|
+
@media (min-width: 1024px) {
|
|
639
|
+
.llm-span-md-3 {
|
|
640
|
+
width: auto;
|
|
641
|
+
max-width: calc(3/ 12 * 100%);
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.llm-span-md-4 {
|
|
646
|
+
padding-left: clamp(10px,
|
|
647
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
648
|
+
12px);
|
|
649
|
+
padding-right: clamp(10px,
|
|
650
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
651
|
+
12px);
|
|
652
|
+
}
|
|
653
|
+
@media (min-width: 1024px) {
|
|
654
|
+
.llm-span-md-4 {
|
|
655
|
+
width: auto;
|
|
656
|
+
max-width: calc(4/ 12 * 100%);
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.llm-span-md-5 {
|
|
661
|
+
padding-left: clamp(10px,
|
|
662
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
663
|
+
12px);
|
|
664
|
+
padding-right: clamp(10px,
|
|
665
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
666
|
+
12px);
|
|
667
|
+
}
|
|
668
|
+
@media (min-width: 1024px) {
|
|
669
|
+
.llm-span-md-5 {
|
|
670
|
+
width: auto;
|
|
671
|
+
max-width: calc(5/ 12 * 100%);
|
|
672
|
+
}
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
.llm-span-md-6 {
|
|
676
|
+
padding-left: clamp(10px,
|
|
677
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
678
|
+
12px);
|
|
679
|
+
padding-right: clamp(10px,
|
|
680
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
681
|
+
12px);
|
|
682
|
+
}
|
|
683
|
+
@media (min-width: 1024px) {
|
|
684
|
+
.llm-span-md-6 {
|
|
685
|
+
width: auto;
|
|
686
|
+
max-width: calc(6/ 12 * 100%);
|
|
687
|
+
}
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
.llm-span-md-7 {
|
|
691
|
+
padding-left: clamp(10px,
|
|
692
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
693
|
+
12px);
|
|
694
|
+
padding-right: clamp(10px,
|
|
695
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
696
|
+
12px);
|
|
697
|
+
}
|
|
698
|
+
@media (min-width: 1024px) {
|
|
699
|
+
.llm-span-md-7 {
|
|
700
|
+
width: auto;
|
|
701
|
+
max-width: calc(7/ 12 * 100%);
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
.llm-span-md-8, .llm .llm__inner--formRequest, .llm .llm__message--assistant .llm__inner--string, .llm .llm__message--user .llm__inner--string {
|
|
706
|
+
padding-left: clamp(10px,
|
|
707
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
708
|
+
12px);
|
|
709
|
+
padding-right: clamp(10px,
|
|
710
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
711
|
+
12px);
|
|
712
|
+
}
|
|
713
|
+
@media (min-width: 1024px) {
|
|
714
|
+
.llm-span-md-8, .llm .llm__inner--formRequest, .llm .llm__message--assistant .llm__inner--string, .llm .llm__message--user .llm__inner--string {
|
|
715
|
+
width: auto;
|
|
716
|
+
max-width: calc(8/ 12 * 100%);
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
.llm-span-md-9 {
|
|
721
|
+
padding-left: clamp(10px,
|
|
722
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
723
|
+
12px);
|
|
724
|
+
padding-right: clamp(10px,
|
|
725
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
726
|
+
12px);
|
|
727
|
+
}
|
|
728
|
+
@media (min-width: 1024px) {
|
|
729
|
+
.llm-span-md-9 {
|
|
730
|
+
width: auto;
|
|
731
|
+
max-width: calc(9/ 12 * 100%);
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
.llm-span-md-10 {
|
|
736
|
+
padding-left: clamp(10px,
|
|
737
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
738
|
+
12px);
|
|
739
|
+
padding-right: clamp(10px,
|
|
740
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
741
|
+
12px);
|
|
742
|
+
}
|
|
743
|
+
@media (min-width: 1024px) {
|
|
744
|
+
.llm-span-md-10 {
|
|
745
|
+
width: auto;
|
|
746
|
+
max-width: calc(10/ 12 * 100%);
|
|
747
|
+
}
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
.llm-span-md-11 {
|
|
751
|
+
padding-left: clamp(10px,
|
|
752
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
753
|
+
12px);
|
|
754
|
+
padding-right: clamp(10px,
|
|
755
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
756
|
+
12px);
|
|
757
|
+
}
|
|
758
|
+
@media (min-width: 1024px) {
|
|
759
|
+
.llm-span-md-11 {
|
|
760
|
+
width: auto;
|
|
761
|
+
max-width: calc(11/ 12 * 100%);
|
|
762
|
+
}
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
.llm-span-md-12, .llm .llm__inner--tripadvisorGroup, .llm .llm__inner--eventGroup, .llm .llm__inner--formRecap, .llm .llm__inner--event {
|
|
766
|
+
padding-left: clamp(10px,
|
|
767
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
768
|
+
12px);
|
|
769
|
+
padding-right: clamp(10px,
|
|
770
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
771
|
+
12px);
|
|
772
|
+
}
|
|
773
|
+
@media (min-width: 1024px) {
|
|
774
|
+
.llm-span-md-12, .llm .llm__inner--tripadvisorGroup, .llm .llm__inner--eventGroup, .llm .llm__inner--formRecap, .llm .llm__inner--event {
|
|
775
|
+
width: auto;
|
|
776
|
+
max-width: calc(12/ 12 * 100%);
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.llm-span-lg-1 {
|
|
781
|
+
padding-left: clamp(10px,
|
|
782
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
783
|
+
12px);
|
|
784
|
+
padding-right: clamp(10px,
|
|
785
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
786
|
+
12px);
|
|
787
|
+
}
|
|
788
|
+
@media (min-width: 1440px) {
|
|
789
|
+
.llm-span-lg-1 {
|
|
790
|
+
width: auto;
|
|
791
|
+
max-width: calc(1/ 12 * 100%);
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.llm-span-lg-2 {
|
|
796
|
+
padding-left: clamp(10px,
|
|
797
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
798
|
+
12px);
|
|
799
|
+
padding-right: clamp(10px,
|
|
800
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
801
|
+
12px);
|
|
802
|
+
}
|
|
803
|
+
@media (min-width: 1440px) {
|
|
804
|
+
.llm-span-lg-2 {
|
|
805
|
+
width: auto;
|
|
806
|
+
max-width: calc(2/ 12 * 100%);
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.llm-span-lg-3 {
|
|
811
|
+
padding-left: clamp(10px,
|
|
812
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
813
|
+
12px);
|
|
814
|
+
padding-right: clamp(10px,
|
|
815
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
816
|
+
12px);
|
|
817
|
+
}
|
|
818
|
+
@media (min-width: 1440px) {
|
|
819
|
+
.llm-span-lg-3 {
|
|
820
|
+
width: auto;
|
|
821
|
+
max-width: calc(3/ 12 * 100%);
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
.llm-span-lg-4 {
|
|
826
|
+
padding-left: clamp(10px,
|
|
827
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
828
|
+
12px);
|
|
829
|
+
padding-right: clamp(10px,
|
|
830
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
831
|
+
12px);
|
|
832
|
+
}
|
|
833
|
+
@media (min-width: 1440px) {
|
|
834
|
+
.llm-span-lg-4 {
|
|
835
|
+
width: auto;
|
|
836
|
+
max-width: calc(4/ 12 * 100%);
|
|
837
|
+
}
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.llm-span-lg-5 {
|
|
841
|
+
padding-left: clamp(10px,
|
|
842
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
843
|
+
12px);
|
|
844
|
+
padding-right: clamp(10px,
|
|
845
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
846
|
+
12px);
|
|
847
|
+
}
|
|
848
|
+
@media (min-width: 1440px) {
|
|
849
|
+
.llm-span-lg-5 {
|
|
850
|
+
width: auto;
|
|
851
|
+
max-width: calc(5/ 12 * 100%);
|
|
852
|
+
}
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
.llm-span-lg-6 {
|
|
856
|
+
padding-left: clamp(10px,
|
|
857
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
858
|
+
12px);
|
|
859
|
+
padding-right: clamp(10px,
|
|
860
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
861
|
+
12px);
|
|
862
|
+
}
|
|
863
|
+
@media (min-width: 1440px) {
|
|
864
|
+
.llm-span-lg-6 {
|
|
865
|
+
width: auto;
|
|
866
|
+
max-width: calc(6/ 12 * 100%);
|
|
867
|
+
}
|
|
868
|
+
}
|
|
869
|
+
|
|
870
|
+
.llm-span-lg-7 {
|
|
871
|
+
padding-left: clamp(10px,
|
|
872
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
873
|
+
12px);
|
|
874
|
+
padding-right: clamp(10px,
|
|
875
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
876
|
+
12px);
|
|
877
|
+
}
|
|
878
|
+
@media (min-width: 1440px) {
|
|
879
|
+
.llm-span-lg-7 {
|
|
880
|
+
width: auto;
|
|
881
|
+
max-width: calc(7/ 12 * 100%);
|
|
882
|
+
}
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
.llm-span-lg-8 {
|
|
886
|
+
padding-left: clamp(10px,
|
|
887
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
888
|
+
12px);
|
|
889
|
+
padding-right: clamp(10px,
|
|
890
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
891
|
+
12px);
|
|
892
|
+
}
|
|
893
|
+
@media (min-width: 1440px) {
|
|
894
|
+
.llm-span-lg-8 {
|
|
895
|
+
width: auto;
|
|
896
|
+
max-width: calc(8/ 12 * 100%);
|
|
897
|
+
}
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
.llm-span-lg-9 {
|
|
901
|
+
padding-left: clamp(10px,
|
|
902
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
903
|
+
12px);
|
|
904
|
+
padding-right: clamp(10px,
|
|
905
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
906
|
+
12px);
|
|
907
|
+
}
|
|
908
|
+
@media (min-width: 1440px) {
|
|
909
|
+
.llm-span-lg-9 {
|
|
910
|
+
width: auto;
|
|
911
|
+
max-width: calc(9/ 12 * 100%);
|
|
912
|
+
}
|
|
913
|
+
}
|
|
914
|
+
|
|
915
|
+
.llm-span-lg-10 {
|
|
916
|
+
padding-left: clamp(10px,
|
|
917
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
918
|
+
12px);
|
|
919
|
+
padding-right: clamp(10px,
|
|
920
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
921
|
+
12px);
|
|
922
|
+
}
|
|
923
|
+
@media (min-width: 1440px) {
|
|
924
|
+
.llm-span-lg-10 {
|
|
925
|
+
width: auto;
|
|
926
|
+
max-width: calc(10/ 12 * 100%);
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
.llm-span-lg-11 {
|
|
931
|
+
padding-left: clamp(10px,
|
|
932
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
933
|
+
12px);
|
|
934
|
+
padding-right: clamp(10px,
|
|
935
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
936
|
+
12px);
|
|
937
|
+
}
|
|
938
|
+
@media (min-width: 1440px) {
|
|
939
|
+
.llm-span-lg-11 {
|
|
940
|
+
width: auto;
|
|
941
|
+
max-width: calc(11/ 12 * 100%);
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.llm-span-lg-12 {
|
|
946
|
+
padding-left: clamp(10px,
|
|
947
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
948
|
+
12px);
|
|
949
|
+
padding-right: clamp(10px,
|
|
950
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
951
|
+
12px);
|
|
952
|
+
}
|
|
953
|
+
@media (min-width: 1440px) {
|
|
954
|
+
.llm-span-lg-12 {
|
|
955
|
+
width: auto;
|
|
956
|
+
max-width: calc(12/ 12 * 100%);
|
|
957
|
+
}
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.llm-span-xl-1 {
|
|
961
|
+
padding-left: clamp(10px,
|
|
962
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
963
|
+
12px);
|
|
964
|
+
padding-right: clamp(10px,
|
|
965
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
966
|
+
12px);
|
|
967
|
+
}
|
|
968
|
+
@media (min-width: 1600px) {
|
|
969
|
+
.llm-span-xl-1 {
|
|
970
|
+
width: auto;
|
|
971
|
+
max-width: calc(1/ 12 * 100%);
|
|
972
|
+
}
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.llm-span-xl-2 {
|
|
976
|
+
padding-left: clamp(10px,
|
|
977
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
978
|
+
12px);
|
|
979
|
+
padding-right: clamp(10px,
|
|
980
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
981
|
+
12px);
|
|
982
|
+
}
|
|
983
|
+
@media (min-width: 1600px) {
|
|
984
|
+
.llm-span-xl-2 {
|
|
985
|
+
width: auto;
|
|
986
|
+
max-width: calc(2/ 12 * 100%);
|
|
987
|
+
}
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.llm-span-xl-3 {
|
|
991
|
+
padding-left: clamp(10px,
|
|
992
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
993
|
+
12px);
|
|
994
|
+
padding-right: clamp(10px,
|
|
995
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
996
|
+
12px);
|
|
997
|
+
}
|
|
998
|
+
@media (min-width: 1600px) {
|
|
999
|
+
.llm-span-xl-3 {
|
|
1000
|
+
width: auto;
|
|
1001
|
+
max-width: calc(3/ 12 * 100%);
|
|
1002
|
+
}
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.llm-span-xl-4 {
|
|
1006
|
+
padding-left: clamp(10px,
|
|
1007
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1008
|
+
12px);
|
|
1009
|
+
padding-right: clamp(10px,
|
|
1010
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1011
|
+
12px);
|
|
1012
|
+
}
|
|
1013
|
+
@media (min-width: 1600px) {
|
|
1014
|
+
.llm-span-xl-4 {
|
|
1015
|
+
width: auto;
|
|
1016
|
+
max-width: calc(4/ 12 * 100%);
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
.llm-span-xl-5 {
|
|
1021
|
+
padding-left: clamp(10px,
|
|
1022
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1023
|
+
12px);
|
|
1024
|
+
padding-right: clamp(10px,
|
|
1025
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1026
|
+
12px);
|
|
1027
|
+
}
|
|
1028
|
+
@media (min-width: 1600px) {
|
|
1029
|
+
.llm-span-xl-5 {
|
|
1030
|
+
width: auto;
|
|
1031
|
+
max-width: calc(5/ 12 * 100%);
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.llm-span-xl-6 {
|
|
1036
|
+
padding-left: clamp(10px,
|
|
1037
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1038
|
+
12px);
|
|
1039
|
+
padding-right: clamp(10px,
|
|
1040
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1041
|
+
12px);
|
|
1042
|
+
}
|
|
1043
|
+
@media (min-width: 1600px) {
|
|
1044
|
+
.llm-span-xl-6 {
|
|
1045
|
+
width: auto;
|
|
1046
|
+
max-width: calc(6/ 12 * 100%);
|
|
1047
|
+
}
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
.llm-span-xl-7 {
|
|
1051
|
+
padding-left: clamp(10px,
|
|
1052
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1053
|
+
12px);
|
|
1054
|
+
padding-right: clamp(10px,
|
|
1055
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1056
|
+
12px);
|
|
1057
|
+
}
|
|
1058
|
+
@media (min-width: 1600px) {
|
|
1059
|
+
.llm-span-xl-7 {
|
|
1060
|
+
width: auto;
|
|
1061
|
+
max-width: calc(7/ 12 * 100%);
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
.llm-span-xl-8 {
|
|
1066
|
+
padding-left: clamp(10px,
|
|
1067
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1068
|
+
12px);
|
|
1069
|
+
padding-right: clamp(10px,
|
|
1070
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1071
|
+
12px);
|
|
1072
|
+
}
|
|
1073
|
+
@media (min-width: 1600px) {
|
|
1074
|
+
.llm-span-xl-8 {
|
|
1075
|
+
width: auto;
|
|
1076
|
+
max-width: calc(8/ 12 * 100%);
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
|
|
1080
|
+
.llm-span-xl-9 {
|
|
1081
|
+
padding-left: clamp(10px,
|
|
1082
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1083
|
+
12px);
|
|
1084
|
+
padding-right: clamp(10px,
|
|
1085
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1086
|
+
12px);
|
|
1087
|
+
}
|
|
1088
|
+
@media (min-width: 1600px) {
|
|
1089
|
+
.llm-span-xl-9 {
|
|
1090
|
+
width: auto;
|
|
1091
|
+
max-width: calc(9/ 12 * 100%);
|
|
1092
|
+
}
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.llm-span-xl-10 {
|
|
1096
|
+
padding-left: clamp(10px,
|
|
1097
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1098
|
+
12px);
|
|
1099
|
+
padding-right: clamp(10px,
|
|
1100
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1101
|
+
12px);
|
|
1102
|
+
}
|
|
1103
|
+
@media (min-width: 1600px) {
|
|
1104
|
+
.llm-span-xl-10 {
|
|
1105
|
+
width: auto;
|
|
1106
|
+
max-width: calc(10/ 12 * 100%);
|
|
1107
|
+
}
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
.llm-span-xl-11 {
|
|
1111
|
+
padding-left: clamp(10px,
|
|
1112
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1113
|
+
12px);
|
|
1114
|
+
padding-right: clamp(10px,
|
|
1115
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1116
|
+
12px);
|
|
1117
|
+
}
|
|
1118
|
+
@media (min-width: 1600px) {
|
|
1119
|
+
.llm-span-xl-11 {
|
|
1120
|
+
width: auto;
|
|
1121
|
+
max-width: calc(11/ 12 * 100%);
|
|
1122
|
+
}
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.llm-span-xl-12 {
|
|
1126
|
+
padding-left: clamp(10px,
|
|
1127
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1128
|
+
12px);
|
|
1129
|
+
padding-right: clamp(10px,
|
|
1130
|
+
calc(10px + (100vw - 375px) / (1920 - 375) * (2)),
|
|
1131
|
+
12px);
|
|
1132
|
+
}
|
|
1133
|
+
@media (min-width: 1600px) {
|
|
1134
|
+
.llm-span-xl-12 {
|
|
1135
|
+
width: auto;
|
|
1136
|
+
max-width: calc(12/ 12 * 100%);
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
|
|
1140
|
+
.llm .llm__trigger {
|
|
1141
|
+
display: flex;
|
|
1142
|
+
justify-content: center;
|
|
1143
|
+
font-size: 0;
|
|
1144
|
+
pointer-events: auto;
|
|
1145
|
+
margin: 24px;
|
|
1146
|
+
border-radius: 50%;
|
|
1147
|
+
background: var(--llm-trigger-background);
|
|
1148
|
+
cursor: pointer;
|
|
1149
|
+
position: relative;
|
|
1150
|
+
}
|
|
1151
|
+
.llm .llm__trigger-btn {
|
|
1152
|
+
overflow: hidden;
|
|
1153
|
+
border-radius: 50%;
|
|
1154
|
+
width: var(--llm-button-size);
|
|
1155
|
+
height: var(--llm-button-size);
|
|
1156
|
+
background: var(--llm-color-ui-2);
|
|
1157
|
+
position: relative;
|
|
1158
|
+
will-change: transform;
|
|
1159
|
+
transition: 0.4s;
|
|
1160
|
+
cursor: pointer;
|
|
1161
|
+
}
|
|
1162
|
+
.llm .llm__trigger-btn > span {
|
|
1163
|
+
line-height: 1;
|
|
1164
|
+
font-family: var(--llm-font-primary);
|
|
1165
|
+
font-weight: 700;
|
|
1166
|
+
line-height: 120%;
|
|
1167
|
+
letter-spacing: 0.02em;
|
|
1168
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1169
|
+
font-size: 0px;
|
|
1170
|
+
}
|
|
1171
|
+
@media (hover: hover) {
|
|
1172
|
+
.llm .llm__trigger-btn:hover {
|
|
1173
|
+
scale: 1.1;
|
|
1174
|
+
}
|
|
1175
|
+
}
|
|
1176
|
+
@media (hover: hover) {
|
|
1177
|
+
.llm .llm__trigger-btn--hover:hover + .llm__trigger-welcome > div {
|
|
1178
|
+
opacity: 0;
|
|
1179
|
+
translate: -50% 10%;
|
|
1180
|
+
}
|
|
1181
|
+
.llm .llm__trigger-btn--hover:hover + .llm__trigger-welcome > div + div {
|
|
1182
|
+
opacity: 1;
|
|
1183
|
+
translate: -50% 0%;
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
.llm .llm__trigger-welcome > div {
|
|
1187
|
+
position: relative;
|
|
1188
|
+
border-radius: 12px;
|
|
1189
|
+
padding: clamp(8px,
|
|
1190
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1191
|
+
16px) clamp(16px,
|
|
1192
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1193
|
+
24px);
|
|
1194
|
+
min-width: 200px;
|
|
1195
|
+
text-align: center;
|
|
1196
|
+
color: white;
|
|
1197
|
+
position: absolute;
|
|
1198
|
+
bottom: calc(100% + clamp(8px,
|
|
1199
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1200
|
+
8px));
|
|
1201
|
+
left: 50%;
|
|
1202
|
+
translate: -50% 0%;
|
|
1203
|
+
pointer-events: none;
|
|
1204
|
+
transition: 0.4s;
|
|
1205
|
+
overflow: hidden;
|
|
1206
|
+
}
|
|
1207
|
+
.llm .llm__trigger-welcome > div + div {
|
|
1208
|
+
min-width: 250px;
|
|
1209
|
+
translate: -50% 10%;
|
|
1210
|
+
opacity: 0;
|
|
1211
|
+
}
|
|
1212
|
+
.llm .llm__trigger-blob {
|
|
1213
|
+
position: absolute;
|
|
1214
|
+
overflow: hidden;
|
|
1215
|
+
left: 0;
|
|
1216
|
+
top: 0;
|
|
1217
|
+
width: 100%;
|
|
1218
|
+
height: 100%;
|
|
1219
|
+
border-radius: 50%;
|
|
1220
|
+
overflow: hidden;
|
|
1221
|
+
pointer-events: none;
|
|
1222
|
+
}
|
|
1223
|
+
.llm .llm__trigger-blob svg {
|
|
1224
|
+
position: absolute;
|
|
1225
|
+
left: 50%;
|
|
1226
|
+
top: 50%;
|
|
1227
|
+
translate: -50% -50%;
|
|
1228
|
+
width: 150%;
|
|
1229
|
+
height: 150%;
|
|
1230
|
+
}
|
|
1231
|
+
.llm .llm__trigger-blob svg + svg {
|
|
1232
|
+
translate: -15% -20%;
|
|
1233
|
+
}
|
|
1234
|
+
.llm .llm__trigger-blob svg + svg + svg {
|
|
1235
|
+
translate: -30% -80%;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.llm .llm__background {
|
|
1239
|
+
pointer-events: none;
|
|
1240
|
+
position: absolute;
|
|
1241
|
+
background: var(--llm-color-ui-1);
|
|
1242
|
+
inset: 0;
|
|
1243
|
+
z-index: -1;
|
|
1244
|
+
}
|
|
1245
|
+
.llm .llm__background-shade {
|
|
1246
|
+
position: absolute;
|
|
1247
|
+
inset: 0;
|
|
1248
|
+
opacity: 0.2;
|
|
1249
|
+
}
|
|
1250
|
+
.llm .llm__background-noise {
|
|
1251
|
+
position: absolute;
|
|
1252
|
+
z-index: 2;
|
|
1253
|
+
inset: 0;
|
|
1254
|
+
display: block;
|
|
1255
|
+
opacity: 0.4;
|
|
1256
|
+
mix-blend-mode: soft-light;
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
.llm .llm__main {
|
|
1260
|
+
position: absolute;
|
|
1261
|
+
pointer-events: auto;
|
|
1262
|
+
inset: 0;
|
|
1263
|
+
background: var(--llm-color-ui-1);
|
|
1264
|
+
}
|
|
1265
|
+
.llm .llm__scroller {
|
|
1266
|
+
position: absolute;
|
|
1267
|
+
inset: 0;
|
|
1268
|
+
overflow-x: hidden;
|
|
1269
|
+
overflow-y: auto;
|
|
1270
|
+
color: var(--llm-color-ui-white);
|
|
1271
|
+
}
|
|
1272
|
+
.llm .llm__scroller::-webkit-scrollbar {
|
|
1273
|
+
width: 6px;
|
|
1274
|
+
height: 6px;
|
|
1275
|
+
border-radius: 3px;
|
|
1276
|
+
}
|
|
1277
|
+
.llm .llm__scroller::-webkit-scrollbar-button {
|
|
1278
|
+
display: none;
|
|
1279
|
+
}
|
|
1280
|
+
.llm .llm__scroller::-webkit-scrollbar-button:hover {
|
|
1281
|
+
display: none;
|
|
1282
|
+
}
|
|
1283
|
+
.llm .llm__scroller::-webkit-scrollbar-thumb {
|
|
1284
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
1285
|
+
box-shadow: none;
|
|
1286
|
+
border-radius: 2px;
|
|
1287
|
+
}
|
|
1288
|
+
.llm .llm__scroller::-webkit-scrollbar-thumb:hover {
|
|
1289
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
1290
|
+
}
|
|
1291
|
+
.llm .llm__scroller::-webkit-scrollbar-track {
|
|
1292
|
+
background-color: transparent;
|
|
1293
|
+
border-radius: 2px;
|
|
1294
|
+
}
|
|
1295
|
+
.llm .llm__scroller::-webkit-scrollbar-track:hover {
|
|
1296
|
+
background-color: transparent;
|
|
1297
|
+
}
|
|
1298
|
+
.llm .llm__content {
|
|
1299
|
+
min-height: 100%;
|
|
1300
|
+
padding-top: 100px;
|
|
1301
|
+
padding-bottom: 180px;
|
|
1302
|
+
display: flex;
|
|
1303
|
+
flex-direction: column;
|
|
1304
|
+
justify-content: center;
|
|
1305
|
+
}
|
|
1306
|
+
@media (min-width: 1024px) {
|
|
1307
|
+
.llm .llm__content {
|
|
1308
|
+
padding: 200px 0;
|
|
1309
|
+
padding-bottom: 280px;
|
|
1310
|
+
}
|
|
1311
|
+
}
|
|
1312
|
+
.llm .llm__top {
|
|
1313
|
+
position: absolute;
|
|
1314
|
+
left: 0;
|
|
1315
|
+
top: 0;
|
|
1316
|
+
width: 100%;
|
|
1317
|
+
z-index: 2;
|
|
1318
|
+
}
|
|
1319
|
+
.-llm-scrolled .llm .llm__top {
|
|
1320
|
+
transition: 0.3s;
|
|
1321
|
+
transform: translateY(-100%) !important;
|
|
1322
|
+
}
|
|
1323
|
+
.llm .llm__bottom {
|
|
1324
|
+
position: absolute;
|
|
1325
|
+
left: 0;
|
|
1326
|
+
bottom: 0;
|
|
1327
|
+
padding-bottom: clamp(24px,
|
|
1328
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1329
|
+
40px);
|
|
1330
|
+
width: 100%;
|
|
1331
|
+
z-index: 2;
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
.llm .llm__header {
|
|
1335
|
+
border-bottom: 1px solid rgba(246, 246, 246, 0);
|
|
1336
|
+
transition: 0.3s;
|
|
1337
|
+
}
|
|
1338
|
+
.llm .llm__header.hidden {
|
|
1339
|
+
transform: translateY(-100%);
|
|
1340
|
+
}
|
|
1341
|
+
.llm .llm__header.fixed {
|
|
1342
|
+
border-bottom: 1px solid rgba(246, 246, 246, 0.5);
|
|
1343
|
+
backdrop-filter: blur(20px);
|
|
1344
|
+
background: rgba(255, 255, 255, 0.2);
|
|
1345
|
+
}
|
|
1346
|
+
.llm .llm__header-wrapper {
|
|
1347
|
+
display: flex;
|
|
1348
|
+
justify-content: space-between;
|
|
1349
|
+
padding: 0 clamp(24px,
|
|
1350
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1351
|
+
40px);
|
|
1352
|
+
align-items: center;
|
|
1353
|
+
height: 70px;
|
|
1354
|
+
z-index: 2;
|
|
1355
|
+
}
|
|
1356
|
+
@media (min-width: 1024px) {
|
|
1357
|
+
.llm .llm__header-wrapper {
|
|
1358
|
+
height: 90px;
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1361
|
+
@media (min-width: 1024px) {
|
|
1362
|
+
.-llm-scrolled .llm .llm__header-wrapper {
|
|
1363
|
+
height: 70px;
|
|
1364
|
+
}
|
|
1365
|
+
}
|
|
1366
|
+
.llm .llm__header-logo-full {
|
|
1367
|
+
position: relative;
|
|
1368
|
+
overflow: hidden;
|
|
1369
|
+
width: clamp(130px,
|
|
1370
|
+
calc(130px + (100vw - 375px) / (1920 - 375) * (70)),
|
|
1371
|
+
200px);
|
|
1372
|
+
}
|
|
1373
|
+
.llm .llm__header-logo-full > iframe,
|
|
1374
|
+
.llm .llm__header-logo-full > picture,
|
|
1375
|
+
.llm .llm__header-logo-full > picture > img,
|
|
1376
|
+
.llm .llm__header-logo-full > img,
|
|
1377
|
+
.llm .llm__header-logo-full > svg {
|
|
1378
|
+
display: block;
|
|
1379
|
+
position: absolute;
|
|
1380
|
+
left: 0;
|
|
1381
|
+
top: 0;
|
|
1382
|
+
width: 100%;
|
|
1383
|
+
height: 100%;
|
|
1384
|
+
object-fit: cover;
|
|
1385
|
+
object-position: center;
|
|
1386
|
+
}
|
|
1387
|
+
.llm .llm__header-logo-full:after {
|
|
1388
|
+
content: "";
|
|
1389
|
+
display: block;
|
|
1390
|
+
height: 0;
|
|
1391
|
+
padding-bottom: 30.303030303%;
|
|
1392
|
+
}
|
|
1393
|
+
.-llm-scrolled .llm .llm__header-logo-full {
|
|
1394
|
+
display: none;
|
|
1395
|
+
}
|
|
1396
|
+
.llm .llm__header-logo-mini {
|
|
1397
|
+
position: relative;
|
|
1398
|
+
overflow: hidden;
|
|
1399
|
+
width: 43px;
|
|
1400
|
+
display: none;
|
|
1401
|
+
}
|
|
1402
|
+
.llm .llm__header-logo-mini > iframe,
|
|
1403
|
+
.llm .llm__header-logo-mini > picture,
|
|
1404
|
+
.llm .llm__header-logo-mini > picture > img,
|
|
1405
|
+
.llm .llm__header-logo-mini > img,
|
|
1406
|
+
.llm .llm__header-logo-mini > svg {
|
|
1407
|
+
display: block;
|
|
1408
|
+
position: absolute;
|
|
1409
|
+
left: 0;
|
|
1410
|
+
top: 0;
|
|
1411
|
+
width: 100%;
|
|
1412
|
+
height: 100%;
|
|
1413
|
+
object-fit: cover;
|
|
1414
|
+
object-position: center;
|
|
1415
|
+
}
|
|
1416
|
+
.llm .llm__header-logo-mini:after {
|
|
1417
|
+
content: "";
|
|
1418
|
+
display: block;
|
|
1419
|
+
height: 0;
|
|
1420
|
+
padding-bottom: 92.3076923077%;
|
|
1421
|
+
}
|
|
1422
|
+
.-llm-scrolled .llm .llm__header-logo-mini {
|
|
1423
|
+
display: block;
|
|
1424
|
+
}
|
|
1425
|
+
.llm .llm__header-back {
|
|
1426
|
+
color: white;
|
|
1427
|
+
text-transform: uppercase;
|
|
1428
|
+
cursor: pointer;
|
|
1429
|
+
display: inline-flex;
|
|
1430
|
+
align-items: center;
|
|
1431
|
+
gap: clamp(8px,
|
|
1432
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1433
|
+
8px);
|
|
1434
|
+
user-select: none;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
.llm .llm__intro-blob {
|
|
1438
|
+
position: relative;
|
|
1439
|
+
width: 50px;
|
|
1440
|
+
height: 50px;
|
|
1441
|
+
}
|
|
1442
|
+
@media (min-width: 1440px) {
|
|
1443
|
+
.llm .llm__intro-blob {
|
|
1444
|
+
width: 80px;
|
|
1445
|
+
height: 80px;
|
|
1446
|
+
}
|
|
1447
|
+
}
|
|
1448
|
+
.llm .llm__intro-blob > div {
|
|
1449
|
+
height: 100%;
|
|
1450
|
+
}
|
|
1451
|
+
@media (min-width: 1024px) {
|
|
1452
|
+
.llm .llm__intro-wrapper {
|
|
1453
|
+
justify-content: space-between;
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
.llm .llm__intro-text {
|
|
1457
|
+
display: flex;
|
|
1458
|
+
flex-direction: column;
|
|
1459
|
+
gap: clamp(24px,
|
|
1460
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1461
|
+
40px);
|
|
1462
|
+
}
|
|
1463
|
+
.llm .llm__intro-links {
|
|
1464
|
+
margin-top: clamp(24px,
|
|
1465
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1466
|
+
40px);
|
|
1467
|
+
}
|
|
1468
|
+
@media (min-width: 1024px) {
|
|
1469
|
+
.llm .llm__intro-links {
|
|
1470
|
+
margin-top: 0;
|
|
1471
|
+
}
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
.llm .llm__links {
|
|
1475
|
+
margin: 0 calc(clamp(20px,
|
|
1476
|
+
calc(20px + (100vw - 375px) / (1920 - 375) * (90)),
|
|
1477
|
+
110px) * -1);
|
|
1478
|
+
}
|
|
1479
|
+
@media (min-width: 768px) {
|
|
1480
|
+
.llm .llm__links {
|
|
1481
|
+
margin: 0;
|
|
1482
|
+
display: grid;
|
|
1483
|
+
grid-template-columns: repeat(2, 1fr);
|
|
1484
|
+
gap: clamp(8px,
|
|
1485
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1486
|
+
16px);
|
|
1487
|
+
}
|
|
1488
|
+
}
|
|
1489
|
+
.llm .llm__links .swiper-wrapper {
|
|
1490
|
+
padding: 1px 0;
|
|
1491
|
+
}
|
|
1492
|
+
.llm .llm__links .swiper-slide {
|
|
1493
|
+
height: auto;
|
|
1494
|
+
}
|
|
1495
|
+
.llm .llm__links-card {
|
|
1496
|
+
height: 100%;
|
|
1497
|
+
background: linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%);
|
|
1498
|
+
border: 1px solid rgba(237, 237, 237, 0.3);
|
|
1499
|
+
backdrop-filter: blur(20px);
|
|
1500
|
+
border-radius: 12px;
|
|
1501
|
+
padding: clamp(24px,
|
|
1502
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1503
|
+
32px);
|
|
1504
|
+
display: flex;
|
|
1505
|
+
flex-direction: column;
|
|
1506
|
+
gap: clamp(8px,
|
|
1507
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1508
|
+
16px);
|
|
1509
|
+
cursor: pointer;
|
|
1510
|
+
}
|
|
1511
|
+
@media (min-width: 768px) {
|
|
1512
|
+
.llm .llm__links-card:first-child {
|
|
1513
|
+
grid-column: span 2;
|
|
1514
|
+
}
|
|
1515
|
+
}
|
|
1516
|
+
.llm .llm__links-title {
|
|
1517
|
+
display: flex;
|
|
1518
|
+
align-items: center;
|
|
1519
|
+
gap: clamp(8px,
|
|
1520
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1521
|
+
16px);
|
|
1522
|
+
text-transform: uppercase;
|
|
1523
|
+
}
|
|
1524
|
+
.llm .llm__links-title i {
|
|
1525
|
+
display: block;
|
|
1526
|
+
width: 18px;
|
|
1527
|
+
height: 18px;
|
|
1528
|
+
}
|
|
1529
|
+
.llm .llm__links-title i svg {
|
|
1530
|
+
fill: currentColor;
|
|
1531
|
+
}
|
|
1532
|
+
.llm .llm__links-body {
|
|
1533
|
+
line-height: 140%;
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1536
|
+
.llm .llm__prompt-form {
|
|
1537
|
+
gap: clamp(8px,
|
|
1538
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1539
|
+
8px);
|
|
1540
|
+
display: flex;
|
|
1541
|
+
flex-wrap: nowrap;
|
|
1542
|
+
align-items: flex-end;
|
|
1543
|
+
}
|
|
1544
|
+
.llm .llm__prompt-input {
|
|
1545
|
+
position: relative;
|
|
1546
|
+
box-shadow: -4px 4px 50px 0px rgba(8, 20, 62, 0.08);
|
|
1547
|
+
border-radius: 8px;
|
|
1548
|
+
overflow: hidden;
|
|
1549
|
+
background: white;
|
|
1550
|
+
width: 100%;
|
|
1551
|
+
}
|
|
1552
|
+
.llm .llm__prompt-textarea {
|
|
1553
|
+
line-height: 1;
|
|
1554
|
+
font-family: var(--llm-font-secondary);
|
|
1555
|
+
font-weight: normal;
|
|
1556
|
+
line-height: 140%;
|
|
1557
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
1558
|
+
font-size: 16px;
|
|
1559
|
+
width: 100%;
|
|
1560
|
+
line-height: 1.3;
|
|
1561
|
+
-webkit-appearance: none;
|
|
1562
|
+
appearance: none;
|
|
1563
|
+
outline: none;
|
|
1564
|
+
border: none;
|
|
1565
|
+
margin: 0;
|
|
1566
|
+
padding: 10px clamp(16px,
|
|
1567
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1568
|
+
24px);
|
|
1569
|
+
resize: none;
|
|
1570
|
+
max-height: 120px;
|
|
1571
|
+
min-height: 45px;
|
|
1572
|
+
border-radius: 0;
|
|
1573
|
+
background: transparent;
|
|
1574
|
+
display: block;
|
|
1575
|
+
color: black;
|
|
1576
|
+
}
|
|
1577
|
+
@media (min-width: 1024px) {
|
|
1578
|
+
.llm .llm__prompt-textarea {
|
|
1579
|
+
padding: 18px clamp(16px,
|
|
1580
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1581
|
+
24px);
|
|
1582
|
+
min-height: 60px;
|
|
1583
|
+
max-height: 220px;
|
|
1584
|
+
}
|
|
1585
|
+
}
|
|
1586
|
+
.llm .llm__prompt-microphone {
|
|
1587
|
+
position: absolute;
|
|
1588
|
+
right: 12px;
|
|
1589
|
+
bottom: 5px;
|
|
1590
|
+
color: var(--llm-color-ui-1);
|
|
1591
|
+
font-size: 16px;
|
|
1592
|
+
width: 24px;
|
|
1593
|
+
height: 24px;
|
|
1594
|
+
display: flex;
|
|
1595
|
+
align-items: center;
|
|
1596
|
+
justify-content: center;
|
|
1597
|
+
border-radius: 50%;
|
|
1598
|
+
cursor: pointer;
|
|
1599
|
+
}
|
|
1600
|
+
.llm .llm__prompt-submit {
|
|
1601
|
+
flex-shrink: 0;
|
|
1602
|
+
width: 45px;
|
|
1603
|
+
height: 45px;
|
|
1604
|
+
color: var(--llm-color-ui-1);
|
|
1605
|
+
position: relative;
|
|
1606
|
+
display: flex;
|
|
1607
|
+
align-items: center;
|
|
1608
|
+
justify-content: center;
|
|
1609
|
+
background: var(--llm-color-ui-2);
|
|
1610
|
+
border-radius: 50%;
|
|
1611
|
+
cursor: pointer;
|
|
1612
|
+
}
|
|
1613
|
+
@media (min-width: 1024px) {
|
|
1614
|
+
.llm .llm__prompt-submit {
|
|
1615
|
+
width: 60px;
|
|
1616
|
+
height: 60px;
|
|
1617
|
+
}
|
|
1618
|
+
}
|
|
1619
|
+
.llm .llm__prompt-submit > i {
|
|
1620
|
+
position: relative;
|
|
1621
|
+
z-index: 2;
|
|
1622
|
+
width: 18px;
|
|
1623
|
+
height: 18px;
|
|
1624
|
+
}
|
|
1625
|
+
@media (min-width: 1024px) {
|
|
1626
|
+
.llm .llm__prompt-submit > i {
|
|
1627
|
+
width: 24px;
|
|
1628
|
+
height: 24px;
|
|
1629
|
+
}
|
|
1630
|
+
}
|
|
1631
|
+
.llm .llm__prompt-submit > i svg {
|
|
1632
|
+
display: block;
|
|
1633
|
+
width: 100%;
|
|
1634
|
+
height: 100%;
|
|
1635
|
+
}
|
|
1636
|
+
.llm .llm__prompt-suggestions {
|
|
1637
|
+
padding-bottom: clamp(8px,
|
|
1638
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1639
|
+
8px);
|
|
1640
|
+
width: 100%;
|
|
1641
|
+
}
|
|
1642
|
+
.llm .llm__prompt-suggestions .llm__suggestions {
|
|
1643
|
+
margin: 0 calc(clamp(20px,
|
|
1644
|
+
calc(20px + (100vw - 375px) / (1920 - 375) * (90)),
|
|
1645
|
+
110px) * -1);
|
|
1646
|
+
}
|
|
1647
|
+
.llm .llm__prompt-suggestions .swiper-slide {
|
|
1648
|
+
width: auto;
|
|
1649
|
+
}
|
|
1650
|
+
.llm .llm__prompt-suggestions .swiper-slide > div {
|
|
1651
|
+
line-height: 1;
|
|
1652
|
+
font-family: var(--llm-font-primary);
|
|
1653
|
+
font-weight: 700;
|
|
1654
|
+
line-height: 120%;
|
|
1655
|
+
letter-spacing: 0.02em;
|
|
1656
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1657
|
+
padding: clamp(8px,
|
|
1658
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1659
|
+
8px);
|
|
1660
|
+
background: rgba(255, 255, 255, 0.2);
|
|
1661
|
+
border: 1px solid rgba(237, 237, 237, 0.3);
|
|
1662
|
+
border-radius: 5px;
|
|
1663
|
+
backdrop-filter: blur(20px);
|
|
1664
|
+
color: white;
|
|
1665
|
+
cursor: pointer;
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1668
|
+
.llm .llm__message--user .llm__text .llm__text-body {
|
|
1669
|
+
line-height: 1;
|
|
1670
|
+
font-family: var(--llm-font-secondary);
|
|
1671
|
+
font-weight: normal;
|
|
1672
|
+
line-height: 140%;
|
|
1673
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
1674
|
+
background: linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%);
|
|
1675
|
+
border: 1px solid rgba(237, 237, 237, 0.3);
|
|
1676
|
+
backdrop-filter: blur(20px);
|
|
1677
|
+
border-radius: 12px;
|
|
1678
|
+
padding: clamp(16px,
|
|
1679
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1680
|
+
24px) clamp(24px,
|
|
1681
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1682
|
+
32px);
|
|
1683
|
+
}
|
|
1684
|
+
.llm .llm__message--assistant .llm__text .llm__text-body {
|
|
1685
|
+
line-height: 1;
|
|
1686
|
+
font-family: var(--llm-font-primary);
|
|
1687
|
+
font-weight: 500;
|
|
1688
|
+
line-height: 130%;
|
|
1689
|
+
letter-spacing: 0.02em;
|
|
1690
|
+
font-size: clamp(24px, calc(24px + (100vw - 375px) / (1920 - 375) * (32)), 56px);
|
|
1691
|
+
}
|
|
1692
|
+
.llm .llm__text-disclaimer {
|
|
1693
|
+
line-height: 1;
|
|
1694
|
+
font-family: var(--llm-font-secondary);
|
|
1695
|
+
font-weight: normal;
|
|
1696
|
+
line-height: 150%;
|
|
1697
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1698
|
+
display: flex;
|
|
1699
|
+
gap: clamp(8px,
|
|
1700
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1701
|
+
16px);
|
|
1702
|
+
padding-top: clamp(16px,
|
|
1703
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1704
|
+
24px);
|
|
1705
|
+
}
|
|
1706
|
+
.llm .llm__text-disclaimer a {
|
|
1707
|
+
text-decoration: underline;
|
|
1708
|
+
}
|
|
1709
|
+
.llm .llm__text-disclaimer i {
|
|
1710
|
+
display: block;
|
|
1711
|
+
width: 18px;
|
|
1712
|
+
height: 18px;
|
|
1713
|
+
flex-shrink: 0;
|
|
1714
|
+
}
|
|
1715
|
+
.llm .llm__text-disclaimer i svg {
|
|
1716
|
+
display: block;
|
|
1717
|
+
width: 100%;
|
|
1718
|
+
height: 100%;
|
|
1719
|
+
}
|
|
1720
|
+
|
|
1721
|
+
.llm .llm__event-inner {
|
|
1722
|
+
border-radius: 5px;
|
|
1723
|
+
background: rgba(0, 60, 140, 0.8);
|
|
1724
|
+
box-shadow: -1px 1px 30px 0px rgba(0, 0, 0, 0.2);
|
|
1725
|
+
height: 100%;
|
|
1726
|
+
display: flex;
|
|
1727
|
+
overflow: hidden;
|
|
1728
|
+
flex-direction: column-reverse;
|
|
1729
|
+
justify-content: flex-end;
|
|
1730
|
+
}
|
|
1731
|
+
@media (min-width: 1440px) {
|
|
1732
|
+
.llm .llm__event-inner {
|
|
1733
|
+
padding-bottom: clamp(24px,
|
|
1734
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1735
|
+
40px);
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
.llm .llm__event-media {
|
|
1739
|
+
position: relative;
|
|
1740
|
+
}
|
|
1741
|
+
.llm .llm__event-asset {
|
|
1742
|
+
position: relative;
|
|
1743
|
+
overflow: hidden;
|
|
1744
|
+
}
|
|
1745
|
+
.llm .llm__event-asset > iframe,
|
|
1746
|
+
.llm .llm__event-asset > picture,
|
|
1747
|
+
.llm .llm__event-asset > picture > img,
|
|
1748
|
+
.llm .llm__event-asset > img,
|
|
1749
|
+
.llm .llm__event-asset > svg {
|
|
1750
|
+
display: block;
|
|
1751
|
+
position: absolute;
|
|
1752
|
+
left: 0;
|
|
1753
|
+
top: 0;
|
|
1754
|
+
width: 100%;
|
|
1755
|
+
height: 100%;
|
|
1756
|
+
object-fit: cover;
|
|
1757
|
+
object-position: center;
|
|
1758
|
+
}
|
|
1759
|
+
.llm .llm__event-asset:after {
|
|
1760
|
+
content: "";
|
|
1761
|
+
display: block;
|
|
1762
|
+
height: 0;
|
|
1763
|
+
padding-bottom: 50%;
|
|
1764
|
+
}
|
|
1765
|
+
.llm .llm__event-content {
|
|
1766
|
+
display: flex;
|
|
1767
|
+
flex-direction: column;
|
|
1768
|
+
padding: clamp(24px,
|
|
1769
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1770
|
+
40px);
|
|
1771
|
+
gap: clamp(16px,
|
|
1772
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1773
|
+
24px);
|
|
1774
|
+
height: 100%;
|
|
1775
|
+
}
|
|
1776
|
+
.llm .llm__event-pretitle {
|
|
1777
|
+
line-height: 1;
|
|
1778
|
+
font-family: var(--llm-font-primary);
|
|
1779
|
+
font-weight: 500;
|
|
1780
|
+
letter-spacing: 0.08em;
|
|
1781
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1782
|
+
text-transform: uppercase;
|
|
1783
|
+
}
|
|
1784
|
+
.llm .llm__event-title {
|
|
1785
|
+
line-height: 1;
|
|
1786
|
+
font-family: var(--llm-font-primary);
|
|
1787
|
+
font-weight: 500;
|
|
1788
|
+
line-height: 130%;
|
|
1789
|
+
letter-spacing: 0.02em;
|
|
1790
|
+
font-size: clamp(18px, calc(18px + (100vw - 375px) / (1920 - 375) * (14)), 32px);
|
|
1791
|
+
}
|
|
1792
|
+
.llm .llm__event-body {
|
|
1793
|
+
line-height: 1;
|
|
1794
|
+
font-family: var(--llm-font-secondary);
|
|
1795
|
+
font-weight: normal;
|
|
1796
|
+
line-height: 150%;
|
|
1797
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1798
|
+
}
|
|
1799
|
+
.llm .llm__event-location {
|
|
1800
|
+
line-height: 1;
|
|
1801
|
+
font-family: var(--llm-font-primary);
|
|
1802
|
+
font-weight: 700;
|
|
1803
|
+
line-height: 120%;
|
|
1804
|
+
letter-spacing: 0.02em;
|
|
1805
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1806
|
+
display: flex;
|
|
1807
|
+
align-items: center;
|
|
1808
|
+
gap: clamp(8px,
|
|
1809
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1810
|
+
8px);
|
|
1811
|
+
padding-top: clamp(16px,
|
|
1812
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1813
|
+
24px);
|
|
1814
|
+
}
|
|
1815
|
+
.llm .llm__event-location svg {
|
|
1816
|
+
color: var(--llm-color-ui-4);
|
|
1817
|
+
width: 20px;
|
|
1818
|
+
height: 20px;
|
|
1819
|
+
}
|
|
1820
|
+
.llm .llm__event-ctas {
|
|
1821
|
+
display: flex;
|
|
1822
|
+
gap: clamp(24px,
|
|
1823
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1824
|
+
32px);
|
|
1825
|
+
padding-top: clamp(8px,
|
|
1826
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1827
|
+
16px);
|
|
1828
|
+
margin-top: auto;
|
|
1829
|
+
}
|
|
1830
|
+
.llm .llm__event-tags {
|
|
1831
|
+
display: block;
|
|
1832
|
+
position: absolute;
|
|
1833
|
+
left: 0;
|
|
1834
|
+
top: 0;
|
|
1835
|
+
width: 100%;
|
|
1836
|
+
height: 100%;
|
|
1837
|
+
padding: clamp(8px,
|
|
1838
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1839
|
+
16px);
|
|
1840
|
+
display: flex;
|
|
1841
|
+
flex-direction: column;
|
|
1842
|
+
align-items: flex-start;
|
|
1843
|
+
gap: 4px;
|
|
1844
|
+
}
|
|
1845
|
+
.llm .llm__event-tag {
|
|
1846
|
+
padding: clamp(8px,
|
|
1847
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1848
|
+
8px);
|
|
1849
|
+
border-radius: 2px;
|
|
1850
|
+
line-height: 1;
|
|
1851
|
+
font-family: var(--llm-font-primary);
|
|
1852
|
+
font-weight: 500;
|
|
1853
|
+
letter-spacing: 0.08em;
|
|
1854
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1855
|
+
}
|
|
1856
|
+
.llm .llm__event-time {
|
|
1857
|
+
background: var(--llm-color-ui-7);
|
|
1858
|
+
}
|
|
1859
|
+
.llm .llm__event-date {
|
|
1860
|
+
background: var(--llm-color-ui-1);
|
|
1861
|
+
}
|
|
1862
|
+
.llm .llm__event--event {
|
|
1863
|
+
margin-top: clamp(32px,
|
|
1864
|
+
calc(32px + (100vw - 375px) / (1920 - 375) * (48)),
|
|
1865
|
+
80px);
|
|
1866
|
+
}
|
|
1867
|
+
@media (min-width: 768px) {
|
|
1868
|
+
.llm .llm__event--event .llm__event-inner {
|
|
1869
|
+
flex-direction: row;
|
|
1870
|
+
}
|
|
1871
|
+
}
|
|
1872
|
+
@media (min-width: 1440px) {
|
|
1873
|
+
.llm .llm__event--event .llm__event-inner {
|
|
1874
|
+
background: none;
|
|
1875
|
+
box-shadow: none;
|
|
1876
|
+
}
|
|
1877
|
+
}
|
|
1878
|
+
@media (min-width: 768px) {
|
|
1879
|
+
.llm .llm__event--event .llm__event-content {
|
|
1880
|
+
width: 50%;
|
|
1881
|
+
}
|
|
1882
|
+
}
|
|
1883
|
+
@media (min-width: 1440px) {
|
|
1884
|
+
.llm .llm__event--event .llm__event-content {
|
|
1885
|
+
padding: clamp(24px,
|
|
1886
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
1887
|
+
40px) clamp(24px,
|
|
1888
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (40)),
|
|
1889
|
+
64px);
|
|
1890
|
+
}
|
|
1891
|
+
}
|
|
1892
|
+
@media (min-width: 1440px) {
|
|
1893
|
+
.llm .llm__event--event .llm__event-title {
|
|
1894
|
+
line-height: 1;
|
|
1895
|
+
font-family: var(--llm-font-primary);
|
|
1896
|
+
font-weight: 500;
|
|
1897
|
+
line-height: 110%;
|
|
1898
|
+
letter-spacing: 0.02em;
|
|
1899
|
+
font-size: clamp(32px, calc(32px + (100vw - 375px) / (1920 - 375) * (40)), 72px);
|
|
1900
|
+
}
|
|
1901
|
+
}
|
|
1902
|
+
@media (min-width: 1440px) {
|
|
1903
|
+
.llm .llm__event--event .llm__event-body {
|
|
1904
|
+
line-height: 1;
|
|
1905
|
+
font-family: var(--llm-font-secondary);
|
|
1906
|
+
font-weight: normal;
|
|
1907
|
+
line-height: 140%;
|
|
1908
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
1909
|
+
}
|
|
1910
|
+
}
|
|
1911
|
+
@media (min-width: 768px) {
|
|
1912
|
+
.llm .llm__event--event .llm__event-media {
|
|
1913
|
+
width: 50%;
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
@media (min-width: 768px) {
|
|
1917
|
+
.llm .llm__event--event .llm__event-asset {
|
|
1918
|
+
height: 100%;
|
|
1919
|
+
}
|
|
1920
|
+
.llm .llm__event--event .llm__event-asset:after {
|
|
1921
|
+
display: none;
|
|
1922
|
+
}
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.llm .llm__events {
|
|
1926
|
+
width: 100%;
|
|
1927
|
+
}
|
|
1928
|
+
.llm .llm__events .swiper {
|
|
1929
|
+
position: relative;
|
|
1930
|
+
overflow: visible;
|
|
1931
|
+
padding-top: clamp(40px,
|
|
1932
|
+
calc(40px + (100vw - 375px) / (1920 - 375) * (48)),
|
|
1933
|
+
88px);
|
|
1934
|
+
}
|
|
1935
|
+
.llm .llm__events .swiper-slide {
|
|
1936
|
+
height: auto;
|
|
1937
|
+
}
|
|
1938
|
+
.llm .llm__events .llm__event-inner {
|
|
1939
|
+
padding-bottom: 0;
|
|
1940
|
+
}
|
|
1941
|
+
.llm .llm__events-slide {
|
|
1942
|
+
height: auto;
|
|
1943
|
+
}
|
|
1944
|
+
.llm .llm__events-slide .llm__event {
|
|
1945
|
+
height: 100%;
|
|
1946
|
+
}
|
|
1947
|
+
.llm .llm__events-nav {
|
|
1948
|
+
position: absolute;
|
|
1949
|
+
top: 0;
|
|
1950
|
+
left: 0;
|
|
1951
|
+
color: var(--llm-color-ui-white);
|
|
1952
|
+
display: flex;
|
|
1953
|
+
gap: clamp(16px,
|
|
1954
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
1955
|
+
24px);
|
|
1956
|
+
}
|
|
1957
|
+
@media (min-width: 1024px) {
|
|
1958
|
+
.llm .llm__events-nav {
|
|
1959
|
+
right: 0;
|
|
1960
|
+
left: auto;
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1963
|
+
.llm .llm__events-nav button {
|
|
1964
|
+
color: currentColor;
|
|
1965
|
+
cursor: pointer;
|
|
1966
|
+
}
|
|
1967
|
+
.llm .llm__events-nav button.swiper-button-disabled {
|
|
1968
|
+
opacity: 0.2;
|
|
1969
|
+
cursor: pointer;
|
|
1970
|
+
}
|
|
1971
|
+
.llm .llm__events-nav button.swiper-button-lock {
|
|
1972
|
+
display: none;
|
|
1973
|
+
}
|
|
1974
|
+
.llm .llm__events-nav button svg {
|
|
1975
|
+
width: 24px;
|
|
1976
|
+
height: 24px;
|
|
1977
|
+
}
|
|
1978
|
+
|
|
1979
|
+
.llm .llm__cta {
|
|
1980
|
+
line-height: 1;
|
|
1981
|
+
font-family: var(--llm-font-secondary);
|
|
1982
|
+
font-weight: 300;
|
|
1983
|
+
line-height: 100%;
|
|
1984
|
+
font-style: italic;
|
|
1985
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
1986
|
+
position: relative;
|
|
1987
|
+
display: inline-flex;
|
|
1988
|
+
align-items: center;
|
|
1989
|
+
gap: clamp(8px,
|
|
1990
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
1991
|
+
8px);
|
|
1992
|
+
color: var(--llm-color-ui-white);
|
|
1993
|
+
overflow: hidden;
|
|
1994
|
+
white-space: nowrap;
|
|
1995
|
+
transition: opacity 0.3s;
|
|
1996
|
+
}
|
|
1997
|
+
@media (hover: hover) {
|
|
1998
|
+
.llm .llm__cta:hover {
|
|
1999
|
+
text-decoration: underline;
|
|
2000
|
+
opacity: 0.7;
|
|
2001
|
+
}
|
|
2002
|
+
}
|
|
2003
|
+
.llm .llm__cta--button, .llm .llm__cta--submit {
|
|
2004
|
+
line-height: 1;
|
|
2005
|
+
font-family: var(--llm-font-primary);
|
|
2006
|
+
font-weight: 500;
|
|
2007
|
+
line-height: 100%;
|
|
2008
|
+
letter-spacing: 0.06em;
|
|
2009
|
+
font-size: clamp(12px, calc(12px + (100vw - 375px) / (1920 - 375) * (2)), 14px);
|
|
2010
|
+
background: var(--llm-color-ui-2);
|
|
2011
|
+
color: var(--llm-color-ui-1);
|
|
2012
|
+
height: 42px;
|
|
2013
|
+
font-style: normal;
|
|
2014
|
+
margin: 0;
|
|
2015
|
+
padding: 0 clamp(24px,
|
|
2016
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (24)),
|
|
2017
|
+
48px);
|
|
2018
|
+
border-radius: 50px;
|
|
2019
|
+
overflow: hidden;
|
|
2020
|
+
text-decoration: none;
|
|
2021
|
+
cursor: pointer;
|
|
2022
|
+
}
|
|
2023
|
+
.llm .llm__cta--button .llm__background, .llm .llm__cta--submit .llm__background {
|
|
2024
|
+
z-index: 1;
|
|
2025
|
+
background: none;
|
|
2026
|
+
}
|
|
2027
|
+
.llm .llm__cta--button .llm__background .llm__background-noise, .llm .llm__cta--submit .llm__background .llm__background-noise {
|
|
2028
|
+
display: none;
|
|
2029
|
+
}
|
|
2030
|
+
.llm .llm__cta--button .llm__background .llm__background-shade, .llm .llm__cta--submit .llm__background .llm__background-shade {
|
|
2031
|
+
opacity: 1;
|
|
2032
|
+
}
|
|
2033
|
+
.llm .llm__cta--button > span, .llm .llm__cta--submit > span {
|
|
2034
|
+
z-index: 2;
|
|
2035
|
+
position: relative;
|
|
2036
|
+
}
|
|
2037
|
+
.llm .llm__cta--simple {
|
|
2038
|
+
line-height: 1;
|
|
2039
|
+
font-family: var(--llm-font-primary);
|
|
2040
|
+
font-weight: 500;
|
|
2041
|
+
line-height: 100%;
|
|
2042
|
+
letter-spacing: 0.06em;
|
|
2043
|
+
font-size: clamp(12px, calc(12px + (100vw - 375px) / (1920 - 375) * (2)), 14px);
|
|
2044
|
+
padding: 0 clamp(24px,
|
|
2045
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (24)),
|
|
2046
|
+
48px);
|
|
2047
|
+
height: 42px;
|
|
2048
|
+
background: linear-gradient(rgba(154, 154, 154, 0.2) 10%, rgba(221, 221, 221, 0.1) 80%);
|
|
2049
|
+
border: 1px solid rgba(237, 237, 237, 0.3);
|
|
2050
|
+
backdrop-filter: blur(20px);
|
|
2051
|
+
color: var(--llm-color-ui-white);
|
|
2052
|
+
font-style: normal;
|
|
2053
|
+
border-radius: 12px;
|
|
2054
|
+
overflow: hidden;
|
|
2055
|
+
text-decoration: none;
|
|
2056
|
+
cursor: pointer;
|
|
2057
|
+
}
|
|
2058
|
+
.llm .llm__cta--simple > span {
|
|
2059
|
+
z-index: 2;
|
|
2060
|
+
position: relative;
|
|
2061
|
+
}
|
|
2062
|
+
|
|
2063
|
+
.llm .llm__poi {
|
|
2064
|
+
display: flex;
|
|
2065
|
+
flex-direction: column;
|
|
2066
|
+
align-items: center;
|
|
2067
|
+
gap: clamp(24px,
|
|
2068
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
2069
|
+
40px);
|
|
2070
|
+
}
|
|
2071
|
+
@media (min-width: 768px) {
|
|
2072
|
+
.llm .llm__poi {
|
|
2073
|
+
flex-direction: row;
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
.llm .llm__poi-media {
|
|
2077
|
+
display: flex;
|
|
2078
|
+
justify-content: center;
|
|
2079
|
+
align-items: center;
|
|
2080
|
+
}
|
|
2081
|
+
.llm .llm__poi-media > img {
|
|
2082
|
+
width: 100%;
|
|
2083
|
+
height: 100%;
|
|
2084
|
+
object-fit: cover;
|
|
2085
|
+
aspect-ratio: 483/272;
|
|
2086
|
+
}
|
|
2087
|
+
@media (min-width: 768px) {
|
|
2088
|
+
.llm .llm__poi-media {
|
|
2089
|
+
flex: 0 0 200px;
|
|
2090
|
+
max-width: 200px;
|
|
2091
|
+
}
|
|
2092
|
+
.llm .llm__poi-media > img {
|
|
2093
|
+
aspect-ratio: 1/1;
|
|
2094
|
+
}
|
|
2095
|
+
}
|
|
2096
|
+
.llm .llm__poi-content {
|
|
2097
|
+
display: flex;
|
|
2098
|
+
flex-direction: column;
|
|
2099
|
+
gap: clamp(16px,
|
|
2100
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2101
|
+
24px);
|
|
2102
|
+
}
|
|
2103
|
+
.llm .llm__poi-title {
|
|
2104
|
+
line-height: 1;
|
|
2105
|
+
font-family: var(--llm-font-primary);
|
|
2106
|
+
font-weight: 500;
|
|
2107
|
+
line-height: 130%;
|
|
2108
|
+
letter-spacing: 0.02em;
|
|
2109
|
+
font-size: clamp(18px, calc(18px + (100vw - 375px) / (1920 - 375) * (14)), 32px);
|
|
2110
|
+
}
|
|
2111
|
+
.llm .llm__poi-body {
|
|
2112
|
+
line-height: 1;
|
|
2113
|
+
font-family: var(--llm-font-secondary);
|
|
2114
|
+
font-weight: normal;
|
|
2115
|
+
line-height: 150%;
|
|
2116
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
2117
|
+
}
|
|
2118
|
+
.llm .llm__poi-tags {
|
|
2119
|
+
display: flex;
|
|
2120
|
+
gap: clamp(24px,
|
|
2121
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2122
|
+
32px);
|
|
2123
|
+
}
|
|
2124
|
+
.llm .llm__poi-tag {
|
|
2125
|
+
line-height: 1;
|
|
2126
|
+
font-family: var(--llm-font-primary);
|
|
2127
|
+
font-weight: 700;
|
|
2128
|
+
line-height: 120%;
|
|
2129
|
+
letter-spacing: 0.02em;
|
|
2130
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
2131
|
+
display: flex;
|
|
2132
|
+
align-items: center;
|
|
2133
|
+
gap: clamp(8px,
|
|
2134
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
2135
|
+
8px);
|
|
2136
|
+
}
|
|
2137
|
+
.llm .llm__poi-tag svg {
|
|
2138
|
+
color: currentColor;
|
|
2139
|
+
width: 20px;
|
|
2140
|
+
height: 20px;
|
|
2141
|
+
}
|
|
2142
|
+
.llm .llm__poi-ctas {
|
|
2143
|
+
display: flex;
|
|
2144
|
+
gap: clamp(24px,
|
|
2145
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2146
|
+
32px);
|
|
2147
|
+
margin-top: auto;
|
|
2148
|
+
}
|
|
2149
|
+
.llm .llm__poi--poi {
|
|
2150
|
+
margin-top: clamp(32px,
|
|
2151
|
+
calc(32px + (100vw - 375px) / (1920 - 375) * (48)),
|
|
2152
|
+
80px);
|
|
2153
|
+
}
|
|
2154
|
+
@media (min-width: 768px) {
|
|
2155
|
+
.llm .llm__poi--poi .llm__poi-inner {
|
|
2156
|
+
flex-direction: row;
|
|
2157
|
+
}
|
|
2158
|
+
}
|
|
2159
|
+
@media (min-width: 1440px) {
|
|
2160
|
+
.llm .llm__poi--poi .llm__poi-inner {
|
|
2161
|
+
background: none;
|
|
2162
|
+
box-shadow: none;
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2165
|
+
@media (min-width: 768px) {
|
|
2166
|
+
.llm .llm__poi--poi .llm__poi-content {
|
|
2167
|
+
width: 50%;
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
@media (min-width: 1440px) {
|
|
2171
|
+
.llm .llm__poi--poi .llm__poi-content {
|
|
2172
|
+
padding: clamp(24px,
|
|
2173
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
2174
|
+
40px) clamp(24px,
|
|
2175
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (40)),
|
|
2176
|
+
64px);
|
|
2177
|
+
}
|
|
2178
|
+
}
|
|
2179
|
+
@media (min-width: 1440px) {
|
|
2180
|
+
.llm .llm__poi--poi .llm__poi-title {
|
|
2181
|
+
line-height: 1;
|
|
2182
|
+
font-family: var(--llm-font-primary);
|
|
2183
|
+
font-weight: 500;
|
|
2184
|
+
line-height: 110%;
|
|
2185
|
+
letter-spacing: 0.02em;
|
|
2186
|
+
font-size: clamp(32px, calc(32px + (100vw - 375px) / (1920 - 375) * (40)), 72px);
|
|
2187
|
+
}
|
|
2188
|
+
}
|
|
2189
|
+
@media (min-width: 1440px) {
|
|
2190
|
+
.llm .llm__poi--poi .llm__poi-body {
|
|
2191
|
+
line-height: 1;
|
|
2192
|
+
font-family: var(--llm-font-secondary);
|
|
2193
|
+
font-weight: normal;
|
|
2194
|
+
line-height: 140%;
|
|
2195
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
@media (min-width: 768px) {
|
|
2199
|
+
.llm .llm__poi--poi .llm__poi-media {
|
|
2200
|
+
width: 50%;
|
|
2201
|
+
}
|
|
2202
|
+
}
|
|
2203
|
+
@media (min-width: 768px) {
|
|
2204
|
+
.llm .llm__poi--poi .llm__poi-asset {
|
|
2205
|
+
height: 100%;
|
|
2206
|
+
}
|
|
2207
|
+
.llm .llm__poi--poi .llm__poi-asset:after {
|
|
2208
|
+
display: none;
|
|
2209
|
+
}
|
|
2210
|
+
}
|
|
2211
|
+
|
|
2212
|
+
.llm .llm__pois {
|
|
2213
|
+
padding-top: clamp(24px,
|
|
2214
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2215
|
+
32px);
|
|
2216
|
+
padding-bottom: clamp(24px,
|
|
2217
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2218
|
+
32px);
|
|
2219
|
+
border-top: 1px solid rgba(237, 237, 237, 0.3);
|
|
2220
|
+
border-bottom: 1px solid rgba(237, 237, 237, 0.3);
|
|
2221
|
+
}
|
|
2222
|
+
.llm .llm__pois .llm__poi + .llm__poi {
|
|
2223
|
+
margin-top: clamp(24px,
|
|
2224
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2225
|
+
32px);
|
|
2226
|
+
padding-top: clamp(24px,
|
|
2227
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2228
|
+
32px);
|
|
2229
|
+
border-top: 1px solid rgba(237, 237, 237, 0.3);
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
.llm .llm__thread {
|
|
2233
|
+
margin-top: clamp(48px,
|
|
2234
|
+
calc(48px + (100vw - 375px) / (1920 - 375) * (72)),
|
|
2235
|
+
120px);
|
|
2236
|
+
display: flex;
|
|
2237
|
+
flex-direction: column;
|
|
2238
|
+
row-gap: clamp(48px,
|
|
2239
|
+
calc(48px + (100vw - 375px) / (1920 - 375) * (72)),
|
|
2240
|
+
120px);
|
|
2241
|
+
}
|
|
2242
|
+
.llm .llm__message {
|
|
2243
|
+
display: flex;
|
|
2244
|
+
flex-direction: column;
|
|
2245
|
+
gap: clamp(24px,
|
|
2246
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (16)),
|
|
2247
|
+
40px);
|
|
2248
|
+
}
|
|
2249
|
+
.llm .llm__message--user:last-child {
|
|
2250
|
+
margin-bottom: 20vh;
|
|
2251
|
+
}
|
|
2252
|
+
.llm .llm__inner:empty {
|
|
2253
|
+
display: none;
|
|
2254
|
+
}
|
|
2255
|
+
.llm .llm__inner--eventGroup {
|
|
2256
|
+
width: 100%;
|
|
2257
|
+
}
|
|
2258
|
+
.llm .llm__inner--tripadvisorGroup {
|
|
2259
|
+
width: 100%;
|
|
2260
|
+
}
|
|
2261
|
+
.llm .llm__message--user .llm__inner--string {
|
|
2262
|
+
margin-left: auto;
|
|
2263
|
+
}
|
|
2264
|
+
.llm .llm__message--assistant .llm__inner--string:not(:first-child) .llm__text-body {
|
|
2265
|
+
line-height: 1;
|
|
2266
|
+
font-family: var(--llm-font-primary);
|
|
2267
|
+
font-weight: 500;
|
|
2268
|
+
line-height: 130%;
|
|
2269
|
+
letter-spacing: 0.02em;
|
|
2270
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (16)), 32px);
|
|
2271
|
+
}
|
|
2272
|
+
.llm .llm__end {
|
|
2273
|
+
height: 0;
|
|
2274
|
+
margin-top: -33px;
|
|
2275
|
+
}
|
|
2276
|
+
|
|
2277
|
+
.llm .llm__tripadv {
|
|
2278
|
+
width: 100%;
|
|
2279
|
+
}
|
|
2280
|
+
.llm .llm__tripadv-inner {
|
|
2281
|
+
width: 100%;
|
|
2282
|
+
display: flex;
|
|
2283
|
+
flex-direction: row;
|
|
2284
|
+
gap: clamp(16px,
|
|
2285
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2286
|
+
24px);
|
|
2287
|
+
padding: clamp(24px,
|
|
2288
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2289
|
+
32px) 0;
|
|
2290
|
+
border-top: 1px solid var(--llm-color-ui-grey-03);
|
|
2291
|
+
position: relative;
|
|
2292
|
+
}
|
|
2293
|
+
.llm .llm__tripadv-media {
|
|
2294
|
+
width: clamp(60px,
|
|
2295
|
+
calc(60px + (100vw - 375px) / (1920 - 375) * (140)),
|
|
2296
|
+
200px);
|
|
2297
|
+
height: clamp(60px,
|
|
2298
|
+
calc(60px + (100vw - 375px) / (1920 - 375) * (140)),
|
|
2299
|
+
200px);
|
|
2300
|
+
position: relative;
|
|
2301
|
+
overflow: hidden;
|
|
2302
|
+
flex-shrink: 0;
|
|
2303
|
+
}
|
|
2304
|
+
.llm .llm__tripadv-media img {
|
|
2305
|
+
display: block;
|
|
2306
|
+
position: absolute;
|
|
2307
|
+
left: 0;
|
|
2308
|
+
top: 0;
|
|
2309
|
+
width: 100%;
|
|
2310
|
+
height: 100%;
|
|
2311
|
+
object-fit: cover;
|
|
2312
|
+
}
|
|
2313
|
+
.llm .llm__tripadv-content {
|
|
2314
|
+
display: flex;
|
|
2315
|
+
flex-direction: column;
|
|
2316
|
+
gap: clamp(8px,
|
|
2317
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2318
|
+
16px);
|
|
2319
|
+
}
|
|
2320
|
+
.llm .llm__tripadv-title {
|
|
2321
|
+
line-height: 1;
|
|
2322
|
+
font-family: var(--llm-font-primary);
|
|
2323
|
+
font-weight: 500;
|
|
2324
|
+
line-height: 130%;
|
|
2325
|
+
letter-spacing: 0.03em;
|
|
2326
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (8)), 24px);
|
|
2327
|
+
}
|
|
2328
|
+
.llm .llm__tripadv-rating {
|
|
2329
|
+
line-height: 1;
|
|
2330
|
+
font-family: var(--llm-font-primary);
|
|
2331
|
+
font-weight: 700;
|
|
2332
|
+
line-height: 120%;
|
|
2333
|
+
letter-spacing: 0.02em;
|
|
2334
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
2335
|
+
display: flex;
|
|
2336
|
+
gap: clamp(8px,
|
|
2337
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
2338
|
+
8px);
|
|
2339
|
+
align-items: center;
|
|
2340
|
+
}
|
|
2341
|
+
.llm .llm__tripadv-dots {
|
|
2342
|
+
width: 88px;
|
|
2343
|
+
height: 16px;
|
|
2344
|
+
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAgCAYAAAB6kdqOAAAERElEQVR42r3YW0/bZhgHcD5CPoJvdzU+Qj5CrjdVdduthU4tEVLVUTEpHCMKLJZallZt6lAg4RwosFSl4K4IMkKSNwkkJsbJ/zWtylS6WZO6g7qxZ84Fu0lGOSR5JF9YPv30f9/Hp7qTlovB1s/i4kBmVfZpS+xxYd4MYoomjQDN7srmU2OAKbt98ipcIoPLVletckX2hI7oK8kdy5ueZJq82Qj5NIUeF8IUwAxN8FGaMfz0veGlZd5Pa7ydYvwmbfEmWYVTqByEwdbN9j0dG/vUFfuJehKcpM2s6c1GJQskynhWLyMkBBEUQpDtc7jvWITHv8K7scFbKY1m2kYj7RhfeM6M8agQ+lNv4E68o+74L+Rm7xQ3e2U/7vERtNqT/IaSwTXS8CXBOA9APF1aD7XIJ3czGvrTb+h28mezm5mOulNWGk4xhwbo/AKBnwPwWf2JTiBDEXy5KCwQfZvag5uZZ54DKhoEjV9GgYsE49zJkhrUl+DT1um77DY8DGfAlKJ0fslCnSdufF5EfbwLRzDbP6Q/p0e5CLwqK8FUApXnl8wiytg9d/REL3ZKAE9oWH9GsvZSrKtS6bjs0HGJYKGOHLogJv1BzFCgEFbqqlwab1R2LFQeolR2hxBCtjE+SaOYpiDm7NUGqXDac7hKujV8ZedSEOPiGJ+gcUyjrka1hWYzh0bScFEsA5rwj/MxmuSTcq1ALH9LysBJGr9aes1xPs6Kz6NJBBy1AkW1dtFCUQZNrGTjhDFmTvEATWDIXivQquapX9c7KVW4aZZJaJSm+DCFIAu1AimqV1jRJNrQXVQmoSBN8yEK1xAUVoPCcs5Ha9rtUtCUETBDfLCYUH2tQCE1bA+ro/RCGygdsmljhM1ymZ7AJ9YKNJZ+6ZjNLtDi9iArBWHQP8d9tIB7Uq1Ag2nmH99SaF4NyaXxQRbn+QNa5HfMWoEepnQMb0ZpKrMklgPZFoz75nMukQJ31Vu/d2PfPpB8TXIqQzJY+deQp7gjLfNeWuOdSrVBPYn3isTe0r0kl/+/DeEVXhg9FOEuiqHFUS1Me/SD2BX/k3oTv5KH7R19m1lBh7TOWymBGyaDU6j85xQJbbF/0Bn/i9yx3z/eQApctpjRghRvpjScUC1UZTEEC0Tt8QMc+0CGr4Utfh1Z/hVlcf0QVSEMUVucYK2f7Jy51xc/3eZXkEMDqbiGTL5ZPDUmRg4LYv6HiVL9Kd/qxOJXAnZwmbJoomShRYnsdNiPDdkgu4VQipCSZM5SOi5IO7hCGTgpnv+GVrV+LOV88lw25BjaXLHLDII3sid0Rd/Xd8U/iG2xA+kwkcPFSklyMarczwdAFNRCo3+z0Ewbehv9oN2l8PYYTWSWyZ9O00Byl/oSJnXH/6CO2N+HELMIKZdKBWFOWzx/S1zL9fmXco/YbGbOHNn8kR6kdJLYW7Mn8RvriB/IriiJp0nkX3VBUwsmMDPkAAAAAElFTkSuQmCC");
|
|
2345
|
+
background-size: 18px 16px;
|
|
2346
|
+
background-position: -1px 0;
|
|
2347
|
+
position: relative;
|
|
2348
|
+
}
|
|
2349
|
+
.llm .llm__tripadv-dots > span {
|
|
2350
|
+
position: absolute;
|
|
2351
|
+
left: 0;
|
|
2352
|
+
top: 0;
|
|
2353
|
+
height: 100%;
|
|
2354
|
+
background-image: url("data:image/png;base64,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");
|
|
2355
|
+
background-size: 18px 16px;
|
|
2356
|
+
background-position: -1px 0;
|
|
2357
|
+
}
|
|
2358
|
+
.llm .llm__tripadv-info {
|
|
2359
|
+
line-height: 1;
|
|
2360
|
+
font-family: var(--llm-font-primary);
|
|
2361
|
+
font-weight: 500;
|
|
2362
|
+
line-height: 150%;
|
|
2363
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
2364
|
+
}
|
|
2365
|
+
.llm .llm__tripadv-icon {
|
|
2366
|
+
position: absolute;
|
|
2367
|
+
right: 0;
|
|
2368
|
+
top: clamp(24px,
|
|
2369
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2370
|
+
32px);
|
|
2371
|
+
width: clamp(24px,
|
|
2372
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2373
|
+
32px);
|
|
2374
|
+
height: clamp(24px,
|
|
2375
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2376
|
+
32px);
|
|
2377
|
+
background: #00aa6c;
|
|
2378
|
+
padding: 2px;
|
|
2379
|
+
border-radius: 4px;
|
|
2380
|
+
}
|
|
2381
|
+
.llm .llm__tripadv-location {
|
|
2382
|
+
line-height: 1;
|
|
2383
|
+
font-family: var(--llm-font-primary);
|
|
2384
|
+
font-weight: 700;
|
|
2385
|
+
line-height: 120%;
|
|
2386
|
+
letter-spacing: 0.02em;
|
|
2387
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
2388
|
+
display: flex;
|
|
2389
|
+
align-items: center;
|
|
2390
|
+
gap: clamp(8px,
|
|
2391
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (0)),
|
|
2392
|
+
8px);
|
|
2393
|
+
}
|
|
2394
|
+
.llm .llm__tripadv-location svg {
|
|
2395
|
+
color: var(--llm-color-ui-4);
|
|
2396
|
+
width: 20px;
|
|
2397
|
+
height: 20px;
|
|
2398
|
+
}
|
|
2399
|
+
.llm .llm__tripadv-ctas {
|
|
2400
|
+
display: flex;
|
|
2401
|
+
gap: clamp(24px,
|
|
2402
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2403
|
+
32px);
|
|
2404
|
+
padding-top: clamp(8px,
|
|
2405
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2406
|
+
16px);
|
|
2407
|
+
margin-top: auto;
|
|
2408
|
+
}
|
|
2409
|
+
@media (min-width: 768px) {
|
|
2410
|
+
.llm .llm__tripadvisor-group {
|
|
2411
|
+
display: flex;
|
|
2412
|
+
flex-wrap: wrap;
|
|
2413
|
+
gap: clamp(24px,
|
|
2414
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2415
|
+
32px);
|
|
2416
|
+
}
|
|
2417
|
+
}
|
|
2418
|
+
@media (min-width: 768px) {
|
|
2419
|
+
.llm .llm__tripadvisor-group .llm__tripadv {
|
|
2420
|
+
width: calc(50% - clamp(24px, calc(24px + (100vw - 375px) / (1920 - 375) * (8)), 32px)/2);
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2423
|
+
|
|
2424
|
+
.llm .llm__canvas {
|
|
2425
|
+
position: absolute;
|
|
2426
|
+
top: 0;
|
|
2427
|
+
left: 0;
|
|
2428
|
+
width: 100%;
|
|
2429
|
+
height: 100%;
|
|
2430
|
+
opacity: 0.6;
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
.llm .llm__subscribe-title {
|
|
2434
|
+
line-height: 1;
|
|
2435
|
+
font-family: var(--llm-font-primary);
|
|
2436
|
+
font-weight: 500;
|
|
2437
|
+
line-height: 130%;
|
|
2438
|
+
letter-spacing: 0.02em;
|
|
2439
|
+
font-size: clamp(24px, calc(24px + (100vw - 375px) / (1920 - 375) * (24)), 48px);
|
|
2440
|
+
margin-bottom: clamp(16px,
|
|
2441
|
+
calc(16px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2442
|
+
24px);
|
|
2443
|
+
}
|
|
2444
|
+
.llm .llm__subscribe-fields {
|
|
2445
|
+
display: flex;
|
|
2446
|
+
flex-direction: column;
|
|
2447
|
+
gap: clamp(24px,
|
|
2448
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2449
|
+
32px);
|
|
2450
|
+
}
|
|
2451
|
+
@media (min-width: 768px) {
|
|
2452
|
+
.llm .llm__subscribe-fields {
|
|
2453
|
+
gap: clamp(8px,
|
|
2454
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2455
|
+
16px);
|
|
2456
|
+
flex-wrap: wrap;
|
|
2457
|
+
flex-direction: row;
|
|
2458
|
+
align-items: center;
|
|
2459
|
+
}
|
|
2460
|
+
}
|
|
2461
|
+
.llm .llm__subscribe-cta {
|
|
2462
|
+
margin: 0 auto;
|
|
2463
|
+
order: 3;
|
|
2464
|
+
}
|
|
2465
|
+
@media (min-width: 768px) {
|
|
2466
|
+
.llm .llm__subscribe-cta {
|
|
2467
|
+
order: 1;
|
|
2468
|
+
margin: 0;
|
|
2469
|
+
}
|
|
2470
|
+
}
|
|
2471
|
+
.llm .llm__subscribe-field {
|
|
2472
|
+
width: 100%;
|
|
2473
|
+
}
|
|
2474
|
+
@media (min-width: 768px) {
|
|
2475
|
+
.llm .llm__subscribe-field {
|
|
2476
|
+
width: auto;
|
|
2477
|
+
min-width: 250px;
|
|
2478
|
+
}
|
|
2479
|
+
}
|
|
2480
|
+
.llm .llm__subscribe-field input[type=text],
|
|
2481
|
+
.llm .llm__subscribe-field input[type=email] {
|
|
2482
|
+
line-height: 1;
|
|
2483
|
+
appearance: none;
|
|
2484
|
+
border-radius: 5px;
|
|
2485
|
+
background: var(--llm-color-ui-white);
|
|
2486
|
+
display: block;
|
|
2487
|
+
height: 56px;
|
|
2488
|
+
padding: 0 clamp(24px,
|
|
2489
|
+
calc(24px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2490
|
+
32px);
|
|
2491
|
+
border: 1px solid var(--llm-color-ui-grey-03);
|
|
2492
|
+
color: var(--llm-color-ui-black);
|
|
2493
|
+
width: 100%;
|
|
2494
|
+
}
|
|
2495
|
+
.llm .llm__subscribe-field.-privacy {
|
|
2496
|
+
width: 100%;
|
|
2497
|
+
order: 99;
|
|
2498
|
+
position: relative;
|
|
2499
|
+
order: 2;
|
|
2500
|
+
}
|
|
2501
|
+
@media (min-width: 768px) {
|
|
2502
|
+
.llm .llm__subscribe-field.-privacy {
|
|
2503
|
+
order: auto;
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
.llm .llm__subscribe-field.-privacy label {
|
|
2507
|
+
line-height: 1;
|
|
2508
|
+
font-family: var(--llm-font-secondary);
|
|
2509
|
+
font-weight: normal;
|
|
2510
|
+
line-height: 150%;
|
|
2511
|
+
font-size: clamp(14px, calc(14px + (100vw - 375px) / (1920 - 375) * (2)), 16px);
|
|
2512
|
+
line-height: 140%;
|
|
2513
|
+
position: relative;
|
|
2514
|
+
display: block;
|
|
2515
|
+
padding-left: 24px;
|
|
2516
|
+
cursor: pointer;
|
|
2517
|
+
}
|
|
2518
|
+
.llm .llm__subscribe-field.-privacy label:before, .llm .llm__subscribe-field.-privacy label:after {
|
|
2519
|
+
content: "";
|
|
2520
|
+
display: block;
|
|
2521
|
+
border-radius: 2px;
|
|
2522
|
+
border: 2px solid var(--llm-color-ui-white);
|
|
2523
|
+
width: 16px;
|
|
2524
|
+
height: 16px;
|
|
2525
|
+
position: absolute;
|
|
2526
|
+
left: 0;
|
|
2527
|
+
top: 2px;
|
|
2528
|
+
}
|
|
2529
|
+
.llm .llm__subscribe-field.-privacy label:after {
|
|
2530
|
+
display: none;
|
|
2531
|
+
background-image: url("data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgMTIgMTIiIHdpZHRoPSIxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJtNC42NjYyNSA5LjUwNTQyLTIuNzYtMi43NiAxLjI1Nzc4LTEuMjU3NzggMS41MDIyMiAxLjUwNjY3IDQuMzkxMTEtNC4zOTU1NiAxLjI1Nzc0IDEuMjU3Nzh6IiBmaWxsPSIjZmZmIi8+PC9zdmc+");
|
|
2532
|
+
background-repeat: no-repeat;
|
|
2533
|
+
background-position: center;
|
|
2534
|
+
}
|
|
2535
|
+
.llm .llm__subscribe-field.-privacy input {
|
|
2536
|
+
position: absolute;
|
|
2537
|
+
opacity: 0;
|
|
2538
|
+
}
|
|
2539
|
+
.llm .llm__subscribe-field.-privacy input:checked + label:after {
|
|
2540
|
+
display: block;
|
|
2541
|
+
}
|
|
2542
|
+
|
|
2543
|
+
.llm .llm__inner--formRequest:not(:first-child) .llm__text-body {
|
|
2544
|
+
line-height: 1;
|
|
2545
|
+
font-family: var(--llm-font-primary);
|
|
2546
|
+
font-weight: 500;
|
|
2547
|
+
line-height: 130%;
|
|
2548
|
+
letter-spacing: 0.02em;
|
|
2549
|
+
font-size: clamp(16px, calc(16px + (100vw - 375px) / (1920 - 375) * (16)), 32px);
|
|
2550
|
+
}
|
|
2551
|
+
.llm .llm__ctas {
|
|
2552
|
+
display: flex;
|
|
2553
|
+
flex-wrap: wrap;
|
|
2554
|
+
align-items: center;
|
|
2555
|
+
gap: clamp(8px,
|
|
2556
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2557
|
+
16px);
|
|
2558
|
+
margin-top: clamp(8px,
|
|
2559
|
+
calc(8px + (100vw - 375px) / (1920 - 375) * (8)),
|
|
2560
|
+
16px);
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
@keyframes llmBouncing {
|
|
2564
|
+
from {
|
|
2565
|
+
transform: translateY(0) scaleY(0.8);
|
|
2566
|
+
}
|
|
2567
|
+
to {
|
|
2568
|
+
transform: translateY(-10px);
|
|
2569
|
+
}
|
|
2570
|
+
}
|
|
2571
|
+
.llm .llm__busyIndicator {
|
|
2572
|
+
position: absolute;
|
|
2573
|
+
display: block;
|
|
2574
|
+
width: 40px;
|
|
2575
|
+
height: 30px;
|
|
2576
|
+
left: 10px;
|
|
2577
|
+
bottom: -50px;
|
|
2578
|
+
user-select: none;
|
|
2579
|
+
pointer-events: none;
|
|
2580
|
+
transition: none;
|
|
2581
|
+
}
|
|
2582
|
+
.llm .llm__busyIndicator::before {
|
|
2583
|
+
content: "";
|
|
2584
|
+
position: absolute;
|
|
2585
|
+
top: 50%;
|
|
2586
|
+
left: 50%;
|
|
2587
|
+
display: block;
|
|
2588
|
+
border-radius: 50%;
|
|
2589
|
+
background: var(--llm-color-ui-white);
|
|
2590
|
+
transform: translate(-50%, -50%);
|
|
2591
|
+
z-index: 2;
|
|
2592
|
+
width: 5px;
|
|
2593
|
+
height: 5px;
|
|
2594
|
+
margin-top: 5px;
|
|
2595
|
+
margin-left: -2.5px;
|
|
2596
|
+
animation: llmBouncing 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
|
|
2597
|
+
animation-delay: 0.2s;
|
|
2598
|
+
}
|
|
2599
|
+
.llm .llm__busyIndicator > span::before, .llm .llm__busyIndicator > span::after {
|
|
2600
|
+
content: "";
|
|
2601
|
+
position: absolute;
|
|
2602
|
+
top: 50%;
|
|
2603
|
+
left: 50%;
|
|
2604
|
+
display: block;
|
|
2605
|
+
border-radius: 50%;
|
|
2606
|
+
background: var(--llm-color-ui-white);
|
|
2607
|
+
transform: translate(-50%, -50%);
|
|
2608
|
+
z-index: 2;
|
|
2609
|
+
width: 5px;
|
|
2610
|
+
height: 5px;
|
|
2611
|
+
margin-top: 5px;
|
|
2612
|
+
margin-left: -2.5px;
|
|
2613
|
+
animation: llmBouncing 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
|
|
2614
|
+
}
|
|
2615
|
+
.llm .llm__busyIndicator > span::before {
|
|
2616
|
+
margin-left: -14px;
|
|
2617
|
+
}
|
|
2618
|
+
.llm .llm__busyIndicator > span::after {
|
|
2619
|
+
margin-left: 9px;
|
|
2620
|
+
animation-delay: 0.4s;
|
|
2621
|
+
}
|
|
2622
|
+
|
|
2623
|
+
/**
|
|
2624
|
+
* Swiper 8.4.7
|
|
2625
|
+
* Most modern mobile touch slider and framework with hardware accelerated transitions
|
|
2626
|
+
* https://swiperjs.com
|
|
2627
|
+
*
|
|
2628
|
+
* Copyright 2014-2023 Vladimir Kharlampidi
|
|
2629
|
+
*
|
|
2630
|
+
* Released under the MIT License
|
|
2631
|
+
*
|
|
2632
|
+
* Released on: January 30, 2023
|
|
2633
|
+
*/
|
|
2634
|
+
@font-face {
|
|
2635
|
+
font-family: swiper-icons;
|
|
2636
|
+
src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
|
|
2637
|
+
font-weight: 400;
|
|
2638
|
+
font-style: normal;
|
|
2639
|
+
}
|
|
2640
|
+
:root {
|
|
2641
|
+
--swiper-theme-color:#007aff;
|
|
2642
|
+
}
|
|
2643
|
+
|
|
2644
|
+
.swiper {
|
|
2645
|
+
margin-left: auto;
|
|
2646
|
+
margin-right: auto;
|
|
2647
|
+
position: relative;
|
|
2648
|
+
overflow: hidden;
|
|
2649
|
+
list-style: none;
|
|
2650
|
+
padding: 0;
|
|
2651
|
+
z-index: 1;
|
|
2652
|
+
}
|
|
2653
|
+
|
|
2654
|
+
.swiper-vertical > .swiper-wrapper {
|
|
2655
|
+
flex-direction: column;
|
|
2656
|
+
}
|
|
2657
|
+
|
|
2658
|
+
.swiper-wrapper {
|
|
2659
|
+
position: relative;
|
|
2660
|
+
width: 100%;
|
|
2661
|
+
height: 100%;
|
|
2662
|
+
z-index: 1;
|
|
2663
|
+
display: flex;
|
|
2664
|
+
transition-property: transform;
|
|
2665
|
+
box-sizing: content-box;
|
|
2666
|
+
}
|
|
2667
|
+
|
|
2668
|
+
.swiper-android .swiper-slide, .swiper-wrapper {
|
|
2669
|
+
transform: translate3d(0px, 0, 0);
|
|
2670
|
+
}
|
|
2671
|
+
|
|
2672
|
+
.swiper-pointer-events {
|
|
2673
|
+
touch-action: pan-y;
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2676
|
+
.swiper-pointer-events.swiper-vertical {
|
|
2677
|
+
touch-action: pan-x;
|
|
2678
|
+
}
|
|
2679
|
+
|
|
2680
|
+
.swiper-slide {
|
|
2681
|
+
flex-shrink: 0;
|
|
2682
|
+
width: 100%;
|
|
2683
|
+
height: 100%;
|
|
2684
|
+
position: relative;
|
|
2685
|
+
transition-property: transform;
|
|
2686
|
+
}
|
|
2687
|
+
|
|
2688
|
+
.swiper-slide-invisible-blank {
|
|
2689
|
+
visibility: hidden;
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
.swiper-autoheight, .swiper-autoheight .swiper-slide {
|
|
2693
|
+
height: auto;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
.swiper-autoheight .swiper-wrapper {
|
|
2697
|
+
align-items: flex-start;
|
|
2698
|
+
transition-property: transform, height;
|
|
2699
|
+
}
|
|
2700
|
+
|
|
2701
|
+
.swiper-backface-hidden .swiper-slide {
|
|
2702
|
+
transform: translateZ(0);
|
|
2703
|
+
-webkit-backface-visibility: hidden;
|
|
2704
|
+
backface-visibility: hidden;
|
|
2705
|
+
}
|
|
2706
|
+
|
|
2707
|
+
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
|
|
2708
|
+
perspective: 1200px;
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
|
|
2712
|
+
transform-style: preserve-3d;
|
|
2713
|
+
}
|
|
2714
|
+
|
|
2715
|
+
.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
|
|
2716
|
+
position: absolute;
|
|
2717
|
+
left: 0;
|
|
2718
|
+
top: 0;
|
|
2719
|
+
width: 100%;
|
|
2720
|
+
height: 100%;
|
|
2721
|
+
pointer-events: none;
|
|
2722
|
+
z-index: 10;
|
|
2723
|
+
}
|
|
2724
|
+
|
|
2725
|
+
.swiper-3d .swiper-slide-shadow {
|
|
2726
|
+
background: rgba(0, 0, 0, 0.15);
|
|
2727
|
+
}
|
|
2728
|
+
|
|
2729
|
+
.swiper-3d .swiper-slide-shadow-left {
|
|
2730
|
+
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
2731
|
+
}
|
|
2732
|
+
|
|
2733
|
+
.swiper-3d .swiper-slide-shadow-right {
|
|
2734
|
+
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
2735
|
+
}
|
|
2736
|
+
|
|
2737
|
+
.swiper-3d .swiper-slide-shadow-top {
|
|
2738
|
+
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
.swiper-3d .swiper-slide-shadow-bottom {
|
|
2742
|
+
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
|
|
2743
|
+
}
|
|
2744
|
+
|
|
2745
|
+
.swiper-css-mode > .swiper-wrapper {
|
|
2746
|
+
overflow: auto;
|
|
2747
|
+
scrollbar-width: none;
|
|
2748
|
+
-ms-overflow-style: none;
|
|
2749
|
+
}
|
|
2750
|
+
|
|
2751
|
+
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
|
|
2752
|
+
display: none;
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
|
|
2756
|
+
scroll-snap-align: start start;
|
|
2757
|
+
}
|
|
2758
|
+
|
|
2759
|
+
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
|
|
2760
|
+
scroll-snap-type: x mandatory;
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2763
|
+
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
|
|
2764
|
+
scroll-snap-type: y mandatory;
|
|
2765
|
+
}
|
|
2766
|
+
|
|
2767
|
+
.swiper-centered > .swiper-wrapper::before {
|
|
2768
|
+
content: "";
|
|
2769
|
+
flex-shrink: 0;
|
|
2770
|
+
order: 9999;
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2773
|
+
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
|
|
2774
|
+
margin-inline-start: var(--swiper-centered-offset-before);
|
|
2775
|
+
}
|
|
2776
|
+
|
|
2777
|
+
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
|
|
2778
|
+
height: 100%;
|
|
2779
|
+
min-height: 1px;
|
|
2780
|
+
width: var(--swiper-centered-offset-after);
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
|
|
2784
|
+
margin-block-start: var(--swiper-centered-offset-before);
|
|
2785
|
+
}
|
|
2786
|
+
|
|
2787
|
+
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
|
|
2788
|
+
width: 100%;
|
|
2789
|
+
min-width: 1px;
|
|
2790
|
+
height: var(--swiper-centered-offset-after);
|
|
2791
|
+
}
|
|
2792
|
+
|
|
2793
|
+
.swiper-centered > .swiper-wrapper > .swiper-slide {
|
|
2794
|
+
scroll-snap-align: center center;
|
|
2795
|
+
scroll-snap-stop: always;
|
|
2796
|
+
}
|