@davi-ai/retorik-map 3.0.2 → 4.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1160 +0,0 @@
1
- #retorik-shadow #POIButtonContainer {
2
- z-index: 999;
3
- justify-content: center;
4
- align-items: end;
5
- width: 100%;
6
- height: 100%;
7
- display: flex;
8
- }
9
-
10
- #retorik-shadow .buttonPOI {
11
- z-index: 99;
12
- color: #000;
13
- cursor: pointer;
14
- background: #fff;
15
- border: 1px solid #000;
16
- border-radius: 5px;
17
- margin-bottom: 30px;
18
- padding: 5px 20px;
19
- font-size: 1.25em;
20
- font-weight: bold;
21
- transition: all .5s;
22
- }
23
-
24
- #retorik-shadow .buttonPOI:hover {
25
- color: #fff;
26
- background: #000000bd;
27
- }
28
-
29
- #retorik-shadow textarea {
30
- background: none;
31
- }
32
-
33
- #retorik-shadow .mapContainer, #retorik-shadow .leaflet-container {
34
- z-index: 0;
35
- width: 100%;
36
- height: 100%;
37
- margin: auto;
38
- }
39
-
40
- #retorik-shadow .leaflet-container .leaflet-pane {
41
- z-index: 0;
42
- }
43
-
44
- #retorik-shadow .custom-marker-cluster {
45
- color: #000;
46
- text-align: center;
47
- background: #00beff80;
48
- border-radius: 50%;
49
- justify-content: center;
50
- align-items: center;
51
- width: 33px;
52
- height: 33px;
53
- line-height: 37px;
54
- display: flex;
55
- }
56
-
57
- #retorik-shadow .leaflet-marker-icon {
58
- transition: all .2s ease-in-out;
59
- }
60
-
61
- #retorik-shadow .leaflet-popup {
62
- bottom: 20px !important;
63
- }
64
-
65
- #retorik-shadow .infoPOIPane, #retorik-shadow .infoPOIPaneWidget {
66
- z-index: 99;
67
- background: #fff;
68
- border-radius: 5px;
69
- flex-direction: column;
70
- padding: 1rem;
71
- display: flex;
72
- position: absolute;
73
- box-shadow: 0 3px 6px #00000029;
74
- }
75
-
76
- #retorik-shadow .infoPOIPane .poiTitle, #retorik-shadow .infoPOIPaneWidget .poiTitle {
77
- font-size: 1.25rem;
78
- font-weight: bold;
79
- line-height: 1.6rem;
80
- }
81
-
82
- #retorik-shadow .infoPOIPane .poiClose, #retorik-shadow .infoPOIPaneWidget .poiClose {
83
- cursor: pointer;
84
- width: 40px;
85
- height: 40px;
86
- font-size: 0;
87
- display: block;
88
- position: absolute;
89
- top: 0;
90
- right: 0;
91
- }
92
-
93
- #retorik-shadow .infoPOIPane .poiClose:before, #retorik-shadow .infoPOIPane .poiClose:after, #retorik-shadow .infoPOIPaneWidget .poiClose:before, #retorik-shadow .infoPOIPaneWidget .poiClose:after {
94
- transform-origin: 0 0;
95
- content: "";
96
- background-color: #000;
97
- width: 2px;
98
- height: 17px;
99
- transition: all .42s;
100
- position: absolute;
101
- top: 50%;
102
- left: 50%;
103
- transform: rotate(45deg)translate(-50%, -50%);
104
- }
105
-
106
- #retorik-shadow .infoPOIPane .poiClose:after, #retorik-shadow .infoPOIPaneWidget .poiClose:after {
107
- transform: rotate(-45deg)translate(-50%, -50%);
108
- }
109
-
110
- #retorik-shadow .infoPOIPane .poiClose:hover:before, #retorik-shadow .infoPOIPane .poiClose:hover:after, #retorik-shadow .infoPOIPaneWidget .poiClose:hover:before, #retorik-shadow .infoPOIPaneWidget .poiClose:hover:after {
111
- background-color: #000;
112
- }
113
-
114
- #retorik-shadow .infoPOIPane .white, #retorik-shadow .infoPOIPaneWidget .white {
115
- color: #fff;
116
- }
117
-
118
- #retorik-shadow .infoPOIPane .white:before, #retorik-shadow .infoPOIPane .white:after, #retorik-shadow .infoPOIPaneWidget .white:before, #retorik-shadow .infoPOIPaneWidget .white:after {
119
- background-color: #fff;
120
- }
121
-
122
- #retorik-shadow .infoPOIPane .poiAddress, #retorik-shadow .infoPOIPaneWidget .poiAddress {
123
- padding-top: 1rem;
124
- font-size: .8rem;
125
- line-height: .7rem;
126
- }
127
-
128
- #retorik-shadow .infoPOIPane .poiPhone, #retorik-shadow .infoPOIPaneWidget .poiPhone {
129
- padding-top: .5rem;
130
- font-size: .8rem;
131
- line-height: .7rem;
132
- }
133
-
134
- #retorik-shadow .infoPOIPane .poiPhotoAndDescription, #retorik-shadow .infoPOIPaneWidget .poiPhotoAndDescription {
135
- flex-direction: row;
136
- gap: 1rem;
137
- padding-top: 1rem;
138
- padding-bottom: 1rem;
139
- display: flex;
140
- }
141
-
142
- #retorik-shadow .infoPOIPane .poiPhotoAndDescription .poiPhoto, #retorik-shadow .infoPOIPaneWidget .poiPhotoAndDescription .poiPhoto {
143
- flex: 0 0 9rem;
144
- justify-content: center;
145
- align-items: center;
146
- display: flex;
147
- }
148
-
149
- #retorik-shadow .infoPOIPane .poiPhotoAndDescription .poiPhoto img, #retorik-shadow .infoPOIPaneWidget .poiPhotoAndDescription .poiPhoto img {
150
- object-fit: cover;
151
- border-radius: 50%;
152
- width: 9rem;
153
- height: 9rem;
154
- }
155
-
156
- #retorik-shadow .infoPOIPane .poiPhotoAndDescription .poiDescriptionAndButton, #retorik-shadow .infoPOIPaneWidget .poiPhotoAndDescription .poiDescriptionAndButton {
157
- flex-direction: column;
158
- gap: 1rem;
159
- display: flex;
160
- overflow: hidden;
161
- }
162
-
163
- #retorik-shadow .infoPOIPane .poiPhotoAndDescription .poiDescriptionAndButton .poiDesc, #retorik-shadow .infoPOIPaneWidget .poiPhotoAndDescription .poiDescriptionAndButton .poiDesc {
164
- text-overflow: ellipsis;
165
- line-clamp: 4;
166
- -webkit-line-clamp: 4;
167
- white-space: pre-wrap;
168
- -webkit-box-orient: vertical;
169
- display: -webkit-box;
170
- overflow: hidden;
171
- }
172
-
173
- #retorik-shadow .infoPOIPane .poiPhotoAndDescription .poiDescriptionAndButton .poiButton, #retorik-shadow .infoPOIPaneWidget .poiPhotoAndDescription .poiDescriptionAndButton .poiButton {
174
- border-style: solid;
175
- border-width: 2px;
176
- border-radius: 10px;
177
- width: fit-content;
178
- padding: .5rem;
179
- font-weight: bold;
180
- }
181
-
182
- #retorik-shadow .infoPOIPane .routes-container, #retorik-shadow .infoPOIPaneWidget .routes-container {
183
- flex-direction: row;
184
- justify-content: center;
185
- gap: 1rem;
186
- width: 100%;
187
- height: 4rem;
188
- display: flex;
189
- }
190
-
191
- #retorik-shadow .infoPOIPane .routes-container .route-index, #retorik-shadow .infoPOIPaneWidget .routes-container .route-index {
192
- z-index: 1;
193
- }
194
-
195
- #retorik-shadow .infoPOIPane .routes-container .route-icon, #retorik-shadow .infoPOIPaneWidget .routes-container .route-icon {
196
- width: 2rem;
197
- height: 2rem;
198
- }
199
-
200
- #retorik-shadow .infoPOIPane .routes-container .route-icon-medium, #retorik-shadow .infoPOIPaneWidget .routes-container .route-icon-medium {
201
- width: 1.25rem;
202
- height: 1.25rem;
203
- }
204
-
205
- #retorik-shadow .infoPOIPane .routes-container .route-icon-small, #retorik-shadow .infoPOIPaneWidget .routes-container .route-icon-small {
206
- width: 1.5rem;
207
- height: 1.5rem;
208
- }
209
-
210
- #retorik-shadow .infoPOIPane .routes-container .route-icon-verysmall, #retorik-shadow .infoPOIPaneWidget .routes-container .route-icon-verysmall {
211
- width: .75rem;
212
- height: .75rem;
213
- }
214
-
215
- #retorik-shadow .infoPOIPane .routes-container .route-icon-smallest, #retorik-shadow .infoPOIPaneWidget .routes-container .route-icon-smallest {
216
- width: .5rem;
217
- height: .5rem;
218
- }
219
-
220
- #retorik-shadow .infoPOIPane .routes-container .routes-data, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data {
221
- border-radius: .5rem;
222
- grid-template-columns: repeat(3, max-content);
223
- gap: 1rem;
224
- padding: .5rem 1rem .5rem 1.5rem;
225
- font-size: .75rem;
226
- line-height: 1rem;
227
- display: grid;
228
- }
229
-
230
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container {
231
- flex-direction: column;
232
- justify-content: flex-end;
233
- display: flex;
234
- }
235
-
236
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item {
237
- flex-direction: row;
238
- align-items: center;
239
- gap: .75rem;
240
- height: 100%;
241
- display: flex;
242
- }
243
-
244
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-icon, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-icon {
245
- justify-content: center;
246
- align-items: center;
247
- display: flex;
248
- position: relative;
249
- }
250
-
251
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-circle, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-circle {
252
- border-radius: 100%;
253
- width: 2.25rem;
254
- height: 2.25rem;
255
- position: absolute;
256
- }
257
-
258
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-triangle, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-triangle {
259
- justify-content: center;
260
- width: 100%;
261
- display: flex;
262
- position: absolute;
263
- }
264
-
265
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-triangle-car, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-triangle-car {
266
- top: -1.15rem;
267
- }
268
-
269
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-triangle-other, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-icon .route-item-icon-triangle-other {
270
- top: -.75rem;
271
- }
272
-
273
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-text, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-text {
274
- flex-direction: column;
275
- justify-content: center;
276
- align-items: flex-start;
277
- display: flex;
278
- }
279
-
280
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-text .route-item-duration, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-text .route-item-duration {
281
- white-space: nowrap;
282
- font-weight: bold;
283
- }
284
-
285
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container .route-item .route-item-text .route-item-distance, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container .route-item .route-item-text .route-item-distance {
286
- white-space: nowrap;
287
- }
288
-
289
- #retorik-shadow .infoPOIPane .routes-container .routes-data .route-item-container:hover, #retorik-shadow .infoPOIPaneWidget .routes-container .routes-data .route-item-container:hover {
290
- cursor: pointer;
291
- }
292
-
293
- #retorik-shadow .infoPOIPane .routes-container .route-button, #retorik-shadow .infoPOIPaneWidget .routes-container .route-button {
294
- aspect-ratio: 1;
295
- border: 2px solid #000;
296
- border-radius: .5rem;
297
- flex-direction: column;
298
- justify-content: space-evenly;
299
- align-items: center;
300
- width: 15%;
301
- min-width: 15%;
302
- max-width: 15%;
303
- padding: .25rem;
304
- font-size: .75rem;
305
- font-weight: bold;
306
- line-height: 1rem;
307
- display: flex;
308
- overflow-y: hidden;
309
- }
310
-
311
- #retorik-shadow .infoPOIPane .qrcode-container, #retorik-shadow .infoPOIPaneWidget .qrcode-container {
312
- z-index: 40;
313
- color: #fff;
314
- background-color: #121212b3;
315
- flex-direction: column;
316
- justify-content: center;
317
- align-items: center;
318
- gap: 1rem;
319
- width: 100%;
320
- height: 100%;
321
- display: flex;
322
- position: absolute;
323
- top: 0;
324
- left: 0;
325
- }
326
-
327
- #retorik-shadow .infoPOIPane .qrcode-container .qrcode-text-and-icon, #retorik-shadow .infoPOIPaneWidget .qrcode-container .qrcode-text-and-icon {
328
- flex-direction: row;
329
- align-items: flex-start;
330
- gap: .25rem;
331
- font-style: italic;
332
- display: flex;
333
- }
334
-
335
- #retorik-shadow .infoPOIPane .qrcode-container .qrcode-text-and-icon .qrcode-text, #retorik-shadow .infoPOIPaneWidget .qrcode-container .qrcode-text-and-icon .qrcode-text {
336
- flex-direction: column;
337
- align-items: center;
338
- width: fit-content;
339
- display: flex;
340
- }
341
-
342
- #retorik-shadow .infoPOIPaneWidget {
343
- width: 100%;
344
- max-width: 27rem;
345
- bottom: 135px;
346
- }
347
-
348
- #retorik-shadow .leaflet-control-zoom {
349
- border: 0;
350
- flex-direction: column;
351
- gap: 10px;
352
- display: flex;
353
- right: 1rem;
354
- }
355
-
356
- #retorik-shadow .leaflet-control-zoom .leaflet-control-zoom-in, #retorik-shadow .leaflet-control-zoom .leaflet-control-zoom-out {
357
- justify-content: center;
358
- align-items: center;
359
- width: 50px;
360
- height: 50px;
361
- display: flex;
362
- border-radius: 50% !important;
363
- }
364
-
365
- #retorik-shadow #around-me {
366
- opacity: 1;
367
- background: #fff no-repeat padding-box padding-box;
368
- border-radius: 70px;
369
- justify-content: center;
370
- align-items: center;
371
- width: 50px;
372
- height: 50px;
373
- margin-right: 10px;
374
- display: flex;
375
- position: absolute;
376
- right: 1rem;
377
- }
378
-
379
- #retorik-shadow .leaflet-div-icon {
380
- background-color: #0000;
381
- border-style: none;
382
- animation: .5s ease-in-out fadeIn;
383
- width: 36px !important;
384
- height: 50px !important;
385
- }
386
-
387
- #retorik-shadow .markerSelected {
388
- filter: drop-shadow(var(--pointerColorHightlight, white) 0px 0px 10px);
389
- transition: all .2s ease-in-out;
390
- width: 57px !important;
391
- height: 80px !important;
392
- margin-top: -65px !important;
393
- margin-left: -37.5px !important;
394
- }
395
-
396
- #retorik-shadow .loader-container {
397
- justify-content: center;
398
- align-items: center;
399
- width: 100%;
400
- height: 100%;
401
- display: flex;
402
- }
403
-
404
- #retorik-shadow .loader-container .loader {
405
- border: 3px solid #ffffff4d;
406
- border-top-color: #fff;
407
- border-radius: 50%;
408
- width: 50px;
409
- height: 50px;
410
- animation: 1s ease-in-out infinite spin;
411
- display: inline-block;
412
- position: absolute;
413
- top: 50%;
414
- left: 50%;
415
- }
416
-
417
- @keyframes spin {
418
- to {
419
- -webkit-transform: rotate(360deg);
420
- }
421
- }
422
-
423
- #retorik-shadow .loader-container .exit-loader {
424
- cursor: pointer;
425
- color: #000;
426
- z-index: 1;
427
- background-color: #ffffff4d;
428
- border-radius: 50%;
429
- justify-content: center;
430
- align-items: center;
431
- width: 40px;
432
- height: 40px;
433
- font-size: 30px;
434
- line-height: 30px;
435
- display: flex;
436
- position: absolute;
437
- top: calc(50% + 5px);
438
- left: calc(50% + 5px);
439
- }
440
-
441
- @media only screen and (width <= 600px) {
442
- #retorik-shadow #around-me {
443
- bottom: 25em;
444
- }
445
-
446
- #retorik-shadow .leaflet-control-zoom {
447
- bottom: 19em;
448
- }
449
-
450
- #retorik-shadow .infoPOIPane {
451
- width: 100%;
452
- bottom: 135px;
453
- }
454
-
455
- #retorik-shadow .leaflet-div-icon {
456
- background-color: #0000;
457
- border-style: none;
458
- width: 28px !important;
459
- height: 40px !important;
460
- }
461
-
462
- #retorik-shadow .markerSelected {
463
- filter: drop-shadow(var(--pointerColorHightlight, white) 0px 0px 10px);
464
- transition: all .2s ease-in-out;
465
- width: 38px !important;
466
- height: 54px !important;
467
- margin-top: -65px !important;
468
- margin-left: -37.5px !important;
469
- }
470
- }
471
-
472
- @media only screen and (width >= 601px) and (width <= 999px) {
473
- #retorik-shadow #around-me {
474
- bottom: 25em;
475
- }
476
-
477
- #retorik-shadow .leaflet-control-zoom {
478
- bottom: 19em;
479
- }
480
-
481
- #retorik-shadow .infoPOIPane {
482
- width: 40rem;
483
- bottom: 16rem;
484
- left: 50%;
485
- right: 50%;
486
- transform: translate(-50%);
487
- }
488
- }
489
-
490
- @media only screen and (width >= 1000px) and (orientation: landscape) {
491
- #retorik-shadow #around-me {
492
- bottom: 25em;
493
- }
494
-
495
- #retorik-shadow .leaflet-control-zoom {
496
- bottom: 19em;
497
- }
498
-
499
- #retorik-shadow .infoPOIPane {
500
- width: 27rem;
501
- bottom: 16rem;
502
- right: 7rem;
503
- }
504
- }
505
-
506
- @media only screen and (width >= 1921px) and (orientation: landscape) {
507
- #retorik-shadow #around-me {
508
- bottom: 29em;
509
- }
510
-
511
- #retorik-shadow .leaflet-control-zoom {
512
- bottom: 25em;
513
- }
514
-
515
- #retorik-shadow .leaflet-div-icon {
516
- background-color: #0000;
517
- border-style: none;
518
- }
519
-
520
- #retorik-shadow .markerSelected {
521
- filter: drop-shadow(var(--pointerColorHightlight, white) 0px 0px 10px);
522
- transition: all .2s ease-in-out;
523
- }
524
-
525
- #retorik-shadow .infoPOIPane {
526
- bottom: 21rem;
527
- }
528
- }
529
-
530
- @media only screen and (width >= 1000px) and (orientation: portrait) {
531
- #retorik-shadow #around-me {
532
- bottom: 25em;
533
- }
534
-
535
- #retorik-shadow .leaflet-control-zoom {
536
- bottom: 19em;
537
- }
538
-
539
- #retorik-shadow .infoPOIPane {
540
- width: 30rem;
541
- bottom: 30%;
542
- right: 7rem;
543
- }
544
- }
545
-
546
- #retorik-shadow #map-target {
547
- margin: 10px;
548
- }
549
-
550
- #retorik-shadow .fadeIn {
551
- animation: .5s ease-in-out fadeIn;
552
- }
553
-
554
- @keyframes fadeIn {
555
- from {
556
- opacity: 0;
557
- }
558
-
559
- to {
560
- opacity: 1;
561
- }
562
- }
563
-
564
- #retorik-shadow .fadeOut {
565
- animation: .5s ease-in-out fadeOut;
566
- }
567
-
568
- @keyframes fadeOut {
569
- from {
570
- opacity: 1;
571
- }
572
-
573
- to {
574
- opacity: 0;
575
- }
576
- }
577
-
578
- #weathermap {
579
- height: 100%;
580
- }
581
-
582
- #retorik-shadow .filterContainer, #retorik-shadow .filterContainerWidget {
583
- z-index: 51;
584
- flex-direction: column;
585
- width: 100%;
586
- display: flex;
587
- position: absolute;
588
- bottom: 0;
589
- }
590
-
591
- #retorik-shadow .filterContainer.show, #retorik-shadow .filterContainerWidget.show, #retorik-shadow .filterContainer.hide, #retorik-shadow .filterContainerWidget.hide {
592
- transition: all .3s ease-in-out;
593
- }
594
-
595
- #retorik-shadow .filterContainer .filterToggler, #retorik-shadow .filterContainerWidget .filterToggler {
596
- cursor: pointer;
597
- color: #575f6b;
598
- z-index: 999;
599
- background: #edeef2;
600
- border-radius: 10px 10px 0 0;
601
- align-items: center;
602
- width: fit-content;
603
- padding: 10px 30px;
604
- display: flex;
605
- box-shadow: 0 -4px 5px #24415d1c;
606
- }
607
-
608
- #retorik-shadow .filterContainer .filterToggler .arrow, #retorik-shadow .filterContainerWidget .filterToggler .arrow {
609
- width: 10px;
610
- height: 10px;
611
- padding-left: 17px;
612
- display: inline-block;
613
- position: relative;
614
- }
615
-
616
- #retorik-shadow .filterContainer .filterToggler .arrow:before, #retorik-shadow .filterContainer .filterToggler .arrow:after, #retorik-shadow .filterContainerWidget .filterToggler .arrow:before, #retorik-shadow .filterContainerWidget .filterToggler .arrow:after {
617
- content: "";
618
- will-change: transform;
619
- background: #000;
620
- width: 10px;
621
- height: 3px;
622
- transition: all .2s;
623
- position: absolute;
624
- top: calc(50% - 1px);
625
- right: auto;
626
- }
627
-
628
- #retorik-shadow .filterContainer .filterToggler .arrow:before, #retorik-shadow .filterContainerWidget .filterToggler .arrow:before {
629
- transform: rotate(45deg)translate(1px, -1px);
630
- }
631
-
632
- #retorik-shadow .filterContainer .filterToggler .arrow:after, #retorik-shadow .filterContainerWidget .filterToggler .arrow:after {
633
- transform: rotate(-45deg)translate(-3px, -3px);
634
- }
635
-
636
- #retorik-shadow .filterContainer .filterToggler .arrow.active:before, #retorik-shadow .filterContainerWidget .filterToggler .arrow.active:before {
637
- transform: rotate(45deg)translate(-2px, 2px);
638
- }
639
-
640
- #retorik-shadow .filterContainer .filterToggler .arrow.active:after, #retorik-shadow .filterContainerWidget .filterToggler .arrow.active:after {
641
- transform: rotate(-45deg)translate(2px, 2px);
642
- }
643
-
644
- #retorik-shadow .filterContainer .filterMenu, #retorik-shadow .filterContainerWidget .filterMenu {
645
- z-index: 401;
646
- background: #edeef2 no-repeat padding-box padding-box;
647
- border-radius: 0;
648
- justify-content: center;
649
- align-items: center;
650
- gap: 20px;
651
- width: 100%;
652
- display: flex;
653
- bottom: 0;
654
- box-shadow: 3px 3px 20px #24415d4d;
655
- }
656
-
657
- #retorik-shadow .filterContainer .filterMenu .filterCategory, #retorik-shadow .filterContainerWidget .filterMenu .filterCategory {
658
- cursor: pointer;
659
- background: linear-gradient(307deg, #f2f3f6 0%, #e5e6ec 100%) no-repeat padding-box padding-box;
660
- border-radius: 10px;
661
- align-items: center;
662
- gap: 10px;
663
- display: flex;
664
- position: relative;
665
- box-shadow: 3px 3px 10px #24415d14;
666
- }
667
-
668
- #retorik-shadow .filterContainer .filterMenu .filterCategory ion-img, #retorik-shadow .filterContainerWidget .filterMenu .filterCategory ion-img {
669
- border-radius: 50%;
670
- }
671
-
672
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox, #retorik-shadow .filterContainerWidget .filterMenu .filterCategory .checkbox {
673
- color: #fff;
674
- visibility: hidden;
675
- background-color: #575f6b;
676
- border: 2px solid #fff;
677
- border-radius: 20px;
678
- justify-content: center;
679
- align-items: center;
680
- display: flex;
681
- position: absolute;
682
- }
683
-
684
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox-selected, #retorik-shadow .filterContainerWidget .filterMenu .filterCategory .checkbox-selected {
685
- visibility: visible;
686
- }
687
-
688
- #retorik-shadow .filterContainer .filterMenu .filterCategory .image, #retorik-shadow .filterContainerWidget .filterMenu .filterCategory .image {
689
- aspect-ratio: 1;
690
- border-radius: 50%;
691
- }
692
-
693
- #retorik-shadow .filterContainer .filterMenu .filterCategory .imageFile, #retorik-shadow .filterContainerWidget .filterMenu .filterCategory .imageFile {
694
- width: 100%;
695
- height: 100%;
696
- }
697
-
698
- #retorik-shadow .filterContainer .filterMenu div:not(.selectedFilter) span, #retorik-shadow .filterContainerWidget .filterMenu div:not(.selectedFilter) span {
699
- color: #575f6b;
700
- transition: all .5s;
701
- font-weight: 400 !important;
702
- }
703
-
704
- #retorik-shadow .filterContainerWidget.show .filterMenu {
705
- height: 90px;
706
- transition: all .3s ease-in-out;
707
- }
708
-
709
- #retorik-shadow .filterContainerWidget.hide .filterMenu, #retorik-shadow .filterContainerWidget.hide .filterToggler {
710
- background: #edeef2;
711
- }
712
-
713
- #retorik-shadow .filterContainerWidget.hide .filterMenu {
714
- height: 10px;
715
- transition: all .3s ease-in-out;
716
- }
717
-
718
- #retorik-shadow .filterContainerWidget.hide .filterCategory {
719
- display: none;
720
- }
721
-
722
- #retorik-shadow .filterContainerWidget .filterMenu {
723
- z-index: 19;
724
- white-space: nowrap;
725
- width: unset;
726
- flex-flow: column wrap;
727
- display: flex;
728
- overflow-x: auto;
729
- }
730
-
731
- #retorik-shadow .filterContainerWidget .filterMenu .filterCategory {
732
- flex-flow: row;
733
- height: 50px;
734
- padding: 10px;
735
- }
736
-
737
- #retorik-shadow .filterContainerWidget .filterMenu .filterCategory ion-img {
738
- width: 36.5px;
739
- height: 36.5px;
740
- padding: 5%;
741
- }
742
-
743
- #retorik-shadow .filterContainerWidget .filterMenu .filterCategory .checkbox {
744
- width: 12px;
745
- height: 12px;
746
- padding-top: 1px;
747
- font-size: 12px;
748
- top: 5px;
749
- left: 40px;
750
- }
751
-
752
- #retorik-shadow .filterContainerWidget .filterMenu .filterCategory .image {
753
- width: 36.5px;
754
- height: 36.5px;
755
- padding: 5%;
756
- }
757
-
758
- #retorik-shadow .filterContainerWidget .filterMenu .filterCategory span {
759
- text-transform: uppercase;
760
- text-overflow: ellipsis;
761
- white-space: nowrap;
762
- font-size: 15px;
763
- font-weight: 500;
764
- line-height: 18px;
765
- }
766
-
767
- #retorik-shadow .filterContainerWidget .filterMenu .filterCategory.selectedFilter {
768
- transition: all .5s;
769
- box-shadow: inset -3px -3px 16px #fff;
770
- }
771
-
772
- @media only screen and (width <= 600px) {
773
- #retorik-shadow .filterContainer {
774
- bottom: 0;
775
- }
776
-
777
- #retorik-shadow .filterContainer.show .filterMenu {
778
- height: 90px;
779
- transition: all .3s ease-in-out;
780
- }
781
-
782
- #retorik-shadow .filterContainer.hide .filterMenu, #retorik-shadow .filterContainer.hide .filterToggler {
783
- background: #edeef2;
784
- }
785
-
786
- #retorik-shadow .filterContainer.hide .filterMenu {
787
- height: 10px;
788
- transition: all .3s ease-in-out;
789
- }
790
-
791
- #retorik-shadow .filterContainer.hide .filterCategory {
792
- display: none;
793
- }
794
-
795
- #retorik-shadow .filterContainer .filterMenu {
796
- z-index: 19;
797
- white-space: nowrap;
798
- width: unset;
799
- flex-flow: column wrap;
800
- display: flex;
801
- overflow-x: auto;
802
- }
803
-
804
- #retorik-shadow .filterContainer .filterMenu .filterCategory {
805
- flex-flow: row;
806
- height: 50px;
807
- padding: 10px;
808
- }
809
-
810
- #retorik-shadow .filterContainer .filterMenu .filterCategory ion-img {
811
- width: 36.5px;
812
- height: 36.5px;
813
- padding: 5%;
814
- }
815
-
816
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox {
817
- width: 12px;
818
- height: 12px;
819
- padding-top: 1px;
820
- font-size: 12px;
821
- top: 5px;
822
- left: 40px;
823
- }
824
-
825
- #retorik-shadow .filterContainer .filterMenu .filterCategory .image {
826
- width: 36.5px;
827
- height: 36.5px;
828
- padding: 5%;
829
- }
830
-
831
- #retorik-shadow .filterContainer .filterMenu .filterCategory span {
832
- text-transform: uppercase;
833
- text-overflow: ellipsis;
834
- white-space: nowrap;
835
- font-size: 15px;
836
- font-weight: 500;
837
- line-height: 18px;
838
- }
839
-
840
- #retorik-shadow .filterContainer .filterMenu .filterCategory.selectedFilter {
841
- transition: all .5s;
842
- box-shadow: inset -3px -3px 16px #fff;
843
- }
844
- }
845
-
846
- @media only screen and (width >= 601px) and (width <= 999px) {
847
- #retorik-shadow .filterContainer.show {
848
- bottom: 0;
849
- }
850
-
851
- #retorik-shadow .filterContainer.hide {
852
- bottom: -80px;
853
- }
854
-
855
- #retorik-shadow .filterContainer.hide .filterMenu, #retorik-shadow .filterContainer.hide .filterToggler {
856
- background: #edeef2;
857
- }
858
-
859
- #retorik-shadow .filterContainer .filterMenu {
860
- white-space: nowrap;
861
- height: 90px;
862
- width: unset;
863
- flex-flow: column wrap;
864
- display: flex;
865
- overflow-x: auto;
866
- }
867
-
868
- #retorik-shadow .filterContainer .filterMenu .filterCategory {
869
- flex-flow: row;
870
- height: 50px;
871
- padding: 10px;
872
- }
873
-
874
- #retorik-shadow .filterContainer .filterMenu .filterCategory ion-img {
875
- width: 48px;
876
- height: 48px;
877
- padding: 5%;
878
- }
879
-
880
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox {
881
- width: 17px;
882
- height: 17px;
883
- padding-top: 2px;
884
- font-size: 17px;
885
- top: 0;
886
- left: 50px;
887
- }
888
-
889
- #retorik-shadow .filterContainer .filterMenu .filterCategory .image {
890
- width: 48px;
891
- height: 48px;
892
- padding: 5%;
893
- }
894
-
895
- #retorik-shadow .filterContainer .filterMenu .filterCategory span {
896
- text-transform: uppercase;
897
- text-overflow: ellipsis;
898
- white-space: nowrap;
899
- font-size: 15px;
900
- font-weight: 500;
901
- line-height: 18px;
902
- }
903
-
904
- #retorik-shadow .filterContainer .filterMenu .filterCategory.selectedFilter {
905
- transition: all .5s;
906
- box-shadow: inset -3px -3px 16px #fff;
907
- }
908
- }
909
-
910
- @media only screen and (width >= 1000px) and (orientation: landscape) {
911
- #retorik-shadow .filterContainer.show {
912
- bottom: 0;
913
- }
914
-
915
- #retorik-shadow .filterContainer.hide {
916
- bottom: -185px;
917
- }
918
-
919
- #retorik-shadow .filterContainer.hide .filterMenu, #retorik-shadow .filterContainer.hide .filterToggler {
920
- background: #edeef2;
921
- }
922
-
923
- #retorik-shadow .filterContainer .filterToggler {
924
- margin-left: 100px;
925
- }
926
-
927
- #retorik-shadow .filterContainer .filterMenu {
928
- flex-flow: row;
929
- height: 200px;
930
- }
931
-
932
- #retorik-shadow .filterContainer .filterMenu .filterCategory {
933
- flex-direction: column;
934
- justify-content: flex-start;
935
- width: 150px;
936
- height: 130px;
937
- padding-top: 1.5rem;
938
- }
939
-
940
- #retorik-shadow .filterContainer .filterMenu .filterCategory ion-img {
941
- max-width: 60px;
942
- max-height: 60px;
943
- padding: 7%;
944
- }
945
-
946
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox {
947
- width: 20px;
948
- height: 20px;
949
- padding-top: 2px;
950
- font-size: 20px;
951
- top: 17%;
952
- right: 25%;
953
- }
954
-
955
- #retorik-shadow .filterContainer .filterMenu .filterCategory .image {
956
- max-width: 60px;
957
- max-height: 60px;
958
- padding: 7%;
959
- }
960
-
961
- #retorik-shadow .filterContainer .filterMenu .filterCategory span {
962
- text-transform: uppercase;
963
- text-overflow: ellipsis;
964
- white-space: nowrap;
965
- font-size: 15px;
966
- font-weight: 500;
967
- line-height: 18px;
968
- }
969
-
970
- #retorik-shadow .filterContainer .filterMenu .filterCategory.selectedFilter {
971
- transition: all .5s;
972
- box-shadow: inset -3px -3px 16px #fff;
973
- }
974
- }
975
-
976
- @media only screen and (width >= 1921px) and (orientation: landscape) {
977
- #retorik-shadow .filterContainer.show {
978
- bottom: 0;
979
- }
980
-
981
- #retorik-shadow .filterContainer.hide {
982
- bottom: -285px;
983
- }
984
-
985
- #retorik-shadow .filterContainer.hide .filterMenu, #retorik-shadow .filterContainer.hide .filterToggler {
986
- background: #edeef2;
987
- }
988
-
989
- #retorik-shadow .filterContainer .filterToggler {
990
- margin-left: 100px;
991
- }
992
-
993
- #retorik-shadow .filterContainer .filterMenu {
994
- flex-flow: row;
995
- height: 300px;
996
- }
997
-
998
- #retorik-shadow .filterContainer .filterMenu .filterCategory {
999
- flex-direction: column;
1000
- justify-content: space-evenly;
1001
- width: 246px;
1002
- height: 213px;
1003
- padding: 1.5rem;
1004
- }
1005
-
1006
- #retorik-shadow .filterContainer .filterMenu .filterCategory ion-img {
1007
- max-width: 98.5px;
1008
- max-height: 98.5px;
1009
- padding: 8%;
1010
- }
1011
-
1012
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox {
1013
- width: 32px;
1014
- height: 32px;
1015
- padding-top: 8px;
1016
- font-size: 32px;
1017
- top: 15%;
1018
- right: 25%;
1019
- }
1020
-
1021
- #retorik-shadow .filterContainer .filterMenu .filterCategory .image {
1022
- max-width: 98.5px;
1023
- max-height: 98.5px;
1024
- padding: 8%;
1025
- }
1026
-
1027
- #retorik-shadow .filterContainer .filterMenu .filterCategory span {
1028
- text-transform: uppercase;
1029
- text-overflow: ellipsis;
1030
- white-space: nowrap;
1031
- font-size: 22px;
1032
- font-weight: 700;
1033
- line-height: 27px;
1034
- }
1035
-
1036
- #retorik-shadow .filterContainer .filterMenu .filterCategory.selectedFilter {
1037
- transition: all .5s;
1038
- box-shadow: inset -3px -3px 16px #fff;
1039
- }
1040
- }
1041
-
1042
- @media only screen and (width >= 1000px) and (orientation: portrait) {
1043
- #retorik-shadow .filterContainer.show {
1044
- bottom: 15%;
1045
- left: calc(50% - 500px);
1046
- }
1047
-
1048
- #retorik-shadow .filterContainer .filterToggler {
1049
- justify-content: center;
1050
- margin-left: 0;
1051
- left: calc(50% - 500px);
1052
- width: 900px !important;
1053
- }
1054
-
1055
- #retorik-shadow .filterContainer .arrow {
1056
- display: none !important;
1057
- }
1058
-
1059
- #retorik-shadow .filterContainer .filterMenu {
1060
- border-radius: 0 0 10px 10px;
1061
- flex-flow: row;
1062
- width: 900px;
1063
- height: 130px;
1064
- }
1065
-
1066
- #retorik-shadow .filterContainer .filterMenu .filterCategory {
1067
- flex-direction: column;
1068
- justify-content: center;
1069
- width: 125px;
1070
- height: 110px;
1071
- }
1072
-
1073
- #retorik-shadow .filterContainer .filterMenu .filterCategory ion-img {
1074
- max-width: 48px;
1075
- max-height: 48px;
1076
- padding: 7%;
1077
- }
1078
-
1079
- #retorik-shadow .filterContainer .filterMenu .filterCategory .checkbox {
1080
- width: 20px;
1081
- height: 20px;
1082
- padding-top: 2px;
1083
- font-size: 20px;
1084
- top: 17%;
1085
- right: 25%;
1086
- }
1087
-
1088
- #retorik-shadow .filterContainer .filterMenu .filterCategory .image {
1089
- max-width: 48px;
1090
- max-height: 48px;
1091
- padding: 7%;
1092
- }
1093
-
1094
- #retorik-shadow .filterContainer .filterMenu .filterCategory span {
1095
- text-transform: uppercase;
1096
- text-overflow: ellipsis;
1097
- white-space: nowrap;
1098
- font-size: 14px;
1099
- font-weight: 500;
1100
- line-height: 16px;
1101
- }
1102
-
1103
- #retorik-shadow .filterContainer .filterMenu .filterCategory.selectedFilter {
1104
- transition: all .5s;
1105
- box-shadow: inset -3px -3px 16px #fff;
1106
- }
1107
- }
1108
-
1109
- #retorik-shadow ion-button.confirm {
1110
- background-color: #1999b1;
1111
- }
1112
-
1113
- #retorik-shadow ion-button.dismiss {
1114
- --border-color: #1999b1;
1115
- --border-radius: 10px;
1116
- color: #1999b1;
1117
- }
1118
-
1119
- #retorik-shadow ion-content {
1120
- --overflow: hidden;
1121
- --background: #4747478c;
1122
- }
1123
-
1124
- #retorik-shadow ion-modal {
1125
- text-align: center;
1126
- --width: 100%;
1127
- --height: 100%;
1128
- --background: transparent linear-gradient(308deg, #f2f3f6 0%, #e5e6ec 100%) 0% 0% no-repeat padding-box;
1129
- opacity: 1;
1130
- border-radius: 10px;
1131
- align-items: center;
1132
- width: 500px;
1133
- height: 200px;
1134
- margin: auto;
1135
- display: flex;
1136
- box-shadow: -3px -3px 20px #2b27276a;
1137
- --justify-content: space-around !important;
1138
- }
1139
-
1140
- #retorik-shadow #ion-react-wrapper {
1141
- justify-content: space-around !important;
1142
- display: flex !important;
1143
- }
1144
-
1145
- @media (width <= 600px) {
1146
- #retorik-shadow ion-modal {
1147
- --width: 100%;
1148
- --height: 100%;
1149
- opacity: 1;
1150
- background: #fff no-repeat padding-box padding-box;
1151
- border-radius: 10px;
1152
- justify-content: space-between;
1153
- width: 80%;
1154
- height: 200px;
1155
- margin: auto;
1156
- display: flex;
1157
- box-shadow: -3px -3px 20px #2b27276a;
1158
- }
1159
- }
1160
- /*# sourceMappingURL=index.modern.css.map */