active_frontend 1.0.11 → 2.0.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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/lib/active_frontend/version.rb +1 -1
  3. data/vendor/assets/javascripts/affix.js +2 -2
  4. data/vendor/assets/javascripts/alert.js +1 -1
  5. data/vendor/assets/javascripts/button.js +1 -1
  6. data/vendor/assets/javascripts/carousel.js +1 -1
  7. data/vendor/assets/javascripts/collapse.js +2 -2
  8. data/vendor/assets/javascripts/dropdown.js +8 -4
  9. data/vendor/assets/javascripts/loader.js +361 -0
  10. data/vendor/assets/javascripts/map.js +8 -0
  11. data/vendor/assets/javascripts/popover.js +2 -2
  12. data/vendor/assets/javascripts/scrollspy.js +2 -2
  13. data/vendor/assets/javascripts/tab.js +1 -1
  14. data/vendor/assets/javascripts/tooltip.js +3 -3
  15. data/vendor/assets/stylesheets/affix.scss +4 -1
  16. data/vendor/assets/stylesheets/alert.scss +23 -8
  17. data/vendor/assets/stylesheets/animation.scss +185 -185
  18. data/vendor/assets/stylesheets/aside.scss +13 -13
  19. data/vendor/assets/stylesheets/breadcrumb.scss +2 -2
  20. data/vendor/assets/stylesheets/button.scss +102 -239
  21. data/vendor/assets/stylesheets/canvas.scss +77 -0
  22. data/vendor/assets/stylesheets/carousel.scss +3 -3
  23. data/vendor/assets/stylesheets/code.scss +48 -54
  24. data/vendor/assets/stylesheets/collapse.scss +2 -2
  25. data/vendor/assets/stylesheets/datepicker.scss +17 -17
  26. data/vendor/assets/stylesheets/dropdown.scss +11 -11
  27. data/vendor/assets/stylesheets/footer.scss +88 -20
  28. data/vendor/assets/stylesheets/form.scss +25 -59
  29. data/vendor/assets/stylesheets/grid.scss +137 -168
  30. data/vendor/assets/stylesheets/header.scss +61 -98
  31. data/vendor/assets/stylesheets/image.scss +24 -269
  32. data/vendor/assets/stylesheets/label_and_badge.scss +50 -49
  33. data/vendor/assets/stylesheets/link.scss +11 -7
  34. data/vendor/assets/stylesheets/loader.scss +56 -0
  35. data/vendor/assets/stylesheets/map.scss +1 -1
  36. data/vendor/assets/stylesheets/modal.scss +13 -13
  37. data/vendor/assets/stylesheets/nav_and_tab.scss +12 -12
  38. data/vendor/assets/stylesheets/pagination.scss +3 -3
  39. data/vendor/assets/stylesheets/panel.scss +2 -2
  40. data/vendor/assets/stylesheets/placeholder.scss +1 -1
  41. data/vendor/assets/stylesheets/popover.scss +12 -12
  42. data/vendor/assets/stylesheets/progress.scss +5 -5
  43. data/vendor/assets/stylesheets/reset.scss +10 -9
  44. data/vendor/assets/stylesheets/sidebar.scss +65 -0
  45. data/vendor/assets/stylesheets/spinner.scss +100 -112
  46. data/vendor/assets/stylesheets/swoggle.scss +29 -26
  47. data/vendor/assets/stylesheets/table.scss +7 -7
  48. data/vendor/assets/stylesheets/timepicker.scss +10 -10
  49. data/vendor/assets/stylesheets/tooltip.scss +9 -9
  50. data/vendor/assets/stylesheets/transition.scss +1 -1
  51. data/vendor/assets/stylesheets/trunk.scss +19 -24
  52. data/vendor/assets/stylesheets/typeahead.scss +1 -1
  53. data/vendor/assets/stylesheets/typography.scss +7 -7
  54. metadata +6 -2
@@ -10,6 +10,14 @@
10
10
 
11
11
  }(this, function() {
12
12
 
13
+ /*!
14
+ * GMaps.js v0.4.17
15
+ * http://hpneo.github.com/gmaps/
16
+ *
17
+ * Copyright 2015, Gustavo Leon
18
+ * Released under the MIT License.
19
+ */
20
+
13
21
  if (!(typeof window.google === 'object' && window.google.maps)) {
14
22
  throw 'Google Maps API is required. Please register the following JavaScript library http://maps.google.com/maps/api/js?sensor=true.'
15
23
  }
@@ -10,7 +10,7 @@
10
10
 
11
11
  if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
12
12
 
13
- Popover.VERSION = '3.3.2'
13
+ Popover.VERSION = '3.3.4'
14
14
 
15
15
  Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
16
16
  placement: 'right',
@@ -76,7 +76,7 @@
76
76
  var data = $this.data('bs.popover')
77
77
  var options = typeof option == 'object' && option
78
78
 
79
- if (!data && option == 'destroy') return
79
+ if (!data && /destroy|hide/.test(option)) return
80
80
  if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
81
81
  if (typeof option == 'string') data[option]()
82
82
  })
@@ -19,7 +19,7 @@
19
19
  this.process()
20
20
  }
21
21
 
22
- ScrollSpy.VERSION = '3.3.2'
22
+ ScrollSpy.VERSION = '3.3.4'
23
23
 
24
24
  ScrollSpy.DEFAULTS = {
25
25
  offset: 10
@@ -87,7 +87,7 @@
87
87
  for (i = offsets.length; i--;) {
88
88
  activeTarget != targets[i]
89
89
  && scrollTop >= offsets[i]
90
- && (offsets[i + 1] === undefined || scrollTop <= offsets[i + 1])
90
+ && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1])
91
91
  && this.activate(targets[i])
92
92
  }
93
93
  }
@@ -8,7 +8,7 @@
8
8
  this.element = $(element)
9
9
  }
10
10
 
11
- Tab.VERSION = '3.3.2'
11
+ Tab.VERSION = '3.3.4'
12
12
 
13
13
  Tab.TRANSITION_DURATION = 150
14
14
 
@@ -15,7 +15,7 @@
15
15
  this.init('tooltip', element, options)
16
16
  }
17
17
 
18
- Tooltip.VERSION = '3.3.2'
18
+ Tooltip.VERSION = '3.3.4'
19
19
 
20
20
  Tooltip.TRANSITION_DURATION = 150
21
21
 
@@ -43,7 +43,7 @@
43
43
  this.$viewport = this.options.viewport && $(this.options.viewport.selector || this.options.viewport)
44
44
 
45
45
  if (this.$element[0] instanceof document.constructor && !this.options.selector) {
46
- throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!');
46
+ throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!')
47
47
  }
48
48
 
49
49
  var triggers = this.options.trigger.split(' ')
@@ -443,7 +443,7 @@
443
443
  var data = $this.data('bs.tooltip')
444
444
  var options = typeof option == 'object' && option
445
445
 
446
- if (!data && option == 'destroy') return
446
+ if (!data && /destroy|hide/.test(option)) return
447
447
  if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options)))
448
448
  if (typeof option == 'string') data[option]()
449
449
  })
@@ -4,7 +4,10 @@
4
4
 
5
5
  /* # Affix
6
6
  ================================================== */
7
- .affix { position: fixed; }
7
+ .affix {
8
+ position: fixed;
9
+ z-index: 1030;
10
+ }
8
11
  .affix-bottom {
9
12
  position: absolute;
10
13
  top: auto;
@@ -5,14 +5,25 @@
5
5
 
6
6
  /* # Alert
7
7
  ================================================== */
8
+ .alert-fixed {
9
+ left: 0;
10
+ position: fixed;
11
+ right: 0;
12
+ top: 0;
13
+ z-index: 1040;
14
+ }
8
15
  .alert {
9
16
  background: rgba(102,117,127,1);
10
17
  border-bottom: 1px solid rgba(62,77,87,1);
18
+ -moz-box-sizing: border-box;
19
+ box-sizing: border-box;
11
20
  color: rgba(255,255,255,1);
21
+ display: block;
12
22
  font-size: 16px;
13
23
  line-height: 20px;
14
24
  margin: 0;
15
25
  padding: 10px 20px 9px 20px;
26
+ width: 100%;
16
27
  }
17
28
  .alert > a {
18
29
  color: rgba(255,255,255,1);
@@ -20,7 +31,6 @@
20
31
  font-style: italic;
21
32
  }
22
33
  .alert-lined { border: 1px solid rgba(62,77,87,1); }
23
- .alert-pull-none { margin: 0; }
24
34
  .alert-close {
25
35
  border: 0 !important;
26
36
  color: rgba(255,255,255,1) !important;
@@ -31,24 +41,29 @@
31
41
 
32
42
  /* # Colors
33
43
  ================================================== */
44
+ .alert-blue,
45
+ .alert-notice {
46
+ background: rgba(0,132,255,1);
47
+ border-color: rgba(0,92,215,1);
48
+ }
34
49
  .alert-green,
35
50
  .alert-success {
36
- background: rgba(89,168,15,1);
37
- border-color: rgba(39,118,0,1);
51
+ background: rgba(68,205,1,1);
52
+ border-color: rgba(28,165,0,1);
38
53
  }
39
54
  .alert-orange,
40
55
  .alert-warning {
41
- background: rgba(232,126,15,1);
42
- border-color: rgba(202,96,0,1);
56
+ background: rgba(255,131,0,1);
57
+ border-color: rgba(215,91,0,1);
43
58
  }
44
59
  .alert-red,
45
60
  .alert-error,
46
61
  .alert-alert {
47
- background: rgba(218,79,46,1);
48
- border-color: rgba(188,49,16,1);
62
+ background: rgba(255,59,48,1);
63
+ border-color: rgba(215,19,8,1);
49
64
  }
50
65
  .alert-black,
51
66
  .alert-system {
52
67
  background: rgba(56,67,81,1);
53
- border-color: rgba(36,47,61,1);
68
+ border-color: rgba(16,57,41,1);
54
69
  }
@@ -8,18 +8,18 @@
8
8
  ================================================== */
9
9
  .animated {
10
10
  -webkit-animation-duration: 1s;
11
- animation-duration: 1s;
11
+ animation-duration: 1s;
12
12
  -webkit-animation-fill-mode: both;
13
- animation-fill-mode: both;
13
+ animation-fill-mode: both;
14
14
  -webkit-backface-visibility: hidden !important;
15
- backface-visibility: hidden !important;
15
+ backface-visibility: hidden !important;
16
16
  -webkit-perspective: 1000;
17
- perspective: 1000;
18
- position: relative;
17
+ perspective: 1000;
18
+ position: relative;
19
19
  }
20
20
  .animated.hinge {
21
21
  -webkit-animation-duration: 2s;
22
- animation-duration: 2s;
22
+ animation-duration: 2s;
23
23
  }
24
24
  @-webkit-keyframes bounce {
25
25
  0%, 20%, 50%, 80%, 100% {
@@ -54,7 +54,7 @@
54
54
  }
55
55
  .bounce {
56
56
  -webkit-animation-name: bounce;
57
- animation-name: bounce;
57
+ animation-name: bounce;
58
58
  }
59
59
  @-webkit-keyframes flash {
60
60
  0%, 50%, 100% { opacity: 1; }
@@ -66,7 +66,7 @@
66
66
  }
67
67
  .flash {
68
68
  -webkit-animation-name: flash;
69
- animation-name: flash;
69
+ animation-name: flash;
70
70
  }
71
71
  @-webkit-keyframes pulse {
72
72
  0% {
@@ -101,7 +101,7 @@
101
101
  }
102
102
  .pulse {
103
103
  -webkit-animation-name: pulse;
104
- animation-name: pulse;
104
+ animation-name: pulse;
105
105
  }
106
106
  @-webkit-keyframes shake {
107
107
  0%, 100% {
@@ -136,7 +136,7 @@
136
136
  }
137
137
  .shake {
138
138
  -webkit-animation-name: shake;
139
- animation-name: shake;
139
+ animation-name: shake;
140
140
  }
141
141
  @-webkit-keyframes swing {
142
142
  20% {
@@ -189,10 +189,10 @@
189
189
  }
190
190
  .swing {
191
191
  -webkit-transform-origin: top center;
192
- -ms-transform-origin: top center;
193
- transform-origin: top center;
192
+ -ms-transform-origin: top center;
193
+ transform-origin: top center;
194
194
  -webkit-animation-name: swing;
195
- animation-name: swing;
195
+ animation-name: swing;
196
196
  }
197
197
  @-webkit-keyframes tada {
198
198
  0% {
@@ -245,7 +245,7 @@
245
245
  }
246
246
  .tada {
247
247
  -webkit-animation-name: tada;
248
- animation-name: tada;
248
+ animation-name: tada;
249
249
  }
250
250
  @-webkit-keyframes wobble {
251
251
  0% {
@@ -321,7 +321,7 @@
321
321
  }
322
322
  .wobble {
323
323
  -webkit-animation-name: wobble;
324
- animation-name: wobble;
324
+ animation-name: wobble;
325
325
  }
326
326
  @-webkit-keyframes bounceIn {
327
327
  0% {
@@ -369,7 +369,7 @@
369
369
  }
370
370
  .bounceIn {
371
371
  -webkit-animation-name: bounceIn;
372
- animation-name: bounceIn;
372
+ animation-name: bounceIn;
373
373
  }
374
374
  @-webkit-keyframes bounceInDown {
375
375
  0% {
@@ -417,7 +417,7 @@
417
417
  }
418
418
  .bounceInDown {
419
419
  -webkit-animation-name: bounceInDown;
420
- animation-name: bounceInDown;
420
+ animation-name: bounceInDown;
421
421
  }
422
422
  @-webkit-keyframes bounceInLeft {
423
423
  0% {
@@ -465,7 +465,7 @@
465
465
  }
466
466
  .bounceInLeft {
467
467
  -webkit-animation-name: bounceInLeft;
468
- animation-name: bounceInLeft;
468
+ animation-name: bounceInLeft;
469
469
  }
470
470
  @-webkit-keyframes bounceInRight {
471
471
  0% {
@@ -513,7 +513,7 @@
513
513
  }
514
514
  .bounceInRight {
515
515
  -webkit-animation-name: bounceInRight;
516
- animation-name: bounceInRight;
516
+ animation-name: bounceInRight;
517
517
  }
518
518
  @-webkit-keyframes bounceInUp {
519
519
  0% {
@@ -561,7 +561,7 @@
561
561
  }
562
562
  .bounceInUp {
563
563
  -webkit-animation-name: bounceInUp;
564
- animation-name: bounceInUp;
564
+ animation-name: bounceInUp;
565
565
  }
566
566
  @-webkit-keyframes bounceOut {
567
567
  0% {
@@ -609,7 +609,7 @@
609
609
  }
610
610
  .bounceOut {
611
611
  -webkit-animation-name: bounceOut;
612
- animation-name: bounceOut;
612
+ animation-name: bounceOut;
613
613
  }
614
614
  @-webkit-keyframes bounceOutDown {
615
615
  0% {
@@ -648,7 +648,7 @@
648
648
  }
649
649
  .bounceOutDown {
650
650
  -webkit-animation-name: bounceOutDown;
651
- animation-name: bounceOutDown;
651
+ animation-name: bounceOutDown;
652
652
  }
653
653
  @-webkit-keyframes bounceOutLeft {
654
654
  0% {
@@ -687,7 +687,7 @@
687
687
  }
688
688
  .bounceOutLeft {
689
689
  -webkit-animation-name: bounceOutLeft;
690
- animation-name: bounceOutLeft;
690
+ animation-name: bounceOutLeft;
691
691
  }
692
692
  @-webkit-keyframes bounceOutRight {
693
693
  0% {
@@ -726,7 +726,7 @@
726
726
  }
727
727
  .bounceOutRight {
728
728
  -webkit-animation-name: bounceOutRight;
729
- animation-name: bounceOutRight;
729
+ animation-name: bounceOutRight;
730
730
  }
731
731
  @-webkit-keyframes bounceOutUp {
732
732
  0% {
@@ -765,7 +765,7 @@
765
765
  }
766
766
  .bounceOutUp {
767
767
  -webkit-animation-name: bounceOutUp;
768
- animation-name: bounceOutUp;
768
+ animation-name: bounceOutUp;
769
769
  }
770
770
  @-webkit-keyframes fadeIn {
771
771
  0% { opacity: 0; }
@@ -777,7 +777,7 @@
777
777
  }
778
778
  .fadeIn {
779
779
  -webkit-animation-name: fadeIn;
780
- animation-name: fadeIn;
780
+ animation-name: fadeIn;
781
781
  }
782
782
  @-webkit-keyframes fadeInDown {
783
783
  0% {
@@ -807,7 +807,7 @@
807
807
  }
808
808
  .fadeInDown {
809
809
  -webkit-animation-name: fadeInDown;
810
- animation-name: fadeInDown;
810
+ animation-name: fadeInDown;
811
811
  }
812
812
  @-webkit-keyframes fadeInDownBig {
813
813
  0% {
@@ -837,7 +837,7 @@
837
837
  }
838
838
  .fadeInDownBig {
839
839
  -webkit-animation-name: fadeInDownBig;
840
- animation-name: fadeInDownBig;
840
+ animation-name: fadeInDownBig;
841
841
  }
842
842
  @-webkit-keyframes fadeInLeft {
843
843
  0% {
@@ -867,7 +867,7 @@
867
867
  }
868
868
  .fadeInLeft {
869
869
  -webkit-animation-name: fadeInLeft;
870
- animation-name: fadeInLeft;
870
+ animation-name: fadeInLeft;
871
871
  }
872
872
  @-webkit-keyframes fadeInLeftBig {
873
873
  0% {
@@ -897,7 +897,7 @@
897
897
  }
898
898
  .fadeInLeftBig {
899
899
  -webkit-animation-name: fadeInLeftBig;
900
- animation-name: fadeInLeftBig;
900
+ animation-name: fadeInLeftBig;
901
901
  }
902
902
  @-webkit-keyframes fadeInRight {
903
903
  0% {
@@ -927,7 +927,7 @@
927
927
  }
928
928
  .fadeInRight {
929
929
  -webkit-animation-name: fadeInRight;
930
- animation-name: fadeInRight;
930
+ animation-name: fadeInRight;
931
931
  }
932
932
  @-webkit-keyframes fadeInRightBig {
933
933
  0% {
@@ -957,7 +957,7 @@
957
957
  }
958
958
  .fadeInRightBig {
959
959
  -webkit-animation-name: fadeInRightBig;
960
- animation-name: fadeInRightBig;
960
+ animation-name: fadeInRightBig;
961
961
  }
962
962
  @-webkit-keyframes fadeInUp {
963
963
  0% {
@@ -987,7 +987,7 @@
987
987
  }
988
988
  .fadeInUp {
989
989
  -webkit-animation-name: fadeInUp;
990
- animation-name: fadeInUp;
990
+ animation-name: fadeInUp;
991
991
  }
992
992
  @-webkit-keyframes fadeInUpBig {
993
993
  0% {
@@ -1017,7 +1017,7 @@
1017
1017
  }
1018
1018
  .fadeInUpBig {
1019
1019
  -webkit-animation-name: fadeInUpBig;
1020
- animation-name: fadeInUpBig;
1020
+ animation-name: fadeInUpBig;
1021
1021
  }
1022
1022
  @-webkit-keyframes fadeOut {
1023
1023
  0% { opacity: 1; }
@@ -1029,7 +1029,7 @@
1029
1029
  }
1030
1030
  .fadeOut {
1031
1031
  -webkit-animation-name: fadeOut;
1032
- animation-name: fadeOut;
1032
+ animation-name: fadeOut;
1033
1033
  }
1034
1034
  @-webkit-keyframes fadeOutDown {
1035
1035
  0% {
@@ -1059,7 +1059,7 @@
1059
1059
  }
1060
1060
  .fadeOutDown {
1061
1061
  -webkit-animation-name: fadeOutDown;
1062
- animation-name: fadeOutDown;
1062
+ animation-name: fadeOutDown;
1063
1063
  }
1064
1064
  @-webkit-keyframes fadeOutDownBig {
1065
1065
  0% {
@@ -1089,7 +1089,7 @@
1089
1089
  }
1090
1090
  .fadeOutDownBig {
1091
1091
  -webkit-animation-name: fadeOutDownBig;
1092
- animation-name: fadeOutDownBig;
1092
+ animation-name: fadeOutDownBig;
1093
1093
  }
1094
1094
  @-webkit-keyframes fadeOutLeft {
1095
1095
  0% {
@@ -1119,7 +1119,7 @@
1119
1119
  }
1120
1120
  .fadeOutLeft {
1121
1121
  -webkit-animation-name: fadeOutLeft;
1122
- animation-name: fadeOutLeft;
1122
+ animation-name: fadeOutLeft;
1123
1123
  }
1124
1124
  @-webkit-keyframes fadeOutLeftBig {
1125
1125
  0% {
@@ -1149,7 +1149,7 @@
1149
1149
  }
1150
1150
  .fadeOutLeftBig {
1151
1151
  -webkit-animation-name: fadeOutLeftBig;
1152
- animation-name: fadeOutLeftBig;
1152
+ animation-name: fadeOutLeftBig;
1153
1153
  }
1154
1154
  @-webkit-keyframes fadeOutRight {
1155
1155
  0% {
@@ -1179,7 +1179,7 @@
1179
1179
  }
1180
1180
  .fadeOutRight {
1181
1181
  -webkit-animation-name: fadeOutRight;
1182
- animation-name: fadeOutRight;
1182
+ animation-name: fadeOutRight;
1183
1183
  }
1184
1184
  @-webkit-keyframes fadeOutRightBig {
1185
1185
  0% {
@@ -1209,7 +1209,7 @@
1209
1209
  }
1210
1210
  .fadeOutRightBig {
1211
1211
  -webkit-animation-name: fadeOutRightBig;
1212
- animation-name: fadeOutRightBig;
1212
+ animation-name: fadeOutRightBig;
1213
1213
  }
1214
1214
  @-webkit-keyframes fadeOutUp {
1215
1215
  0% {
@@ -1239,7 +1239,7 @@
1239
1239
  }
1240
1240
  .fadeOutUp {
1241
1241
  -webkit-animation-name: fadeOutUp;
1242
- animation-name: fadeOutUp;
1242
+ animation-name: fadeOutUp;
1243
1243
  }
1244
1244
  @-webkit-keyframes fadeOutUpBig {
1245
1245
  0% {
@@ -1269,38 +1269,38 @@
1269
1269
  }
1270
1270
  .fadeOutUpBig {
1271
1271
  -webkit-animation-name: fadeOutUpBig;
1272
- animation-name: fadeOutUpBig;
1272
+ animation-name: fadeOutUpBig;
1273
1273
  }
1274
1274
  @-webkit-keyframes flip {
1275
1275
  0% {
1276
1276
  -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
1277
1277
  transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
1278
1278
  -webkit-animation-timing-function: ease-out;
1279
- animation-timing-function: ease-out;
1279
+ animation-timing-function: ease-out;
1280
1280
  }
1281
1281
  40% {
1282
1282
  -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
1283
1283
  transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
1284
1284
  -webkit-animation-timing-function: ease-out;
1285
- animation-timing-function: ease-out;
1285
+ animation-timing-function: ease-out;
1286
1286
  }
1287
1287
  50% {
1288
1288
  -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
1289
1289
  transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
1290
1290
  -webkit-animation-timing-function: ease-in;
1291
- animation-timing-function: ease-in;
1291
+ animation-timing-function: ease-in;
1292
1292
  }
1293
1293
  80% {
1294
1294
  -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
1295
1295
  transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
1296
1296
  -webkit-animation-timing-function: ease-in;
1297
- animation-timing-function: ease-in;
1297
+ animation-timing-function: ease-in;
1298
1298
  }
1299
1299
  100% {
1300
1300
  -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
1301
1301
  transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
1302
1302
  -webkit-animation-timing-function: ease-in;
1303
- animation-timing-function: ease-in;
1303
+ animation-timing-function: ease-in;
1304
1304
  }
1305
1305
  }
1306
1306
  @keyframes flip {
@@ -1309,43 +1309,43 @@
1309
1309
  -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
1310
1310
  transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
1311
1311
  -webkit-animation-timing-function: ease-out;
1312
- animation-timing-function: ease-out;
1312
+ animation-timing-function: ease-out;
1313
1313
  }
1314
1314
  40% {
1315
1315
  -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
1316
1316
  -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
1317
1317
  transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
1318
1318
  -webkit-animation-timing-function: ease-out;
1319
- animation-timing-function: ease-out;
1319
+ animation-timing-function: ease-out;
1320
1320
  }
1321
1321
  50% {
1322
1322
  -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
1323
1323
  -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
1324
1324
  transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
1325
1325
  -webkit-animation-timing-function: ease-in;
1326
- animation-timing-function: ease-in;
1326
+ animation-timing-function: ease-in;
1327
1327
  }
1328
1328
  80% {
1329
1329
  -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
1330
1330
  -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
1331
1331
  transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
1332
1332
  -webkit-animation-timing-function: ease-in;
1333
- animation-timing-function: ease-in;
1333
+ animation-timing-function: ease-in;
1334
1334
  }
1335
1335
  100% {
1336
1336
  -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
1337
1337
  -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
1338
1338
  transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
1339
1339
  -webkit-animation-timing-function: ease-in;
1340
- animation-timing-function: ease-in;
1340
+ animation-timing-function: ease-in;
1341
1341
  }
1342
1342
  }
1343
1343
  .animated.flip {
1344
1344
  -webkit-backface-visibility: visible;
1345
- -ms-backface-visibility: visible;
1346
- backface-visibility: visible;
1345
+ -ms-backface-visibility: visible;
1346
+ backface-visibility: visible;
1347
1347
  -webkit-animation-name: flip;
1348
- animation-name: flip;
1348
+ animation-name: flip;
1349
1349
  }
1350
1350
  @-webkit-keyframes flipInX {
1351
1351
  0% {
@@ -1393,10 +1393,10 @@
1393
1393
  }
1394
1394
  .flipInX {
1395
1395
  -webkit-backface-visibility: visible !important;
1396
- -ms-backface-visibility: visible !important;
1397
- backface-visibility: visible !important;
1396
+ -ms-backface-visibility: visible !important;
1397
+ backface-visibility: visible !important;
1398
1398
  -webkit-animation-name: flipInX;
1399
- animation-name: flipInX;
1399
+ animation-name: flipInX;
1400
1400
  }
1401
1401
  @-webkit-keyframes flipInY {
1402
1402
  0% {
@@ -1444,10 +1444,10 @@
1444
1444
  }
1445
1445
  .flipInY {
1446
1446
  -webkit-backface-visibility: visible !important;
1447
- -ms-backface-visibility: visible !important;
1448
- backface-visibility: visible !important;
1447
+ -ms-backface-visibility: visible !important;
1448
+ backface-visibility: visible !important;
1449
1449
  -webkit-animation-name: flipInY;
1450
- animation-name: flipInY;
1450
+ animation-name: flipInY;
1451
1451
  }
1452
1452
  @-webkit-keyframes flipOutX {
1453
1453
  0% {
@@ -1478,10 +1478,10 @@
1478
1478
  }
1479
1479
  .flipOutX {
1480
1480
  -webkit-animation-name: flipOutX;
1481
- animation-name: flipOutX;
1481
+ animation-name: flipOutX;
1482
1482
  -webkit-backface-visibility: visible !important;
1483
- -ms-backface-visibility: visible !important;
1484
- backface-visibility: visible !important;
1483
+ -ms-backface-visibility: visible !important;
1484
+ backface-visibility: visible !important;
1485
1485
  }
1486
1486
  @-webkit-keyframes flipOutY {
1487
1487
  0% {
@@ -1511,10 +1511,10 @@
1511
1511
  }
1512
1512
  .flipOutY {
1513
1513
  -webkit-backface-visibility: visible !important;
1514
- -ms-backface-visibility: visible !important;
1515
- backface-visibility: visible !important;
1514
+ -ms-backface-visibility: visible !important;
1515
+ backface-visibility: visible !important;
1516
1516
  -webkit-animation-name: flipOutY;
1517
- animation-name: flipOutY;
1517
+ animation-name: flipOutY;
1518
1518
  }
1519
1519
  @-webkit-keyframes lightSpeedIn {
1520
1520
  0% {
@@ -1566,9 +1566,9 @@
1566
1566
  }
1567
1567
  .lightSpeedIn {
1568
1568
  -webkit-animation-name: lightSpeedIn;
1569
- animation-name: lightSpeedIn;
1569
+ animation-name: lightSpeedIn;
1570
1570
  -webkit-animation-timing-function: ease-out;
1571
- animation-timing-function: ease-out;
1571
+ animation-timing-function: ease-out;
1572
1572
  }
1573
1573
  @-webkit-keyframes lightSpeedOut {
1574
1574
  0% {
@@ -1599,21 +1599,21 @@
1599
1599
  }
1600
1600
  .lightSpeedOut {
1601
1601
  -webkit-animation-name: lightSpeedOut;
1602
- animation-name: lightSpeedOut;
1602
+ animation-name: lightSpeedOut;
1603
1603
  -webkit-animation-timing-function: ease-in;
1604
- animation-timing-function: ease-in;
1604
+ animation-timing-function: ease-in;
1605
1605
  }
1606
1606
  @-webkit-keyframes rotateIn {
1607
1607
  0% {
1608
1608
  -webkit-transform-origin: center center;
1609
- transform-origin: center center;
1609
+ transform-origin: center center;
1610
1610
  -webkit-transform: rotate(-200deg);
1611
1611
  transform: rotate(-200deg);
1612
1612
  opacity: 0;
1613
1613
  }
1614
1614
  100% {
1615
1615
  -webkit-transform-origin: center center;
1616
- transform-origin: center center;
1616
+ transform-origin: center center;
1617
1617
  -webkit-transform: rotate(0);
1618
1618
  transform: rotate(0);
1619
1619
  opacity: 1;
@@ -1622,8 +1622,8 @@
1622
1622
  @keyframes rotateIn {
1623
1623
  0% {
1624
1624
  -webkit-transform-origin: center center;
1625
- -ms-transform-origin: center center;
1626
- transform-origin: center center;
1625
+ -ms-transform-origin: center center;
1626
+ transform-origin: center center;
1627
1627
  -webkit-transform: rotate(-200deg);
1628
1628
  -ms-transform: rotate(-200deg);
1629
1629
  transform: rotate(-200deg);
@@ -1631,8 +1631,8 @@
1631
1631
  }
1632
1632
  100% {
1633
1633
  -webkit-transform-origin: center center;
1634
- -ms-transform-origin: center center;
1635
- transform-origin: center center;
1634
+ -ms-transform-origin: center center;
1635
+ transform-origin: center center;
1636
1636
  -webkit-transform: rotate(0);
1637
1637
  -ms-transform: rotate(0);
1638
1638
  transform: rotate(0);
@@ -1641,19 +1641,19 @@
1641
1641
  }
1642
1642
  .rotateIn {
1643
1643
  -webkit-animation-name: rotateIn;
1644
- animation-name: rotateIn;
1644
+ animation-name: rotateIn;
1645
1645
  }
1646
1646
  @-webkit-keyframes rotateInDownLeft {
1647
1647
  0% {
1648
1648
  -webkit-transform-origin: left bottom;
1649
- transform-origin: left bottom;
1649
+ transform-origin: left bottom;
1650
1650
  -webkit-transform: rotate(-90deg);
1651
1651
  transform: rotate(-90deg);
1652
1652
  opacity: 0;
1653
1653
  }
1654
1654
  100% {
1655
1655
  -webkit-transform-origin: left bottom;
1656
- transform-origin: left bottom;
1656
+ transform-origin: left bottom;
1657
1657
  -webkit-transform: rotate(0);
1658
1658
  transform: rotate(0);
1659
1659
  opacity: 1;
@@ -1662,8 +1662,8 @@
1662
1662
  @keyframes rotateInDownLeft {
1663
1663
  0% {
1664
1664
  -webkit-transform-origin: left bottom;
1665
- -ms-transform-origin: left bottom;
1666
- transform-origin: left bottom;
1665
+ -ms-transform-origin: left bottom;
1666
+ transform-origin: left bottom;
1667
1667
  -webkit-transform: rotate(-90deg);
1668
1668
  -ms-transform: rotate(-90deg);
1669
1669
  transform: rotate(-90deg);
@@ -1671,8 +1671,8 @@
1671
1671
  }
1672
1672
  100% {
1673
1673
  -webkit-transform-origin: left bottom;
1674
- -ms-transform-origin: left bottom;
1675
- transform-origin: left bottom;
1674
+ -ms-transform-origin: left bottom;
1675
+ transform-origin: left bottom;
1676
1676
  -webkit-transform: rotate(0);
1677
1677
  -ms-transform: rotate(0);
1678
1678
  transform: rotate(0);
@@ -1681,19 +1681,19 @@
1681
1681
  }
1682
1682
  .rotateInDownLeft {
1683
1683
  -webkit-animation-name: rotateInDownLeft;
1684
- animation-name: rotateInDownLeft;
1684
+ animation-name: rotateInDownLeft;
1685
1685
  }
1686
1686
  @-webkit-keyframes rotateInDownRight {
1687
1687
  0% {
1688
1688
  -webkit-transform-origin: right bottom;
1689
- transform-origin: right bottom;
1689
+ transform-origin: right bottom;
1690
1690
  -webkit-transform: rotate(90deg);
1691
1691
  transform: rotate(90deg);
1692
1692
  opacity: 0;
1693
1693
  }
1694
1694
  100% {
1695
1695
  -webkit-transform-origin: right bottom;
1696
- transform-origin: right bottom;
1696
+ transform-origin: right bottom;
1697
1697
  -webkit-transform: rotate(0);
1698
1698
  transform: rotate(0);
1699
1699
  opacity: 1;
@@ -1702,8 +1702,8 @@
1702
1702
  @keyframes rotateInDownRight {
1703
1703
  0% {
1704
1704
  -webkit-transform-origin: right bottom;
1705
- -ms-transform-origin: right bottom;
1706
- transform-origin: right bottom;
1705
+ -ms-transform-origin: right bottom;
1706
+ transform-origin: right bottom;
1707
1707
  -webkit-transform: rotate(90deg);
1708
1708
  -ms-transform: rotate(90deg);
1709
1709
  transform: rotate(90deg);
@@ -1711,8 +1711,8 @@
1711
1711
  }
1712
1712
  100% {
1713
1713
  -webkit-transform-origin: right bottom;
1714
- -ms-transform-origin: right bottom;
1715
- transform-origin: right bottom;
1714
+ -ms-transform-origin: right bottom;
1715
+ transform-origin: right bottom;
1716
1716
  -webkit-transform: rotate(0);
1717
1717
  -ms-transform: rotate(0);
1718
1718
  transform: rotate(0);
@@ -1721,19 +1721,19 @@
1721
1721
  }
1722
1722
  .rotateInDownRight {
1723
1723
  -webkit-animation-name: rotateInDownRight;
1724
- animation-name: rotateInDownRight;
1724
+ animation-name: rotateInDownRight;
1725
1725
  }
1726
1726
  @-webkit-keyframes rotateInUpLeft {
1727
1727
  0% {
1728
1728
  -webkit-transform-origin: left bottom;
1729
- transform-origin: left bottom;
1729
+ transform-origin: left bottom;
1730
1730
  -webkit-transform: rotate(90deg);
1731
1731
  transform: rotate(90deg);
1732
1732
  opacity: 0;
1733
1733
  }
1734
1734
  100% {
1735
1735
  -webkit-transform-origin: left bottom;
1736
- transform-origin: left bottom;
1736
+ transform-origin: left bottom;
1737
1737
  -webkit-transform: rotate(0);
1738
1738
  transform: rotate(0);
1739
1739
  opacity: 1;
@@ -1742,8 +1742,8 @@
1742
1742
  @keyframes rotateInUpLeft {
1743
1743
  0% {
1744
1744
  -webkit-transform-origin: left bottom;
1745
- -ms-transform-origin: left bottom;
1746
- transform-origin: left bottom;
1745
+ -ms-transform-origin: left bottom;
1746
+ transform-origin: left bottom;
1747
1747
  -webkit-transform: rotate(90deg);
1748
1748
  -ms-transform: rotate(90deg);
1749
1749
  transform: rotate(90deg);
@@ -1751,8 +1751,8 @@
1751
1751
  }
1752
1752
  100% {
1753
1753
  -webkit-transform-origin: left bottom;
1754
- -ms-transform-origin: left bottom;
1755
- transform-origin: left bottom;
1754
+ -ms-transform-origin: left bottom;
1755
+ transform-origin: left bottom;
1756
1756
  -webkit-transform: rotate(0);
1757
1757
  -ms-transform: rotate(0);
1758
1758
  transform: rotate(0);
@@ -1761,19 +1761,19 @@
1761
1761
  }
1762
1762
  .rotateInUpLeft {
1763
1763
  -webkit-animation-name: rotateInUpLeft;
1764
- animation-name: rotateInUpLeft;
1764
+ animation-name: rotateInUpLeft;
1765
1765
  }
1766
1766
  @-webkit-keyframes rotateInUpRight {
1767
1767
  0% {
1768
1768
  -webkit-transform-origin: right bottom;
1769
- transform-origin: right bottom;
1769
+ transform-origin: right bottom;
1770
1770
  -webkit-transform: rotate(-90deg);
1771
1771
  transform: rotate(-90deg);
1772
1772
  opacity: 0;
1773
1773
  }
1774
1774
  100% {
1775
1775
  -webkit-transform-origin: right bottom;
1776
- transform-origin: right bottom;
1776
+ transform-origin: right bottom;
1777
1777
  -webkit-transform: rotate(0);
1778
1778
  transform: rotate(0);
1779
1779
  opacity: 1;
@@ -1782,8 +1782,8 @@
1782
1782
  @keyframes rotateInUpRight {
1783
1783
  0% {
1784
1784
  -webkit-transform-origin: right bottom;
1785
- -ms-transform-origin: right bottom;
1786
- transform-origin: right bottom;
1785
+ -ms-transform-origin: right bottom;
1786
+ transform-origin: right bottom;
1787
1787
  -webkit-transform: rotate(-90deg);
1788
1788
  -ms-transform: rotate(-90deg);
1789
1789
  transform: rotate(-90deg);
@@ -1791,8 +1791,8 @@
1791
1791
  }
1792
1792
  100% {
1793
1793
  -webkit-transform-origin: right bottom;
1794
- -ms-transform-origin: right bottom;
1795
- transform-origin: right bottom;
1794
+ -ms-transform-origin: right bottom;
1795
+ transform-origin: right bottom;
1796
1796
  -webkit-transform: rotate(0);
1797
1797
  -ms-transform: rotate(0);
1798
1798
  transform: rotate(0);
@@ -1801,19 +1801,19 @@
1801
1801
  }
1802
1802
  .rotateInUpRight {
1803
1803
  -webkit-animation-name: rotateInUpRight;
1804
- animation-name: rotateInUpRight;
1804
+ animation-name: rotateInUpRight;
1805
1805
  }
1806
1806
  @-webkit-keyframes rotateOut {
1807
1807
  0% {
1808
1808
  -webkit-transform-origin: center center;
1809
- transform-origin: center center;
1809
+ transform-origin: center center;
1810
1810
  -webkit-transform: rotate(0);
1811
1811
  transform: rotate(0);
1812
1812
  opacity: 1;
1813
1813
  }
1814
1814
  100% {
1815
1815
  -webkit-transform-origin: center center;
1816
- transform-origin: center center;
1816
+ transform-origin: center center;
1817
1817
  -webkit-transform: rotate(200deg);
1818
1818
  transform: rotate(200deg);
1819
1819
  opacity: 0;
@@ -1822,8 +1822,8 @@
1822
1822
  @keyframes rotateOut {
1823
1823
  0% {
1824
1824
  -webkit-transform-origin: center center;
1825
- -ms-transform-origin: center center;
1826
- transform-origin: center center;
1825
+ -ms-transform-origin: center center;
1826
+ transform-origin: center center;
1827
1827
  -webkit-transform: rotate(0);
1828
1828
  -ms-transform: rotate(0);
1829
1829
  transform: rotate(0);
@@ -1831,8 +1831,8 @@
1831
1831
  }
1832
1832
  100% {
1833
1833
  -webkit-transform-origin: center center;
1834
- -ms-transform-origin: center center;
1835
- transform-origin: center center;
1834
+ -ms-transform-origin: center center;
1835
+ transform-origin: center center;
1836
1836
  -webkit-transform: rotate(200deg);
1837
1837
  -ms-transform: rotate(200deg);
1838
1838
  transform: rotate(200deg);
@@ -1841,19 +1841,19 @@
1841
1841
  }
1842
1842
  .rotateOut {
1843
1843
  -webkit-animation-name: rotateOut;
1844
- animation-name: rotateOut;
1844
+ animation-name: rotateOut;
1845
1845
  }
1846
1846
  @-webkit-keyframes rotateOutDownLeft {
1847
1847
  0% {
1848
1848
  -webkit-transform-origin: left bottom;
1849
- transform-origin: left bottom;
1849
+ transform-origin: left bottom;
1850
1850
  -webkit-transform: rotate(0);
1851
1851
  transform: rotate(0);
1852
1852
  opacity: 1;
1853
1853
  }
1854
1854
  100% {
1855
1855
  -webkit-transform-origin: left bottom;
1856
- transform-origin: left bottom;
1856
+ transform-origin: left bottom;
1857
1857
  -webkit-transform: rotate(90deg);
1858
1858
  transform: rotate(90deg);
1859
1859
  opacity: 0;
@@ -1862,8 +1862,8 @@
1862
1862
  @keyframes rotateOutDownLeft {
1863
1863
  0% {
1864
1864
  -webkit-transform-origin: left bottom;
1865
- -ms-transform-origin: left bottom;
1866
- transform-origin: left bottom;
1865
+ -ms-transform-origin: left bottom;
1866
+ transform-origin: left bottom;
1867
1867
  -webkit-transform: rotate(0);
1868
1868
  -ms-transform: rotate(0);
1869
1869
  transform: rotate(0);
@@ -1871,8 +1871,8 @@
1871
1871
  }
1872
1872
  100% {
1873
1873
  -webkit-transform-origin: left bottom;
1874
- -ms-transform-origin: left bottom;
1875
- transform-origin: left bottom;
1874
+ -ms-transform-origin: left bottom;
1875
+ transform-origin: left bottom;
1876
1876
  -webkit-transform: rotate(90deg);
1877
1877
  -ms-transform: rotate(90deg);
1878
1878
  transform: rotate(90deg);
@@ -1881,19 +1881,19 @@
1881
1881
  }
1882
1882
  .rotateOutDownLeft {
1883
1883
  -webkit-animation-name: rotateOutDownLeft;
1884
- animation-name: rotateOutDownLeft;
1884
+ animation-name: rotateOutDownLeft;
1885
1885
  }
1886
1886
  @-webkit-keyframes rotateOutDownRight {
1887
1887
  0% {
1888
1888
  -webkit-transform-origin: right bottom;
1889
- transform-origin: right bottom;
1889
+ transform-origin: right bottom;
1890
1890
  -webkit-transform: rotate(0);
1891
1891
  transform: rotate(0);
1892
1892
  opacity: 1;
1893
1893
  }
1894
1894
  100% {
1895
1895
  -webkit-transform-origin: right bottom;
1896
- transform-origin: right bottom;
1896
+ transform-origin: right bottom;
1897
1897
  -webkit-transform: rotate(-90deg);
1898
1898
  transform: rotate(-90deg);
1899
1899
  opacity: 0;
@@ -1902,8 +1902,8 @@
1902
1902
  @keyframes rotateOutDownRight {
1903
1903
  0% {
1904
1904
  -webkit-transform-origin: right bottom;
1905
- -ms-transform-origin: right bottom;
1906
- transform-origin: right bottom;
1905
+ -ms-transform-origin: right bottom;
1906
+ transform-origin: right bottom;
1907
1907
  -webkit-transform: rotate(0);
1908
1908
  -ms-transform: rotate(0);
1909
1909
  transform: rotate(0);
@@ -1911,8 +1911,8 @@
1911
1911
  }
1912
1912
  100% {
1913
1913
  -webkit-transform-origin: right bottom;
1914
- -ms-transform-origin: right bottom;
1915
- transform-origin: right bottom;
1914
+ -ms-transform-origin: right bottom;
1915
+ transform-origin: right bottom;
1916
1916
  -webkit-transform: rotate(-90deg);
1917
1917
  -ms-transform: rotate(-90deg);
1918
1918
  transform: rotate(-90deg);
@@ -1921,19 +1921,19 @@
1921
1921
  }
1922
1922
  .rotateOutDownRight {
1923
1923
  -webkit-animation-name: rotateOutDownRight;
1924
- animation-name: rotateOutDownRight;
1924
+ animation-name: rotateOutDownRight;
1925
1925
  }
1926
1926
  @-webkit-keyframes rotateOutUpLeft {
1927
1927
  0% {
1928
1928
  -webkit-transform-origin: left bottom;
1929
- transform-origin: left bottom;
1929
+ transform-origin: left bottom;
1930
1930
  -webkit-transform: rotate(0);
1931
1931
  transform: rotate(0);
1932
1932
  opacity: 1;
1933
1933
  }
1934
1934
  100% {
1935
1935
  -webkit-transform-origin: left bottom;
1936
- transform-origin: left bottom;
1936
+ transform-origin: left bottom;
1937
1937
  -webkit-transform: rotate(-90deg);
1938
1938
  transform: rotate(-90deg);
1939
1939
  opacity: 0;
@@ -1942,8 +1942,8 @@
1942
1942
  @keyframes rotateOutUpLeft {
1943
1943
  0% {
1944
1944
  -webkit-transform-origin: left bottom;
1945
- -ms-transform-origin: left bottom;
1946
- transform-origin: left bottom;
1945
+ -ms-transform-origin: left bottom;
1946
+ transform-origin: left bottom;
1947
1947
  -webkit-transform: rotate(0);
1948
1948
  -ms-transform: rotate(0);
1949
1949
  transform: rotate(0);
@@ -1951,8 +1951,8 @@
1951
1951
  }
1952
1952
  100% {
1953
1953
  -webkit-transform-origin: left bottom;
1954
- -ms-transform-origin: left bottom;
1955
- transform-origin: left bottom;
1954
+ -ms-transform-origin: left bottom;
1955
+ transform-origin: left bottom;
1956
1956
  -webkit-transform: rotate(-90deg);
1957
1957
  -ms-transform: rotate(-90deg);
1958
1958
  transform: rotate(-90deg);
@@ -1961,19 +1961,19 @@
1961
1961
  }
1962
1962
  .rotateOutUpLeft {
1963
1963
  -webkit-animation-name: rotateOutUpLeft;
1964
- animation-name: rotateOutUpLeft;
1964
+ animation-name: rotateOutUpLeft;
1965
1965
  }
1966
1966
  @-webkit-keyframes rotateOutUpRight {
1967
1967
  0% {
1968
1968
  -webkit-transform-origin: right bottom;
1969
- transform-origin: right bottom;
1969
+ transform-origin: right bottom;
1970
1970
  -webkit-transform: rotate(0);
1971
1971
  transform: rotate(0);
1972
1972
  opacity: 1;
1973
1973
  }
1974
1974
  100% {
1975
1975
  -webkit-transform-origin: right bottom;
1976
- transform-origin: right bottom;
1976
+ transform-origin: right bottom;
1977
1977
  -webkit-transform: rotate(90deg);
1978
1978
  transform: rotate(90deg);
1979
1979
  opacity: 0;
@@ -1982,8 +1982,8 @@
1982
1982
  @keyframes rotateOutUpRight {
1983
1983
  0% {
1984
1984
  -webkit-transform-origin: right bottom;
1985
- -ms-transform-origin: right bottom;
1986
- transform-origin: right bottom;
1985
+ -ms-transform-origin: right bottom;
1986
+ transform-origin: right bottom;
1987
1987
  -webkit-transform: rotate(0);
1988
1988
  -ms-transform: rotate(0);
1989
1989
  transform: rotate(0);
@@ -1991,8 +1991,8 @@
1991
1991
  }
1992
1992
  100% {
1993
1993
  -webkit-transform-origin: right bottom;
1994
- -ms-transform-origin: right bottom;
1995
- transform-origin: right bottom;
1994
+ -ms-transform-origin: right bottom;
1995
+ transform-origin: right bottom;
1996
1996
  -webkit-transform: rotate(90deg);
1997
1997
  -ms-transform: rotate(90deg);
1998
1998
  transform: rotate(90deg);
@@ -2001,7 +2001,7 @@
2001
2001
  }
2002
2002
  .rotateOutUpRight {
2003
2003
  -webkit-animation-name: rotateOutUpRight;
2004
- animation-name: rotateOutUpRight;
2004
+ animation-name: rotateOutUpRight;
2005
2005
  }
2006
2006
  @-webkit-keyframes slideInDown {
2007
2007
  0% {
@@ -2029,7 +2029,7 @@
2029
2029
  }
2030
2030
  .slideInDown {
2031
2031
  -webkit-animation-name: slideInDown;
2032
- animation-name: slideInDown;
2032
+ animation-name: slideInDown;
2033
2033
  }
2034
2034
  @-webkit-keyframes slideInLeft {
2035
2035
  0% {
@@ -2057,7 +2057,7 @@
2057
2057
  }
2058
2058
  .slideInLeft {
2059
2059
  -webkit-animation-name: slideInLeft;
2060
- animation-name: slideInLeft;
2060
+ animation-name: slideInLeft;
2061
2061
  }
2062
2062
  @-webkit-keyframes slideInRight {
2063
2063
  0% {
@@ -2085,7 +2085,7 @@
2085
2085
  }
2086
2086
  .slideInRight {
2087
2087
  -webkit-animation-name: slideInRight;
2088
- animation-name: slideInRight;
2088
+ animation-name: slideInRight;
2089
2089
  }
2090
2090
  @-webkit-keyframes slideOutLeft {
2091
2091
  0% {
@@ -2113,7 +2113,7 @@
2113
2113
  }
2114
2114
  .slideOutLeft {
2115
2115
  -webkit-animation-name: slideOutLeft;
2116
- animation-name: slideOutLeft;
2116
+ animation-name: slideOutLeft;
2117
2117
  }
2118
2118
  @-webkit-keyframes slideOutRight {
2119
2119
  0% {
@@ -2141,7 +2141,7 @@
2141
2141
  }
2142
2142
  .slideOutRight {
2143
2143
  -webkit-animation-name: slideOutRight;
2144
- animation-name: slideOutRight;
2144
+ animation-name: slideOutRight;
2145
2145
  }
2146
2146
  @-webkit-keyframes slideOutUp {
2147
2147
  0% {
@@ -2169,41 +2169,41 @@
2169
2169
  }
2170
2170
  .slideOutUp {
2171
2171
  -webkit-animation-name: slideOutUp;
2172
- animation-name: slideOutUp;
2172
+ animation-name: slideOutUp;
2173
2173
  }
2174
2174
  @-webkit-keyframes hinge {
2175
2175
  0% {
2176
2176
  -webkit-transform: rotate(0);
2177
2177
  transform: rotate(0);
2178
2178
  -webkit-transform-origin: top left;
2179
- transform-origin: top left;
2179
+ transform-origin: top left;
2180
2180
  -webkit-animation-timing-function: ease-in-out;
2181
- animation-timing-function: ease-in-out;
2181
+ animation-timing-function: ease-in-out;
2182
2182
  }
2183
2183
  20%, 60% {
2184
2184
  -webkit-transform: rotate(80deg);
2185
2185
  transform: rotate(80deg);
2186
2186
  -webkit-transform-origin: top left;
2187
- transform-origin: top left;
2187
+ transform-origin: top left;
2188
2188
  -webkit-animation-timing-function: ease-in-out;
2189
- animation-timing-function: ease-in-out;
2189
+ animation-timing-function: ease-in-out;
2190
2190
  }
2191
2191
  40% {
2192
2192
  -webkit-transform: rotate(60deg);
2193
2193
  transform: rotate(60deg);
2194
2194
  -webkit-transform-origin: top left;
2195
- transform-origin: top left;
2195
+ transform-origin: top left;
2196
2196
  -webkit-animation-timing-function: ease-in-out;
2197
- animation-timing-function: ease-in-out;
2197
+ animation-timing-function: ease-in-out;
2198
2198
  }
2199
2199
  80% {
2200
2200
  -webkit-transform: rotate(60deg) translateY(0);
2201
2201
  transform: rotate(60deg) translateY(0);
2202
2202
  opacity: 1;
2203
2203
  -webkit-transform-origin: top left;
2204
- transform-origin: top left;
2204
+ transform-origin: top left;
2205
2205
  -webkit-animation-timing-function: ease-in-out;
2206
- animation-timing-function: ease-in-out;
2206
+ animation-timing-function: ease-in-out;
2207
2207
  }
2208
2208
  100% {
2209
2209
  -webkit-transform: translateY(700px);
@@ -2217,30 +2217,30 @@
2217
2217
  -ms-transform: rotate(0);
2218
2218
  transform: rotate(0);
2219
2219
  -webkit-transform-origin: top left;
2220
- -ms-transform-origin: top left;
2221
- transform-origin: top left;
2220
+ -ms-transform-origin: top left;
2221
+ transform-origin: top left;
2222
2222
  -webkit-animation-timing-function: ease-in-out;
2223
- animation-timing-function: ease-in-out;
2223
+ animation-timing-function: ease-in-out;
2224
2224
  }
2225
2225
  20%, 60% {
2226
2226
  -webkit-transform: rotate(80deg);
2227
2227
  -ms-transform: rotate(80deg);
2228
2228
  transform: rotate(80deg);
2229
2229
  -webkit-transform-origin: top left;
2230
- -ms-transform-origin: top left;
2231
- transform-origin: top left;
2230
+ -ms-transform-origin: top left;
2231
+ transform-origin: top left;
2232
2232
  -webkit-animation-timing-function: ease-in-out;
2233
- animation-timing-function: ease-in-out;
2233
+ animation-timing-function: ease-in-out;
2234
2234
  }
2235
2235
  40% {
2236
2236
  -webkit-transform: rotate(60deg);
2237
2237
  -ms-transform: rotate(60deg);
2238
2238
  transform: rotate(60deg);
2239
2239
  -webkit-transform-origin: top left;
2240
- -ms-transform-origin: top left;
2241
- transform-origin: top left;
2240
+ -ms-transform-origin: top left;
2241
+ transform-origin: top left;
2242
2242
  -webkit-animation-timing-function: ease-in-out;
2243
- animation-timing-function: ease-in-out;
2243
+ animation-timing-function: ease-in-out;
2244
2244
  }
2245
2245
  80% {
2246
2246
  -webkit-transform: rotate(60deg) translateY(0);
@@ -2248,10 +2248,10 @@
2248
2248
  transform: rotate(60deg) translateY(0);
2249
2249
  opacity: 1;
2250
2250
  -webkit-transform-origin: top left;
2251
- -ms-transform-origin: top left;
2252
- transform-origin: top left;
2251
+ -ms-transform-origin: top left;
2252
+ transform-origin: top left;
2253
2253
  -webkit-animation-timing-function: ease-in-out;
2254
- animation-timing-function: ease-in-out;
2254
+ animation-timing-function: ease-in-out;
2255
2255
  }
2256
2256
  100% {
2257
2257
  -webkit-transform: translateY(700px);
@@ -2262,7 +2262,7 @@
2262
2262
  }
2263
2263
  .hinge {
2264
2264
  -webkit-animation-name: hinge;
2265
- animation-name: hinge;
2265
+ animation-name: hinge;
2266
2266
  }
2267
2267
  @-webkit-keyframes rollIn {
2268
2268
  0% {
@@ -2292,7 +2292,7 @@
2292
2292
  }
2293
2293
  .rollIn {
2294
2294
  -webkit-animation-name: rollIn;
2295
- animation-name: rollIn;
2295
+ animation-name: rollIn;
2296
2296
  }
2297
2297
  @-webkit-keyframes rollOut {
2298
2298
  0% {
@@ -2322,67 +2322,67 @@
2322
2322
  }
2323
2323
  .rollOut {
2324
2324
  -webkit-animation-name: rollOut;
2325
- animation-name: rollOut;
2325
+ animation-name: rollOut;
2326
2326
  }
2327
2327
 
2328
2328
  /* #Delay
2329
2329
  ================================================== */
2330
2330
  .animated.animated-delay-shortest {
2331
2331
  -webkit-animation-delay: 0.25s;
2332
- animation-delay: 0.25s;
2332
+ animation-delay: 0.25s;
2333
2333
  }
2334
2334
  .animated.animated-delay-shorter {
2335
2335
  -webkit-animation-delay: 0.5s;
2336
- animation-delay: 0.5s;
2336
+ animation-delay: 0.5s;
2337
2337
  }
2338
2338
  .animated.animated-delay-short {
2339
2339
  -webkit-animation-delay: 0.75s;
2340
- animation-delay: 0.75s;
2340
+ animation-delay: 0.75s;
2341
2341
  }
2342
2342
  .animated.animated-delay-default {
2343
2343
  -webkit-animation-delay: 1s;
2344
- animation-delay: 1s;
2344
+ animation-delay: 1s;
2345
2345
  }
2346
2346
  .animated.animated-delay-long {
2347
2347
  -webkit-animation-delay: 1.25s;
2348
- animation-delay: 1.25s;
2348
+ animation-delay: 1.25s;
2349
2349
  }
2350
2350
  .animated.animated-delay-longer {
2351
2351
  -webkit-animation-delay: 1.5s;
2352
- animation-delay: 1.5s;
2352
+ animation-delay: 1.5s;
2353
2353
  }
2354
2354
  .animated.animated-delay-longest {
2355
2355
  -webkit-animation-delay: 1.75s;
2356
- animation-delay: 1.75s;
2356
+ animation-delay: 1.75s;
2357
2357
  }
2358
2358
 
2359
2359
  /* #Duration
2360
2360
  ================================================== */
2361
2361
  .animated.animated-duration-fastest {
2362
2362
  -webkit-animation-duration: 0.25s;
2363
- animation-duration: 0.25s;
2363
+ animation-duration: 0.25s;
2364
2364
  }
2365
2365
  .animated.animated-duration-faster {
2366
2366
  -webkit-animation-duration: 0.5s;
2367
- animation-duration: 0.5s;
2367
+ animation-duration: 0.5s;
2368
2368
  }
2369
2369
  .animated.animated-duration-fast {
2370
2370
  -webkit-animation-duration: 0.75s;
2371
- animation-duration: 0.75s;
2371
+ animation-duration: 0.75s;
2372
2372
  }
2373
2373
  .animated.animated-duration-default {
2374
2374
  -webkit-animation-duration: 1s;
2375
- animation-duration: 1s;
2375
+ animation-duration: 1s;
2376
2376
  }
2377
2377
  .animated.animated-duration-slow {
2378
2378
  -webkit-animation-duration: 1.25s;
2379
- animation-duration: 1.25s;
2379
+ animation-duration: 1.25s;
2380
2380
  }
2381
2381
  .animated.animated-duration-slower {
2382
2382
  -webkit-animation-duration: 1.5s;
2383
- animation-duration: 1.5s;
2383
+ animation-duration: 1.5s;
2384
2384
  }
2385
2385
  .animated.animated-duration-slowest {
2386
2386
  -webkit-animation-duration: 1.75s;
2387
- animation-duration: 1.75s;
2387
+ animation-duration: 1.75s;
2388
2388
  }