@omnic/widget-locations 1.1.4-develop.2 → 1.1.5

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.
@@ -1,1516 +1 @@
1
- :root {
2
- --owl-color-primary: #1760ee;
3
- --owl-color-primary-dark: #194fb8;
4
- --owl-color-secondary: #dfe1e5;
5
- --owl-color-error: #cc0000;
6
- --owl-color-success: #00c10e;
7
- --owl-color-text-dark: #000000;
8
- --owl-color-text-light: #ffffff;
9
- --owl-color-text-light-transparent: rgba(255, 255, 255, 0.4588235294);
10
- --owl-color-text-disabled: #929db2;
11
- --owl-color-text-disabled-transparent: rgba(146, 157, 178, 0.2);
12
- --owl-color-border: #d3d7de;
13
- --owl-color-graphite: #cbcfd4;
14
- --owl-color-graphite-20: #e5e7ea;
15
- --owl-color-grey-80: #333333;
16
- --owl-color-black: #000000;
17
- --owl-radius: 8px;
18
- --owl-button-radius: 8px;
19
- --owl-font: Roboto, sans-serif;
20
- }
21
-
22
- [id="@omnic/widget-locations"] {
23
- isolation: isolate;
24
- position: relative;
25
- font-family: var(--owl-font);
26
- width: 100%;
27
- height: 100%;
28
- overflow: hidden;
29
- color: var(--owl-color-text-dark);
30
- }.pac-container {
31
- border-radius: var(--owl-radius);
32
- margin-block-start: 8px;
33
- font-family: var(--owl-font);
34
- }
35
- .pac-container > * {
36
- font-family: inherit;
37
- }
38
- .pac-container::after {
39
- display: none;
40
- }
41
- .pac-container .pac-item {
42
- padding: 16px;
43
- display: flex;
44
- flex-direction: column;
45
- gap: 4px;
46
- position: relative;
47
- cursor: pointer;
48
- text-align: start;
49
- }
50
- .pac-container .pac-item .pac-item-query {
51
- font-size: 16px;
52
- line-height: 20px;
53
- }
54
- .pac-container .pac-item .pac-item-query + span {
55
- font-size: 14px;
56
- line-height: 1.4;
57
- }
58
- .pac-container .pac-item .pac-icon {
59
- display: none;
60
- }
61
- .pac-container .pac-item::after {
62
- content: "";
63
- width: 16px;
64
- height: 16px;
65
- background-color: var(--owl-color-primary);
66
- -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 8.00003C12.5 8.28678 12.392 8.5735 12.1763 8.79212L5.38748 15.6718C4.95562 16.1094 4.25544 16.1094 3.82376 15.6718C3.39208 15.2343 3.39208 14.5249 3.82376 14.0872L9.83091 8.00003L3.82397 1.91279C3.39229 1.47515 3.39229 0.765811 3.82397 0.328387C4.25565 -0.109461 4.95583 -0.109461 5.38769 0.328387L12.1765 7.20793C12.3922 7.42666 12.5 7.71338 12.5 8.00003Z' fill='currentcolor' /%3E%3C/svg%3E%0A");
67
- mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 8.00003C12.5 8.28678 12.392 8.5735 12.1763 8.79212L5.38748 15.6718C4.95562 16.1094 4.25544 16.1094 3.82376 15.6718C3.39208 15.2343 3.39208 14.5249 3.82376 14.0872L9.83091 8.00003L3.82397 1.91279C3.39229 1.47515 3.39229 0.765811 3.82397 0.328387C4.25565 -0.109461 4.95583 -0.109461 5.38769 0.328387L12.1765 7.20793C12.3922 7.42666 12.5 7.71338 12.5 8.00003Z' fill='currentcolor' /%3E%3C/svg%3E%0A");
68
- display: block;
69
- position: absolute;
70
- inset-block-start: 50%;
71
- inset-inline-end: 16px;
72
- transform: translateY(-50%);
73
- }reach-portal {
74
- font-family: var(--owl-font);
75
- }.Spinner-module__loader__HX--ed,
76
- .Spinner-module__loader__HX--ed:after {
77
- border-radius: 50%;
78
- width: 10em;
79
- height: 10em;
80
- }
81
-
82
- .Spinner-module__loader__HX--ed {
83
- --border-width: 1.1em;
84
- margin: 60px auto;
85
- font-size: 10px;
86
- position: relative;
87
- text-indent: -9999em;
88
- border-top: var(--border-width) solid var(--owl-color-text-disabled);
89
- border-right: var(--border-width) solid var(--owl-color-text-disabled);
90
- border-bottom: var(--border-width) solid var(--owl-color-text-disabled);
91
- border-left: var(--border-width) solid var(--owl-color-primary);
92
- transform: translateZ(0);
93
- animation: Spinner-module__loader__HX--ed 1.1s infinite linear;
94
- }
95
-
96
- @-webkit-keyframes Spinner-module__loader__HX--ed {
97
- 0% {
98
- transform: rotate(0deg);
99
- }
100
- 100% {
101
- transform: rotate(360deg);
102
- }
103
- }
104
- @keyframes Spinner-module__loader__HX--ed {
105
- 0% {
106
- transform: rotate(0deg);
107
- }
108
- 100% {
109
- transform: rotate(360deg);
110
- }
111
- }.Button-module__root__8NAnx6 {
112
- border: none;
113
- font-size: 16px;
114
- font-weight: 600;
115
- line-height: 20px;
116
- cursor: pointer;
117
- outline: none;
118
- transition: color 0.2s ease, background-color 0.2s ease;
119
- }
120
- .Button-module__root__8NAnx6:disabled {
121
- cursor: default;
122
- pointer-events: none;
123
- color: var(--owl-color-text-disabled);
124
- }
125
-
126
- button.Button-module__root__8NAnx6 {
127
- padding-block: 12px;
128
- border-radius: var(--owl-button-radius);
129
- }
130
-
131
- button.Button-module__primary__UsjvpK {
132
- color: var(--owl-color-text-light);
133
- background-color: var(--owl-color-primary);
134
- }
135
- @media (any-hover: hover) {
136
- button.Button-module__primary__UsjvpK:hover {
137
- background-color: var(--owl-color-primary-dark);
138
- }
139
- }
140
- button.Button-module__primary__UsjvpK:disabled {
141
- background-color: var(--owl-color-border);
142
- }
143
-
144
- button.Button-module__secondary__VtNj8s {
145
- color: var(--owl-color-primary);
146
- background-color: var(--owl-color-secondary);
147
- }
148
- button.Button-module__secondary__VtNj8s:disabled {
149
- background-color: var(--owl-color-border);
150
- }
151
-
152
- a.Button-module__root__8NAnx6 {
153
- text-decoration: none;
154
- }
155
-
156
- a.Button-module__primary__UsjvpK {
157
- color: var(--owl-color-primary);
158
- }
159
- @media (any-hover: hover) {
160
- a.Button-module__primary__UsjvpK:hover {
161
- color: var(--owl-color-primary-dark);
162
- }
163
- }
164
-
165
- a.Button-module__secondary__VtNj8s {
166
- color: var(--owl-color-text-disabled);
167
- }
168
- @media (any-hover: hover) {
169
- a.Button-module__secondary__VtNj8s:hover {
170
- color: var(--owl-color-text-dark);
171
- }
172
- }
173
-
174
- .Button-module__loading__cIi2EH {
175
- position: relative;
176
- display: grid;
177
- place-items: center;
178
- }
179
- .Button-module__loading__cIi2EH .Button-module__spinner__3Fk2sH {
180
- --border-width: 0.25em;
181
- margin: 0;
182
- width: 2em;
183
- height: 2em;
184
- }.Header-module__root__HQYeJV {
185
- display: flex;
186
- align-items: center;
187
- gap: 10px;
188
- }
189
-
190
- .Header-module__nav__E5j1Pg {
191
- display: flex;
192
- align-items: center;
193
- gap: 40px;
194
- flex: 1;
195
- }
196
- .Header-module__nav__E5j1Pg:not(:has(.Header-module__navItem__9yWrFL)) {
197
- justify-content: flex-end;
198
- }
199
-
200
- .Header-module__navItem__9yWrFL:last-of-type {
201
- flex: 1;
202
- }
203
-
204
- .Header-module__logo__RE3idO {
205
- height: 80px;
206
- display: grid;
207
- place-items: center start;
208
- flex: 0 0 320px;
209
- }
210
-
211
- @media (max-width: 1023px) {
212
- .Header-module__logo__RE3idO {
213
- flex: 0 0 240px;
214
- }
215
- }
216
- @media (max-width: 767px) {
217
- .Header-module__root__HQYeJV {
218
- flex-direction: column;
219
- align-items: flex-start;
220
- justify-content: center;
221
- }
222
- .Header-module__nav__E5j1Pg {
223
- display: none;
224
- }
225
- .Header-module__navItem__9yWrFL {
226
- font-size: 14px;
227
- }
228
- .Header-module__logo__RE3idO {
229
- height: 12px;
230
- flex: unset;
231
- margin-inline: auto;
232
- color: var(--owl-color-graphite);
233
- }
234
- .Header-module__logo__RE3idO svg {
235
- width: 100%;
236
- height: 100%;
237
- }
238
- }.CurrentLocation-module__root__OP569R {
239
- display: flex;
240
- gap: 10px;
241
- align-items: center;
242
- cursor: pointer;
243
- }
244
-
245
- .CurrentLocation-module__icon__tNWTkm {
246
- color: var(--owl-color-primary);
247
- }
248
-
249
- .CurrentLocation-module__text__r-F6NH {
250
- font-size: 16px;
251
- line-height: 19px;
252
- }
253
-
254
- @media (max-width: 767px) {
255
- .CurrentLocation-module__root__OP569R {
256
- gap: 6px;
257
- }
258
- .CurrentLocation-module__icon__tNWTkm {
259
- width: 14px;
260
- height: 16px;
261
- }
262
- }.Layout-module__root__ahSFBs {
263
- isolation: isolate;
264
- position: relative;
265
- font-family: var(--owl-font);
266
- width: 100%;
267
- height: 100%;
268
- overflow: hidden;
269
- color: var(--owl-color-text-dark);
270
- min-height: 100%;
271
- transition: grid-template-columns 0.2s ease, grid-template-rows 0.2s ease;
272
- display: grid;
273
- grid-template-areas: "header header header" "sidebar map map" "sidebar map map";
274
- grid-template-columns: 0 1fr 1fr;
275
- grid-template-rows: 80px 1fr 1fr;
276
- }
277
- .Layout-module__root__ahSFBs.Layout-module__headerHidden__ko0ZcT {
278
- grid-template-areas: "sidebar map map" "sidebar map map";
279
- grid-template-columns: 0 1fr 1fr;
280
- grid-template-rows: 1fr 1fr;
281
- }
282
- .Layout-module__root__ahSFBs.Layout-module__sidebarHidden__6hkiQL {
283
- grid-template-areas: "header header header" "map map map";
284
- grid-template-columns: 0 1fr 1fr;
285
- grid-template-rows: 80px 1fr;
286
- }
287
- .Layout-module__root__ahSFBs.Layout-module__headerHidden__ko0ZcT.Layout-module__sidebarHidden__6hkiQL {
288
- grid-template-areas: "map";
289
- grid-template-rows: 1fr;
290
- grid-template-columns: 1fr;
291
- }
292
- .Layout-module__root__ahSFBs.Layout-module__sidebarOpen__vFWl9b {
293
- grid-template-columns: 320px 1fr 1fr;
294
- }
295
-
296
- @media (max-width: 1023px) {
297
- .Layout-module__root__ahSFBs.Layout-module__sidebarOpen__vFWl9b {
298
- grid-template-columns: 240px 1fr 1fr;
299
- }
300
- }
301
- @media (max-width: 767px) {
302
- .Layout-module__root__ahSFBs {
303
- grid-template-areas: "header" "map";
304
- grid-template-columns: 1fr;
305
- grid-template-rows: auto 1fr;
306
- }
307
- .Layout-module__root__ahSFBs.Layout-module__sidebarOpen__vFWl9b {
308
- grid-template-columns: 1fr;
309
- grid-template-rows: auto 1fr;
310
- }
311
- }.Overlay-module__root__y8tkGi {
312
- inset-block-start: 0;
313
- inset-inline-start: 0;
314
- width: 100%;
315
- height: 100%;
316
- z-index: var(--z-index-overlay);
317
- background-color: var(--owl-color-text-light);
318
- display: flex;
319
- justify-content: center;
320
- align-items: center;
321
- overflow: hidden;
322
- }.MapGoogle-module__root__iB2RTt {
323
- width: 100%;
324
- height: 100%;
325
- border: 1px solid var(--owl-color-border);
326
- border-radius: var(--owl-radius);
327
- position: relative;
328
- isolation: isolate;
329
- }
330
- .MapGoogle-module__root__iB2RTt div[role="dialog"] {
331
- padding: unset !important;
332
- padding: 12px !important;
333
- padding-block-end: 0 !important;
334
- padding-inline-end: 0 !important;
335
- }
336
- .MapGoogle-module__root__iB2RTt div[role="dialog"] > button {
337
- opacity: 1 !important;
338
- top: unset !important;
339
- right: unset !important;
340
- inset-block-start: 12px !important;
341
- inset-inline-end: 12px !important;
342
- width: 26px !important;
343
- height: 26px !important;
344
- }
345
- .MapGoogle-module__root__iB2RTt div[role="dialog"] > button > span {
346
- margin: 0 !important;
347
- width: 100% !important;
348
- height: 100% !important;
349
- background-color: var(--owl-color-primary);
350
- transition: background-color 0.2s ease;
351
- }
352
- .MapGoogle-module__root__iB2RTt div[role="dialog"] > button > span:hover {
353
- background-color: var(--owl-color-primary-dark);
354
- }
355
-
356
- .MapGoogle-module__hideUI__zGYpjY > div > div > div:last-of-type {
357
- display: none;
358
- }
359
-
360
- .MapGoogle-module__mapContainer__qTVsu4 {
361
- position: relative;
362
- width: 100%;
363
- height: 100%;
364
- }
365
-
366
- .MapGoogle-module__balloon__nNM3fV {
367
- max-width: 400px;
368
- }
369
-
370
- .MapGoogle-module__details__MuhoyT {
371
- --offset: 20px;
372
- z-index: 20;
373
- inset-block-start: var(--offset);
374
- inset-inline-end: var(--offset);
375
- inset-block-end: var(--offset);
376
- width: calc(50% - var(--offset));
377
- }
378
-
379
- .MapGoogle-module__cluster__KIS2sn {
380
- fill: var(--owl-color-primary);
381
- }
382
-
383
- .MapGoogle-module__cluster__KIS2sn:has(img) > img {
384
- display: none;
385
- }
386
- .MapGoogle-module__cluster__KIS2sn:has(img) > div {
387
- font-size: 13px !important;
388
- font-weight: 400 !important;
389
- border: 8px solid var(--owl-color-primary);
390
- border-radius: 100vw;
391
- height: 100%;
392
- display: flex;
393
- align-items: center;
394
- justify-content: center;
395
- background-color: var(--owl-color-text-light);
396
- box-shadow: 0 0 0 2px var(--owl-color-text-light-transparent);
397
- pointer-events: none;
398
- }
399
-
400
- .MapGoogle-module__overlay__z03Yoa {
401
- position: absolute;
402
- background-color: var(--owl-color-text-light-transparent);
403
- backdrop-filter: blur(5px);
404
- }
405
-
406
- .MapGoogle-module__mapControl__Iu3xc4 {
407
- background-color: var(--owl-color-primary);
408
- border-radius: 8px;
409
- color: #ffffff;
410
- width: 40px;
411
- height: 40px;
412
- display: grid;
413
- place-content: center;
414
- font-size: 24px;
415
- cursor: pointer;
416
- margin-right: 16px;
417
- user-select: none;
418
- }
419
- .MapGoogle-module__mapControl__Iu3xc4 + .MapGoogle-module__mapControl__Iu3xc4 {
420
- margin-top: 4px;
421
- }
422
- .MapGoogle-module__mapControl__Iu3xc4.MapGoogle-module__geolocationControl__cwYVsw {
423
- margin-bottom: 26px;
424
- color: var(--owl-color-primary);
425
- }
426
- .MapGoogle-module__mapControl__Iu3xc4:last-of-type {
427
- margin-bottom: 16px;
428
- }
429
-
430
- @media (max-width: 1023px) {
431
- .MapGoogle-module__details__MuhoyT {
432
- inset-inline-start: var(--offset);
433
- width: calc(100% - var(--offset) * 2);
434
- }
435
- }
436
- @media (max-width: 767px) {
437
- .MapGoogle-module__root__iB2RTt {
438
- border-radius: unset;
439
- }
440
- .MapGoogle-module__bottomSheet__ql8eoC {
441
- padding-inline: 20px;
442
- padding-block-end: 20px;
443
- }
444
- .MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__locationViewContent__LYJkkK,
445
- .MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__locationViewHeader__hzc7Ip,
446
- .MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__deliveryDetailsViewContent__1FevKl,
447
- .MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__deliveryDetailsViewHeader__VRF5b3 {
448
- padding-inline: 0;
449
- }
450
- .MapGoogle-module__sheetSubmit__pjGRS0 {
451
- width: 100%;
452
- }
453
- }.CloseButton-module__root__233rOd {
454
- color: var(--owl-color-primary);
455
- background-color: var(--owl-color-text-light);
456
- cursor: pointer;
457
- width: 24px;
458
- aspect-ratio: 1;
459
- display: grid;
460
- place-items: center;
461
- }
462
- @media (any-hover: hover) {
463
- .CloseButton-module__root__233rOd:hover {
464
- color: var(--owl-color-primary-dark);
465
- }
466
- }
467
-
468
- .CloseButton-module__absolutePositionVariant__MMkQ0- {
469
- position: absolute;
470
- inset-block-start: 16px;
471
- inset-inline-end: 16px;
472
- }
473
-
474
- .CloseButton-module__relativePositionVariant__fdYFY4 {
475
- position: relative;
476
- }.DeliveryBalloon-module__root__c9I8i1 {
477
- display: flex;
478
- flex-direction: column;
479
- gap: 16px;
480
- }
481
- .DeliveryBalloon-module__root__c9I8i1 .DeliveryBalloon-module__details__ti2Tdy {
482
- width: 100%;
483
- min-width: 280px;
484
- display: flex;
485
- align-items: center;
486
- justify-content: center;
487
- }
488
-
489
- .DeliveryBalloon-module__header__qKggbq {
490
- display: flex;
491
- align-items: center;
492
- gap: 8px;
493
- padding-block-end: 16px;
494
- border-bottom: 1px solid var(--owl-color-border);
495
- }
496
-
497
- .DeliveryBalloon-module__title__fDmbsU {
498
- font-size: 16px;
499
- line-height: 22px;
500
- font-weight: 600;
501
- }
502
-
503
- .DeliveryBalloon-module__description__5-12RZ {
504
- font-size: 14px;
505
- font-weight: 400;
506
- line-height: 20px;
507
- }
508
-
509
- .DeliveryBalloon-module__actions__MWT995 {
510
- display: flex;
511
- gap: 16px;
512
- align-items: center;
513
- }
514
-
515
- .DeliveryBalloon-module__errorVariant__meU-B7 .DeliveryBalloon-module__logo__YNN-Vi {
516
- color: var(--owl-color-error);
517
- }
518
- .DeliveryBalloon-module__errorVariant__meU-B7 .DeliveryBalloon-module__title__fDmbsU {
519
- color: var(--owl-color-error);
520
- }.Chip-module__root__A1duWr {
521
- background-color: var(--owl-color-secondary);
522
- border-radius: 100vw;
523
- padding: 8px 16px;
524
- cursor: pointer;
525
- transition: background-color 0.2s ease, color 0.2s ease;
526
- }
527
- @media (any-hover: hover) {
528
- .Chip-module__root__A1duWr:hover {
529
- background-color: var(--owl-color-border);
530
- }
531
- }
532
- .Chip-module__root__A1duWr.Chip-module__active__PmXa7K {
533
- background-color: var(--owl-color-primary);
534
- color: var(--owl-color-text-light);
535
- }.TextArea-module__root__l-RDfr {
536
- outline: none;
537
- border-radius: var(--owl-radius);
538
- border: 1px solid var(--owl-color-border);
539
- font-family: var(--owl-font);
540
- font-size: 16px;
541
- padding: 18px 20px;
542
- }.DeliveryDetailsView-module__title__9op9De {
543
- display: flex;
544
- align-items: center;
545
- gap: 12px;
546
- font-size: 16px;
547
- font-weight: 600;
548
- line-height: 20px;
549
- }
550
- .DeliveryDetailsView-module__title__9op9De .DeliveryDetailsView-module__logo__FHhzI0 {
551
- width: 50px;
552
- height: 50px;
553
- }
554
-
555
- .DeliveryDetailsView-module__header__zT3NCJ {
556
- outline: none;
557
- padding: 24px 16px 16px 16px;
558
- border-bottom: 1px solid var(--owl-color-border);
559
- }
560
-
561
- .DeliveryDetailsView-module__content__BWg5hx {
562
- display: flex;
563
- flex-direction: column;
564
- gap: 24px;
565
- padding: 16px;
566
- font-size: 14px;
567
- line-height: 20px;
568
- overflow-y: auto;
569
- }
570
- .DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar {
571
- width: 4px;
572
- height: 4px;
573
- cursor: pointer;
574
- }
575
- .DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-track {
576
- box-shadow: none;
577
- background-color: var(--owl-color-text-light);
578
- }
579
- .DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb {
580
- border-radius: 100vw;
581
- background-color: var(--owl-color-border);
582
- cursor: pointer;
583
- }
584
- @media (any-hover: hover) {
585
- .DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb:hover, .DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb:active {
586
- background-color: var(--owl-color-text-disabled);
587
- }
588
- }
589
- @media (any-hover: hover) {
590
- .DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb:hover {
591
- cursor: pointer;
592
- }
593
- }
594
-
595
- .DeliveryDetailsView-module__section__XSwSmI {
596
- display: flex;
597
- flex-direction: column;
598
- gap: 4px;
599
- }
600
- .DeliveryDetailsView-module__section__XSwSmI label {
601
- font-weight: 600;
602
- }
603
-
604
- .DeliveryDetailsView-module__chips__9GPIxJ {
605
- display: flex;
606
- gap: 8px;
607
- }
608
-
609
- .DeliveryDetailsView-module__actions__xulMTc {
610
- padding: 16px 16px 24px 16px;
611
- }
612
- .DeliveryDetailsView-module__actions__xulMTc .DeliveryDetailsView-module__submit__v9jVsD {
613
- width: 100%;
614
- }
615
- .DeliveryDetailsView-module__actions__xulMTc.DeliveryDetailsView-module__actionsHidden__yu2ivZ {
616
- display: none;
617
- }
618
-
619
- .DeliveryDetailsView-module__commentSection__lnUmS0 {
620
- flex: 1;
621
- }
622
-
623
- .DeliveryDetailsView-module__comment__ZwRY1z {
624
- height: 100%;
625
- }
626
-
627
- @media (max-width: 767px) {
628
- .DeliveryDetailsView-module__header__zT3NCJ {
629
- padding-block-start: 0;
630
- }
631
- }.LocationView-module__title__QP69kD {
632
- display: flex;
633
- align-items: center;
634
- gap: 12px;
635
- font-size: 16px;
636
- font-weight: 600;
637
- line-height: 20px;
638
- }
639
- .LocationView-module__title__QP69kD .LocationView-module__logo__nlPQaG {
640
- display: grid;
641
- place-content: center;
642
- width: 50px;
643
- height: 50px;
644
- flex-shrink: 0;
645
- border-radius: 100vw;
646
- border: 1px solid var(--owl-color-graphite-20);
647
- background: var(--owl-color-text-light);
648
- }
649
-
650
- .LocationView-module__header__9DDuVU {
651
- outline: none;
652
- padding: 24px 16px 16px 16px;
653
- border-bottom: 1px solid var(--owl-color-border);
654
- }
655
-
656
- .LocationView-module__content__Se2TSy {
657
- display: flex;
658
- flex-direction: column;
659
- gap: 24px;
660
- padding: 16px;
661
- font-size: 14px;
662
- line-height: 20px;
663
- overflow-y: auto;
664
- }
665
- .LocationView-module__content__Se2TSy::-webkit-scrollbar {
666
- width: 4px;
667
- height: 4px;
668
- cursor: pointer;
669
- }
670
- .LocationView-module__content__Se2TSy::-webkit-scrollbar-track {
671
- box-shadow: none;
672
- background-color: var(--owl-color-text-light);
673
- }
674
- .LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb {
675
- border-radius: 100vw;
676
- background-color: var(--owl-color-border);
677
- cursor: pointer;
678
- }
679
- @media (any-hover: hover) {
680
- .LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb:hover, .LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb:active {
681
- background-color: var(--owl-color-text-disabled);
682
- }
683
- }
684
- @media (any-hover: hover) {
685
- .LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb:hover {
686
- cursor: pointer;
687
- }
688
- }
689
-
690
- .LocationView-module__section__9m1x1v {
691
- display: flex;
692
- flex-direction: column;
693
- gap: 4px;
694
- }
695
- .LocationView-module__section__9m1x1v label {
696
- font-weight: 600;
697
- }
698
-
699
- .LocationView-module__chips__6j-ZAh {
700
- display: flex;
701
- gap: 8px;
702
- }
703
-
704
- .LocationView-module__services__rwbp2x {
705
- display: flex;
706
- flex-direction: column;
707
- gap: 4px;
708
- }
709
-
710
- .LocationView-module__images__zfnQMA {
711
- display: flex;
712
- gap: 20px;
713
- max-width: 100%;
714
- overflow-x: auto;
715
- scroll-snap-type: x mandatory;
716
- min-height: 165px;
717
- }
718
- .LocationView-module__images__zfnQMA::-webkit-scrollbar {
719
- width: 4px;
720
- height: 4px;
721
- cursor: pointer;
722
- }
723
- .LocationView-module__images__zfnQMA::-webkit-scrollbar-track {
724
- box-shadow: none;
725
- background-color: var(--owl-color-text-light);
726
- }
727
- .LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb {
728
- border-radius: 100vw;
729
- background-color: var(--owl-color-border);
730
- cursor: pointer;
731
- }
732
- @media (any-hover: hover) {
733
- .LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb:hover, .LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb:active {
734
- background-color: var(--owl-color-text-disabled);
735
- }
736
- }
737
- @media (any-hover: hover) {
738
- .LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb:hover {
739
- cursor: pointer;
740
- }
741
- }
742
-
743
- .LocationView-module__image__JKvt9J {
744
- flex-shrink: 0;
745
- width: 220px;
746
- aspect-ratio: 220/140;
747
- scroll-snap-align: start;
748
- border-radius: var(--owl-radius);
749
- object-fit: cover;
750
- }
751
-
752
- .LocationView-module__actions__AGih3C {
753
- padding: 16px 16px 24px 16px;
754
- }
755
- .LocationView-module__actions__AGih3C.LocationView-module__actionsHidden__DBV1vj {
756
- display: none;
757
- }
758
- .LocationView-module__actions__AGih3C .LocationView-module__submit__6mD2w- {
759
- width: 100%;
760
- }
761
-
762
- .LocationView-module__scheduleItem__snTLMb {
763
- padding: 0;
764
- }
765
-
766
- @media (max-width: 767px) {
767
- .LocationView-module__header__9DDuVU {
768
- padding-block-start: 0;
769
- }
770
- }.LocationBalloon-module__root__D5p9cL {
771
- display: flex;
772
- flex-direction: column;
773
- gap: 16px;
774
- }
775
- .LocationBalloon-module__root__D5p9cL .LocationBalloon-module__submit__Ri5JaR {
776
- min-width: unset;
777
- padding-inline: 32px;
778
- }
779
- .LocationBalloon-module__root__D5p9cL .LocationBalloon-module__details__6et6aX {
780
- display: flex;
781
- align-items: center;
782
- gap: 4px;
783
- }
784
-
785
- .LocationBalloon-module__icon__U-zpx7 {
786
- display: grid;
787
- place-content: center;
788
- width: 40px;
789
- height: 40px;
790
- flex-shrink: 0;
791
- border-radius: 100vw;
792
- border: 1px solid var(--owl-color-graphite-20);
793
- background: var(--owl-color-text-light);
794
- }
795
-
796
- .LocationBalloon-module__header__LCvDj0 {
797
- display: flex;
798
- align-items: center;
799
- gap: 8px;
800
- padding-block-end: 16px;
801
- border-bottom: 1px solid var(--owl-color-border);
802
- }
803
-
804
- .LocationBalloon-module__title__octhrc {
805
- font-size: 16px;
806
- line-height: 22px;
807
- font-weight: 600;
808
- padding-inline-end: 16px;
809
- }
810
-
811
- .LocationBalloon-module__description__r7vFbw {
812
- font-size: 14px;
813
- font-weight: 400;
814
- line-height: 20px;
815
- }
816
-
817
- .LocationBalloon-module__actions__-jdejn {
818
- display: flex;
819
- gap: 16px;
820
- align-items: center;
821
- }.MapYandex-module__root__r3kDJ8 {
822
- width: 100%;
823
- height: 100%;
824
- overflow: hidden;
825
- border: 1px solid var(--owl-color-border);
826
- border-radius: var(--owl-radius);
827
- position: relative;
828
- isolation: isolate;
829
- }
830
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close {
831
- width: 26px;
832
- height: 26px;
833
- position: absolute;
834
- inset-block-start: 12px;
835
- inset-inline-end: 12px;
836
- }
837
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close > .ymaps-2-1-79-balloon__close-button {
838
- width: 100%;
839
- height: 100%;
840
- background-image: none;
841
- background-color: var(--owl-color-primary);
842
- opacity: 1;
843
- -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3C/svg%3E");
844
- mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3C/svg%3E");
845
- transition: background-color 0.2s ease;
846
- }
847
- @media (any-hover: hover) {
848
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close > .ymaps-2-1-79-balloon__close-button:hover {
849
- background-color: var(--owl-color-primary-dark);
850
- }
851
- }
852
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__layout {
853
- border-radius: var(--owl-radius);
854
- }
855
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close + .ymaps-2-1-79-balloon__content {
856
- margin: unset;
857
- margin-inline-end: 0;
858
- padding: 16px;
859
- border-radius: var(--owl-radius);
860
- }
861
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon {
862
- box-shadow: 0px 4px 16px 0px var(--owl-color-text-disabled-transparent);
863
- border-radius: var(--owl-radius);
864
- }
865
- .MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-copyrights-pane {
866
- display: none;
867
- }
868
-
869
- .MapYandex-module__overlay__f7UGYS {
870
- position: absolute;
871
- background-color: var(--owl-color-text-light-transparent);
872
- backdrop-filter: blur(5px);
873
- }
874
-
875
- .MapYandex-module__details__E3bDvL {
876
- --offset: 20px;
877
- z-index: 20;
878
- inset-block-start: var(--offset);
879
- inset-inline-end: var(--offset);
880
- inset-block-end: var(--offset);
881
- width: calc(50% - var(--offset));
882
- }
883
-
884
- @media (max-width: 1023px) {
885
- .MapYandex-module__details__E3bDvL {
886
- inset-inline-start: var(--offset);
887
- width: calc(100% - var(--offset) * 2);
888
- }
889
- }
890
- @media (max-width: 767px) {
891
- .MapYandex-module__root__r3kDJ8 {
892
- border-radius: unset;
893
- }
894
- }.Separator-module__root__buxoVg {
895
- margin-block: 24px;
896
- border: none;
897
- height: 1px;
898
- background-color: var(--owl-color-secondary);
899
- border-radius: 1px;
900
- }
901
-
902
- @media (max-width: 767px) {
903
- .Separator-module__root__buxoVg {
904
- margin-block: 12px;
905
- }
906
- }.Sidebar-module__root__hxXudu {
907
- overflow: hidden;
908
- transition: opacity 0.2s ease;
909
- opacity: 0;
910
- min-width: 320px;
911
- }
912
- .Sidebar-module__root__hxXudu .Sidebar-module__closeButton__8k-Ph3 {
913
- position: relative;
914
- inset-block-start: 0;
915
- inset-inline-end: 0;
916
- }
917
- .Sidebar-module__root__hxXudu.Sidebar-module__open__qMGUBV {
918
- opacity: 1;
919
- }
920
-
921
- .Sidebar-module__header__Eu-wRc {
922
- position: relative;
923
- height: 32px;
924
- display: grid;
925
- place-content: start end;
926
- margin-inline-end: 12px;
927
- }
928
-
929
- .Sidebar-module__typeFilter__-lxVdY {
930
- margin-block-end: 44px;
931
- }
932
-
933
- .Sidebar-module__separator__XDb6rs {
934
- margin-block-start: 48px;
935
- }
936
-
937
- .Sidebar-module__withRightPadding__knvmuY {
938
- padding-inline-end: 40px;
939
- }
940
-
941
- .Sidebar-module__sheetContent__4iWeTf {
942
- padding-inline: 20px;
943
- }
944
-
945
- @media (max-width: 1023px) {
946
- .Sidebar-module__root__hxXudu {
947
- min-width: 240px;
948
- }
949
- }
950
- @media (max-width: 767px) {
951
- .Sidebar-module__header__Eu-wRc {
952
- margin-inline-end: 0;
953
- }
954
- .Sidebar-module__withRightPadding__knvmuY {
955
- padding-inline-end: 0;
956
- }
957
- .Sidebar-module__typeFilter__-lxVdY {
958
- margin-block-end: 0;
959
- }
960
- .Sidebar-module__separator__XDb6rs {
961
- margin-block-start: 24px;
962
- }
963
- .Sidebar-module__doneButton__chvXVP {
964
- font-size: 14px;
965
- font-weight: 700;
966
- color: var(--owl-color-primary);
967
- padding: 4px 8px;
968
- }
969
- }.TypeFilter-module__root__FEaBBU {
970
- display: flex;
971
- flex-direction: column;
972
- gap: 10px;
973
- }
974
-
975
- @media (max-width: 767px) {
976
- .TypeFilter-module__root__FEaBBU {
977
- flex-direction: row;
978
- }
979
- .TypeFilter-module__root__FEaBBU .TypeFilter-module__button__RYOzBQ {
980
- flex-grow: 1;
981
- }
982
- }.Radio-module__root__FMbfCi {
983
- appearance: none;
984
- /* For iOS < 15 to remove gradient background */
985
- background-color: var(--owl-color-text-light);
986
- border-radius: 100vw;
987
- /* Not removed via appearance */
988
- margin: 0;
989
- }
990
- .Radio-module__root__FMbfCi::before {
991
- content: "";
992
- display: inline-block;
993
- width: 16px;
994
- height: 16px;
995
- border-radius: 50%;
996
- border: 1px solid var(--owl-color-border);
997
- background-color: var(--owl-color-secondary);
998
- vertical-align: middle;
999
- transition: background-color 0.2s ease, border-color 0.2s ease;
1000
- }
1001
- .Radio-module__root__FMbfCi:checked::before {
1002
- background-color: var(--owl-color-primary);
1003
- border-color: var(--owl-color-primary-dark);
1004
- }
1005
- .Radio-module__root__FMbfCi:disabled {
1006
- border-color: var(--owl-color-text-disabled);
1007
- background-color: var(--owl-color-text-disabled);
1008
- }
1009
- .Radio-module__root__FMbfCi:not(:disabled) {
1010
- cursor: pointer;
1011
- }
1012
-
1013
- .Radio-module__label__-LLJSR {
1014
- display: flex;
1015
- align-items: center;
1016
- gap: 8px;
1017
- padding-block: 8px;
1018
- transition: color 0.2s ease;
1019
- font-size: 14px;
1020
- font-weight: 600;
1021
- line-height: 16px;
1022
- }
1023
- .Radio-module__label__-LLJSR:has(.Radio-module__root__FMbfCi:checked) {
1024
- color: var(--owl-color-primary);
1025
- }
1026
- .Radio-module__label__-LLJSR:has(.Radio-module__root__FMbfCi:not(:disabled)) {
1027
- cursor: pointer;
1028
- }.RadioGroup-module__root__wNjmrq {
1029
- display: flex;
1030
- flex-direction: column;
1031
- gap: 8px;
1032
- }
1033
-
1034
- .RadioGroup-module__body__n4Ho0- {
1035
- display: flex;
1036
- flex-direction: column;
1037
- }
1038
-
1039
- .RadioGroup-module__legend__ECksBN {
1040
- font-size: 16px;
1041
- font-weight: 600;
1042
- line-height: 22px;
1043
- }[data-rsbs-overlay] {
1044
- border-top-left-radius: 16px;
1045
- border-top-left-radius: var(--rsbs-overlay-rounded,16px);
1046
- border-top-right-radius: 16px;
1047
- border-top-right-radius: var(--rsbs-overlay-rounded,16px);
1048
- display: flex;
1049
- background: #fff;
1050
- background: var(--rsbs-bg,#fff);
1051
- flex-direction: column;
1052
- height: 0px;
1053
- height: var(--rsbs-overlay-h,0px);
1054
- transform: translate3d(0, 0px, 0);
1055
- transform: translate3d(0, var(--rsbs-overlay-translate-y,0px), 0);
1056
- will-change: height;
1057
- }
1058
-
1059
- [data-rsbs-overlay]:focus {
1060
- outline: none;
1061
- }
1062
-
1063
- [data-rsbs-is-blocking='false'] [data-rsbs-overlay] {
1064
- box-shadow: 0 -5px 60px 0 rgba(38, 89, 115, 0.11),
1065
- 0 -1px 0 rgba(38, 89, 115, 0.05);
1066
- }
1067
-
1068
- [data-rsbs-overlay],
1069
- [data-rsbs-root]:after {
1070
- max-width: auto;
1071
- max-width: var(--rsbs-max-w,auto);
1072
- margin-left: env(safe-area-inset-left);
1073
- margin-left: var(--rsbs-ml,env(safe-area-inset-left));
1074
- margin-right: env(safe-area-inset-right);
1075
- margin-right: var(--rsbs-mr,env(safe-area-inset-right));
1076
- }
1077
-
1078
- [data-rsbs-overlay],
1079
- [data-rsbs-backdrop],
1080
- [data-rsbs-root]:after {
1081
- z-index: 3;
1082
- -ms-scroll-chaining: none;
1083
- overscroll-behavior: none;
1084
- touch-action: none;
1085
- position: fixed;
1086
- right: 0;
1087
- bottom: 0;
1088
- left: 0;
1089
- -webkit-user-select: none;
1090
- -moz-user-select: none;
1091
- -ms-user-select: none;
1092
- user-select: none;
1093
- -webkit-tap-highlight-color: transparent;
1094
- -webkit-touch-callout: none;
1095
- }
1096
-
1097
- [data-rsbs-backdrop] {
1098
- top: -60px;
1099
- bottom: -60px;
1100
- background-color: rgba(0, 0, 0, 0.6);
1101
- background-color: var(--rsbs-backdrop-bg,rgba(0, 0, 0, 0.6));
1102
- will-change: opacity;
1103
- cursor: pointer;
1104
- opacity: 1;
1105
- }
1106
-
1107
- [data-rsbs-is-dismissable='false'] [data-rsbs-backdrop] {
1108
- cursor: ns-resize;
1109
- }
1110
-
1111
- [data-rsbs-root]:after {
1112
- content: '';
1113
- pointer-events: none;
1114
- background: #fff;
1115
- background: var(--rsbs-bg,#fff);
1116
- height: 1px;
1117
- transform-origin: bottom;
1118
- transform: scale3d(1, 0, 1);
1119
- transform: scale3d(1, var(--rsbs-antigap-scale-y,0), 1);
1120
- will-change: transform;
1121
- }
1122
-
1123
- [data-rsbs-footer],
1124
- [data-rsbs-header] {
1125
- flex-shrink: 0;
1126
- cursor: ns-resize;
1127
- padding: 16px;
1128
- }
1129
-
1130
- [data-rsbs-header] {
1131
- text-align: center;
1132
- -webkit-user-select: none;
1133
- -moz-user-select: none;
1134
- -ms-user-select: none;
1135
- user-select: none;
1136
- box-shadow: 0 1px 0
1137
- rgba(46, 59, 66, calc(1 * 0.125));
1138
- box-shadow: 0 1px 0
1139
- rgba(46, 59, 66, calc(var(--rsbs-content-opacity,1) * 0.125));
1140
- z-index: 1;
1141
- padding-top: calc(20px + env(safe-area-inset-top));
1142
- padding-bottom: 8px;
1143
- }
1144
-
1145
- [data-rsbs-header]:before {
1146
- position: absolute;
1147
- content: '';
1148
- display: block;
1149
- width: 36px;
1150
- height: 4px;
1151
- top: calc(8px + env(safe-area-inset-top));
1152
- left: 50%;
1153
- transform: translateX(-50%);
1154
- border-radius: 2px;
1155
- background-color: hsla(0, 0%, 0%, 0.14);
1156
- background-color: var(--rsbs-handle-bg,hsla(0, 0%, 0%, 0.14));
1157
- }
1158
-
1159
- @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
1160
- [data-rsbs-header]:before {
1161
- transform: translateX(-50%) scaleY(0.75);
1162
- }
1163
- }
1164
-
1165
- [data-rsbs-has-header='false'] [data-rsbs-header] {
1166
- box-shadow: none;
1167
- padding-top: calc(12px + env(safe-area-inset-top));
1168
- }
1169
-
1170
- [data-rsbs-scroll] {
1171
- flex-shrink: 1;
1172
- flex-grow: 1;
1173
- -webkit-tap-highlight-color: revert;
1174
- -webkit-touch-callout: revert;
1175
- -webkit-user-select: auto;
1176
- -ms-user-select: auto;
1177
- -moz-user-select: auto;
1178
- user-select: auto;
1179
- overflow: auto;
1180
- -ms-scroll-chaining: none;
1181
- overscroll-behavior: contain;
1182
- -webkit-overflow-scrolling: touch;
1183
- }
1184
-
1185
- [data-rsbs-scroll]:focus {
1186
- outline: none;
1187
- }
1188
-
1189
- [data-rsbs-has-footer='false'] [data-rsbs-content] {
1190
- padding-bottom: env(safe-area-inset-bottom);
1191
- }
1192
-
1193
- [data-rsbs-content] {
1194
- /* The overflow hidden is to ensure any margin on child nodes are included when the resize observer is measuring the height */
1195
- overflow: hidden;
1196
- }
1197
-
1198
- [data-rsbs-footer] {
1199
- box-shadow: 0 -1px 0 rgba(46, 59, 66, calc(1 * 0.125)),
1200
- 0 2px 0 #fff;
1201
- box-shadow: 0 -1px 0 rgba(46, 59, 66, calc(var(--rsbs-content-opacity,1) * 0.125)),
1202
- 0 2px 0 var(--rsbs-bg,#fff);
1203
- overflow: hidden;
1204
- z-index: 1;
1205
- padding-bottom: calc(16px + env(safe-area-inset-bottom));
1206
- }
1207
-
1208
- [data-rsbs-is-dismissable='true'] [data-rsbs-header] > *, [data-rsbs-is-dismissable='true'] [data-rsbs-scroll] > *, [data-rsbs-is-dismissable='true'] [data-rsbs-footer] > *, [data-rsbs-is-dismissable='false'][data-rsbs-state='opening'] [data-rsbs-header] > *, [data-rsbs-is-dismissable='false'][data-rsbs-state='closing'] [data-rsbs-header] > *, [data-rsbs-is-dismissable='false'][data-rsbs-state='opening'] [data-rsbs-scroll] > *, [data-rsbs-is-dismissable='false'][data-rsbs-state='closing'] [data-rsbs-scroll] > *, [data-rsbs-is-dismissable='false'][data-rsbs-state='opening'] [data-rsbs-footer] > *, [data-rsbs-is-dismissable='false'][data-rsbs-state='closing'] [data-rsbs-footer] > * {
1209
- opacity: 1;
1210
- opacity: var(--rsbs-content-opacity,1);
1211
- }
1212
-
1213
- [data-rsbs-is-dismissable='true'] [data-rsbs-backdrop], [data-rsbs-is-dismissable='false'][data-rsbs-state='opening'] [data-rsbs-backdrop], [data-rsbs-is-dismissable='false'][data-rsbs-state='closing'] [data-rsbs-backdrop] {
1214
- opacity: 1;
1215
- opacity: var(--rsbs-backdrop-opacity,1);
1216
- }
1217
-
1218
- [data-rsbs-state='closed'],
1219
- [data-rsbs-state='closing'] {
1220
- /* Allows interactions on the rest of the page before the close transition is finished */
1221
- pointer-events: none;
1222
- }
1223
- .MapContainer-module__root__nze9pB {
1224
- --filter-color: #323232;
1225
- position: relative;
1226
- isolation: isolate;
1227
- display: grid;
1228
- }
1229
-
1230
- .MapContainer-module__mapWrapper__twRo4C {
1231
- width: 100%;
1232
- height: 100%;
1233
- position: relative;
1234
- }
1235
- .MapContainer-module__mapWrapper__twRo4C::after {
1236
- content: "";
1237
- display: block;
1238
- position: absolute;
1239
- inset: 0;
1240
- background-color: var(--owl-color-text-light);
1241
- opacity: 0;
1242
- transition: opacity 0.2s ease;
1243
- pointer-events: none;
1244
- }
1245
- .MapContainer-module__mapWrapper__twRo4C.MapContainer-module__wrapperBlurred__U-Ohae::after {
1246
- opacity: 0.8;
1247
- }
1248
-
1249
- .MapContainer-module__locationSelector__lEiSKq {
1250
- position: absolute;
1251
- inset-block-start: 20px;
1252
- inset-inline-end: 20px;
1253
- z-index: 1;
1254
- width: clamp(320px, 50%, 520px);
1255
- }
1256
-
1257
- .MapContainer-module__filterButton__jIRGu9 {
1258
- position: absolute;
1259
- cursor: pointer;
1260
- z-index: 1;
1261
- inset-block-start: 40px;
1262
- inset-inline-start: 0;
1263
- transition: opacity 0.2s ease;
1264
- opacity: 1;
1265
- background: var(--filter-color);
1266
- border-start-end-radius: var(--owl-radius);
1267
- border-end-end-radius: var(--owl-radius);
1268
- }
1269
- .MapContainer-module__filterButton__jIRGu9.MapContainer-module__sidebarOpen__sUhaH- {
1270
- opacity: 0;
1271
- }
1272
-
1273
- .MapContainer-module__filterIcon__-2Qd2d {
1274
- width: 100%;
1275
- height: 100%;
1276
- }
1277
-
1278
- .MapContainer-module__details__sAP6T2 {
1279
- --offset: 20px;
1280
- z-index: 2;
1281
- inset-block-start: var(--offset);
1282
- inset-inline-end: var(--offset);
1283
- width: 520px;
1284
- max-height: calc(100% - var(--offset) * 2);
1285
- }
1286
-
1287
- @media (max-width: 1023px) {
1288
- .MapContainer-module__details__sAP6T2 {
1289
- inset-inline-start: var(--offset);
1290
- width: calc(100% - var(--offset) * 2);
1291
- }
1292
- }
1293
- @media (max-width: 767px) {
1294
- .MapContainer-module__root__nze9pB {
1295
- display: flex;
1296
- flex-direction: column;
1297
- gap: 12px;
1298
- }
1299
- .MapContainer-module__filterButton__jIRGu9 {
1300
- all: unset;
1301
- display: flex;
1302
- align-items: center;
1303
- justify-content: space-between;
1304
- position: relative;
1305
- border-radius: var(--owl-radius);
1306
- padding-inline: 20px;
1307
- }
1308
- .MapContainer-module__filterButton__jIRGu9.MapContainer-module__sidebarOpen__sUhaH- {
1309
- opacity: 1;
1310
- }
1311
- .MapContainer-module__filterIcon__-2Qd2d {
1312
- width: 28px;
1313
- height: 28px;
1314
- }
1315
- .MapContainer-module__locationSelector__lEiSKq {
1316
- width: 100%;
1317
- position: relative;
1318
- inset-block-start: unset;
1319
- inset-inline-end: unset;
1320
- padding-inline: 20px;
1321
- }
1322
- }.Input-module__root__4cwtKq {
1323
- display: flex;
1324
- flex-direction: column;
1325
- gap: 8px;
1326
- }
1327
- .Input-module__root__4cwtKq:has(.Input-module__endAdornment__Tv4vyT) .Input-module__input__qeMAQB {
1328
- padding-inline-end: 60px;
1329
- }
1330
- .Input-module__root__4cwtKq:has(.Input-module__startAdornment__4bXzn1) .Input-module__input__qeMAQB {
1331
- padding-inline-start: 60px;
1332
- }
1333
-
1334
- .Input-module__input__qeMAQB {
1335
- width: -webkit-fill-available;
1336
- padding: 17px 22px;
1337
- border-radius: var(--owl-radius);
1338
- border: 1px solid var(--owl-color-border);
1339
- background: var(--owl-color-text-light);
1340
- font-size: 16px;
1341
- line-height: 20px;
1342
- outline: var(--owl-color-primary);
1343
- font-family: var(--owl-font);
1344
- }
1345
- .Input-module__input__qeMAQB::placeholder {
1346
- font-weight: 500;
1347
- color: var(--owl-color-text-disabled);
1348
- }
1349
-
1350
- .Input-module__label__N2eUZ2 {
1351
- font-size: 16px;
1352
- font-weight: 600;
1353
- line-height: 22px;
1354
- }
1355
-
1356
- .Input-module__inputContainer__Ticemx {
1357
- position: relative;
1358
- display: flex;
1359
- flex-direction: column;
1360
- gap: 8px;
1361
- }
1362
-
1363
- .Input-module__endAdornment__Tv4vyT {
1364
- position: absolute;
1365
- inset-inline-end: 1px;
1366
- inset-block-start: 0px;
1367
- inset-block-end: 2px;
1368
- display: flex;
1369
- align-items: center;
1370
- padding: 0 20px;
1371
- color: var(--owl-color-text-disabled);
1372
- font-size: 16px;
1373
- line-height: 20px;
1374
- font-weight: 500;
1375
- }
1376
-
1377
- .Input-module__startAdornment__4bXzn1 {
1378
- position: absolute;
1379
- inset-inline-start: 1px;
1380
- inset-block-start: 0;
1381
- inset-block-end: 2px;
1382
- display: flex;
1383
- align-items: center;
1384
- padding: 0 20px;
1385
- color: var(--owl-color-text-disabled);
1386
- font-size: 16px;
1387
- line-height: 20px;
1388
- font-weight: 500;
1389
- }.DeliveryDetailsModal-module__root__lnsoXP {
1390
- position: absolute;
1391
- background-color: var(--owl-color-text-light);
1392
- box-shadow: 0px 4px 16px 0px var(--owl-color-text-disabled-transparent);
1393
- border: 1px solid var(--owl-color-border);
1394
- border-radius: calc(var(--owl-radius) * 2);
1395
- overflow: hidden;
1396
- display: grid;
1397
- grid-template-columns: 1fr;
1398
- grid-template-rows: auto 1fr auto;
1399
- }.LocationDetailsModal-module__root__AzUydF {
1400
- position: absolute;
1401
- background-color: var(--owl-color-text-light);
1402
- box-shadow: 0px 4px 16px 0px var(--owl-color-text-disabled-transparent);
1403
- border: 1px solid var(--owl-color-border);
1404
- border-radius: calc(var(--owl-radius) * 2);
1405
- overflow: hidden;
1406
- display: grid;
1407
- grid-template-columns: 1fr;
1408
- grid-template-rows: auto 1fr auto;
1409
- }.Aside-module__root__JSqCyF {
1410
- position: absolute;
1411
- inset: 0;
1412
- opacity: 0;
1413
- transition: opacity 0.2s ease;
1414
- isolation: isolate;
1415
- pointer-events: none;
1416
- backdrop-filter: blur(5px);
1417
- }
1418
- .Aside-module__root__JSqCyF.Aside-module__open__t8OMLZ {
1419
- opacity: 1;
1420
- pointer-events: all;
1421
- }
1422
-
1423
- .Aside-module__overlay__0UAvMb {
1424
- position: absolute;
1425
- inset: 0;
1426
- width: 200%;
1427
- background-color: rgba(29, 54, 101, 0.4);
1428
- z-index: 0;
1429
- }
1430
-
1431
- .Aside-module__container__KJNP0t {
1432
- position: absolute;
1433
- inset-block-start: 0;
1434
- inset-inline-end: 0;
1435
- inset-block-end: 0;
1436
- z-index: 1;
1437
- width: 100%;
1438
- background-color: var(--owl-color-text-light);
1439
- transition: transform 0.2s ease;
1440
- transform: translateX(100%);
1441
- }
1442
- .Aside-module__open__t8OMLZ .Aside-module__container__KJNP0t {
1443
- transform: translateX(0);
1444
- }.LocationAside-module__submit__hx8LTK {
1445
- margin-block-start: 20px;
1446
- width: 100%;
1447
- }
1448
-
1449
- .LocationAside-module__container__KEGf9s {
1450
- display: grid;
1451
- height: 100%;
1452
- place-items: start center;
1453
- padding-block-start: 80px;
1454
- }
1455
-
1456
- .LocationAside-module__selector__ogsvtz {
1457
- display: flex;
1458
- flex-direction: column;
1459
- gap: 16px;
1460
- width: clamp(320px, 50%, 520px);
1461
- }
1462
-
1463
- .LocationAside-module__label__-FWqoq {
1464
- font-size: 24px;
1465
- font-weight: 600;
1466
- line-height: 140%;
1467
- }
1468
-
1469
- .LocationAside-module__header__qmaQaV {
1470
- display: flex;
1471
- align-items: center;
1472
- justify-content: space-between;
1473
- }
1474
-
1475
- .LocationAside-module__close__bklFI7 {
1476
- cursor: pointer;
1477
- color: var(--owl-color-primary);
1478
- }
1479
-
1480
- @media (max-width: 767px) {
1481
- .LocationAside-module__label__-FWqoq {
1482
- display: none;
1483
- }
1484
- .LocationAside-module__container__KEGf9s {
1485
- padding-inline: 20px;
1486
- padding-block-start: 8px;
1487
- }
1488
- .LocationAside-module__selector__ogsvtz {
1489
- width: 100%;
1490
- }
1491
- .LocationAside-module__header__qmaQaV {
1492
- justify-content: flex-end;
1493
- }
1494
- .LocationAside-module__close__bklFI7 {
1495
- flex: 1;
1496
- }
1497
- }.App-module__map__rW7rX2 {
1498
- grid-area: map;
1499
- }
1500
-
1501
- .App-module__sidebar__qEl7HV {
1502
- grid-area: sidebar;
1503
- }
1504
-
1505
- .App-module__header__gAG5Pr {
1506
- grid-area: header;
1507
- }
1508
-
1509
- @media (max-width: 767px) {
1510
- .App-module__sidebar__qEl7HV {
1511
- margin-block-start: 0;
1512
- }
1513
- .App-module__header__gAG5Pr {
1514
- margin-block: 8px;
1515
- }
1516
- }
1
+ :root{--owl-color-primary: #1760ee;--owl-color-primary-dark: #194fb8;--owl-color-secondary: #dfe1e5;--owl-color-error: #cc0000;--owl-color-success: #00c10e;--owl-color-text-dark: #000000;--owl-color-text-light: #ffffff;--owl-color-text-light-transparent: rgba(255, 255, 255, .4588235294);--owl-color-text-disabled: #929db2;--owl-color-text-disabled-transparent: rgba(146, 157, 178, .2);--owl-color-border: #d3d7de;--owl-color-graphite: #cbcfd4;--owl-color-graphite-20: #e5e7ea;--owl-color-grey-80: #333333;--owl-color-black: #000000;--owl-radius: 8px;--owl-button-radius: 8px;--owl-font: Roboto, sans-serif}[id="@omnic/widget-locations"]{isolation:isolate;position:relative;font-family:var(--owl-font);width:100%;height:100%;overflow:hidden;color:var(--owl-color-text-dark)}.pac-container{border-radius:var(--owl-radius);margin-block-start:8px;font-family:var(--owl-font)}.pac-container>*{font-family:inherit}.pac-container:after{display:none}.pac-container .pac-item{padding:16px;display:flex;flex-direction:column;gap:4px;position:relative;cursor:pointer;text-align:start}.pac-container .pac-item .pac-item-query{font-size:16px;line-height:20px}.pac-container .pac-item .pac-item-query+span{font-size:14px;line-height:1.4}.pac-container .pac-item .pac-icon{display:none}.pac-container .pac-item:after{content:"";width:16px;height:16px;background-color:var(--owl-color-primary);-webkit-mask-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 8.00003C12.5 8.28678 12.392 8.5735 12.1763 8.79212L5.38748 15.6718C4.95562 16.1094 4.25544 16.1094 3.82376 15.6718C3.39208 15.2343 3.39208 14.5249 3.82376 14.0872L9.83091 8.00003L3.82397 1.91279C3.39229 1.47515 3.39229 0.765811 3.82397 0.328387C4.25565 -0.109461 4.95583 -0.109461 5.38769 0.328387L12.1765 7.20793C12.3922 7.42666 12.5 7.71338 12.5 8.00003Z' fill='currentcolor' /%3E%3C/svg%3E%0A");mask-image:url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.5 8.00003C12.5 8.28678 12.392 8.5735 12.1763 8.79212L5.38748 15.6718C4.95562 16.1094 4.25544 16.1094 3.82376 15.6718C3.39208 15.2343 3.39208 14.5249 3.82376 14.0872L9.83091 8.00003L3.82397 1.91279C3.39229 1.47515 3.39229 0.765811 3.82397 0.328387C4.25565 -0.109461 4.95583 -0.109461 5.38769 0.328387L12.1765 7.20793C12.3922 7.42666 12.5 7.71338 12.5 8.00003Z' fill='currentcolor' /%3E%3C/svg%3E%0A");display:block;position:absolute;inset-block-start:50%;inset-inline-end:16px;transform:translateY(-50%)}reach-portal{font-family:var(--owl-font)}.Spinner-module__loader__HX--ed,.Spinner-module__loader__HX--ed:after{border-radius:50%;width:10em;height:10em}.Spinner-module__loader__HX--ed{--border-width: 1.1em;margin:60px auto;font-size:10px;position:relative;text-indent:-9999em;border-top:var(--border-width) solid var(--owl-color-text-disabled);border-right:var(--border-width) solid var(--owl-color-text-disabled);border-bottom:var(--border-width) solid var(--owl-color-text-disabled);border-left:var(--border-width) solid var(--owl-color-primary);transform:translateZ(0);animation:Spinner-module__loader__HX--ed 1.1s infinite linear}@-webkit-keyframes Spinner-module__loader__HX--ed{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes Spinner-module__loader__HX--ed{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.Button-module__root__8NAnx6{border:none;font-size:16px;font-weight:600;line-height:20px;cursor:pointer;outline:none;transition:color .2s ease,background-color .2s ease}.Button-module__root__8NAnx6:disabled{cursor:default;pointer-events:none;color:var(--owl-color-text-disabled)}button.Button-module__root__8NAnx6{padding-block:12px;border-radius:var(--owl-button-radius)}button.Button-module__primary__UsjvpK{color:var(--owl-color-text-light);background-color:var(--owl-color-primary)}@media (any-hover: hover){button.Button-module__primary__UsjvpK:hover{background-color:var(--owl-color-primary-dark)}}button.Button-module__primary__UsjvpK:disabled{background-color:var(--owl-color-border)}button.Button-module__secondary__VtNj8s{color:var(--owl-color-primary);background-color:var(--owl-color-secondary)}button.Button-module__secondary__VtNj8s:disabled{background-color:var(--owl-color-border)}a.Button-module__root__8NAnx6{text-decoration:none}a.Button-module__primary__UsjvpK{color:var(--owl-color-primary)}@media (any-hover: hover){a.Button-module__primary__UsjvpK:hover{color:var(--owl-color-primary-dark)}}a.Button-module__secondary__VtNj8s{color:var(--owl-color-text-disabled)}@media (any-hover: hover){a.Button-module__secondary__VtNj8s:hover{color:var(--owl-color-text-dark)}}.Button-module__loading__cIi2EH{position:relative;display:grid;place-items:center}.Button-module__loading__cIi2EH .Button-module__spinner__3Fk2sH{--border-width: .25em;margin:0;width:2em;height:2em}.Header-module__root__HQYeJV{display:flex;align-items:center;gap:10px}.Header-module__nav__E5j1Pg{display:flex;align-items:center;gap:40px;flex:1}.Header-module__nav__E5j1Pg:not(:has(.Header-module__navItem__9yWrFL)){justify-content:flex-end}.Header-module__navItem__9yWrFL:last-of-type{flex:1}.Header-module__logo__RE3idO{height:80px;display:grid;place-items:center start;flex:0 0 320px}@media (max-width: 1023px){.Header-module__logo__RE3idO{flex:0 0 240px}}@media (max-width: 767px){.Header-module__root__HQYeJV{flex-direction:column;align-items:flex-start;justify-content:center}.Header-module__nav__E5j1Pg{display:none}.Header-module__navItem__9yWrFL{font-size:14px}.Header-module__logo__RE3idO{height:12px;flex:unset;margin-inline:auto;color:var(--owl-color-graphite)}.Header-module__logo__RE3idO svg{width:100%;height:100%}}.CurrentLocation-module__root__OP569R{display:flex;gap:10px;align-items:center;cursor:pointer}.CurrentLocation-module__icon__tNWTkm{color:var(--owl-color-primary)}.CurrentLocation-module__text__r-F6NH{font-size:16px;line-height:19px}@media (max-width: 767px){.CurrentLocation-module__root__OP569R{gap:6px}.CurrentLocation-module__icon__tNWTkm{width:14px;height:16px}}.Layout-module__root__ahSFBs{isolation:isolate;position:relative;font-family:var(--owl-font);width:100%;height:100%;overflow:hidden;color:var(--owl-color-text-dark);min-height:100%;transition:grid-template-columns .2s ease,grid-template-rows .2s ease;display:grid;grid-template-areas:"header header header" "sidebar map map" "sidebar map map";grid-template-columns:0 1fr 1fr;grid-template-rows:80px 1fr 1fr}.Layout-module__root__ahSFBs.Layout-module__headerHidden__ko0ZcT{grid-template-areas:"sidebar map map" "sidebar map map";grid-template-columns:0 1fr 1fr;grid-template-rows:1fr 1fr}.Layout-module__root__ahSFBs.Layout-module__sidebarHidden__6hkiQL{grid-template-areas:"header header header" "map map map";grid-template-columns:0 1fr 1fr;grid-template-rows:80px 1fr}.Layout-module__root__ahSFBs.Layout-module__headerHidden__ko0ZcT.Layout-module__sidebarHidden__6hkiQL{grid-template-areas:"map";grid-template-rows:1fr;grid-template-columns:1fr}.Layout-module__root__ahSFBs.Layout-module__sidebarOpen__vFWl9b{grid-template-columns:320px 1fr 1fr}@media (max-width: 1023px){.Layout-module__root__ahSFBs.Layout-module__sidebarOpen__vFWl9b{grid-template-columns:240px 1fr 1fr}}@media (max-width: 767px){.Layout-module__root__ahSFBs{grid-template-areas:"header" "map";grid-template-columns:1fr;grid-template-rows:auto 1fr}.Layout-module__root__ahSFBs.Layout-module__sidebarOpen__vFWl9b{grid-template-columns:1fr;grid-template-rows:auto 1fr}}.Overlay-module__root__y8tkGi{inset-block-start:0;inset-inline-start:0;width:100%;height:100%;z-index:var(--z-index-overlay);background-color:var(--owl-color-text-light);display:flex;justify-content:center;align-items:center;overflow:hidden}.MapGoogle-module__root__iB2RTt{width:100%;height:100%;border:1px solid var(--owl-color-border);border-radius:var(--owl-radius);position:relative;isolation:isolate}.MapGoogle-module__root__iB2RTt div[role=dialog]{padding:unset!important;padding:12px!important;padding-block-end:0!important;padding-inline-end:0!important}.MapGoogle-module__root__iB2RTt div[role=dialog]>button{opacity:1!important;top:unset!important;right:unset!important;inset-block-start:12px!important;inset-inline-end:12px!important;width:26px!important;height:26px!important}.MapGoogle-module__root__iB2RTt div[role=dialog]>button>span{margin:0!important;width:100%!important;height:100%!important;background-color:var(--owl-color-primary);transition:background-color .2s ease}.MapGoogle-module__root__iB2RTt div[role=dialog]>button>span:hover{background-color:var(--owl-color-primary-dark)}.MapGoogle-module__hideUI__zGYpjY>div>div>div:last-of-type{display:none}.MapGoogle-module__mapContainer__qTVsu4{position:relative;width:100%;height:100%}.MapGoogle-module__balloon__nNM3fV{max-width:400px}.MapGoogle-module__details__MuhoyT{--offset: 20px;z-index:20;inset-block-start:var(--offset);inset-inline-end:var(--offset);inset-block-end:var(--offset);width:calc(50% - var(--offset))}.MapGoogle-module__cluster__KIS2sn{fill:var(--owl-color-primary)}.MapGoogle-module__cluster__KIS2sn:has(img)>img{display:none}.MapGoogle-module__cluster__KIS2sn:has(img)>div{font-size:13px!important;font-weight:400!important;border:8px solid var(--owl-color-primary);border-radius:100vw;height:100%;display:flex;align-items:center;justify-content:center;background-color:var(--owl-color-text-light);box-shadow:0 0 0 2px var(--owl-color-text-light-transparent);pointer-events:none}.MapGoogle-module__overlay__z03Yoa{position:absolute;background-color:var(--owl-color-text-light-transparent);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}.MapGoogle-module__mapControl__Iu3xc4{background-color:var(--owl-color-primary);border-radius:8px;color:#fff;width:40px;height:40px;display:grid;place-content:center;font-size:24px;cursor:pointer;margin-right:16px;-webkit-user-select:none;user-select:none}.MapGoogle-module__mapControl__Iu3xc4+.MapGoogle-module__mapControl__Iu3xc4{margin-top:4px}.MapGoogle-module__mapControl__Iu3xc4.MapGoogle-module__geolocationControl__cwYVsw{margin-bottom:26px;color:var(--owl-color-primary)}.MapGoogle-module__mapControl__Iu3xc4:last-of-type{margin-bottom:16px}@media (max-width: 1023px){.MapGoogle-module__details__MuhoyT{inset-inline-start:var(--offset);width:calc(100% - var(--offset) * 2)}}@media (max-width: 767px){.MapGoogle-module__root__iB2RTt{border-radius:unset}.MapGoogle-module__bottomSheet__ql8eoC{padding-inline:20px;padding-block-end:20px}.MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__locationViewContent__LYJkkK,.MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__locationViewHeader__hzc7Ip,.MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__deliveryDetailsViewContent__1FevKl,.MapGoogle-module__bottomSheet__ql8eoC .MapGoogle-module__deliveryDetailsViewHeader__VRF5b3{padding-inline:0}.MapGoogle-module__sheetSubmit__pjGRS0{width:100%}}.CloseButton-module__root__233rOd{color:var(--owl-color-primary);background-color:var(--owl-color-text-light);cursor:pointer;width:24px;aspect-ratio:1;display:grid;place-items:center}@media (any-hover: hover){.CloseButton-module__root__233rOd:hover{color:var(--owl-color-primary-dark)}}.CloseButton-module__absolutePositionVariant__MMkQ0-{position:absolute;inset-block-start:16px;inset-inline-end:16px}.CloseButton-module__relativePositionVariant__fdYFY4{position:relative}.DeliveryBalloon-module__root__c9I8i1{display:flex;flex-direction:column;gap:16px}.DeliveryBalloon-module__root__c9I8i1 .DeliveryBalloon-module__details__ti2Tdy{width:100%;min-width:280px;display:flex;align-items:center;justify-content:center}.DeliveryBalloon-module__header__qKggbq{display:flex;align-items:center;gap:8px;padding-block-end:16px;border-bottom:1px solid var(--owl-color-border)}.DeliveryBalloon-module__title__fDmbsU{font-size:16px;line-height:22px;font-weight:600}.DeliveryBalloon-module__description__5-12RZ{font-size:14px;font-weight:400;line-height:20px}.DeliveryBalloon-module__actions__MWT995{display:flex;gap:16px;align-items:center}.DeliveryBalloon-module__errorVariant__meU-B7 .DeliveryBalloon-module__logo__YNN-Vi,.DeliveryBalloon-module__errorVariant__meU-B7 .DeliveryBalloon-module__title__fDmbsU{color:var(--owl-color-error)}.Chip-module__root__A1duWr{background-color:var(--owl-color-secondary);border-radius:100vw;padding:8px 16px;cursor:pointer;transition:background-color .2s ease,color .2s ease}@media (any-hover: hover){.Chip-module__root__A1duWr:hover{background-color:var(--owl-color-border)}}.Chip-module__root__A1duWr.Chip-module__active__PmXa7K{background-color:var(--owl-color-primary);color:var(--owl-color-text-light)}.TextArea-module__root__l-RDfr{outline:none;border-radius:var(--owl-radius);border:1px solid var(--owl-color-border);font-family:var(--owl-font);font-size:16px;padding:18px 20px}.DeliveryDetailsView-module__title__9op9De{display:flex;align-items:center;gap:12px;font-size:16px;font-weight:600;line-height:20px}.DeliveryDetailsView-module__title__9op9De .DeliveryDetailsView-module__logo__FHhzI0{width:50px;height:50px}.DeliveryDetailsView-module__header__zT3NCJ{outline:none;padding:24px 16px 16px;border-bottom:1px solid var(--owl-color-border)}.DeliveryDetailsView-module__content__BWg5hx{display:flex;flex-direction:column;gap:24px;padding:16px;font-size:14px;line-height:20px;overflow-y:auto}.DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar{width:4px;height:4px;cursor:pointer}.DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-track{box-shadow:none;background-color:var(--owl-color-text-light)}.DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb{border-radius:100vw;background-color:var(--owl-color-border);cursor:pointer}@media (any-hover: hover){.DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb:hover,.DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb:active{background-color:var(--owl-color-text-disabled)}}@media (any-hover: hover){.DeliveryDetailsView-module__content__BWg5hx::-webkit-scrollbar-thumb:hover{cursor:pointer}}.DeliveryDetailsView-module__section__XSwSmI{display:flex;flex-direction:column;gap:4px}.DeliveryDetailsView-module__section__XSwSmI label{font-weight:600}.DeliveryDetailsView-module__chips__9GPIxJ{display:flex;gap:8px}.DeliveryDetailsView-module__actions__xulMTc{padding:16px 16px 24px}.DeliveryDetailsView-module__actions__xulMTc .DeliveryDetailsView-module__submit__v9jVsD{width:100%}.DeliveryDetailsView-module__actions__xulMTc.DeliveryDetailsView-module__actionsHidden__yu2ivZ{display:none}.DeliveryDetailsView-module__commentSection__lnUmS0{flex:1}.DeliveryDetailsView-module__comment__ZwRY1z{height:100%}@media (max-width: 767px){.DeliveryDetailsView-module__header__zT3NCJ{padding-block-start:0}}.LocationView-module__title__QP69kD{display:flex;align-items:center;gap:12px;font-size:16px;font-weight:600;line-height:20px}.LocationView-module__title__QP69kD .LocationView-module__logo__nlPQaG{display:grid;place-content:center;width:50px;height:50px;flex-shrink:0;border-radius:100vw;border:1px solid var(--owl-color-graphite-20);background:var(--owl-color-text-light)}.LocationView-module__header__9DDuVU{outline:none;padding:24px 16px 16px;border-bottom:1px solid var(--owl-color-border)}.LocationView-module__content__Se2TSy{display:flex;flex-direction:column;gap:24px;padding:16px;font-size:14px;line-height:20px;overflow-y:auto}.LocationView-module__content__Se2TSy::-webkit-scrollbar{width:4px;height:4px;cursor:pointer}.LocationView-module__content__Se2TSy::-webkit-scrollbar-track{box-shadow:none;background-color:var(--owl-color-text-light)}.LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb{border-radius:100vw;background-color:var(--owl-color-border);cursor:pointer}@media (any-hover: hover){.LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb:hover,.LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb:active{background-color:var(--owl-color-text-disabled)}}@media (any-hover: hover){.LocationView-module__content__Se2TSy::-webkit-scrollbar-thumb:hover{cursor:pointer}}.LocationView-module__section__9m1x1v{display:flex;flex-direction:column;gap:4px}.LocationView-module__section__9m1x1v label{font-weight:600}.LocationView-module__chips__6j-ZAh{display:flex;gap:8px}.LocationView-module__services__rwbp2x{display:flex;flex-direction:column;gap:4px}.LocationView-module__images__zfnQMA{display:flex;gap:20px;max-width:100%;overflow-x:auto;scroll-snap-type:x mandatory;min-height:165px}.LocationView-module__images__zfnQMA::-webkit-scrollbar{width:4px;height:4px;cursor:pointer}.LocationView-module__images__zfnQMA::-webkit-scrollbar-track{box-shadow:none;background-color:var(--owl-color-text-light)}.LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb{border-radius:100vw;background-color:var(--owl-color-border);cursor:pointer}@media (any-hover: hover){.LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb:hover,.LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb:active{background-color:var(--owl-color-text-disabled)}}@media (any-hover: hover){.LocationView-module__images__zfnQMA::-webkit-scrollbar-thumb:hover{cursor:pointer}}.LocationView-module__image__JKvt9J{flex-shrink:0;width:220px;aspect-ratio:220/140;scroll-snap-align:start;border-radius:var(--owl-radius);object-fit:cover}.LocationView-module__actions__AGih3C{padding:16px 16px 24px}.LocationView-module__actions__AGih3C.LocationView-module__actionsHidden__DBV1vj{display:none}.LocationView-module__actions__AGih3C .LocationView-module__submit__6mD2w-{width:100%}.LocationView-module__scheduleItem__snTLMb{padding:0}@media (max-width: 767px){.LocationView-module__header__9DDuVU{padding-block-start:0}}.LocationBalloon-module__root__D5p9cL{display:flex;flex-direction:column;gap:16px}.LocationBalloon-module__root__D5p9cL .LocationBalloon-module__submit__Ri5JaR{min-width:unset;padding-inline:32px}.LocationBalloon-module__root__D5p9cL .LocationBalloon-module__details__6et6aX{display:flex;align-items:center;gap:4px}.LocationBalloon-module__icon__U-zpx7{display:grid;place-content:center;width:40px;height:40px;flex-shrink:0;border-radius:100vw;border:1px solid var(--owl-color-graphite-20);background:var(--owl-color-text-light)}.LocationBalloon-module__header__LCvDj0{display:flex;align-items:center;gap:8px;padding-block-end:16px;border-bottom:1px solid var(--owl-color-border)}.LocationBalloon-module__title__octhrc{font-size:16px;line-height:22px;font-weight:600;padding-inline-end:16px}.LocationBalloon-module__description__r7vFbw{font-size:14px;font-weight:400;line-height:20px}.LocationBalloon-module__actions__-jdejn{display:flex;gap:16px;align-items:center}.MapYandex-module__root__r3kDJ8{width:100%;height:100%;overflow:hidden;border:1px solid var(--owl-color-border);border-radius:var(--owl-radius);position:relative;isolation:isolate}.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close{width:26px;height:26px;position:absolute;inset-block-start:12px;inset-inline-end:12px}.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close>.ymaps-2-1-79-balloon__close-button{width:100%;height:100%;background-image:none;background-color:var(--owl-color-primary);opacity:1;-webkit-mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3C/svg%3E);mask-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M19%206.41L17.59%205%2012%2010.59%206.41%205%205%206.41%2010.59%2012%205%2017.59%206.41%2019%2012%2013.41%2017.59%2019%2019%2017.59%2013.41%2012z%22/%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20fill%3D%22none%22/%3E%3C/svg%3E);transition:background-color .2s ease}@media (any-hover: hover){.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close>.ymaps-2-1-79-balloon__close-button:hover{background-color:var(--owl-color-primary-dark)}}.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__layout{border-radius:var(--owl-radius)}.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content{margin:unset;margin-inline-end:0;padding:16px;border-radius:var(--owl-radius)}.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-balloon{box-shadow:0 4px 16px 0 var(--owl-color-text-disabled-transparent);border-radius:var(--owl-radius)}.MapYandex-module__root__r3kDJ8 .ymaps-2-1-79-copyrights-pane{display:none}.MapYandex-module__overlay__f7UGYS{position:absolute;background-color:var(--owl-color-text-light-transparent);-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}.MapYandex-module__details__E3bDvL{--offset: 20px;z-index:20;inset-block-start:var(--offset);inset-inline-end:var(--offset);inset-block-end:var(--offset);width:calc(50% - var(--offset))}@media (max-width: 1023px){.MapYandex-module__details__E3bDvL{inset-inline-start:var(--offset);width:calc(100% - var(--offset) * 2)}}@media (max-width: 767px){.MapYandex-module__root__r3kDJ8{border-radius:unset}}.Separator-module__root__buxoVg{margin-block:24px;border:none;height:1px;background-color:var(--owl-color-secondary);border-radius:1px}@media (max-width: 767px){.Separator-module__root__buxoVg{margin-block:12px}}.Sidebar-module__root__hxXudu{overflow:hidden;transition:opacity .2s ease;opacity:0;min-width:320px}.Sidebar-module__root__hxXudu .Sidebar-module__closeButton__8k-Ph3{position:relative;inset-block-start:0;inset-inline-end:0}.Sidebar-module__root__hxXudu.Sidebar-module__open__qMGUBV{opacity:1}.Sidebar-module__header__Eu-wRc{position:relative;height:32px;display:grid;place-content:start end;margin-inline-end:12px}.Sidebar-module__typeFilter__-lxVdY{margin-block-end:44px}.Sidebar-module__separator__XDb6rs{margin-block-start:48px}.Sidebar-module__withRightPadding__knvmuY{padding-inline-end:40px}.Sidebar-module__sheetContent__4iWeTf{padding-inline:20px}@media (max-width: 1023px){.Sidebar-module__root__hxXudu{min-width:240px}}@media (max-width: 767px){.Sidebar-module__header__Eu-wRc{margin-inline-end:0}.Sidebar-module__withRightPadding__knvmuY{padding-inline-end:0}.Sidebar-module__typeFilter__-lxVdY{margin-block-end:0}.Sidebar-module__separator__XDb6rs{margin-block-start:24px}.Sidebar-module__doneButton__chvXVP{font-size:14px;font-weight:700;color:var(--owl-color-primary);padding:4px 8px}}.TypeFilter-module__root__FEaBBU{display:flex;flex-direction:column;gap:10px}@media (max-width: 767px){.TypeFilter-module__root__FEaBBU{flex-direction:row}.TypeFilter-module__root__FEaBBU .TypeFilter-module__button__RYOzBQ{flex-grow:1}}.Radio-module__root__FMbfCi{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--owl-color-text-light);border-radius:100vw;margin:0}.Radio-module__root__FMbfCi:before{content:"";display:inline-block;width:16px;height:16px;border-radius:50%;border:1px solid var(--owl-color-border);background-color:var(--owl-color-secondary);vertical-align:middle;transition:background-color .2s ease,border-color .2s ease}.Radio-module__root__FMbfCi:checked:before{background-color:var(--owl-color-primary);border-color:var(--owl-color-primary-dark)}.Radio-module__root__FMbfCi:disabled{border-color:var(--owl-color-text-disabled);background-color:var(--owl-color-text-disabled)}.Radio-module__root__FMbfCi:not(:disabled){cursor:pointer}.Radio-module__label__-LLJSR{display:flex;align-items:center;gap:8px;padding-block:8px;transition:color .2s ease;font-size:14px;font-weight:600;line-height:16px}.Radio-module__label__-LLJSR:has(.Radio-module__root__FMbfCi:checked){color:var(--owl-color-primary)}.Radio-module__label__-LLJSR:has(.Radio-module__root__FMbfCi:not(:disabled)){cursor:pointer}.RadioGroup-module__root__wNjmrq{display:flex;flex-direction:column;gap:8px}.RadioGroup-module__body__n4Ho0-{display:flex;flex-direction:column}.RadioGroup-module__legend__ECksBN{font-size:16px;font-weight:600;line-height:22px}[data-rsbs-overlay]{border-top-left-radius:16px;border-top-left-radius:var(--rsbs-overlay-rounded,16px);border-top-right-radius:16px;border-top-right-radius:var(--rsbs-overlay-rounded,16px);display:flex;background:#fff;background:var(--rsbs-bg,#fff);flex-direction:column;height:0px;height:var(--rsbs-overlay-h,0px);transform:translateZ(0);transform:translate3d(0,var(--rsbs-overlay-translate-y,0px),0);will-change:height}[data-rsbs-overlay]:focus{outline:none}[data-rsbs-is-blocking=false] [data-rsbs-overlay]{box-shadow:0 -5px 60px #2659731c,0 -1px #2659730d}[data-rsbs-overlay],[data-rsbs-root]:after{max-width:auto;max-width:var(--rsbs-max-w,auto);margin-left:env(safe-area-inset-left);margin-left:var(--rsbs-ml,env(safe-area-inset-left));margin-right:env(safe-area-inset-right);margin-right:var(--rsbs-mr,env(safe-area-inset-right))}[data-rsbs-overlay],[data-rsbs-backdrop],[data-rsbs-root]:after{z-index:3;-ms-scroll-chaining:none;overscroll-behavior:none;touch-action:none;position:fixed;right:0;bottom:0;left:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}[data-rsbs-backdrop]{top:-60px;bottom:-60px;background-color:#0009;background-color:var(--rsbs-backdrop-bg,rgba(0, 0, 0, .6));will-change:opacity;cursor:pointer;opacity:1}[data-rsbs-is-dismissable=false] [data-rsbs-backdrop]{cursor:ns-resize}[data-rsbs-root]:after{content:"";pointer-events:none;background:#fff;background:var(--rsbs-bg,#fff);height:1px;transform-origin:bottom;transform:scale3d(1,0,1);transform:scale3d(1,var(--rsbs-antigap-scale-y,0),1);will-change:transform}[data-rsbs-footer],[data-rsbs-header]{flex-shrink:0;cursor:ns-resize;padding:16px}[data-rsbs-header]{text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:0 1px #2e3b4220;box-shadow:0 1px 0 rgba(46,59,66,calc(var(--rsbs-content-opacity,1) * .125));z-index:1;padding-top:calc(20px + env(safe-area-inset-top));padding-bottom:8px}[data-rsbs-header]:before{position:absolute;content:"";display:block;width:36px;height:4px;top:calc(8px + env(safe-area-inset-top));left:50%;transform:translate(-50%);border-radius:2px;background-color:#00000024;background-color:var(--rsbs-handle-bg,hsla(0, 0%, 0%, .14))}@media (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx){[data-rsbs-header]:before{transform:translate(-50%) scaleY(.75)}}[data-rsbs-has-header=false] [data-rsbs-header]{box-shadow:none;padding-top:calc(12px + env(safe-area-inset-top))}[data-rsbs-scroll]{flex-shrink:1;flex-grow:1;-webkit-tap-highlight-color:revert;-webkit-touch-callout:revert;-webkit-user-select:auto;-ms-user-select:auto;-moz-user-select:auto;user-select:auto;overflow:auto;-ms-scroll-chaining:none;overscroll-behavior:contain;-webkit-overflow-scrolling:touch}[data-rsbs-scroll]:focus{outline:none}[data-rsbs-has-footer=false] [data-rsbs-content]{padding-bottom:env(safe-area-inset-bottom)}[data-rsbs-content]{overflow:hidden}[data-rsbs-footer]{box-shadow:0 -1px #2e3b4220,0 2px #fff;box-shadow:0 -1px 0 rgba(46,59,66,calc(var(--rsbs-content-opacity,1) * .125)),0 2px 0 var(--rsbs-bg,#fff);overflow:hidden;z-index:1;padding-bottom:calc(16px + env(safe-area-inset-bottom))}[data-rsbs-is-dismissable=true] [data-rsbs-header]>*,[data-rsbs-is-dismissable=true] [data-rsbs-scroll]>*,[data-rsbs-is-dismissable=true] [data-rsbs-footer]>*,[data-rsbs-is-dismissable=false][data-rsbs-state=opening] [data-rsbs-header]>*,[data-rsbs-is-dismissable=false][data-rsbs-state=closing] [data-rsbs-header]>*,[data-rsbs-is-dismissable=false][data-rsbs-state=opening] [data-rsbs-scroll]>*,[data-rsbs-is-dismissable=false][data-rsbs-state=closing] [data-rsbs-scroll]>*,[data-rsbs-is-dismissable=false][data-rsbs-state=opening] [data-rsbs-footer]>*,[data-rsbs-is-dismissable=false][data-rsbs-state=closing] [data-rsbs-footer]>*{opacity:1;opacity:var(--rsbs-content-opacity,1)}[data-rsbs-is-dismissable=true] [data-rsbs-backdrop],[data-rsbs-is-dismissable=false][data-rsbs-state=opening] [data-rsbs-backdrop],[data-rsbs-is-dismissable=false][data-rsbs-state=closing] [data-rsbs-backdrop]{opacity:1;opacity:var(--rsbs-backdrop-opacity,1)}[data-rsbs-state=closed],[data-rsbs-state=closing]{pointer-events:none}.MapContainer-module__root__nze9pB{--filter-color: #323232;position:relative;isolation:isolate;display:grid}.MapContainer-module__mapWrapper__twRo4C{width:100%;height:100%;position:relative}.MapContainer-module__mapWrapper__twRo4C:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;background-color:var(--owl-color-text-light);opacity:0;transition:opacity .2s ease;pointer-events:none}.MapContainer-module__mapWrapper__twRo4C.MapContainer-module__wrapperBlurred__U-Ohae:after{opacity:.8}.MapContainer-module__locationSelector__lEiSKq{position:absolute;inset-block-start:20px;inset-inline-end:20px;z-index:1;width:clamp(320px,50%,520px)}.MapContainer-module__filterButton__jIRGu9{position:absolute;cursor:pointer;z-index:1;inset-block-start:40px;inset-inline-start:0;transition:opacity .2s ease;opacity:1;background:var(--filter-color);border-start-end-radius:var(--owl-radius);border-end-end-radius:var(--owl-radius)}.MapContainer-module__filterButton__jIRGu9.MapContainer-module__sidebarOpen__sUhaH-{opacity:0}.MapContainer-module__filterIcon__-2Qd2d{width:100%;height:100%}.MapContainer-module__details__sAP6T2{--offset: 20px;z-index:2;inset-block-start:var(--offset);inset-inline-end:var(--offset);width:520px;max-height:calc(100% - var(--offset) * 2)}@media (max-width: 1023px){.MapContainer-module__details__sAP6T2{inset-inline-start:var(--offset);width:calc(100% - var(--offset) * 2)}}@media (max-width: 767px){.MapContainer-module__root__nze9pB{display:flex;flex-direction:column;gap:12px}.MapContainer-module__filterButton__jIRGu9{all:unset;display:flex;align-items:center;justify-content:space-between;position:relative;border-radius:var(--owl-radius);padding-inline:20px}.MapContainer-module__filterButton__jIRGu9.MapContainer-module__sidebarOpen__sUhaH-{opacity:1}.MapContainer-module__filterIcon__-2Qd2d{width:28px;height:28px}.MapContainer-module__locationSelector__lEiSKq{width:100%;position:relative;inset-block-start:unset;inset-inline-end:unset;padding-inline:20px}}.Input-module__root__4cwtKq{display:flex;flex-direction:column;gap:8px}.Input-module__root__4cwtKq:has(.Input-module__endAdornment__Tv4vyT) .Input-module__input__qeMAQB{padding-inline-end:60px}.Input-module__root__4cwtKq:has(.Input-module__startAdornment__4bXzn1) .Input-module__input__qeMAQB{padding-inline-start:60px}.Input-module__input__qeMAQB{width:-webkit-fill-available;padding:17px 22px;border-radius:var(--owl-radius);border:1px solid var(--owl-color-border);background:var(--owl-color-text-light);font-size:16px;line-height:20px;outline:var(--owl-color-primary);font-family:var(--owl-font)}.Input-module__input__qeMAQB::placeholder{font-weight:500;color:var(--owl-color-text-disabled)}.Input-module__label__N2eUZ2{font-size:16px;font-weight:600;line-height:22px}.Input-module__inputContainer__Ticemx{position:relative;display:flex;flex-direction:column;gap:8px}.Input-module__endAdornment__Tv4vyT{position:absolute;inset-inline-end:1px;inset-block-start:0px;inset-block-end:2px;display:flex;align-items:center;padding:0 20px;color:var(--owl-color-text-disabled);font-size:16px;line-height:20px;font-weight:500}.Input-module__startAdornment__4bXzn1{position:absolute;inset-inline-start:1px;inset-block-start:0;inset-block-end:2px;display:flex;align-items:center;padding:0 20px;color:var(--owl-color-text-disabled);font-size:16px;line-height:20px;font-weight:500}.DeliveryDetailsModal-module__root__lnsoXP,.LocationDetailsModal-module__root__AzUydF{position:absolute;background-color:var(--owl-color-text-light);box-shadow:0 4px 16px 0 var(--owl-color-text-disabled-transparent);border:1px solid var(--owl-color-border);border-radius:calc(var(--owl-radius) * 2);overflow:hidden;display:grid;grid-template-columns:1fr;grid-template-rows:auto 1fr auto}.Aside-module__root__JSqCyF{position:absolute;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .2s ease;isolation:isolate;pointer-events:none;-webkit-backdrop-filter:blur(5px);backdrop-filter:blur(5px)}.Aside-module__root__JSqCyF.Aside-module__open__t8OMLZ{opacity:1;pointer-events:all}.Aside-module__overlay__0UAvMb{position:absolute;top:0;right:0;bottom:0;left:0;width:200%;background-color:#1d366566;z-index:0}.Aside-module__container__KJNP0t{position:absolute;inset-block-start:0;inset-inline-end:0;inset-block-end:0;z-index:1;width:100%;background-color:var(--owl-color-text-light);transition:transform .2s ease;transform:translate(100%)}.Aside-module__open__t8OMLZ .Aside-module__container__KJNP0t{transform:translate(0)}.LocationAside-module__submit__hx8LTK{margin-block-start:20px;width:100%}.LocationAside-module__container__KEGf9s{display:grid;height:100%;place-items:start center;padding-block-start:80px}.LocationAside-module__selector__ogsvtz{display:flex;flex-direction:column;gap:16px;width:clamp(320px,50%,520px)}.LocationAside-module__label__-FWqoq{font-size:24px;font-weight:600;line-height:140%}.LocationAside-module__header__qmaQaV{display:flex;align-items:center;justify-content:space-between}.LocationAside-module__close__bklFI7{cursor:pointer;color:var(--owl-color-primary)}@media (max-width: 767px){.LocationAside-module__label__-FWqoq{display:none}.LocationAside-module__container__KEGf9s{padding-inline:20px;padding-block-start:8px}.LocationAside-module__selector__ogsvtz{width:100%}.LocationAside-module__header__qmaQaV{justify-content:flex-end}.LocationAside-module__close__bklFI7{flex:1}}.App-module__map__rW7rX2{grid-area:map}.App-module__sidebar__qEl7HV{grid-area:sidebar}.App-module__header__gAG5Pr{grid-area:header}@media (max-width: 767px){.App-module__sidebar__qEl7HV{margin-block-start:0}.App-module__header__gAG5Pr{margin-block:8px}}