-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
972 lines (787 loc) · 24.2 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
/*
gleen -- #4dca00
liteGreen - #84cd2b
*/
/* DESKTOP */
.content .wrap.wrap_pt32 {
max-width: 1150px;
}
.content-add-services {
background-image: radial-gradient(circle 2693px at center, #41a086 0%, #14619f 100%);
font-family: 'Roboto', sans-serif;
}
.item__i_test {
display: block;
margin-bottom: 150px;
}
/* TOP */
.top {
display: flex;
min-height: 100px;
background: #5a5a5a;
background-color: #f5f5f5;
}
.icon {
width: 100px;
background-color: #7fc925;
display: flex;
align-items: center;
justify-content: center;
margin-right: 30px;
}
.icon svg {
fill: #fff;
}
.icon.not svg {
opacity: 0.5;
fill: #fff;
}
.name {
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
max-width: 300px;
}
.name__heading {
font-size: 24px;
}
.name__min-price {
font-size: 18px;
color: #4dca00;
}
.checkoutServices__i .list>.item .top .name p.name__description {
color: #666666;
}
.info {
display: flex;
align-items: center;
font-size: 14px;
color: #000000;
margin-right: 45px;
}
.info__close-icon {
margin-right: 5px;
}
.info__text {
display: inline-block;
margin-right: 4px;
}
.buttons {
margin-left: auto;
display: flex;
align-items: center;
margin-right: 30px;
}
.checkoutServices__i .list>.item .top .btn {
border: 1px solid #4dca00;
border-radius: 3px;
font-size: 16px;
line-height: 14px;
font-weight: 400;
padding: 10px 15px;
background: transparent;
color: #4dca00;
margin-left: 30px;
min-width: 135px;
text-align: center;
}
.checkoutServices__i .list>.item .top .btn:hover {
background-image: linear-gradient(to top, #84cd2b 0%, #5abf3f 100%);
color: #fff;
}
.checkoutServices__i .list>.item .top .btn .btn__icon {
display: none;
}
.checkoutServices__i .list>.item .top .btn.done {
background-image: linear-gradient(to top, #84cd2b 0%, #5abf3f 100%);
border: none;
color: #fff;
line-height: 22px;
min-width: auto;
}
.checkoutServices__i .list>.item .top .btn.done .btn__icon {
background: #fff;
display: inline-block;
width: 22px;
height: 22px;
border-radius: 50%;
text-align: center;
margin-right: 10px;
}
.checkoutServices__i .list>.item .top .btn .btn__icon svg {
fill: #84cd2b;
}
.toggle {
position: relative;
font-size: 16px;
color: #01abe8;
}
.toggle:after {
content: "";
display: inline-block;
width: 11px;
height: 7px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="11" height="7" viewBox="0 0 11 7"><g><g transform="translate(-1843 -898)"><image width="11" height="7" transform="translate(1843 898)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAHCAYAAADebrddAAAAf0lEQVQoU23QMQvBYRDH8c8/ZeBV2ckig4GFV8XCYJBF7F4Vg1K63KOnJ7dcv/p+r7vrfGuNI56Z6zbAArsOS+xxx7gRArxhhFXAfZwxaYQavGIWcFQIJ0xTmGeOiRdEfhU4hB4Oud8Dw7wj1nwHUMOtEAf/wH9wETbYlonlNR8TRBpsIAO4rAAAAABJRU5ErkJggg=="/></g></g></svg>');
background-repeat: no-repeat;
margin-left: 5px;
margin-top: 5px;
}
.toggle.open::after {
transform: rotate(180deg);
}
.checkoutServices__i .list > .item .top .toggle span.hide {
display: none;
}
.checkoutServices__i .list > .item .top .toggle.open span.show {
display: none;
}
.checkoutServices__i .list > .item .top .toggle.open span.hide {
display: inline-block;
}
/* */
.checkoutServices__i .list > .item .top {
background: #ffffff;
}
.checkoutServices__i .list>.item .top .name {
padding: 0;
}
.checkoutServices__i .list>.item .top .name h2,
.checkoutServices__i .list>.item.active .top .name h2 {
color: #000;
margin: 0;
font-weight: 400;
}
/* END TOP */
/* DROP */
.checkoutServices__i .route {
padding: 0;
margin-bottom: 20px;
padding: 0 20px;
}
/* ROUTE */
.route {
display: flex;
padding: 15px;
}
.route__flights-panel {
flex-basis: 30%;
display: flex;
flex-direction: column;
justify-content: flex-end;
margin-right: 20px;
}
.route__title {
color: #000000;
font-size: 14px;
margin-bottom: 10px
}
.route__buttons {
display: flex;
}
.route__buttons a {
font-size: 16px;
display: inline-block;
background-color: #f5f5f5;
border: 1px solid #4dca00;
color: #69c438;
padding: 10px 30px;
white-space: nowrap;
}
.route__buttons a.active {
background-image: linear-gradient(to top, #84cd2b 0%, #5abf3f 100%);
color: #fff;
border: none;
}
.route__buttons a:first-child {
border-radius: 3px 0 0 3px;
}
.route__buttons a:last-child {
border-radius: 0 3px 3px 0;
}
.flightsInfo {
padding: 0 20px;
}
.flightsInfo__way {
}
.flightsInfo__title {
color: #9e9e9e;
}
.flightsInfo__wrap {
display: flex;
flex-wrap: wrap;
}
.flightsInfo__segments {
display: flex;
margin-top: 5px;
}
.flightsInfo__segments > div {
display: flex;
}
.flightsInfo__segment {
display: flex;
flex-direction: column;
margin-right: 40px;
position: relative;
}
.flightsInfo__segment:after {
content: "→";
display: block;
position: absolute;
right: -25px;
}
.flightsInfo__segment:last-child:after {
display: none;
}
.flightsInfo__city {
color: #000;
font-size: 18px;
}
.flightsInfo__city-code {
color: #01abe8;
}
.flightsInfo__date {
margin-top: 5px;
color: #9e9e9e;
}
.route__cancel {
flex-basis: 70%;
padding: 30px 20px 30px 0;
border-bottom: 1px solid #ddd;
display: flex;
align-items: center;
justify-content: flex-end;
}
.route__link-cancel {
color: #9e9e9e;
display: flex;
align-items: center;
}
.route__icon-cancel {
margin-right: 10px;
}
/* END ROUTE */
/* FOOD */
.food {
display: flex;
margin-top: 20px;
padding: 0 18px;
}
.passengers {
flex-basis: 50%;
margin-right: 30px;
position: relative;
}
.passengers > div {
border-bottom: 1px solid #ddd;
}
.passengers > div.passengers__title {
border-bottom: none;
margin-bottom: 5px;
color: #000;
}
.passenger__name {
cursor: pointer;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="507" height="55" viewBox="0 0 507 55"><defs><path id="xwaha" d="M283 1328.05a4 4 0 0 1 4-4h470c.89 0 1.71.29 2.38.78.91-.43 2.06-.3 2.83.4l27.07 24.5c.95.86.95 2.26 0 3.11l-27.07 24.5c-.66.6-1.61.79-2.45.55-.71.69-1.69 1.11-2.76 1.11H287a4 4 0 0 1-4-4z"/></defs><g><g opacity=".5" transform="translate(-283 -1324)"><use fill="#fff" xlink:href="#xwaha"/></g></g></svg>') no-repeat center center;
background-size: contain;
padding: 20px 30px 20px 60px;
margin-bottom: 20px;
color: #01abe8;
position: relative;
transform: translateX(-8px);
}
.passenger__name.focus {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="507" height="55" viewBox="0 0 507 55"><defs><path id="kfwta" d="M283 1161a4 4 0 0 1 4-4h470a4 4 0 0 1 3.17 1.56c.72-.09 1.48.12 2.04.62l27.07 24.5c.95.87.95 2.26 0 3.12l-27.07 24.5c-.9.8-2.3.86-3.26.14-.58.33-1.24.51-1.95.51H287a4 4 0 0 1-4-4z"/><clipPath id="kfwtb"><use fill="#fff" xlink:href="#kfwta"/></clipPath></defs><g><g transform="translate(-283 -1157)"><use fill="#fff" xlink:href="#kfwta"/><use fill="#fff" fill-opacity="0" stroke="#e8e8e8" stroke-miterlimit="50" stroke-width="2" clip-path="url("#kfwtb")" xlink:href="#kfwta"/></g></g></svg>') no-repeat center center;
background-size: contain;
color: #000;
}
.passenger__name:before {
content: "";
display: inline-block;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 26 26" version="1.1" width="50px" height="50px"><g id="surface1"><path fill="#9e9e9e" d="M 16.5625 15.898438 C 16.402344 15.847656 15.398438 15.394531 16.027344 13.484375 L 16.019531 13.484375 C 17.65625 11.800781 18.90625 9.085938 18.90625 6.414063 C 18.90625 2.308594 16.175781 0.15625 13 0.15625 C 9.824219 0.15625 7.109375 2.308594 7.109375 6.414063 C 7.109375 9.097656 8.351563 11.820313 10 13.503906 C 10.640625 15.1875 9.492188 15.8125 9.253906 15.898438 C 5.929688 17.101563 2.03125 19.292969 2.03125 21.457031 C 2.03125 22.039063 2.03125 21.6875 2.03125 22.269531 C 2.03125 25.214844 7.742188 25.886719 13.03125 25.886719 C 18.328125 25.886719 23.96875 25.214844 23.96875 22.269531 C 23.96875 21.6875 23.96875 22.039063 23.96875 21.457031 C 23.96875 19.230469 20.050781 17.054688 16.5625 15.898438 Z "/></g></svg>') no-repeat;
width: 15px;
height: 15px;
background-size: cover;
position: absolute;
left: 30px;
}
.passenger__name.focus:before {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 26 26" version="1.1" width="50px" height="50px"><g id="surface1"><path fill="#85ce2d" d="M 16.5625 15.898438 C 16.402344 15.847656 15.398438 15.394531 16.027344 13.484375 L 16.019531 13.484375 C 17.65625 11.800781 18.90625 9.085938 18.90625 6.414063 C 18.90625 2.308594 16.175781 0.15625 13 0.15625 C 9.824219 0.15625 7.109375 2.308594 7.109375 6.414063 C 7.109375 9.097656 8.351563 11.820313 10 13.503906 C 10.640625 15.1875 9.492188 15.8125 9.253906 15.898438 C 5.929688 17.101563 2.03125 19.292969 2.03125 21.457031 C 2.03125 22.039063 2.03125 21.6875 2.03125 22.269531 C 2.03125 25.214844 7.742188 25.886719 13.03125 25.886719 C 18.328125 25.886719 23.96875 25.214844 23.96875 22.269531 C 23.96875 21.6875 23.96875 22.039063 23.96875 21.457031 C 23.96875 19.230469 20.050781 17.054688 16.5625 15.898438 Z "/></g></svg>') no-repeat;
width: 15px;
height: 15px;
background-size: cover;
position: absolute;
left: 30px;
}
.passenger__select-item {
margin-bottom: 20px;
display: flex;
justify-content: space-between;
align-items: center;
color: #000;
padding-right: 45px;
padding-left: 5px;
}
.passenger__price {
display: flex;
align-items: center;
}
.passenger .remove {
height: 20px;
margin-left: 20px;
}
.passenger__seat-code {
color: #4dca00;
font-size: 1.3em;
margin-left: 10px;
}
.passenger__seat-text_none {
color: #9e9e9e;
float: right;
}
.food__menu {
flex-basis: 50%;
}
.group {
display: flex;
}
.group__item {
color: #000000;
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
margin-right: 2px;
border-top: 4px solid transparent;
border-radius: 4px;
padding: 15px 15px;
background-color: #f3f3f3;
}
.group__item.active {
border-color: #85ce2d;
background-color: #e9e9e6;
}
.group__icon {
margin-bottom: 15px;
display: inline-block;
}
/* icons */
.group__icon_chicken {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAClklEQVRIS62VT0hUURjFz3d9E9EUQZgLoRYRWRSKRZuwMIygoE3SEGQzV10MRE21DI2gQIKCoLDVMHNHaYShTbt2Q38poqSFQVRWs4kiKIcQRb0n7mtGJmVycubtLu8753e/f+8JavjE4/F1nuddBPBeaz3orKWG/jDGDAC44Dyttbt6enpe1RowAuB44dIfRSReM8DQ0FDQWvsJQH1JVeZqAshms14ul0uQPPmXuUiiKoBraiAQOALgPMkWZ07ytud5N7q6uj6ICMsCjDHbAYQA7APQUGwegN0i0kRyB4CtCwblktb6cungLAKkUqlmktcAHCwJvA9gE4At/5i6b/l8fmMsFpsuC0ilUmdJXgfgLWN8B7XWpxfq5jMwxlwB0L8MY19CslNEvmutHy7KwBjTCeDucs39jRVpIfnMWtvmFqzoJZlMZvXk5OQ4gPVVAKaVUm3W2hcAnmit2+YByWTyjIjcrMLcSUcBuMFIu4NSqj0cDj/wMzPGZAG0VwMQkT6STQDChXLdikQisSIgD2BNFYA3JE+IyHMAKwo+j7TWbn/8DFiBeRTAMQAHSmNJ3qurq+u31mYAbCt5905r7e+MA7jFKJLLscZJnlNKfQbQCmCO5CjJnSJyFUDjAuGY1tptug/IAdhQQRYu5AeAtwDqALhPyaoyusda670+IJlMDorIqQoBFYWRHOju7u7zAYXfnKthR0XqJYJE5OnU1NThaDQ64QOK8cPDw5tnZ2dblVKNJNeSVJUCRWSC5FcRea21HivVSSKR2KOUOkSymlEt9fxprR3p7e11vfJ7cFRE7gBYWemNl4ibEJH9kUjEbfefEqXT6fqZmZkOa22ziDSQDPwPTESmSX4B8DIYDGZDodCvov43LET7zwvR/CkAAAAASUVORK5CYII=') no-repeat center center;
width: 24px;
height: 24px;
}
.group__icon_meat {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAASCAYAAACuLnWgAAABe0lEQVRIS7XUsUrDQBgH8P+XQwpBcVcUiiC+gjjUuR3FuPUSIgQs6As4+gIKFQKG3nUz4mad7SC+gggiKjorSqFIcpJgSq1VDptmCCH5vv/v7nIJQfMIw5B1Op0jABUALdM0Ny3LinTaSacoqWk0GmUiamX1SqmK4zjnOv3aiBDCAnDcF7ph23Y4MiKlXIzj2COidQBzQwIflVInhmH4nPOb38ChMwmCYIoxtgegBoBpjDZ5N/UoinZd130brP+BNJvNYhzHyVovaYQPllwbhlGuVqt3/Q++IUEQzDDGrgDM/wPIWh6iKFp2Xfc5u9FDvrZoG8DKCEDWemmaZinb4j1ESrmllKrnAKQRRFTjnB+m18nJ9/2JQqGQrONsXgiAp263W/Q87yNFBj+0vKDsg00RIcQ+gO28wvtyDmzb3slmckFEpbwRpVTbcZzVFJFSngJYyBsBcMs5X9P+d40yABJCnCmlJkcJ+auXiN4T5AXA9LgQAK8Jcj9u5BPEz4E4AvGguwAAAABJRU5ErkJggg==') no-repeat center center;
width: 25px;
height: 24px;
}
.group__icon_special {
background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAATCAYAAAB7u5a2AAACR0lEQVQ4T62US2gTURSG/zPTRLTqRlDjo1tBBBEFKd248lWwiFBQaCc3CMGVoAs3BXEvouhGI5k7CT4I6CK60FXoQizqorjztQhdRJQWFDpNlNxfbk1KO50U2ubu5jy+/5xzzx0JgsADMABgN8kekjURGReRsud501jHEa31LIBNMYxZknd6e3tvDA8P/1mLhvi+/0pETqyQ/N4YM5jJZH6uVsDC0yLiRxK/A9i5yPax0Wj0Z7PZ0NoKhUIfSUXyAMmEiMwYY65FC5BSqZQMw/ALgL5FsN8AnorIHpKnrZ3kLaXUVa31GQBPoqMUkX2e531eXKTYD631cQCvY9p+RvK5iNwFsNUYc9BxnA8ANrZimwBckuNKqWPR/Hm4PUEQXCZ5O0ag0mw2L7mua4UeisgVKyQib0ie+t8UB5RSEx3hrQ7OAbgPYFsk8IExZkxE7P3M2LUFcL0FvqiU0nGXvVB521kqlTaHYThkL6ptcxyH9Xr9ca1Wa6ZSqS3JZPJsyzeplJrstEUL8FwutyORSNjA9jxXu3nR+Oko3K5gt059AU5SgiCYA7ChG3QR+bRk5lrrlwAGuwEHcG8J3Pf9CyLyqBtwkv1L4JVKpadarb4DcGidAuV0Oj20bBXz+fx+x3He2oeyRoEpx3GOjI6O/lgGt8BCoXDUGFMGsH2VAt9c1z05MjLy1ebFwq2jWCymjDE3SZ5fKa4l/te+7EajMZbNZn+1C+oIbwfk8/m9ruvaF3sYwC6S86sqInMiMmWMmSD5Iu5//w8BKvHr4XpnpAAAAABJRU5ErkJggg==') no-repeat center center;
width: 25px;
height: 24px;
}
/* end icons */
.food .list {
background: #e9e9e6;
margin-top: 5px;
border-radius: 3px;
}
.food .list__i {
padding: 20px 0;
}
.food .list__i wrap {
display: flex;
flex-wrap: wrap;
padding: 0 30px;
}
.food .item {
width: 45%;
padding: 0;
float: none;
margin-bottom: 0;
margin: 0 2.5% 15px 2.5%;
color: #000;
}
.food .img {
position: relative;
}
.food__counter {
position: absolute;
color: #fff;
background-image: linear-gradient(to top, #84cd2b 0%, #5abf3f 100%);
width: 25px;
height: 25px;
border-radius: 50%;
right: -10px;
top: -10px;
text-align: center;
line-height: 25px;
}
.food__counter svg {
fill: #fff;
}
.food .img img {
height: 160px;
}
.food .description {
margin-top: 10px;
min-height: 55px;
}
.food .price {
font-size: 22px;
margin-top: 10px;
}
.food .btn {
border: 1px solid #4dca00;
border-radius: 3px;
font-size: 16px;
line-height: 14px;
font-weight: 400;
padding: 12px 30px;
background: transparent;
color: #4dca00;
display: inline-block;
margin-top: 15px;
}
.food .btn:hover {
background-image: linear-gradient(to top, #84cd2b 0%, #5abf3f 100%);
color: #fff;
}
.food .btn.selected {
background-image: linear-gradient(to top, #84cd2b 0%, #5abf3f 100%);
color: #fff;
border: 1px solid transparent;
}
.food .img,
.food .name,
.food .description
{
padding: 0;
}
.checkoutServices__i .customScroll_height .mCSB_scrollTools {
right: -100px;
}
.checkoutServices__i .customScroll_height {
max-height: 700px;
}
/* END FOOD */
/* END DROP */
/* SEAT */
.seatBlock {
margin-top: 50px;
padding: 0px 20px;
}
.seatBlock .passengers {
padding: 30px 15px;
}
.seatBlock .passenger__name {
transform: translateX(0);
margin-bottom: 5px;
}
.seatBlock .passenger__price {
float: right;
}
.seatBlock__inner {
display: flex;
box-shadow: 0px 0px 4px 0px #bfbfbf;
border-radius: 4px;
background: #fafafa;
}
.infoSeat {
position: absolute;
bottom: 0;
width: 100%;
padding: 20px 0;
}
.passengers > div.infoSeat {
border: none;
}
.infoSeat__title {
font-size: 1.5em;
color: #000;
}
.infoSeat__list {
margin-top: 15px;
}
.infoSeat__item {
display: flex;
align-items: center;
margin-bottom: 10px;
color: #000;
}
.infoSeat__lable {
display: inline-block;
width: 20px;
height: 20px;
margin-right: 15px;
position: relative;
}
.infoSeat__lable_free {
background: rgba(27,117,188,0.4);
}
.infoSeat__lable_selected {
background: #ffda00;
}
.infoSeat__lable_disabled {
background: #e3e3e3;
}
.infoSeat__lable_selectedByOrderPassenger {
background: #e3e3e3;
}
.infoSeat__lable_selectedByOrderPassenger:after {
content: "";
display: block;
position: absolute;
width: 14px;
height: 14px;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #ffda00;
}
.infoSeat__lable_exit {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="23" height="22.5" viewBox="0 0 23 22.5" id="icon_seatmap_exit_human_left" x="37.6"><symbol id="ca" viewBox="0 -22.5 16.5 22.5"><path d="M11.4-22.3c-.3 0-.6.2-.8.5L7.3-15c-.1.3-.4.4-.6.4-.4 0-.8-.4-.8-.9v-1.9c0-.9-.6-1.7-1.4-1.7H2c-.4 0-.8.4-.8.9s.3.9.8.9h2v2.3c0 .9.2 1.8.6 2.5l.7 1.5c.1.3.1.6 0 .9-.2.4-.4.6-.7.6-.3 0-.5-.2-.7-.5L3-11.8c-.1-.2-.3-.3-.5-.3-.3 0-.4.2-.5.3 0 .1-.1.3 0 .6l.8 1.7c.5.8 1.2 1.2 2 1.2h6.6c.2 0 .3-.1.4-.3l.2-.5c.2-.5.7-.8 1.2-.8h1.6c.3 0 .5-.3.5-.6s-.3-.5-.6-.5h-2.8c-.4 0-.8.3-1.1.7l-.1.3h-.5l-.1-.3-.6-1.2c-.6-1.1-.6-2.6 0-3.7l2.7-5.4c.2-.3.2-.7 0-1-.2-.5-.5-.7-.8-.7zm-.2 17c0-1.1-.9-1.9-1.9-1.9s-2 .8-2 1.9.9 1.9 1.9 1.9 2-.9 2-1.9z" fill="#E92629"/><path fill="none" stroke="#E92629" stroke-width="1.5" stroke-miterlimit="10" d="M11.8-21.8c2.2 0 4 1.8 4 4v11.5c0 3-2.5 5.5-5.5 5.5h-4C3.3-.8.8-3.3.8-6.3"/></symbol><use xlink:href="#ca" width="16.5" height="22.5" y="-22.5" transform="matrix(-1 0 0 -1 16.5 0)" overflow="visible"/></svg>');
background-size: contain;
}
.seatSelect {
display: flex;
justify-content: center;
flex-basis: 50%;
}
.customScroll_height-seat {
max-height: 400px;
}
/* */
.seatBlock__footer {
padding: 10px 0;
}
.seatBlock__footer p {
margin: 15px 0;
}
.seatBlock__footer ul {
margin-left: 15px;
}
.seatBlock__link {
color: #01abe8;
border-bottom: 1px solid rgba(1, 171, 232, 0.5);
}
.seatBlock__link:hover {
border-color: rgba(1, 171, 232, 0);
}
/* END SEAT */
/* BAGGAGE */
.baggage .passenger .remove {
position: static;
display: block;
transform: translate(0);
}
.baggage .passenger .remove:after {
display: none;
}
.baggage {
display: flex;
margin-top: 50px;
padding: 0 18px;
}
.baggage-select {
flex-basis: 50%;
background: #e9e9e6;
border-radius: 5px;
padding: 20px;
color: #000;
}
.baggage-select__title {
font-size: 18px;
margin-bottom: 10px;
}
.baggage-select__title-small {
font-size: 14px;
}
.baggage-select__item {
background: #f3f3f3;
padding: 15px;
display: flex;
align-items: center;
}
.baggage-select__item service-picker {
margin-left: auto;
}
/* service-picker */
.baggageControl .baggageControl__i {
border: none;
}
.baggageControl a {
/* position: relative; */
}
.baggageControl a.minus {
font-size: 0;
background: #dcdcdc;
border: none;
}
.baggageControl a.minus:after {
content: "";
display: block;
position: absolute;
width: 17px;
height: 2px;
background: #4d4d4d;
top: 50%;
left: 50%;
margin-left: -9px;
}
.baggageControl .val p {
font-size: 18px;
color: #000;
}
.baggageControl a.plus {
font-size: 0;
border: none;
background: #7fc925;
}
.baggageControl a.plus:after,
.baggageControl a.plus:before {
content: "";
display: block;
position: absolute;
width: 17px;
height: 2px;
background: #fff;
top: 50%;
left: 50%;
margin-left: -9px;
}
.baggageControl a.plus:after {
transform: rotate(90deg);
}
/* END service-picker */
.baggage-select__price {
margin-left: 15px;
font-size: 18px;
}
/* END BAGGAGE */
/* Новыя схема самолета */
.deck-label {
display: none;
}
.seatMap .planeBody__i {
width: auto;
}
.seatMap .planeBody__i table tr td div.seat-prop-exit:before {
background-repeat: no-repeat;
background-position: 100px 0;
}
.seatMap .seat.seat_disabled,
.infoSeat__lable_disabled {
background: transparent;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.56 15" fill="#949494"><defs></defs><g><g><rect class="cls-1" x="15.71" y="5" width="1.85" height="10"/><rect class="cls-1" y="5" width="1.85" height="10"/><rect class="cls-1" x="7.69" y="7.9" width="2.18" height="12.02" transform="translate(22.69 5.13) rotate(90)"/><rect class="cls-1" x="2.78" y="-0.01" width="12" height="12.02" transform="translate(14.78 -2.78) rotate(90)"/></g></g></svg>');
background-repeat: no-repeat;
}
.seatSelect .seat.active,
.infoSeat__lable_selected {
position: relative;
background: transparent;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.56 15" fill="#2c9f86"><defs></defs><g><g><rect class="cls-1" x="15.71" y="5" width="1.85" height="10"/><rect class="cls-1" y="5" width="1.85" height="10"/><rect class="cls-1" x="7.69" y="7.9" width="2.18" height="12.02" transform="translate(22.69 5.13) rotate(90)"/><rect class="cls-1" x="2.78" y="-0.01" width="12" height="12.02" transform="translate(14.78 -2.78) rotate(90)"/></g></g></svg>');
background-repeat: no-repeat;
}
.seatSelect .seat.active:after,
.seatSelect .seat.active:before,
.infoSeat__lable_selected:after,
.infoSeat__lable_selected:before {
content: "";
position: absolute;
width: 20px;
height: 20px;
border-radius: 50%;
background: #49ca0294;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.seatSelect .seat.active:after,
.infoSeat__lable_selected:after {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 28 24" version="1.1" width="15px" height="12px" fill="#fff"><g><path d="M 22.566406 4.730469 L 20.773438 3.511719 C 20.277344 3.175781 19.597656 3.304688 19.265625 3.796875 L 10.476563 16.757813 L 6.4375 12.71875 C 6.015625 12.296875 5.328125 12.296875 4.90625 12.71875 L 3.371094 14.253906 C 2.949219 14.675781 2.949219 15.363281 3.371094 15.789063 L 9.582031 22 C 9.929688 22.347656 10.476563 22.613281 10.96875 22.613281 C 11.460938 22.613281 11.957031 22.304688 12.277344 21.839844 L 22.855469 6.234375 C 23.191406 5.742188 23.0625 5.066406 22.566406 4.730469 Z"></path></g></svg>');
background-repeat: no-repeat;
background-size: cover;
transform: translate(-6px, -6px);
width: 10px;
height: 10px;
/* z-index: 1; */
}
.seatMap .seat {
background: transparent;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 17.56 15" fill="#2c9f86"><defs></defs><g><g><rect class="cls-1" x="15.71" y="5" width="1.85" height="10"/><rect class="cls-1" y="5" width="1.85" height="10"/><rect class="cls-1" x="7.69" y="7.9" width="2.18" height="12.02" transform="translate(22.69 5.13) rotate(90)"/><rect class="cls-1" x="2.78" y="-0.01" width="12" height="12.02" transform="translate(14.78 -2.78) rotate(90)"/></g></g></svg>');
background-repeat: no-repeat;
}
.seatSelect .seatName {
z-index: 1;
}
/* Крылья */
.seatMap .planeBody__i table tr.atWing td:first-child > div:before,
.seatMap .planeBody__i table tr.atWing td:last-child > div:before{
display: none;
}
.seatMap .planeBody__i table tr.wingsStart td:first-child .seat:after {
left: -156px;
top: 80px;
width: 178px;
-webkit-transform: rotate(-62deg);
transform: rotate(-62deg);
}
.seatMap .planeBody__i table tr.wingsStart td:last-child .seat:after {
right: -156px;
top: 80px;
width: 178px;
-webkit-transform: rotate(62deg);
transform: rotate(62deg);
}
.seatMap .planeBody__i table tr.wingsEnd td:first-child .seat:after {
left: -101px;
top: 7px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
.seatMap .planeBody__i table tr.wingsEnd td:last-child .seat:after {
top: 7px;
-webkit-transform: rotate(0);
transform: rotate(0);
}
/* END крылья */
/* END Новыя схема самолета */
.invoiceTotal {
color: #fff;
}
.invoiceTotal .title {
color: #fff;
}
.invoiceTotal .total td {
color: #fff;
}
.invoiceTotal .total td:first-child {
color: #fff;
}
.invoiceTotal .total p a {
color: #fff;
border-bottom: #fff;
}
.totalTable {
margin: 0;
}
.checkoutServices {
margin-top: 40px;
}
.checkoutServices__i>.title {
color: #fff;
}
.btn.btn_back {
color: #fff;
border-color: #fff;
border-radius: 5px;
}
.payMethods .title,
.radioBtn label,
.payMethods p {
color: #fff;
}
/* END DESKTOP */