@duffel/components 2.0.1 → 2.1.0

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.
@@ -0,0 +1,743 @@
1
+ .duffel-components .ff-icon {
2
+ margin-left: initial;
3
+ display: block;
4
+ fill: currentColor;
5
+ }
6
+
7
+ .duffel-components .duffel-button {
8
+ --BUTTON-BASE-COLOR: rgb(var(--ACCENT));
9
+ --BUTTON-HOVER-COLOR: rgba(var(--ACCENT), var(--ACCENT-LIGHT-300));
10
+ --BUTTON-FONT-SIZE: var(--FONT-SIZES-C1);
11
+ --BUTTON-ICON-SIZE: 24px;
12
+ --BUTTON-RADIUS: 5px;
13
+ --BUTTON-SPACING: 2px 40px;
14
+ --BUTTON-ICON-SPACING: 8px;
15
+ --BUTTON-ICON-MARGIN: 12px;
16
+ --TRANSITION-CUBIC-BEZIER: cubic-bezier(0.25, 0.8, 0.25, 1);
17
+
18
+ -webkit-appearance: none;
19
+ align-items: center;
20
+ background-color: inherit;
21
+ border: 2px solid var(--BUTTON-BASE-COLOR);
22
+ border-radius: var(--BUTTON-RADIUS);
23
+ box-sizing: border-box;
24
+ color: inherit;
25
+ cursor: pointer;
26
+ display: flex;
27
+ font-family: var(--FONT-FAMILY);
28
+ font-size: inherit;
29
+ font-weight: normal;
30
+ line-height: 1;
31
+ margin: 0;
32
+ padding: var(--BUTTON-SPACING);
33
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
34
+ -webkit-user-select: none;
35
+ -moz-user-select: none;
36
+ user-select: none;
37
+ transition: background-color 0.3s var(--TRANSITION-CUBIC-BEZIER),
38
+ border-color 0.3s var(--TRANSITION-CUBIC-BEZIER),
39
+ color 0.3s var(--TRANSITION-CUBIC-BEZIER);
40
+ }
41
+
42
+ .duffel-components .duffel-button.duffel-button--icon-only {
43
+ padding: var(--BUTTON-ICON-SPACING);
44
+ height: 40px;
45
+ width: 40px;
46
+ }
47
+
48
+ .duffel-components .duffel-button.duffel-button--icon-only > svg {
49
+ --BUTTON-ICON-SIZE: 24px;
50
+ margin: 0 auto;
51
+ }
52
+
53
+ .duffel-components .duffel-button__text {
54
+ display: block;
55
+ font-size: var(--BUTTON-FONT-SIZE);
56
+ font-weight: 600;
57
+ line-height: 1.5;
58
+ }
59
+
60
+ .duffel-components .duffel-button:focus {
61
+ outline-offset: 0.25em;
62
+ outline: 2px solid rgb(--ACCENT);
63
+ }
64
+
65
+ .duffel-components .duffel-button--primary {
66
+ --BUTTON-HOVER-COLOR: rgba(var(--ACCENT), var(--ACCENT-LIGHT-300));
67
+ }
68
+
69
+ .duffel-components .duffel-button--muted {
70
+ --BUTTON-BASE-COLOR: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
71
+ --BUTTON-HOVER-COLOR: rgba(var(--ACCENT), var(--ACCENT-LIGHT-1000));
72
+
73
+ border-color: transparent;
74
+ }
75
+
76
+ .duffel-components .duffel-button--muted.duffel-button--solid:hover,
77
+ .duffel-components .duffel-button--muted.duffel-button--solid:active {
78
+ color: rgb(var(--WHITE));
79
+ }
80
+
81
+ .duffel-components .duffel-button--solid {
82
+ background-color: var(--BUTTON-BASE-COLOR);
83
+ color: rgb(var(--WHITE));
84
+ }
85
+
86
+ .duffel-components .duffel-button--solid.duffel-button--muted {
87
+ color: rgb(var(--ACCENT));
88
+ }
89
+
90
+ .duffel-components .duffel-button--solid:hover,
91
+ .duffel-components .duffel-button--solid:active {
92
+ border-color: transparent;
93
+ background-color: var(--BUTTON-HOVER-COLOR);
94
+ }
95
+
96
+ .duffel-components .duffel-button--is-disabled {
97
+ cursor: default;
98
+ opacity: 0.4;
99
+ -webkit-user-select: none;
100
+ -moz-user-select: none;
101
+ user-select: none;
102
+ pointer-events: none;
103
+ }
104
+
105
+ .duffel-components .duffel-button .duffel-button__icon {
106
+ display: block;
107
+ height: var(--BUTTON-ICON-SIZE);
108
+ width: var(--BUTTON-ICON-SIZE);
109
+ }
110
+
111
+ .duffel-components .duffel-button .duffel-button__icon--before {
112
+ margin-right: var(--BUTTON-ICON-MARGIN);
113
+ }
114
+
115
+ .duffel-components .duffel-button .duffel-button__icon--after {
116
+ margin-left: var(--BUTTON-ICON-MARGIN);
117
+ }
118
+
119
+ @media screen and (min-width: 768px) {.duffel-components .duffel-button {
120
+ --BUTTON-FONT-SIZE: var(--FONT-SIZES-C1);
121
+ --BUTTON-ICON-SIZE: 18px;
122
+ --BUTTON-SPACING: 4px 16px;
123
+ line-height: 24px
124
+ }
125
+ .duffel-components .duffel-button:not(.duffel-button--icon-only) {
126
+ height: 40px;
127
+ }
128
+
129
+ .duffel-components .duffel-button.duffel-button--icon-only {
130
+ padding: var(--BUTTON-ICON-SPACING);
131
+ height: 40px;
132
+ width: 40px;
133
+ }
134
+ }
135
+
136
+ .duffel-components .popover-container {
137
+ width: 320px;
138
+ padding: var(--SPACING-SM-1);
139
+ border: 1px solid rgba(59, 64, 86, 0.1);
140
+ border-radius: 8px;
141
+ background: white;
142
+ z-index: 999;
143
+ box-shadow: 0px 1px 4px rgba(59, 64, 86, 0.3);
144
+ }
145
+
146
+ @-webkit-keyframes opacity-animation {
147
+ 0%,
148
+ 80%,
149
+ 100% {
150
+ opacity: 0.3;
151
+ }
152
+ 40% {
153
+ opacity: 1;
154
+ }
155
+ }
156
+
157
+ @keyframes opacity-animation {
158
+ 0%,
159
+ 80%,
160
+ 100% {
161
+ opacity: 0.3;
162
+ }
163
+ 40% {
164
+ opacity: 1;
165
+ }
166
+ }
167
+
168
+ .duffel-components .spinner {
169
+ align-items: center;
170
+ display: flex;
171
+ justify-content: center;
172
+ pointer-events: none;
173
+ width: 100%;
174
+ height: 12px;
175
+ }
176
+
177
+ .duffel-components .spinner-dot {
178
+ -webkit-animation: opacity-animation 1.4s infinite ease-in-out both;
179
+ animation: opacity-animation 1.4s infinite ease-in-out both;
180
+ background-color: currentcolor;
181
+ border-radius: 100%;
182
+ display: inline-block;
183
+ margin: 0px 4px;
184
+ height: 12px;
185
+ width: 12px;
186
+ flex: 0 0 auto;
187
+ }
188
+
189
+ .duffel-components .small {
190
+ height: 8px;
191
+ }
192
+
193
+ .duffel-components .small.spinner-dot {
194
+ height: 8px;
195
+ width: 8px;
196
+ margin: 0 2px;
197
+ }
198
+
199
+ .duffel-components .primary.spinner-dot {
200
+ background-color: var(--BLUE-500);
201
+ }
202
+
203
+ .duffel-components .muted.spinner-dot {
204
+ background-color: var(--GREY-400);
205
+ }
206
+
207
+ .duffel-components .danger.spinner-dot {
208
+ background-color: var(--RED-400);
209
+ }
210
+
211
+ .duffel-components .one {
212
+ -webkit-animation-delay: -0.32s;
213
+ animation-delay: -0.32s;
214
+ }
215
+
216
+ .duffel-components .two {
217
+ -webkit-animation-delay: -0.16s;
218
+ animation-delay: -0.16s;
219
+ }
220
+
221
+ .duffel-components .seat-map__tab-select {
222
+ width: 100%;
223
+ max-width: 400px;
224
+ display: flex;
225
+ text-align: center;
226
+ min-height: var(--SPACING-LG-1);
227
+ margin-bottom: var(--SPACING-MD-3);
228
+ border: 2px solid var(--GREY-200);
229
+ border-radius: 3px;
230
+ background-color: var(--GREY-200);
231
+ }
232
+
233
+ .duffel-components .seat-map__tab-select-option {
234
+ -webkit-appearance: none;
235
+ -moz-appearance: none;
236
+ appearance: none;
237
+ outline: none;
238
+ margin: 0;
239
+ border: none;
240
+ padding: var(--SPACING-XS-2) var(--SPACING-SM-3);
241
+ font-weight: 600;
242
+ font-size: var(--FONT-SIZES-C2);
243
+ width: 100%;
244
+ color: var(--GREY-900);
245
+ background-color: var(--GREY-200);
246
+ cursor: pointer;
247
+ border-radius: 3px;
248
+ }
249
+
250
+ .duffel-components .seat-map__tab-select-option:hover,
251
+ .duffel-components .seat-map__tab-select-option:focus,
252
+ .duffel-components .seat-map__tab-select-option:active {
253
+ color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-1000));
254
+ background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-200));
255
+ transition: var(--TRANSITIONS-CUBIC-BEZIER);
256
+ }
257
+
258
+ .duffel-components .seat-map__tab-select-option--selected {
259
+ color: var(--GREY-900);
260
+ background-color: rgba(var(--WHITE), 1);
261
+ box-shadow: 0px 0px 0px 1px rgba(var(--BLACK), 0.05),
262
+ 0px 2px 12px rgba(var(--BLACK), 0.08);
263
+ }
264
+
265
+ .duffel-components .seat-map__tab-select-option:first-child {
266
+ margin-right: 1px;
267
+ }
268
+
269
+ .duffel-components .seat-map__tab-select-option:last-child {
270
+ margin-left: 1px;
271
+ }
272
+
273
+ .duffel-components {
274
+ --FONT-FAMILY: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
275
+ 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
276
+ sans-serif;
277
+ --FONT-SIZES-C0: 20px;
278
+ --FONT-SIZES-C1: 16px;
279
+ --FONT-SIZES-C2: 14px;
280
+ --FONT-SIZES-C3: 12px;
281
+ --FONT-SIZES-H2: 32px;
282
+ --FONT-SIZES-H3: 28px;
283
+ --FONT-SIZES-H4: 24px;
284
+ --FONT-SIZES-H5: 20px;
285
+ --SPACING-XL-3: 128px;
286
+ --SPACING-XL-2: 64px;
287
+ --SPACING-XL-1: 56px;
288
+ --SPACING-LG-3: 48px;
289
+ --SPACING-LG-2: 40px;
290
+ --SPACING-LG-1: 32px;
291
+ --SPACING-MD-3: 24px;
292
+ --SPACING-MD-2: 20px;
293
+ --SPACING-MD-1: 18px;
294
+ --SPACING-SM-3: 16px;
295
+ --SPACING-SM-2: 12px;
296
+ --SPACING-SM-1: 8px;
297
+ --SPACING-XS-3: 6px;
298
+ --SPACING-XS-2: 4px;
299
+ --SPACING-XS-1: 2px;
300
+ --SPACING-NONE: 0;
301
+ --GREY-100: #f7f5f9;
302
+ --GREY-200: #e2e2e8;
303
+ --GREY-400: #ababb4;
304
+ --GREY-500: #86868e;
305
+ --GREY-600: #696972;
306
+ --GREY-700: #4b4b55;
307
+ --GREY-900: #29292e;
308
+ --RED: #e3350f;
309
+ --BLACK: 0, 0, 0;
310
+ --WHITE: 255, 255, 255;
311
+ --ACCENT: 57, 111, 233;
312
+ --ACCENT-LIGHT-100: 0.08;
313
+ --ACCENT-LIGHT-200: 0.24;
314
+ --ACCENT-LIGHT-300: 0.48;
315
+ --ACCENT-LIGHT-1000: 1;
316
+ --TRANSITIONS-CUBIC-BEZIER: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
317
+ box-sizing: border-box;
318
+ -webkit-overflow-scrolling: touch;
319
+ -webkit-font-smoothing: antialiased;
320
+ font-family: var(--FONT-FAMILY);
321
+ overflow: hidden;
322
+ height: 100%;
323
+ }
324
+
325
+ .duffel-components .counter {
326
+ display: flex;
327
+ align-items: center;
328
+ }
329
+
330
+ .duffel-components .counter__count-label {
331
+ font-size: var(--FONT-SIZES-C2);
332
+ text-align: center;
333
+ align-self: center;
334
+ color: var(--GREY-900);
335
+ width: var(--SPACING-LG-2);
336
+ }
337
+
338
+ @media screen and (min-width: 768px) {
339
+ .duffel-components .counter__count-label {
340
+ width: var(--SPACING-LG-1);
341
+ }
342
+ }
343
+
344
+ .duffel-components .baggage-display {
345
+ display: flex;
346
+ align-items: center;
347
+ }
348
+
349
+ .duffel-components .baggage-display__content {
350
+ margin-left: var(--SPACING-SM-1);
351
+ }
352
+
353
+ .duffel-components .baggage-display__label {
354
+ color: var(--grey-900);
355
+ font-size: var(--FONT-SIZES-C2);
356
+ }
357
+
358
+ .duffel-components .baggage-display__price {
359
+ font-size: var(--FONT-SIZES-C2);
360
+ color: var(--GREY-600);
361
+ margin-left: var(--SPACING-XS-2);
362
+ }
363
+
364
+ .duffel-components .baggage-display__specs {
365
+ margin-top: var(--SPACING-XS-2);
366
+ font-size: var(--FONT-SIZES-C3);
367
+ color: var(--GREY-600);
368
+ }
369
+
370
+ .duffel-components .baggage-selection__control-container {
371
+ display: flex;
372
+ align-items: center;
373
+ justify-content: space-between;
374
+ margin-bottom: var(--SPACING-SM-1);
375
+ }
376
+
377
+ .duffel-components .baggage-selection__control-container:last-child {
378
+ margin-bottom: 0;
379
+ }
380
+
381
+ .duffel-components .baggage-selection__control-price {
382
+ margin-right: var(--SPACING-SM-3);
383
+ line-height: var(--SPACING-MD-3);
384
+ }
385
+
386
+ .duffel-components .baggage-selection__control {
387
+ display: flex;
388
+ align-items: center;
389
+ }
390
+
391
+ .duffel-components .baggage-selection__no-bag {
392
+ display: flex;
393
+ align-items: center;
394
+ color: var(--GREY-900);
395
+ }
396
+
397
+ .duffel-components .baggage-selection__no-bag-circle {
398
+ background-color: rgb(var(--ACCENT));
399
+ color: white;
400
+ margin-right: var(--SPACING-SM-1);
401
+ border-radius: 50%;
402
+ width: var(--SPACING-LG-2);
403
+ height: var(--SPACING-LG-2);
404
+ display: flex;
405
+ justify-content: center;
406
+ align-items: center;
407
+ }
408
+
409
+ .duffel-components .passenger-selection {
410
+ display: flex;
411
+ flex-direction: column;
412
+ font-family: var(--FONT-FAMILY);
413
+ flex-grow: 1;
414
+ }
415
+
416
+ .duffel-components .passenger-selection__title {
417
+ margin: 0;
418
+ padding: 0 0 var(--SPACING-MD-3);
419
+ font-size: var(--FONT-SIZES-H2);
420
+ line-height: 1.2;
421
+ min-width: 360px;
422
+ }
423
+
424
+ .duffel-components .passenger-selection__segments {
425
+ list-style: none;
426
+ overflow-y: auto;
427
+ font-size: var(--FONT-SIZES-C1);
428
+ padding: var(--SPACING-XS-2);
429
+ margin: calc(var(--SPACING-XS-2) * -1);
430
+ }
431
+
432
+ .duffel-components .passenger-selection-passenger {
433
+ -webkit-appearance: none;
434
+ -moz-appearance: none;
435
+ appearance: none;
436
+ border: none;
437
+ background: none;
438
+ cursor: pointer;
439
+ font-size: var(--FONT-SIZES-C2);
440
+ font-family: var(--FONT-FAMILY);
441
+ margin-top: var(--SPACING-XS-2);
442
+ height: 32px;
443
+ display: flex;
444
+ align-items: center;
445
+ padding: var(--SPACING-SM-1) var(--SPACING-LG-1);
446
+ width: 100%;
447
+ }
448
+
449
+ .duffel-components .passenger-selection-passenger:first-child {
450
+ margin-top: 0;
451
+ }
452
+
453
+ .duffel-components .passenger-selection-passenger:hover,
454
+ .duffel-components .passenger-selection-passenger:focus,
455
+ .duffel-components .passenger-selection-passenger:active {
456
+ background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
457
+ }
458
+
459
+ .duffel-components .passenger-selection-passenger__identifier,
460
+ .duffel-components .passenger-selection-passenger__action {
461
+ line-height: 1;
462
+ }
463
+
464
+ .duffel-components .passenger-selection-passenger__identifier {
465
+ flex-grow: 1;
466
+ margin-right: var(--SPACING-LG-1);
467
+ text-align: left;
468
+ color: var(--GREY-900);
469
+ }
470
+
471
+ .duffel-components .passenger-selection-passenger__action {
472
+ color: var(--GREY-600);
473
+ margin-right: var(--SPACING-XS-2);
474
+ }
475
+
476
+ .duffel-components .passenger-selection-passenger__seat-designator {
477
+ color: var(--GREY-900);
478
+ font-weight: 600;
479
+ margin-right: var(--SPACING-SM-3);
480
+ }
481
+
482
+ .duffel-components .passenger-selection-passenger__seat-price {
483
+ text-align: right;
484
+ display: inline-block;
485
+ width: 70px;
486
+ }
487
+
488
+ .duffel-components .passenger-selection-passenger--selected {
489
+ box-shadow: 4px 0px 0px 0px rgba(var(--ACCENT), var(--ACCENT-LIGHT-1000))
490
+ inset;
491
+ background-color: rgba(var(--ACCENT), var(--ACCENT-LIGHT-100));
492
+ }
493
+
494
+ .duffel-components .passenger-segment__title {
495
+ color: var(--GREY-900);
496
+ font-style: normal;
497
+ font-size: var(--FONT-SIZES-C1);
498
+ font-weight: 600;
499
+ line-height: var(--SPACING-MD-3);
500
+ padding: 0 0 0 var(--SPACING-LG-1);
501
+ margin: 0 0 var(--SPACING-SM-1);
502
+ display: flex;
503
+ align-items: center;
504
+ }
505
+ .duffel-components .passenger-segment__chevron {
506
+ margin: 0 var(--SPACING-SM-1);
507
+ color: var(--GREY-400);
508
+ }
509
+
510
+ .duffel-components .passenger-selection-segment {
511
+ margin: var(--SPACING-LG-1) 0 0;
512
+ padding: 0 0 var(--SPACING-LG-1);
513
+ border-bottom: 1px solid var(--GREY-200);
514
+ font-family: var(--FONT-FAMILY);
515
+ }
516
+
517
+ .duffel-components .passenger-selection-segment:first-child {
518
+ margin-top: 0;
519
+ }
520
+
521
+ .duffel-components .layout {
522
+ --LAYOUT-BOX-SHADOW: 0px 0px 0px 1px rgba(var(--BLACK), 0.05),
523
+ 0px 4px 24px rgba(var(--BLACK), 0.08);
524
+ background-color: rgb(var(--WHITE));
525
+ display: flex;
526
+ flex-direction: column;
527
+ width: 100%;
528
+ height: 100%;
529
+ padding: 0;
530
+ position: relative;
531
+ }
532
+
533
+ .duffel-components .layout__container {
534
+ display: flex;
535
+ flex-direction: column;
536
+ align-items: center;
537
+ flex-grow: 1;
538
+ border-bottom: 1px solid rgba(59, 64, 86, 0.1);
539
+ height: calc(100% - 177px);
540
+ overflow: auto;
541
+ }
542
+
543
+ .duffel-components .layout__aside {
544
+ display: none;
545
+ padding-top: var(--SPACING-LG-1);
546
+ }
547
+
548
+ .duffel-components .layout__main-content {
549
+ width: 100%;
550
+ height: 100%;
551
+ display: flex;
552
+ justify-content: space-between;
553
+ flex-direction: column;
554
+ }
555
+
556
+ .duffel-components .layout__mobile-info {
557
+ align-self: center;
558
+ position: absolute;
559
+ bottom: 187px;
560
+ width: calc(100% - 20px);
561
+ padding: var(--SPACING-XS-3);
562
+ margin-bottom: var(--SPACING-SM-2);
563
+ height: auto;
564
+ background-color: white;
565
+ border-radius: 8px;
566
+ z-index: 100;
567
+ box-shadow: var(--LAYOUT-BOX-SHADOW);
568
+ }
569
+
570
+ .duffel-components .layout__confirmation {
571
+ padding: var(--SPACING-MD-3);
572
+ box-shadow: var(--LAYOUT-BOX-SHADOW);
573
+ position: -webkit-sticky;
574
+ position: sticky;
575
+ bottom: 0;
576
+ background-color: rgb(var(--WHITE));
577
+ }
578
+
579
+ @media screen and (min-width: 768px) {
580
+ .duffel-components .layout {
581
+ width: calc(100vw - 2 * 71px);
582
+ overflow: hidden;
583
+ }
584
+
585
+ .duffel-components .layout__container {
586
+ height: auto;
587
+ padding: 0;
588
+ flex-direction: row;
589
+ align-items: initial;
590
+ max-height: calc(100vh - 115px);
591
+ }
592
+
593
+ .duffel-components .layout__confirmation {
594
+ padding: var(--SPACING-LG-1);
595
+ box-shadow: none;
596
+ }
597
+
598
+ .duffel-components .layout__aside {
599
+ overflow: auto;
600
+ border-right: 1px solid var(--GREY-200);
601
+ display: flex;
602
+ flex-direction: column;
603
+ position: -webkit-sticky;
604
+ position: sticky;
605
+ top: 0;
606
+ flex: 1 0 auto;
607
+ min-width: 415px;
608
+ }
609
+
610
+ .duffel-components .layout__main-content {
611
+ height: auto;
612
+ align-items: center;
613
+ overflow: auto;
614
+ }
615
+ }
616
+
617
+ .duffel-components .summary__segment {
618
+ border-bottom: 1px solid var(--GREY-200);
619
+ display: flex;
620
+ align-items: center;
621
+ justify-content: space-between;
622
+ margin-bottom: var(--SPACING-SM-3);
623
+ padding-bottom: var(--SPACING-SM-3);
624
+ }
625
+
626
+ .duffel-components .summary__segment > .passenger-segment__title {
627
+ padding: 0;
628
+ margin: 0;
629
+ }
630
+
631
+ .duffel-components .summary__segment-passenger {
632
+ color: var(--GREY-900);
633
+ font-size: var(--FONT-SIZES-C1);
634
+ font-weight: normal;
635
+ margin: 0;
636
+ padding: 0;
637
+ }
638
+ .duffel-components .summary__description-cost {
639
+ display: flex;
640
+ justify-content: space-between;
641
+ font-size: var(--FONT-SIZES-C1);
642
+ margin-bottom: var(--SPACING-SM-3);
643
+ }
644
+ .duffel-components .summary:not(.summary--mobile) {
645
+ padding-top: 0;
646
+ display: none;
647
+ }
648
+ .duffel-components .summary__actions {
649
+ display: flex;
650
+ }
651
+ .duffel-components .summary__actions--previous {
652
+ transform: rotate(180deg);
653
+ }
654
+ .duffel-components .summary__actions > button:last-of-type {
655
+ flex: 1 auto;
656
+ justify-content: center;
657
+ margin-left: var(--SPACING-SM-3);
658
+ }
659
+ @media screen and (min-width: 768px) {
660
+ .duffel-components .summary:not(.summary--mobile) {
661
+ display: flex;
662
+ justify-content: space-between;
663
+ align-items: center;
664
+ }
665
+
666
+ .duffel-components .summary--mobile {
667
+ display: none;
668
+ }
669
+
670
+ .duffel-components .summary__description-title {
671
+ color: var(--GREY-900);
672
+ font-size: var(--FONT-SIZES-H5);
673
+ line-height: 26px;
674
+ margin-bottom: var(--SPACING-XS-2);
675
+ }
676
+
677
+ .duffel-components .summary__description-cost {
678
+ color: var(--GREY-600);
679
+ font-size: var(--FONT-SIZES-C2);
680
+ line-height: 21px;
681
+ margin-bottom: 0;
682
+ }
683
+ .duffel-components .summary__actions--previous.duffel-button--icon-only {
684
+ padding: 0;
685
+ }
686
+ .duffel-components .summary__actions .summary__confirmation-btn:last-child {
687
+ margin-left: var(--SPACING-SM-1);
688
+ }
689
+ }
690
+
691
+ .duffel-components .additional-baggage-select {
692
+ width: 100%;
693
+ }
694
+
695
+ .duffel-components .additional-baggage-select--container {
696
+ padding: var(--SPACING-LG-1);
697
+ }
698
+
699
+ .duffel-components .additional-baggage-select__title {
700
+ font-size: var(--FONT-SIZES-C2);
701
+ font-weight: 600;
702
+ margin-top: var(--SPACING-XS-3);
703
+ margin-bottom: var(--SPACING-SM-2);
704
+ }
705
+
706
+ .duffel-components .error-state__container {
707
+ display: flex;
708
+ flex-direction: column;
709
+ flex: 1;
710
+ align-items: center;
711
+ justify-content: center;
712
+ max-width: 308px;
713
+ text-align: center;
714
+ margin: 0 auto;
715
+ font-family: var(--FONT-FAMILY);
716
+ height: 100%;
717
+ }
718
+ .duffel-components .error-state__icon {
719
+ display: flex;
720
+ justify-content: center;
721
+ align-items: center;
722
+ width: 64px;
723
+ height: 64px;
724
+ background-color: rgb(var(--ACCENT));
725
+ border-radius: 50%;
726
+ margin-bottom: var(--SPACING-MD-2);
727
+ color: rgb(var(--WHITE));
728
+ }
729
+ .duffel-components .error-state__title {
730
+ color: var(--GREY-900);
731
+ font-size: var(--FONT-SIZES-H4);
732
+ line-height: 36px;
733
+ margin: 0 0 var(--SPACING-SM-3);
734
+ padding: 0;
735
+ }
736
+ .duffel-components .error-state__copy {
737
+ color: var(--GREY-700);
738
+ font-size: var(--FONT-SIZES-C1);
739
+ line-height: var(--SPACING-MD-3);
740
+ padding: 0;
741
+ margin: 0;
742
+ }
743
+