am-commons 0.0.1 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/am-commons-0.0.1.gem +0 -0
  3. data/lib/am-commons/version.rb +1 -1
  4. data/package.json +1 -1
  5. data/stylesheets/_am-commons.scss +1 -2
  6. data/stylesheets/am-commons/_am-american-flags.scss +93 -0
  7. data/stylesheets/am-commons/_am-components.scss +1767 -0
  8. data/stylesheets/am-commons/_am-footer.scss +102 -0
  9. data/stylesheets/am-commons/_am-header.scss +160 -0
  10. data/stylesheets/am-commons/_am-icons-definition.scss +616 -0
  11. data/stylesheets/am-commons/_am-icons.scss +57 -0
  12. data/stylesheets/am-commons/_am-main-menu.scss +243 -0
  13. data/stylesheets/am-commons/_am-print.scss +35 -0
  14. data/stylesheets/am-commons/_am-social-menu.scss +34 -0
  15. data/stylesheets/am-commons/_am-sprite-splash.scss +109 -0
  16. data/stylesheets/am-commons/_am-utils.scss +249 -0
  17. data/stylesheets/am-commons/_am-variables.scss +69 -0
  18. data/stylesheets/am-commons/_epp-grid.scss +1395 -0
  19. data/stylesheets/am-commons/_epp-mixins.scss +38 -0
  20. data/stylesheets/am-commons/_epp-pixelator.scss +352 -0
  21. data/stylesheets/am-commons/_epp-utils.scss +1230 -0
  22. data/stylesheets/am-commons/_fonts.scss +156 -0
  23. data/stylesheets/am-commons/am-airlines.scss +74 -0
  24. data/stylesheets/am-commons/am-checkout.scss +258 -0
  25. data/stylesheets/am-commons/am-common.scss +19 -0
  26. data/stylesheets/am-commons/am-flights-result.scss +2404 -0
  27. data/stylesheets/am-commons/am-flights-resultv2.scss +390 -0
  28. data/stylesheets/am-commons/am-not-found.scss +74 -0
  29. data/stylesheets/am-commons/am.scss +16 -0
  30. data/stylesheets/am-commons/epp-visual-help.scss +36 -0
  31. data/stylesheets/am-commons/epp.scss +12 -0
  32. data/stylesheets/am-commons/flight-result-searchbox.scss +69 -0
  33. metadata +29 -8
  34. data/stylesheets/am-commons/_am.scss +0 -5
  35. data/stylesheets/am-commons/_components.scss +0 -1
  36. data/stylesheets/am-commons/_utils.scss +0 -5
  37. data/stylesheets/am-commons/am/_variables.scss +0 -0
  38. data/stylesheets/am-commons/components/_example.scss +0 -0
  39. data/stylesheets/am-commons/utils/_example.scss +0 -0
@@ -0,0 +1,2404 @@
1
+
2
+ @import "compass/css3";
3
+ @import "compass/support";
4
+ @import "compass/utilities/general/clearfix";
5
+ @import "compass/css3/transition";
6
+
7
+ @import "am-variables";
8
+ @import "epp-mixins";
9
+
10
+
11
+ @import "am-utils";
12
+ @import "am-icons";
13
+
14
+ @mixin striped-bg($bg-color: #ccc, $darken-amount: 5%, $stripe-color: lighten($bg-color, $darken-amount)) {
15
+ background-color: $bg-color;
16
+ @include background-image(linear-gradient(-45deg, $stripe-color 25%, transparent 25%, transparent 50%, $stripe-color 50%, $stripe-color 75%, transparent 75%, transparent));
17
+ background-size: 10px 10px;
18
+ }
19
+
20
+ @mixin striped-bg2($bg-color: $gray-lightest, $color: $orange) {
21
+ background-color: $bg-color;
22
+ @include background-image(linear-gradient(-45deg, $color 25%, transparent 25%, transparent 50%, $color 50%, $color 75%, transparent 75%, transparent));
23
+ background-size: 50px 50px;
24
+ }
25
+
26
+ .header {
27
+ position:relative;
28
+ margin-top:8px;
29
+
30
+ &__suggestion {
31
+ position:absolute;
32
+ right:8px;
33
+ top:-10px;
34
+ }
35
+
36
+ }
37
+
38
+
39
+
40
+ .view-detail, .view-detail-icon {
41
+ //position: relative;
42
+ //top:8px;
43
+
44
+ @include respond-to(ph) {
45
+ //top:0px;
46
+ }
47
+
48
+ }
49
+
50
+ .airline-name {
51
+ display:inline-block;
52
+ }
53
+
54
+ .cluster {
55
+ position:relative;
56
+ padding:24px 8px 8px;
57
+ background:$gray-lightest;
58
+ border-bottom:2px solid $orange;
59
+ margin-bottom:24px;
60
+
61
+ @include respond-to(ph) {
62
+ padding-right:24px;
63
+ }
64
+
65
+ &:after {
66
+ content:"";
67
+ position:absolute;
68
+ top:0px;
69
+ right:0px;
70
+ height:100%;
71
+ width:32px;
72
+ background:$orange;
73
+
74
+ @include respond-to (ph) {
75
+ width:16px;
76
+ }
77
+ }
78
+
79
+ &--favorite {
80
+ &:after {
81
+ content:"";
82
+ position:absolute;
83
+ top:0px;
84
+ right:0px;
85
+ height:100%;
86
+ width:32px;
87
+ //background-size: 10px 10px;
88
+ //background-image: linear-gradient(135deg, rgb(255,121,0) 25%, transparent 25%, transparent 50%, rgb(255,121,0) 50%, rgb(255,121,0) 75%, transparent 75%, transparent);
89
+ //background-color:$gray-lightest;
90
+ //@include striped-bg(#FF7900, 10%);
91
+ background-image:url("#{$staticPath}img/common/stripe.png");
92
+ }
93
+ }
94
+
95
+ & .favorite {
96
+ @include font-rem(bold, 24px, 24px);
97
+ position:absolute;
98
+ top:16px;
99
+ right:8px;
100
+ z-index:3;
101
+ background:$white;
102
+ @include border-radius(50%);
103
+ padding:8px;
104
+ cursor:pointer;
105
+ border:2px solid $gray-lightest;
106
+ text-align:center;
107
+
108
+ &--active {
109
+ border-color:$white;
110
+ background:$orange;
111
+ color:$white;
112
+ }
113
+ }
114
+
115
+ & .segment {
116
+ background:$white;
117
+ margin-bottom:16px;
118
+ //border:2px solid $white;
119
+
120
+ // &:hover {
121
+ // background:#DEEFF9;
122
+ // cursor:pointer;
123
+
124
+ // & .segment-detail {
125
+ // background:$white;
126
+ // }
127
+ // }
128
+
129
+ &--selected {
130
+ border:2px solid #DFDFDF;
131
+
132
+ &:hover {
133
+ background:$white !important;
134
+ }
135
+
136
+ }
137
+
138
+ &__title {
139
+ text-align:center;
140
+ padding:0px;
141
+ margin:0px 0px 16px 0px;
142
+
143
+ &--detail {
144
+ margin-top:30px;
145
+ @include respond-to(ph) {
146
+ margin-top:0px;
147
+ }
148
+ }
149
+
150
+ @include respond-to(ph) {
151
+ text-align:left;
152
+ padding-left:40px;
153
+ margin-bottom:0px;
154
+ }
155
+ }
156
+
157
+ &__container-grafic {
158
+ text-align:center;
159
+
160
+ }
161
+
162
+ &__items {
163
+ display:table;
164
+ width:100%;
165
+ padding-bottom:8px;
166
+ min-height:96px;
167
+
168
+ &:hover {
169
+ background:#DEEFF9;
170
+ cursor:pointer;
171
+ }
172
+
173
+ &__item {
174
+ box-sizing:border-box;
175
+ display:table-cell;
176
+ vertical-align:middle;
177
+ padding:8px 0px 0px;
178
+
179
+ @include respond-to(ph) {
180
+ display:block;
181
+ }
182
+
183
+ & img {
184
+ vertical-align:middle;
185
+ }
186
+
187
+ &--fixed {
188
+ width:120px;
189
+
190
+ @include respond-to(ph) {
191
+ width:auto;
192
+ }
193
+
194
+ &__info {
195
+ display:table-cell;
196
+ vertical-align:middle;
197
+ padding:0px 8px 0px 16px;
198
+
199
+ &__row {
200
+
201
+
202
+ }
203
+
204
+ &--airline {
205
+ padding-left:4px !important;
206
+ }
207
+
208
+ }
209
+
210
+ }
211
+
212
+ &--time {
213
+ width:104px;
214
+
215
+ @include respond-to(ph) {
216
+ text-align:left !important;
217
+ width:auto;
218
+ padding-left:40px !important;
219
+ }
220
+
221
+ }
222
+
223
+ &__info {
224
+ display:table-cell;
225
+ vertical-align:middle;
226
+
227
+ &__row {
228
+ margin:0px;
229
+
230
+ }
231
+
232
+ }
233
+
234
+ &--detail {
235
+ @include respond-to(ph) {
236
+ display:block;
237
+ }
238
+
239
+ &--view {
240
+ @include respond-to(ph) {
241
+ padding-left:40px !important;
242
+ }
243
+ }
244
+
245
+ }
246
+
247
+
248
+ }
249
+
250
+ }
251
+
252
+ }
253
+
254
+ }
255
+
256
+ .price-box {
257
+ padding-right:40px !important;
258
+ text-align:center;
259
+
260
+ &__container {
261
+ width:100%;
262
+ max-width:256px;
263
+
264
+ }
265
+
266
+ &__table {
267
+ border:0px;
268
+ background:transparent;
269
+ padding:0px;
270
+ margin:0px 0px 32px 0px;
271
+ text-align:left;
272
+
273
+ &__price {
274
+ width:10%;
275
+ }
276
+
277
+ & tr {
278
+ border:0px;
279
+ padding:0px;
280
+ margin:0px;
281
+
282
+ & td, th {
283
+ border:0px;
284
+ padding:0px;
285
+ margin:0px;
286
+ font-weight:normal;
287
+ }
288
+
289
+ }
290
+
291
+ }
292
+
293
+ &__price {
294
+ color:$orange-dark;
295
+ }
296
+
297
+ }
298
+
299
+ .promo-card {
300
+ display:inline-block;
301
+ padding-right:16px;
302
+ }
303
+
304
+ .airport-point {
305
+ background:$gray;
306
+ width:18px;
307
+ height:18px;
308
+ @include border-radius(50%);
309
+ position:absolute;
310
+ top:calc(50% - 9px);
311
+ left:calc(50% - 14px);
312
+
313
+ &:before {
314
+ content:"";
315
+ display:block;
316
+ height:8px;
317
+ width:8px;
318
+ position:absolute;
319
+ left:3px;
320
+ top:3px;
321
+ @include border-radius(50%);
322
+ background:$orange-dark;
323
+ z-index:2;
324
+ border:2px solid $white;
325
+ }
326
+
327
+ &--stop {
328
+ background:$gray-light;
329
+
330
+ &:before {
331
+ background:$notification;
332
+ }
333
+
334
+ }
335
+
336
+
337
+ &--technique {
338
+ background:transparent;
339
+
340
+ &:before {
341
+ left:5px;
342
+ top:5px;
343
+ box-sizing:border-box;
344
+ @include border-radius(0px);
345
+ background:$notification;
346
+ }
347
+ }
348
+
349
+ &--change {
350
+ background:$gray-light;
351
+
352
+ &:before {
353
+ background:$red;
354
+ }
355
+
356
+ &:after {
357
+ content:"";
358
+ display:block;
359
+ height:4px;
360
+ width:18px;
361
+ position:absolute;
362
+ left:0px;
363
+ top:7px;
364
+ background:$white;
365
+
366
+ }
367
+
368
+ &--horizontal {
369
+ &:after {
370
+ height:18px;
371
+ width:4px;
372
+ left:7px;
373
+ top:0px;
374
+ }
375
+ }
376
+
377
+ }
378
+
379
+ }
380
+
381
+ .night-flight {
382
+ line-height:24px;
383
+ display:inline-block;
384
+ }
385
+
386
+ .align-middle {
387
+ vertical-align:middle;
388
+ }
389
+
390
+ .flight-line {
391
+
392
+ position:absolute;
393
+ height:100%;
394
+ background:$gray;
395
+ width:8px;
396
+
397
+ &--stop {
398
+ background-size: 15px 15px;
399
+ /*background-image: -webkit-linear-gradient(bottom left, rgba(black, 0.1) 25%, transparent 25%, transparent 50%, rgba(black, 0.1) 50%, rgba(black, 0.1) 75%, transparent 75%, transparent);
400
+ background-image: -o-linear-gradient(bottom left, rgba(black, 0.1) 25%, transparent 25%, transparent 50%, rgba(black, 0.1) 50%, rgba(black, 0.1) 75%, transparent 75%, transparent);*/
401
+ background-image: linear-gradient(to top left, rgb(170,170,170) 25%, transparent 25%, transparent 50%, rgb(170,170,170) 50%, rgb(170,170,170) 75%, transparent 75%, transparent);
402
+ background-color:$gray-lightest;
403
+ min-height:56px;
404
+ }
405
+
406
+ &--start {
407
+ top:50%;
408
+ height:50%;
409
+ }
410
+
411
+ &--finish {
412
+ bottom:50%;
413
+ height:50%;
414
+ }
415
+
416
+ &-horizontal {
417
+ height:8px;
418
+ width:100%;
419
+ position:absolute;
420
+ background:$gray;
421
+ top:calc(50% - 16px);
422
+
423
+ &--stop {
424
+ background-size: 15px 15px;
425
+ /*background-image: -webkit-linear-gradient(bottom left, rgba(black, 0.1) 25%, transparent 25%, transparent 50%, rgba(black, 0.1) 50%, rgba(black, 0.1) 75%, transparent 75%, transparent);
426
+ background-image: -o-linear-gradient(bottom left, rgba(black, 0.1) 25%, transparent 25%, transparent 50%, rgba(black, 0.1) 50%, rgba(black, 0.1) 75%, transparent 75%, transparent);*/
427
+ background-image: linear-gradient(to top left, rgb(170,170,170) 25%, transparent 25%, transparent 50%, rgb(170,170,170) 50%, rgb(170,170,170) 75%, transparent 75%, transparent);
428
+ background-color:$gray-lightest;
429
+ }
430
+
431
+ &--start {
432
+ border-top-left-radius:4px;
433
+ border-bottom-left-radius:4px;
434
+ }
435
+
436
+ &--finish {
437
+ border-top-right-radius:4px;
438
+ border-bottom-right-radius:4px;
439
+ }
440
+
441
+ }
442
+
443
+ }
444
+
445
+ .segment-detail {
446
+ border-top:2px solid #F2F2F2;
447
+ padding-top:16px;
448
+ }
449
+
450
+ .segment-detail-horizontal {
451
+ font-size:0px;
452
+ display:table;
453
+ width:100%;
454
+ }
455
+
456
+
457
+
458
+ .segment-detail-step-horizontal {
459
+ display:table-cell;
460
+ position:relative;
461
+
462
+ &__visual {
463
+ height:40px;
464
+
465
+
466
+ & .airport-point {
467
+ top:calc(50% - 21px);
468
+ left:calc(50% - 12px);
469
+ }
470
+
471
+ & .airport-point--start {
472
+ left:0%;
473
+ }
474
+
475
+ & .airport-point--finish {
476
+ left:calc(100% - 18px);
477
+ }
478
+ }
479
+
480
+ &__description {
481
+ min-height:8px;
482
+ position:absolute;
483
+ top:16px;
484
+ left:calc(50% - 4px);
485
+ text-align:left;
486
+
487
+ &--start {
488
+ top:-24px;
489
+ left:0px;
490
+ }
491
+
492
+ &--finish {
493
+ top:-24px;
494
+ right:0px;
495
+ text-align:right;
496
+ }
497
+
498
+ &--info {
499
+ padding-left:4px;
500
+ border-left:2px solid $gray-light;
501
+ min-width:96px;
502
+
503
+ &__text {
504
+ width:100%;
505
+ }
506
+ /*&:before {
507
+ position:absolute;
508
+ top:calc(50% - 4px);
509
+ left:calc(50% - 6px);
510
+ content:"";
511
+ height:16px;
512
+ width:2px;
513
+ background:$gray-light;
514
+ }*/
515
+
516
+ }
517
+
518
+ }
519
+
520
+ }
521
+
522
+ .airline-logo {
523
+ width:32px;
524
+ height:32px;
525
+
526
+ &--comparative {
527
+ @include border-radius(50%);
528
+ }
529
+
530
+ }
531
+
532
+ .segment-detail-step {
533
+ position:relative;
534
+ display:table;
535
+
536
+ @include respond-to(ph){
537
+ display:block;
538
+ margin-left:24px;
539
+ }
540
+
541
+ &__info {
542
+ display:table-cell;
543
+ vertical-align:middle;
544
+ width:220px;
545
+ text-align:right;
546
+ padding-right:16px;
547
+ word-break: break-all;
548
+ }
549
+
550
+ &__visual {
551
+ display:table-cell;
552
+ vertical-align:middle;
553
+ position:absolute;
554
+ height:100%;
555
+ width:18px;
556
+ min-height:16px;
557
+ z-index:10;
558
+ }
559
+
560
+ &__description {
561
+ display:table-cell;
562
+ vertical-align:middle;
563
+ padding:8px 16px;
564
+
565
+ @include respond-to(ph) {
566
+ display:block;
567
+ }
568
+
569
+ &--info {
570
+ position:relative;
571
+ margin-left:8px;
572
+ padding:8px 16px;
573
+ background:$gray-lightest;
574
+ border-left:2px solid $gray-light;
575
+
576
+ &:before {
577
+ position:absolute;
578
+ top:calc(50% - 1px);
579
+ left:-20px;
580
+ content:"";
581
+ height:2px;
582
+ width:20px;
583
+ background:$gray-light;
584
+ }
585
+
586
+ &__cell {
587
+ display:table-cell;
588
+ vertical-align:middle;
589
+
590
+ @include respond-to(ph){
591
+ display:block;
592
+ }
593
+
594
+ &--logo {
595
+ padding-left:16px;
596
+ padding-right:8px;
597
+
598
+ @include respond-to(ph) {
599
+ padding-left:0px;
600
+ float:left;
601
+ }
602
+
603
+ & img {
604
+ width:32px;
605
+ height:32px;
606
+ background:$white;
607
+ }
608
+ }
609
+ }
610
+
611
+ }
612
+
613
+ &--technique {
614
+ position:relative;
615
+ margin-left:8px;
616
+ }
617
+
618
+ &--table {
619
+ display:table;
620
+ border-color:$gray;
621
+
622
+ @include respond-to(ph) {
623
+ display:block;
624
+ }
625
+
626
+ }
627
+
628
+ }
629
+
630
+ &:nth-child(odd) {
631
+
632
+ }
633
+
634
+ &:nth-child(even) {
635
+
636
+ }
637
+
638
+ & .info-destination {
639
+ margin-bottom:16px;
640
+
641
+ @include respond-to(ph) {
642
+ margin-bottom:0px;
643
+ padding-left:8px;
644
+ }
645
+ }
646
+
647
+ & .change-representation {
648
+ @include respond-to(ph) {
649
+ display:block;
650
+ }
651
+ }
652
+
653
+ }
654
+
655
+ .info-place {
656
+ display:block;
657
+ text-align:right;
658
+
659
+ @include respond-to(ph){
660
+ text-align:left;
661
+ }
662
+ }
663
+
664
+ .iata-code {
665
+ color:$orange-dark;
666
+ font-weight:bold;
667
+ }
668
+
669
+ .search-ctn {
670
+ background-image:url('http://ux.almundo.com/vuelos/img/fondo-vuelos.jpg');
671
+ background-size:cover;
672
+ background-position:center bottom;
673
+ }
674
+
675
+ .search-container {
676
+ padding-bottom:104px;
677
+ }
678
+
679
+ .search {
680
+ background:$white;
681
+ background:rgba(255,255,255,0.8);
682
+ margin-bottom:0px !important;
683
+ height:auto !important;
684
+
685
+ &--research {
686
+ //background:$gray-lighter;
687
+ background:$orange;
688
+ }
689
+
690
+ & * {
691
+ outline:none;
692
+ }
693
+
694
+ &__title {
695
+ margin-top:40px;
696
+ margin-bottom:40px;
697
+ line-height:48px !important;
698
+ }
699
+
700
+ /*& [class*="icon-"] {
701
+ color:$gray-light;
702
+ }*/
703
+
704
+ &__label {
705
+ display:inline-block;
706
+ }
707
+
708
+ &__input {
709
+ padding-left:28px !important;
710
+ }
711
+
712
+ &__icon {
713
+ position:absolute;
714
+ top:12px;
715
+ left:16px;
716
+ }
717
+
718
+ &__icon--first {
719
+ position:absolute;
720
+ top:12px;
721
+ left:10px;
722
+
723
+ &--rp {
724
+ @include respond-to(dt) {
725
+ left:16px;
726
+ }
727
+ @include respond-to(ph) {
728
+ left:10px;
729
+ }
730
+ }
731
+ }
732
+
733
+ &__container {
734
+ position:relative;
735
+ }
736
+
737
+ &__details {
738
+ //position:absolute;
739
+ //left:0px;
740
+ display:inline-block;
741
+ background:$white;
742
+ //background:rgba(255,255,255,0.8);
743
+ //padding:16px;
744
+
745
+ &--passenger {
746
+ display:none;
747
+ margin-top:4px !important;
748
+ box-sizing:border-box;
749
+ min-width:338px;
750
+ position:absolute;
751
+ z-index:3;
752
+ //box-shadow:1px -1px 0px $gray-lighter inset, -1px 0px 0px $gray-lighter inset;
753
+ box-shadow:0px 0px 3px rgba(0,0,0,0.75);
754
+ @include border-radius(4px);
755
+ border:4px solid $gray-lighter;
756
+ }
757
+
758
+ &--class {
759
+ margin-top:16px;
760
+ box-sizing:border-box;
761
+ min-width:168px;
762
+ position:absolute;
763
+ z-index:3;
764
+ box-shadow:1px -1px 0px $gray-lighter inset, -1px 0px 0px $gray-lighter inset;
765
+ }
766
+
767
+ &__container {
768
+ padding:16px 8px;
769
+ background:$white;
770
+ min-width:120px;
771
+ border-width:0px 1px 1px 1px;
772
+ border-style:solid;
773
+ border-color:$gray-lightest;
774
+
775
+ & .label-age {
776
+ //background:$notification-light;
777
+ //padding:4px;
778
+ display:inline-block;
779
+ line-height:32px !important;
780
+ //margin-top:4px;
781
+ }
782
+
783
+ & .separator {
784
+ border-bottom:1px dashed $gray-lighter;
785
+ }
786
+
787
+ & .circle-button {
788
+ @include font-rem(normal, 24px, 24px);
789
+ cursor:pointer;
790
+
791
+ &--disabled {
792
+ cursor:auto;
793
+ color:$gray-lighter;
794
+ border-color:$gray-lighter;
795
+ }
796
+
797
+ }
798
+
799
+ & .number-input {
800
+ @include font-rem(normal, 24px, 24px);
801
+ display:inline-block;
802
+ text-align:center;
803
+ min-width:24px;
804
+ vertical-align:top;
805
+ }
806
+
807
+ & .highlight {
808
+ background:$warning;
809
+ }
810
+
811
+ & .text-option {
812
+
813
+ }
814
+
815
+ &__list {
816
+ list-style:none;
817
+ margin-bottom:0px !important;
818
+
819
+ &__item {
820
+ cursor:pointer;
821
+ margin-bottom:8px;
822
+
823
+ &:hover {
824
+ background:$gray-lighter;
825
+ font-weight:bold;
826
+ color:$gray-darker;
827
+ }
828
+ }
829
+ }
830
+
831
+ }
832
+
833
+ }
834
+
835
+ }
836
+
837
+ [class*="icon-pin-active"] {
838
+ color:$white;
839
+ }
840
+
841
+ .recomendations {
842
+ background:$gray-lightest;
843
+ position:relative;
844
+
845
+ &__item:first-child {
846
+ border-left:none;
847
+ }
848
+
849
+ &__item {
850
+ position:relative;
851
+ border-left:1px solid $gray-lighter;
852
+
853
+ &--selected {
854
+ background:$orange;
855
+ color:$white;
856
+
857
+ & .recomendations__item__type__icon {
858
+ color:$white;
859
+ }
860
+
861
+ & .recomendations__item__description__text {
862
+ color:$white;
863
+ }
864
+
865
+ & .recomendations__item__description__price {
866
+ color:$white;
867
+ }
868
+
869
+ &:hover {
870
+ cursor:auto !important;
871
+
872
+ & .recomendations__item__type__icon {
873
+ color:$white !important;
874
+ }
875
+
876
+ & .recomendations__item__description__text {
877
+ color:$white !important;
878
+
879
+ &:hover {
880
+ text-decoration:none !important;
881
+ }
882
+
883
+ }
884
+
885
+ & .recomendations__item__description__price {
886
+ color:$white !important;
887
+ }
888
+
889
+ }
890
+
891
+ }
892
+
893
+ &:hover {
894
+ cursor:pointer;
895
+
896
+ & .recomendations__item__type__icon {
897
+ color:$link-light;
898
+ }
899
+
900
+ & .recomendations__item__description__text {
901
+ color:$link-light;
902
+ text-decoration:none;
903
+ }
904
+
905
+ & .recomendations__item__description__price {
906
+ color:$orange;
907
+ }
908
+
909
+ }
910
+
911
+ & > div {
912
+ display:table;
913
+ width:100%;
914
+
915
+ @include respond-to(ph) {
916
+ &:before {
917
+ display:none;
918
+ }
919
+ }
920
+
921
+ }
922
+
923
+ &__type {
924
+ display:table-cell;
925
+ width:80px;
926
+ padding:24px 16px 0px 32px;
927
+ box-sizing:border-box;
928
+ color:$white;
929
+ vertical-align:top;
930
+
931
+ &__icon {
932
+ @extend .link-style;
933
+ }
934
+ }
935
+
936
+ &__description {
937
+ display:table-cell;
938
+ vertical-align:top;
939
+ padding-top:24px;
940
+
941
+ &__text {
942
+
943
+ @extend .link-style;
944
+ }
945
+
946
+ &__price {
947
+ color:$orange-dark;
948
+ }
949
+
950
+ }
951
+
952
+ &__airline {
953
+ display:table-cell;
954
+ width:104px;
955
+ box-sizing:border-box;
956
+ padding:16px;
957
+ text-align:center;
958
+
959
+ &__logo {
960
+ box-sizing:border-box;
961
+ background:$white;
962
+ width:48px;
963
+ height:48px;
964
+ margin:0px auto 8px;
965
+ @include border-radius(50%);
966
+
967
+ & img {
968
+ display:inline-block;
969
+ margin-top:8px;
970
+ width:32px;
971
+ height:32px;
972
+
973
+
974
+ }
975
+
976
+ }
977
+
978
+
979
+ }
980
+
981
+ }
982
+
983
+ }
984
+
985
+ .comparative {
986
+ border:2px solid #DFDFDF;
987
+ box-sizing:border-box;
988
+ position:relative;
989
+ background:$gray-lightest;
990
+
991
+ &-arrow {
992
+ //position:absolute;
993
+ //top:calc(50% - 5px);
994
+
995
+ &--before {
996
+ //left:calc(50% - 7px);
997
+ }
998
+
999
+ &--after {
1000
+ //left:calc(50% - 4px);
1001
+ }
1002
+ }
1003
+
1004
+ &__before, &__after {
1005
+ position:absolute;
1006
+ height:24px;
1007
+ width:24px;
1008
+ top:calc(50% - 8px);
1009
+ background:$gray-darkest;
1010
+ color:$white;
1011
+ z-index:3;
1012
+ cursor:pointer;
1013
+ opacity:.4;
1014
+ text-align:center;
1015
+
1016
+ &:hover {
1017
+ opacity:1;
1018
+ }
1019
+
1020
+ }
1021
+
1022
+ &__before {
1023
+ left:8.3333%;
1024
+ left:calc(8.3333% + 2px);
1025
+ //padding:56px 8px 56px 4px;
1026
+
1027
+ @include respond-to(tb) {
1028
+ left:16.6667%;
1029
+ }
1030
+ }
1031
+
1032
+ &__after {
1033
+ right:0px;
1034
+ //padding:56px 4px 56px 8px;
1035
+ }
1036
+
1037
+ .hover {
1038
+ background:$hover-link;
1039
+ }
1040
+
1041
+ .selected {
1042
+ background:$white;
1043
+ color:$link;
1044
+
1045
+ & .outstanding {
1046
+ //background:transparent;
1047
+
1048
+ &:hover {
1049
+ text-decoration:none;
1050
+ color:$link !important;
1051
+ }
1052
+
1053
+ }
1054
+
1055
+ & .link-style {
1056
+ color:$link;
1057
+
1058
+ &:hover {
1059
+ text-decoration:none;
1060
+ }
1061
+
1062
+ }
1063
+
1064
+ & .airline-logo {
1065
+ border:1px solid #DFDFDF;
1066
+ }
1067
+
1068
+ }
1069
+
1070
+ .outstanding {
1071
+ background:$yellow;
1072
+ display:inline-block;
1073
+ padding:0px 8px;
1074
+
1075
+ @extend .link-style;
1076
+ color:$link-dark;
1077
+
1078
+ &:hover{
1079
+ color:$link-dark;
1080
+ }
1081
+
1082
+
1083
+ }
1084
+
1085
+ & * {
1086
+ box-sizing:border-box;
1087
+ }
1088
+
1089
+ &__headers {
1090
+ position:relative;
1091
+ //border-right:1px solid $gray-lighter;
1092
+
1093
+ &__text{
1094
+ //border-top:1px solid $gray-lighter;
1095
+ height:48px;
1096
+
1097
+ & p {
1098
+ padding:8px;
1099
+ line-height:32px !important;
1100
+ }
1101
+
1102
+ }
1103
+
1104
+ &__one {
1105
+ height:40px;
1106
+ border-top:1px solid #DFDFDF;
1107
+
1108
+ & p {
1109
+ padding:8px;
1110
+ line-height:24px !important;
1111
+ }
1112
+
1113
+ /*&:hover {
1114
+ background:$gray-lightest;
1115
+ }*/
1116
+
1117
+ }
1118
+
1119
+ &__two {
1120
+ height:40px;
1121
+ border-top:1px solid #DFDFDF;
1122
+
1123
+ & p {
1124
+ padding:8px;
1125
+ line-height:24px !important;
1126
+ }
1127
+
1128
+ /*&:hover {
1129
+ background:$gray-lightest;
1130
+ }*/
1131
+
1132
+ }
1133
+
1134
+ &__more {
1135
+ height:40px;
1136
+ border-top:1px solid #DFDFDF;
1137
+
1138
+ & p {
1139
+ padding:8px;
1140
+ line-height:24px !important;
1141
+ }
1142
+
1143
+ /*&:hover {
1144
+ background:$gray-lightest;
1145
+ }*/
1146
+
1147
+ }
1148
+
1149
+ }
1150
+
1151
+ &__items {
1152
+ overflow:hidden;
1153
+ white-space:nowrap;
1154
+ }
1155
+
1156
+ &__carrousel {
1157
+ position:relative;
1158
+ //left:-1px;
1159
+ width:100%;
1160
+ }
1161
+
1162
+ &__airlines {
1163
+
1164
+ &__item {
1165
+ text-align:center;
1166
+ border-left:1px solid #DFDFDF;
1167
+
1168
+ &__airline {
1169
+ height:48px;
1170
+ //border-top:1px solid $gray-lighter;
1171
+
1172
+
1173
+ & p {
1174
+ padding:8px 0px;
1175
+ line-height:32px;
1176
+ }
1177
+
1178
+ & img {
1179
+ background:$white;
1180
+ margin-right:8px;
1181
+ width:32px;
1182
+ height:32px;
1183
+ }
1184
+
1185
+ /*&:hover {
1186
+ background:$gray-lightest;
1187
+ }*/
1188
+
1189
+ }
1190
+
1191
+ &__one {
1192
+ height:40px;
1193
+ border-top:1px solid #DFDFDF;
1194
+
1195
+ & p {
1196
+ padding:8px 0px;
1197
+ }
1198
+
1199
+ /*&:hover {
1200
+ background:$gray-lightest;
1201
+ }*/
1202
+
1203
+ }
1204
+
1205
+ &__two {
1206
+ height:40px;
1207
+ border-top:1px solid #DFDFDF;
1208
+
1209
+ & p {
1210
+ padding:8px 0px;
1211
+ }
1212
+
1213
+ /*&:hover {
1214
+ background:$gray-lightest;
1215
+ }*/
1216
+
1217
+ }
1218
+
1219
+ &__more {
1220
+ height:40px;
1221
+ border-top:1px solid #DFDFDF;
1222
+
1223
+ & p {
1224
+ padding:8px 0px;
1225
+ }
1226
+
1227
+ /*&:hover {
1228
+ background:$gray-lightest;
1229
+ }*/
1230
+
1231
+ }
1232
+
1233
+ &--disabled {
1234
+ & .link-style {
1235
+ color:$gray-darker !important;
1236
+
1237
+ &:hover {
1238
+ cursor:auto;
1239
+ text-decoration:none;
1240
+ }
1241
+ }
1242
+
1243
+ &:hover {
1244
+ background:$gray-lightest;
1245
+ &.selected {
1246
+ background:$white;
1247
+ }
1248
+ }
1249
+
1250
+ }
1251
+
1252
+ }
1253
+
1254
+ }
1255
+
1256
+ .border-left {
1257
+ border-left:2px solid #DFDFDF;
1258
+ }
1259
+
1260
+ .border-right {
1261
+ border-right:2px solid #DFDFDF;
1262
+ }
1263
+
1264
+ .border-top {
1265
+ border-top:2px solid #DFDFDF;
1266
+ }
1267
+
1268
+ .border-bottom {
1269
+ border-bottom:2px solid #DFDFDF;
1270
+ }
1271
+
1272
+ }
1273
+
1274
+ .filters {
1275
+
1276
+ .filter-description {
1277
+ top:-1px;
1278
+ }
1279
+
1280
+ &__top {
1281
+ overflow:hidden;
1282
+ }
1283
+
1284
+ &__left {
1285
+ position:relative;
1286
+ line-height:40px;
1287
+
1288
+ &__item {
1289
+ display:inline-block;
1290
+ position:relative;
1291
+
1292
+ @include respond-to(ph) {
1293
+ padding-right:4px;
1294
+ }
1295
+
1296
+ &__text {
1297
+ position:relative;
1298
+ padding:0px 8px;
1299
+
1300
+ @include respond-to(ph) {
1301
+ padding:0px 4px 0px 0px;
1302
+ }
1303
+
1304
+ border-right:1px solid $gray-light;
1305
+ }
1306
+
1307
+ &:first-child {
1308
+
1309
+ & .filters__left__item__text {
1310
+ padding-left:0px;
1311
+ }
1312
+
1313
+ }
1314
+
1315
+
1316
+
1317
+ &--selected {
1318
+
1319
+ @include respond-to(dt) {
1320
+ &:before {
1321
+ position:absolute;
1322
+ left:calc(50% - 17px);
1323
+ bottom:-20px;
1324
+ content:"";
1325
+ border-width:9px;
1326
+ border-color:transparent transparent $gray-lighter transparent;
1327
+ border-style:solid;
1328
+ z-index:2;
1329
+ }
1330
+
1331
+ &:after {
1332
+ position:absolute;
1333
+ left:calc(50% - 16px);
1334
+ bottom:-20px;
1335
+ content:"";
1336
+ border-width:8px;
1337
+ border-color:transparent transparent $gray-lightest transparent;
1338
+ border-style:solid;
1339
+ z-index:3;
1340
+ }
1341
+ }
1342
+
1343
+ @include respond-to(tb) {
1344
+ &:before {
1345
+ position:absolute;
1346
+ left:calc(50% - 17px);
1347
+ bottom:-12px;
1348
+ content:"";
1349
+ border-width:9px;
1350
+ border-color:transparent transparent $gray-lighter transparent;
1351
+ border-style:solid;
1352
+ z-index:2;
1353
+ }
1354
+
1355
+ &:after {
1356
+ position:absolute;
1357
+ left:calc(50% - 16px);
1358
+ bottom:-12px;
1359
+ content:"";
1360
+ border-width:8px;
1361
+ border-color:transparent transparent $gray-lightest transparent;
1362
+ border-style:solid;
1363
+ z-index:3;
1364
+ }
1365
+ }
1366
+
1367
+
1368
+ }
1369
+ }
1370
+
1371
+ }
1372
+
1373
+ &__right {
1374
+
1375
+ text-align:right;
1376
+ @include respond-to(ph) {
1377
+ text-align:left;
1378
+ }
1379
+
1380
+ @include font-rem(normal,14px,16px);
1381
+
1382
+ & label {
1383
+ display:inline-block;
1384
+ line-height:40px;
1385
+ vertical-align:middle;
1386
+ }
1387
+
1388
+ & select {
1389
+ //color:$link;
1390
+ vertical-align:middle;
1391
+ }
1392
+
1393
+ & .view-favorite {
1394
+ //color:$white;
1395
+ //background:$gray;
1396
+ padding:8px;
1397
+ cursor:pointer;
1398
+
1399
+ &__icon {
1400
+ background:$white;
1401
+ @include border-radius(50%);
1402
+ padding:4px;
1403
+ color:$gray;
1404
+ vertical-align:middle;
1405
+ }
1406
+
1407
+ &:hover {
1408
+ & .view-favorite__icon {
1409
+ color:$gray-light;
1410
+ }
1411
+ }
1412
+
1413
+ &--disabled {
1414
+ background:$white;
1415
+ color:$gray-lighter;
1416
+ border:1px solid $gray-lighter;
1417
+
1418
+ & .view-favorite__icon {
1419
+ color:$white;
1420
+ background:$gray-lighter;
1421
+ }
1422
+
1423
+ &:hover {
1424
+ color:$white;
1425
+ background:$gray-light;
1426
+
1427
+ & .view-favorite__icon {
1428
+ color:$gray-light;
1429
+ background:$white;
1430
+ }
1431
+
1432
+ }
1433
+
1434
+ }
1435
+
1436
+ &--selected {
1437
+
1438
+ color:$white;
1439
+
1440
+ & .view-favorite__icon {
1441
+ color:$orange;
1442
+ background:$white;
1443
+ }
1444
+
1445
+ &:hover {
1446
+
1447
+ & .view-favorite__icon {
1448
+ color:$orange-light;
1449
+ }
1450
+
1451
+ }
1452
+
1453
+ }
1454
+
1455
+ }
1456
+ }
1457
+
1458
+ &__container {
1459
+ position:relative;
1460
+ background:$gray-lightest;
1461
+ border:1px solid $gray-lighter;
1462
+ padding:24px;
1463
+ @include font-rem(normal,12px,16px);
1464
+ @include border-radius(2px);
1465
+
1466
+ &__item {
1467
+ position:relative;
1468
+ cursor:pointer;
1469
+
1470
+ &__icon {
1471
+ color:$gray-light;
1472
+ padding:8px;
1473
+ @include border-radius(50%);
1474
+ background:$white;
1475
+ border:1px solid $gray-light;
1476
+ @include font-rem(normal,24px,24px);
1477
+ margin-bottom:8px;
1478
+ }
1479
+
1480
+ &__text {
1481
+
1482
+ }
1483
+
1484
+ &--selected {
1485
+
1486
+ cursor:pointer !important;
1487
+
1488
+
1489
+ & .filters__container__item__icon {
1490
+ color:$white;
1491
+ background:$orange;
1492
+ border:1px solid $orange;
1493
+ }
1494
+
1495
+ & .filters__container__item__text {
1496
+ color:$orange;
1497
+ }
1498
+
1499
+ & .filters__container__item__airline {
1500
+ background:$orange;
1501
+ border:1px solid $orange;
1502
+
1503
+ &__logo {
1504
+ color:$white;
1505
+ }
1506
+
1507
+ }
1508
+
1509
+ & .representation-scale {
1510
+ color:$orange;
1511
+ cursor:pointer !important;
1512
+
1513
+ & .line {
1514
+ background:$orange !important;
1515
+
1516
+ &--finish {
1517
+
1518
+ &:after {
1519
+ border-color:transparent transparent transparent $orange !important;
1520
+ }
1521
+
1522
+ }
1523
+
1524
+ }
1525
+
1526
+ & .circle {
1527
+ background:$orange-dark !important;
1528
+
1529
+ &--extreme {
1530
+ background:$orange !important;
1531
+ }
1532
+
1533
+ }
1534
+
1535
+ }
1536
+
1537
+ &.filters__container__airport__item {
1538
+ cursor:auto;
1539
+ color:$orange !important;
1540
+
1541
+ & .filters__container__airport__item__iata {
1542
+
1543
+ }
1544
+
1545
+ & .filters__container__airport__item__iata__text {
1546
+ color:$white !important;
1547
+ background:$orange !important;
1548
+ border:1px solid $orange !important;
1549
+ }
1550
+
1551
+ & .filters__container__airport__item__icon {
1552
+ color:$white !important;
1553
+ background:$orange !important;
1554
+ border:1px solid $orange !important;
1555
+ }
1556
+ }
1557
+
1558
+ }
1559
+
1560
+ &--disabled {
1561
+ cursor:auto !important;
1562
+
1563
+ & .filters__container__item__icon {
1564
+ color:$gray-lighter;
1565
+ background:$gray-lightest;
1566
+ border:1px solid $gray-lighter;
1567
+ }
1568
+
1569
+ & .filters__container__item__text {
1570
+ color:$gray-lighter;
1571
+ }
1572
+
1573
+ & .filters__container__item__airline {
1574
+ background:$gray-lightest;
1575
+
1576
+ }
1577
+
1578
+ & .representation-scale {
1579
+ cursor:auto;
1580
+ color:$gray-lighter !important;
1581
+
1582
+ & .line {
1583
+ background:$gray-lighter !important;
1584
+
1585
+ &--finish {
1586
+
1587
+ &:after {
1588
+ border-color:transparent transparent transparent $gray-lighter !important;
1589
+ }
1590
+
1591
+ }
1592
+
1593
+ }
1594
+
1595
+ & .circle {
1596
+ background:$gray-lighter !important;
1597
+ }
1598
+
1599
+ }
1600
+
1601
+
1602
+ & .filters__container__airport__item__iata {
1603
+
1604
+ }
1605
+
1606
+ & .filters__container__airport__item__iata__text {
1607
+ color:$gray-lighter !important;
1608
+ background:$gray-lightest !important;
1609
+ border:1px solid $gray-lighter !important;
1610
+ }
1611
+
1612
+ & .filters__container__airport__item__icon {
1613
+ color:$gray-lighter !important;
1614
+ background:$gray-lightest !important;
1615
+ border:1px solid $gray-lighter !important;
1616
+ }
1617
+
1618
+
1619
+ }
1620
+
1621
+ &__airline {
1622
+ width:40px;
1623
+ height:40px;
1624
+ color:$gray-light;
1625
+ //padding:8px;
1626
+ @include border-radius(50%);
1627
+ background:$white;
1628
+ border:1px solid $gray-lighter;
1629
+ margin:0px auto 8px;
1630
+
1631
+ &__logo {
1632
+ display:block;
1633
+ @include font-rem(normal,24px,32px);
1634
+ width:24px;
1635
+ height:24px;
1636
+ margin:8px auto 0px;
1637
+ }
1638
+
1639
+ }
1640
+
1641
+
1642
+
1643
+ }
1644
+
1645
+ & .schedule {
1646
+
1647
+ &--go {
1648
+ border-right:1px solid $gray-lighter;
1649
+ }
1650
+
1651
+ }
1652
+
1653
+ &__airport {
1654
+
1655
+ &__go {
1656
+ border-right:1px solid $gray-lighter;
1657
+ padding:0px 16px 0px 24px;
1658
+
1659
+ &__group {
1660
+ border-bottom:1px dotted $gray-lighter;
1661
+ padding-bottom:8px;
1662
+ margin-bottom:16px;
1663
+ }
1664
+
1665
+ }
1666
+
1667
+ &__back {
1668
+ padding:0px 16px 0px 24px !important;
1669
+ }
1670
+
1671
+ &__item {
1672
+ cursor:pointer;
1673
+ margin-bottom:8px;
1674
+
1675
+ &__text {
1676
+ display:table-cell;
1677
+ padding-bottom:8px;
1678
+ margin-bottom:8px;
1679
+ vertical-align:middle;
1680
+ padding-left:8px;
1681
+ }
1682
+
1683
+ &__iata {
1684
+ display:table-cell;
1685
+ //padding:8px 6px;
1686
+ margin-bottom:8px;
1687
+ @include font-rem(normal,14px,40px);
1688
+ font-weight:bold;
1689
+ text-align:center;
1690
+
1691
+ &__text {
1692
+ display:inline-block;
1693
+ @include border-radius(50%);
1694
+ background:$white;
1695
+ border:1px solid $gray-light;
1696
+ width:40px;
1697
+ height:40px;
1698
+ }
1699
+
1700
+ }
1701
+
1702
+ &__icon-container {
1703
+ display:table-cell;
1704
+ }
1705
+
1706
+ &__icon {
1707
+ display:inline-block;
1708
+ margin-bottom:8px;
1709
+ @include font-rem(normal,14px,40px);
1710
+ font-weight:bold;
1711
+ text-align:center;
1712
+ @include border-radius(50%);
1713
+ background:$white;
1714
+ border:1px solid $gray-light;
1715
+ width:40px;
1716
+ height:40px;
1717
+
1718
+ //padding:8px;
1719
+ @include font-rem(normal,24px,40px);
1720
+
1721
+
1722
+
1723
+ }
1724
+
1725
+ }
1726
+
1727
+ }
1728
+
1729
+ &__buttons {
1730
+ text-align:center;
1731
+ border-top:1px solid $gray-lighter;
1732
+ padding-top:16px;
1733
+ margin-top:16px;
1734
+
1735
+ }
1736
+
1737
+ &__currency {
1738
+
1739
+ & label {
1740
+ display:inline-block;
1741
+ }
1742
+
1743
+ &__slider {
1744
+ padding:0px !important;
1745
+ }
1746
+
1747
+ &__price {
1748
+ padding:0px !important;
1749
+ }
1750
+
1751
+ }
1752
+
1753
+
1754
+
1755
+ }
1756
+
1757
+ & .slider-currency {
1758
+
1759
+ &.ui-slider {
1760
+ position:relative;
1761
+ box-sizing:border-box;
1762
+ background:$white;
1763
+ border:4px solid $gray-lighter;
1764
+ @include border-radius(2px);
1765
+ height:8px;
1766
+ }
1767
+
1768
+ &.ui-slider .ui-slider-handle {
1769
+ box-sizing:border-box;
1770
+ background:$white;
1771
+ border:6px solid $gray;
1772
+ @include border-radius(50%);
1773
+ width:24px;
1774
+ height:24px;
1775
+ position:absolute;
1776
+ top:-11px;
1777
+ cursor:pointer;
1778
+
1779
+ &:hover {
1780
+ border-color:$orange;
1781
+ }
1782
+
1783
+ &:focus {
1784
+ outline:none;
1785
+ }
1786
+ }
1787
+
1788
+ &.ui-slider .ui-slider-range {
1789
+ //background:$orange-dark;
1790
+ //background-size:6px 1px !important;
1791
+ //background: repeating-linear-gradient(to right, rgba(255,121,0,1) 0px, rgba(255,121,0,1) 2px, rgba(204,204,204,1) 3px, rgba(204,204,204,1) 4px);
1792
+ background-color:$orange;
1793
+ height:2px;
1794
+ margin-top:-1px;
1795
+ color:$gray-lighter;
1796
+ }
1797
+
1798
+ }
1799
+
1800
+ & .slider-currency-input {
1801
+ border:none;
1802
+ background:transparent;
1803
+ font-weight:bold;
1804
+ padding:0px;
1805
+ }
1806
+
1807
+ .representation-scale {
1808
+ font-size:0px;
1809
+
1810
+ & .circle {
1811
+ position:relative;
1812
+ top:2px;
1813
+ display:inline-block;
1814
+ width:8px;
1815
+ height:8px;
1816
+ background:$gray-dark;
1817
+ @include border-radius(50%);
1818
+
1819
+ &--extreme {
1820
+ background:$gray-light;
1821
+
1822
+ &--selected {
1823
+ background:$orange;
1824
+ }
1825
+
1826
+ }
1827
+
1828
+ &--space {
1829
+ margin:0px 4px;
1830
+ }
1831
+
1832
+ }
1833
+
1834
+ .line {
1835
+ position:relative;
1836
+ display:inline-block;
1837
+ width:24px;
1838
+ height:4px;
1839
+ background:$gray-light;
1840
+ margin-top:-4px;
1841
+
1842
+ &--short {
1843
+ width:16px;
1844
+ }
1845
+
1846
+ &--finish {
1847
+ width:8px;
1848
+
1849
+ &:after {
1850
+ position:absolute;
1851
+ top:-6px;
1852
+ right:-16px;
1853
+ content:"";
1854
+ border-width:8px;
1855
+ border-color:transparent transparent transparent $gray-light;
1856
+ border-style:solid;
1857
+ }
1858
+
1859
+ }
1860
+
1861
+ }
1862
+
1863
+ }
1864
+
1865
+ &__labels {
1866
+ border-top:1px dashed $gray-light;
1867
+ padding-top:16px;
1868
+ margin-top:16px;
1869
+
1870
+ &__label {
1871
+ cursor:pointer;
1872
+ background:$gray-lightest;
1873
+ padding:8px;
1874
+ margin-right:16px;
1875
+ margin-bottom:8px;
1876
+ @include border-radius(4px);
1877
+
1878
+ &:hover {
1879
+ background:$orange;
1880
+ color:$white;
1881
+ }
1882
+
1883
+ &__close {
1884
+ @include respond-to(ph) {
1885
+ margin-right:8px;
1886
+ float:right;
1887
+ }
1888
+ }
1889
+ }
1890
+
1891
+ &__header {
1892
+ line-height:32px !important;
1893
+ }
1894
+
1895
+ &__remove {
1896
+ line-height:32px !important;
1897
+ }
1898
+ }
1899
+
1900
+ }
1901
+
1902
+ [class*="icon-none"] {
1903
+ color:transparent;
1904
+ }
1905
+
1906
+
1907
+ .ui-autocomplete {
1908
+ position:absolute !important;
1909
+ margin-top:16px !important;
1910
+
1911
+ //border:16px solid $white;
1912
+ //border:16px solid rgba(255,255,255,0.8);
1913
+ @include background-clip(padding-box);
1914
+ padding:8px 0px;
1915
+ //box-shadow:1px 0px 0px $gray-lightest inset,-1px -1px 0px $gray-lightest inset, 1px 1px 0px $gray-lighter, -1px 1px 0px $gray-lighter;
1916
+ box-shadow:0px 0px 3px rgba(0,0,0,0.75);
1917
+ @include border-radius(4px);
1918
+ border:4px solid $gray-lighter;
1919
+ @include box-sizing(border-box);
1920
+
1921
+ & .ui-menu-item {
1922
+
1923
+ //height:16px;
1924
+ vertical-align:top;
1925
+ display:block;
1926
+ @include font-rem(normal,14px,16px);
1927
+ padding:8px 16px;
1928
+ margin:0px;
1929
+ //margin-bottom:8px;
1930
+ letter-spacing:normal;
1931
+ text-align:left;
1932
+ font-weight:bold;
1933
+
1934
+ & mark {
1935
+ font-weight:normal !important;
1936
+ background:$white;
1937
+ }
1938
+
1939
+ &:hover {
1940
+ background:#DEEFF9;
1941
+ color:$gray;
1942
+ //height:16px;
1943
+ vertical-align:top;
1944
+ display:block;
1945
+ @include font-rem(bold,14px,16px);
1946
+ padding:8px 16px;
1947
+ margin:0px;
1948
+ //margin-bottom:8px;
1949
+ letter-spacing:normal;
1950
+ text-align:left;
1951
+
1952
+ & mark {
1953
+ background:#DEEFF9;
1954
+ }
1955
+
1956
+ }
1957
+
1958
+ & a {
1959
+ color:$black;
1960
+ height:16px;
1961
+ vertical-align:top;
1962
+ display:block;
1963
+ @include font-rem(normal,14px,16px);
1964
+ padding:0px;
1965
+ margin:0px;
1966
+ //margin-bottom:8px;
1967
+ letter-spacing:normal;
1968
+ text-align:left;
1969
+ font-weight:bold;
1970
+
1971
+ & mark {
1972
+ font-weight:normal !important;
1973
+ }
1974
+
1975
+ &:hover {
1976
+ vertical-align:top;
1977
+ @include font-rem(bold,14px,16px);
1978
+ padding:0px;
1979
+ margin:0px;
1980
+ //margin-bottom:8px;
1981
+ text-decoration:none;
1982
+ letter-spacing:normal;
1983
+ text-align:left;
1984
+
1985
+ & mark {
1986
+ background:#DEEFF9;
1987
+ font-weight:normal !important;
1988
+ }
1989
+
1990
+ }
1991
+ }
1992
+
1993
+ }
1994
+ }
1995
+
1996
+ .ui-datepicker {
1997
+ //margin-top:16px;
1998
+ margin-top:4px !important;
1999
+ //border:16px solid $white;
2000
+ //border:16px solid rgba(255,255,255,0.8);
2001
+ padding:16px !important;
2002
+ background:$white;
2003
+ @include background-clip(padding-box);
2004
+ //box-shadow:1px 0px 0px $gray-lightest inset,-1px -1px 0px $gray-lightest inset, 1px 1px 0px $gray-lighter, -1px 1px 0px $gray-lighter;
2005
+ box-shadow:0px 0px 3px rgba(0,0,0,0.75);
2006
+ @include border-radius(4px);
2007
+ border:4px solid $gray-lighter;
2008
+
2009
+ &:before {
2010
+ content:"";
2011
+ position:absolute;
2012
+ width:100%;
2013
+ height:100%;
2014
+ z-index:5;
2015
+ background:red;
2016
+ }
2017
+
2018
+ & .ui-datepicker-group {
2019
+ background:$white;
2020
+ }
2021
+
2022
+ & .ui-datepicker-prev {
2023
+ font-family:almundo;
2024
+ @extend .icon-arrow-left;
2025
+ color:$gray;
2026
+ padding-left:4px;
2027
+ cursor:pointer;
2028
+
2029
+ &:after {
2030
+ content:"";
2031
+ }
2032
+
2033
+ }
2034
+
2035
+ & .ui-datepicker-next {
2036
+ font-family:almundo;
2037
+ @extend .icon-arrow-right;
2038
+ color:$gray;
2039
+ padding-right:4px;
2040
+ cursor:pointer;
2041
+
2042
+ &:after {
2043
+ content:"";
2044
+ }
2045
+
2046
+ }
2047
+
2048
+ & .ui-datepicker-header {
2049
+ background:$white;
2050
+ border:none;
2051
+ }
2052
+
2053
+ & .ui-datepicker-month {
2054
+ @include font-rem(normal,14px,16px);
2055
+ font-weight:bold;
2056
+ color:$gray;
2057
+ }
2058
+
2059
+ & .ui-datepicker-year {
2060
+ @include font-rem(normal,12px,16px);
2061
+ color:$gray;
2062
+ }
2063
+
2064
+ & .ui-datepicker-calendar {
2065
+ border:none;
2066
+ background:$white;
2067
+ margin:0px !important;
2068
+
2069
+ & thead tr th {
2070
+ @include font-rem(normal,12px,16px);
2071
+ font-weight:bold;
2072
+ }
2073
+
2074
+ & .ui-datepicker-today {
2075
+ font-weight:bold;
2076
+ }
2077
+
2078
+ & .ui-state-default {
2079
+ color:$gray-darker;
2080
+ padding:0px;
2081
+ text-align:center;
2082
+ @include font-rem(null,16px,32px);
2083
+ width:32px;
2084
+ height:32px;
2085
+ }
2086
+
2087
+ & .ui-datepicker-unselectable {
2088
+ & .ui-state-default {
2089
+ color:$gray-lighter;
2090
+ }
2091
+
2092
+ }
2093
+
2094
+ & .ui-datepicker-current-day {
2095
+ @include border-left-radius(50%);
2096
+ background:$notification !important;
2097
+ & .ui-state-default {
2098
+ color:$white;
2099
+ font-weight:bold;
2100
+ @include border-left-radius(50%);
2101
+ background:$notification;
2102
+ }
2103
+ }
2104
+
2105
+ & .ui-datepicker-current-day-ow {
2106
+ @include border-radius(50%);
2107
+ background:white !important;
2108
+ & .ui-state-default {
2109
+ color:$white;
2110
+ font-weight:bold;
2111
+ @include border-radius(50%);
2112
+ background:$notification;
2113
+ }
2114
+ }
2115
+
2116
+ .ui-state-finish {
2117
+ @include border-left-radius(0%);
2118
+ @include border-right-radius(50%);
2119
+ background:$notification;
2120
+ & .ui-state-default {
2121
+ color:$white;
2122
+ font-weight:bold;
2123
+ @include border-left-radius(0%);
2124
+ @include border-right-radius(50%);
2125
+ background:$notification;
2126
+ }
2127
+ }
2128
+
2129
+ & .ui-state-range {
2130
+ background:$notification-light;
2131
+ & .ui-state-default {
2132
+ color:$white;
2133
+ }
2134
+ }
2135
+
2136
+
2137
+ }
2138
+
2139
+ }
2140
+
2141
+ .day, .month {
2142
+ width:64px;
2143
+ }
2144
+
2145
+ .year {
2146
+ width:104px;
2147
+ }
2148
+
2149
+ .pagination {
2150
+
2151
+ &__list {
2152
+ list-style:none;
2153
+ font-size:0px;
2154
+ }
2155
+
2156
+ &__item {
2157
+ display:inline-block;
2158
+ margin-left:0px;
2159
+ border-width:1px 1px 1px 0px;
2160
+ border-style:solid;
2161
+ border-color:$gray-lighter;
2162
+ @include font-rem(normal, 13px, 16px);
2163
+
2164
+ &:first-child {
2165
+ border-left:1px solid $gray-lighter;
2166
+ }
2167
+
2168
+ }
2169
+
2170
+ &__link {
2171
+ display:block;
2172
+ padding:8px;
2173
+
2174
+ &:hover {
2175
+ background:$gray-lightest;
2176
+ }
2177
+ }
2178
+
2179
+ &__item--disabled {
2180
+ background:$white;
2181
+
2182
+ & .pagination__link {
2183
+ color:$gray-lighter;
2184
+ cursor:default;
2185
+
2186
+ &:hover {
2187
+ text-decoration:none;
2188
+ background:$white;
2189
+ }
2190
+
2191
+ }
2192
+
2193
+ }
2194
+
2195
+ & .selected {
2196
+ background:$gray;
2197
+ color:$white;
2198
+ cursor:default;
2199
+
2200
+ &:hover {
2201
+ text-decoration:none;
2202
+ }
2203
+ }
2204
+
2205
+ }
2206
+
2207
+ .credit-card__content {
2208
+ // padding-bottom:16px;
2209
+ margin-bottom:16px;
2210
+ border-bottom:1px dashed $gray;
2211
+
2212
+ &--last {
2213
+ border-bottom:none;
2214
+ padding-bottom:0px;
2215
+ margin-bottom:0px;
2216
+ }
2217
+
2218
+ &__text {
2219
+ //display:table-cell;
2220
+ padding-top:8px;
2221
+
2222
+ @include respond-to(ph) {
2223
+ padding-top:0px;
2224
+ }
2225
+ }
2226
+
2227
+ &__logos {
2228
+ //display:table-cell;
2229
+
2230
+ &__logo {
2231
+ // display:block;
2232
+ margin:0px auto 8px;
2233
+
2234
+ &:last-child {
2235
+ margin:0px auto 0px;
2236
+ }
2237
+
2238
+ }
2239
+
2240
+ }
2241
+
2242
+ }
2243
+
2244
+
2245
+
2246
+
2247
+ .loader0{
2248
+ position: relative;
2249
+ width:464px;
2250
+ height:464px;
2251
+ margin:40px auto;
2252
+ z-index:10;
2253
+
2254
+ @include respond-to(ph) {
2255
+ width:216px;
2256
+ }
2257
+
2258
+ & .loader1 {
2259
+ position: absolute;
2260
+ top: 0;
2261
+ left: 0;
2262
+ @include animation (spin 290s linear infinite);
2263
+
2264
+ @include respond-to(ph) {
2265
+ width:100%;
2266
+ }
2267
+ }
2268
+
2269
+ & .loader2 {
2270
+ position: absolute;
2271
+ top: 0;
2272
+ left: 0;
2273
+ @include animation (spin2 4s linear infinite);
2274
+
2275
+ @include respond-to(ph) {
2276
+ width:100%;
2277
+ }
2278
+ }
2279
+
2280
+ & .loader__icon {
2281
+ position:absolute;
2282
+ top:114px;
2283
+ left:calc(50% - 50px);
2284
+ @include font-rem(normal, 100px, 100px);
2285
+ color:$orange;
2286
+
2287
+ @include respond-to(ph) {
2288
+ top:72px;
2289
+ left:calc(50% - 32px);
2290
+ @include font-rem(normal, 64px, 64px);
2291
+ }
2292
+ }
2293
+
2294
+ & .loader__text {
2295
+ position:absolute;
2296
+ top:225px;
2297
+ width:232px;
2298
+ text-align:center;
2299
+ left:calc(50% - 116px);
2300
+ @include font-rem(normal,24px,32px);
2301
+
2302
+ @include respond-to(ph) {
2303
+ top:240px;
2304
+ }
2305
+ }
2306
+
2307
+ }
2308
+
2309
+
2310
+
2311
+ @include keyframes (spin) {
2312
+ 0% {
2313
+ @include rotate(0deg);
2314
+ }
2315
+ 100% {
2316
+ @include rotate(-360deg);
2317
+ }
2318
+ }
2319
+
2320
+ @include keyframes (spin2) {
2321
+ 0% {
2322
+ @include rotate(0deg);
2323
+ }
2324
+ 100% {
2325
+ @include rotate(360deg);
2326
+ }
2327
+ }
2328
+
2329
+
2330
+ .epp-space-bottom-0 {
2331
+ margin-bottom:0px;
2332
+ }
2333
+
2334
+ .display-table--compact {
2335
+ width:auto;
2336
+ }
2337
+
2338
+ .display-inline-block {
2339
+ display:inline-block;
2340
+ }
2341
+
2342
+ .divisor {
2343
+ border:none;
2344
+ height:1px;
2345
+ background-color:$gray-lighter;
2346
+ margin:0px;
2347
+ }
2348
+
2349
+
2350
+ .display-block {
2351
+ display:block;
2352
+ }
2353
+
2354
+ .rotation{-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg);transform:rotate(180deg)}
2355
+
2356
+ .ui-tooltip {
2357
+ position:absolute;
2358
+ background:$black;
2359
+ background:rgba(0,0,0,.8);
2360
+ color:$white;
2361
+ @include border-radius(4px);
2362
+ @include font-rem(normal, 12px, 16px);
2363
+ padding:0px 4px;
2364
+ box-shadow:none;
2365
+ border:none;
2366
+ }
2367
+
2368
+ .ui-tooltip-arrow {
2369
+
2370
+ &:after {
2371
+ content: "";
2372
+ position: absolute;
2373
+ border-width:4px;
2374
+ border-color:transparent transparent $black transparent;
2375
+ border-color:transparent transparent rgba(0,0,0,.8) transparent;
2376
+ border-style:solid;
2377
+ left:calc(50% - 4px);
2378
+ top:-8px;
2379
+ }
2380
+
2381
+ &.top {
2382
+
2383
+ &:after {
2384
+ top: auto;
2385
+ border-color:transparent transparent $black transparent;
2386
+ border-color:transparent transparent rgba(0,0,0,.8) transparent;
2387
+ left:calc(50% - 4px);
2388
+ top:-8px;
2389
+ }
2390
+ }
2391
+
2392
+ &.bottom {
2393
+
2394
+ &:after {
2395
+ bottom: -20px;
2396
+ top: auto;
2397
+ border-color:$black transparent transparent transparent;
2398
+ border-color:rgba(0,0,0,.8) transparent transparent transparent;
2399
+ left:calc(50% - 4px);
2400
+ bottom:-8px;
2401
+ }
2402
+ }
2403
+
2404
+ }