@hotelcard/ui 0.0.21 → 0.0.22
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.
Potentially problematic release.
This version of @hotelcard/ui might be problematic. Click here for more details.
- package/dist/index.cjs +2 -4684
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +1 -3475
- package/dist/index.d.ts +2714 -2559
- package/dist/index.js +5441 -3716
- package/dist/index.js.map +1 -1
- package/package.json +17 -17
- package/dist/index.css.map +0 -1
- package/dist/index.d.cts +0 -2559
package/dist/index.css
CHANGED
|
@@ -1,3475 +1 @@
|
|
|
1
|
-
/* src/components/Button/Button.css */
|
|
2
|
-
.hc-btn-button {
|
|
3
|
-
display: inline-flex;
|
|
4
|
-
align-items: center;
|
|
5
|
-
justify-content: center;
|
|
6
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
7
|
-
cursor: pointer;
|
|
8
|
-
}
|
|
9
|
-
.hc-btn-button:disabled {
|
|
10
|
-
cursor: not-allowed;
|
|
11
|
-
}
|
|
12
|
-
.hc-btn-standard {
|
|
13
|
-
border-radius: var(--radius-full, 9999px);
|
|
14
|
-
}
|
|
15
|
-
.hc-btn-standard.hc-btn-medium {
|
|
16
|
-
padding: var(--size-rem-0-75, 12px) var(--size-rem-1-5, 24px);
|
|
17
|
-
gap: var(--size-rem-0-5, 8px);
|
|
18
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
19
|
-
font-family: var(--text-label-large-font-family, inherit);
|
|
20
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
21
|
-
font-style: normal;
|
|
22
|
-
font-weight: 500;
|
|
23
|
-
line-height: var(--text-label-large-line-height, 28px);
|
|
24
|
-
}
|
|
25
|
-
.hc-btn-standard.hc-btn-small {
|
|
26
|
-
padding: var(--size-rem-0-75, 12px) var(--size-rem-1-5, 24px);
|
|
27
|
-
gap: var(--size-rem-0-5, 8px);
|
|
28
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
29
|
-
line-height: var(--text-label-medium-line-height, 24px);
|
|
30
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
31
|
-
min-width: 136px;
|
|
32
|
-
height: 44px;
|
|
33
|
-
white-space: nowrap;
|
|
34
|
-
}
|
|
35
|
-
.hc-btn-standard.hc-btn-primary {
|
|
36
|
-
border: none;
|
|
37
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
38
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
39
|
-
}
|
|
40
|
-
.hc-btn-standard.hc-btn-primary:hover:not(:disabled) {
|
|
41
|
-
background-color: var(--background-action-primary-hover, #a3183d);
|
|
42
|
-
}
|
|
43
|
-
.hc-btn-standard.hc-btn-primary:active:not(:disabled) {
|
|
44
|
-
background-color: var(--background-action-primary-active, #8a1434);
|
|
45
|
-
}
|
|
46
|
-
.hc-btn-standard.hc-btn-primary:focus:not(:disabled) {
|
|
47
|
-
box-shadow: 0 0 0 2px var(--misc-focus, rgba(200, 30, 76, 0.5)), 0 0 16px 4px var(--misc-focus, rgba(200, 30, 76, 0.3));
|
|
48
|
-
}
|
|
49
|
-
.hc-btn-standard.hc-btn-primary:disabled {
|
|
50
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
51
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
52
|
-
}
|
|
53
|
-
.hc-btn-standard.hc-btn-secondary {
|
|
54
|
-
background-color: var(--background-action-secondary-idle, #ffffff);
|
|
55
|
-
color: var(--content-action-secondary-idle, #374151);
|
|
56
|
-
border: var(--size-rem-0-125, 2px) solid var(--border-action-secondary-idle, #D1D5DB);
|
|
57
|
-
}
|
|
58
|
-
.hc-btn-standard.hc-btn-secondary:hover:not(:disabled) {
|
|
59
|
-
background-color: var(--background-action-secondary-hover, #F9FAFB);
|
|
60
|
-
color: var(--content-action-secondary-hover, #1F2937);
|
|
61
|
-
border-color: var(--border-action-secondary-hover, #9CA3AF);
|
|
62
|
-
}
|
|
63
|
-
.hc-btn-standard.hc-btn-secondary:active:not(:disabled) {
|
|
64
|
-
background-color: var(--background-action-secondary-active, #F3F4F6);
|
|
65
|
-
color: var(--content-action-secondary-active, #111827);
|
|
66
|
-
border-color: var(--border-action-secondary-active, #6B7280);
|
|
67
|
-
}
|
|
68
|
-
.hc-btn-standard.hc-btn-secondary:disabled {
|
|
69
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
70
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
71
|
-
border: none;
|
|
72
|
-
}
|
|
73
|
-
.hc-btn-link {
|
|
74
|
-
text-decoration: underline;
|
|
75
|
-
gap: var(--size-rem-0-5, 8px);
|
|
76
|
-
padding: var(--size-rem-0, 0);
|
|
77
|
-
background: transparent;
|
|
78
|
-
border: none;
|
|
79
|
-
color: var(--content-action-link-idle, #2563EB);
|
|
80
|
-
}
|
|
81
|
-
.hc-btn-link:hover:not(:disabled) {
|
|
82
|
-
color: var(--content-action-link-hover, #1D4ED8);
|
|
83
|
-
}
|
|
84
|
-
.hc-btn-link:active:not(:disabled) {
|
|
85
|
-
color: var(--content-action-link-active, #1E40AF);
|
|
86
|
-
}
|
|
87
|
-
.hc-btn-link:focus:not(:disabled) {
|
|
88
|
-
background-color: var(--background-action-highlight-idle-light, #EFF6FF);
|
|
89
|
-
}
|
|
90
|
-
.hc-btn-link:disabled {
|
|
91
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
92
|
-
}
|
|
93
|
-
.hc-btn-link.hc-btn-medium {
|
|
94
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
95
|
-
line-height: var(--text-label-large-line-height, 28px);
|
|
96
|
-
font-weight: var(--text-label-large-font-weight, 500);
|
|
97
|
-
}
|
|
98
|
-
.hc-btn-link.hc-btn-small {
|
|
99
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
100
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
101
|
-
font-weight: var(--text-label-small-font-weight, 500);
|
|
102
|
-
}
|
|
103
|
-
.hc-btn-icon-only {
|
|
104
|
-
padding: var(--size-rem-0, 0);
|
|
105
|
-
border-radius: var(--radius-full, 9999px);
|
|
106
|
-
}
|
|
107
|
-
.hc-btn-icon-only.hc-btn-medium {
|
|
108
|
-
width: var(--size-rem-3-75, 60px);
|
|
109
|
-
height: var(--size-rem-3-75, 60px);
|
|
110
|
-
}
|
|
111
|
-
.hc-btn-icon-only.hc-btn-small {
|
|
112
|
-
width: var(--size-rem-2-75, 44px);
|
|
113
|
-
height: var(--size-rem-2-75, 44px);
|
|
114
|
-
}
|
|
115
|
-
.hc-btn-icon-only.hc-btn-primary {
|
|
116
|
-
border: none;
|
|
117
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
118
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
119
|
-
}
|
|
120
|
-
.hc-btn-icon-only.hc-btn-primary:hover:not(:disabled) {
|
|
121
|
-
background-color: var(--background-action-primary-hover, #a3183d);
|
|
122
|
-
}
|
|
123
|
-
.hc-btn-icon-only.hc-btn-primary:active:not(:disabled) {
|
|
124
|
-
background-color: var(--background-action-primary-active, #8a1434);
|
|
125
|
-
}
|
|
126
|
-
.hc-btn-icon-only.hc-btn-primary:focus:not(:disabled) {
|
|
127
|
-
box-shadow: 0 0 0 2px var(--misc-focus, rgba(200, 30, 76, 0.5)), 0 0 16px 4px var(--misc-focus, rgba(200, 30, 76, 0.3));
|
|
128
|
-
}
|
|
129
|
-
.hc-btn-icon-only.hc-btn-primary:disabled {
|
|
130
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
131
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
132
|
-
}
|
|
133
|
-
.hc-btn-icon-only.hc-btn-secondary {
|
|
134
|
-
color: var(--content-action-secondary-idle, #374151);
|
|
135
|
-
border-radius: 9999px;
|
|
136
|
-
border: 2px solid var(--border-action-secondary-idle, #D1D5DB);
|
|
137
|
-
background: var(--background-action-secondary-idle, #ffffff);
|
|
138
|
-
}
|
|
139
|
-
.hc-btn-icon-only.hc-btn-secondary:hover:not(:disabled) {
|
|
140
|
-
background-color: var(--background-action-secondary-hover, #F9FAFB);
|
|
141
|
-
color: var(--content-action-secondary-hover, #1F2937);
|
|
142
|
-
border-color: var(--border-action-secondary-hover, #9CA3AF);
|
|
143
|
-
}
|
|
144
|
-
.hc-btn-icon-only.hc-btn-secondary:active:not(:disabled) {
|
|
145
|
-
background-color: var(--background-action-secondary-active, #F3F4F6);
|
|
146
|
-
color: var(--content-action-secondary-active, #111827);
|
|
147
|
-
border-color: var(--border-action-secondary-active, #6B7280);
|
|
148
|
-
}
|
|
149
|
-
.hc-btn-icon-only.hc-btn-secondary:disabled {
|
|
150
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
151
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
152
|
-
border: none;
|
|
153
|
-
}
|
|
154
|
-
.hc-btn-icon-wrapper {
|
|
155
|
-
width: var(--size-rem-1-5, 24px);
|
|
156
|
-
height: var(--size-rem-1-5, 24px);
|
|
157
|
-
position: relative;
|
|
158
|
-
overflow: inherit;
|
|
159
|
-
display: flex;
|
|
160
|
-
align-items: center;
|
|
161
|
-
justify-content: center;
|
|
162
|
-
}
|
|
163
|
-
.hc-btn-text-wrapper {
|
|
164
|
-
justify-content: flex-start;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
/* src/components/Badge/Badge.css */
|
|
168
|
-
.hc-badge-badge {
|
|
169
|
-
display: inline-flex;
|
|
170
|
-
align-items: center;
|
|
171
|
-
justify-content: center;
|
|
172
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
173
|
-
border-radius: var(--radius-full, 9999px);
|
|
174
|
-
font-weight: var(--font-weight-medium, 500);
|
|
175
|
-
}
|
|
176
|
-
.hc-badge-badge--large {
|
|
177
|
-
min-width: var(--size-rem-2-25, 36px);
|
|
178
|
-
padding-left: var(--size-rem-1, 16px);
|
|
179
|
-
padding-right: var(--size-rem-1, 16px);
|
|
180
|
-
padding-top: var(--size-rem-0-5, 8px);
|
|
181
|
-
padding-bottom: var(--size-rem-0-5, 8px);
|
|
182
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
183
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
184
|
-
gap: var(--size-rem-0-375, 6px);
|
|
185
|
-
}
|
|
186
|
-
.hc-badge-badge--small {
|
|
187
|
-
min-width: var(--size-rem-1-75, 28px);
|
|
188
|
-
padding-left: var(--size-rem-0-625, 10px);
|
|
189
|
-
padding-right: var(--size-rem-0-625, 10px);
|
|
190
|
-
padding-top: var(--size-rem-0-25, 4px);
|
|
191
|
-
padding-bottom: var(--size-rem-0-25, 4px);
|
|
192
|
-
gap: var(--size-rem-0-25, 4px);
|
|
193
|
-
text-align: center;
|
|
194
|
-
font-family: var(--text-label-small-font-family, inherit);
|
|
195
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
196
|
-
font-style: normal;
|
|
197
|
-
font-weight: 500;
|
|
198
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
199
|
-
}
|
|
200
|
-
.hc-badge-badge--primaryHeavy {
|
|
201
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
202
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
203
|
-
}
|
|
204
|
-
.hc-badge-badge--primaryLight {
|
|
205
|
-
background-color: var(--background-status-error-idle-light, #FEF2F2);
|
|
206
|
-
color: var(--content-status-error-idle, #DC2626);
|
|
207
|
-
}
|
|
208
|
-
.hc-badge-badge--secondaryHeavy {
|
|
209
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
210
|
-
color: var(--content-general-primary, #1F2937);
|
|
211
|
-
}
|
|
212
|
-
.hc-badge-badge--secondaryLight {
|
|
213
|
-
background-color: var(--background-status-info-idle-light, #EFF6FF);
|
|
214
|
-
color: var(--content-status-info-idle, #2563EB);
|
|
215
|
-
}
|
|
216
|
-
.hc-badge-badge--neutralHeavy {
|
|
217
|
-
background-color: var(--background-general-inverse-primary, #1F2937);
|
|
218
|
-
color: var(--content-general-inverse-primary, #ffffff);
|
|
219
|
-
}
|
|
220
|
-
.hc-badge-badge--neutralLight {
|
|
221
|
-
background-color: var(--background-general-secondary-light, #F9FAFB);
|
|
222
|
-
color: var(--content-general-primary, #1F2937);
|
|
223
|
-
}
|
|
224
|
-
.hc-badge-badge--successHeavy {
|
|
225
|
-
background-color: var(--color-green-500, #22C55E);
|
|
226
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
227
|
-
}
|
|
228
|
-
.hc-badge-badge--successLight {
|
|
229
|
-
background-color: var(--background-status-success-idle, #ECFDF5);
|
|
230
|
-
color: var(--content-status-success-idle, #006962);
|
|
231
|
-
}
|
|
232
|
-
.hc-badge-badge--warningHeavy {
|
|
233
|
-
background-color: var(--color-yellow-500, #EAB308);
|
|
234
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
235
|
-
}
|
|
236
|
-
.hc-badge-badge--warningLight {
|
|
237
|
-
background-color: var(--background-status-warning-idle, #FFFBEB);
|
|
238
|
-
color: var(--content-status-warning-idle, #D97706);
|
|
239
|
-
}
|
|
240
|
-
.hc-badge-icon {
|
|
241
|
-
position: relative;
|
|
242
|
-
overflow: hidden;
|
|
243
|
-
}
|
|
244
|
-
.hc-badge-icon--large {
|
|
245
|
-
width: var(--size-rem-1-5, 24px);
|
|
246
|
-
height: var(--size-rem-1-5, 24px);
|
|
247
|
-
}
|
|
248
|
-
.hc-badge-icon--small {
|
|
249
|
-
width: var(--size-rem-1, 16px);
|
|
250
|
-
height: var(--size-rem-1, 16px);
|
|
251
|
-
}
|
|
252
|
-
.hc-badge-text {
|
|
253
|
-
text-align: center;
|
|
254
|
-
justify-content: center;
|
|
255
|
-
display: flex;
|
|
256
|
-
align-items: center;
|
|
257
|
-
gap: 4px;
|
|
258
|
-
}
|
|
259
|
-
.hc-badge-text--largeWithIcon {
|
|
260
|
-
flex: 1;
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
/* src/components/Rating/Rating.css */
|
|
264
|
-
.hc-rating-starsContainer {
|
|
265
|
-
display: inline-flex;
|
|
266
|
-
align-items: center;
|
|
267
|
-
gap: var(--size-rem-0-5, 8px);
|
|
268
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
269
|
-
}
|
|
270
|
-
.hc-rating-starContainer {
|
|
271
|
-
height: var(--size-rem-1-5, 24px);
|
|
272
|
-
display: flex;
|
|
273
|
-
align-items: center;
|
|
274
|
-
}
|
|
275
|
-
.hc-rating-valueDisplay {
|
|
276
|
-
color: var(--content-general-primary, #1F2937);
|
|
277
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
278
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
279
|
-
}
|
|
280
|
-
.hc-rating-resultContainer {
|
|
281
|
-
display: inline-flex;
|
|
282
|
-
align-items: center;
|
|
283
|
-
gap: var(--size-rem-0-5, 8px);
|
|
284
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
285
|
-
}
|
|
286
|
-
.hc-rating-resultChar {
|
|
287
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
288
|
-
font-weight: var(--text-label-large-font-weight, 500);
|
|
289
|
-
color: var(--content-general-primary, #1F2937);
|
|
290
|
-
}
|
|
291
|
-
.hc-rating-blockContainer {
|
|
292
|
-
display: flex;
|
|
293
|
-
flex-direction: column;
|
|
294
|
-
gap: var(--size-rem-1, 16px);
|
|
295
|
-
padding: var(--size-rem-1-5, 24px);
|
|
296
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
297
|
-
border-radius: var(--radius-lg, 12px);
|
|
298
|
-
border: 1px solid var(--border-general-divider, #D1D5DB);
|
|
299
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
300
|
-
max-width: 600px;
|
|
301
|
-
}
|
|
302
|
-
.hc-rating-blockHeader {
|
|
303
|
-
display: flex;
|
|
304
|
-
justify-content: space-between;
|
|
305
|
-
align-items: center;
|
|
306
|
-
}
|
|
307
|
-
.hc-rating-blockHeaderLeft {
|
|
308
|
-
display: flex;
|
|
309
|
-
flex-direction: column;
|
|
310
|
-
gap: var(--size-rem-0-25, 4px);
|
|
311
|
-
}
|
|
312
|
-
.hc-rating-blockName {
|
|
313
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
314
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
315
|
-
color: var(--content-general-primary, #1F2937);
|
|
316
|
-
}
|
|
317
|
-
.hc-rating-blockDate {
|
|
318
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
319
|
-
font-weight: var(--text-label-small-font-weight, 500);
|
|
320
|
-
color: var(--content-general-secondary, #6B7280);
|
|
321
|
-
}
|
|
322
|
-
.hc-rating-blockQuote {
|
|
323
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
324
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
325
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
326
|
-
color: var(--content-general-primary, #1F2937);
|
|
327
|
-
margin: 0;
|
|
328
|
-
}
|
|
329
|
-
.hc-rating-star {
|
|
330
|
-
display: inline-flex;
|
|
331
|
-
align-items: center;
|
|
332
|
-
justify-content: center;
|
|
333
|
-
margin-right: var(--size-rem-0-25, 4px);
|
|
334
|
-
}
|
|
335
|
-
.hc-rating-star:last-child {
|
|
336
|
-
margin-right: 0;
|
|
337
|
-
}
|
|
338
|
-
.hc-rating-star--small {
|
|
339
|
-
width: 16px;
|
|
340
|
-
height: 16px;
|
|
341
|
-
}
|
|
342
|
-
.hc-rating-star--small svg {
|
|
343
|
-
width: 16px;
|
|
344
|
-
height: 16px;
|
|
345
|
-
}
|
|
346
|
-
.hc-rating-star--medium {
|
|
347
|
-
width: 20px;
|
|
348
|
-
height: 20px;
|
|
349
|
-
}
|
|
350
|
-
.hc-rating-star--medium svg {
|
|
351
|
-
width: 20px;
|
|
352
|
-
height: 20px;
|
|
353
|
-
}
|
|
354
|
-
.hc-rating-star--large {
|
|
355
|
-
width: 24px;
|
|
356
|
-
height: 24px;
|
|
357
|
-
}
|
|
358
|
-
.hc-rating-star--large svg {
|
|
359
|
-
width: 24px;
|
|
360
|
-
height: 24px;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
/* src/components/Divider/Divider.css */
|
|
364
|
-
.hc-divider-container {
|
|
365
|
-
display: flex;
|
|
366
|
-
align-items: center;
|
|
367
|
-
}
|
|
368
|
-
.hc-divider-container--horizontal {
|
|
369
|
-
width: 100%;
|
|
370
|
-
height: auto;
|
|
371
|
-
flex-direction: row;
|
|
372
|
-
gap: var(--layout-comp-2-gap, 8px);
|
|
373
|
-
}
|
|
374
|
-
.hc-divider-container--vertical {
|
|
375
|
-
width: auto;
|
|
376
|
-
height: 100%;
|
|
377
|
-
flex-direction: column;
|
|
378
|
-
gap: var(--layout-comp-2-gap, 8px);
|
|
379
|
-
}
|
|
380
|
-
.hc-divider-line--horizontal {
|
|
381
|
-
flex: 1;
|
|
382
|
-
height: 1px;
|
|
383
|
-
width: 100%;
|
|
384
|
-
border: none;
|
|
385
|
-
background-color: var(--border-general-divider, #D1D5DB);
|
|
386
|
-
}
|
|
387
|
-
.hc-divider-line--vertical {
|
|
388
|
-
flex: 1;
|
|
389
|
-
width: 1px;
|
|
390
|
-
height: 100%;
|
|
391
|
-
border: none;
|
|
392
|
-
background-color: var(--border-general-divider, #D1D5DB);
|
|
393
|
-
}
|
|
394
|
-
.hc-divider-lineStandalone--horizontal {
|
|
395
|
-
flex: none;
|
|
396
|
-
height: 1px;
|
|
397
|
-
width: 100%;
|
|
398
|
-
border: none;
|
|
399
|
-
background-color: var(--border-general-divider, #D1D5DB);
|
|
400
|
-
}
|
|
401
|
-
.hc-divider-lineStandalone--vertical {
|
|
402
|
-
flex: none;
|
|
403
|
-
width: 1px;
|
|
404
|
-
height: 100%;
|
|
405
|
-
border: none;
|
|
406
|
-
background-color: var(--border-general-divider, #D1D5DB);
|
|
407
|
-
}
|
|
408
|
-
.hc-divider-label {
|
|
409
|
-
color: var(--content-general-secondary, #6B7280);
|
|
410
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
411
|
-
line-height: var(--text-label-medium-line-height, 24px);
|
|
412
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
413
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
414
|
-
flex-shrink: 0;
|
|
415
|
-
padding: 0;
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
/* src/components/Chip/Chip.css */
|
|
419
|
-
.hc-chip-chip {
|
|
420
|
-
display: inline-flex;
|
|
421
|
-
align-items: center;
|
|
422
|
-
justify-content: center;
|
|
423
|
-
border-radius: var(--radius-full, 9999px);
|
|
424
|
-
cursor: pointer;
|
|
425
|
-
transition: all 0.15s ease;
|
|
426
|
-
border: none;
|
|
427
|
-
background: none;
|
|
428
|
-
padding: 0;
|
|
429
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
430
|
-
}
|
|
431
|
-
.hc-chip-chip:focus {
|
|
432
|
-
outline: none;
|
|
433
|
-
}
|
|
434
|
-
.hc-chip-chip:focus-visible {
|
|
435
|
-
box-shadow: 0 0 0 2px rgba(52, 116, 218, 0.3);
|
|
436
|
-
}
|
|
437
|
-
.hc-chip-chip--medium {
|
|
438
|
-
padding: var(--size-rem-0-5, 8px) var(--size-rem-0-5, 8px) var(--size-rem-0-5, 8px) var(--size-rem-1, 16px);
|
|
439
|
-
gap: var(--size-rem-0-5, 8px);
|
|
440
|
-
}
|
|
441
|
-
.hc-chip-chip--small {
|
|
442
|
-
padding: var(--size-rem-0-25, 4px) var(--size-rem-0-25, 4px) var(--size-rem-0-25, 4px) var(--size-rem-1, 16px);
|
|
443
|
-
gap: 6px;
|
|
444
|
-
}
|
|
445
|
-
.hc-chip-chip--idle {
|
|
446
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
447
|
-
border: 2px solid var(--border-general-divider, #D1D5DB);
|
|
448
|
-
}
|
|
449
|
-
.hc-chip-chip--idle:hover {
|
|
450
|
-
border-color: var(--border-general-tertiary, #9CA3AF);
|
|
451
|
-
background-color: var(--background-general-secondary-light, #F9FAFB);
|
|
452
|
-
}
|
|
453
|
-
.hc-chip-chip--active {
|
|
454
|
-
background-color: var(--background-action-highlight-idle, #2563EB);
|
|
455
|
-
}
|
|
456
|
-
.hc-chip-chip--active:hover {
|
|
457
|
-
background-color: var(--background-action-highlight-hover, #1D4ED8);
|
|
458
|
-
}
|
|
459
|
-
.hc-chip-chip--disabled {
|
|
460
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
461
|
-
cursor: not-allowed;
|
|
462
|
-
}
|
|
463
|
-
.hc-chip-label {
|
|
464
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
465
|
-
font-weight: var(--font-weight-medium, 500);
|
|
466
|
-
white-space: nowrap;
|
|
467
|
-
text-align: center;
|
|
468
|
-
}
|
|
469
|
-
.hc-chip-label--medium {
|
|
470
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
471
|
-
line-height: var(--text-label-medium-line-height, 24px);
|
|
472
|
-
}
|
|
473
|
-
.hc-chip-label--small {
|
|
474
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
475
|
-
line-height: var(--text-label-medium-line-height, 24px);
|
|
476
|
-
}
|
|
477
|
-
.hc-chip-chip--idle .hc-chip-label {
|
|
478
|
-
color: var(--content-general-primary, #1F2937);
|
|
479
|
-
}
|
|
480
|
-
.hc-chip-chip--active .hc-chip-label {
|
|
481
|
-
color: var(--content-action-highlight-inverse-idle, #ffffff);
|
|
482
|
-
}
|
|
483
|
-
.hc-chip-chip--disabled .hc-chip-label {
|
|
484
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
485
|
-
}
|
|
486
|
-
.hc-chip-countBadge {
|
|
487
|
-
display: flex;
|
|
488
|
-
align-items: center;
|
|
489
|
-
justify-content: center;
|
|
490
|
-
padding: 0 var(--size-rem-0-5, 8px);
|
|
491
|
-
border-radius: var(--radius-full, 9999px);
|
|
492
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
493
|
-
font-weight: var(--font-weight-medium, 500);
|
|
494
|
-
white-space: nowrap;
|
|
495
|
-
text-align: center;
|
|
496
|
-
}
|
|
497
|
-
.hc-chip-countBadge--medium {
|
|
498
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
499
|
-
line-height: var(--text-label-large-line-height, 28px);
|
|
500
|
-
}
|
|
501
|
-
.hc-chip-countBadge--small {
|
|
502
|
-
font-size: var(--text-label-medium-font-size, 16px);
|
|
503
|
-
line-height: var(--text-label-medium-line-height, 24px);
|
|
504
|
-
}
|
|
505
|
-
.hc-chip-chip--idle .hc-chip-countBadge {
|
|
506
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
507
|
-
color: var(--content-general-primary, #1F2937);
|
|
508
|
-
}
|
|
509
|
-
.hc-chip-chip--active .hc-chip-countBadge {
|
|
510
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
511
|
-
color: var(--content-action-highlight-idle, #2563EB);
|
|
512
|
-
}
|
|
513
|
-
.hc-chip-chip--disabled .hc-chip-countBadge {
|
|
514
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
515
|
-
color: var(--background-action-disabled-idle, #E5E7EB);
|
|
516
|
-
}
|
|
517
|
-
.hc-chip-closeIcon {
|
|
518
|
-
width: 24px;
|
|
519
|
-
height: 24px;
|
|
520
|
-
flex-shrink: 0;
|
|
521
|
-
display: flex;
|
|
522
|
-
align-items: center;
|
|
523
|
-
justify-content: center;
|
|
524
|
-
}
|
|
525
|
-
.hc-chip-closeIcon svg {
|
|
526
|
-
width: 100%;
|
|
527
|
-
height: 100%;
|
|
528
|
-
}
|
|
529
|
-
.hc-chip-chip--idle .hc-chip-closeIcon {
|
|
530
|
-
color: var(--content-general-secondary, #6B7280);
|
|
531
|
-
}
|
|
532
|
-
.hc-chip-chip--idle:hover .hc-chip-closeIcon {
|
|
533
|
-
color: var(--content-general-primary, #1F2937);
|
|
534
|
-
}
|
|
535
|
-
.hc-chip-chip--active .hc-chip-closeIcon {
|
|
536
|
-
color: var(--content-action-highlight-inverse-idle, #ffffff);
|
|
537
|
-
}
|
|
538
|
-
.hc-chip-chip--disabled .hc-chip-closeIcon {
|
|
539
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
540
|
-
}
|
|
541
|
-
|
|
542
|
-
/* src/components/Checkbox/Checkbox.css */
|
|
543
|
-
.hc-checkbox-container {
|
|
544
|
-
display: inline-flex;
|
|
545
|
-
align-items: center;
|
|
546
|
-
gap: var(--size-rem-0-5, 8px);
|
|
547
|
-
cursor: pointer;
|
|
548
|
-
user-select: none;
|
|
549
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
550
|
-
}
|
|
551
|
-
.hc-checkbox-container--disabled {
|
|
552
|
-
cursor: not-allowed;
|
|
553
|
-
}
|
|
554
|
-
.hc-checkbox-wrapper {
|
|
555
|
-
position: relative;
|
|
556
|
-
display: flex;
|
|
557
|
-
align-items: center;
|
|
558
|
-
justify-content: center;
|
|
559
|
-
overflow: hidden;
|
|
560
|
-
}
|
|
561
|
-
.hc-checkbox-wrapper--medium {
|
|
562
|
-
width: var(--size-rem-1-5, 24px);
|
|
563
|
-
height: var(--size-rem-1-5, 24px);
|
|
564
|
-
}
|
|
565
|
-
.hc-checkbox-wrapper--small {
|
|
566
|
-
width: var(--size-rem-1-25, 20px);
|
|
567
|
-
height: var(--size-rem-1-25, 20px);
|
|
568
|
-
}
|
|
569
|
-
.hc-checkbox-box {
|
|
570
|
-
position: absolute;
|
|
571
|
-
border-radius: var(--radius-sm, 4px);
|
|
572
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
573
|
-
border: 2px solid var(--border-general-primary, #D1D5DB);
|
|
574
|
-
transition: all 0.2s ease;
|
|
575
|
-
box-shadow: none;
|
|
576
|
-
}
|
|
577
|
-
.hc-checkbox-box--medium {
|
|
578
|
-
width: var(--size-rem-1-25, 20px);
|
|
579
|
-
height: var(--size-rem-1-25, 20px);
|
|
580
|
-
left: 2px;
|
|
581
|
-
top: 2px;
|
|
582
|
-
}
|
|
583
|
-
.hc-checkbox-box--small {
|
|
584
|
-
width: var(--size-rem-1, 16px);
|
|
585
|
-
height: var(--size-rem-1, 16px);
|
|
586
|
-
left: 2px;
|
|
587
|
-
top: 2px;
|
|
588
|
-
}
|
|
589
|
-
.hc-checkbox-box--checked {
|
|
590
|
-
background-color: var(--background-action-highlight-idle, #2563EB);
|
|
591
|
-
border: none;
|
|
592
|
-
}
|
|
593
|
-
.hc-checkbox-box--disabled {
|
|
594
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
595
|
-
border-color: var(--border-general-secondary, #E5E7EB);
|
|
596
|
-
}
|
|
597
|
-
.hc-checkbox-box--error {
|
|
598
|
-
border-color: var(--content-status-error-idle, #DC2626);
|
|
599
|
-
}
|
|
600
|
-
.hc-checkbox-box--focused {
|
|
601
|
-
box-shadow: 0 0 0 2px var(--misc-focus, rgba(52, 116, 218, 0.3));
|
|
602
|
-
}
|
|
603
|
-
.hc-checkbox-input {
|
|
604
|
-
position: absolute;
|
|
605
|
-
opacity: 0;
|
|
606
|
-
width: 100%;
|
|
607
|
-
height: 100%;
|
|
608
|
-
margin: 0;
|
|
609
|
-
cursor: pointer;
|
|
610
|
-
}
|
|
611
|
-
.hc-checkbox-input--disabled {
|
|
612
|
-
cursor: not-allowed;
|
|
613
|
-
}
|
|
614
|
-
.hc-checkbox-checkmark {
|
|
615
|
-
position: absolute;
|
|
616
|
-
z-index: 1;
|
|
617
|
-
opacity: 0;
|
|
618
|
-
transform: scale(0.5);
|
|
619
|
-
transition: all 0.2s ease;
|
|
620
|
-
}
|
|
621
|
-
.hc-checkbox-checkmark--medium {
|
|
622
|
-
width: 10px;
|
|
623
|
-
height: 9px;
|
|
624
|
-
left: 7px;
|
|
625
|
-
top: 8px;
|
|
626
|
-
}
|
|
627
|
-
.hc-checkbox-checkmark--small {
|
|
628
|
-
width: 8px;
|
|
629
|
-
height: 7px;
|
|
630
|
-
left: 6px;
|
|
631
|
-
top: 6px;
|
|
632
|
-
}
|
|
633
|
-
.hc-checkbox-checkmark--checked {
|
|
634
|
-
opacity: 1;
|
|
635
|
-
transform: scale(1);
|
|
636
|
-
}
|
|
637
|
-
.hc-checkbox-label {
|
|
638
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
639
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
640
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
641
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
642
|
-
color: var(--content-general-primary, #1F2937);
|
|
643
|
-
}
|
|
644
|
-
.hc-checkbox-label--disabled {
|
|
645
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
646
|
-
}
|
|
647
|
-
.hc-checkbox-label--error {
|
|
648
|
-
color: var(--content-status-error-idle, #DC2626);
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
/* src/components/RadioButton/RadioButton.css */
|
|
652
|
-
.hc-radio-container {
|
|
653
|
-
display: inline-flex;
|
|
654
|
-
align-items: center;
|
|
655
|
-
cursor: pointer;
|
|
656
|
-
outline: none;
|
|
657
|
-
}
|
|
658
|
-
.hc-radio-container--disabled {
|
|
659
|
-
cursor: not-allowed;
|
|
660
|
-
}
|
|
661
|
-
.hc-radio-wrapper {
|
|
662
|
-
width: var(--size-rem-1-5, 24px);
|
|
663
|
-
height: var(--size-rem-1-5, 24px);
|
|
664
|
-
position: relative;
|
|
665
|
-
flex-shrink: 0;
|
|
666
|
-
}
|
|
667
|
-
.hc-radio-outerCircle {
|
|
668
|
-
width: var(--size-rem-1-25, 20px);
|
|
669
|
-
height: var(--size-rem-1-25, 20px);
|
|
670
|
-
position: absolute;
|
|
671
|
-
left: 2px;
|
|
672
|
-
top: 2px;
|
|
673
|
-
border-radius: 50%;
|
|
674
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
675
|
-
border: 1px solid var(--border-general-divider, #D1D5DB);
|
|
676
|
-
opacity: 1;
|
|
677
|
-
transition: all 0.2s ease;
|
|
678
|
-
box-shadow: none;
|
|
679
|
-
}
|
|
680
|
-
.hc-radio-container:hover .hc-radio-outerCircle {
|
|
681
|
-
border: 1px solid var(--border-action-highlight-hover, #1D4ED8);
|
|
682
|
-
}
|
|
683
|
-
.hc-radio-container:focus .hc-radio-outerCircle {
|
|
684
|
-
border: 1px solid var(--border-action-highlight-hover, #1D4ED8);
|
|
685
|
-
box-shadow: 0 0 0 3px var(--background-action-highlight-hover-light, rgba(29, 78, 216, 0.1));
|
|
686
|
-
}
|
|
687
|
-
.hc-radio-outerCircle--checked {
|
|
688
|
-
background-color: var(--background-action-highlight-idle, #2563EB);
|
|
689
|
-
border: none;
|
|
690
|
-
}
|
|
691
|
-
.hc-radio-container:hover .hc-radio-outerCircle--checked {
|
|
692
|
-
background-color: var(--background-action-highlight-hover, #1D4ED8);
|
|
693
|
-
}
|
|
694
|
-
.hc-radio-outerCircle--disabled {
|
|
695
|
-
opacity: 0.5;
|
|
696
|
-
}
|
|
697
|
-
.hc-radio-innerDot {
|
|
698
|
-
width: var(--size-rem-0-5, 8px);
|
|
699
|
-
height: var(--size-rem-0-5, 8px);
|
|
700
|
-
position: absolute;
|
|
701
|
-
left: 8px;
|
|
702
|
-
top: 8px;
|
|
703
|
-
border-radius: 50%;
|
|
704
|
-
background-color: var(--content-action-highlight-inverse-idle, #ffffff);
|
|
705
|
-
opacity: 0;
|
|
706
|
-
transform: scale(0);
|
|
707
|
-
transition: all 0.2s ease;
|
|
708
|
-
}
|
|
709
|
-
.hc-radio-innerDot--checked {
|
|
710
|
-
opacity: 1;
|
|
711
|
-
transform: scale(1);
|
|
712
|
-
}
|
|
713
|
-
.hc-radio-hiddenInput {
|
|
714
|
-
display: none;
|
|
715
|
-
}
|
|
716
|
-
.hc-radio-label {
|
|
717
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
718
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
719
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
720
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
721
|
-
color: var(--content-general-primary, #1F2937);
|
|
722
|
-
cursor: pointer;
|
|
723
|
-
margin-left: var(--size-rem-0-5, 8px);
|
|
724
|
-
}
|
|
725
|
-
.hc-radio-container--disabled .hc-radio-label {
|
|
726
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
727
|
-
cursor: not-allowed;
|
|
728
|
-
}
|
|
729
|
-
|
|
730
|
-
/* src/components/SectionHeader/SectionHeader.css */
|
|
731
|
-
.hc-section-header {
|
|
732
|
-
display: flex;
|
|
733
|
-
justify-content: space-between;
|
|
734
|
-
align-items: center;
|
|
735
|
-
padding: 0 var(--size-rem-1, 16px);
|
|
736
|
-
margin-bottom: var(--size-rem-0-75, 12px);
|
|
737
|
-
}
|
|
738
|
-
.hc-section-title {
|
|
739
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
740
|
-
font-size: var(--text-heading-small-font-size, 20px);
|
|
741
|
-
font-weight: var(--font-weight-semibold, 600);
|
|
742
|
-
line-height: var(--text-heading-small-line-height, 28px);
|
|
743
|
-
color: var(--content-general-primary, #1F2937);
|
|
744
|
-
margin: 0;
|
|
745
|
-
}
|
|
746
|
-
.hc-section-showAllButton {
|
|
747
|
-
display: flex;
|
|
748
|
-
align-items: center;
|
|
749
|
-
gap: 2px;
|
|
750
|
-
background: none;
|
|
751
|
-
border: none;
|
|
752
|
-
padding: 4px 0;
|
|
753
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
754
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
755
|
-
font-weight: var(--font-weight-medium, 500);
|
|
756
|
-
color: var(--content-action-primary-idle, #2563EB);
|
|
757
|
-
cursor: pointer;
|
|
758
|
-
transition: opacity 0.2s ease;
|
|
759
|
-
}
|
|
760
|
-
.hc-section-showAllButton:active {
|
|
761
|
-
opacity: 0.7;
|
|
762
|
-
}
|
|
763
|
-
.hc-section-showAllButton svg {
|
|
764
|
-
flex-shrink: 0;
|
|
765
|
-
}
|
|
766
|
-
|
|
767
|
-
/* src/components/Modal/Modal.css */
|
|
768
|
-
@keyframes hc-modal-fadeIn {
|
|
769
|
-
from {
|
|
770
|
-
opacity: 0;
|
|
771
|
-
}
|
|
772
|
-
to {
|
|
773
|
-
opacity: 1;
|
|
774
|
-
}
|
|
775
|
-
}
|
|
776
|
-
@keyframes hc-modal-slideUp {
|
|
777
|
-
from {
|
|
778
|
-
opacity: 0;
|
|
779
|
-
transform: translateY(var(--size-rem-1-25, 20px));
|
|
780
|
-
}
|
|
781
|
-
to {
|
|
782
|
-
opacity: 1;
|
|
783
|
-
transform: translateY(0);
|
|
784
|
-
}
|
|
785
|
-
}
|
|
786
|
-
.hc-modal-backdrop {
|
|
787
|
-
position: fixed;
|
|
788
|
-
top: 0;
|
|
789
|
-
left: 0;
|
|
790
|
-
right: 0;
|
|
791
|
-
bottom: 0;
|
|
792
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
793
|
-
display: flex;
|
|
794
|
-
align-items: center;
|
|
795
|
-
justify-content: center;
|
|
796
|
-
z-index: 9999;
|
|
797
|
-
padding: var(--size-rem-2, 32px);
|
|
798
|
-
animation: hc-modal-fadeIn 0.2s ease-out;
|
|
799
|
-
}
|
|
800
|
-
.hc-modal-content {
|
|
801
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
802
|
-
border-radius: var(--radius-2xl, 24px);
|
|
803
|
-
width: 100%;
|
|
804
|
-
max-height: fit-content;
|
|
805
|
-
overflow-y: auto;
|
|
806
|
-
overflow-x: hidden;
|
|
807
|
-
position: relative;
|
|
808
|
-
box-shadow: 0 var(--size-rem-1-25, 20px) var(--size-rem-3-75, 60px) rgba(0, 0, 0, 0.15);
|
|
809
|
-
animation: hc-modal-slideUp 0.3s ease-out;
|
|
810
|
-
margin: 0 auto;
|
|
811
|
-
}
|
|
812
|
-
.hc-modal-closeButton {
|
|
813
|
-
position: absolute;
|
|
814
|
-
top: var(--size-rem-0-875, 14px);
|
|
815
|
-
right: var(--size-rem-0-875, 14px);
|
|
816
|
-
width: var(--size-rem-2, 32px);
|
|
817
|
-
height: var(--size-rem-2, 32px);
|
|
818
|
-
z-index: 1;
|
|
819
|
-
border: none;
|
|
820
|
-
background: transparent;
|
|
821
|
-
cursor: pointer;
|
|
822
|
-
display: flex;
|
|
823
|
-
align-items: center;
|
|
824
|
-
justify-content: center;
|
|
825
|
-
padding: 0;
|
|
826
|
-
border-radius: var(--radius-full, 9999px);
|
|
827
|
-
transition: background-color 0.2s ease;
|
|
828
|
-
}
|
|
829
|
-
.hc-modal-closeButton:hover {
|
|
830
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
831
|
-
}
|
|
832
|
-
.hc-modal-closeButton svg path {
|
|
833
|
-
fill: var(--content-general-tertiary, #9CA3AF);
|
|
834
|
-
transition: fill 0.2s ease;
|
|
835
|
-
}
|
|
836
|
-
.hc-modal-closeButton:hover svg path {
|
|
837
|
-
fill: var(--content-general-primary, #1F2937);
|
|
838
|
-
}
|
|
839
|
-
.hc-modal-closeButton:focus {
|
|
840
|
-
outline: none;
|
|
841
|
-
box-shadow: 0 0 0 2px var(--misc-focus, rgba(52, 116, 218, 0.3));
|
|
842
|
-
}
|
|
843
|
-
|
|
844
|
-
/* src/components/Card/Card.css */
|
|
845
|
-
.hc-card-card {
|
|
846
|
-
width: 100%;
|
|
847
|
-
min-width: var(--size-rem-10, 160px);
|
|
848
|
-
display: inline-flex;
|
|
849
|
-
flex-direction: column;
|
|
850
|
-
justify-content: flex-start;
|
|
851
|
-
align-items: flex-start;
|
|
852
|
-
gap: var(--layout-comp-1-gap, 8px);
|
|
853
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
854
|
-
overflow: hidden;
|
|
855
|
-
position: relative;
|
|
856
|
-
}
|
|
857
|
-
.hc-card-card--clickable {
|
|
858
|
-
cursor: pointer;
|
|
859
|
-
}
|
|
860
|
-
.hc-card-card--withPadding {
|
|
861
|
-
padding: var(--size-rem-1, 16px);
|
|
862
|
-
}
|
|
863
|
-
.hc-card-card--withHeight {
|
|
864
|
-
height: 750px;
|
|
865
|
-
}
|
|
866
|
-
.hc-card-card--mobile.hc-card-card--withHeight {
|
|
867
|
-
height: auto;
|
|
868
|
-
}
|
|
869
|
-
.hc-card-imageContainer {
|
|
870
|
-
position: relative;
|
|
871
|
-
width: 100%;
|
|
872
|
-
aspect-ratio: 1 / 1;
|
|
873
|
-
padding: var(--layout-comp-1-padding-horizontal, 8px);
|
|
874
|
-
border-radius: var(--radius-lg, 12px);
|
|
875
|
-
display: flex;
|
|
876
|
-
flex-direction: column;
|
|
877
|
-
justify-content: flex-start;
|
|
878
|
-
align-items: flex-end;
|
|
879
|
-
overflow: hidden;
|
|
880
|
-
}
|
|
881
|
-
.hc-card-image {
|
|
882
|
-
position: absolute;
|
|
883
|
-
top: 0;
|
|
884
|
-
left: 0;
|
|
885
|
-
width: 100%;
|
|
886
|
-
height: 100%;
|
|
887
|
-
object-fit: cover;
|
|
888
|
-
z-index: 0;
|
|
889
|
-
}
|
|
890
|
-
.hc-card-shadowOverlay {
|
|
891
|
-
position: absolute;
|
|
892
|
-
left: 0;
|
|
893
|
-
top: 0;
|
|
894
|
-
width: 100%;
|
|
895
|
-
height: 100%;
|
|
896
|
-
background:
|
|
897
|
-
linear-gradient(
|
|
898
|
-
180deg,
|
|
899
|
-
rgba(0, 0, 0, 0) 65%,
|
|
900
|
-
rgba(0, 0, 0, 0.2) 100%);
|
|
901
|
-
border-radius: var(--radius-lg, 12px);
|
|
902
|
-
pointer-events: none;
|
|
903
|
-
z-index: 1;
|
|
904
|
-
}
|
|
905
|
-
.hc-card-badgeWrapper {
|
|
906
|
-
position: relative;
|
|
907
|
-
z-index: 2;
|
|
908
|
-
}
|
|
909
|
-
.hc-card-textContainer {
|
|
910
|
-
align-self: stretch;
|
|
911
|
-
display: flex;
|
|
912
|
-
flex-direction: column;
|
|
913
|
-
justify-content: flex-start;
|
|
914
|
-
align-items: flex-start;
|
|
915
|
-
gap: var(--size-rem-0-25, 4px);
|
|
916
|
-
}
|
|
917
|
-
.hc-card-starsRow {
|
|
918
|
-
align-self: stretch;
|
|
919
|
-
display: flex;
|
|
920
|
-
align-items: center;
|
|
921
|
-
justify-content: space-between;
|
|
922
|
-
gap: var(--size-rem-0-25, 4px);
|
|
923
|
-
}
|
|
924
|
-
.hc-card-starsRow--fixed {
|
|
925
|
-
height: var(--size-rem-1, 16px);
|
|
926
|
-
}
|
|
927
|
-
.hc-card-starsContainer {
|
|
928
|
-
display: flex;
|
|
929
|
-
justify-content: flex-start;
|
|
930
|
-
align-items: flex-start;
|
|
931
|
-
}
|
|
932
|
-
.hc-card-superiorBadge {
|
|
933
|
-
color: var(--content-general-secondary, #6B7280);
|
|
934
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
935
|
-
font-weight: var(--text-label-tiny-font-weight, 500);
|
|
936
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
937
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
938
|
-
display: flex;
|
|
939
|
-
position: relative;
|
|
940
|
-
top: -4px;
|
|
941
|
-
left: 2px;
|
|
942
|
-
}
|
|
943
|
-
.hc-card-swissLodge {
|
|
944
|
-
color: var(--content-general-secondary, #6B7280);
|
|
945
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
946
|
-
font-weight: var(--text-label-small-font-weight, 500);
|
|
947
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
948
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
949
|
-
display: flex;
|
|
950
|
-
align-items: center;
|
|
951
|
-
height: 9px;
|
|
952
|
-
}
|
|
953
|
-
.hc-card-starsPlaceholder {
|
|
954
|
-
height: var(--size-rem-1-25, 20px);
|
|
955
|
-
}
|
|
956
|
-
.hc-card-card--desktop .hc-card-starsPlaceholder {
|
|
957
|
-
height: var(--size-rem-1-5, 24px);
|
|
958
|
-
}
|
|
959
|
-
.hc-card-ratingInfo {
|
|
960
|
-
display: flex;
|
|
961
|
-
align-items: center;
|
|
962
|
-
}
|
|
963
|
-
.hc-card-ratingSvg {
|
|
964
|
-
display: block;
|
|
965
|
-
position: relative;
|
|
966
|
-
left: -4px;
|
|
967
|
-
}
|
|
968
|
-
.hc-card-ratingLabel {
|
|
969
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
970
|
-
font-size: var(--size-rem-0-875, 14px);
|
|
971
|
-
font-style: normal;
|
|
972
|
-
font-weight: var(--font-weight-regular, 400);
|
|
973
|
-
line-height: var(--text-label-medium-line-height, 24px);
|
|
974
|
-
}
|
|
975
|
-
.hc-card-ratingValue {
|
|
976
|
-
position: absolute;
|
|
977
|
-
margin-left: -2px;
|
|
978
|
-
margin-top: -3px;
|
|
979
|
-
padding: 2px;
|
|
980
|
-
color: var(--content-general-inverse-primary, #ffffff);
|
|
981
|
-
font-size: var(--size-rem-0-75, 12px);
|
|
982
|
-
font-style: normal;
|
|
983
|
-
font-weight: var(--font-weight-regular, 400);
|
|
984
|
-
line-height: var(--size-rem-1-5, 24px);
|
|
985
|
-
display: inline-block;
|
|
986
|
-
}
|
|
987
|
-
.hc-card-label {
|
|
988
|
-
align-self: stretch;
|
|
989
|
-
color: var(--content-general-secondary, #6B7280);
|
|
990
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
991
|
-
word-wrap: break-word;
|
|
992
|
-
position: relative;
|
|
993
|
-
}
|
|
994
|
-
.hc-card-label--desktop {
|
|
995
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
996
|
-
font-weight: var(--text-label-large-font-weight, 500);
|
|
997
|
-
line-height: var(--text-label-large-line-height, 28px);
|
|
998
|
-
}
|
|
999
|
-
.hc-card-label--mobile {
|
|
1000
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1001
|
-
font-weight: var(--font-weight-medium, 500);
|
|
1002
|
-
line-height: var(--text-paragraph-large-line-height, 28px);
|
|
1003
|
-
max-height: var(--size-rem-4, 64px);
|
|
1004
|
-
}
|
|
1005
|
-
.hc-card-label--hotelDeals {
|
|
1006
|
-
overflow: hidden;
|
|
1007
|
-
text-overflow: ellipsis;
|
|
1008
|
-
}
|
|
1009
|
-
.hc-card-card--desktop .hc-card-label--hotelDeals {
|
|
1010
|
-
white-space: nowrap;
|
|
1011
|
-
}
|
|
1012
|
-
.hc-card-label--mobileOverflow {
|
|
1013
|
-
overflow: hidden;
|
|
1014
|
-
}
|
|
1015
|
-
.hc-card-label--noRating {
|
|
1016
|
-
top: calc(-1 * var(--size-rem-0-5, 8px));
|
|
1017
|
-
}
|
|
1018
|
-
.hc-card-card--mobile .hc-card-label--noRating {
|
|
1019
|
-
top: calc(-1 * var(--size-rem-0-25, 4px));
|
|
1020
|
-
}
|
|
1021
|
-
.hc-card-price {
|
|
1022
|
-
align-self: stretch;
|
|
1023
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1024
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1025
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1026
|
-
color: var(--content-general-primary, #1F2937);
|
|
1027
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
1028
|
-
word-wrap: break-word;
|
|
1029
|
-
}
|
|
1030
|
-
.hc-card-price--hotelDealsWithRating {
|
|
1031
|
-
position: relative;
|
|
1032
|
-
top: 0;
|
|
1033
|
-
}
|
|
1034
|
-
.hc-card-price--hotelDealsNoRating {
|
|
1035
|
-
position: relative;
|
|
1036
|
-
margin-top: 0;
|
|
1037
|
-
}
|
|
1038
|
-
.hc-card-price--noRating {
|
|
1039
|
-
position: relative;
|
|
1040
|
-
top: calc(-1 * var(--size-rem-0-5, 8px));
|
|
1041
|
-
}
|
|
1042
|
-
.hc-card-card--mobile .hc-card-price--noRating {
|
|
1043
|
-
top: calc(-1 * var(--size-rem-0-25, 4px));
|
|
1044
|
-
}
|
|
1045
|
-
.hc-card-price--regularWithRating {
|
|
1046
|
-
position: relative;
|
|
1047
|
-
top: 0;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
/* src/components/Dropdown/Dropdown.css */
|
|
1051
|
-
.hc-dropdown-container {
|
|
1052
|
-
position: relative;
|
|
1053
|
-
display: inline-block;
|
|
1054
|
-
width: 100%;
|
|
1055
|
-
min-width: 0;
|
|
1056
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
1057
|
-
user-select: none;
|
|
1058
|
-
cursor: pointer;
|
|
1059
|
-
}
|
|
1060
|
-
.hc-dropdown-container--disabled {
|
|
1061
|
-
cursor: not-allowed;
|
|
1062
|
-
}
|
|
1063
|
-
.hc-dropdown-button {
|
|
1064
|
-
display: flex;
|
|
1065
|
-
align-items: center;
|
|
1066
|
-
justify-content: space-between;
|
|
1067
|
-
padding-top: var(--size-rem-1-25, 20px);
|
|
1068
|
-
padding-bottom: var(--size-rem-1-25, 20px);
|
|
1069
|
-
padding-left: var(--size-rem-1-5, 24px);
|
|
1070
|
-
padding-right: var(--size-rem-1-5, 24px);
|
|
1071
|
-
border-radius: var(--radius-lg, 12px);
|
|
1072
|
-
border: 1px solid var(--border-general-inverse-secondary, #E5E7EB);
|
|
1073
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
1074
|
-
color: var(--content-general-primary, #1F2937);
|
|
1075
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1076
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1077
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1078
|
-
width: 100%;
|
|
1079
|
-
height: auto;
|
|
1080
|
-
transition: all 0.2s ease;
|
|
1081
|
-
}
|
|
1082
|
-
.hc-dropdown-button--focus {
|
|
1083
|
-
border: 1px solid var(--border-action-highlight-hover, #1D4ED8);
|
|
1084
|
-
}
|
|
1085
|
-
.hc-dropdown-button--error {
|
|
1086
|
-
border: 1px solid var(--content-status-error-idle, #DC2626);
|
|
1087
|
-
}
|
|
1088
|
-
.hc-dropdown-button--disabled {
|
|
1089
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
1090
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
1091
|
-
}
|
|
1092
|
-
.hc-dropdown-button--open {
|
|
1093
|
-
border: 1px solid var(--border-action-highlight-hover, #1D4ED8);
|
|
1094
|
-
}
|
|
1095
|
-
.hc-dropdown-chevron {
|
|
1096
|
-
transition: transform 0.2s ease;
|
|
1097
|
-
}
|
|
1098
|
-
.hc-dropdown-chevron--open {
|
|
1099
|
-
transform: rotate(180deg);
|
|
1100
|
-
}
|
|
1101
|
-
.hc-dropdown-list {
|
|
1102
|
-
position: absolute;
|
|
1103
|
-
top: 100%;
|
|
1104
|
-
left: 0;
|
|
1105
|
-
right: 0;
|
|
1106
|
-
margin-top: var(--size-rem-0-25, 4px);
|
|
1107
|
-
border-radius: var(--radius-sm, 6px);
|
|
1108
|
-
border: 1px solid var(--border-general-primary, #D1D5DB);
|
|
1109
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
1110
|
-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
1111
|
-
z-index: 10;
|
|
1112
|
-
display: none;
|
|
1113
|
-
width: 100%;
|
|
1114
|
-
height: auto;
|
|
1115
|
-
list-style: none;
|
|
1116
|
-
margin: 0;
|
|
1117
|
-
margin-top: var(--size-rem-0-25, 4px);
|
|
1118
|
-
padding: 0;
|
|
1119
|
-
max-height: 240px;
|
|
1120
|
-
overflow-y: auto;
|
|
1121
|
-
}
|
|
1122
|
-
.hc-dropdown-list--open {
|
|
1123
|
-
display: block;
|
|
1124
|
-
}
|
|
1125
|
-
.hc-dropdown-option {
|
|
1126
|
-
padding: var(--size-rem-0-5, 8px) var(--size-rem-1, 16px);
|
|
1127
|
-
background-color: transparent;
|
|
1128
|
-
color: var(--content-general-primary, #1F2937);
|
|
1129
|
-
font-weight: var(--font-weight-regular, 400);
|
|
1130
|
-
cursor: pointer;
|
|
1131
|
-
transition: background-color 0.2s ease;
|
|
1132
|
-
white-space: nowrap;
|
|
1133
|
-
width: 100%;
|
|
1134
|
-
height: auto;
|
|
1135
|
-
}
|
|
1136
|
-
.hc-dropdown-option:hover {
|
|
1137
|
-
background-color: var(--background-general-secondary, #F3F4F6);
|
|
1138
|
-
}
|
|
1139
|
-
.hc-dropdown-option--selected {
|
|
1140
|
-
background-color: var(--background-action-highlight-hover-light, rgba(37, 99, 235, 0.1));
|
|
1141
|
-
color: var(--background-action-highlight-active, #1D4ED8);
|
|
1142
|
-
font-weight: var(--font-weight-medium, 500);
|
|
1143
|
-
}
|
|
1144
|
-
.hc-dropdown-hiddenSelect {
|
|
1145
|
-
display: none;
|
|
1146
|
-
}
|
|
1147
|
-
|
|
1148
|
-
/* src/components/Input/Input.css */
|
|
1149
|
-
.hc-input-container {
|
|
1150
|
-
display: inline-flex;
|
|
1151
|
-
flex-direction: column;
|
|
1152
|
-
justify-content: flex-start;
|
|
1153
|
-
align-items: flex-start;
|
|
1154
|
-
gap: var(--size-rem-0-5, 8px);
|
|
1155
|
-
width: 100%;
|
|
1156
|
-
min-width: 0;
|
|
1157
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
1158
|
-
}
|
|
1159
|
-
.hc-input-label {
|
|
1160
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1161
|
-
font-weight: var(--font-weight-medium, 500);
|
|
1162
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1163
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
1164
|
-
color: var(--content-general-primary, #1F2937);
|
|
1165
|
-
align-self: stretch;
|
|
1166
|
-
justify-content: flex-start;
|
|
1167
|
-
}
|
|
1168
|
-
.hc-input-label--disabled {
|
|
1169
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1170
|
-
}
|
|
1171
|
-
.hc-input-wrapper {
|
|
1172
|
-
align-self: stretch;
|
|
1173
|
-
padding: var(--size-rem-0-75, 12px);
|
|
1174
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
1175
|
-
border-radius: var(--radius-lg, 12px);
|
|
1176
|
-
border: 1px solid var(--border-action-secondary-idle, #D1D5DB);
|
|
1177
|
-
display: flex;
|
|
1178
|
-
justify-content: flex-start;
|
|
1179
|
-
align-items: center;
|
|
1180
|
-
gap: var(--size-rem-0-75, 12px);
|
|
1181
|
-
cursor: text;
|
|
1182
|
-
transition: border-color 0.2s ease;
|
|
1183
|
-
}
|
|
1184
|
-
.hc-input-wrapper:hover {
|
|
1185
|
-
border-color: var(--border-action-secondary-hover, #9CA3AF);
|
|
1186
|
-
}
|
|
1187
|
-
.hc-input-wrapper--focus {
|
|
1188
|
-
border-color: var(--misc-focus, #2563EB);
|
|
1189
|
-
}
|
|
1190
|
-
.hc-input-wrapper--error {
|
|
1191
|
-
border-color: var(--border-status-error-idle, #DC2626);
|
|
1192
|
-
}
|
|
1193
|
-
.hc-input-wrapper--disabled {
|
|
1194
|
-
background-color: var(--background-action-disabled-idle, #F3F4F6);
|
|
1195
|
-
border-color: var(--border-action-disabled-idle, #E5E7EB);
|
|
1196
|
-
cursor: not-allowed;
|
|
1197
|
-
}
|
|
1198
|
-
.hc-input-input {
|
|
1199
|
-
flex: 1;
|
|
1200
|
-
border: none;
|
|
1201
|
-
outline: none;
|
|
1202
|
-
background-color: transparent;
|
|
1203
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1204
|
-
font-weight: var(--font-weight-regular, 400);
|
|
1205
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1206
|
-
color: var(--content-general-primary, #1F2937);
|
|
1207
|
-
cursor: text;
|
|
1208
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
1209
|
-
justify-content: flex-start;
|
|
1210
|
-
width: 100%;
|
|
1211
|
-
}
|
|
1212
|
-
.hc-input-input--disabled {
|
|
1213
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1214
|
-
cursor: not-allowed;
|
|
1215
|
-
}
|
|
1216
|
-
.hc-input-input::placeholder {
|
|
1217
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
1218
|
-
opacity: 1;
|
|
1219
|
-
}
|
|
1220
|
-
.hc-input-wrapper:hover .hc-input-input::placeholder {
|
|
1221
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1222
|
-
}
|
|
1223
|
-
.hc-input-input--disabled::placeholder {
|
|
1224
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1225
|
-
}
|
|
1226
|
-
.hc-input-icon {
|
|
1227
|
-
width: var(--size-rem-1-5, 24px);
|
|
1228
|
-
height: var(--size-rem-1-5, 24px);
|
|
1229
|
-
position: relative;
|
|
1230
|
-
overflow: hidden;
|
|
1231
|
-
display: flex;
|
|
1232
|
-
align-items: center;
|
|
1233
|
-
justify-content: center;
|
|
1234
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
1235
|
-
flex-shrink: 0;
|
|
1236
|
-
}
|
|
1237
|
-
.hc-input-wrapper:hover .hc-input-icon {
|
|
1238
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1239
|
-
}
|
|
1240
|
-
.hc-input-wrapper--focus .hc-input-icon {
|
|
1241
|
-
color: var(--content-general-primary, #1F2937);
|
|
1242
|
-
}
|
|
1243
|
-
.hc-input-wrapper--disabled .hc-input-icon {
|
|
1244
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1245
|
-
}
|
|
1246
|
-
.hc-input-prefix {
|
|
1247
|
-
display: flex;
|
|
1248
|
-
align-items: center;
|
|
1249
|
-
padding-right: var(--size-rem-0-5, 8px);
|
|
1250
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1251
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1252
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
1253
|
-
border-right: var(--size-rem-0-125, 2px) solid var(--border-general-divider, #E5E7EB);
|
|
1254
|
-
margin-right: var(--size-rem-0-5, 8px);
|
|
1255
|
-
}
|
|
1256
|
-
.hc-input-helper {
|
|
1257
|
-
font-size: var(--text-paragraph-small-font-size, 14px);
|
|
1258
|
-
font-weight: var(--font-weight-regular, 400);
|
|
1259
|
-
line-height: var(--text-paragraph-small-line-height, 20px);
|
|
1260
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
1261
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1262
|
-
align-self: stretch;
|
|
1263
|
-
justify-content: flex-start;
|
|
1264
|
-
}
|
|
1265
|
-
.hc-input-helper--error {
|
|
1266
|
-
color: var(--content-status-error-idle, #DC2626);
|
|
1267
|
-
}
|
|
1268
|
-
.hc-input-helper--disabled {
|
|
1269
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1270
|
-
}
|
|
1271
|
-
|
|
1272
|
-
/* src/components/Block/Block.css */
|
|
1273
|
-
.hc-block-icon {
|
|
1274
|
-
display: flex;
|
|
1275
|
-
flex-direction: column;
|
|
1276
|
-
align-items: center;
|
|
1277
|
-
text-align: center;
|
|
1278
|
-
padding: var(--size-rem-1, 16px);
|
|
1279
|
-
gap: var(--size-rem-1, 16px);
|
|
1280
|
-
width: 160px;
|
|
1281
|
-
min-height: 148px;
|
|
1282
|
-
cursor: default;
|
|
1283
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1284
|
-
background-color: transparent;
|
|
1285
|
-
border-radius: var(--radius-lg, 12px);
|
|
1286
|
-
}
|
|
1287
|
-
.hc-block-icon--clickable {
|
|
1288
|
-
cursor: pointer;
|
|
1289
|
-
}
|
|
1290
|
-
.hc-block-icon--clickable:hover {
|
|
1291
|
-
background-color: var(--background-general-tertiary, #F3F4F6);
|
|
1292
|
-
}
|
|
1293
|
-
.hc-block-icon-container--primary {
|
|
1294
|
-
width: var(--size-rem-3, 48px);
|
|
1295
|
-
height: var(--size-rem-3, 48px);
|
|
1296
|
-
min-width: var(--size-rem-3, 48px);
|
|
1297
|
-
min-height: var(--size-rem-3, 48px);
|
|
1298
|
-
border-radius: 50%;
|
|
1299
|
-
display: grid;
|
|
1300
|
-
place-items: center;
|
|
1301
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
1302
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
1303
|
-
flex-shrink: 0;
|
|
1304
|
-
padding: 0;
|
|
1305
|
-
box-sizing: border-box;
|
|
1306
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1307
|
-
line-height: 0;
|
|
1308
|
-
}
|
|
1309
|
-
.hc-block-icon-container--secondary {
|
|
1310
|
-
width: var(--size-rem-3, 48px);
|
|
1311
|
-
height: var(--size-rem-3, 48px);
|
|
1312
|
-
min-width: var(--size-rem-3, 48px);
|
|
1313
|
-
min-height: var(--size-rem-3, 48px);
|
|
1314
|
-
border-radius: 50%;
|
|
1315
|
-
display: grid;
|
|
1316
|
-
place-items: center;
|
|
1317
|
-
background-color: var(--background-general-secondary, #F9FAFB);
|
|
1318
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1319
|
-
flex-shrink: 0;
|
|
1320
|
-
padding: 0;
|
|
1321
|
-
box-sizing: border-box;
|
|
1322
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1323
|
-
line-height: 0;
|
|
1324
|
-
}
|
|
1325
|
-
.hc-block-text-container {
|
|
1326
|
-
display: flex;
|
|
1327
|
-
flex-direction: column;
|
|
1328
|
-
gap: var(--size-rem-0-25, 4px);
|
|
1329
|
-
}
|
|
1330
|
-
.hc-block-icon-label {
|
|
1331
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
1332
|
-
line-height: var(--text-label-medium-line-height, 20px);
|
|
1333
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
1334
|
-
color: var(--content-general-primary, #1F2937);
|
|
1335
|
-
margin-top: 0;
|
|
1336
|
-
}
|
|
1337
|
-
.hc-block-icon-description {
|
|
1338
|
-
font-size: var(--text-paragraph-small-font-size, 14px);
|
|
1339
|
-
line-height: var(--text-paragraph-small-line-height, 20px);
|
|
1340
|
-
font-weight: var(--text-paragraph-small-font-weight, 400);
|
|
1341
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1342
|
-
margin-top: calc(-1 * var(--size-rem-0-5, 8px));
|
|
1343
|
-
}
|
|
1344
|
-
.hc-block-image {
|
|
1345
|
-
position: relative;
|
|
1346
|
-
display: flex;
|
|
1347
|
-
flex-direction: column;
|
|
1348
|
-
width: 100%;
|
|
1349
|
-
max-width: 292px;
|
|
1350
|
-
height: 344px;
|
|
1351
|
-
background-color: var(--background-general-secondary, #F9FAFB);
|
|
1352
|
-
border-radius: var(--radius-lg, 12px);
|
|
1353
|
-
overflow: hidden;
|
|
1354
|
-
cursor: default;
|
|
1355
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1356
|
-
}
|
|
1357
|
-
.hc-block-image--clickable {
|
|
1358
|
-
cursor: pointer;
|
|
1359
|
-
}
|
|
1360
|
-
.hc-block-image-container {
|
|
1361
|
-
flex: 1;
|
|
1362
|
-
background-color: var(--background-general-tertiary, #F3F4F6);
|
|
1363
|
-
display: flex;
|
|
1364
|
-
align-items: center;
|
|
1365
|
-
justify-content: center;
|
|
1366
|
-
overflow: hidden;
|
|
1367
|
-
}
|
|
1368
|
-
.hc-block-footer {
|
|
1369
|
-
padding: var(--size-rem-1-5, 24px);
|
|
1370
|
-
display: flex;
|
|
1371
|
-
align-items: center;
|
|
1372
|
-
justify-content: space-between;
|
|
1373
|
-
background-color: var(--background-general-secondary, #F9FAFB);
|
|
1374
|
-
border-top: 1px solid var(--border-general-divider, #E5E7EB);
|
|
1375
|
-
}
|
|
1376
|
-
.hc-block-image--clickable:hover .hc-block-footer {
|
|
1377
|
-
background-color: var(--background-action-highlight-hover, #FEF2F2);
|
|
1378
|
-
}
|
|
1379
|
-
.hc-block-image-label {
|
|
1380
|
-
font-size: var(--text-label-large-font-size, 16px);
|
|
1381
|
-
line-height: var(--text-label-large-line-height, 24px);
|
|
1382
|
-
font-weight: var(--text-label-large-font-weight, 500);
|
|
1383
|
-
color: var(--content-action-highlight-idle, #C81E4C);
|
|
1384
|
-
}
|
|
1385
|
-
.hc-block-image--clickable:hover .hc-block-image-label {
|
|
1386
|
-
color: var(--content-action-highlight-hover, #A3183D);
|
|
1387
|
-
}
|
|
1388
|
-
.hc-block-arrow {
|
|
1389
|
-
color: var(--content-action-highlight-idle, #C81E4C);
|
|
1390
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1391
|
-
}
|
|
1392
|
-
.hc-block-image--clickable:hover .hc-block-arrow {
|
|
1393
|
-
color: var(--content-action-highlight-hover, #A3183D);
|
|
1394
|
-
}
|
|
1395
|
-
|
|
1396
|
-
/* src/components/ReviewCard/ReviewCard.css */
|
|
1397
|
-
.hc-review-container {
|
|
1398
|
-
padding: var(--size-rem-1-5, 24px);
|
|
1399
|
-
border-radius: var(--size-rem-1-5, 24px);
|
|
1400
|
-
border: 1px solid var(--border-general-divider, #E5E7EB);
|
|
1401
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
1402
|
-
display: flex;
|
|
1403
|
-
flex-direction: column;
|
|
1404
|
-
justify-content: flex-start;
|
|
1405
|
-
align-items: flex-start;
|
|
1406
|
-
gap: var(--size-rem-1, 16px);
|
|
1407
|
-
box-sizing: border-box;
|
|
1408
|
-
}
|
|
1409
|
-
@media (min-width: 1024px) {
|
|
1410
|
-
.hc-review-container {
|
|
1411
|
-
width: 411px;
|
|
1412
|
-
min-height: 320px;
|
|
1413
|
-
}
|
|
1414
|
-
}
|
|
1415
|
-
@media (max-width: 1023px) {
|
|
1416
|
-
.hc-review-container {
|
|
1417
|
-
width: 343px;
|
|
1418
|
-
min-height: auto;
|
|
1419
|
-
}
|
|
1420
|
-
}
|
|
1421
|
-
.hc-review-name {
|
|
1422
|
-
align-self: stretch;
|
|
1423
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
1424
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1425
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1426
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1427
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1428
|
-
justify-content: flex-start;
|
|
1429
|
-
}
|
|
1430
|
-
.hc-review-frame {
|
|
1431
|
-
align-self: stretch;
|
|
1432
|
-
display: flex;
|
|
1433
|
-
flex-direction: column;
|
|
1434
|
-
justify-content: flex-start;
|
|
1435
|
-
align-items: flex-start;
|
|
1436
|
-
gap: var(--size-rem-0-5, 8px);
|
|
1437
|
-
}
|
|
1438
|
-
.hc-review-stars {
|
|
1439
|
-
display: inline-flex;
|
|
1440
|
-
justify-content: flex-start;
|
|
1441
|
-
align-items: center;
|
|
1442
|
-
gap: var(--size-rem-0-5, 8px);
|
|
1443
|
-
}
|
|
1444
|
-
.hc-review-quote {
|
|
1445
|
-
align-self: stretch;
|
|
1446
|
-
color: var(--content-general-primary, #1F2937);
|
|
1447
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1448
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1449
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1450
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1451
|
-
justify-content: flex-start;
|
|
1452
|
-
}
|
|
1453
|
-
.hc-review-date {
|
|
1454
|
-
align-self: stretch;
|
|
1455
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
1456
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1457
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1458
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1459
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1460
|
-
justify-content: flex-start;
|
|
1461
|
-
}
|
|
1462
|
-
|
|
1463
|
-
/* src/components/FAQ/FAQ.css */
|
|
1464
|
-
.hc-faq-container {
|
|
1465
|
-
display: flex;
|
|
1466
|
-
flex-direction: column;
|
|
1467
|
-
justify-content: flex-start;
|
|
1468
|
-
align-items: flex-start;
|
|
1469
|
-
gap: 0;
|
|
1470
|
-
width: 100%;
|
|
1471
|
-
}
|
|
1472
|
-
.hc-faq-item {
|
|
1473
|
-
align-self: stretch;
|
|
1474
|
-
border-bottom: 1px solid var(--border-general-divider, #E5E7EB);
|
|
1475
|
-
display: flex;
|
|
1476
|
-
flex-direction: column;
|
|
1477
|
-
justify-content: flex-start;
|
|
1478
|
-
align-items: flex-start;
|
|
1479
|
-
}
|
|
1480
|
-
.hc-faq-question-btn {
|
|
1481
|
-
align-self: stretch;
|
|
1482
|
-
padding: var(--size-rem-1-5, 24px) 0 !important;
|
|
1483
|
-
display: flex !important;
|
|
1484
|
-
justify-content: space-between !important;
|
|
1485
|
-
align-items: center !important;
|
|
1486
|
-
gap: var(--size-rem-1, 16px) !important;
|
|
1487
|
-
background: none !important;
|
|
1488
|
-
border: none !important;
|
|
1489
|
-
cursor: pointer;
|
|
1490
|
-
text-align: left;
|
|
1491
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1492
|
-
width: 100% !important;
|
|
1493
|
-
}
|
|
1494
|
-
.hc-faq-question-text {
|
|
1495
|
-
flex: 1 1 0;
|
|
1496
|
-
color: var(--content-general-primary, #1F2937);
|
|
1497
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1498
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1499
|
-
font-weight: var(--font-weight-medium, 500);
|
|
1500
|
-
line-height: var(--text-paragraph-large-line-height, 28px);
|
|
1501
|
-
}
|
|
1502
|
-
.hc-faq-icon-container {
|
|
1503
|
-
width: var(--size-rem-1-5, 24px);
|
|
1504
|
-
height: var(--size-rem-1-5, 24px);
|
|
1505
|
-
display: flex;
|
|
1506
|
-
justify-content: center;
|
|
1507
|
-
align-items: center;
|
|
1508
|
-
color: var(--content-general-primary, #1F2937);
|
|
1509
|
-
}
|
|
1510
|
-
.hc-faq-chevron {
|
|
1511
|
-
transform: rotate(0deg);
|
|
1512
|
-
transition: transform 0.2s ease;
|
|
1513
|
-
}
|
|
1514
|
-
.hc-faq-chevron--open {
|
|
1515
|
-
transform: rotate(180deg);
|
|
1516
|
-
}
|
|
1517
|
-
.hc-faq-answer {
|
|
1518
|
-
overflow: hidden;
|
|
1519
|
-
display: none;
|
|
1520
|
-
}
|
|
1521
|
-
.hc-faq-answer--open {
|
|
1522
|
-
overflow: hidden;
|
|
1523
|
-
display: block;
|
|
1524
|
-
}
|
|
1525
|
-
.hc-faq-answer-text {
|
|
1526
|
-
padding-bottom: var(--size-rem-1-5, 24px);
|
|
1527
|
-
padding-right: var(--size-rem-3, 48px);
|
|
1528
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1529
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1530
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1531
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1532
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1533
|
-
margin: 0;
|
|
1534
|
-
}
|
|
1535
|
-
|
|
1536
|
-
/* src/components/Benefits/Benefits.css */
|
|
1537
|
-
.hc-benefits-section {
|
|
1538
|
-
width: 100%;
|
|
1539
|
-
background:
|
|
1540
|
-
linear-gradient(
|
|
1541
|
-
180deg,
|
|
1542
|
-
var(--background-general-tertiary, #F3F4F6) 0%,
|
|
1543
|
-
var(--background-general-primary, #ffffff) 100%);
|
|
1544
|
-
display: flex;
|
|
1545
|
-
flex-direction: column;
|
|
1546
|
-
justify-content: flex-start;
|
|
1547
|
-
align-items: center;
|
|
1548
|
-
}
|
|
1549
|
-
@media (min-width: 1024px) {
|
|
1550
|
-
.hc-benefits-section {
|
|
1551
|
-
padding-left: var(--layout-section-padding-horizontal, 64px);
|
|
1552
|
-
padding-right: var(--layout-section-padding-horizontal, 64px);
|
|
1553
|
-
padding-top: var(--size-rem-4, 64px);
|
|
1554
|
-
padding-bottom: var(--size-rem-4, 64px);
|
|
1555
|
-
gap: var(--size-rem-4, 64px);
|
|
1556
|
-
}
|
|
1557
|
-
}
|
|
1558
|
-
@media (max-width: 1023px) {
|
|
1559
|
-
.hc-benefits-section {
|
|
1560
|
-
padding-left: var(--size-rem-1, 16px);
|
|
1561
|
-
padding-right: var(--size-rem-1, 16px);
|
|
1562
|
-
padding-top: var(--size-rem-3, 48px);
|
|
1563
|
-
padding-bottom: var(--size-rem-3, 48px);
|
|
1564
|
-
gap: var(--size-rem-3, 48px);
|
|
1565
|
-
}
|
|
1566
|
-
}
|
|
1567
|
-
.hc-benefits-container {
|
|
1568
|
-
width: 100%;
|
|
1569
|
-
max-width: 1248px;
|
|
1570
|
-
display: flex;
|
|
1571
|
-
flex-direction: column;
|
|
1572
|
-
justify-content: flex-start;
|
|
1573
|
-
align-items: center;
|
|
1574
|
-
}
|
|
1575
|
-
@media (min-width: 1024px) {
|
|
1576
|
-
.hc-benefits-container {
|
|
1577
|
-
gap: var(--size-rem-4, 64px);
|
|
1578
|
-
}
|
|
1579
|
-
}
|
|
1580
|
-
@media (max-width: 1023px) {
|
|
1581
|
-
.hc-benefits-container {
|
|
1582
|
-
gap: var(--size-rem-3, 48px);
|
|
1583
|
-
}
|
|
1584
|
-
}
|
|
1585
|
-
.hc-benefits-header {
|
|
1586
|
-
display: flex;
|
|
1587
|
-
flex-direction: column;
|
|
1588
|
-
justify-content: center;
|
|
1589
|
-
align-items: center;
|
|
1590
|
-
gap: var(--size-rem-1, 16px);
|
|
1591
|
-
text-align: center;
|
|
1592
|
-
}
|
|
1593
|
-
.hc-benefits-title {
|
|
1594
|
-
color: var(--content-general-primary, #1F2937);
|
|
1595
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1596
|
-
font-weight: var(--text-display-medium-font-weight, 700);
|
|
1597
|
-
margin: 0;
|
|
1598
|
-
}
|
|
1599
|
-
@media (min-width: 1024px) {
|
|
1600
|
-
.hc-benefits-title {
|
|
1601
|
-
font-size: var(--text-display-medium-font-size, 36px);
|
|
1602
|
-
line-height: var(--text-display-medium-line-height, 44px);
|
|
1603
|
-
}
|
|
1604
|
-
}
|
|
1605
|
-
@media (max-width: 1023px) {
|
|
1606
|
-
.hc-benefits-title {
|
|
1607
|
-
font-size: var(--text-display-small-font-size, 30px);
|
|
1608
|
-
line-height: var(--text-display-small-line-height, 36px);
|
|
1609
|
-
}
|
|
1610
|
-
}
|
|
1611
|
-
.hc-benefits-subtitle {
|
|
1612
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1613
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1614
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1615
|
-
font-weight: var(--text-paragraph-large-font-weight, 400);
|
|
1616
|
-
line-height: var(--text-paragraph-large-line-height, 28px);
|
|
1617
|
-
margin: 0;
|
|
1618
|
-
}
|
|
1619
|
-
.hc-benefits-grid {
|
|
1620
|
-
width: 100%;
|
|
1621
|
-
display: grid;
|
|
1622
|
-
gap: var(--size-rem-2, 32px);
|
|
1623
|
-
max-width: 800px;
|
|
1624
|
-
}
|
|
1625
|
-
@media (min-width: 1024px) {
|
|
1626
|
-
.hc-benefits-grid {
|
|
1627
|
-
grid-template-columns: repeat(2, 1fr);
|
|
1628
|
-
}
|
|
1629
|
-
}
|
|
1630
|
-
@media (max-width: 1023px) {
|
|
1631
|
-
.hc-benefits-grid {
|
|
1632
|
-
grid-template-columns: 1fr;
|
|
1633
|
-
}
|
|
1634
|
-
}
|
|
1635
|
-
.hc-benefits-item {
|
|
1636
|
-
padding: var(--size-rem-2, 32px);
|
|
1637
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
1638
|
-
border-radius: var(--radius-lg, 12px);
|
|
1639
|
-
border: 1px solid var(--border-general-divider, #E5E7EB);
|
|
1640
|
-
display: flex;
|
|
1641
|
-
flex-direction: column;
|
|
1642
|
-
gap: var(--size-rem-0-5, 8px);
|
|
1643
|
-
}
|
|
1644
|
-
.hc-benefits-item-title {
|
|
1645
|
-
color: var(--content-general-primary, #1F2937);
|
|
1646
|
-
font-size: var(--text-heading-medium-font-size, 20px);
|
|
1647
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1648
|
-
font-weight: var(--text-heading-medium-font-weight, 600);
|
|
1649
|
-
line-height: var(--text-heading-medium-line-height, 28px);
|
|
1650
|
-
margin: 0;
|
|
1651
|
-
}
|
|
1652
|
-
.hc-benefits-item-description {
|
|
1653
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1654
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1655
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1656
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1657
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1658
|
-
margin: 0;
|
|
1659
|
-
}
|
|
1660
|
-
.hc-benefits-contact-card {
|
|
1661
|
-
width: 100%;
|
|
1662
|
-
max-width: 600px;
|
|
1663
|
-
padding: var(--size-rem-3, 48px);
|
|
1664
|
-
background-color: var(--background-general-primary, #ffffff);
|
|
1665
|
-
border-radius: var(--radius-xl, 16px);
|
|
1666
|
-
box-shadow: 0px 10px 25px -5px rgba(0, 0, 0, 0.1);
|
|
1667
|
-
display: flex;
|
|
1668
|
-
flex-direction: column;
|
|
1669
|
-
justify-content: center;
|
|
1670
|
-
align-items: center;
|
|
1671
|
-
gap: var(--size-rem-2, 32px);
|
|
1672
|
-
text-align: center;
|
|
1673
|
-
}
|
|
1674
|
-
.hc-benefits-contact-title {
|
|
1675
|
-
color: var(--content-general-primary, #1F2937);
|
|
1676
|
-
font-size: var(--text-heading-large-font-size, 24px);
|
|
1677
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1678
|
-
font-weight: var(--text-heading-large-font-weight, 600);
|
|
1679
|
-
line-height: var(--text-heading-large-line-height, 32px);
|
|
1680
|
-
margin: 0;
|
|
1681
|
-
}
|
|
1682
|
-
.hc-benefits-contact-description {
|
|
1683
|
-
color: var(--content-general-secondary, #6B7280);
|
|
1684
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
1685
|
-
font-family: var(--font-primary, system-ui, sans-serif);
|
|
1686
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
1687
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
1688
|
-
margin: 0;
|
|
1689
|
-
}
|
|
1690
|
-
@media (max-width: 1023px) {
|
|
1691
|
-
.hc-benefits-contact-btn {
|
|
1692
|
-
width: 100%;
|
|
1693
|
-
}
|
|
1694
|
-
}
|
|
1695
|
-
@media (min-width: 1024px) {
|
|
1696
|
-
.hc-benefits-contact-btn {
|
|
1697
|
-
width: auto;
|
|
1698
|
-
}
|
|
1699
|
-
}
|
|
1700
|
-
|
|
1701
|
-
/* src/components/Pin/Pin.css */
|
|
1702
|
-
.hc-pin-pin {
|
|
1703
|
-
position: relative;
|
|
1704
|
-
display: inline-flex;
|
|
1705
|
-
align-items: center;
|
|
1706
|
-
justify-content: center;
|
|
1707
|
-
height: 48px;
|
|
1708
|
-
cursor: pointer;
|
|
1709
|
-
outline: none;
|
|
1710
|
-
background: transparent;
|
|
1711
|
-
border: none;
|
|
1712
|
-
padding: 0;
|
|
1713
|
-
}
|
|
1714
|
-
.hc-pin-pin:disabled {
|
|
1715
|
-
cursor: not-allowed;
|
|
1716
|
-
}
|
|
1717
|
-
.hc-pin-body {
|
|
1718
|
-
display: flex;
|
|
1719
|
-
align-items: center;
|
|
1720
|
-
justify-content: center;
|
|
1721
|
-
gap: var(--size-rem-0-25, 4px);
|
|
1722
|
-
padding: 2px var(--size-rem-0-75, 12px);
|
|
1723
|
-
height: 100%;
|
|
1724
|
-
border-radius: var(--radius-full, 9999px);
|
|
1725
|
-
white-space: nowrap;
|
|
1726
|
-
transition: background-color 0.15s ease, border-color 0.15s ease;
|
|
1727
|
-
}
|
|
1728
|
-
.hc-pin-hotel .hc-pin-body {
|
|
1729
|
-
width: 48px;
|
|
1730
|
-
min-width: 48px;
|
|
1731
|
-
}
|
|
1732
|
-
.hc-pin-pointer {
|
|
1733
|
-
position: absolute;
|
|
1734
|
-
bottom: -5px;
|
|
1735
|
-
left: 50%;
|
|
1736
|
-
transform: translateX(-50%);
|
|
1737
|
-
width: 17px;
|
|
1738
|
-
height: 17px;
|
|
1739
|
-
display: flex;
|
|
1740
|
-
align-items: center;
|
|
1741
|
-
justify-content: center;
|
|
1742
|
-
}
|
|
1743
|
-
.hc-pin-pointer-inner {
|
|
1744
|
-
width: 12px;
|
|
1745
|
-
height: 12px;
|
|
1746
|
-
border-radius: 2px;
|
|
1747
|
-
transform: rotate(45deg);
|
|
1748
|
-
transition: background-color 0.15s ease, border-color 0.15s ease;
|
|
1749
|
-
}
|
|
1750
|
-
.hc-pin-currency {
|
|
1751
|
-
font-family: var(--text-paragraph-tiny-font-family, system-ui, sans-serif);
|
|
1752
|
-
font-size: var(--text-paragraph-tiny-font-size, 12px);
|
|
1753
|
-
font-weight: var(--text-paragraph-tiny-font-weight, 400);
|
|
1754
|
-
line-height: var(--text-paragraph-tiny-line-height, 16px);
|
|
1755
|
-
text-align: center;
|
|
1756
|
-
}
|
|
1757
|
-
.hc-pin-price {
|
|
1758
|
-
font-family: var(--text-label-medium-font-family, system-ui, sans-serif);
|
|
1759
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
1760
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
1761
|
-
line-height: var(--text-label-medium-line-height, 20px);
|
|
1762
|
-
text-align: center;
|
|
1763
|
-
}
|
|
1764
|
-
.hc-pin-favorite-container {
|
|
1765
|
-
display: flex;
|
|
1766
|
-
align-items: center;
|
|
1767
|
-
padding-left: var(--size-rem-0-25, 4px);
|
|
1768
|
-
}
|
|
1769
|
-
.hc-pin-favorite-icon {
|
|
1770
|
-
width: 16px;
|
|
1771
|
-
height: 16px;
|
|
1772
|
-
flex-shrink: 0;
|
|
1773
|
-
}
|
|
1774
|
-
.hc-pin-hotel-icon {
|
|
1775
|
-
width: 16px;
|
|
1776
|
-
height: 16px;
|
|
1777
|
-
flex-shrink: 0;
|
|
1778
|
-
}
|
|
1779
|
-
.hc-pin-primary .hc-pin-body {
|
|
1780
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
1781
|
-
}
|
|
1782
|
-
.hc-pin-primary .hc-pin-pointer-inner {
|
|
1783
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
1784
|
-
}
|
|
1785
|
-
.hc-pin-primary .hc-pin-currency,
|
|
1786
|
-
.hc-pin-primary .hc-pin-price {
|
|
1787
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
1788
|
-
}
|
|
1789
|
-
.hc-pin-primary .hc-pin-favorite-icon {
|
|
1790
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
1791
|
-
}
|
|
1792
|
-
.hc-pin-primary .hc-pin-hotel-icon {
|
|
1793
|
-
color: var(--content-action-primary-inverse-idle, #ffffff);
|
|
1794
|
-
}
|
|
1795
|
-
.hc-pin-primary:hover:not(:disabled) .hc-pin-body {
|
|
1796
|
-
background-color: var(--background-action-primary-hover, #A3183D);
|
|
1797
|
-
}
|
|
1798
|
-
.hc-pin-primary:hover:not(:disabled) .hc-pin-pointer-inner {
|
|
1799
|
-
background-color: var(--background-action-primary-hover, #A3183D);
|
|
1800
|
-
}
|
|
1801
|
-
.hc-pin-primary:hover:not(:disabled) .hc-pin-currency,
|
|
1802
|
-
.hc-pin-primary:hover:not(:disabled) .hc-pin-price {
|
|
1803
|
-
color: var(--content-action-primary-inverse-hover, #ffffff);
|
|
1804
|
-
}
|
|
1805
|
-
.hc-pin-primary:hover:not(:disabled) .hc-pin-favorite-icon {
|
|
1806
|
-
color: var(--content-action-primary-inverse-hover, #ffffff);
|
|
1807
|
-
}
|
|
1808
|
-
.hc-pin-primary:hover:not(:disabled) .hc-pin-hotel-icon {
|
|
1809
|
-
color: var(--content-action-primary-inverse-hover, #ffffff);
|
|
1810
|
-
}
|
|
1811
|
-
.hc-pin-primary:active:not(:disabled) .hc-pin-body {
|
|
1812
|
-
background-color: var(--background-action-primary-active, #8B1534);
|
|
1813
|
-
}
|
|
1814
|
-
.hc-pin-primary:active:not(:disabled) .hc-pin-pointer-inner {
|
|
1815
|
-
background-color: var(--background-action-primary-active, #8B1534);
|
|
1816
|
-
}
|
|
1817
|
-
.hc-pin-primary:active:not(:disabled) .hc-pin-currency,
|
|
1818
|
-
.hc-pin-primary:active:not(:disabled) .hc-pin-price {
|
|
1819
|
-
color: var(--content-action-primary-inverse-active, #ffffff);
|
|
1820
|
-
}
|
|
1821
|
-
.hc-pin-primary:active:not(:disabled) .hc-pin-favorite-icon {
|
|
1822
|
-
color: var(--content-action-primary-inverse-active, #ffffff);
|
|
1823
|
-
}
|
|
1824
|
-
.hc-pin-primary:active:not(:disabled) .hc-pin-hotel-icon {
|
|
1825
|
-
color: var(--content-action-primary-inverse-active, #ffffff);
|
|
1826
|
-
}
|
|
1827
|
-
.hc-pin-primary:focus-visible:not(:disabled) .hc-pin-body {
|
|
1828
|
-
box-shadow: 0 0 0 2px var(--misc-focus, #3B82F6), 0 0 16px 4px var(--misc-focus, #3B82F6);
|
|
1829
|
-
}
|
|
1830
|
-
.hc-pin-secondary .hc-pin-body {
|
|
1831
|
-
background-color: var(--background-action-secondary-idle, #ffffff);
|
|
1832
|
-
border: 2px solid var(--border-action-secondary-idle, #D1D5DB);
|
|
1833
|
-
}
|
|
1834
|
-
.hc-pin-secondary .hc-pin-pointer-inner {
|
|
1835
|
-
background-color: var(--background-action-secondary-idle, #ffffff);
|
|
1836
|
-
border: 2px solid var(--border-action-secondary-idle, #D1D5DB);
|
|
1837
|
-
}
|
|
1838
|
-
.hc-pin-secondary .hc-pin-currency,
|
|
1839
|
-
.hc-pin-secondary .hc-pin-price {
|
|
1840
|
-
color: var(--content-action-secondary-idle, #374151);
|
|
1841
|
-
}
|
|
1842
|
-
.hc-pin-secondary .hc-pin-favorite-icon {
|
|
1843
|
-
color: var(--content-action-primary-idle, #C81E4C);
|
|
1844
|
-
}
|
|
1845
|
-
.hc-pin-secondary .hc-pin-hotel-icon {
|
|
1846
|
-
color: var(--content-action-secondary-idle, #374151);
|
|
1847
|
-
}
|
|
1848
|
-
.hc-pin-secondary:hover:not(:disabled) .hc-pin-body {
|
|
1849
|
-
background-color: var(--background-action-secondary-hover, #F9FAFB);
|
|
1850
|
-
border-color: var(--border-action-secondary-hover, #9CA3AF);
|
|
1851
|
-
}
|
|
1852
|
-
.hc-pin-secondary:hover:not(:disabled) .hc-pin-pointer-inner {
|
|
1853
|
-
background-color: var(--background-action-secondary-hover, #F9FAFB);
|
|
1854
|
-
border-color: var(--border-action-secondary-hover, #9CA3AF);
|
|
1855
|
-
}
|
|
1856
|
-
.hc-pin-secondary:hover:not(:disabled) .hc-pin-currency,
|
|
1857
|
-
.hc-pin-secondary:hover:not(:disabled) .hc-pin-price {
|
|
1858
|
-
color: var(--content-action-secondary-hover, #1F2937);
|
|
1859
|
-
}
|
|
1860
|
-
.hc-pin-secondary:hover:not(:disabled) .hc-pin-favorite-icon {
|
|
1861
|
-
color: var(--content-action-primary-hover, #A3183D);
|
|
1862
|
-
}
|
|
1863
|
-
.hc-pin-secondary:hover:not(:disabled) .hc-pin-hotel-icon {
|
|
1864
|
-
color: var(--content-action-secondary-hover, #1F2937);
|
|
1865
|
-
}
|
|
1866
|
-
.hc-pin-secondary:active:not(:disabled) .hc-pin-body {
|
|
1867
|
-
background-color: var(--background-action-secondary-active, #F3F4F6);
|
|
1868
|
-
border-color: var(--border-action-secondary-active, #6B7280);
|
|
1869
|
-
}
|
|
1870
|
-
.hc-pin-secondary:active:not(:disabled) .hc-pin-pointer-inner {
|
|
1871
|
-
background-color: var(--background-action-secondary-active, #F3F4F6);
|
|
1872
|
-
border-color: var(--border-action-secondary-active, #6B7280);
|
|
1873
|
-
}
|
|
1874
|
-
.hc-pin-secondary:active:not(:disabled) .hc-pin-currency,
|
|
1875
|
-
.hc-pin-secondary:active:not(:disabled) .hc-pin-price {
|
|
1876
|
-
color: var(--content-action-secondary-active, #111827);
|
|
1877
|
-
}
|
|
1878
|
-
.hc-pin-secondary:active:not(:disabled) .hc-pin-favorite-icon {
|
|
1879
|
-
color: var(--content-action-primary-active, #8B1534);
|
|
1880
|
-
}
|
|
1881
|
-
.hc-pin-secondary:active:not(:disabled) .hc-pin-hotel-icon {
|
|
1882
|
-
color: var(--content-action-secondary-active, #111827);
|
|
1883
|
-
}
|
|
1884
|
-
.hc-pin-secondary:focus-visible:not(:disabled) {
|
|
1885
|
-
box-shadow: 0 0 0 2px var(--misc-focus, #3B82F6), 0 0 16px 4px var(--misc-focus, #3B82F6);
|
|
1886
|
-
}
|
|
1887
|
-
.hc-pin-pin:disabled .hc-pin-body {
|
|
1888
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
1889
|
-
border: none;
|
|
1890
|
-
}
|
|
1891
|
-
.hc-pin-pin:disabled .hc-pin-pointer-inner {
|
|
1892
|
-
background-color: var(--background-action-disabled-idle, #E5E7EB);
|
|
1893
|
-
border: none;
|
|
1894
|
-
}
|
|
1895
|
-
.hc-pin-pin:disabled .hc-pin-currency,
|
|
1896
|
-
.hc-pin-pin:disabled .hc-pin-price,
|
|
1897
|
-
.hc-pin-pin:disabled .hc-pin-favorite-icon,
|
|
1898
|
-
.hc-pin-pin:disabled .hc-pin-hotel-icon {
|
|
1899
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1900
|
-
}
|
|
1901
|
-
|
|
1902
|
-
/* src/components/DateSelector/DualCalendar.css */
|
|
1903
|
-
.hc-dual-calendar {
|
|
1904
|
-
width: 100%;
|
|
1905
|
-
}
|
|
1906
|
-
.hc-dual-calendar__navigation {
|
|
1907
|
-
display: flex;
|
|
1908
|
-
align-items: center;
|
|
1909
|
-
justify-content: space-between;
|
|
1910
|
-
margin-bottom: var(--size-rem-1-5, 24px);
|
|
1911
|
-
}
|
|
1912
|
-
.hc-dual-calendar__nav-button {
|
|
1913
|
-
border-radius: 9999px;
|
|
1914
|
-
border: 2px solid var(--border-action-secondary-idle, #D1D5DB);
|
|
1915
|
-
background: var(--background-action-secondary-idle, #fff);
|
|
1916
|
-
cursor: pointer;
|
|
1917
|
-
display: flex;
|
|
1918
|
-
width: 44px;
|
|
1919
|
-
height: 44px;
|
|
1920
|
-
padding: 12px;
|
|
1921
|
-
justify-content: center;
|
|
1922
|
-
align-items: center;
|
|
1923
|
-
aspect-ratio: 1/1;
|
|
1924
|
-
}
|
|
1925
|
-
.hc-dual-calendar__nav-button:hover {
|
|
1926
|
-
border-color: var(--color-red-500, #DC2626);
|
|
1927
|
-
}
|
|
1928
|
-
.hc-dual-calendar__nav-button--disabled {
|
|
1929
|
-
cursor: not-allowed;
|
|
1930
|
-
opacity: 0.4;
|
|
1931
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1932
|
-
pointer-events: none;
|
|
1933
|
-
}
|
|
1934
|
-
.hc-dual-calendar__month-title {
|
|
1935
|
-
color: var(--content-general-primary, #1F2937);
|
|
1936
|
-
text-align: center;
|
|
1937
|
-
font-family: var(--font-primary, system-ui);
|
|
1938
|
-
font-size: var(--text-heading-tiny-font-size, 20px);
|
|
1939
|
-
font-weight: 500;
|
|
1940
|
-
line-height: var(--text-heading-tiny-line-height, 28px);
|
|
1941
|
-
margin: 0 0 var(--size-rem-1, 16px) 0;
|
|
1942
|
-
white-space: nowrap;
|
|
1943
|
-
}
|
|
1944
|
-
.hc-dual-calendar__month-title--mobile {
|
|
1945
|
-
flex: 1;
|
|
1946
|
-
margin: 0;
|
|
1947
|
-
}
|
|
1948
|
-
.hc-dual-calendar__desktop-layout {
|
|
1949
|
-
display: flex;
|
|
1950
|
-
align-items: center;
|
|
1951
|
-
justify-content: space-between;
|
|
1952
|
-
width: 100%;
|
|
1953
|
-
padding: 0 var(--size-rem-0-5, 8px);
|
|
1954
|
-
}
|
|
1955
|
-
.hc-dual-calendar__desktop-layout > .hc-dual-calendar__nav-button {
|
|
1956
|
-
flex-shrink: 0;
|
|
1957
|
-
}
|
|
1958
|
-
.hc-dual-calendar__calendars {
|
|
1959
|
-
display: flex;
|
|
1960
|
-
padding: var(--size-rem-0-5, 8px) 0;
|
|
1961
|
-
justify-content: center;
|
|
1962
|
-
align-items: flex-start;
|
|
1963
|
-
gap: var(--size-rem-2, 32px);
|
|
1964
|
-
flex: 1;
|
|
1965
|
-
}
|
|
1966
|
-
.hc-dual-calendar__calendar {
|
|
1967
|
-
width: 320px;
|
|
1968
|
-
flex-shrink: 0;
|
|
1969
|
-
display: flex;
|
|
1970
|
-
flex-direction: column;
|
|
1971
|
-
}
|
|
1972
|
-
.hc-dual-calendar__calendars--mobile {
|
|
1973
|
-
flex-direction: column;
|
|
1974
|
-
gap: 0;
|
|
1975
|
-
justify-content: flex-start;
|
|
1976
|
-
}
|
|
1977
|
-
.hc-dual-calendar__calendars--mobile .hc-dual-calendar__calendar {
|
|
1978
|
-
width: 100%;
|
|
1979
|
-
}
|
|
1980
|
-
.hc-dual-calendar__weekdays {
|
|
1981
|
-
display: grid;
|
|
1982
|
-
grid-template-columns: repeat(7, 1fr);
|
|
1983
|
-
}
|
|
1984
|
-
.hc-dual-calendar__weekday {
|
|
1985
|
-
color: var(--content-general-primary, #1F2937);
|
|
1986
|
-
text-align: center;
|
|
1987
|
-
font-family: var(--font-primary, system-ui);
|
|
1988
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
1989
|
-
font-weight: var(--font-weight-regular, 400);
|
|
1990
|
-
line-height: var(--text-paragraph-large-line-height, 28px);
|
|
1991
|
-
padding: var(--size-rem-0-5, 8px);
|
|
1992
|
-
}
|
|
1993
|
-
.hc-dual-calendar__weekday--weekend {
|
|
1994
|
-
color: var(--content-action-disabled-idle, #9CA3AF);
|
|
1995
|
-
}
|
|
1996
|
-
.hc-dual-calendar__days {
|
|
1997
|
-
display: grid;
|
|
1998
|
-
grid-template-columns: repeat(7, 1fr);
|
|
1999
|
-
}
|
|
2000
|
-
.hc-dual-calendar__day {
|
|
2001
|
-
aspect-ratio: 1;
|
|
2002
|
-
display: flex;
|
|
2003
|
-
align-items: center;
|
|
2004
|
-
justify-content: center;
|
|
2005
|
-
}
|
|
2006
|
-
.hc-dual-calendar__day-button {
|
|
2007
|
-
width: 100%;
|
|
2008
|
-
height: 100%;
|
|
2009
|
-
background-color: transparent;
|
|
2010
|
-
border: 1px solid transparent;
|
|
2011
|
-
border-radius: 9999px;
|
|
2012
|
-
color: var(--content-general-primary, #1F2937);
|
|
2013
|
-
text-align: center;
|
|
2014
|
-
font-family: var(--font-primary, system-ui);
|
|
2015
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
2016
|
-
font-weight: var(--font-weight-regular, 400);
|
|
2017
|
-
line-height: var(--text-paragraph-large-line-height, 28px);
|
|
2018
|
-
cursor: pointer;
|
|
2019
|
-
transition: all 0.2s ease;
|
|
2020
|
-
display: flex;
|
|
2021
|
-
height: 48px;
|
|
2022
|
-
padding: 4px;
|
|
2023
|
-
justify-content: center;
|
|
2024
|
-
align-items: center;
|
|
2025
|
-
position: relative;
|
|
2026
|
-
z-index: 1;
|
|
2027
|
-
}
|
|
2028
|
-
.hc-dual-calendar__day-button:hover:not(.hc-dual-calendar__day-button--disabled) {
|
|
2029
|
-
background: var(--background-action-highlight-active-light, #FEF2F2);
|
|
2030
|
-
}
|
|
2031
|
-
.hc-dual-calendar__day-button--disabled {
|
|
2032
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
2033
|
-
opacity: 0.4;
|
|
2034
|
-
cursor: not-allowed;
|
|
2035
|
-
}
|
|
2036
|
-
.hc-dual-calendar__day-button--start,
|
|
2037
|
-
.hc-dual-calendar__day-button--end {
|
|
2038
|
-
border-radius: 9999px;
|
|
2039
|
-
border: 1px solid var(--border-action-highlight-idle, #DC2626);
|
|
2040
|
-
background: var(--content-action-highlight-idle, #DC2626);
|
|
2041
|
-
color: #fff;
|
|
2042
|
-
position: relative;
|
|
2043
|
-
z-index: 2;
|
|
2044
|
-
}
|
|
2045
|
-
.hc-dual-calendar__day-button--in-range {
|
|
2046
|
-
border-radius: 0;
|
|
2047
|
-
background: var(--background-general-tertiary, #F3F4F6);
|
|
2048
|
-
}
|
|
2049
|
-
|
|
2050
|
-
/* src/components/DateSelector/WhenContent.css */
|
|
2051
|
-
.hc-when-content {
|
|
2052
|
-
display: flex;
|
|
2053
|
-
flex-direction: column;
|
|
2054
|
-
width: 100%;
|
|
2055
|
-
background: var(--background-general-primary, #fff);
|
|
2056
|
-
}
|
|
2057
|
-
.hc-when-content--expanded {
|
|
2058
|
-
flex: 1;
|
|
2059
|
-
min-height: auto;
|
|
2060
|
-
overflow: hidden;
|
|
2061
|
-
padding: 0;
|
|
2062
|
-
}
|
|
2063
|
-
.hc-when-content__section-title {
|
|
2064
|
-
color: var(--content-general-primary, #1F2937);
|
|
2065
|
-
font-family: var(--font-primary, system-ui);
|
|
2066
|
-
font-size: var(--text-heading-small-font-size, 24px);
|
|
2067
|
-
font-weight: 500;
|
|
2068
|
-
line-height: var(--text-heading-small-line-height, 32px);
|
|
2069
|
-
letter-spacing: -0.6px;
|
|
2070
|
-
margin: 0;
|
|
2071
|
-
}
|
|
2072
|
-
.hc-when-content__header {
|
|
2073
|
-
display: flex;
|
|
2074
|
-
justify-content: center;
|
|
2075
|
-
align-items: center;
|
|
2076
|
-
padding: var(--size-rem-1, 16px);
|
|
2077
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2078
|
-
}
|
|
2079
|
-
@media (max-width: 767px) {
|
|
2080
|
-
.hc-when-content__header {
|
|
2081
|
-
padding: var(--size-rem-1, 16px) 0;
|
|
2082
|
-
gap: var(--size-rem-0-75, 12px);
|
|
2083
|
-
flex-shrink: 0;
|
|
2084
|
-
}
|
|
2085
|
-
}
|
|
2086
|
-
.hc-when-content__tabs {
|
|
2087
|
-
display: flex;
|
|
2088
|
-
width: 100%;
|
|
2089
|
-
border-radius: 9999px;
|
|
2090
|
-
border: 1px solid var(--border-general-divider, #E5E7EB);
|
|
2091
|
-
background: var(--background-general-primary, #fff);
|
|
2092
|
-
padding: var(--size-rem-0-25, 4px);
|
|
2093
|
-
align-items: center;
|
|
2094
|
-
gap: var(--size-rem-0-25, 4px);
|
|
2095
|
-
}
|
|
2096
|
-
.hc-when-content__tab {
|
|
2097
|
-
background-color: transparent;
|
|
2098
|
-
border: none;
|
|
2099
|
-
border-radius: 9999px;
|
|
2100
|
-
font-family: var(--font-primary, system-ui);
|
|
2101
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
2102
|
-
font-weight: var(--text-label-medium-font-weight, 500);
|
|
2103
|
-
line-height: var(--text-label-medium-line-height, 20px);
|
|
2104
|
-
color: var(--content-action-secondary-idle, #6B7280);
|
|
2105
|
-
cursor: pointer;
|
|
2106
|
-
transition: all 0.2s ease;
|
|
2107
|
-
display: flex;
|
|
2108
|
-
padding: 10px var(--size-rem-1-5, 24px);
|
|
2109
|
-
justify-content: center;
|
|
2110
|
-
align-items: center;
|
|
2111
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2112
|
-
flex: 1;
|
|
2113
|
-
min-width: 100px;
|
|
2114
|
-
}
|
|
2115
|
-
.hc-when-content__tab:hover:not(.hc-when-content__tab--active) {
|
|
2116
|
-
background: var(--background-general-secondary, #F9FAFB);
|
|
2117
|
-
}
|
|
2118
|
-
.hc-when-content__tab--active {
|
|
2119
|
-
color: #fff;
|
|
2120
|
-
background: var(--content-action-highlight-idle, #DC2626);
|
|
2121
|
-
}
|
|
2122
|
-
.hc-when-content__apply {
|
|
2123
|
-
display: flex;
|
|
2124
|
-
align-items: center;
|
|
2125
|
-
}
|
|
2126
|
-
.hc-when-content__content {
|
|
2127
|
-
flex: 1;
|
|
2128
|
-
overflow-y: auto;
|
|
2129
|
-
padding: var(--size-rem-3, 48px) var(--size-rem-1, 16px);
|
|
2130
|
-
gap: var(--size-rem-2, 32px);
|
|
2131
|
-
}
|
|
2132
|
-
@media (max-width: 767px) {
|
|
2133
|
-
.hc-when-content__content {
|
|
2134
|
-
padding: var(--size-rem-1, 16px) 0;
|
|
2135
|
-
}
|
|
2136
|
-
}
|
|
2137
|
-
.hc-when-content__content--dates {
|
|
2138
|
-
padding: var(--size-rem-1, 16px);
|
|
2139
|
-
}
|
|
2140
|
-
@media (max-width: 767px) {
|
|
2141
|
-
.hc-when-content__content--dates {
|
|
2142
|
-
padding: 0;
|
|
2143
|
-
}
|
|
2144
|
-
}
|
|
2145
|
-
.hc-when-content__flexible {
|
|
2146
|
-
display: flex;
|
|
2147
|
-
flex-direction: column;
|
|
2148
|
-
align-items: center;
|
|
2149
|
-
padding: 0 var(--size-rem-1, 16px);
|
|
2150
|
-
}
|
|
2151
|
-
@media (max-width: 767px) {
|
|
2152
|
-
.hc-when-content__flexible {
|
|
2153
|
-
padding: 0;
|
|
2154
|
-
}
|
|
2155
|
-
}
|
|
2156
|
-
.hc-when-content__heading {
|
|
2157
|
-
color: var(--content-general-primary, #1F2937);
|
|
2158
|
-
text-align: center;
|
|
2159
|
-
font-family: var(--font-primary, system-ui);
|
|
2160
|
-
font-size: var(--text-paragraph-large-font-size, 18px);
|
|
2161
|
-
font-weight: var(--font-weight-regular, 400);
|
|
2162
|
-
line-height: var(--text-paragraph-large-line-height, 28px);
|
|
2163
|
-
margin-bottom: var(--size-rem-1, 16px);
|
|
2164
|
-
}
|
|
2165
|
-
.hc-when-content__month-grid {
|
|
2166
|
-
display: grid;
|
|
2167
|
-
grid-template-columns: repeat(4, 1fr);
|
|
2168
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2169
|
-
width: 100%;
|
|
2170
|
-
max-width: 700px;
|
|
2171
|
-
}
|
|
2172
|
-
.hc-when-content__month-grid--mobile {
|
|
2173
|
-
grid-template-columns: repeat(2, 1fr);
|
|
2174
|
-
}
|
|
2175
|
-
.hc-when-content__month-button {
|
|
2176
|
-
display: flex;
|
|
2177
|
-
flex-direction: column;
|
|
2178
|
-
align-items: center;
|
|
2179
|
-
justify-content: center;
|
|
2180
|
-
min-height: 56px;
|
|
2181
|
-
min-width: 160px;
|
|
2182
|
-
padding: 6px 0 8px;
|
|
2183
|
-
gap: 0;
|
|
2184
|
-
cursor: pointer;
|
|
2185
|
-
transition: all 0.2s ease;
|
|
2186
|
-
border-radius: var(--radius-lg, 12px);
|
|
2187
|
-
border: 1px solid var(--border-general-divider, #E5E7EB);
|
|
2188
|
-
background: var(--color-gray-50, #F9FAFB);
|
|
2189
|
-
flex: 1;
|
|
2190
|
-
}
|
|
2191
|
-
@media (max-width: 767px) {
|
|
2192
|
-
.hc-when-content__month-button {
|
|
2193
|
-
min-width: auto;
|
|
2194
|
-
}
|
|
2195
|
-
}
|
|
2196
|
-
.hc-when-content__month-button:hover:not(.hc-when-content__month-button--disabled) {
|
|
2197
|
-
border-color: var(--border-action-highlight-hover, #DC2626);
|
|
2198
|
-
background: var(--background-action-highlight-hover-light, #FEF2F2);
|
|
2199
|
-
}
|
|
2200
|
-
.hc-when-content__month-button--selected {
|
|
2201
|
-
border-color: var(--border-action-highlight-active, #DC2626);
|
|
2202
|
-
background: var(--background-action-highlight-active-light, #FEE2E2);
|
|
2203
|
-
}
|
|
2204
|
-
.hc-when-content__month-button--disabled {
|
|
2205
|
-
opacity: 0.4;
|
|
2206
|
-
cursor: not-allowed;
|
|
2207
|
-
}
|
|
2208
|
-
.hc-when-content__month-label {
|
|
2209
|
-
color: var(--content-general-primary, #1F2937);
|
|
2210
|
-
text-align: center;
|
|
2211
|
-
font-family: var(--font-primary, system-ui);
|
|
2212
|
-
font-size: var(--text-paragraph-small-font-size, 14px);
|
|
2213
|
-
font-weight: var(--font-weight-regular, 400);
|
|
2214
|
-
line-height: var(--text-paragraph-small-line-height, 20px);
|
|
2215
|
-
}
|
|
2216
|
-
.hc-when-content__month-year {
|
|
2217
|
-
color: var(--content-general-secondary, #6B7280);
|
|
2218
|
-
text-align: center;
|
|
2219
|
-
font-family: var(--font-primary, system-ui);
|
|
2220
|
-
font-size: var(--text-paragraph-tiny-font-size, 12px);
|
|
2221
|
-
font-weight: var(--font-weight-regular, 400);
|
|
2222
|
-
line-height: var(--text-paragraph-tiny-line-height, 16px);
|
|
2223
|
-
}
|
|
2224
|
-
.hc-when-content__month-button--selected .hc-when-content__month-label,
|
|
2225
|
-
.hc-when-content__month-button--selected .hc-when-content__month-year {
|
|
2226
|
-
color: var(--content-action-highlight-active, #DC2626);
|
|
2227
|
-
}
|
|
2228
|
-
.hc-when-content__month-button:hover:not(.hc-when-content__month-button--disabled) .hc-when-content__month-label,
|
|
2229
|
-
.hc-when-content__month-button:hover:not(.hc-when-content__month-button--disabled) .hc-when-content__month-year {
|
|
2230
|
-
color: var(--content-action-highlight-hover, #DC2626);
|
|
2231
|
-
}
|
|
2232
|
-
.hc-when-content__anytime-button {
|
|
2233
|
-
justify-content: center;
|
|
2234
|
-
}
|
|
2235
|
-
.hc-when-content__anytime-button .hc-when-content__month-label {
|
|
2236
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2237
|
-
}
|
|
2238
|
-
.hc-when-content__dates {
|
|
2239
|
-
width: 100%;
|
|
2240
|
-
}
|
|
2241
|
-
|
|
2242
|
-
/* src/components/DateSelector/DateSelector.css */
|
|
2243
|
-
.hc-date-selector {
|
|
2244
|
-
position: relative;
|
|
2245
|
-
width: 100%;
|
|
2246
|
-
flex: 1;
|
|
2247
|
-
}
|
|
2248
|
-
.hc-date-selector__button {
|
|
2249
|
-
display: flex;
|
|
2250
|
-
align-items: center;
|
|
2251
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2252
|
-
padding: var(--size-rem-0-75, 12px) var(--size-rem-1, 16px);
|
|
2253
|
-
background-color: transparent;
|
|
2254
|
-
border: none;
|
|
2255
|
-
border-radius: var(--radius-base, 8px);
|
|
2256
|
-
font-family: var(--font-primary, system-ui);
|
|
2257
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
2258
|
-
font-weight: var(--font-weight-regular, 400);
|
|
2259
|
-
color: var(--content-general-primary, #1F2937);
|
|
2260
|
-
cursor: pointer;
|
|
2261
|
-
transition: border-color 0.2s ease;
|
|
2262
|
-
width: 100%;
|
|
2263
|
-
height: auto;
|
|
2264
|
-
}
|
|
2265
|
-
.hc-date-selector__button:hover:not(.hc-date-selector__button--disabled) {
|
|
2266
|
-
border-color: var(--color-red-500, #DC2626);
|
|
2267
|
-
}
|
|
2268
|
-
.hc-date-selector__button:focus {
|
|
2269
|
-
outline: none;
|
|
2270
|
-
border-color: var(--color-red-500, #DC2626);
|
|
2271
|
-
box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
|
|
2272
|
-
}
|
|
2273
|
-
.hc-date-selector__button--disabled {
|
|
2274
|
-
opacity: 0.5;
|
|
2275
|
-
cursor: not-allowed;
|
|
2276
|
-
}
|
|
2277
|
-
.hc-date-selector__icon {
|
|
2278
|
-
display: flex;
|
|
2279
|
-
align-items: center;
|
|
2280
|
-
color: var(--content-general-secondary, #6B7280);
|
|
2281
|
-
}
|
|
2282
|
-
.hc-date-selector__label {
|
|
2283
|
-
flex: 1;
|
|
2284
|
-
text-align: left;
|
|
2285
|
-
overflow: hidden;
|
|
2286
|
-
text-overflow: ellipsis;
|
|
2287
|
-
white-space: nowrap;
|
|
2288
|
-
}
|
|
2289
|
-
.hc-date-selector__backdrop {
|
|
2290
|
-
position: fixed;
|
|
2291
|
-
top: 0;
|
|
2292
|
-
left: 0;
|
|
2293
|
-
right: 0;
|
|
2294
|
-
bottom: 0;
|
|
2295
|
-
background-color: transparent;
|
|
2296
|
-
z-index: 99;
|
|
2297
|
-
}
|
|
2298
|
-
@media (max-width: 767px) {
|
|
2299
|
-
.hc-date-selector__backdrop {
|
|
2300
|
-
background-color: rgba(0, 0, 0, 0.5);
|
|
2301
|
-
animation: fadeIn 0.2s ease;
|
|
2302
|
-
}
|
|
2303
|
-
@keyframes fadeIn {
|
|
2304
|
-
from {
|
|
2305
|
-
opacity: 0;
|
|
2306
|
-
}
|
|
2307
|
-
to {
|
|
2308
|
-
opacity: 1;
|
|
2309
|
-
}
|
|
2310
|
-
}
|
|
2311
|
-
}
|
|
2312
|
-
.hc-date-selector__dropdown {
|
|
2313
|
-
position: fixed;
|
|
2314
|
-
left: 50%;
|
|
2315
|
-
transform: translateX(-50%) translateY(-10px);
|
|
2316
|
-
background-color: var(--background-general-primary, #fff);
|
|
2317
|
-
border: 1px solid var(--border-general-divider, #E5E7EB);
|
|
2318
|
-
border-radius: var(--radius-2xl, 16px);
|
|
2319
|
-
box-shadow: 0px 20px 50px -10px rgba(0, 0, 0, 0.15);
|
|
2320
|
-
z-index: 100;
|
|
2321
|
-
opacity: 0;
|
|
2322
|
-
visibility: hidden;
|
|
2323
|
-
pointer-events: none;
|
|
2324
|
-
transition:
|
|
2325
|
-
opacity 0.2s ease,
|
|
2326
|
-
transform 0.2s ease,
|
|
2327
|
-
visibility 0.2s;
|
|
2328
|
-
width: 768px;
|
|
2329
|
-
max-width: calc(100vw - var(--size-rem-2, 32px));
|
|
2330
|
-
max-height: calc(100vh - 200px);
|
|
2331
|
-
overflow: hidden;
|
|
2332
|
-
}
|
|
2333
|
-
.hc-date-selector__dropdown--open {
|
|
2334
|
-
opacity: 1;
|
|
2335
|
-
visibility: visible;
|
|
2336
|
-
pointer-events: auto;
|
|
2337
|
-
transform: translateX(-50%) translateY(10px);
|
|
2338
|
-
}
|
|
2339
|
-
.hc-date-selector__dropdown--mobile {
|
|
2340
|
-
position: fixed;
|
|
2341
|
-
top: auto;
|
|
2342
|
-
bottom: 0;
|
|
2343
|
-
left: 0;
|
|
2344
|
-
right: 0;
|
|
2345
|
-
width: 100%;
|
|
2346
|
-
max-width: 100vw;
|
|
2347
|
-
max-height: 85vh;
|
|
2348
|
-
border-radius: var(--radius-2xl, 16px) var(--radius-2xl, 16px) 0 0;
|
|
2349
|
-
transform: translateY(100%);
|
|
2350
|
-
}
|
|
2351
|
-
.hc-date-selector__dropdown--mobile.hc-date-selector__dropdown--open {
|
|
2352
|
-
transform: translateY(0);
|
|
2353
|
-
}
|
|
2354
|
-
|
|
2355
|
-
/* src/components/GuestSelector/GuestContent.css */
|
|
2356
|
-
.hc-guest-content {
|
|
2357
|
-
display: flex;
|
|
2358
|
-
flex-direction: column;
|
|
2359
|
-
width: 100%;
|
|
2360
|
-
}
|
|
2361
|
-
.hc-guest-content__row {
|
|
2362
|
-
display: flex;
|
|
2363
|
-
align-items: center;
|
|
2364
|
-
justify-content: space-between;
|
|
2365
|
-
height: 76px;
|
|
2366
|
-
padding: var(--size-rem-1, 16px) 0;
|
|
2367
|
-
}
|
|
2368
|
-
.hc-guest-content__row--children {
|
|
2369
|
-
flex-direction: column;
|
|
2370
|
-
align-items: unset !important;
|
|
2371
|
-
justify-content: unset !important;
|
|
2372
|
-
height: auto;
|
|
2373
|
-
min-height: auto;
|
|
2374
|
-
}
|
|
2375
|
-
.hc-guest-content__row-header {
|
|
2376
|
-
display: flex;
|
|
2377
|
-
align-items: center;
|
|
2378
|
-
justify-content: space-between;
|
|
2379
|
-
margin-bottom: var(--size-rem-1, 16px);
|
|
2380
|
-
}
|
|
2381
|
-
.hc-guest-content__row:not(:last-child) {
|
|
2382
|
-
border-bottom: 1px solid var(--border-general-divider, #E5E7EB);
|
|
2383
|
-
}
|
|
2384
|
-
.hc-guest-content__label {
|
|
2385
|
-
display: flex;
|
|
2386
|
-
flex-direction: column;
|
|
2387
|
-
gap: var(--size-rem-0-25, 4px);
|
|
2388
|
-
}
|
|
2389
|
-
.hc-guest-content__name {
|
|
2390
|
-
color: var(--content-general-primary, #1F2937);
|
|
2391
|
-
font-family: var(--text-label-large-font-family, system-ui, -apple-system, sans-serif);
|
|
2392
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
2393
|
-
font-style: normal;
|
|
2394
|
-
font-weight: 500;
|
|
2395
|
-
line-height: var(--text-label-large-line-height, 1.56);
|
|
2396
|
-
}
|
|
2397
|
-
.hc-guest-content__counter {
|
|
2398
|
-
display: flex;
|
|
2399
|
-
align-items: center;
|
|
2400
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2401
|
-
}
|
|
2402
|
-
.hc-guest-content__counter-button {
|
|
2403
|
-
border-radius: 88888888px !important;
|
|
2404
|
-
border: 2px solid var(--border-action-secondary-idle, #D1D5DB) !important;
|
|
2405
|
-
background: var(--background-action-secondary-idle, #FFFFFF) !important;
|
|
2406
|
-
display: flex;
|
|
2407
|
-
width: 44px !important;
|
|
2408
|
-
height: 44px !important;
|
|
2409
|
-
padding: 12px !important;
|
|
2410
|
-
justify-content: center !important;
|
|
2411
|
-
align-items: center;
|
|
2412
|
-
aspect-ratio: 1 / 1;
|
|
2413
|
-
cursor: pointer !important;
|
|
2414
|
-
transition: all 0.2s ease;
|
|
2415
|
-
}
|
|
2416
|
-
.hc-guest-content__counter-button svg {
|
|
2417
|
-
width: 20px;
|
|
2418
|
-
height: 20px;
|
|
2419
|
-
flex-shrink: 0;
|
|
2420
|
-
}
|
|
2421
|
-
.hc-guest-content__counter-button:hover:not(:disabled) {
|
|
2422
|
-
border-color: var(--color-red-500, #EF4444);
|
|
2423
|
-
color: var(--color-red-500, #EF4444);
|
|
2424
|
-
}
|
|
2425
|
-
.hc-guest-content__counter-button:active:not(:disabled) {
|
|
2426
|
-
transform: scale(0.95);
|
|
2427
|
-
}
|
|
2428
|
-
.hc-guest-content__counter-button:disabled {
|
|
2429
|
-
cursor: not-allowed;
|
|
2430
|
-
border-radius: 88888888px !important;
|
|
2431
|
-
background: var(--background-action-disabled-idle, #F3F4F6) !important;
|
|
2432
|
-
border: none !important;
|
|
2433
|
-
}
|
|
2434
|
-
.hc-guest-content__counter-value {
|
|
2435
|
-
color: var(--content-general-primary, #1F2937);
|
|
2436
|
-
text-align: center;
|
|
2437
|
-
font-family: var(--text-paragraph-base-font-family, system-ui, -apple-system, sans-serif);
|
|
2438
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
2439
|
-
font-style: normal;
|
|
2440
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
2441
|
-
line-height: var(--text-paragraph-base-line-height, 1.5);
|
|
2442
|
-
width: 24px;
|
|
2443
|
-
min-width: 24px;
|
|
2444
|
-
}
|
|
2445
|
-
.hc-guest-content__toggle-wrapper {
|
|
2446
|
-
display: flex;
|
|
2447
|
-
align-items: center;
|
|
2448
|
-
}
|
|
2449
|
-
.hc-guest-content__toggle {
|
|
2450
|
-
position: relative;
|
|
2451
|
-
display: inline-block;
|
|
2452
|
-
width: 50px;
|
|
2453
|
-
height: 28px;
|
|
2454
|
-
aspect-ratio: 25/14;
|
|
2455
|
-
}
|
|
2456
|
-
.hc-guest-content__toggle input {
|
|
2457
|
-
opacity: 0;
|
|
2458
|
-
width: 0;
|
|
2459
|
-
height: 0;
|
|
2460
|
-
}
|
|
2461
|
-
.hc-guest-content__slider {
|
|
2462
|
-
position: absolute;
|
|
2463
|
-
cursor: pointer;
|
|
2464
|
-
inset: 0;
|
|
2465
|
-
transition: 0.3s;
|
|
2466
|
-
border-radius: 999px;
|
|
2467
|
-
border-radius: 88888888px;
|
|
2468
|
-
background: var(--background-action-disabled-idle, #F3F4F6);
|
|
2469
|
-
}
|
|
2470
|
-
.hc-guest-content__slider::before {
|
|
2471
|
-
position: absolute;
|
|
2472
|
-
content: "";
|
|
2473
|
-
height: 24px;
|
|
2474
|
-
width: 24px;
|
|
2475
|
-
left: 2px;
|
|
2476
|
-
top: 2px;
|
|
2477
|
-
background-color: var(--color-ink-base-white, #FFFFFF);
|
|
2478
|
-
transition: 0.3s;
|
|
2479
|
-
border-radius: 88888888px;
|
|
2480
|
-
}
|
|
2481
|
-
.hc-guest-content__toggle input:checked + .hc-guest-content__slider {
|
|
2482
|
-
border-radius: 88888888px;
|
|
2483
|
-
background: var(--content-action-highlight-idle, #C81E4C);
|
|
2484
|
-
}
|
|
2485
|
-
.hc-guest-content__toggle input:checked + .hc-guest-content__slider::before {
|
|
2486
|
-
transform: translateX(22px);
|
|
2487
|
-
}
|
|
2488
|
-
.hc-guest-content__children-dropdowns {
|
|
2489
|
-
display: grid;
|
|
2490
|
-
gap: 12px;
|
|
2491
|
-
width: 100%;
|
|
2492
|
-
max-height: max-content;
|
|
2493
|
-
padding: var(--size-rem-1, 16px);
|
|
2494
|
-
overflow: auto;
|
|
2495
|
-
border-radius: var(--size-rem-0-75, 12px);
|
|
2496
|
-
background: var(--background-general-tertiary, #F9FAFB);
|
|
2497
|
-
box-sizing: border-box;
|
|
2498
|
-
}
|
|
2499
|
-
.hc-guest-content__child-dropdown {
|
|
2500
|
-
display: flex;
|
|
2501
|
-
flex-direction: column;
|
|
2502
|
-
align-items: flex-start;
|
|
2503
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2504
|
-
align-self: stretch;
|
|
2505
|
-
border-radius: var(--size-rem-0-75, 12px);
|
|
2506
|
-
height: max-content;
|
|
2507
|
-
}
|
|
2508
|
-
.hc-guest-content__child-dropdown label {
|
|
2509
|
-
color: var(--content-general-primary, #1F2937);
|
|
2510
|
-
font-family: var(--text-label-medium-font-family, system-ui, -apple-system, sans-serif);
|
|
2511
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
2512
|
-
font-style: normal;
|
|
2513
|
-
font-weight: 500;
|
|
2514
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
2515
|
-
}
|
|
2516
|
-
.hc-guest-content__select {
|
|
2517
|
-
appearance: none;
|
|
2518
|
-
-webkit-appearance: none;
|
|
2519
|
-
-moz-appearance: none;
|
|
2520
|
-
width: 100%;
|
|
2521
|
-
display: flex;
|
|
2522
|
-
padding: var(--size-rem-0-75, 12px);
|
|
2523
|
-
align-items: center;
|
|
2524
|
-
gap: var(--size-rem-0-75, 12px);
|
|
2525
|
-
align-self: stretch;
|
|
2526
|
-
border-radius: var(--size-rem-0-5, 8px);
|
|
2527
|
-
border: 1px solid var(--border-action-secondary-idle, #D1D5DB);
|
|
2528
|
-
background: var(--background-general-primary, #FFFFFF);
|
|
2529
|
-
color: var(--content-general-primary, #1F2937);
|
|
2530
|
-
font-family: var(--text-paragraph-base-font-family, system-ui, -apple-system, sans-serif);
|
|
2531
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
2532
|
-
font-style: normal;
|
|
2533
|
-
font-weight: var(--text-paragraph-base-font-weight, 400);
|
|
2534
|
-
line-height: var(--text-paragraph-base-line-height, 1.5);
|
|
2535
|
-
}
|
|
2536
|
-
.hc-guest-content__select-wrapper {
|
|
2537
|
-
position: relative;
|
|
2538
|
-
width: 100%;
|
|
2539
|
-
}
|
|
2540
|
-
.hc-guest-content__select-icon {
|
|
2541
|
-
position: absolute;
|
|
2542
|
-
right: 12px;
|
|
2543
|
-
top: 50%;
|
|
2544
|
-
transform: translateY(-50%);
|
|
2545
|
-
pointer-events: none;
|
|
2546
|
-
transition: transform 0.2s ease;
|
|
2547
|
-
}
|
|
2548
|
-
.hc-guest-content__select--error {
|
|
2549
|
-
border: 1px solid var(--color-red-500, #EF4444) !important;
|
|
2550
|
-
}
|
|
2551
|
-
.hc-guest-content__error-text {
|
|
2552
|
-
color: var(--color-red-500, #EF4444);
|
|
2553
|
-
font-size: 12px;
|
|
2554
|
-
}
|
|
2555
|
-
|
|
2556
|
-
/* src/components/HotelCard/HotelCard.css */
|
|
2557
|
-
.hc-hotel-card {
|
|
2558
|
-
width: 100%;
|
|
2559
|
-
background-color: var(--color-ink-base-white, #ffffff);
|
|
2560
|
-
border-radius: 24px;
|
|
2561
|
-
border: 1px solid var(--border-general-divider, #E5E7EB);
|
|
2562
|
-
overflow: hidden;
|
|
2563
|
-
display: flex;
|
|
2564
|
-
flex-direction: column;
|
|
2565
|
-
transition: box-shadow 0.2s ease;
|
|
2566
|
-
}
|
|
2567
|
-
.hc-hotel-card:hover {
|
|
2568
|
-
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
|
|
2569
|
-
}
|
|
2570
|
-
.hc-hotel-card__image-section {
|
|
2571
|
-
position: relative;
|
|
2572
|
-
width: 100%;
|
|
2573
|
-
height: 268.5px;
|
|
2574
|
-
overflow: hidden;
|
|
2575
|
-
}
|
|
2576
|
-
.hc-hotel-card__image {
|
|
2577
|
-
width: 100%;
|
|
2578
|
-
height: 100%;
|
|
2579
|
-
object-fit: cover;
|
|
2580
|
-
}
|
|
2581
|
-
.hc-hotel-card__image-overlay {
|
|
2582
|
-
position: absolute;
|
|
2583
|
-
top: 0;
|
|
2584
|
-
left: 0;
|
|
2585
|
-
right: 0;
|
|
2586
|
-
bottom: 0;
|
|
2587
|
-
background:
|
|
2588
|
-
linear-gradient(
|
|
2589
|
-
0deg,
|
|
2590
|
-
rgba(31, 41, 55, 0.00) 65%,
|
|
2591
|
-
rgba(31, 41, 55, 0.20) 100%);
|
|
2592
|
-
pointer-events: none;
|
|
2593
|
-
}
|
|
2594
|
-
.hc-hotel-card__top-overlay {
|
|
2595
|
-
position: absolute;
|
|
2596
|
-
top: 12px;
|
|
2597
|
-
left: 12px;
|
|
2598
|
-
right: 12px;
|
|
2599
|
-
display: flex;
|
|
2600
|
-
justify-content: space-between;
|
|
2601
|
-
align-items: flex-start;
|
|
2602
|
-
z-index: 2;
|
|
2603
|
-
}
|
|
2604
|
-
.hc-hotel-card__badges-column {
|
|
2605
|
-
display: flex;
|
|
2606
|
-
flex-direction: column;
|
|
2607
|
-
gap: 4px;
|
|
2608
|
-
}
|
|
2609
|
-
.hc-hotel-card__new-badge {
|
|
2610
|
-
display: flex;
|
|
2611
|
-
align-items: center;
|
|
2612
|
-
gap: 4px;
|
|
2613
|
-
padding: 4px 10px;
|
|
2614
|
-
background: #00857C;
|
|
2615
|
-
border-radius: 9999px;
|
|
2616
|
-
color: white;
|
|
2617
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
2618
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2619
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
2620
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2621
|
-
}
|
|
2622
|
-
.hc-hotel-card__favorite-button {
|
|
2623
|
-
width: 44px;
|
|
2624
|
-
height: 44px;
|
|
2625
|
-
background-color: transparent;
|
|
2626
|
-
border: none;
|
|
2627
|
-
display: flex;
|
|
2628
|
-
align-items: center;
|
|
2629
|
-
justify-content: center;
|
|
2630
|
-
cursor: pointer;
|
|
2631
|
-
transition: transform 0.2s ease;
|
|
2632
|
-
padding: 8px;
|
|
2633
|
-
}
|
|
2634
|
-
.hc-hotel-card__favorite-button:hover {
|
|
2635
|
-
transform: scale(1.1);
|
|
2636
|
-
}
|
|
2637
|
-
.hc-hotel-card__favorite-button:active {
|
|
2638
|
-
transform: scale(0.95);
|
|
2639
|
-
}
|
|
2640
|
-
.hc-hotel-card__heart-icon {
|
|
2641
|
-
width: 24px;
|
|
2642
|
-
height: 24px;
|
|
2643
|
-
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
|
|
2644
|
-
}
|
|
2645
|
-
.hc-hotel-card__heart-icon--filled {
|
|
2646
|
-
width: 24px;
|
|
2647
|
-
height: 24px;
|
|
2648
|
-
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(4431%) hue-rotate(346deg) brightness(93%) contrast(95%);
|
|
2649
|
-
}
|
|
2650
|
-
.hc-hotel-card__nav-button {
|
|
2651
|
-
position: absolute;
|
|
2652
|
-
top: 50%;
|
|
2653
|
-
transform: translateY(-50%);
|
|
2654
|
-
width: 44px;
|
|
2655
|
-
height: 44px;
|
|
2656
|
-
padding: 12px;
|
|
2657
|
-
background-color: rgba(255, 255, 255, 0.8);
|
|
2658
|
-
border: none;
|
|
2659
|
-
border-radius: 50%;
|
|
2660
|
-
outline: 2px solid transparent;
|
|
2661
|
-
outline-offset: -2px;
|
|
2662
|
-
display: flex;
|
|
2663
|
-
align-items: center;
|
|
2664
|
-
justify-content: center;
|
|
2665
|
-
cursor: pointer;
|
|
2666
|
-
z-index: 2;
|
|
2667
|
-
transition: background-color 0.2s ease, outline-color 0.2s ease;
|
|
2668
|
-
}
|
|
2669
|
-
.hc-hotel-card__nav-button:hover {
|
|
2670
|
-
background-color: rgba(255, 255, 255, 0.95);
|
|
2671
|
-
outline-color: rgba(0, 0, 0, 0.1);
|
|
2672
|
-
}
|
|
2673
|
-
.hc-hotel-card__nav-button--left {
|
|
2674
|
-
left: 12px;
|
|
2675
|
-
}
|
|
2676
|
-
.hc-hotel-card__nav-button--right {
|
|
2677
|
-
right: 12px;
|
|
2678
|
-
}
|
|
2679
|
-
.hc-hotel-card__image-indicator {
|
|
2680
|
-
position: absolute;
|
|
2681
|
-
bottom: 12px;
|
|
2682
|
-
left: 50%;
|
|
2683
|
-
transform: translateX(-50%);
|
|
2684
|
-
display: flex;
|
|
2685
|
-
gap: 6px;
|
|
2686
|
-
z-index: 2;
|
|
2687
|
-
}
|
|
2688
|
-
.hc-hotel-card__indicator-dot {
|
|
2689
|
-
width: 6px;
|
|
2690
|
-
height: 6px;
|
|
2691
|
-
border-radius: 50%;
|
|
2692
|
-
background-color: rgba(255, 255, 255, 0.5);
|
|
2693
|
-
transition: background-color 0.2s ease;
|
|
2694
|
-
}
|
|
2695
|
-
.hc-hotel-card__indicator-dot--active {
|
|
2696
|
-
background-color: var(--color-ink-base-white, #ffffff);
|
|
2697
|
-
}
|
|
2698
|
-
.hc-hotel-card__usp-banner {
|
|
2699
|
-
width: 100%;
|
|
2700
|
-
padding: 8px 24px;
|
|
2701
|
-
background-color: var(--background-status-success-idle, #ECFDF5);
|
|
2702
|
-
text-align: center;
|
|
2703
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
2704
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2705
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2706
|
-
color: var(--content-status-success-idle, #006962);
|
|
2707
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
2708
|
-
}
|
|
2709
|
-
.hc-hotel-card__content {
|
|
2710
|
-
padding: var(--size-rem-1-5, 24px);
|
|
2711
|
-
display: flex;
|
|
2712
|
-
flex-direction: column;
|
|
2713
|
-
}
|
|
2714
|
-
.hc-hotel-card__header-section {
|
|
2715
|
-
display: flex;
|
|
2716
|
-
flex-direction: column;
|
|
2717
|
-
}
|
|
2718
|
-
.hc-hotel-card__rating-section {
|
|
2719
|
-
display: flex;
|
|
2720
|
-
justify-content: space-between;
|
|
2721
|
-
align-items: center;
|
|
2722
|
-
}
|
|
2723
|
-
.hc-hotel-card__stars {
|
|
2724
|
-
display: flex;
|
|
2725
|
-
align-items: center;
|
|
2726
|
-
gap: 2px;
|
|
2727
|
-
}
|
|
2728
|
-
.hc-hotel-card__stars-indicator {
|
|
2729
|
-
margin-left: 4px;
|
|
2730
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
2731
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2732
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2733
|
-
color: var(--content-general-tertiary, #6B7280);
|
|
2734
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
2735
|
-
}
|
|
2736
|
-
.hc-hotel-card__swiss-lodge {
|
|
2737
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
2738
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2739
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2740
|
-
color: var(--content-general-secondary, #374151);
|
|
2741
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
2742
|
-
}
|
|
2743
|
-
.hc-hotel-card__rating-wrapper {
|
|
2744
|
-
display: flex;
|
|
2745
|
-
align-items: center;
|
|
2746
|
-
gap: 6px;
|
|
2747
|
-
}
|
|
2748
|
-
.hc-hotel-card__rating-text {
|
|
2749
|
-
color: var(--content-general-secondary, #6B7280);
|
|
2750
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2751
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
2752
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2753
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
2754
|
-
}
|
|
2755
|
-
.hc-hotel-card__rating-badge {
|
|
2756
|
-
position: relative;
|
|
2757
|
-
display: flex;
|
|
2758
|
-
align-items: center;
|
|
2759
|
-
justify-content: center;
|
|
2760
|
-
height: 24px;
|
|
2761
|
-
min-width: 32px;
|
|
2762
|
-
padding: 4px 8px;
|
|
2763
|
-
}
|
|
2764
|
-
.hc-hotel-card__rating-badge-bg {
|
|
2765
|
-
position: absolute;
|
|
2766
|
-
top: 0;
|
|
2767
|
-
left: 0;
|
|
2768
|
-
width: 100%;
|
|
2769
|
-
height: 100%;
|
|
2770
|
-
z-index: 1;
|
|
2771
|
-
}
|
|
2772
|
-
.hc-hotel-card__rating-number {
|
|
2773
|
-
position: relative;
|
|
2774
|
-
top: -2px;
|
|
2775
|
-
z-index: 2;
|
|
2776
|
-
color: var(--content-action-highlight-inverse-idle, #ffffff);
|
|
2777
|
-
text-align: center;
|
|
2778
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2779
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
2780
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2781
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
2782
|
-
}
|
|
2783
|
-
.hc-hotel-card__hotel-name {
|
|
2784
|
-
color: var(--content-general-primary, #1F2937);
|
|
2785
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2786
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
2787
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2788
|
-
line-height: var(--text-label-large-line-height, 28px);
|
|
2789
|
-
margin: 0;
|
|
2790
|
-
margin-bottom: 8px;
|
|
2791
|
-
}
|
|
2792
|
-
.hc-hotel-card__location-section {
|
|
2793
|
-
display: flex;
|
|
2794
|
-
align-items: center;
|
|
2795
|
-
gap: 4px;
|
|
2796
|
-
margin-bottom: var(--size-rem-1, 16px);
|
|
2797
|
-
}
|
|
2798
|
-
.hc-hotel-card__pin-icon {
|
|
2799
|
-
width: 16px;
|
|
2800
|
-
height: 16px;
|
|
2801
|
-
flex-shrink: 0;
|
|
2802
|
-
}
|
|
2803
|
-
.hc-hotel-card__location {
|
|
2804
|
-
color: var(--content-general-secondary, #6B7280);
|
|
2805
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2806
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
2807
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2808
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
2809
|
-
text-decoration: underline;
|
|
2810
|
-
}
|
|
2811
|
-
.hc-hotel-card__benefits-and-pricing {
|
|
2812
|
-
display: flex;
|
|
2813
|
-
flex-direction: column;
|
|
2814
|
-
gap: 16px;
|
|
2815
|
-
}
|
|
2816
|
-
.hc-hotel-card__benefits-section {
|
|
2817
|
-
display: flex;
|
|
2818
|
-
flex-direction: column;
|
|
2819
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2820
|
-
}
|
|
2821
|
-
.hc-hotel-card__benefit {
|
|
2822
|
-
display: flex;
|
|
2823
|
-
align-items: center;
|
|
2824
|
-
gap: 4px;
|
|
2825
|
-
}
|
|
2826
|
-
.hc-hotel-card__benefit-icon {
|
|
2827
|
-
width: 16px;
|
|
2828
|
-
height: 16px;
|
|
2829
|
-
flex-shrink: 0;
|
|
2830
|
-
}
|
|
2831
|
-
.hc-hotel-card__benefit-text {
|
|
2832
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
2833
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2834
|
-
font-weight: var(--font-weight-regular, 400);
|
|
2835
|
-
color: var(--content-status-success-idle, #006962);
|
|
2836
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
2837
|
-
}
|
|
2838
|
-
.hc-hotel-card__pricing-section {
|
|
2839
|
-
display: flex;
|
|
2840
|
-
flex-direction: column;
|
|
2841
|
-
gap: 4px;
|
|
2842
|
-
flex: 1;
|
|
2843
|
-
justify-content: flex-end;
|
|
2844
|
-
}
|
|
2845
|
-
.hc-hotel-card__price-label {
|
|
2846
|
-
font-size: var(--text-label-tiny-font-size, 12px);
|
|
2847
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2848
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2849
|
-
color: var(--content-general-secondary, #6B7280);
|
|
2850
|
-
line-height: var(--text-label-tiny-line-height, 16px);
|
|
2851
|
-
}
|
|
2852
|
-
.hc-hotel-card__not-available {
|
|
2853
|
-
flex: 1;
|
|
2854
|
-
display: flex;
|
|
2855
|
-
align-items: center;
|
|
2856
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
2857
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2858
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2859
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
2860
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
2861
|
-
font-style: italic;
|
|
2862
|
-
}
|
|
2863
|
-
.hc-hotel-card__price-container {
|
|
2864
|
-
display: flex;
|
|
2865
|
-
align-items: center;
|
|
2866
|
-
gap: 8px;
|
|
2867
|
-
}
|
|
2868
|
-
.hc-hotel-card__current-price {
|
|
2869
|
-
color: var(--content-general-primary, #1F2937);
|
|
2870
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2871
|
-
font-size: var(--text-label-large-font-size, 18px);
|
|
2872
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2873
|
-
line-height: var(--text-label-large-line-height, 28px);
|
|
2874
|
-
}
|
|
2875
|
-
.hc-hotel-card__original-price {
|
|
2876
|
-
font-size: var(--text-paragraph-base-font-size, 16px);
|
|
2877
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2878
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2879
|
-
color: var(--content-general-tertiary, #9CA3AF);
|
|
2880
|
-
text-decoration: line-through;
|
|
2881
|
-
line-height: var(--text-paragraph-base-line-height, 24px);
|
|
2882
|
-
}
|
|
2883
|
-
.hc-hotel-card__discount-badge {
|
|
2884
|
-
display: inline-flex;
|
|
2885
|
-
align-items: center;
|
|
2886
|
-
justify-content: center;
|
|
2887
|
-
padding: 2px 8px;
|
|
2888
|
-
background-color: var(--background-action-primary-idle, #C81E4C);
|
|
2889
|
-
border-radius: 9999px;
|
|
2890
|
-
color: white;
|
|
2891
|
-
font-size: var(--text-label-small-font-size, 14px);
|
|
2892
|
-
font-weight: var(--font-weight-medium, 500);
|
|
2893
|
-
line-height: var(--text-label-small-line-height, 20px);
|
|
2894
|
-
font-family: var(--font-primary, system-ui, -apple-system, sans-serif);
|
|
2895
|
-
}
|
|
2896
|
-
@media (min-width: 1024px) {
|
|
2897
|
-
.hc-hotel-card {
|
|
2898
|
-
flex-direction: row;
|
|
2899
|
-
height: 274px;
|
|
2900
|
-
}
|
|
2901
|
-
.hc-hotel-card__usp-banner {
|
|
2902
|
-
display: none;
|
|
2903
|
-
}
|
|
2904
|
-
.hc-hotel-card__image-section {
|
|
2905
|
-
width: 365px;
|
|
2906
|
-
height: 274px;
|
|
2907
|
-
flex-shrink: 0;
|
|
2908
|
-
}
|
|
2909
|
-
.hc-hotel-card__content {
|
|
2910
|
-
flex: 1;
|
|
2911
|
-
padding: var(--size-rem-1-5, 24px);
|
|
2912
|
-
}
|
|
2913
|
-
.hc-hotel-card__benefits-and-pricing {
|
|
2914
|
-
flex-direction: row;
|
|
2915
|
-
justify-content: space-between;
|
|
2916
|
-
align-items: flex-end;
|
|
2917
|
-
margin-top: auto;
|
|
2918
|
-
}
|
|
2919
|
-
.hc-hotel-card__benefits-section {
|
|
2920
|
-
flex: 1;
|
|
2921
|
-
}
|
|
2922
|
-
.hc-hotel-card__pricing-section {
|
|
2923
|
-
flex: 1;
|
|
2924
|
-
align-items: flex-end;
|
|
2925
|
-
}
|
|
2926
|
-
.hc-hotel-card__price-label {
|
|
2927
|
-
text-align: right;
|
|
2928
|
-
}
|
|
2929
|
-
.hc-hotel-card__original-price {
|
|
2930
|
-
text-align: right;
|
|
2931
|
-
}
|
|
2932
|
-
.hc-hotel-card__price-container {
|
|
2933
|
-
justify-content: flex-end;
|
|
2934
|
-
}
|
|
2935
|
-
}
|
|
2936
|
-
|
|
2937
|
-
/* src/components/Filters/FilterCheckboxItem.module.css */
|
|
2938
|
-
.filterRow {
|
|
2939
|
-
display: flex;
|
|
2940
|
-
justify-content: space-between;
|
|
2941
|
-
align-items: center;
|
|
2942
|
-
padding: var(--size-rem-0-625, 10px) 0;
|
|
2943
|
-
background-color: var(--background-action-secondary-idle, #fff);
|
|
2944
|
-
cursor: pointer;
|
|
2945
|
-
user-select: none;
|
|
2946
|
-
transition: background-color 0.15s ease;
|
|
2947
|
-
border-radius: var(--radius-sm, 4px);
|
|
2948
|
-
position: relative;
|
|
2949
|
-
}
|
|
2950
|
-
.filterRow:hover:not(.filterRowDisabled) {
|
|
2951
|
-
background-color: var(--background-action-secondary-hover, #e5e7eb);
|
|
2952
|
-
}
|
|
2953
|
-
.filterRow:active:not(.filterRowDisabled) {
|
|
2954
|
-
background-color: var(--background-action-secondary-hover, #e5e7eb);
|
|
2955
|
-
}
|
|
2956
|
-
.filterRow:focus {
|
|
2957
|
-
background-color: var(--background-action-secondary-idle, #fff);
|
|
2958
|
-
box-shadow: 0 0 0 2px var(--misc-focus, #3474DA), 0 0 16px 4px var(--misc-focus, #3474DA);
|
|
2959
|
-
outline: none;
|
|
2960
|
-
z-index: 1;
|
|
2961
|
-
}
|
|
2962
|
-
.filterRowDisabled {
|
|
2963
|
-
cursor: not-allowed;
|
|
2964
|
-
}
|
|
2965
|
-
.checkboxLabel {
|
|
2966
|
-
display: flex;
|
|
2967
|
-
align-items: center;
|
|
2968
|
-
gap: var(--size-rem-0-5, 8px);
|
|
2969
|
-
flex: 1;
|
|
2970
|
-
}
|
|
2971
|
-
.checkboxButton {
|
|
2972
|
-
width: 24px;
|
|
2973
|
-
height: 24px;
|
|
2974
|
-
position: relative;
|
|
2975
|
-
overflow: hidden;
|
|
2976
|
-
flex-shrink: 0;
|
|
2977
|
-
}
|
|
2978
|
-
.checkbox {
|
|
2979
|
-
position: absolute;
|
|
2980
|
-
width: 1px;
|
|
2981
|
-
height: 1px;
|
|
2982
|
-
padding: 0;
|
|
2983
|
-
margin: -1px;
|
|
2984
|
-
overflow: hidden;
|
|
2985
|
-
clip: rect(0, 0, 0, 0);
|
|
2986
|
-
white-space: nowrap;
|
|
2987
|
-
border: 0;
|
|
2988
|
-
}
|
|
2989
|
-
.checkboxBox {
|
|
2990
|
-
position: absolute;
|
|
2991
|
-
top: 2px;
|
|
2992
|
-
left: 2px;
|
|
2993
|
-
display: flex;
|
|
2994
|
-
align-items: center;
|
|
2995
|
-
justify-content: center;
|
|
2996
|
-
width: 20px;
|
|
2997
|
-
height: 20px;
|
|
2998
|
-
background-color: var(--background-general-primary, #fff);
|
|
2999
|
-
border: 1px solid var(--border-general-tertiary, #d1d5db);
|
|
3000
|
-
border-radius: 4px;
|
|
3001
|
-
transition: all 0.15s ease;
|
|
3002
|
-
}
|
|
3003
|
-
.checkbox:checked + .checkboxBox {
|
|
3004
|
-
background-color: var(--background-action-highlight-idle, #3474DA);
|
|
3005
|
-
border-color: var(--background-action-highlight-idle, #3474DA);
|
|
3006
|
-
}
|
|
3007
|
-
.checkboxBoxDisabled {
|
|
3008
|
-
background-color: var(--background-action-disabled-idle, #f3f4f6);
|
|
3009
|
-
border-color: var(--border-action-disabled-idle, #e5e7eb);
|
|
3010
|
-
}
|
|
3011
|
-
.checkbox:checked + .checkboxBoxDisabled {
|
|
3012
|
-
background-color: var(--background-action-disabled-idle, #f3f4f6);
|
|
3013
|
-
border-color: var(--border-action-disabled-idle, #e5e7eb);
|
|
3014
|
-
}
|
|
3015
|
-
.checkIcon {
|
|
3016
|
-
width: 12px;
|
|
3017
|
-
height: 10px;
|
|
3018
|
-
color: var(--content-action-primary-inverse-idle, #fff);
|
|
3019
|
-
}
|
|
3020
|
-
.checkboxBoxDisabled .checkIcon {
|
|
3021
|
-
color: var(--content-action-disabled-idle, #9ca3af);
|
|
3022
|
-
}
|
|
3023
|
-
.filterLabel {
|
|
3024
|
-
color: var(--content-general-primary, #111827);
|
|
3025
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3026
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3027
|
-
font-style: normal;
|
|
3028
|
-
font-weight: 500;
|
|
3029
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3030
|
-
}
|
|
3031
|
-
.filterLabelDisabled {
|
|
3032
|
-
color: var(--content-action-disabled-idle, #9ca3af);
|
|
3033
|
-
}
|
|
3034
|
-
.filterCount {
|
|
3035
|
-
color: var(--content-general-tertiary, #6b7280);
|
|
3036
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3037
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3038
|
-
font-style: normal;
|
|
3039
|
-
font-weight: 500;
|
|
3040
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3041
|
-
}
|
|
3042
|
-
.filterCountDisabled {
|
|
3043
|
-
color: var(--content-action-disabled-idle, #9ca3af);
|
|
3044
|
-
}
|
|
3045
|
-
|
|
3046
|
-
/* src/components/Filters/CollapsibleFilterSection.module.css */
|
|
3047
|
-
.section {
|
|
3048
|
-
border-bottom: 1px solid var(--border-general-secondary, #e5e7eb);
|
|
3049
|
-
}
|
|
3050
|
-
.header {
|
|
3051
|
-
display: flex;
|
|
3052
|
-
justify-content: space-between;
|
|
3053
|
-
align-items: center;
|
|
3054
|
-
width: 100%;
|
|
3055
|
-
padding: var(--size-rem-1, 16px) 0;
|
|
3056
|
-
background: transparent;
|
|
3057
|
-
border: none;
|
|
3058
|
-
cursor: pointer;
|
|
3059
|
-
text-align: left;
|
|
3060
|
-
}
|
|
3061
|
-
.title {
|
|
3062
|
-
color: var(--content-general-primary, #111827);
|
|
3063
|
-
font-family: var(--text-heading-small-font-family, inherit);
|
|
3064
|
-
font-size: var(--text-heading-small-font-size, 16px);
|
|
3065
|
-
font-weight: 600;
|
|
3066
|
-
line-height: var(--text-heading-small-line-height, 1.5);
|
|
3067
|
-
}
|
|
3068
|
-
.chevron {
|
|
3069
|
-
width: 20px;
|
|
3070
|
-
height: 20px;
|
|
3071
|
-
color: var(--content-general-secondary, #6b7280);
|
|
3072
|
-
transition: transform 0.2s ease;
|
|
3073
|
-
transform: rotate(0deg);
|
|
3074
|
-
}
|
|
3075
|
-
.chevronExpanded {
|
|
3076
|
-
transform: rotate(180deg);
|
|
3077
|
-
}
|
|
3078
|
-
.content {
|
|
3079
|
-
max-height: 0;
|
|
3080
|
-
overflow: hidden;
|
|
3081
|
-
transition: max-height 0.3s ease;
|
|
3082
|
-
}
|
|
3083
|
-
.contentExpanded {
|
|
3084
|
-
max-height: 2000px;
|
|
3085
|
-
}
|
|
3086
|
-
.contentInner {
|
|
3087
|
-
padding-bottom: var(--size-rem-1, 16px);
|
|
3088
|
-
}
|
|
3089
|
-
.showAllButton {
|
|
3090
|
-
display: flex;
|
|
3091
|
-
align-items: center;
|
|
3092
|
-
gap: var(--size-rem-0-25, 4px);
|
|
3093
|
-
margin-top: var(--size-rem-0-5, 8px);
|
|
3094
|
-
padding: var(--size-rem-0-5, 8px) 0;
|
|
3095
|
-
background: transparent;
|
|
3096
|
-
border: none;
|
|
3097
|
-
cursor: pointer;
|
|
3098
|
-
color: var(--content-action-highlight-idle, #3474DA);
|
|
3099
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3100
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3101
|
-
font-weight: 500;
|
|
3102
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3103
|
-
}
|
|
3104
|
-
.showAllButton:hover {
|
|
3105
|
-
color: var(--content-action-highlight-hover, #2563eb);
|
|
3106
|
-
}
|
|
3107
|
-
.showAllChevron {
|
|
3108
|
-
width: 16px;
|
|
3109
|
-
height: 16px;
|
|
3110
|
-
transition: transform 0.2s ease;
|
|
3111
|
-
transform: rotate(0deg);
|
|
3112
|
-
}
|
|
3113
|
-
.showAllChevronUp {
|
|
3114
|
-
transform: rotate(180deg);
|
|
3115
|
-
}
|
|
3116
|
-
|
|
3117
|
-
/* src/components/Filters/PriceRangeFilter.module.css */
|
|
3118
|
-
.priceRangeWrapper {
|
|
3119
|
-
display: flex;
|
|
3120
|
-
flex-direction: column;
|
|
3121
|
-
gap: var(--size-rem-1, 16px);
|
|
3122
|
-
}
|
|
3123
|
-
.priceInputs {
|
|
3124
|
-
display: flex;
|
|
3125
|
-
align-items: center;
|
|
3126
|
-
gap: var(--size-rem-0-5, 8px);
|
|
3127
|
-
}
|
|
3128
|
-
.priceInputWrapper {
|
|
3129
|
-
flex: 1;
|
|
3130
|
-
}
|
|
3131
|
-
.priceInput {
|
|
3132
|
-
width: 100%;
|
|
3133
|
-
padding: var(--size-rem-0-75, 12px);
|
|
3134
|
-
border: 1px solid var(--border-general-secondary, #e5e7eb);
|
|
3135
|
-
border-radius: var(--radius-md, 8px);
|
|
3136
|
-
background-color: var(--background-general-primary, #fff);
|
|
3137
|
-
color: var(--content-general-primary, #111827);
|
|
3138
|
-
font-family: var(--text-body-medium-font-family, inherit);
|
|
3139
|
-
font-size: var(--text-body-medium-font-size, 14px);
|
|
3140
|
-
line-height: var(--text-body-medium-line-height, 1.5);
|
|
3141
|
-
text-align: center;
|
|
3142
|
-
}
|
|
3143
|
-
.priceInput:focus {
|
|
3144
|
-
outline: none;
|
|
3145
|
-
border-color: var(--border-action-highlight-idle, #3474DA);
|
|
3146
|
-
box-shadow: 0 0 0 2px var(--misc-focus-light, rgba(52, 116, 218, 0.2));
|
|
3147
|
-
}
|
|
3148
|
-
.priceInputDivider {
|
|
3149
|
-
color: var(--content-general-tertiary, #6b7280);
|
|
3150
|
-
font-size: 14px;
|
|
3151
|
-
flex-shrink: 0;
|
|
3152
|
-
}
|
|
3153
|
-
.histogram {
|
|
3154
|
-
display: flex;
|
|
3155
|
-
align-items: flex-end;
|
|
3156
|
-
gap: 2px;
|
|
3157
|
-
height: 48px;
|
|
3158
|
-
padding: 0 12px;
|
|
3159
|
-
}
|
|
3160
|
-
.histogramBar {
|
|
3161
|
-
flex: 1;
|
|
3162
|
-
background-color: var(--background-action-secondary-idle, #e5e7eb);
|
|
3163
|
-
border-radius: 2px 2px 0 0;
|
|
3164
|
-
transition: background-color 0.15s ease;
|
|
3165
|
-
min-height: 4px;
|
|
3166
|
-
}
|
|
3167
|
-
.histogramBarActive {
|
|
3168
|
-
background-color: var(--background-action-highlight-idle, #3474DA);
|
|
3169
|
-
}
|
|
3170
|
-
.sliderContainer {
|
|
3171
|
-
position: relative;
|
|
3172
|
-
height: 24px;
|
|
3173
|
-
touch-action: none;
|
|
3174
|
-
}
|
|
3175
|
-
.sliderTrack {
|
|
3176
|
-
position: absolute;
|
|
3177
|
-
top: 50%;
|
|
3178
|
-
left: 12px;
|
|
3179
|
-
right: 12px;
|
|
3180
|
-
height: 4px;
|
|
3181
|
-
background-color: var(--background-action-secondary-idle, #e5e7eb);
|
|
3182
|
-
border-radius: 2px;
|
|
3183
|
-
transform: translateY(-50%);
|
|
3184
|
-
}
|
|
3185
|
-
.sliderActiveTrack {
|
|
3186
|
-
position: absolute;
|
|
3187
|
-
top: 50%;
|
|
3188
|
-
height: 4px;
|
|
3189
|
-
background-color: var(--background-action-highlight-idle, #3474DA);
|
|
3190
|
-
border-radius: 2px;
|
|
3191
|
-
transform: translateY(-50%);
|
|
3192
|
-
}
|
|
3193
|
-
.sliderHandle {
|
|
3194
|
-
position: absolute;
|
|
3195
|
-
top: 50%;
|
|
3196
|
-
width: 24px;
|
|
3197
|
-
height: 24px;
|
|
3198
|
-
background-color: var(--background-general-primary, #fff);
|
|
3199
|
-
border: 2px solid var(--border-action-highlight-idle, #3474DA);
|
|
3200
|
-
border-radius: 50%;
|
|
3201
|
-
transform: translate(-50%, -50%);
|
|
3202
|
-
cursor: grab;
|
|
3203
|
-
touch-action: none;
|
|
3204
|
-
transition: box-shadow 0.15s ease;
|
|
3205
|
-
z-index: 1;
|
|
3206
|
-
}
|
|
3207
|
-
.sliderHandle:hover {
|
|
3208
|
-
box-shadow: 0 0 0 4px var(--misc-focus-light, rgba(52, 116, 218, 0.2));
|
|
3209
|
-
}
|
|
3210
|
-
.sliderHandle:focus {
|
|
3211
|
-
outline: none;
|
|
3212
|
-
box-shadow: 0 0 0 4px var(--misc-focus-light, rgba(52, 116, 218, 0.2));
|
|
3213
|
-
}
|
|
3214
|
-
.sliderHandleActive {
|
|
3215
|
-
cursor: grabbing;
|
|
3216
|
-
box-shadow: 0 0 0 6px var(--misc-focus-light, rgba(52, 116, 218, 0.3));
|
|
3217
|
-
}
|
|
3218
|
-
|
|
3219
|
-
/* src/components/Filters/HotelCategoryFilter.module.css */
|
|
3220
|
-
.filterList {
|
|
3221
|
-
display: flex;
|
|
3222
|
-
flex-direction: column;
|
|
3223
|
-
}
|
|
3224
|
-
.starsContainer {
|
|
3225
|
-
display: flex;
|
|
3226
|
-
align-items: center;
|
|
3227
|
-
gap: 2px;
|
|
3228
|
-
}
|
|
3229
|
-
.starIcon {
|
|
3230
|
-
width: 16px;
|
|
3231
|
-
height: 16px;
|
|
3232
|
-
color: var(--content-general-primary, #111827);
|
|
3233
|
-
}
|
|
3234
|
-
.footer {
|
|
3235
|
-
margin-top: var(--size-rem-0-75, 12px);
|
|
3236
|
-
padding-top: var(--size-rem-0-75, 12px);
|
|
3237
|
-
border-top: 1px solid var(--border-general-secondary, #e5e7eb);
|
|
3238
|
-
}
|
|
3239
|
-
.footerText {
|
|
3240
|
-
color: var(--content-general-tertiary, #6b7280);
|
|
3241
|
-
font-family: var(--text-caption-font-family, inherit);
|
|
3242
|
-
font-size: var(--text-caption-font-size, 12px);
|
|
3243
|
-
font-style: normal;
|
|
3244
|
-
font-weight: 400;
|
|
3245
|
-
line-height: var(--text-caption-line-height, 1.5);
|
|
3246
|
-
}
|
|
3247
|
-
|
|
3248
|
-
/* src/components/Filters/ReviewsFilter.module.css */
|
|
3249
|
-
.filterList {
|
|
3250
|
-
display: flex;
|
|
3251
|
-
flex-direction: column;
|
|
3252
|
-
}
|
|
3253
|
-
.filterRange {
|
|
3254
|
-
color: var(--content-general-tertiary, #6b7280);
|
|
3255
|
-
font-weight: 400;
|
|
3256
|
-
}
|
|
3257
|
-
.footer {
|
|
3258
|
-
margin-top: var(--size-rem-0-75, 12px);
|
|
3259
|
-
padding-top: var(--size-rem-0-75, 12px);
|
|
3260
|
-
border-top: 1px solid var(--border-general-secondary, #e5e7eb);
|
|
3261
|
-
}
|
|
3262
|
-
.footerText {
|
|
3263
|
-
color: var(--content-general-tertiary, #6b7280);
|
|
3264
|
-
font-family: var(--text-caption-font-family, inherit);
|
|
3265
|
-
font-size: var(--text-caption-font-size, 12px);
|
|
3266
|
-
font-style: normal;
|
|
3267
|
-
font-weight: 400;
|
|
3268
|
-
line-height: var(--text-caption-line-height, 1.5);
|
|
3269
|
-
}
|
|
3270
|
-
|
|
3271
|
-
/* src/components/Filters/ExperienceFilter.module.css */
|
|
3272
|
-
.filterList {
|
|
3273
|
-
display: flex;
|
|
3274
|
-
flex-direction: column;
|
|
3275
|
-
}
|
|
3276
|
-
.showMoreBtn {
|
|
3277
|
-
display: flex;
|
|
3278
|
-
align-items: center;
|
|
3279
|
-
gap: var(--size-rem-0-25, 4px);
|
|
3280
|
-
margin-top: var(--size-rem-0-5, 8px);
|
|
3281
|
-
padding: var(--size-rem-0-5, 8px) 0;
|
|
3282
|
-
background: transparent;
|
|
3283
|
-
border: none;
|
|
3284
|
-
cursor: pointer;
|
|
3285
|
-
color: var(--content-action-highlight-idle, #3474DA);
|
|
3286
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3287
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3288
|
-
font-weight: 500;
|
|
3289
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3290
|
-
}
|
|
3291
|
-
.showMoreBtn:hover {
|
|
3292
|
-
color: var(--content-action-highlight-hover, #2563eb);
|
|
3293
|
-
}
|
|
3294
|
-
.arrowIcon {
|
|
3295
|
-
display: flex;
|
|
3296
|
-
align-items: center;
|
|
3297
|
-
transition: transform 0.2s ease;
|
|
3298
|
-
}
|
|
3299
|
-
.arrowIcon svg {
|
|
3300
|
-
width: 20px;
|
|
3301
|
-
height: 20px;
|
|
3302
|
-
}
|
|
3303
|
-
.arrowUp {
|
|
3304
|
-
transform: rotate(180deg);
|
|
3305
|
-
}
|
|
3306
|
-
|
|
3307
|
-
/* src/components/Filters/RegionsFilter.module.css */
|
|
3308
|
-
.filterList {
|
|
3309
|
-
display: flex;
|
|
3310
|
-
flex-direction: column;
|
|
3311
|
-
gap: var(--size-rem-0-25, 4px);
|
|
3312
|
-
}
|
|
3313
|
-
.regionItem {
|
|
3314
|
-
display: flex;
|
|
3315
|
-
flex-direction: column;
|
|
3316
|
-
}
|
|
3317
|
-
.countryRow {
|
|
3318
|
-
display: flex;
|
|
3319
|
-
justify-content: space-between;
|
|
3320
|
-
align-items: center;
|
|
3321
|
-
height: 56px;
|
|
3322
|
-
padding: 14px var(--size-rem-0-75, 12px);
|
|
3323
|
-
background-color: var(--background-general-secondary-light, #f9fafb);
|
|
3324
|
-
border: 1px solid transparent;
|
|
3325
|
-
border-radius: var(--size-rem-0-75, 12px);
|
|
3326
|
-
cursor: pointer;
|
|
3327
|
-
user-select: none;
|
|
3328
|
-
transition: background-color 0.15s ease;
|
|
3329
|
-
gap: var(--size-rem-0-75, 12px);
|
|
3330
|
-
}
|
|
3331
|
-
.countryRowExpanded {
|
|
3332
|
-
border-radius: var(--size-rem-0-75, 12px);
|
|
3333
|
-
border: 1px solid var(--border-action-secondary-active, #d1d5db);
|
|
3334
|
-
background: var(--background-general-primary, #fff) !important;
|
|
3335
|
-
border-bottom: none;
|
|
3336
|
-
border-bottom-left-radius: 0;
|
|
3337
|
-
border-bottom-right-radius: 0;
|
|
3338
|
-
}
|
|
3339
|
-
.countryInfo {
|
|
3340
|
-
display: flex;
|
|
3341
|
-
align-items: center;
|
|
3342
|
-
flex: 1 1 0;
|
|
3343
|
-
justify-content: space-between;
|
|
3344
|
-
}
|
|
3345
|
-
.countryName {
|
|
3346
|
-
color: var(--content-general-primary, #111827);
|
|
3347
|
-
font-family: var(--text-label-large-font-family, inherit);
|
|
3348
|
-
font-size: var(--text-label-large-font-size, 16px);
|
|
3349
|
-
font-weight: var(--text-label-large-font-weight, 600);
|
|
3350
|
-
line-height: var(--text-label-large-line-height, 1.55);
|
|
3351
|
-
}
|
|
3352
|
-
.countBadge {
|
|
3353
|
-
display: inline-flex;
|
|
3354
|
-
align-items: center;
|
|
3355
|
-
justify-content: center;
|
|
3356
|
-
min-width: 24px;
|
|
3357
|
-
height: 24px;
|
|
3358
|
-
padding: 0 var(--size-rem-0-5, 8px);
|
|
3359
|
-
border-radius: 9999px;
|
|
3360
|
-
background: var(--background-general-secondary, #e5e7eb) !important;
|
|
3361
|
-
color: var(--content-general-primary, #111827);
|
|
3362
|
-
text-align: center;
|
|
3363
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3364
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3365
|
-
font-weight: 500;
|
|
3366
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3367
|
-
white-space: nowrap;
|
|
3368
|
-
}
|
|
3369
|
-
.chevron {
|
|
3370
|
-
width: 20px;
|
|
3371
|
-
height: 20px;
|
|
3372
|
-
color: var(--content-general-tertiary, #6b7280);
|
|
3373
|
-
flex-shrink: 0;
|
|
3374
|
-
transition: transform 0.2s ease;
|
|
3375
|
-
}
|
|
3376
|
-
.chevronExpanded {
|
|
3377
|
-
transform: rotate(180deg);
|
|
3378
|
-
}
|
|
3379
|
-
.subRegions {
|
|
3380
|
-
display: flex;
|
|
3381
|
-
flex-direction: column;
|
|
3382
|
-
padding: 0 var(--size-rem-0-75, 12px) var(--size-rem-0-875, 14px) var(--size-rem-0-75, 12px);
|
|
3383
|
-
border-radius: var(--size-rem-0-75, 12px);
|
|
3384
|
-
border: 1px solid var(--border-action-secondary-active, #d1d5db);
|
|
3385
|
-
background: var(--background-general-primary, #fff);
|
|
3386
|
-
border-top: none;
|
|
3387
|
-
border-top-left-radius: 0;
|
|
3388
|
-
border-top-right-radius: 0;
|
|
3389
|
-
}
|
|
3390
|
-
.mobileSelectAllActions {
|
|
3391
|
-
display: flex;
|
|
3392
|
-
align-items: center;
|
|
3393
|
-
gap: var(--size-rem-1, 16px);
|
|
3394
|
-
height: 44px;
|
|
3395
|
-
padding: 0 var(--size-rem-0-75, 12px);
|
|
3396
|
-
border-top: none;
|
|
3397
|
-
border-bottom: none;
|
|
3398
|
-
border-right: 1px solid var(--border-action-secondary-active, #d1d5db);
|
|
3399
|
-
border-left: 1px solid var(--border-action-secondary-active, #d1d5db);
|
|
3400
|
-
background: var(--background-general-primary, #fff);
|
|
3401
|
-
}
|
|
3402
|
-
.selectAllBtn,
|
|
3403
|
-
.resetAllBtn {
|
|
3404
|
-
display: flex;
|
|
3405
|
-
align-items: center;
|
|
3406
|
-
justify-content: center;
|
|
3407
|
-
height: 100%;
|
|
3408
|
-
padding: 0;
|
|
3409
|
-
border: none;
|
|
3410
|
-
background: transparent;
|
|
3411
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3412
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3413
|
-
font-weight: 500;
|
|
3414
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3415
|
-
text-decoration: underline;
|
|
3416
|
-
cursor: pointer;
|
|
3417
|
-
}
|
|
3418
|
-
.selectAllBtn {
|
|
3419
|
-
color: var(--content-action-link-idle, #3474DA);
|
|
3420
|
-
}
|
|
3421
|
-
.selectAllBtn:disabled {
|
|
3422
|
-
color: var(--content-action-disabled-idle, #9ca3af);
|
|
3423
|
-
cursor: not-allowed;
|
|
3424
|
-
opacity: 0.5;
|
|
3425
|
-
}
|
|
3426
|
-
.resetAllBtn {
|
|
3427
|
-
color: var(--content-action-disabled-idle, #6b7280);
|
|
3428
|
-
}
|
|
3429
|
-
.resetAllBtn:disabled {
|
|
3430
|
-
cursor: not-allowed;
|
|
3431
|
-
opacity: 0.5;
|
|
3432
|
-
}
|
|
3433
|
-
.selectAllBtn:focus-visible,
|
|
3434
|
-
.resetAllBtn:focus-visible {
|
|
3435
|
-
outline: 2px solid var(--misc-focus, #3474DA);
|
|
3436
|
-
outline-offset: 2px;
|
|
3437
|
-
border-radius: 2px;
|
|
3438
|
-
}
|
|
3439
|
-
|
|
3440
|
-
/* src/components/Filters/CheckboxFilter.module.css */
|
|
3441
|
-
.filterList {
|
|
3442
|
-
display: flex;
|
|
3443
|
-
flex-direction: column;
|
|
3444
|
-
}
|
|
3445
|
-
|
|
3446
|
-
/* src/components/Filters/SelectedFiltersRow.module.css */
|
|
3447
|
-
.container {
|
|
3448
|
-
padding: var(--size-rem-0-75, 12px) 0;
|
|
3449
|
-
border-bottom: 1px solid var(--border-general-secondary, #e5e7eb);
|
|
3450
|
-
}
|
|
3451
|
-
.chipsWrapper {
|
|
3452
|
-
display: flex;
|
|
3453
|
-
align-items: flex-start;
|
|
3454
|
-
gap: var(--size-rem-0-5, 8px);
|
|
3455
|
-
}
|
|
3456
|
-
.selectedText {
|
|
3457
|
-
margin: 0;
|
|
3458
|
-
padding-top: var(--size-rem-0-25, 4px);
|
|
3459
|
-
color: var(--content-general-secondary, #6b7280);
|
|
3460
|
-
font-family: var(--text-label-medium-font-family, inherit);
|
|
3461
|
-
font-size: var(--text-label-medium-font-size, 14px);
|
|
3462
|
-
font-weight: 500;
|
|
3463
|
-
line-height: var(--text-label-medium-line-height, 1.5);
|
|
3464
|
-
white-space: nowrap;
|
|
3465
|
-
}
|
|
3466
|
-
.chips {
|
|
3467
|
-
display: flex;
|
|
3468
|
-
flex-wrap: wrap;
|
|
3469
|
-
align-items: center;
|
|
3470
|
-
gap: var(--size-rem-0-5, 8px);
|
|
3471
|
-
}
|
|
3472
|
-
.clearAllBtn {
|
|
3473
|
-
margin-left: var(--size-rem-0-5, 8px);
|
|
3474
|
-
}
|
|
3475
|
-
/*# sourceMappingURL=index.css.map */
|
|
1
|
+
.hc-btn-button{display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-primary, system-ui, -apple-system, sans-serif);cursor:pointer}.hc-btn-button:disabled{cursor:not-allowed}.hc-btn-standard{border-radius:var(--radius-full, 9999px)}.hc-btn-standard.hc-btn-medium{padding:var(--size-rem-0-75, 12px) var(--size-rem-1-5, 24px);gap:var(--size-rem-0-5, 8px);color:var(--content-action-primary-inverse-idle, #ffffff);font-family:var(--text-label-large-font-family, inherit);font-size:var(--text-label-large-font-size, 18px);font-style:normal;font-weight:500;line-height:var(--text-label-large-line-height, 28px)}.hc-btn-standard.hc-btn-small{padding:var(--size-rem-0-75, 12px) var(--size-rem-1-5, 24px);gap:var(--size-rem-0-5, 8px);font-size:var(--text-label-medium-font-size, 16px);line-height:var(--text-label-medium-line-height, 24px);font-weight:var(--text-label-medium-font-weight, 500);min-width:136px;height:44px;white-space:nowrap}.hc-btn-standard.hc-btn-primary{border:none;background-color:var(--background-action-primary-idle, #C81E4C);color:var(--content-action-primary-inverse-idle, #ffffff)}.hc-btn-standard.hc-btn-primary:hover:not(:disabled){background-color:var(--background-action-primary-hover, #a3183d)}.hc-btn-standard.hc-btn-primary:active:not(:disabled){background-color:var(--background-action-primary-active, #8a1434)}.hc-btn-standard.hc-btn-primary:focus:not(:disabled){box-shadow:0 0 0 2px var(--misc-focus, rgba(200, 30, 76, .5)),0 0 16px 4px var(--misc-focus, rgba(200, 30, 76, .3))}.hc-btn-standard.hc-btn-primary:disabled{background-color:var(--background-action-disabled-idle, #E5E7EB);color:var(--content-action-disabled-idle, #9CA3AF)}.hc-btn-standard.hc-btn-secondary{background-color:var(--background-action-secondary-idle, #ffffff);color:var(--content-action-secondary-idle, #374151);border:var(--size-rem-0-125, 2px) solid var(--border-action-secondary-idle, #D1D5DB)}.hc-btn-standard.hc-btn-secondary:hover:not(:disabled){background-color:var(--background-action-secondary-hover, #F9FAFB);color:var(--content-action-secondary-hover, #1F2937);border-color:var(--border-action-secondary-hover, #9CA3AF)}.hc-btn-standard.hc-btn-secondary:active:not(:disabled){background-color:var(--background-action-secondary-active, #F3F4F6);color:var(--content-action-secondary-active, #111827);border-color:var(--border-action-secondary-active, #6B7280)}.hc-btn-standard.hc-btn-secondary:disabled{background-color:var(--background-action-disabled-idle, #E5E7EB);color:var(--content-action-disabled-idle, #9CA3AF);border:none}.hc-btn-link{text-decoration:underline;gap:var(--size-rem-0-5, 8px);padding:var(--size-rem-0, 0);background:transparent;border:none;color:var(--content-action-link-idle, #2563EB)}.hc-btn-link:hover:not(:disabled){color:var(--content-action-link-hover, #1D4ED8)}.hc-btn-link:active:not(:disabled){color:var(--content-action-link-active, #1E40AF)}.hc-btn-link:focus:not(:disabled){background-color:var(--background-action-highlight-idle-light, #EFF6FF)}.hc-btn-link:disabled{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-btn-link.hc-btn-medium{font-size:var(--text-label-large-font-size, 18px);line-height:var(--text-label-large-line-height, 28px);font-weight:var(--text-label-large-font-weight, 500)}.hc-btn-link.hc-btn-small{font-size:var(--text-label-small-font-size, 14px);line-height:var(--text-label-small-line-height, 20px);font-weight:var(--text-label-small-font-weight, 500)}.hc-btn-icon-only{padding:var(--size-rem-0, 0);border-radius:var(--radius-full, 9999px)}.hc-btn-icon-only.hc-btn-medium{width:var(--size-rem-3-75, 60px);height:var(--size-rem-3-75, 60px)}.hc-btn-icon-only.hc-btn-small{width:var(--size-rem-2-75, 44px);height:var(--size-rem-2-75, 44px)}.hc-btn-icon-only.hc-btn-primary{border:none;background-color:var(--background-action-primary-idle, #C81E4C);color:var(--content-action-primary-inverse-idle, #ffffff)}.hc-btn-icon-only.hc-btn-primary:hover:not(:disabled){background-color:var(--background-action-primary-hover, #a3183d)}.hc-btn-icon-only.hc-btn-primary:active:not(:disabled){background-color:var(--background-action-primary-active, #8a1434)}.hc-btn-icon-only.hc-btn-primary:focus:not(:disabled){box-shadow:0 0 0 2px var(--misc-focus, rgba(200, 30, 76, .5)),0 0 16px 4px var(--misc-focus, rgba(200, 30, 76, .3))}.hc-btn-icon-only.hc-btn-primary:disabled{background-color:var(--background-action-disabled-idle, #E5E7EB);color:var(--content-action-disabled-idle, #9CA3AF)}.hc-btn-icon-only.hc-btn-secondary{color:var(--content-action-secondary-idle, #374151);border-radius:9999px;border:2px solid var(--border-action-secondary-idle, #D1D5DB);background:var(--background-action-secondary-idle, #ffffff)}.hc-btn-icon-only.hc-btn-secondary:hover:not(:disabled){background-color:var(--background-action-secondary-hover, #F9FAFB);color:var(--content-action-secondary-hover, #1F2937);border-color:var(--border-action-secondary-hover, #9CA3AF)}.hc-btn-icon-only.hc-btn-secondary:active:not(:disabled){background-color:var(--background-action-secondary-active, #F3F4F6);color:var(--content-action-secondary-active, #111827);border-color:var(--border-action-secondary-active, #6B7280)}.hc-btn-icon-only.hc-btn-secondary:disabled{background-color:var(--background-action-disabled-idle, #E5E7EB);color:var(--content-action-disabled-idle, #9CA3AF);border:none}.hc-btn-icon-wrapper{width:var(--size-rem-1-5, 24px);height:var(--size-rem-1-5, 24px);position:relative;overflow:inherit;display:flex;align-items:center;justify-content:center}.hc-btn-text-wrapper{justify-content:flex-start}.hc-badge-badge{display:inline-flex;align-items:center;justify-content:center;font-family:var(--font-primary, system-ui, -apple-system, sans-serif);border-radius:var(--radius-full, 9999px);font-weight:var(--font-weight-medium, 500)}.hc-badge-badge--large{min-width:var(--size-rem-2-25, 36px);padding-left:var(--size-rem-1, 16px);padding-right:var(--size-rem-1, 16px);padding-top:var(--size-rem-0-5, 8px);padding-bottom:var(--size-rem-0-5, 8px);font-size:var(--text-paragraph-base-font-size, 16px);line-height:var(--text-paragraph-base-line-height, 24px);gap:var(--size-rem-0-375, 6px)}.hc-badge-badge--small{min-width:var(--size-rem-1-75, 28px);padding-left:var(--size-rem-0-625, 10px);padding-right:var(--size-rem-0-625, 10px);padding-top:var(--size-rem-0-25, 4px);padding-bottom:var(--size-rem-0-25, 4px);gap:var(--size-rem-0-25, 4px);text-align:center;font-family:var(--text-label-small-font-family, inherit);font-size:var(--text-label-small-font-size, 14px);font-style:normal;font-weight:500;line-height:var(--text-label-small-line-height, 20px)}.hc-badge-badge--primaryHeavy{background-color:var(--background-action-primary-idle, #C81E4C);color:var(--content-action-primary-inverse-idle, #ffffff)}.hc-badge-badge--primaryLight{background-color:var(--background-status-error-idle-light, #FEF2F2);color:var(--content-status-error-idle, #DC2626)}.hc-badge-badge--secondaryHeavy{background-color:var(--background-general-secondary, #F3F4F6);color:var(--content-general-primary, #1F2937)}.hc-badge-badge--secondaryLight{background-color:var(--background-status-info-idle-light, #EFF6FF);color:var(--content-status-info-idle, #2563EB)}.hc-badge-badge--neutralHeavy{background-color:var(--background-general-inverse-primary, #1F2937);color:var(--content-general-inverse-primary, #ffffff)}.hc-badge-badge--neutralLight{background-color:var(--background-general-secondary-light, #F9FAFB);color:var(--content-general-primary, #1F2937)}.hc-badge-badge--successHeavy{background-color:var(--color-green-500, #22C55E);color:var(--content-action-primary-inverse-idle, #ffffff)}.hc-badge-badge--successLight{background-color:var(--background-status-success-idle, #ECFDF5);color:var(--content-status-success-idle, #006962)}.hc-badge-badge--warningHeavy{background-color:var(--color-yellow-500, #EAB308);color:var(--content-action-primary-inverse-idle, #ffffff)}.hc-badge-badge--warningLight{background-color:var(--background-status-warning-idle, #FFFBEB);color:var(--content-status-warning-idle, #D97706)}.hc-badge-icon{position:relative;overflow:hidden}.hc-badge-icon--large{width:var(--size-rem-1-5, 24px);height:var(--size-rem-1-5, 24px)}.hc-badge-icon--small{width:var(--size-rem-1, 16px);height:var(--size-rem-1, 16px)}.hc-badge-text{text-align:center;justify-content:center;display:flex;align-items:center;gap:4px}.hc-badge-text--largeWithIcon{flex:1}.hc-rating-starsContainer{display:inline-flex;align-items:center;gap:var(--size-rem-0-5, 8px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}.hc-rating-starContainer{height:var(--size-rem-1-5, 24px);display:flex;align-items:center}.hc-rating-valueDisplay{color:var(--content-general-primary, #1F2937);font-size:var(--text-label-medium-font-size, 16px);font-weight:var(--text-label-medium-font-weight, 500)}.hc-rating-resultContainer{display:inline-flex;align-items:center;gap:var(--size-rem-0-5, 8px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}.hc-rating-resultChar{font-size:var(--text-label-large-font-size, 18px);font-weight:var(--text-label-large-font-weight, 500);color:var(--content-general-primary, #1F2937)}.hc-rating-blockContainer{display:flex;flex-direction:column;gap:var(--size-rem-1, 16px);padding:var(--size-rem-1-5, 24px);background-color:var(--background-general-secondary, #F3F4F6);border-radius:var(--radius-lg, 12px);border:1px solid var(--border-general-divider, #D1D5DB);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);max-width:600px}.hc-rating-blockHeader{display:flex;justify-content:space-between;align-items:center}.hc-rating-blockHeaderLeft{display:flex;flex-direction:column;gap:var(--size-rem-0-25, 4px)}.hc-rating-blockName{font-size:var(--text-label-medium-font-size, 16px);font-weight:var(--text-label-medium-font-weight, 500);color:var(--content-general-primary, #1F2937)}.hc-rating-blockDate{font-size:var(--text-label-small-font-size, 14px);font-weight:var(--text-label-small-font-weight, 500);color:var(--content-general-secondary, #6B7280)}.hc-rating-blockQuote{font-size:var(--text-paragraph-base-font-size, 16px);line-height:var(--text-paragraph-base-line-height, 24px);font-weight:var(--text-paragraph-base-font-weight, 400);color:var(--content-general-primary, #1F2937);margin:0}.hc-rating-star{display:inline-flex;align-items:center;justify-content:center;margin-right:var(--size-rem-0-25, 4px)}.hc-rating-star:last-child{margin-right:0}.hc-rating-star--small{width:16px;height:16px}.hc-rating-star--small svg{width:16px;height:16px}.hc-rating-star--medium{width:20px;height:20px}.hc-rating-star--medium svg{width:20px;height:20px}.hc-rating-star--large{width:24px;height:24px}.hc-rating-star--large svg{width:24px;height:24px}.hc-divider-container{display:flex;align-items:center}.hc-divider-container--horizontal{width:100%;height:auto;flex-direction:row;gap:var(--layout-comp-2-gap, 8px)}.hc-divider-container--vertical{width:auto;height:100%;flex-direction:column;gap:var(--layout-comp-2-gap, 8px)}.hc-divider-line--horizontal{flex:1;height:1px;width:100%;border:none;background-color:var(--border-general-divider, #D1D5DB)}.hc-divider-line--vertical{flex:1;width:1px;height:100%;border:none;background-color:var(--border-general-divider, #D1D5DB)}.hc-divider-lineStandalone--horizontal{flex:none;height:1px;width:100%;border:none;background-color:var(--border-general-divider, #D1D5DB)}.hc-divider-lineStandalone--vertical{flex:none;width:1px;height:100%;border:none;background-color:var(--border-general-divider, #D1D5DB)}.hc-divider-label{color:var(--content-general-secondary, #6B7280);font-size:var(--text-label-medium-font-size, 16px);line-height:var(--text-label-medium-line-height, 24px);font-weight:var(--text-label-medium-font-weight, 500);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);flex-shrink:0;padding:0}.hc-chip-chip{display:inline-flex;align-items:center;justify-content:center;border-radius:var(--radius-full, 9999px);cursor:pointer;transition:all .15s ease;border:none;background:none;padding:0;font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}.hc-chip-chip:focus{outline:none}.hc-chip-chip:focus-visible{box-shadow:0 0 0 2px #3474da4d}.hc-chip-chip--medium{padding:var(--size-rem-0-5, 8px) var(--size-rem-0-5, 8px) var(--size-rem-0-5, 8px) var(--size-rem-1, 16px);gap:var(--size-rem-0-5, 8px)}.hc-chip-chip--small{padding:var(--size-rem-0-25, 4px) var(--size-rem-0-25, 4px) var(--size-rem-0-25, 4px) var(--size-rem-1, 16px);gap:6px}.hc-chip-chip--idle{background-color:var(--background-general-primary, #ffffff);border:2px solid var(--border-general-divider, #D1D5DB)}.hc-chip-chip--idle:hover{border-color:var(--border-general-tertiary, #9CA3AF);background-color:var(--background-general-secondary-light, #F9FAFB)}.hc-chip-chip--active{background-color:var(--background-action-highlight-idle, #2563EB)}.hc-chip-chip--active:hover{background-color:var(--background-action-highlight-hover, #1D4ED8)}.hc-chip-chip--disabled{background-color:var(--background-action-disabled-idle, #E5E7EB);cursor:not-allowed}.hc-chip-label{font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-medium, 500);white-space:nowrap;text-align:center}.hc-chip-label--medium,.hc-chip-label--small{font-size:var(--text-label-medium-font-size, 16px);line-height:var(--text-label-medium-line-height, 24px)}.hc-chip-chip--idle .hc-chip-label{color:var(--content-general-primary, #1F2937)}.hc-chip-chip--active .hc-chip-label{color:var(--content-action-highlight-inverse-idle, #ffffff)}.hc-chip-chip--disabled .hc-chip-label{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-chip-countBadge{display:flex;align-items:center;justify-content:center;padding:0 var(--size-rem-0-5, 8px);border-radius:var(--radius-full, 9999px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-medium, 500);white-space:nowrap;text-align:center}.hc-chip-countBadge--medium{font-size:var(--text-label-large-font-size, 18px);line-height:var(--text-label-large-line-height, 28px)}.hc-chip-countBadge--small{font-size:var(--text-label-medium-font-size, 16px);line-height:var(--text-label-medium-line-height, 24px)}.hc-chip-chip--idle .hc-chip-countBadge{background-color:var(--background-general-secondary, #F3F4F6);color:var(--content-general-primary, #1F2937)}.hc-chip-chip--active .hc-chip-countBadge{background-color:var(--background-general-primary, #ffffff);color:var(--content-action-highlight-idle, #2563EB)}.hc-chip-chip--disabled .hc-chip-countBadge{background-color:var(--background-general-primary, #ffffff);color:var(--background-action-disabled-idle, #E5E7EB)}.hc-chip-closeIcon{width:24px;height:24px;flex-shrink:0;display:flex;align-items:center;justify-content:center}.hc-chip-closeIcon svg{width:100%;height:100%}.hc-chip-chip--idle .hc-chip-closeIcon{color:var(--content-general-secondary, #6B7280)}.hc-chip-chip--idle:hover .hc-chip-closeIcon{color:var(--content-general-primary, #1F2937)}.hc-chip-chip--active .hc-chip-closeIcon{color:var(--content-action-highlight-inverse-idle, #ffffff)}.hc-chip-chip--disabled .hc-chip-closeIcon{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-checkbox-container{display:inline-flex;align-items:center;gap:var(--size-rem-0-5, 8px);cursor:pointer;-webkit-user-select:none;user-select:none;font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}.hc-checkbox-container--disabled{cursor:not-allowed}.hc-checkbox-wrapper{position:relative;display:flex;align-items:center;justify-content:center;overflow:hidden}.hc-checkbox-wrapper--medium{width:var(--size-rem-1-5, 24px);height:var(--size-rem-1-5, 24px)}.hc-checkbox-wrapper--small{width:var(--size-rem-1-25, 20px);height:var(--size-rem-1-25, 20px)}.hc-checkbox-box{position:absolute;border-radius:var(--radius-sm, 4px);background-color:var(--background-general-primary, #ffffff);border:2px solid var(--border-general-primary, #D1D5DB);transition:all .2s ease;box-shadow:none}.hc-checkbox-box--medium{width:var(--size-rem-1-25, 20px);height:var(--size-rem-1-25, 20px);left:2px;top:2px}.hc-checkbox-box--small{width:var(--size-rem-1, 16px);height:var(--size-rem-1, 16px);left:2px;top:2px}.hc-checkbox-box--checked{background-color:var(--background-action-highlight-idle, #2563EB);border:none}.hc-checkbox-box--disabled{background-color:var(--background-general-secondary, #F3F4F6);border-color:var(--border-general-secondary, #E5E7EB)}.hc-checkbox-box--error{border-color:var(--content-status-error-idle, #DC2626)}.hc-checkbox-box--focused{box-shadow:0 0 0 2px var(--misc-focus, rgba(52, 116, 218, .3))}.hc-checkbox-input{position:absolute;opacity:0;width:100%;height:100%;margin:0;cursor:pointer}.hc-checkbox-input--disabled{cursor:not-allowed}.hc-checkbox-checkmark{position:absolute;z-index:1;opacity:0;transform:scale(.5);transition:all .2s ease}.hc-checkbox-checkmark--medium{width:10px;height:9px;left:7px;top:8px}.hc-checkbox-checkmark--small{width:8px;height:7px;left:6px;top:6px}.hc-checkbox-checkmark--checked{opacity:1;transform:scale(1)}.hc-checkbox-label{font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);color:var(--content-general-primary, #1F2937)}.hc-checkbox-label--disabled{color:var(--content-general-tertiary, #9CA3AF)}.hc-checkbox-label--error{color:var(--content-status-error-idle, #DC2626)}.hc-radio-container{display:inline-flex;align-items:center;cursor:pointer;outline:none}.hc-radio-container--disabled{cursor:not-allowed}.hc-radio-wrapper{width:var(--size-rem-1-5, 24px);height:var(--size-rem-1-5, 24px);position:relative;flex-shrink:0}.hc-radio-outerCircle{width:var(--size-rem-1-25, 20px);height:var(--size-rem-1-25, 20px);position:absolute;left:2px;top:2px;border-radius:50%;background-color:var(--background-general-primary, #ffffff);border:1px solid var(--border-general-divider, #D1D5DB);opacity:1;transition:all .2s ease;box-shadow:none}.hc-radio-container:hover .hc-radio-outerCircle{border:1px solid var(--border-action-highlight-hover, #1D4ED8)}.hc-radio-container:focus .hc-radio-outerCircle{border:1px solid var(--border-action-highlight-hover, #1D4ED8);box-shadow:0 0 0 3px var(--background-action-highlight-hover-light, rgba(29, 78, 216, .1))}.hc-radio-outerCircle--checked{background-color:var(--background-action-highlight-idle, #2563EB);border:none}.hc-radio-container:hover .hc-radio-outerCircle--checked{background-color:var(--background-action-highlight-hover, #1D4ED8)}.hc-radio-outerCircle--disabled{opacity:.5}.hc-radio-innerDot{width:var(--size-rem-0-5, 8px);height:var(--size-rem-0-5, 8px);position:absolute;left:8px;top:8px;border-radius:50%;background-color:var(--content-action-highlight-inverse-idle, #ffffff);opacity:0;transform:scale(0);transition:all .2s ease}.hc-radio-innerDot--checked{opacity:1;transform:scale(1)}.hc-radio-hiddenInput{display:none}.hc-radio-label{font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);color:var(--content-general-primary, #1F2937);cursor:pointer;margin-left:var(--size-rem-0-5, 8px)}.hc-radio-container--disabled .hc-radio-label{color:var(--content-general-tertiary, #9CA3AF);cursor:not-allowed}.hc-section-header{display:flex;justify-content:space-between;align-items:center;padding:0 var(--size-rem-1, 16px);margin-bottom:var(--size-rem-0-75, 12px)}.hc-section-title{font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-heading-small-font-size, 20px);font-weight:var(--font-weight-semibold, 600);line-height:var(--text-heading-small-line-height, 28px);color:var(--content-general-primary, #1F2937);margin:0}.hc-section-showAllButton{display:flex;align-items:center;gap:2px;background:none;border:none;padding:4px 0;font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-label-small-font-size, 14px);font-weight:var(--font-weight-medium, 500);color:var(--content-action-primary-idle, #2563EB);cursor:pointer;transition:opacity .2s ease}.hc-section-showAllButton:active{opacity:.7}.hc-section-showAllButton svg{flex-shrink:0}@keyframes hc-modal-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes hc-modal-slideUp{0%{opacity:0;transform:translateY(var(--size-rem-1-25, 20px))}to{opacity:1;transform:translateY(0)}}.hc-modal-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#00000080;display:flex;align-items:center;justify-content:center;z-index:9999;padding:var(--size-rem-2, 32px);animation:hc-modal-fadeIn .2s ease-out}.hc-modal-content{background-color:var(--background-general-primary, #ffffff);border-radius:var(--radius-2xl, 24px);width:100%;max-height:fit-content;overflow-y:auto;overflow-x:hidden;position:relative;box-shadow:0 var(--size-rem-1-25, 20px) var(--size-rem-3-75, 60px) #00000026;animation:hc-modal-slideUp .3s ease-out;margin:0 auto}.hc-modal-closeButton{position:absolute;top:var(--size-rem-0-875, 14px);right:var(--size-rem-0-875, 14px);width:var(--size-rem-2, 32px);height:var(--size-rem-2, 32px);z-index:1;border:none;background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;padding:0;border-radius:var(--radius-full, 9999px);transition:background-color .2s ease}.hc-modal-closeButton:hover{background-color:var(--background-general-secondary, #F3F4F6)}.hc-modal-closeButton svg path{fill:var(--content-general-tertiary, #9CA3AF);transition:fill .2s ease}.hc-modal-closeButton:hover svg path{fill:var(--content-general-primary, #1F2937)}.hc-modal-closeButton:focus{outline:none;box-shadow:0 0 0 2px var(--misc-focus, rgba(52, 116, 218, .3))}.hc-card-card{width:100%;min-width:var(--size-rem-10, 160px);display:inline-flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:var(--layout-comp-1-gap, 8px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);overflow:hidden;position:relative}.hc-card-card--clickable{cursor:pointer}.hc-card-card--withPadding{padding:var(--size-rem-1, 16px)}.hc-card-card--withHeight{height:750px}.hc-card-card--mobile.hc-card-card--withHeight{height:auto}.hc-card-imageContainer{position:relative;width:100%;aspect-ratio:1 / 1;padding:var(--layout-comp-1-padding-horizontal, 8px);border-radius:var(--radius-lg, 12px);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;overflow:hidden}.hc-card-image{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;z-index:0}.hc-card-shadowOverlay{position:absolute;left:0;top:0;width:100%;height:100%;background:linear-gradient(180deg,#0000 65%,#0003);border-radius:var(--radius-lg, 12px);pointer-events:none;z-index:1}.hc-card-badgeWrapper{position:relative;z-index:2}.hc-card-textContainer{align-self:stretch;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:var(--size-rem-0-25, 4px)}.hc-card-starsRow{align-self:stretch;display:flex;align-items:center;justify-content:space-between;gap:var(--size-rem-0-25, 4px)}.hc-card-starsRow--fixed{height:var(--size-rem-1, 16px)}.hc-card-starsContainer{display:flex;justify-content:flex-start;align-items:flex-start}.hc-card-superiorBadge{color:var(--content-general-secondary, #6B7280);font-size:var(--text-label-tiny-font-size, 12px);font-weight:var(--text-label-tiny-font-weight, 500);line-height:var(--text-label-tiny-line-height, 16px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);display:flex;position:relative;top:-4px;left:2px}.hc-card-swissLodge{color:var(--content-general-secondary, #6B7280);font-size:var(--text-label-small-font-size, 14px);font-weight:var(--text-label-small-font-weight, 500);line-height:var(--text-label-small-line-height, 20px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);display:flex;align-items:center;height:9px}.hc-card-starsPlaceholder{height:var(--size-rem-1-25, 20px)}.hc-card-card--desktop .hc-card-starsPlaceholder{height:var(--size-rem-1-5, 24px)}.hc-card-ratingInfo{display:flex;align-items:center}.hc-card-ratingSvg{display:block;position:relative;left:-4px}.hc-card-ratingLabel{color:var(--content-general-tertiary, #9CA3AF);font-size:var(--size-rem-0-875, 14px);font-style:normal;font-weight:var(--font-weight-regular, 400);line-height:var(--text-label-medium-line-height, 24px)}.hc-card-ratingValue{position:absolute;margin-left:-2px;margin-top:-3px;padding:2px;color:var(--content-general-inverse-primary, #ffffff);font-size:var(--size-rem-0-75, 12px);font-style:normal;font-weight:var(--font-weight-regular, 400);line-height:var(--size-rem-1-5, 24px);display:inline-block}.hc-card-label{align-self:stretch;color:var(--content-general-secondary, #6B7280);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);word-wrap:break-word;position:relative}.hc-card-label--desktop{font-size:var(--text-label-large-font-size, 18px);font-weight:var(--text-label-large-font-weight, 500);line-height:var(--text-label-large-line-height, 28px)}.hc-card-label--mobile{font-size:var(--text-paragraph-large-font-size, 18px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-paragraph-large-line-height, 28px);max-height:var(--size-rem-4, 64px)}.hc-card-label--hotelDeals{overflow:hidden;text-overflow:ellipsis}.hc-card-card--desktop .hc-card-label--hotelDeals{white-space:nowrap}.hc-card-label--mobileOverflow{overflow:hidden}.hc-card-label--noRating{top:calc(-1 * var(--size-rem-0-5, 8px))}.hc-card-card--mobile .hc-card-label--noRating{top:calc(-1 * var(--size-rem-0-25, 4px))}.hc-card-price{align-self:stretch;font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);color:var(--content-general-primary, #1F2937);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);word-wrap:break-word}.hc-card-price--hotelDealsWithRating{position:relative;top:0}.hc-card-price--hotelDealsNoRating{position:relative;margin-top:0}.hc-card-price--noRating{position:relative;top:calc(-1 * var(--size-rem-0-5, 8px))}.hc-card-card--mobile .hc-card-price--noRating{top:calc(-1 * var(--size-rem-0-25, 4px))}.hc-card-price--regularWithRating{position:relative;top:0}.hc-dropdown-container{position:relative;display:inline-block;width:100%;min-width:0;font-family:var(--font-primary, system-ui, -apple-system, sans-serif);-webkit-user-select:none;user-select:none;cursor:pointer}.hc-dropdown-container--disabled{cursor:not-allowed}.hc-dropdown-button{display:flex;align-items:center;justify-content:space-between;padding-top:var(--size-rem-1-25, 20px);padding-bottom:var(--size-rem-1-25, 20px);padding-left:var(--size-rem-1-5, 24px);padding-right:var(--size-rem-1-5, 24px);border-radius:var(--radius-lg, 12px);border:1px solid var(--border-general-inverse-secondary, #E5E7EB);background-color:var(--background-general-primary, #ffffff);color:var(--content-general-primary, #1F2937);font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);width:100%;height:auto;transition:all .2s ease}.hc-dropdown-button--focus{border:1px solid var(--border-action-highlight-hover, #1D4ED8)}.hc-dropdown-button--error{border:1px solid var(--content-status-error-idle, #DC2626)}.hc-dropdown-button--disabled{background-color:var(--background-general-secondary, #F3F4F6);color:var(--content-general-tertiary, #9CA3AF)}.hc-dropdown-button--open{border:1px solid var(--border-action-highlight-hover, #1D4ED8)}.hc-dropdown-chevron{transition:transform .2s ease}.hc-dropdown-chevron--open{transform:rotate(180deg)}.hc-dropdown-list{position:absolute;top:100%;left:0;right:0;border-radius:var(--radius-sm, 6px);border:1px solid var(--border-general-primary, #D1D5DB);background-color:var(--background-general-primary, #ffffff);box-shadow:0 4px 8px #0000001a;z-index:10;display:none;width:100%;height:auto;list-style:none;margin:0;margin-top:var(--size-rem-0-25, 4px);padding:0;max-height:240px;overflow-y:auto}.hc-dropdown-list--open{display:block}.hc-dropdown-option{padding:var(--size-rem-0-5, 8px) var(--size-rem-1, 16px);background-color:transparent;color:var(--content-general-primary, #1F2937);font-weight:var(--font-weight-regular, 400);cursor:pointer;transition:background-color .2s ease;white-space:nowrap;width:100%;height:auto}.hc-dropdown-option:hover{background-color:var(--background-general-secondary, #F3F4F6)}.hc-dropdown-option--selected{background-color:var(--background-action-highlight-hover-light, rgba(37, 99, 235, .1));color:var(--background-action-highlight-active, #1D4ED8);font-weight:var(--font-weight-medium, 500)}.hc-dropdown-hiddenSelect{display:none}.hc-input-container{display:inline-flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:var(--size-rem-0-5, 8px);width:100%;min-width:0;font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}.hc-input-label{font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-paragraph-base-line-height, 24px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);color:var(--content-general-primary, #1F2937);align-self:stretch;justify-content:flex-start}.hc-input-label--disabled{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-input-wrapper{align-self:stretch;padding:var(--size-rem-0-75, 12px);background-color:var(--background-general-primary, #ffffff);border-radius:var(--radius-lg, 12px);border:1px solid var(--border-action-secondary-idle, #D1D5DB);display:flex;justify-content:flex-start;align-items:center;gap:var(--size-rem-0-75, 12px);cursor:text;transition:border-color .2s ease}.hc-input-wrapper:hover{border-color:var(--border-action-secondary-hover, #9CA3AF)}.hc-input-wrapper--focus{border-color:var(--misc-focus, #2563EB)}.hc-input-wrapper--error{border-color:var(--border-status-error-idle, #DC2626)}.hc-input-wrapper--disabled{background-color:var(--background-action-disabled-idle, #F3F4F6);border-color:var(--border-action-disabled-idle, #E5E7EB);cursor:not-allowed}.hc-input-input{flex:1;border:none;outline:none;background-color:transparent;font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--font-weight-regular, 400);line-height:var(--text-paragraph-base-line-height, 24px);color:var(--content-general-primary, #1F2937);cursor:text;font-family:var(--font-primary, system-ui, -apple-system, sans-serif);justify-content:flex-start;width:100%}.hc-input-input--disabled{color:var(--content-action-disabled-idle, #9CA3AF);cursor:not-allowed}.hc-input-input::placeholder{color:var(--content-general-tertiary, #9CA3AF);opacity:1}.hc-input-wrapper:hover .hc-input-input::placeholder{color:var(--content-general-secondary, #6B7280)}.hc-input-input--disabled::placeholder{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-input-icon{width:var(--size-rem-1-5, 24px);height:var(--size-rem-1-5, 24px);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center;color:var(--content-general-tertiary, #9CA3AF);flex-shrink:0}.hc-input-wrapper:hover .hc-input-icon{color:var(--content-general-secondary, #6B7280)}.hc-input-wrapper--focus .hc-input-icon{color:var(--content-general-primary, #1F2937)}.hc-input-wrapper--disabled .hc-input-icon{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-input-prefix{display:flex;align-items:center;padding-right:var(--size-rem-0-5, 8px);font-size:var(--text-paragraph-base-font-size, 16px);font-weight:var(--text-paragraph-base-font-weight, 400);color:var(--content-general-tertiary, #9CA3AF);border-right:var(--size-rem-0-125, 2px) solid var(--border-general-divider, #E5E7EB);margin-right:var(--size-rem-0-5, 8px)}.hc-input-helper{font-size:var(--text-paragraph-small-font-size, 14px);font-weight:var(--font-weight-regular, 400);line-height:var(--text-paragraph-small-line-height, 20px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);color:var(--content-general-secondary, #6B7280);align-self:stretch;justify-content:flex-start}.hc-input-helper--error{color:var(--content-status-error-idle, #DC2626)}.hc-input-helper--disabled{color:var(--content-action-disabled-idle, #9CA3AF)}.hc-block-icon{display:flex;flex-direction:column;align-items:center;text-align:center;padding:var(--size-rem-1, 16px);gap:var(--size-rem-1, 16px);width:160px;min-height:148px;cursor:default;font-family:var(--font-primary, system-ui, sans-serif);background-color:transparent;border-radius:var(--radius-lg, 12px)}.hc-block-icon--clickable{cursor:pointer}.hc-block-icon--clickable:hover{background-color:var(--background-general-tertiary, #F3F4F6)}.hc-block-icon-container--primary{width:var(--size-rem-3, 48px);height:var(--size-rem-3, 48px);min-width:var(--size-rem-3, 48px);min-height:var(--size-rem-3, 48px);border-radius:50%;display:grid;place-items:center;background-color:var(--background-action-primary-idle, #C81E4C);color:var(--content-action-primary-inverse-idle, #ffffff);flex-shrink:0;padding:0;box-sizing:border-box;font-size:var(--text-paragraph-large-font-size, 18px);line-height:0}.hc-block-icon-container--secondary{width:var(--size-rem-3, 48px);height:var(--size-rem-3, 48px);min-width:var(--size-rem-3, 48px);min-height:var(--size-rem-3, 48px);border-radius:50%;display:grid;place-items:center;background-color:var(--background-general-secondary, #F9FAFB);color:var(--content-general-secondary, #6B7280);flex-shrink:0;padding:0;box-sizing:border-box;font-size:var(--text-paragraph-large-font-size, 18px);line-height:0}.hc-block-text-container{display:flex;flex-direction:column;gap:var(--size-rem-0-25, 4px)}.hc-block-icon-label{font-size:var(--text-label-medium-font-size, 14px);line-height:var(--text-label-medium-line-height, 20px);font-weight:var(--text-label-medium-font-weight, 500);color:var(--content-general-primary, #1F2937);margin-top:0}.hc-block-icon-description{font-size:var(--text-paragraph-small-font-size, 14px);line-height:var(--text-paragraph-small-line-height, 20px);font-weight:var(--text-paragraph-small-font-weight, 400);color:var(--content-general-secondary, #6B7280);margin-top:calc(-1 * var(--size-rem-0-5, 8px))}.hc-block-image{position:relative;display:flex;flex-direction:column;width:100%;max-width:292px;height:344px;background-color:var(--background-general-secondary, #F9FAFB);border-radius:var(--radius-lg, 12px);overflow:hidden;cursor:default;font-family:var(--font-primary, system-ui, sans-serif)}.hc-block-image--clickable{cursor:pointer}.hc-block-image-container{flex:1;background-color:var(--background-general-tertiary, #F3F4F6);display:flex;align-items:center;justify-content:center;overflow:hidden}.hc-block-footer{padding:var(--size-rem-1-5, 24px);display:flex;align-items:center;justify-content:space-between;background-color:var(--background-general-secondary, #F9FAFB);border-top:1px solid var(--border-general-divider, #E5E7EB)}.hc-block-image--clickable:hover .hc-block-footer{background-color:var(--background-action-highlight-hover, #FEF2F2)}.hc-block-image-label{font-size:var(--text-label-large-font-size, 16px);line-height:var(--text-label-large-line-height, 24px);font-weight:var(--text-label-large-font-weight, 500);color:var(--content-action-highlight-idle, #C81E4C)}.hc-block-image--clickable:hover .hc-block-image-label{color:var(--content-action-highlight-hover, #A3183D)}.hc-block-arrow{color:var(--content-action-highlight-idle, #C81E4C);font-size:var(--text-paragraph-large-font-size, 18px)}.hc-block-image--clickable:hover .hc-block-arrow{color:var(--content-action-highlight-hover, #A3183D)}.hc-review-container{padding:var(--size-rem-1-5, 24px);border-radius:var(--size-rem-1-5, 24px);border:1px solid var(--border-general-divider, #E5E7EB);background-color:var(--background-general-primary, #ffffff);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:var(--size-rem-1, 16px);box-sizing:border-box}@media(min-width:1024px){.hc-review-container{width:411px;min-height:320px}}@media(max-width:1023px){.hc-review-container{width:343px;min-height:auto}}.hc-review-name{align-self:stretch;color:var(--content-general-tertiary, #9CA3AF);font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);justify-content:flex-start}.hc-review-frame{align-self:stretch;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:var(--size-rem-0-5, 8px)}.hc-review-stars{display:inline-flex;justify-content:flex-start;align-items:center;gap:var(--size-rem-0-5, 8px)}.hc-review-quote{align-self:stretch;color:var(--content-general-primary, #1F2937);font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);justify-content:flex-start}.hc-review-date{align-self:stretch;color:var(--content-general-tertiary, #9CA3AF);font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);justify-content:flex-start}.hc-faq-container{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;gap:0;width:100%}.hc-faq-item{align-self:stretch;border-bottom:1px solid var(--border-general-divider, #E5E7EB);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start}.hc-faq-question-btn{align-self:stretch;padding:var(--size-rem-1-5, 24px) 0!important;display:flex!important;justify-content:space-between!important;align-items:center!important;gap:var(--size-rem-1, 16px)!important;background:none!important;border:none!important;cursor:pointer;text-align:left;font-family:var(--font-primary, system-ui, sans-serif);width:100%!important}.hc-faq-question-text{flex:1 1 0;color:var(--content-general-primary, #1F2937);font-size:var(--text-paragraph-large-font-size, 18px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--font-weight-medium, 500);line-height:var(--text-paragraph-large-line-height, 28px)}.hc-faq-icon-container{width:var(--size-rem-1-5, 24px);height:var(--size-rem-1-5, 24px);display:flex;justify-content:center;align-items:center;color:var(--content-general-primary, #1F2937)}.hc-faq-chevron{transform:rotate(0);transition:transform .2s ease}.hc-faq-chevron--open{transform:rotate(180deg)}.hc-faq-answer{overflow:hidden;display:none}.hc-faq-answer--open{overflow:hidden;display:block}.hc-faq-answer-text{padding-bottom:var(--size-rem-1-5, 24px);padding-right:var(--size-rem-3, 48px);color:var(--content-general-secondary, #6B7280);font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);margin:0}.hc-benefits-section{width:100%;background:linear-gradient(180deg,var(--background-general-tertiary, #F3F4F6) 0%,var(--background-general-primary, #ffffff) 100%);display:flex;flex-direction:column;justify-content:flex-start;align-items:center}@media(min-width:1024px){.hc-benefits-section{padding-left:var(--layout-section-padding-horizontal, 64px);padding-right:var(--layout-section-padding-horizontal, 64px);padding-top:var(--size-rem-4, 64px);padding-bottom:var(--size-rem-4, 64px);gap:var(--size-rem-4, 64px)}}@media(max-width:1023px){.hc-benefits-section{padding-left:var(--size-rem-1, 16px);padding-right:var(--size-rem-1, 16px);padding-top:var(--size-rem-3, 48px);padding-bottom:var(--size-rem-3, 48px);gap:var(--size-rem-3, 48px)}}.hc-benefits-container{width:100%;max-width:1248px;display:flex;flex-direction:column;justify-content:flex-start;align-items:center}@media(min-width:1024px){.hc-benefits-container{gap:var(--size-rem-4, 64px)}}@media(max-width:1023px){.hc-benefits-container{gap:var(--size-rem-3, 48px)}}.hc-benefits-header{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:var(--size-rem-1, 16px);text-align:center}.hc-benefits-title{color:var(--content-general-primary, #1F2937);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-display-medium-font-weight, 700);margin:0}@media(min-width:1024px){.hc-benefits-title{font-size:var(--text-display-medium-font-size, 36px);line-height:var(--text-display-medium-line-height, 44px)}}@media(max-width:1023px){.hc-benefits-title{font-size:var(--text-display-small-font-size, 30px);line-height:var(--text-display-small-line-height, 36px)}}.hc-benefits-subtitle{color:var(--content-general-secondary, #6B7280);font-size:var(--text-paragraph-large-font-size, 18px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-large-font-weight, 400);line-height:var(--text-paragraph-large-line-height, 28px);margin:0}.hc-benefits-grid{width:100%;display:grid;gap:var(--size-rem-2, 32px);max-width:800px}@media(min-width:1024px){.hc-benefits-grid{grid-template-columns:repeat(2,1fr)}}@media(max-width:1023px){.hc-benefits-grid{grid-template-columns:1fr}}.hc-benefits-item{padding:var(--size-rem-2, 32px);background-color:var(--background-general-primary, #ffffff);border-radius:var(--radius-lg, 12px);border:1px solid var(--border-general-divider, #E5E7EB);display:flex;flex-direction:column;gap:var(--size-rem-0-5, 8px)}.hc-benefits-item-title{color:var(--content-general-primary, #1F2937);font-size:var(--text-heading-medium-font-size, 20px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-heading-medium-font-weight, 600);line-height:var(--text-heading-medium-line-height, 28px);margin:0}.hc-benefits-item-description{color:var(--content-general-secondary, #6B7280);font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);margin:0}.hc-benefits-contact-card{width:100%;max-width:600px;padding:var(--size-rem-3, 48px);background-color:var(--background-general-primary, #ffffff);border-radius:var(--radius-xl, 16px);box-shadow:0 10px 25px -5px #0000001a;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:var(--size-rem-2, 32px);text-align:center}.hc-benefits-contact-title{color:var(--content-general-primary, #1F2937);font-size:var(--text-heading-large-font-size, 24px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-heading-large-font-weight, 600);line-height:var(--text-heading-large-line-height, 32px);margin:0}.hc-benefits-contact-description{color:var(--content-general-secondary, #6B7280);font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, sans-serif);font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 24px);margin:0}@media(max-width:1023px){.hc-benefits-contact-btn{width:100%}}@media(min-width:1024px){.hc-benefits-contact-btn{width:auto}}.hc-pin-pin{position:relative;display:inline-flex;align-items:center;justify-content:center;height:48px;cursor:pointer;outline:none;background:transparent;border:none;padding:0}.hc-pin-pin:disabled{cursor:not-allowed}.hc-pin-body{display:flex;align-items:center;justify-content:center;gap:var(--size-rem-0-25, 4px);padding:2px var(--size-rem-0-75, 12px);height:100%;border-radius:var(--radius-full, 9999px);white-space:nowrap;transition:background-color .15s ease,border-color .15s ease}.hc-pin-hotel .hc-pin-body{width:48px;min-width:48px}.hc-pin-pointer{position:absolute;bottom:-5px;left:50%;transform:translate(-50%);width:17px;height:17px;display:flex;align-items:center;justify-content:center}.hc-pin-pointer-inner{width:12px;height:12px;border-radius:2px;transform:rotate(45deg);transition:background-color .15s ease,border-color .15s ease}.hc-pin-currency{font-family:var(--text-paragraph-tiny-font-family, system-ui, sans-serif);font-size:var(--text-paragraph-tiny-font-size, 12px);font-weight:var(--text-paragraph-tiny-font-weight, 400);line-height:var(--text-paragraph-tiny-line-height, 16px);text-align:center}.hc-pin-price{font-family:var(--text-label-medium-font-family, system-ui, sans-serif);font-size:var(--text-label-medium-font-size, 14px);font-weight:var(--text-label-medium-font-weight, 500);line-height:var(--text-label-medium-line-height, 20px);text-align:center}.hc-pin-favorite-container{display:flex;align-items:center;padding-left:var(--size-rem-0-25, 4px)}.hc-pin-favorite-icon,.hc-pin-hotel-icon{width:16px;height:16px;flex-shrink:0}.hc-pin-primary .hc-pin-body,.hc-pin-primary .hc-pin-pointer-inner{background-color:var(--background-action-primary-idle, #C81E4C)}.hc-pin-primary .hc-pin-currency,.hc-pin-primary .hc-pin-price,.hc-pin-primary .hc-pin-favorite-icon,.hc-pin-primary .hc-pin-hotel-icon{color:var(--content-action-primary-inverse-idle, #ffffff)}.hc-pin-primary:hover:not(:disabled) .hc-pin-body{background-color:var(--background-action-primary-hover, #A3183D)}.hc-pin-primary:hover:not(:disabled) .hc-pin-pointer-inner{background-color:var(--background-action-primary-hover, #A3183D)}.hc-pin-primary:hover:not(:disabled) .hc-pin-currency,.hc-pin-primary:hover:not(:disabled) .hc-pin-price{color:var(--content-action-primary-inverse-hover, #ffffff)}.hc-pin-primary:hover:not(:disabled) .hc-pin-favorite-icon{color:var(--content-action-primary-inverse-hover, #ffffff)}.hc-pin-primary:hover:not(:disabled) .hc-pin-hotel-icon{color:var(--content-action-primary-inverse-hover, #ffffff)}.hc-pin-primary:active:not(:disabled) .hc-pin-body{background-color:var(--background-action-primary-active, #8B1534)}.hc-pin-primary:active:not(:disabled) .hc-pin-pointer-inner{background-color:var(--background-action-primary-active, #8B1534)}.hc-pin-primary:active:not(:disabled) .hc-pin-currency,.hc-pin-primary:active:not(:disabled) .hc-pin-price{color:var(--content-action-primary-inverse-active, #ffffff)}.hc-pin-primary:active:not(:disabled) .hc-pin-favorite-icon{color:var(--content-action-primary-inverse-active, #ffffff)}.hc-pin-primary:active:not(:disabled) .hc-pin-hotel-icon{color:var(--content-action-primary-inverse-active, #ffffff)}.hc-pin-primary:focus-visible:not(:disabled) .hc-pin-body{box-shadow:0 0 0 2px var(--misc-focus, #3B82F6),0 0 16px 4px var(--misc-focus, #3B82F6)}.hc-pin-secondary .hc-pin-body,.hc-pin-secondary .hc-pin-pointer-inner{background-color:var(--background-action-secondary-idle, #ffffff);border:2px solid var(--border-action-secondary-idle, #D1D5DB)}.hc-pin-secondary .hc-pin-currency,.hc-pin-secondary .hc-pin-price{color:var(--content-action-secondary-idle, #374151)}.hc-pin-secondary .hc-pin-favorite-icon{color:var(--content-action-primary-idle, #C81E4C)}.hc-pin-secondary .hc-pin-hotel-icon{color:var(--content-action-secondary-idle, #374151)}.hc-pin-secondary:hover:not(:disabled) .hc-pin-body{background-color:var(--background-action-secondary-hover, #F9FAFB);border-color:var(--border-action-secondary-hover, #9CA3AF)}.hc-pin-secondary:hover:not(:disabled) .hc-pin-pointer-inner{background-color:var(--background-action-secondary-hover, #F9FAFB);border-color:var(--border-action-secondary-hover, #9CA3AF)}.hc-pin-secondary:hover:not(:disabled) .hc-pin-currency,.hc-pin-secondary:hover:not(:disabled) .hc-pin-price{color:var(--content-action-secondary-hover, #1F2937)}.hc-pin-secondary:hover:not(:disabled) .hc-pin-favorite-icon{color:var(--content-action-primary-hover, #A3183D)}.hc-pin-secondary:hover:not(:disabled) .hc-pin-hotel-icon{color:var(--content-action-secondary-hover, #1F2937)}.hc-pin-secondary:active:not(:disabled) .hc-pin-body{background-color:var(--background-action-secondary-active, #F3F4F6);border-color:var(--border-action-secondary-active, #6B7280)}.hc-pin-secondary:active:not(:disabled) .hc-pin-pointer-inner{background-color:var(--background-action-secondary-active, #F3F4F6);border-color:var(--border-action-secondary-active, #6B7280)}.hc-pin-secondary:active:not(:disabled) .hc-pin-currency,.hc-pin-secondary:active:not(:disabled) .hc-pin-price{color:var(--content-action-secondary-active, #111827)}.hc-pin-secondary:active:not(:disabled) .hc-pin-favorite-icon{color:var(--content-action-primary-active, #8B1534)}.hc-pin-secondary:active:not(:disabled) .hc-pin-hotel-icon{color:var(--content-action-secondary-active, #111827)}.hc-pin-secondary:focus-visible:not(:disabled){box-shadow:0 0 0 2px var(--misc-focus, #3B82F6),0 0 16px 4px var(--misc-focus, #3B82F6)}.hc-pin-pin:disabled .hc-pin-body{background-color:var(--background-action-disabled-idle, #E5E7EB);border:none}.hc-pin-pin:disabled .hc-pin-pointer-inner{background-color:var(--background-action-disabled-idle, #E5E7EB);border:none}.hc-pin-pin:disabled .hc-pin-currency,.hc-pin-pin:disabled .hc-pin-price,.hc-pin-pin:disabled .hc-pin-favorite-icon,.hc-pin-pin:disabled .hc-pin-hotel-icon{color:var(--content-action-disabled-idle, #9CA3AF)}._container_fbu27_1{position:relative;width:100%;flex:1}._button_fbu27_7{display:flex;align-items:center;gap:var(--size-rem-0-5);padding:var(--size-rem-0-75) var(--size-rem-1);background-color:transparent;border:none;border-radius:var(--radius-base);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-weight:var(--text-paragraph-base-font-weight);color:var(--general-content-primary);cursor:pointer;transition:border-color .2s ease;width:100%;height:auto}._button_fbu27_7:hover:not(._button--disabled_fbu27_25){border-color:var(--color-red-500)}._button_fbu27_7:focus{outline:none;border-color:var(--color-red-500);box-shadow:0 0 0 2px #dc26261a}._button--disabled_fbu27_25{opacity:.5;cursor:not-allowed}._icon_fbu27_40{display:flex;align-items:center;color:var(--color-gray-500)}._label_fbu27_46{flex:1;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._backdrop_fbu27_56{position:fixed;top:0;left:0;right:0;bottom:0;background-color:transparent;z-index:99}@media(max-width:767px){._backdrop_fbu27_56{background-color:#00000080;animation:_fadeIn_fbu27_1 .2s ease}@keyframes _fadeIn_fbu27_1{0%{opacity:0}to{opacity:1}}}._dropdown_fbu27_83{position:fixed;left:50%;transform:translate(-50%) translateY(-10px);background-color:var(--background-general-primary);border:1px solid var(--border-general-divider);border-radius:var(--radius-2xl);box-shadow:0 20px 50px -10px #00000026;z-index:100;opacity:0;visibility:hidden;pointer-events:none;transition:opacity .2s ease,transform .2s ease,visibility .2s;width:768px;max-width:calc(100vw - var(--size-rem-2));max-height:calc(100vh - 200px);overflow:hidden}._dropdown--open_fbu27_102{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%) translateY(10px)}._header_fbu27_109{display:flex;justify-content:center;align-items:center;padding:var(--size-rem-1);gap:var(--size-rem-0-5)}._tabs_fbu27_117{display:flex;margin:0 auto;border-radius:88888888px;border:1px solid var(--border-general-divider);background:var(--background-general-primary);max-width:512px;padding:var(--size-rem-0-25);align-items:center;gap:var(--size-rem-0-25);align-self:stretch}._tab_fbu27_117{background-color:transparent;border:none;border-radius:88888888px;font-family:var(--text-label-medium-font-family);font-size:var(--text-label-medium-font-size);font-weight:var(--text-label-medium-font-weight);line-height:var(--text-label-medium-line-height);color:var(--content-general-primary);cursor:pointer;transition:all .2s ease;min-width:200px;display:flex;padding:var(--size-rem-0-75) var(--size-rem-1-5);justify-content:center;align-items:center;gap:var(--size-rem-0-5);flex:1 0 0}._tab_fbu27_117:hover:not(._tab--active_fbu27_150){background:var(--background-general-secondary)}._tab--active_fbu27_150{color:var(--content-action-highlight-inverse-idle);font-family:var(--text-label-medium-font-family);font-size:var(--text-label-medium-font-size);font-style:normal;font-weight:var(--text-label-medium-font-weight);line-height:var(--text-label-medium-line-height);border-radius:88888888px;background:var(--content-action-highlight-idle)}._actions_fbu27_165{display:flex;gap:var(--size-rem-1);align-items:center}._resetButton_fbu27_171{padding:var(--size-rem-0-75) var(--size-rem-2);background-color:transparent;border:none;font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-small-font-size);font-weight:var(--text-paragraph-base-font-weight);color:var(--general-content-secondary);cursor:pointer;transition:color .2s ease;text-decoration:underline}._resetButton_fbu27_171:hover{color:var(--general-content-primary)}._applyButtonContainer_fbu27_188{display:flex;align-items:center}._content_fbu27_193{height:auto;padding:var(--size-rem-1);margin:0 auto;display:block}._anytimeContent_fbu27_200{display:flex;flex-direction:column;align-items:center;padding:var(--size-rem-3) 0}._contentHeading_fbu27_207{color:var(--content-general-primary);text-align:center;font-family:var(--text-paragraph-large-font-family);font-size:var(--text-paragraph-large-font-size);font-style:normal;font-weight:var(--text-paragraph-large-font-weight);line-height:var(--text-paragraph-large-line-height);margin-bottom:var(--size-rem-1)}._monthGrid_fbu27_219{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--size-rem-0-5);width:100%;max-width:800px}._monthGridMobile_fbu27_228{grid-template-columns:repeat(2,1fr);gap:var(--size-rem-0-5)}._monthButton_fbu27_233{display:flex;flex-direction:column;align-items:center;justify-content:center;height:56px!important;min-width:160px;gap:0!important;justify-content:center!important;cursor:pointer;transition:all .2s ease;min-height:56px;border-radius:var(--radius-lg)!important;border:1px solid var(--border-general-divider)!important;background:var(--background-action-highlight-idle-light)!important}._monthButton_fbu27_233:hover:not(._monthButton--disabled_fbu27_250){border-color:var(--color-gray-400);box-shadow:0 2px 8px #0000001a;transform:translateY(-2px);border-radius:var(--radius-lg)!important;border:1px solid var(--border-action-highlight-hover)!important;background:var(--background-action-highlight-hover-light)!important}._monthButton--selected_fbu27_259{border-radius:var(--radius-lg);border:1px solid var(--border-action-highlight-active)!important;background:var(--background-action-highlight-active-light)!important}._monthButton_fbu27_233:focus{border-radius:var(--radius-lg);border:1px solid var(--border-action-secondary-idle);background:var(--background-action-highlight-idle-light);box-shadow:0 0 0 2px var(--misc-focus, #3474DA),0 0 16px 4px var(--misc-focus, #3474DA)}._monthButton--disabled_fbu27_250{opacity:.4;cursor:not-allowed}._monthLabel_fbu27_279{color:var(--content-general-primary);text-align:center;font-family:var(--text-paragraph-small-font-family);font-size:var(--text-paragraph-small-font-size);font-style:normal;font-weight:var(--text-paragraph-small-font-weight);line-height:var(--text-paragraph-small-line-height)}._monthYear_fbu27_290{color:var(--content-general-secondary);text-align:center;font-family:var(--text-paragraph-tiny-font-family);font-size:var(--text-paragraph-tiny-font-size);font-style:normal;font-weight:var(--text-paragraph-tiny-font-weight);line-height:var(--text-paragraph-tiny-line-height)}._monthButton--selected_fbu27_259 ._monthLabel_fbu27_279,._monthButton--selected_fbu27_259 ._monthYear_fbu27_290{color:var(--content-action-highlight-active)!important}._monthButton_fbu27_233:hover:not(._monthButton--disabled_fbu27_250) ._monthLabel_fbu27_279,._monthButton_fbu27_233:hover:not(._monthButton--disabled_fbu27_250) ._monthYear_fbu27_290{color:var(--content-action-highlight-hover)!important}._anytimeButton_fbu27_312{justify-content:center}._anytimeButton_fbu27_312 ._monthLabel_fbu27_279{font-weight:var(--text-label-medium-font-weight)}._datesContent_fbu27_320{width:100%}._dateInputs_fbu27_324{display:grid;grid-template-columns:1fr 1fr;gap:var(--size-rem-2);max-width:600px;margin:0 auto}._inputGroup_fbu27_332{display:flex;flex-direction:column;gap:var(--size-rem-0-5)}._inputLabel_fbu27_338{font-family:var(--text-paragraph-small-font-family);font-size:var(--text-paragraph-small-font-size);font-weight:var(--font-weight-medium);color:var(--general-content-primary)}._dateInput_fbu27_324{padding:var(--size-rem-0-75) var(--size-rem-1);background-color:var(--color-ink-base-white);border:1px solid var(--color-gray-300);border-radius:var(--radius-base);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);color:var(--general-content-primary);cursor:pointer;transition:border-color .2s ease}._dateInput_fbu27_324:hover:not(:disabled){border-color:var(--color-red-500)}._dateInput_fbu27_324:focus{outline:none;border-color:var(--color-red-500);box-shadow:0 0 0 2px #dc26261a}._dateInput_fbu27_324:disabled{opacity:.5;cursor:not-allowed}._dropdownMobile_fbu27_376{position:fixed;top:auto;bottom:0;left:0;right:0;width:100%;max-width:100vw;max-height:85vh;border-radius:var(--radius-2xl) var(--radius-2xl) 0 0;transform:translateY(100%)}._dropdownMobile_fbu27_376._dropdown--open_fbu27_102{transform:translateY(0)}._container_16lek_13{display:flex;flex-direction:column;width:100%;background:var(--background-general-primary)}@media(--mobile-tablet){._containerDropdown_16lek_22{padding:var(--size-rem-1)}}._containerExpanded_16lek_27{flex:1;min-height:auto;overflow:hidden;display:flex;flex-direction:column;padding:0}._sectionTitle_16lek_40{color:var(--content-general-primary);font-family:var(--text-heading-small-font-family);font-size:var(--text-heading-small-font-size);font-style:normal;font-weight:500;line-height:var(--text-heading-small-line-height);letter-spacing:-.6px;margin:0}@media(--desktop){._header_16lek_57{display:flex;justify-content:center;align-items:center;padding:var(--size-rem-1);gap:var(--size-rem-0-5)}}@media(--mobile-tablet){._header_16lek_57{display:flex;justify-content:center;align-items:center;padding:var(--size-rem-1) 0;gap:var(--size-rem-0-75);flex-shrink:0}._whenSection_16lek_75{padding:var(--size-rem-1-5) var(--size-rem-1)}}._tabs_16lek_84{display:flex;width:100%;border-radius:88888888px!important;border:1px solid var(--border-general-divider)!important;background:var(--background-general-primary)!important;padding:var(--size-rem-0-25);align-items:center;gap:var(--size-rem-0-25)}._tab_16lek_84{background-color:transparent!important;border:none!important;border-radius:88888888px!important;font-family:var(--text-label-medium-font-family);font-size:var(--text-label-medium-font-size);font-weight:var(--text-label-medium-font-weight);line-height:var(--text-label-medium-line-height);color:var(--content-action-secondary-idle);cursor:pointer;transition:all .2s ease;display:flex;padding:10px var(--size-rem-1-5);justify-content:center;align-items:center;gap:var(--size-rem-0-5);flex:1 0 0;min-width:100px}._tab_16lek_84:hover:not(._tabActive_16lek_115){background:var(--background-general-secondary)!important}._tabActive_16lek_115{color:var(--content-action-highlight-inverse-idle)!important;background:var(--content-action-highlight-idle)!important}._applyButtonContainer_16lek_128{display:flex;align-items:center}._content_16lek_137{flex:1;overflow-y:auto;padding:var(--size-rem-3) var(--size-rem-1);gap:var(--size-rem-2)}@media(--mobile-tablet){._content_16lek_137{padding:var(--size-rem-1) 0;gap:unset}}._containerExpanded_16lek_27 ._content_16lek_137{padding:var(--size-rem-3) 0}._flexibleContent_16lek_159{display:flex;flex-direction:column;align-items:center;padding:0 var(--size-rem-1)}@media(--mobile-tablet){._flexibleContent_16lek_159{padding:0!important}}._contentHeading_16lek_172{color:var(--content-general-primary);text-align:center;font-family:var(--text-paragraph-large-font-family);font-size:var(--text-paragraph-large-font-size);font-style:normal;font-weight:var(--text-paragraph-large-font-weight);line-height:var(--text-paragraph-large-line-height);margin-bottom:var(--size-rem-1)}._monthGrid_16lek_187{display:grid;grid-template-columns:repeat(4,1fr);gap:var(--size-rem-0-5);width:100%;max-width:700px}._monthGridMobile_16lek_196{grid-template-columns:repeat(2,1fr);gap:var(--size-rem-0-5)}._monthButton_16lek_205{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:56px;min-width:160px;padding:6px 0 8px;gap:0;cursor:pointer;transition:all .2s ease;border-radius:var(--radius-lg)!important;border:1px solid var(--border-general-divider)!important;background:var(--color-gray-50)!important;flex:1 0 0}._monthButton_16lek_205:hover:not(._monthButtonDisabled_16lek_222){border:1px solid var(--border-action-highlight-hover)!important;background:var(--background-action-highlight-hover-light)!important}._monthButtonSelected_16lek_227{border:1px solid var(--border-action-highlight-active)!important;background:var(--background-action-highlight-active-light)!important}._monthButtonSelected_16lek_227:focus{border-radius:var(--size-rem-0-5)!important;border:1px solid var(--border-action-secondary-idle)!important;background:var(--background-action-highlight-idle-light)!important;box-shadow:0 0 0 2px var(--misc-focus, #3474DA),0 0 16px 4px var(--misc-focus)!important}._monthButton_16lek_205:focus{border-radius:var(--size-rem-0-5)!important;border:1px solid var(--border-action-secondary-idle)!important;background:var(--background-action-highlight-idle-light)!important;box-shadow:0 0 0 2px var(--misc-focus, #3474DA),0 0 16px 4px var(--misc-focus, #3474DA)!important}._monthButton_16lek_205:active{border:1px solid var(--border-action-highlight-active)!important;background:var(--background-action-highlight-active-light)!important}._monthButtonDisabled_16lek_222{opacity:.4;cursor:not-allowed}._monthLabel_16lek_257{color:var(--content-general-primary);text-align:center;font-family:var(--text-paragraph-small-font-family);font-size:var(--text-paragraph-small-font-size);font-style:normal;font-weight:var(--text-paragraph-small-font-weight);line-height:var(--text-paragraph-small-line-height)}._monthYear_16lek_267{color:var(--content-general-secondary);text-align:center;font-family:var(--text-paragraph-tiny-font-family);font-size:var(--text-paragraph-tiny-font-size);font-style:normal;font-weight:var(--text-paragraph-tiny-font-weight);line-height:var(--text-paragraph-tiny-line-height)}._monthButtonSelected_16lek_227 ._monthLabel_16lek_257,._monthButtonSelected_16lek_227 ._monthYear_16lek_267{color:var(--content-action-highlight-active)}._monthButton_16lek_205:hover:not(._monthButtonDisabled_16lek_222) ._monthLabel_16lek_257,._monthButton_16lek_205:hover:not(._monthButtonDisabled_16lek_222) ._monthYear_16lek_267{color:var(--content-action-highlight-hover)}._anytimeButton_16lek_288{justify-content:center}._anytimeButton_16lek_288 ._monthLabel_16lek_257{font-weight:var(--text-label-medium-font-weight)}._datesContent_16lek_300{width:100%}@media(--mobile-tablet){._monthButton_16lek_205{min-width:auto!important}._contentDatesActive_16lek_308{padding:unset!important}}._contentDatesActive_16lek_308{padding:1rem}._container_1sjwb_1{width:100%}._navigation_1sjwb_5{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--size-rem-1-5)}._navButton_1sjwb_12{border-radius:88888888px!important;border:2px solid var(--border-action-secondary-idle)!important;background:var(--background-action-secondary-idle)!important;cursor:pointer;display:flex;width:44px!important;height:44px!important;padding:12px!important;justify-content:center;align-items:center;aspect-ratio:1/1}._navButton_1sjwb_12:hover{color:var(--color-red-500)}._prevIconButton_1sjwb_30,._nextIconButton_1sjwb_31,._positionAbs_1sjwb_32{position:absolute}@media(--mobile-tablet){._prevIconButton_1sjwb_30,._nextIconButton_1sjwb_31,._positionAbs_1sjwb_32{position:unset!important;margin-top:unset!important}}._prevIconButton_1sjwb_30,._nextIconButton_1sjwb_31{margin-top:-8px}._prevIconButton_1sjwb_30{left:15px;margin-top:10px}._nextIconButton_1sjwb_31{right:15px;margin-top:10px}._monthTitle_1sjwb_60{color:var(--content-general-primary);text-align:center;font-family:var(--text-heading-tiny-font-family);font-size:var(--text-heading-tiny-font-size);font-style:normal;font-weight:500;line-height:var(--text-heading-tiny-line-height);margin:0 0 var(--size-rem-1) 0;white-space:nowrap}._desktopLayout_1sjwb_74{display:flex;align-items:flex-start;justify-content:center;width:100%}._calendarsContainer_1sjwb_81{display:flex;padding:var(--size-rem-1);justify-content:center;align-items:flex-start;align-content:center;gap:var(--size-rem-1);align-self:stretch;flex-wrap:wrap}@media(--mobile-tablet){._calendarsContainer_1sjwb_81{justify-content:flex-start}}._calendar_1sjwb_81{display:flex;flex-direction:column}._weekDaysRow_1sjwb_103{display:grid;grid-template-columns:repeat(7,1fr)}._weekDay_1sjwb_103{color:var(--content-general-primary);font-family:var(--text-paragraph-large-font-family);font-size:var(--text-paragraph-large-font-size);font-style:normal;font-weight:var(--text-paragraph-large-font-weight);line-height:var(--text-paragraph-large-line-height);text-align:center;padding:var(--size-rem-0-5)}._weekDayWeekend_1sjwb_122{color:var(--content-action-disabled-idle)}._daysGrid_1sjwb_126{display:grid;grid-template-columns:repeat(7,1fr)}._dayCell_1sjwb_131{aspect-ratio:1;display:flex;align-items:center;justify-content:center}._dayButton_1sjwb_138{width:100%!important;height:100%!important;background-color:transparent;border:1px solid transparent;border-radius:88888888px!important;color:var(--content-general-primary)!important;text-align:center!important;font-family:var(--text-paragraph-large-font-family)!important;font-size:var(--text-paragraph-large-font-size)!important;font-style:normal;font-weight:var(--text-paragraph-large-font-weight)!important;line-height:var(--text-paragraph-large-line-height)!important;cursor:pointer;transition:all .2s ease;display:flex;height:48px!important;padding:4px 3.571px 4px 3px!important;justify-content:center!important;align-items:center;flex:1 0 0;position:relative;z-index:1}._dayButton_1sjwb_138:hover:not(._dayButton--disabled_1sjwb_164){border-radius:0 var(--border-radius-full, 0) var(--border-radius-full, 0) 0;background:var(--background-action-highlight-active-light)}._dayButton--disabled_1sjwb_164{color:var(--general-content-tertiary);opacity:.4;cursor:not-allowed}._dayButton--start_1sjwb_175,._dayButton--end_1sjwb_176{border-radius:88888888px;border:1px solid var(--border-action-highlight-idle)!important;background:var(--background-action-highlight-idle)!important;color:var(--color-ink-base-white)!important;background:var(--content-action-highlight-idle);position:relative;z-index:2}._dayButton--start_1sjwb_175:hover,._dayButton--end_1sjwb_176:hover{background-color:var(--color-gray-900)}._dayButton--inRange_1sjwb_191{border-radius:var(--radius-none)!important;background:var(--background-general-tertiary)!important}._dayButton--inRange_1sjwb_191:not(._dayButton--inRange_1sjwb_191~._dayButton--inRange_1sjwb_191):after{content:"";position:absolute;top:0;right:-20px;width:20px;height:100%;background:var(--background-general-tertiary);z-index:-1}._dayButton--inRange_1sjwb_191:not(._dayButton--inRange_1sjwb_191+._dayButton--inRange_1sjwb_191):before{content:"";position:absolute;top:0;left:-20px;width:20px;height:100%;background:var(--background-general-tertiary);z-index:-1}._dayButton--inRange_1sjwb_191:not(:has(+._dayButton--inRange_1sjwb_191)):not(:first-child):after{content:"";position:absolute;top:0;right:-20px;width:20px;height:100%;background:var(--background-general-tertiary);z-index:-1}._containerMobile_1sjwb_246{width:100%}._calendarsContainerMobile_1sjwb_250{grid-template-columns:1fr;gap:0}._monthTitleMobile_1sjwb_255{color:var(--content-general-primary);text-align:center;font-family:var(--text-heading-tiny-font-family);font-size:var(--text-heading-tiny-font-size);font-style:normal;font-weight:500;line-height:var(--text-heading-tiny-line-height);margin:0;flex:1}._navButtonDisabled_1sjwb_267{cursor:not-allowed;opacity:.4;color:var(--content-action-disabled-idle);pointer-events:none}.hc-guest-content{display:flex;flex-direction:column;width:100%}.hc-guest-content__row{display:flex;align-items:center;justify-content:space-between;height:76px;padding:var(--size-rem-1, 16px) 0}.hc-guest-content__row--children{flex-direction:column;align-items:unset!important;justify-content:unset!important;height:auto;min-height:auto}.hc-guest-content__row-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:var(--size-rem-1, 16px)}.hc-guest-content__row:not(:last-child){border-bottom:1px solid var(--border-general-divider, #E5E7EB)}.hc-guest-content__label{display:flex;flex-direction:column;gap:var(--size-rem-0-25, 4px)}.hc-guest-content__name{color:var(--content-general-primary, #1F2937);font-family:var(--text-label-large-font-family, system-ui, -apple-system, sans-serif);font-size:var(--text-label-large-font-size, 18px);font-style:normal;font-weight:500;line-height:var(--text-label-large-line-height, 1.56)}.hc-guest-content__counter{display:flex;align-items:center;gap:var(--size-rem-0-5, 8px)}.hc-guest-content__counter-button{border-radius:88888888px!important;border:2px solid var(--border-action-secondary-idle, #D1D5DB)!important;background:var(--background-action-secondary-idle, #FFFFFF)!important;display:flex;width:44px!important;height:44px!important;padding:12px!important;justify-content:center!important;align-items:center;aspect-ratio:1 / 1;cursor:pointer!important;transition:all .2s ease}.hc-guest-content__counter-button svg{width:20px;height:20px;flex-shrink:0}.hc-guest-content__counter-button:hover:not(:disabled){border-color:var(--color-red-500, #EF4444);color:var(--color-red-500, #EF4444)}.hc-guest-content__counter-button:active:not(:disabled){transform:scale(.95)}.hc-guest-content__counter-button:disabled{cursor:not-allowed;border-radius:88888888px!important;background:var(--background-action-disabled-idle, #F3F4F6)!important;border:none!important}.hc-guest-content__counter-value{color:var(--content-general-primary, #1F2937);text-align:center;font-family:var(--text-paragraph-base-font-family, system-ui, -apple-system, sans-serif);font-size:var(--text-paragraph-base-font-size, 16px);font-style:normal;font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 1.5);width:24px;min-width:24px}.hc-guest-content__toggle-wrapper{display:flex;align-items:center}.hc-guest-content__toggle{position:relative;display:inline-block;width:50px;height:28px;aspect-ratio:25/14}.hc-guest-content__toggle input{opacity:0;width:0;height:0}.hc-guest-content__slider{position:absolute;cursor:pointer;top:0;right:0;bottom:0;left:0;transition:.3s;border-radius:88888888px;background:var(--background-action-disabled-idle, #F3F4F6)}.hc-guest-content__slider:before{position:absolute;content:"";height:24px;width:24px;left:2px;top:2px;background-color:var(--color-ink-base-white, #FFFFFF);transition:.3s;border-radius:88888888px}.hc-guest-content__toggle input:checked+.hc-guest-content__slider{border-radius:88888888px;background:var(--content-action-highlight-idle, #C81E4C)}.hc-guest-content__toggle input:checked+.hc-guest-content__slider:before{transform:translate(22px)}.hc-guest-content__children-dropdowns{display:grid;gap:12px;width:100%;max-height:max-content;padding:var(--size-rem-1, 16px);overflow:auto;border-radius:var(--size-rem-0-75, 12px);background:var(--background-general-tertiary, #F9FAFB);box-sizing:border-box}.hc-guest-content__child-dropdown{display:flex;flex-direction:column;align-items:flex-start;gap:var(--size-rem-0-5, 8px);align-self:stretch;border-radius:var(--size-rem-0-75, 12px);height:max-content}.hc-guest-content__child-dropdown label{color:var(--content-general-primary, #1F2937);font-family:var(--text-label-medium-font-family, system-ui, -apple-system, sans-serif);font-size:var(--text-label-medium-font-size, 14px);font-style:normal;font-weight:500;line-height:var(--text-label-medium-line-height, 1.5)}.hc-guest-content__select{appearance:none;-webkit-appearance:none;-moz-appearance:none;width:100%;display:flex;padding:var(--size-rem-0-75, 12px);align-items:center;gap:var(--size-rem-0-75, 12px);align-self:stretch;border-radius:var(--size-rem-0-5, 8px);border:1px solid var(--border-action-secondary-idle, #D1D5DB);background:var(--background-general-primary, #FFFFFF);color:var(--content-general-primary, #1F2937);font-family:var(--text-paragraph-base-font-family, system-ui, -apple-system, sans-serif);font-size:var(--text-paragraph-base-font-size, 16px);font-style:normal;font-weight:var(--text-paragraph-base-font-weight, 400);line-height:var(--text-paragraph-base-line-height, 1.5)}.hc-guest-content__select-wrapper{position:relative;width:100%}.hc-guest-content__select-icon{position:absolute;right:12px;top:50%;transform:translateY(-50%);pointer-events:none;transition:transform .2s ease}.hc-guest-content__select--error{border:1px solid var(--color-red-500, #EF4444)!important}.hc-guest-content__error-text{color:var(--color-red-500, #EF4444);font-size:12px}._container_kxilw_1{position:relative;width:100%;flex:1}._button_kxilw_7{display:flex;align-items:center;gap:var(--size-rem-0-5);padding:var(--size-rem-0-75) var(--size-rem-1);background-color:transparent;border:none;border-radius:var(--radius-base);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-weight:var(--text-paragraph-base-font-weight);color:var(--general-content-primary);cursor:pointer;transition:border-color .2s ease;width:100%;height:auto}._button_kxilw_7:hover:not(._button--disabled_kxilw_25){border-color:var(--color-red-500)}._button_kxilw_7:focus{outline:none;border-color:var(--color-red-500);box-shadow:0 0 0 2px #dc26261a}._button--disabled_kxilw_25{opacity:.5;cursor:not-allowed}._icon_kxilw_40{display:flex;align-items:center;color:var(--color-gray-500)}._label_kxilw_46{flex:1;text-align:left;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._dropdown_kxilw_54{position:absolute;top:calc(100% + var(--size-rem-0-5));left:0;right:0;border-radius:var(--radius-2xl);border:1px solid var(--border-general-divider);background:var(--background-general-primary);box-shadow:0 20px 50px -10px #00000026;padding:var(--size-rem-1);z-index:100;opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-8px);transition:opacity .2s ease,transform .2s ease,visibility .2s;min-width:368px;height:auto}._dropdown--open_kxilw_74{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);left:-15px}._container_1ndc1_1{position:relative;flex:1;min-width:0;display:flex;align-items:center;gap:var(--size-rem-0-75)}._iconWrapper_1ndc1_10{display:flex;align-items:center;justify-content:center;width:var(--size-rem-1-5);height:var(--size-rem-1-5);flex-shrink:0;color:var(--content-general-secondary);transition:color .15s ease}._iconWrapper_1ndc1_10 svg{width:100%;height:100%}._iconWrapperActive_1ndc1_26{color:var(--content-action-highlight-idle)}._input_1ndc1_30{width:100%;min-width:0;height:auto;padding:0;font-family:var(--font-primary);font-size:var(--text-paragraph-base-font-size);line-height:var(--text-paragraph-base-line-height);border:none;background:transparent;color:var(--content-general-primary)}._input_1ndc1_30:focus{outline:none}._input_1ndc1_30:disabled{background:var(--background-general-secondary);color:var(--content-general-tertiary);cursor:not-allowed}._input_1ndc1_30::placeholder{color:var(--content-general-tertiary)}._clearButton_1ndc1_57{display:flex;align-items:center;justify-content:center;height:20px;padding:0;margin-left:var(--size-rem-0-5);background:transparent;border:none;border-radius:var(--radius-full);color:var(--content-general-tertiary);cursor:pointer;flex-shrink:0;transition:color .15s ease}._clearButton_1ndc1_57:hover{color:var(--content-general-primary)}._clearButton_1ndc1_57 svg{width:var(--size-rem-1-5)!important;height:var(--size-rem-1)}._loadingIndicator_1ndc1_82{position:absolute;right:16px;top:50%;transform:translateY(-50%);color:var(--content-general-tertiary);font-size:var(--text-label-small-font-size);pointer-events:none}._dropdown_1ndc1_92{position:absolute;top:calc(100% + var(--size-rem-1));left:calc(-1 * var(--size-rem-1));width:368px;max-height:450px;overflow-y:auto;border-radius:var(--size-rem-1);border:1px solid var(--border-general-divider);background:var(--background-general-primary);box-shadow:0 20px 50px -10px #00000026;z-index:9999;padding:var(--size-rem-0-5) 0}._dropdown_1ndc1_92::-webkit-scrollbar{width:8px}._dropdown_1ndc1_92::-webkit-scrollbar-track{background:transparent}._dropdown_1ndc1_92::-webkit-scrollbar-thumb{background:var(--misc-scrollbar-idle);border-radius:9999px}._dropdownHeader_1ndc1_120{padding:var(--size-rem-0-75) var(--size-rem-0-75) var(--size-rem-0-5);color:var(--content-general-tertiary);font-family:var(--text-label-small-font-family);font-size:var(--text-label-small-font-size);font-style:normal;font-weight:500;line-height:var(--text-label-small-line-height)}._section_1ndc1_130{display:flex;flex-direction:column}._section_1ndc1_130+._section_1ndc1_130{margin-top:var(--size-rem-0-5);padding-top:var(--size-rem-0-5);border-top:1px solid var(--border-general-divider)}._sectionHeader_1ndc1_141{padding:var(--size-rem-0-5) var(--size-rem-0-75) var(--size-rem-0-25);color:var(--content-general-tertiary);font-family:var(--text-label-small-font-family);font-size:var(--text-label-small-font-size);font-style:normal;font-weight:500;line-height:var(--text-label-small-line-height)}._suggestion_1ndc1_151{display:flex;align-items:center;gap:var(--size-rem-0-75);width:100%;padding:var(--size-rem-0-5) var(--size-rem-0-75);border:none;background:transparent;text-align:left;cursor:pointer;transition:background-color .15s ease}._suggestion_1ndc1_151:hover,._suggestionSelected_1ndc1_165{background:var(--background-action-highlight-hover-light)}._icon_1ndc1_10{display:flex;align-items:center;justify-content:center;width:20px;height:20px;flex-shrink:0;color:var(--content-general-tertiary)}._icon_1ndc1_10 svg{width:20px;height:20px}._suggestionContent_1ndc1_184{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}._suggestionName_1ndc1_192{color:var(--content-general-tertiary);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-style:normal;font-weight:var(--text-paragraph-base-font-weight);line-height:var(--text-paragraph-base-line-height)}._suggestionNameBold_1ndc1_201{font-weight:500;color:var(--content-general-primary);font-family:var(--text-label-medium-font-family);font-size:var(--text-label-medium-font-size);font-style:normal;line-height:var(--text-label-medium-line-height)}._suggestionMeta_1ndc1_210{color:var(--content-general-secondary);font-family:var(--text-label-tiny-font-family);font-size:var(--text-label-tiny-font-size);font-style:normal;font-weight:500;line-height:var(--text-label-tiny-line-height)}._emptyState_1ndc1_219{padding:var(--size-rem-1) var(--size-rem-0-75);font-family:var(--font-primary);font-size:var(--text-label-medium-font-size);color:var(--content-general-tertiary);text-align:center}._overlay_w2b2v_9{position:fixed;top:0;right:0;bottom:0;left:0;background-color:#1f293780;z-index:1000;display:flex;align-items:flex-end;animation:_fadeIn_w2b2v_1 .2s ease-out}@keyframes _fadeIn_w2b2v_1{0%{opacity:0}to{opacity:1}}._sheet_w2b2v_29{width:100%;background-color:var(--background-general-primary);border-radius:var(--size-rem-1-5) var(--size-rem-1-5) 0 0;padding:var(--size-rem-1) var(--size-rem-1) var(--size-rem-3);display:flex;flex-direction:column;gap:var(--size-rem-1);animation:_slideUp_w2b2v_1 .3s ease-out}@keyframes _slideUp_w2b2v_1{0%{transform:translateY(100%)}to{transform:translateY(0)}}._header_w2b2v_50{display:flex;align-items:center;justify-content:space-between;gap:var(--size-rem-0-5)}._title_w2b2v_57{flex:1;margin:0;color:var(--content-general-primary);font-family:var(--text-heading-small-font-family);font-size:var(--text-heading-small-font-size);font-style:normal;font-weight:500;line-height:var(--text-heading-small-line-height);letter-spacing:-.6px}._optionsList_w2b2v_71{display:flex;flex-direction:column}._optionItem_w2b2v_77{display:flex;align-items:center;gap:var(--size-rem-0-5);padding:var(--size-rem-0-625) 0;background:none;border:none;cursor:pointer;width:100%;text-align:left}._optionItem_w2b2v_77:active{opacity:.7}._radio_w2b2v_94{width:20px;height:20px;aspect-ratio:1/1;border-radius:var(--radius-full);border:2px solid var(--border-general-divider);background-color:var(--background-general-primary);display:flex;align-items:center;justify-content:center;flex-shrink:0;transition:border-color .15s ease,background-color .15s ease}._radioActive_w2b2v_108{border-color:var(--color-blue-500);background-color:var(--color-blue-500)}._radioInner_w2b2v_113{width:8px;height:8px;border-radius:var(--radius-full);background-color:var(--background-general-primary)}._optionLabel_w2b2v_121{color:var(--content-general-primary);font-family:var(--text-label-medium-font-family);font-size:var(--text-label-medium-font-size);font-style:normal;font-weight:500;line-height:var(--text-label-medium-line-height)}._container_1hlf3_15{width:100%;display:flex;flex-direction:row;align-items:center;gap:var(--size-rem-1);border-radius:var(--radius-3xl);box-sizing:border-box}._containerCompact_1hlf3_27{width:auto}._inputsContainer_1hlf3_37{flex:1;display:flex;flex-direction:row;align-items:center;gap:var(--size-rem-0-5);padding:var(--size-rem-0-25);border-radius:26px;border:1px solid var(--border-general-divider);background:var(--background-general-primary);box-sizing:border-box}._inputWrapper_1hlf3_55{flex:1 1 0;min-width:112px;display:flex;align-items:center;justify-content:flex-start;gap:var(--size-rem-0-75);padding:var(--size-rem-0-625) var(--size-rem-1);border-radius:var(--radius-full);position:relative}._containerCompact_1hlf3_27 ._inputWrapper_1hlf3_55{flex:2 1 0}._icon_1hlf3_73{width:var(--size-rem-1-5);height:var(--size-rem-1-5);flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--content-general-secondary)}._icon_1hlf3_73 svg{width:100%;height:100%}._input_1hlf3_37{flex:1;border:none;outline:none;color:var(--content-general-tertiary);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-style:normal;font-weight:var(--font-weight-regular);line-height:var(--text-paragraph-base-line-height);background-color:transparent;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._input_1hlf3_37::placeholder{color:var(--content-general-tertiary)}._divider_1hlf3_116{width:0;height:32px;flex-shrink:0;border-left:1px solid var(--border-general-divider)}._controlWrapper_1hlf3_128{flex:1 1 0;min-width:auto;display:flex;align-items:center;justify-content:flex-start;border-radius:var(--radius-full);position:relative}._controlWrapper_1hlf3_128>div>button:first-of-type{flex:1;width:100%;display:flex;align-items:center;justify-content:flex-start;gap:var(--size-rem-0-75);padding:var(--size-rem-0-625) var(--size-rem-1);background:transparent;border:none;color:var(--content-general-tertiary);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-style:normal;font-weight:var(--font-weight-regular);line-height:var(--text-paragraph-base-line-height);white-space:nowrap;height:auto;cursor:pointer}._control_1hlf3_128{background:transparent;border:none;color:var(--content-general-tertiary);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-style:normal;font-weight:var(--font-weight-regular);line-height:var(--text-paragraph-base-line-height);white-space:nowrap}._buttonWrapper_1hlf3_179{width:200px;min-width:200px;flex-shrink:0;flex-grow:0}._buttonWrapper_1hlf3_179 button{width:100%}._verticalDivider_1hlf3_195{width:0;height:32px;border-left:1px solid var(--border-general-divider);flex-shrink:0}._viewToggle_1hlf3_207{display:flex;align-items:center;background-color:var(--background-general-primary);border:1px solid var(--border-general-divider);border-radius:var(--radius-full);flex-shrink:0}._viewToggleButton_1hlf3_216{display:flex;align-items:center;justify-content:center;gap:8px;padding:10px 24px;background:transparent;border:none;border-radius:var(--radius-full);cursor:pointer;transition:all .15s ease}._viewToggleButtonActive_1hlf3_229{background-color:var(--content-action-highlight-idle)}._viewToggleIcon_1hlf3_233{width:20px;height:20px;display:flex;align-items:center;justify-content:center;color:var(--content-general-primary)}._viewToggleButtonActive_1hlf3_229 ._viewToggleIcon_1hlf3_233{color:var(--content-action-highlight-inverse-idle, #ffffff)}._viewToggleLabel_1hlf3_246{font-family:var(--font-primary);font-size:var(--text-label-medium-font-size);font-weight:var(--font-weight-medium);line-height:var(--text-label-medium-line-height);color:var(--content-general-primary)}._viewToggleButtonActive_1hlf3_229 ._viewToggleLabel_1hlf3_246{color:var(--content-action-highlight-inverse-idle, #ffffff)}._mobileContainer_1hlf3_263{width:100%;display:flex;flex-direction:column;gap:var(--size-rem-0-5);box-sizing:border-box}._mobileSummary_1hlf3_271{width:100%;display:flex;align-items:center;justify-content:flex-start;gap:var(--size-rem-0-75);padding:var(--size-rem-0-5) var(--size-rem-0-75);background-color:var(--background-general-primary);border-radius:var(--radius-full);border:1px solid var(--border-action-secondary-idle);box-sizing:border-box;cursor:pointer;transition:border-color .2s ease;text-align:left}._mobileSummary_1hlf3_271:hover{border-color:var(--border-action-secondary-hover)}._mobileSummaryIcon_1hlf3_291{width:var(--size-rem-1-5);height:var(--size-rem-1-5);flex-shrink:0;display:flex;align-items:center;justify-content:center;color:var(--content-general-secondary)}._mobileSummaryIcon_1hlf3_291 svg{width:100%;height:100%}._mobileSummaryText_1hlf3_306{flex:1;display:flex;flex-direction:column;align-items:flex-start;justify-content:center;min-width:0;text-align:left}._mobileSummaryTitle_1hlf3_316{color:var(--content-general-tertiary);font-family:var(--text-paragraph-base-font-family);font-size:var(--text-paragraph-base-font-size);font-style:normal;font-weight:var(--text-paragraph-base-font-weight);line-height:var(--text-paragraph-base-line-height);width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._mobileSummarySubtitle_1hlf3_331{color:var(--content-general-tertiary);font-family:var(--text-paragraph-tiny-font-family);font-size:var(--text-paragraph-tiny-font-size);font-style:normal;font-weight:var(--text-paragraph-tiny-font-weight);line-height:var(--text-paragraph-tiny-line-height);width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}._mobileActionBar_1hlf3_350{display:flex;align-items:center;width:100%;border-bottom:1px solid var(--color-gray-300)}._mobileActionButton_1hlf3_357{flex:1;display:flex;align-items:center;justify-content:center;gap:var(--size-rem-0-5);height:44px;padding:var(--size-rem-0-625) var(--size-rem-1-25);background-color:transparent;border:none;color:var(--content-action-secondary-idle);font-family:var(--text-label-medium-font-family);font-size:var(--text-label-medium-font-size);font-style:normal;font-weight:500;line-height:var(--text-label-medium-line-height);cursor:pointer;transition:opacity .2s ease}._mobileActionButton_1hlf3_357:hover{opacity:.7}._mobileActionButton_1hlf3_357:active{opacity:.5}._mobileActionButton_1hlf3_357:disabled{opacity:.5;cursor:not-allowed}._mobileActionButton_1hlf3_357 svg{width:20px;height:20px;flex-shrink:0}._mobileActionDivider_1hlf3_397{width:1px;height:var(--size-rem-1-5);background-color:var(--border-general-divider);flex-shrink:0}._clearButton_1hlf3_408{display:flex;align-items:center;justify-content:center;padding:0;margin-right:var(--size-rem-0-5);border:none;border-radius:var(--radius-full);cursor:pointer;color:var(--content-general-tertiary);flex-shrink:0;transition:background-color .15s ease,color .15s ease}._clearButton_1hlf3_408 svg{width:var(--size-rem-1-5);height:var(--size-rem-1)}.hc-hotel-card{width:100%;background-color:var(--color-ink-base-white, #ffffff);border-radius:24px;border:1px solid var(--border-general-divider, #E5E7EB);overflow:hidden;display:flex;flex-direction:column;transition:box-shadow .2s ease}.hc-hotel-card:hover{box-shadow:0 4px 12px #00000014}.hc-hotel-card__image-section{position:relative;width:100%;height:268.5px;overflow:hidden}.hc-hotel-card__image{width:100%;height:100%;object-fit:cover}.hc-hotel-card__image-overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(0deg,#1f293700 65%,#1f293733);pointer-events:none}.hc-hotel-card__top-overlay{position:absolute;top:12px;left:12px;right:12px;display:flex;justify-content:space-between;align-items:flex-start;z-index:2}.hc-hotel-card__badges-column{display:flex;flex-direction:column;gap:4px}.hc-hotel-card__new-badge{display:flex;align-items:center;gap:4px;padding:4px 10px;background:#00857c;border-radius:9999px;color:#fff;font-size:var(--text-label-small-font-size, 14px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-small-line-height, 20px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}.hc-hotel-card__favorite-button{width:44px;height:44px;background-color:transparent;border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:transform .2s ease;padding:8px}.hc-hotel-card__favorite-button:hover{transform:scale(1.1)}.hc-hotel-card__favorite-button:active{transform:scale(.95)}.hc-hotel-card__heart-icon{width:24px;height:24px;filter:drop-shadow(0 2px 4px rgba(0,0,0,.3))}.hc-hotel-card__heart-icon--filled{width:24px;height:24px;filter:drop-shadow(0 2px 4px rgba(0,0,0,.3)) brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(4431%) hue-rotate(346deg) brightness(93%) contrast(95%)}.hc-hotel-card__nav-button{position:absolute;top:50%;transform:translateY(-50%);width:44px;height:44px;padding:12px;background-color:#fffc;border:none;border-radius:50%;outline:2px solid transparent;outline-offset:-2px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;transition:background-color .2s ease,outline-color .2s ease}.hc-hotel-card__nav-button:hover{background-color:#fffffff2;outline-color:#0000001a}.hc-hotel-card__nav-button--left{left:12px}.hc-hotel-card__nav-button--right{right:12px}.hc-hotel-card__image-indicator{position:absolute;bottom:12px;left:50%;transform:translate(-50%);display:flex;gap:6px;z-index:2}.hc-hotel-card__indicator-dot{width:6px;height:6px;border-radius:50%;background-color:#ffffff80;transition:background-color .2s ease}.hc-hotel-card__indicator-dot--active{background-color:var(--color-ink-base-white, #ffffff)}.hc-hotel-card__usp-banner{width:100%;padding:8px 24px;background-color:var(--background-status-success-idle, #ECFDF5);text-align:center;font-size:var(--text-label-tiny-font-size, 12px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-medium, 500);color:var(--content-status-success-idle, #006962);line-height:var(--text-label-tiny-line-height, 16px)}.hc-hotel-card__content{padding:var(--size-rem-1-5, 24px);display:flex;flex-direction:column}.hc-hotel-card__header-section{display:flex;flex-direction:column}.hc-hotel-card__rating-section{display:flex;justify-content:space-between;align-items:center}.hc-hotel-card__stars{display:flex;align-items:center;gap:2px}.hc-hotel-card__stars-indicator{margin-left:4px;font-size:var(--text-label-tiny-font-size, 12px);font-weight:var(--font-weight-medium, 500);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);color:var(--content-general-tertiary, #6B7280);line-height:var(--text-label-tiny-line-height, 16px)}.hc-hotel-card__swiss-lodge{font-size:var(--text-label-small-font-size, 14px);font-weight:var(--font-weight-medium, 500);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);color:var(--content-general-secondary, #374151);line-height:var(--text-label-small-line-height, 20px)}.hc-hotel-card__rating-wrapper{display:flex;align-items:center;gap:6px}.hc-hotel-card__rating-text{color:var(--content-general-secondary, #6B7280);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-label-tiny-font-size, 12px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-tiny-line-height, 16px)}.hc-hotel-card__rating-badge{position:relative;display:flex;align-items:center;justify-content:center;height:24px;min-width:32px;padding:4px 8px}.hc-hotel-card__rating-badge-bg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.hc-hotel-card__rating-number{position:relative;top:-2px;z-index:2;color:var(--content-action-highlight-inverse-idle, #ffffff);text-align:center;font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-label-tiny-font-size, 12px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-tiny-line-height, 16px)}.hc-hotel-card__hotel-name{color:var(--content-general-primary, #1F2937);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-label-large-font-size, 18px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-large-line-height, 28px);margin:0 0 8px}.hc-hotel-card__location-section{display:flex;align-items:center;gap:4px;margin-bottom:var(--size-rem-1, 16px)}.hc-hotel-card__pin-icon{width:16px;height:16px;flex-shrink:0}.hc-hotel-card__location{color:var(--content-general-secondary, #6B7280);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-label-tiny-font-size, 12px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-tiny-line-height, 16px);text-decoration:underline}.hc-hotel-card__benefits-and-pricing{display:flex;flex-direction:column;gap:16px}.hc-hotel-card__benefits-section{display:flex;flex-direction:column;gap:var(--size-rem-0-5, 8px)}.hc-hotel-card__benefit{display:flex;align-items:center;gap:4px}.hc-hotel-card__benefit-icon{width:16px;height:16px;flex-shrink:0}.hc-hotel-card__benefit-text{font-size:var(--text-label-small-font-size, 14px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-regular, 400);color:var(--content-status-success-idle, #006962);line-height:var(--text-label-small-line-height, 20px)}.hc-hotel-card__pricing-section{display:flex;flex-direction:column;gap:4px;flex:1;justify-content:flex-end}.hc-hotel-card__price-label{font-size:var(--text-label-tiny-font-size, 12px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-medium, 500);color:var(--content-general-secondary, #6B7280);line-height:var(--text-label-tiny-line-height, 16px)}.hc-hotel-card__not-available{flex:1;display:flex;align-items:center;font-size:var(--text-label-small-font-size, 14px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-medium, 500);color:var(--content-general-tertiary, #9CA3AF);line-height:var(--text-label-small-line-height, 20px);font-style:italic}.hc-hotel-card__price-container{display:flex;align-items:center;gap:8px}.hc-hotel-card__current-price{color:var(--content-general-primary, #1F2937);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-size:var(--text-label-large-font-size, 18px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-large-line-height, 28px)}.hc-hotel-card__original-price{font-size:var(--text-paragraph-base-font-size, 16px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif);font-weight:var(--font-weight-medium, 500);color:var(--content-general-tertiary, #9CA3AF);text-decoration:line-through;line-height:var(--text-paragraph-base-line-height, 24px)}.hc-hotel-card__discount-badge{display:inline-flex;align-items:center;justify-content:center;padding:2px 8px;background-color:var(--background-action-primary-idle, #C81E4C);border-radius:9999px;color:#fff;font-size:var(--text-label-small-font-size, 14px);font-weight:var(--font-weight-medium, 500);line-height:var(--text-label-small-line-height, 20px);font-family:var(--font-primary, system-ui, -apple-system, sans-serif)}@media(min-width:1024px){.hc-hotel-card{flex-direction:row;height:274px}.hc-hotel-card__usp-banner{display:none}.hc-hotel-card__image-section{width:365px;height:274px;flex-shrink:0}.hc-hotel-card__content{flex:1;padding:var(--size-rem-1-5, 24px)}.hc-hotel-card__benefits-and-pricing{flex-direction:row;justify-content:space-between;align-items:flex-end;margin-top:auto}.hc-hotel-card__benefits-section{flex:1}.hc-hotel-card__pricing-section{flex:1;align-items:flex-end}.hc-hotel-card__price-label,.hc-hotel-card__original-price{text-align:right}.hc-hotel-card__price-container{justify-content:flex-end}}._filterRow_17z8r_8{display:flex;justify-content:space-between;align-items:center;padding:var(--size-rem-0-625, 10px) 0;background-color:var(--background-action-secondary-idle, #fff);cursor:pointer;-webkit-user-select:none;user-select:none;transition:background-color .15s ease;border-radius:var(--radius-sm, 4px);position:relative}._filterRow_17z8r_8:hover:not(._filterRowDisabled_17z8r_22){background-color:var(--background-action-secondary-hover, #e5e7eb)}._filterRow_17z8r_8:active:not(._filterRowDisabled_17z8r_22){background-color:var(--background-action-secondary-hover, #e5e7eb)}._filterRow_17z8r_8:focus{background-color:var(--background-action-secondary-idle, #fff);box-shadow:0 0 0 2px var(--misc-focus, #3474DA),0 0 16px 4px var(--misc-focus, #3474DA);outline:none;z-index:1}._filterRowDisabled_17z8r_22{cursor:not-allowed}._checkboxLabel_17z8r_46{display:flex;align-items:center;gap:var(--size-rem-0-5, 8px);flex:1}._checkboxButton_17z8r_53{width:24px;height:24px;position:relative;overflow:hidden;flex-shrink:0}._checkbox_17z8r_46{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}._checkboxBox_17z8r_74{position:absolute;top:2px;left:2px;display:flex;align-items:center;justify-content:center;width:20px;height:20px;background-color:var(--background-general-primary, #fff);border:1px solid var(--border-general-tertiary, #d1d5db);border-radius:4px;transition:all .15s ease}._checkbox_17z8r_46:checked+._checkboxBox_17z8r_74{background-color:var(--background-action-highlight-idle, #3474DA);border-color:var(--background-action-highlight-idle, #3474DA)}._checkboxBoxDisabled_17z8r_96{background-color:var(--background-action-disabled-idle, #f3f4f6);border-color:var(--border-action-disabled-idle, #e5e7eb)}._checkbox_17z8r_46:checked+._checkboxBoxDisabled_17z8r_96{background-color:var(--background-action-disabled-idle, #f3f4f6);border-color:var(--border-action-disabled-idle, #e5e7eb)}._checkIcon_17z8r_106{width:12px;height:10px;color:var(--content-action-primary-inverse-idle, #fff)}._checkboxBoxDisabled_17z8r_96 ._checkIcon_17z8r_106{color:var(--content-action-disabled-idle, #9ca3af)}._filterLabel_17z8r_116{color:var(--content-general-primary, #111827);font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-style:normal;font-weight:500;line-height:var(--text-label-medium-line-height, 1.5)}._filterLabelDisabled_17z8r_125{color:var(--content-action-disabled-idle, #9ca3af)}._filterCount_17z8r_129{color:var(--content-general-tertiary, #6b7280);font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-style:normal;font-weight:500;line-height:var(--text-label-medium-line-height, 1.5)}._filterCountDisabled_17z8r_138{color:var(--content-action-disabled-idle, #9ca3af)}._section_6jsxa_5{border-bottom:1px solid var(--border-general-secondary, #e5e7eb)}._header_6jsxa_9{display:flex;justify-content:space-between;align-items:center;width:100%;padding:var(--size-rem-1, 16px) 0;background:transparent;border:none;cursor:pointer;text-align:left}._title_6jsxa_21{color:var(--content-general-primary, #111827);font-family:var(--text-heading-small-font-family, inherit);font-size:var(--text-heading-small-font-size, 16px);font-weight:600;line-height:var(--text-heading-small-line-height, 1.5)}._chevron_6jsxa_29{width:20px;height:20px;color:var(--content-general-secondary, #6b7280);transition:transform .2s ease;transform:rotate(0)}._chevronExpanded_6jsxa_37{transform:rotate(180deg)}._content_6jsxa_41{max-height:0;overflow:hidden;transition:max-height .3s ease}._contentExpanded_6jsxa_47{max-height:2000px}._contentInner_6jsxa_51{padding-bottom:var(--size-rem-1, 16px)}._showAllButton_6jsxa_55{display:flex;align-items:center;gap:var(--size-rem-0-25, 4px);margin-top:var(--size-rem-0-5, 8px);padding:var(--size-rem-0-5, 8px) 0;background:transparent;border:none;cursor:pointer;color:var(--content-action-highlight-idle, #3474DA);font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-weight:500;line-height:var(--text-label-medium-line-height, 1.5)}._showAllButton_6jsxa_55:hover{color:var(--content-action-highlight-hover, #2563eb)}._showAllChevron_6jsxa_75{width:16px;height:16px;transition:transform .2s ease;transform:rotate(0)}._showAllChevronUp_6jsxa_82{transform:rotate(180deg)}._priceRangeWrapper_10ufi_5{display:flex;flex-direction:column;gap:var(--size-rem-1, 16px)}._priceInputs_10ufi_12{display:flex;align-items:center;gap:var(--size-rem-0-5, 8px)}._priceInputWrapper_10ufi_18{flex:1}._priceInput_10ufi_12{width:100%;padding:var(--size-rem-0-75, 12px);border:1px solid var(--border-general-secondary, #e5e7eb);border-radius:var(--radius-md, 8px);background-color:var(--background-general-primary, #fff);color:var(--content-general-primary, #111827);font-family:var(--text-body-medium-font-family, inherit);font-size:var(--text-body-medium-font-size, 14px);line-height:var(--text-body-medium-line-height, 1.5);text-align:center}._priceInput_10ufi_12:focus{outline:none;border-color:var(--border-action-highlight-idle, #3474DA);box-shadow:0 0 0 2px var(--misc-focus-light, rgba(52, 116, 218, .2))}._priceInputDivider_10ufi_41{color:var(--content-general-tertiary, #6b7280);font-size:14px;flex-shrink:0}._histogram_10ufi_48{display:flex;align-items:flex-end;gap:2px;height:48px;padding:0 12px}._histogramBar_10ufi_56{flex:1;background-color:var(--background-action-secondary-idle, #e5e7eb);border-radius:2px 2px 0 0;transition:background-color .15s ease;min-height:4px}._histogramBarActive_10ufi_64{background-color:var(--background-action-highlight-idle, #3474DA)}._sliderContainer_10ufi_69{position:relative;height:24px;touch-action:none}._sliderTrack_10ufi_75{position:absolute;top:50%;left:12px;right:12px;height:4px;background-color:var(--background-action-secondary-idle, #e5e7eb);border-radius:2px;transform:translateY(-50%)}._sliderActiveTrack_10ufi_86{position:absolute;top:50%;height:4px;background-color:var(--background-action-highlight-idle, #3474DA);border-radius:2px;transform:translateY(-50%)}._sliderHandle_10ufi_95{position:absolute;top:50%;width:24px;height:24px;background-color:var(--background-general-primary, #fff);border:2px solid var(--border-action-highlight-idle, #3474DA);border-radius:50%;transform:translate(-50%,-50%);cursor:grab;touch-action:none;transition:box-shadow .15s ease;z-index:1}._sliderHandle_10ufi_95:hover{box-shadow:0 0 0 4px var(--misc-focus-light, rgba(52, 116, 218, .2))}._sliderHandle_10ufi_95:focus{outline:none;box-shadow:0 0 0 4px var(--misc-focus-light, rgba(52, 116, 218, .2))}._sliderHandleActive_10ufi_119{cursor:grabbing;box-shadow:0 0 0 6px var(--misc-focus-light, rgba(52, 116, 218, .3))}._filterList_1qs1m_5{display:flex;flex-direction:column}._starsContainer_1qs1m_10{display:flex;align-items:center;gap:2px}._starIcon_1qs1m_16{width:16px;height:16px;color:var(--content-general-primary, #111827)}._footer_1qs1m_22{margin-top:var(--size-rem-0-75, 12px);padding-top:var(--size-rem-0-75, 12px);border-top:1px solid var(--border-general-secondary, #e5e7eb)}._footerText_1qs1m_28{color:var(--content-general-tertiary, #6b7280);font-family:var(--text-caption-font-family, inherit);font-size:var(--text-caption-font-size, 12px);font-style:normal;font-weight:400;line-height:var(--text-caption-line-height, 1.5)}._filterList_1to6r_5{display:flex;flex-direction:column}._filterRange_1to6r_10{color:var(--content-general-tertiary, #6b7280);font-weight:400}._footer_1to6r_15{margin-top:var(--size-rem-0-75, 12px);padding-top:var(--size-rem-0-75, 12px);border-top:1px solid var(--border-general-secondary, #e5e7eb)}._footerText_1to6r_21{color:var(--content-general-tertiary, #6b7280);font-family:var(--text-caption-font-family, inherit);font-size:var(--text-caption-font-size, 12px);font-style:normal;font-weight:400;line-height:var(--text-caption-line-height, 1.5)}._filterList_1cd71_5{display:flex;flex-direction:column}._showMoreBtn_1cd71_10{display:flex;align-items:center;gap:var(--size-rem-0-25, 4px);margin-top:var(--size-rem-0-5, 8px);padding:var(--size-rem-0-5, 8px) 0;background:transparent;border:none;cursor:pointer;color:var(--content-action-highlight-idle, #3474DA);font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-weight:500;line-height:var(--text-label-medium-line-height, 1.5)}._showMoreBtn_1cd71_10:hover{color:var(--content-action-highlight-hover, #2563eb)}._arrowIcon_1cd71_30{display:flex;align-items:center;transition:transform .2s ease}._arrowIcon_1cd71_30 svg{width:20px;height:20px}._arrowUp_1cd71_41{transform:rotate(180deg)}._filterList_k73l5_10{display:flex;flex-direction:column;gap:var(--size-rem-0-25, 4px)}._regionItem_k73l5_16{display:flex;flex-direction:column}._countryRow_k73l5_22{display:flex;justify-content:space-between;align-items:center;height:56px;padding:14px var(--size-rem-0-75, 12px);background-color:var(--background-general-secondary-light, #f9fafb);border:1px solid transparent;border-radius:var(--size-rem-0-75, 12px);cursor:pointer;-webkit-user-select:none;user-select:none;transition:background-color .15s ease;gap:var(--size-rem-0-75, 12px)}._countryRowExpanded_k73l5_37{border-radius:var(--size-rem-0-75, 12px);border:1px solid var(--border-action-secondary-active, #d1d5db);background:var(--background-general-primary, #fff)!important;border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}._countryInfo_k73l5_46{display:flex;align-items:center;flex:1 1 0;justify-content:space-between}._countryName_k73l5_53{color:var(--content-general-primary, #111827);font-family:var(--text-label-large-font-family, inherit);font-size:var(--text-label-large-font-size, 16px);font-weight:var(--text-label-large-font-weight, 600);line-height:var(--text-label-large-line-height, 1.55)}._countBadge_k73l5_61{display:inline-flex;align-items:center;justify-content:center;min-width:24px;height:24px;padding:0 var(--size-rem-0-5, 8px);border-radius:9999px;background:var(--background-general-secondary, #e5e7eb)!important;color:var(--content-general-primary, #111827);text-align:center;font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-weight:500;line-height:var(--text-label-medium-line-height, 1.5);white-space:nowrap}._chevron_k73l5_79{width:20px;height:20px;color:var(--content-general-tertiary, #6b7280);flex-shrink:0;transition:transform .2s ease}._chevronExpanded_k73l5_87{transform:rotate(180deg)}._subRegions_k73l5_92{display:flex;flex-direction:column;padding:0 var(--size-rem-0-75, 12px) var(--size-rem-0-875, 14px) var(--size-rem-0-75, 12px);border-radius:var(--size-rem-0-75, 12px);border:1px solid var(--border-action-secondary-active, #d1d5db);background:var(--background-general-primary, #fff);border-top:none;border-top-left-radius:0;border-top-right-radius:0}._mobileSelectAllActions_k73l5_104{display:flex;align-items:center;gap:var(--size-rem-1, 16px);height:44px;padding:0 var(--size-rem-0-75, 12px);border-top:none;border-bottom:none;border-right:1px solid var(--border-action-secondary-active, #d1d5db);border-left:1px solid var(--border-action-secondary-active, #d1d5db);background:var(--background-general-primary, #fff)}._selectAllBtn_k73l5_117,._resetAllBtn_k73l5_118{display:flex;align-items:center;justify-content:center;height:100%;padding:0;border:none;background:transparent;font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-weight:500;line-height:var(--text-label-medium-line-height, 1.5);text-decoration:underline;cursor:pointer}._selectAllBtn_k73l5_117{color:var(--content-action-link-idle, #3474DA)}._selectAllBtn_k73l5_117:disabled{color:var(--content-action-disabled-idle, #9ca3af);cursor:not-allowed;opacity:.5}._resetAllBtn_k73l5_118{color:var(--content-action-disabled-idle, #6b7280)}._resetAllBtn_k73l5_118:disabled{cursor:not-allowed;opacity:.5}._selectAllBtn_k73l5_117:focus-visible,._resetAllBtn_k73l5_118:focus-visible{outline:2px solid var(--misc-focus, #3474DA);outline-offset:2px;border-radius:2px}._filterList_pnmpu_5{display:flex;flex-direction:column}._container_ft4s7_5{padding:var(--size-rem-0-75, 12px) 0;border-bottom:1px solid var(--border-general-secondary, #e5e7eb)}._chipsWrapper_ft4s7_10{display:flex;align-items:flex-start;gap:var(--size-rem-0-5, 8px)}._selectedText_ft4s7_16{margin:0;padding-top:var(--size-rem-0-25, 4px);color:var(--content-general-secondary, #6b7280);font-family:var(--text-label-medium-font-family, inherit);font-size:var(--text-label-medium-font-size, 14px);font-weight:500;line-height:var(--text-label-medium-line-height, 1.5);white-space:nowrap}._chips_ft4s7_10{display:flex;flex-wrap:wrap;align-items:center;gap:var(--size-rem-0-5, 8px)}._clearAllBtn_ft4s7_34{margin-left:var(--size-rem-0-5, 8px)}
|