@mdsfe/mds-ui 0.2.0 → 0.2.9-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/CHANGELOG.md +178 -0
  2. package/README.md +9 -9
  3. package/dist/_mixin/popper.js +1 -0
  4. package/dist/_util/_popper/dom-helper.js +284 -0
  5. package/dist/_util/_popper/popper-mixin.js +35 -0
  6. package/dist/_util/_popper/popper.js +1267 -0
  7. package/dist/_util/_popper/popup/popup-main.js +224 -0
  8. package/dist/_util/_popper/popup/popup-manager.js +205 -0
  9. package/dist/_util/_popper/vue-popper.js +204 -0
  10. package/dist/_util/popup/index.js +1 -1
  11. package/dist/_util/tree/node.js +2 -0
  12. package/dist/_util/tree/tree.js +65 -21
  13. package/dist/_util/util.js +29 -1
  14. package/dist/affix.js +18 -18
  15. package/dist/anchor.js +18 -18
  16. package/dist/avatar.js +17 -17
  17. package/dist/backtop.js +19 -19
  18. package/dist/badge.js +21 -21
  19. package/dist/bordershadow.js +20 -9
  20. package/dist/breadcrumb.js +18 -18
  21. package/dist/button.js +21 -21
  22. package/dist/card.js +18 -18
  23. package/dist/carousel.js +76 -76
  24. package/dist/cascader.js +4980 -0
  25. package/dist/cascaderpanel.js +645 -603
  26. package/dist/checkbox.js +23 -23
  27. package/dist/col.js +14 -14
  28. package/dist/collapse.js +6 -6
  29. package/dist/color.js +6 -6
  30. package/dist/datepicker.js +2487 -266
  31. package/dist/divider.js +19 -19
  32. package/dist/drawer.js +787 -37
  33. package/dist/dropdown.js +150 -104
  34. package/dist/empty.js +19 -19
  35. package/dist/font/iconfont.28359fa.ttf +0 -0
  36. package/dist/font/iconfont.486e3d3.woff2 +0 -0
  37. package/dist/font/iconfont.675049e.woff +0 -0
  38. package/dist/font.js +6 -6
  39. package/dist/form.js +28 -26
  40. package/dist/icon.js +55 -47
  41. package/dist/index.js +1 -1
  42. package/dist/input.js +65 -49
  43. package/dist/inputnumber.js +59 -39
  44. package/dist/layout.js +25 -25
  45. package/dist/list.js +17 -17
  46. package/dist/loading.js +21 -8
  47. package/dist/mds-ui.min.css +3 -3
  48. package/dist/mds-ui.min.js +19183 -15407
  49. package/dist/menu.js +31 -31
  50. package/dist/message.js +773 -24
  51. package/dist/modal.js +1146 -307
  52. package/dist/notification.js +27 -27
  53. package/dist/pagination.js +78 -55
  54. package/dist/popconfirm.js +36 -36
  55. package/dist/popover.js +2778 -48
  56. package/dist/progress.js +107 -65
  57. package/dist/radio.js +56 -54
  58. package/dist/rate.js +67 -59
  59. package/dist/row.js +14 -14
  60. package/dist/select.js +847 -503
  61. package/dist/slider.js +25 -25
  62. package/dist/slottable.js +2663 -129
  63. package/dist/steps.js +18 -18
  64. package/dist/style/affix.css +224 -2
  65. package/dist/style/anchor.css +224 -2
  66. package/dist/style/avatar.css +224 -2
  67. package/dist/style/badge.css +224 -2
  68. package/dist/style/bordershadow.css +236 -59
  69. package/dist/style/breadcrumb.css +224 -2
  70. package/dist/style/button.css +234 -5
  71. package/dist/style/card.css +224 -2
  72. package/dist/style/carousel.css +224 -2
  73. package/dist/style/cascader.css +214 -0
  74. package/dist/style/cascaderpanel.css +13 -16
  75. package/dist/style/checkbox.css +230 -8
  76. package/dist/style/col.css +225 -3
  77. package/dist/style/collapse.css +224 -2
  78. package/dist/style/color.css +224 -2
  79. package/dist/style/datepicker.css +236 -2
  80. package/dist/style/divider.css +227 -2
  81. package/dist/style/drawer.css +224 -2
  82. package/dist/style/dropdown.css +234 -5
  83. package/dist/style/empty.css +224 -2
  84. package/dist/style/font.css +226 -4
  85. package/dist/style/form.css +224 -2
  86. package/dist/style/icon.css +226 -3
  87. package/dist/style/input.css +231 -5
  88. package/dist/style/inputnumber.css +224 -2
  89. package/dist/style/layout.css +224 -2
  90. package/dist/style/list.css +224 -2
  91. package/dist/style/loading.css +2527 -2
  92. package/dist/style/menu.css +340 -129
  93. package/dist/style/message.css +1 -4
  94. package/dist/style/modal.css +247 -25
  95. package/dist/style/notification.css +224 -2
  96. package/dist/style/pagination.css +236 -7
  97. package/dist/style/popconfirm.css +334 -180
  98. package/dist/style/popover.css +324 -177
  99. package/dist/style/progress.css +226 -3
  100. package/dist/style/radio.css +225 -3
  101. package/dist/style/rate.css +226 -3
  102. package/dist/style/row.css +225 -3
  103. package/dist/style/select.css +240 -12
  104. package/dist/style/slider.css +224 -2
  105. package/dist/style/slottable.css +350 -149
  106. package/dist/style/steps.css +224 -2
  107. package/dist/style/switch.css +224 -2
  108. package/dist/style/table.css +458 -314
  109. package/dist/style/tabs.css +225 -18
  110. package/dist/style/tag.css +224 -2
  111. package/dist/style/text.css +224 -2
  112. package/dist/style/timeline.css +224 -2
  113. package/dist/style/timepicker.css +231 -6
  114. package/dist/style/tooltip.css +340 -129
  115. package/dist/style/tree.css +228 -6
  116. package/dist/style/typography.css +224 -2
  117. package/dist/style/upload.css +224 -2
  118. package/dist/switch.js +20 -20
  119. package/dist/table.js +3071 -201
  120. package/dist/tabs.js +24 -22
  121. package/dist/tag.js +17 -23
  122. package/dist/text.js +38 -22
  123. package/dist/timeline.js +14 -14
  124. package/dist/timepicker.js +3063 -172
  125. package/dist/tooltip.js +2550 -27
  126. package/dist/transfer.js +28 -28
  127. package/dist/transition.js +6 -6
  128. package/dist/tree.js +316 -171
  129. package/dist/typography.js +6 -6
  130. package/dist/upload.js +46 -38
  131. package/package.json +9 -5
@@ -504,7 +504,7 @@ a {
504
504
  }
505
505
  a:focus {
506
506
  text-decoration: underline;
507
- text-decoration-skip: ink;
507
+ text-decoration-skip-ink: auto;
508
508
  }
509
509
  a:hover {
510
510
  color: #3f89ff;
@@ -554,7 +554,7 @@ samp {
554
554
  font-display: auto;
555
555
  font-style: normal;
556
556
  /* project id 1921203 */
557
- src: url('//at.alicdn.com/t/font_1921203_dze2k4tp7o.woff2?t=1629700491964') format('woff2'), url('//at.alicdn.com/t/font_1921203_dze2k4tp7o.woff?t=1629700491964') format('woff'), url('//at.alicdn.com/t/font_1921203_dze2k4tp7o.ttf?t=1629700491964') format('truetype');
557
+ src: url(/dist/font/iconfont.486e3d3.woff2) format('woff2'), url(/dist/font/iconfont.675049e.woff) format('woff'), url(/dist/font/iconfont.28359fa.ttf) format('truetype');
558
558
  }
559
559
  .mdsicon {
560
560
  display: inline-block;
@@ -2071,6 +2071,54 @@ samp {
2071
2071
  .mdsicon-line-process:before {
2072
2072
  content: "\E60B";
2073
2073
  }
2074
+ .mdsicon-line-cluster:before {
2075
+ content: "\E6D2";
2076
+ }
2077
+ .mdsicon-line-approval:before {
2078
+ content: "\E6D1";
2079
+ }
2080
+ .mdsicon-line-whistory:before {
2081
+ content: "\E6D0";
2082
+ }
2083
+ .mdsicon-line-wtable:before {
2084
+ content: "\E6CF";
2085
+ }
2086
+ .mdsicon-line-Apply:before {
2087
+ content: "\E6CE";
2088
+ }
2089
+ .mdsicon-line-wlist:before {
2090
+ content: "\E6CD";
2091
+ }
2092
+ .mdsicon-line-monitor:before {
2093
+ content: "\E6CC";
2094
+ }
2095
+ .mdsicon-line-deploy:before {
2096
+ content: "\E6CB";
2097
+ }
2098
+ .mdsicon-line-gateway:before {
2099
+ content: "\E6CA";
2100
+ }
2101
+ .mdsicon-line-measure:before {
2102
+ content: "\E6C9";
2103
+ }
2104
+ .mdsicon-line-new:before {
2105
+ content: "\E6C8";
2106
+ }
2107
+ .mdsicon-line-data:before {
2108
+ content: "\E6C7";
2109
+ }
2110
+ .mdsicon-line-SCF:before {
2111
+ content: "\E6C6";
2112
+ }
2113
+ .mdsicon-line-order:before {
2114
+ content: "\E6C5";
2115
+ }
2116
+ .mdsicon-line-alert:before {
2117
+ content: "\E6C4";
2118
+ }
2119
+ .mdsicon-line-management:before {
2120
+ content: "\E6C3";
2121
+ }
2074
2122
  .mdsicon-line-trend-up:before {
2075
2123
  content: "\EA63";
2076
2124
  }
@@ -2509,6 +2557,9 @@ samp {
2509
2557
  .mdsicon-line-electronic-archives:before {
2510
2558
  content: "\E60D";
2511
2559
  }
2560
+ .mdsicon-line-doc:before {
2561
+ content: "\E707";
2562
+ }
2512
2563
  .mdsicon-line-send-forward:before {
2513
2564
  content: "\EAC6";
2514
2565
  }
@@ -4673,6 +4724,177 @@ samp {
4673
4724
  display: inline-block;
4674
4725
  animation: loadingCircle 6s infinite linear;
4675
4726
  }
4727
+ .mdsicon-line-recommended-2:before {
4728
+ content: "\E698";
4729
+ }
4730
+ .mdsicon-line-history-2:before {
4731
+ content: "\E697";
4732
+ }
4733
+ .mdsicon-fill-collect-1:before {
4734
+ content: "\E669";
4735
+ }
4736
+ .mdsicon-fill-praise-1:before {
4737
+ content: "\E66D";
4738
+ }
4739
+ .mdsicon-line-show:before {
4740
+ content: "\E659";
4741
+ }
4742
+ .mdsicon-line-praise-1:before {
4743
+ content: "\E65D";
4744
+ }
4745
+ .mdsicon-fill-book1:before {
4746
+ content: "\E63F";
4747
+ }
4748
+ .mdsicon-fill-beans:before {
4749
+ content: "\E640";
4750
+ }
4751
+ .mdsicon-fill-article:before {
4752
+ content: "\E641";
4753
+ }
4754
+ .mdsicon-fill-delete1:before {
4755
+ content: "\E642";
4756
+ }
4757
+ .mdsicon-fill-recommend:before {
4758
+ content: "\E643";
4759
+ }
4760
+ .mdsicon-fill-message:before {
4761
+ content: "\E644";
4762
+ }
4763
+ .mdsicon-fill-ranking:before {
4764
+ content: "\E645";
4765
+ }
4766
+ .mdsicon-fill-achievement:before {
4767
+ content: "\E646";
4768
+ }
4769
+ .mdsicon-fill-circle:before {
4770
+ content: "\E647";
4771
+ }
4772
+ .mdsicon-fill-figure-1:before {
4773
+ content: "\E648";
4774
+ }
4775
+ .mdsicon-fill-figure-2:before {
4776
+ content: "\E64A";
4777
+ }
4778
+ .mdsicon-fill-figure-7:before {
4779
+ content: "\E64B";
4780
+ }
4781
+ .mdsicon-fill-figure-4:before {
4782
+ content: "\E64C";
4783
+ }
4784
+ .mdsicon-fill-figure-10:before {
4785
+ content: "\E652";
4786
+ }
4787
+ .mdsicon-fill-figure-5:before {
4788
+ content: "\E653";
4789
+ }
4790
+ .mdsicon-fill-figure-3:before {
4791
+ content: "\E654";
4792
+ }
4793
+ .mdsicon-fill-figure-9:before {
4794
+ content: "\E655";
4795
+ }
4796
+ .mdsicon-fill-figure-6:before {
4797
+ content: "\E656";
4798
+ }
4799
+ .mdsicon-fill-figure-8:before {
4800
+ content: "\E657";
4801
+ }
4802
+ .mdsicon-line-article:before {
4803
+ content: "\E658";
4804
+ }
4805
+ .mdsicon-line-calendar1:before {
4806
+ content: "\E65A";
4807
+ }
4808
+ .mdsicon-line-add:before {
4809
+ content: "\E65B";
4810
+ }
4811
+ .mdsicon-line-download1:before {
4812
+ content: "\E65C";
4813
+ }
4814
+ .mdsicon-line-dynamic:before {
4815
+ content: "\E65E";
4816
+ }
4817
+ .mdsicon-line-change:before {
4818
+ content: "\E65F";
4819
+ }
4820
+ .mdsicon-line-course:before {
4821
+ content: "\E660";
4822
+ }
4823
+ .mdsicon-line-edit1:before {
4824
+ content: "\E661";
4825
+ }
4826
+ .mdsicon-line-comment:before {
4827
+ content: "\E662";
4828
+ }
4829
+ .mdsicon-line-delete1:before {
4830
+ content: "\E663";
4831
+ }
4832
+ .mdsicon-line-email:before {
4833
+ content: "\E664";
4834
+ }
4835
+ .mdsicon-line-message:before {
4836
+ content: "\E665";
4837
+ }
4838
+ .mdsicon-line-feedback:before {
4839
+ content: "\E666";
4840
+ }
4841
+ .mdsicon-line-face1:before {
4842
+ content: "\E667";
4843
+ }
4844
+ .mdsicon-line-link1:before {
4845
+ content: "\E668";
4846
+ }
4847
+ .mdsicon-line-member:before {
4848
+ content: "\E66A";
4849
+ }
4850
+ .mdsicon-line-picture:before {
4851
+ content: "\E66B";
4852
+ }
4853
+ .mdsicon-line-PSQ:before {
4854
+ content: "\E66C";
4855
+ }
4856
+ .mdsicon-line-time1:before {
4857
+ content: "\E66E";
4858
+ }
4859
+ .mdsicon-line-setting1:before {
4860
+ content: "\E66F";
4861
+ }
4862
+ .mdsicon-line-topic:before {
4863
+ content: "\E670";
4864
+ }
4865
+ .mdsicon-line-transmit:before {
4866
+ content: "\E671";
4867
+ }
4868
+ .mdsicon-line-select:before {
4869
+ content: "\E672";
4870
+ }
4871
+ .mdsicon-line-management1:before {
4872
+ content: "\E673";
4873
+ }
4874
+ .mdsicon-line-search1:before {
4875
+ content: "\E674";
4876
+ }
4877
+ .mdsicon-line-vote:before {
4878
+ content: "\E675";
4879
+ }
4880
+ .mdsicon-line-prompt:before {
4881
+ content: "\E676";
4882
+ }
4883
+ .mdsicon-line-video:before {
4884
+ content: "\E678";
4885
+ }
4886
+ .mdsicon-line-wechat:before {
4887
+ content: "\E67A";
4888
+ }
4889
+ .mdsicon-line-close1:before {
4890
+ content: "\E67B";
4891
+ }
4892
+ .mdsicon-line-home1:before {
4893
+ content: "\E67C";
4894
+ }
4895
+ .mdsicon-line-landmark:before {
4896
+ content: "\E67D";
4897
+ }
4676
4898
  .fade-enter,
4677
4899
  .fade-appear {
4678
4900
  animation-duration: 0.2s;
@@ -5518,6 +5740,2309 @@ samp {
5518
5740
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
5519
5741
  /* stylelint-disable declaration-bang-space-before */
5520
5742
  /* stylelint-disable declaration-bang-space-before */
5743
+ /**
5744
+ *
5745
+ * All animations must live in their own file
5746
+ * in the animations directory and be included
5747
+ * here.
5748
+ *
5749
+ */
5750
+ /**
5751
+ * Styles shared by multiple animations
5752
+ */
5753
+ /**
5754
+ * Dots
5755
+ */
5756
+ @-webkit-keyframes scale {
5757
+ 0% {
5758
+ -webkit-transform: scale(1);
5759
+ transform: scale(1);
5760
+ opacity: 1;
5761
+ }
5762
+ 45% {
5763
+ -webkit-transform: scale(0.1);
5764
+ transform: scale(0.1);
5765
+ opacity: 0.7;
5766
+ }
5767
+ 80% {
5768
+ -webkit-transform: scale(1);
5769
+ transform: scale(1);
5770
+ opacity: 1;
5771
+ }
5772
+ }
5773
+ @keyframes scale {
5774
+ 0% {
5775
+ -webkit-transform: scale(1);
5776
+ transform: scale(1);
5777
+ opacity: 1;
5778
+ }
5779
+ 45% {
5780
+ -webkit-transform: scale(0.1);
5781
+ transform: scale(0.1);
5782
+ opacity: 0.7;
5783
+ }
5784
+ 80% {
5785
+ -webkit-transform: scale(1);
5786
+ transform: scale(1);
5787
+ opacity: 1;
5788
+ }
5789
+ }
5790
+ .ball-pulse > div:nth-child(0) {
5791
+ -webkit-animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5792
+ animation: scale 0.75s -0.36s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5793
+ }
5794
+ .ball-pulse > div:nth-child(1) {
5795
+ -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5796
+ animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5797
+ }
5798
+ .ball-pulse > div:nth-child(2) {
5799
+ -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5800
+ animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5801
+ }
5802
+ .ball-pulse > div:nth-child(3) {
5803
+ -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5804
+ animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
5805
+ }
5806
+ .ball-pulse > div {
5807
+ background-color: #fff;
5808
+ width: 15px;
5809
+ height: 15px;
5810
+ border-radius: 100%;
5811
+ margin: 2px;
5812
+ -webkit-animation-fill-mode: both;
5813
+ animation-fill-mode: both;
5814
+ display: inline-block;
5815
+ }
5816
+ @-webkit-keyframes ball-pulse-sync {
5817
+ 33% {
5818
+ -webkit-transform: translateY(10px);
5819
+ transform: translateY(10px);
5820
+ }
5821
+ 66% {
5822
+ -webkit-transform: translateY(-10px);
5823
+ transform: translateY(-10px);
5824
+ }
5825
+ 100% {
5826
+ -webkit-transform: translateY(0);
5827
+ transform: translateY(0);
5828
+ }
5829
+ }
5830
+ @keyframes ball-pulse-sync {
5831
+ 33% {
5832
+ -webkit-transform: translateY(10px);
5833
+ transform: translateY(10px);
5834
+ }
5835
+ 66% {
5836
+ -webkit-transform: translateY(-10px);
5837
+ transform: translateY(-10px);
5838
+ }
5839
+ 100% {
5840
+ -webkit-transform: translateY(0);
5841
+ transform: translateY(0);
5842
+ }
5843
+ }
5844
+ .ball-pulse-sync > div:nth-child(0) {
5845
+ -webkit-animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
5846
+ animation: ball-pulse-sync 0.6s -0.21s infinite ease-in-out;
5847
+ }
5848
+ .ball-pulse-sync > div:nth-child(1) {
5849
+ -webkit-animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
5850
+ animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out;
5851
+ }
5852
+ .ball-pulse-sync > div:nth-child(2) {
5853
+ -webkit-animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
5854
+ animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out;
5855
+ }
5856
+ .ball-pulse-sync > div:nth-child(3) {
5857
+ -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
5858
+ animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
5859
+ }
5860
+ .ball-pulse-sync > div {
5861
+ background-color: #fff;
5862
+ width: 15px;
5863
+ height: 15px;
5864
+ border-radius: 100%;
5865
+ margin: 2px;
5866
+ -webkit-animation-fill-mode: both;
5867
+ animation-fill-mode: both;
5868
+ display: inline-block;
5869
+ }
5870
+ @-webkit-keyframes ball-scale {
5871
+ 0% {
5872
+ -webkit-transform: scale(0);
5873
+ transform: scale(0);
5874
+ }
5875
+ 100% {
5876
+ -webkit-transform: scale(1);
5877
+ transform: scale(1);
5878
+ opacity: 0;
5879
+ }
5880
+ }
5881
+ @keyframes ball-scale {
5882
+ 0% {
5883
+ -webkit-transform: scale(0);
5884
+ transform: scale(0);
5885
+ }
5886
+ 100% {
5887
+ -webkit-transform: scale(1);
5888
+ transform: scale(1);
5889
+ opacity: 0;
5890
+ }
5891
+ }
5892
+ .ball-scale > div {
5893
+ background-color: #fff;
5894
+ width: 15px;
5895
+ height: 15px;
5896
+ border-radius: 100%;
5897
+ margin: 2px;
5898
+ -webkit-animation-fill-mode: both;
5899
+ animation-fill-mode: both;
5900
+ display: inline-block;
5901
+ height: 60px;
5902
+ width: 60px;
5903
+ -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
5904
+ animation: ball-scale 1s 0s ease-in-out infinite;
5905
+ }
5906
+ @keyframes ball-scale {
5907
+ 0% {
5908
+ -webkit-transform: scale(0);
5909
+ transform: scale(0);
5910
+ }
5911
+ 100% {
5912
+ -webkit-transform: scale(1);
5913
+ transform: scale(1);
5914
+ opacity: 0;
5915
+ }
5916
+ }
5917
+ .ball-scale > div {
5918
+ background-color: #fff;
5919
+ width: 15px;
5920
+ height: 15px;
5921
+ border-radius: 100%;
5922
+ margin: 2px;
5923
+ -webkit-animation-fill-mode: both;
5924
+ animation-fill-mode: both;
5925
+ display: inline-block;
5926
+ height: 60px;
5927
+ width: 60px;
5928
+ -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
5929
+ animation: ball-scale 1s 0s ease-in-out infinite;
5930
+ }
5931
+ .ball-scale-random {
5932
+ width: 37px;
5933
+ height: 40px;
5934
+ }
5935
+ .ball-scale-random > div {
5936
+ background-color: #fff;
5937
+ width: 15px;
5938
+ height: 15px;
5939
+ border-radius: 100%;
5940
+ margin: 2px;
5941
+ -webkit-animation-fill-mode: both;
5942
+ animation-fill-mode: both;
5943
+ position: absolute;
5944
+ display: inline-block;
5945
+ height: 30px;
5946
+ width: 30px;
5947
+ -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
5948
+ animation: ball-scale 1s 0s ease-in-out infinite;
5949
+ }
5950
+ .ball-scale-random > div:nth-child(1) {
5951
+ margin-left: -7px;
5952
+ -webkit-animation: ball-scale 1s 0.2s ease-in-out infinite;
5953
+ animation: ball-scale 1s 0.2s ease-in-out infinite;
5954
+ }
5955
+ .ball-scale-random > div:nth-child(3) {
5956
+ margin-left: -2px;
5957
+ margin-top: 9px;
5958
+ -webkit-animation: ball-scale 1s 0.5s ease-in-out infinite;
5959
+ animation: ball-scale 1s 0.5s ease-in-out infinite;
5960
+ }
5961
+ @-webkit-keyframes rotate {
5962
+ 0% {
5963
+ -webkit-transform: rotate(0deg);
5964
+ transform: rotate(0deg);
5965
+ }
5966
+ 50% {
5967
+ -webkit-transform: rotate(180deg);
5968
+ transform: rotate(180deg);
5969
+ }
5970
+ 100% {
5971
+ -webkit-transform: rotate(360deg);
5972
+ transform: rotate(360deg);
5973
+ }
5974
+ }
5975
+ @keyframes rotate {
5976
+ 0% {
5977
+ -webkit-transform: rotate(0deg);
5978
+ transform: rotate(0deg);
5979
+ }
5980
+ 50% {
5981
+ -webkit-transform: rotate(180deg);
5982
+ transform: rotate(180deg);
5983
+ }
5984
+ 100% {
5985
+ -webkit-transform: rotate(360deg);
5986
+ transform: rotate(360deg);
5987
+ }
5988
+ }
5989
+ .ball-rotate {
5990
+ position: relative;
5991
+ }
5992
+ .ball-rotate > div {
5993
+ background-color: #fff;
5994
+ width: 15px;
5995
+ height: 15px;
5996
+ border-radius: 100%;
5997
+ margin: 2px;
5998
+ -webkit-animation-fill-mode: both;
5999
+ animation-fill-mode: both;
6000
+ position: relative;
6001
+ }
6002
+ .ball-rotate > div:first-child {
6003
+ -webkit-animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
6004
+ animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite;
6005
+ }
6006
+ .ball-rotate > div:before,
6007
+ .ball-rotate > div:after {
6008
+ background-color: inherit;
6009
+ width: 15px;
6010
+ height: 15px;
6011
+ border-radius: 100%;
6012
+ margin: 2px;
6013
+ content: "";
6014
+ position: absolute;
6015
+ opacity: 0.8;
6016
+ }
6017
+ .ball-rotate > div:before {
6018
+ top: 0px;
6019
+ left: -28px;
6020
+ }
6021
+ .ball-rotate > div:after {
6022
+ top: 0px;
6023
+ left: 25px;
6024
+ }
6025
+ @keyframes rotate {
6026
+ 0% {
6027
+ -webkit-transform: rotate(0deg) scale(1);
6028
+ transform: rotate(0deg) scale(1);
6029
+ }
6030
+ 50% {
6031
+ -webkit-transform: rotate(180deg) scale(0.6);
6032
+ transform: rotate(180deg) scale(0.6);
6033
+ }
6034
+ 100% {
6035
+ -webkit-transform: rotate(360deg) scale(1);
6036
+ transform: rotate(360deg) scale(1);
6037
+ }
6038
+ }
6039
+ .ball-clip-rotate > div {
6040
+ background-color: #fff;
6041
+ width: 15px;
6042
+ height: 15px;
6043
+ border-radius: 100%;
6044
+ margin: 2px;
6045
+ -webkit-animation-fill-mode: both;
6046
+ animation-fill-mode: both;
6047
+ border: 2px solid #fff;
6048
+ border-bottom-color: transparent !important;
6049
+ height: 25px;
6050
+ width: 25px;
6051
+ background: transparent !important;
6052
+ display: inline-block;
6053
+ -webkit-animation: rotate 0.75s 0s linear infinite;
6054
+ animation: rotate 0.75s 0s linear infinite;
6055
+ }
6056
+ @keyframes rotate {
6057
+ 0% {
6058
+ -webkit-transform: rotate(0deg) scale(1);
6059
+ transform: rotate(0deg) scale(1);
6060
+ }
6061
+ 50% {
6062
+ -webkit-transform: rotate(180deg) scale(0.6);
6063
+ transform: rotate(180deg) scale(0.6);
6064
+ }
6065
+ 100% {
6066
+ -webkit-transform: rotate(360deg) scale(1);
6067
+ transform: rotate(360deg) scale(1);
6068
+ }
6069
+ }
6070
+ @keyframes scale {
6071
+ 30% {
6072
+ -webkit-transform: scale(0.3);
6073
+ transform: scale(0.3);
6074
+ }
6075
+ 100% {
6076
+ -webkit-transform: scale(1);
6077
+ transform: scale(1);
6078
+ }
6079
+ }
6080
+ .ball-clip-rotate-pulse {
6081
+ position: relative;
6082
+ -webkit-transform: translateY(-15px);
6083
+ -ms-transform: translateY(-15px);
6084
+ transform: translateY(-15px);
6085
+ }
6086
+ .ball-clip-rotate-pulse > div {
6087
+ -webkit-animation-fill-mode: both;
6088
+ animation-fill-mode: both;
6089
+ position: absolute;
6090
+ top: 0px;
6091
+ left: 0px;
6092
+ border-radius: 100%;
6093
+ }
6094
+ .ball-clip-rotate-pulse > div:first-child {
6095
+ background: #fff;
6096
+ height: 16px;
6097
+ width: 16px;
6098
+ top: 7px;
6099
+ left: -7px;
6100
+ -webkit-animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
6101
+ animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
6102
+ }
6103
+ .ball-clip-rotate-pulse > div:last-child {
6104
+ position: absolute;
6105
+ border: 2px solid #fff;
6106
+ width: 30px;
6107
+ height: 30px;
6108
+ left: -14px;
6109
+ top: 0;
6110
+ background: transparent !important;
6111
+ border: 2px solid;
6112
+ border-top-color: #fff;
6113
+ border-right-color: transparent !important;
6114
+ border-bottom-color: #fff;
6115
+ border-left-color: transparent !important;
6116
+ -webkit-animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
6117
+ animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
6118
+ -webkit-animation-duration: 1s;
6119
+ animation-duration: 1s;
6120
+ }
6121
+ @keyframes rotate {
6122
+ 0% {
6123
+ -webkit-transform: rotate(0deg) scale(1);
6124
+ transform: rotate(0deg) scale(1);
6125
+ }
6126
+ 50% {
6127
+ -webkit-transform: rotate(180deg) scale(0.6);
6128
+ transform: rotate(180deg) scale(0.6);
6129
+ }
6130
+ 100% {
6131
+ -webkit-transform: rotate(360deg) scale(1);
6132
+ transform: rotate(360deg) scale(1);
6133
+ }
6134
+ }
6135
+ .ball-clip-rotate-multiple {
6136
+ position: relative;
6137
+ }
6138
+ .ball-clip-rotate-multiple > div {
6139
+ background-color: transparent !important;
6140
+ -webkit-animation-fill-mode: both;
6141
+ animation-fill-mode: both;
6142
+ position: absolute;
6143
+ left: -20px;
6144
+ top: -20px;
6145
+ border: 2px solid #fff;
6146
+ border-bottom-color: transparent !important;
6147
+ border-top-color: transparent !important;
6148
+ border-radius: 100%;
6149
+ height: 35px;
6150
+ width: 35px;
6151
+ -webkit-animation: rotate 1s 0s ease-in-out infinite;
6152
+ animation: rotate 1s 0s ease-in-out infinite;
6153
+ }
6154
+ .ball-clip-rotate-multiple > div:last-child {
6155
+ display: inline-block;
6156
+ top: -10px;
6157
+ left: -10px;
6158
+ width: 15px;
6159
+ height: 15px;
6160
+ border-color: #fff;
6161
+ border-bottom-color: transparent !important;
6162
+ border-top-color: transparent !important;
6163
+ background-color: transparent !important;
6164
+ -webkit-animation-duration: 0.5s;
6165
+ animation-duration: 0.5s;
6166
+ -webkit-animation-direction: reverse;
6167
+ animation-direction: reverse;
6168
+ }
6169
+ @-webkit-keyframes ball-scale-ripple {
6170
+ 0% {
6171
+ -webkit-transform: scale(0.1);
6172
+ transform: scale(0.1);
6173
+ opacity: 1;
6174
+ }
6175
+ 70% {
6176
+ -webkit-transform: scale(1);
6177
+ transform: scale(1);
6178
+ opacity: 0.7;
6179
+ }
6180
+ 100% {
6181
+ opacity: 0.0;
6182
+ }
6183
+ }
6184
+ @keyframes ball-scale-ripple {
6185
+ 0% {
6186
+ -webkit-transform: scale(0.1);
6187
+ transform: scale(0.1);
6188
+ opacity: 1;
6189
+ }
6190
+ 70% {
6191
+ -webkit-transform: scale(1);
6192
+ transform: scale(1);
6193
+ opacity: 0.7;
6194
+ }
6195
+ 100% {
6196
+ opacity: 0.0;
6197
+ }
6198
+ }
6199
+ .ball-scale-ripple > div {
6200
+ -webkit-animation-fill-mode: both;
6201
+ animation-fill-mode: both;
6202
+ height: 50px;
6203
+ width: 50px;
6204
+ border-radius: 100%;
6205
+ border: 2px solid #fff;
6206
+ background-color: transparent !important;
6207
+ -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
6208
+ animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
6209
+ }
6210
+ @-webkit-keyframes ball-scale-ripple-multiple {
6211
+ 0% {
6212
+ -webkit-transform: scale(0.1);
6213
+ transform: scale(0.1);
6214
+ opacity: 1;
6215
+ }
6216
+ 70% {
6217
+ -webkit-transform: scale(1);
6218
+ transform: scale(1);
6219
+ opacity: 0.7;
6220
+ }
6221
+ 100% {
6222
+ opacity: 0.0;
6223
+ }
6224
+ }
6225
+ @keyframes ball-scale-ripple-multiple {
6226
+ 0% {
6227
+ -webkit-transform: scale(0.1);
6228
+ transform: scale(0.1);
6229
+ opacity: 1;
6230
+ }
6231
+ 70% {
6232
+ -webkit-transform: scale(1);
6233
+ transform: scale(1);
6234
+ opacity: 0.7;
6235
+ }
6236
+ 100% {
6237
+ opacity: 0.0;
6238
+ }
6239
+ }
6240
+ .ball-scale-ripple-multiple {
6241
+ position: relative;
6242
+ -webkit-transform: translateY(-25px);
6243
+ -ms-transform: translateY(-25px);
6244
+ transform: translateY(-25px);
6245
+ }
6246
+ .ball-scale-ripple-multiple > div:nth-child(0) {
6247
+ -webkit-animation-delay: -0.8s;
6248
+ animation-delay: -0.8s;
6249
+ }
6250
+ .ball-scale-ripple-multiple > div:nth-child(1) {
6251
+ -webkit-animation-delay: -0.6s;
6252
+ animation-delay: -0.6s;
6253
+ }
6254
+ .ball-scale-ripple-multiple > div:nth-child(2) {
6255
+ -webkit-animation-delay: -0.4s;
6256
+ animation-delay: -0.4s;
6257
+ }
6258
+ .ball-scale-ripple-multiple > div:nth-child(3) {
6259
+ -webkit-animation-delay: -0.2s;
6260
+ animation-delay: -0.2s;
6261
+ }
6262
+ .ball-scale-ripple-multiple > div {
6263
+ -webkit-animation-fill-mode: both;
6264
+ animation-fill-mode: both;
6265
+ position: absolute;
6266
+ top: -2px;
6267
+ left: -26px;
6268
+ width: 50px;
6269
+ height: 50px;
6270
+ border-radius: 100%;
6271
+ border: 2px solid #fff;
6272
+ background-color: transparent !important;
6273
+ -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
6274
+ animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8);
6275
+ }
6276
+ @-webkit-keyframes ball-beat {
6277
+ 50% {
6278
+ opacity: 0.2;
6279
+ -webkit-transform: scale(0.75);
6280
+ transform: scale(0.75);
6281
+ }
6282
+ 100% {
6283
+ opacity: 1;
6284
+ -webkit-transform: scale(1);
6285
+ transform: scale(1);
6286
+ }
6287
+ }
6288
+ @keyframes ball-beat {
6289
+ 50% {
6290
+ opacity: 0.2;
6291
+ -webkit-transform: scale(0.75);
6292
+ transform: scale(0.75);
6293
+ }
6294
+ 100% {
6295
+ opacity: 1;
6296
+ -webkit-transform: scale(1);
6297
+ transform: scale(1);
6298
+ }
6299
+ }
6300
+ .ball-beat > div {
6301
+ background-color: #fff;
6302
+ width: 15px;
6303
+ height: 15px;
6304
+ border-radius: 100%;
6305
+ margin: 2px;
6306
+ -webkit-animation-fill-mode: both;
6307
+ animation-fill-mode: both;
6308
+ display: inline-block;
6309
+ -webkit-animation: ball-beat 0.7s 0s infinite linear;
6310
+ animation: ball-beat 0.7s 0s infinite linear;
6311
+ }
6312
+ .ball-beat > div:nth-child(2n-1) {
6313
+ -webkit-animation-delay: -0.35s !important;
6314
+ animation-delay: -0.35s !important;
6315
+ }
6316
+ @-webkit-keyframes ball-scale-multiple {
6317
+ 0% {
6318
+ -webkit-transform: scale(0);
6319
+ transform: scale(0);
6320
+ opacity: 0;
6321
+ }
6322
+ 5% {
6323
+ opacity: 1;
6324
+ }
6325
+ 100% {
6326
+ -webkit-transform: scale(1);
6327
+ transform: scale(1);
6328
+ opacity: 0;
6329
+ }
6330
+ }
6331
+ @keyframes ball-scale-multiple {
6332
+ 0% {
6333
+ -webkit-transform: scale(0);
6334
+ transform: scale(0);
6335
+ opacity: 0;
6336
+ }
6337
+ 5% {
6338
+ opacity: 1;
6339
+ }
6340
+ 100% {
6341
+ -webkit-transform: scale(1);
6342
+ transform: scale(1);
6343
+ opacity: 0;
6344
+ }
6345
+ }
6346
+ .ball-scale-multiple {
6347
+ position: relative;
6348
+ -webkit-transform: translateY(-30px);
6349
+ -ms-transform: translateY(-30px);
6350
+ transform: translateY(-30px);
6351
+ }
6352
+ .ball-scale-multiple > div:nth-child(2) {
6353
+ -webkit-animation-delay: -0.4s;
6354
+ animation-delay: -0.4s;
6355
+ }
6356
+ .ball-scale-multiple > div:nth-child(3) {
6357
+ -webkit-animation-delay: -0.2s;
6358
+ animation-delay: -0.2s;
6359
+ }
6360
+ .ball-scale-multiple > div {
6361
+ background-color: #fff;
6362
+ width: 15px;
6363
+ height: 15px;
6364
+ border-radius: 100%;
6365
+ margin: 2px;
6366
+ -webkit-animation-fill-mode: both;
6367
+ animation-fill-mode: both;
6368
+ position: absolute;
6369
+ left: -30px;
6370
+ top: 0px;
6371
+ opacity: 0;
6372
+ margin: 0;
6373
+ width: 60px;
6374
+ height: 60px;
6375
+ -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
6376
+ animation: ball-scale-multiple 1s 0s linear infinite;
6377
+ }
6378
+ @-webkit-keyframes ball-triangle-path-1 {
6379
+ 33% {
6380
+ -webkit-transform: translate(25px, -50px);
6381
+ transform: translate(25px, -50px);
6382
+ }
6383
+ 66% {
6384
+ -webkit-transform: translate(50px, 0px);
6385
+ transform: translate(50px, 0px);
6386
+ }
6387
+ 100% {
6388
+ -webkit-transform: translate(0px, 0px);
6389
+ transform: translate(0px, 0px);
6390
+ }
6391
+ }
6392
+ @keyframes ball-triangle-path-1 {
6393
+ 33% {
6394
+ -webkit-transform: translate(25px, -50px);
6395
+ transform: translate(25px, -50px);
6396
+ }
6397
+ 66% {
6398
+ -webkit-transform: translate(50px, 0px);
6399
+ transform: translate(50px, 0px);
6400
+ }
6401
+ 100% {
6402
+ -webkit-transform: translate(0px, 0px);
6403
+ transform: translate(0px, 0px);
6404
+ }
6405
+ }
6406
+ @-webkit-keyframes ball-triangle-path-2 {
6407
+ 33% {
6408
+ -webkit-transform: translate(25px, 50px);
6409
+ transform: translate(25px, 50px);
6410
+ }
6411
+ 66% {
6412
+ -webkit-transform: translate(-25px, 50px);
6413
+ transform: translate(-25px, 50px);
6414
+ }
6415
+ 100% {
6416
+ -webkit-transform: translate(0px, 0px);
6417
+ transform: translate(0px, 0px);
6418
+ }
6419
+ }
6420
+ @keyframes ball-triangle-path-2 {
6421
+ 33% {
6422
+ -webkit-transform: translate(25px, 50px);
6423
+ transform: translate(25px, 50px);
6424
+ }
6425
+ 66% {
6426
+ -webkit-transform: translate(-25px, 50px);
6427
+ transform: translate(-25px, 50px);
6428
+ }
6429
+ 100% {
6430
+ -webkit-transform: translate(0px, 0px);
6431
+ transform: translate(0px, 0px);
6432
+ }
6433
+ }
6434
+ @-webkit-keyframes ball-triangle-path-3 {
6435
+ 33% {
6436
+ -webkit-transform: translate(-50px, 0px);
6437
+ transform: translate(-50px, 0px);
6438
+ }
6439
+ 66% {
6440
+ -webkit-transform: translate(-25px, -50px);
6441
+ transform: translate(-25px, -50px);
6442
+ }
6443
+ 100% {
6444
+ -webkit-transform: translate(0px, 0px);
6445
+ transform: translate(0px, 0px);
6446
+ }
6447
+ }
6448
+ @keyframes ball-triangle-path-3 {
6449
+ 33% {
6450
+ -webkit-transform: translate(-50px, 0px);
6451
+ transform: translate(-50px, 0px);
6452
+ }
6453
+ 66% {
6454
+ -webkit-transform: translate(-25px, -50px);
6455
+ transform: translate(-25px, -50px);
6456
+ }
6457
+ 100% {
6458
+ -webkit-transform: translate(0px, 0px);
6459
+ transform: translate(0px, 0px);
6460
+ }
6461
+ }
6462
+ .ball-triangle-path {
6463
+ position: relative;
6464
+ -webkit-transform: translate(-29.994px, -37.50938px);
6465
+ -ms-transform: translate(-29.994px, -37.50938px);
6466
+ transform: translate(-29.994px, -37.50938px);
6467
+ }
6468
+ .ball-triangle-path > div:nth-child(1) {
6469
+ -webkit-animation-name: ball-triangle-path-1;
6470
+ animation-name: ball-triangle-path-1;
6471
+ -webkit-animation-delay: 0;
6472
+ animation-delay: 0;
6473
+ -webkit-animation-duration: 2s;
6474
+ animation-duration: 2s;
6475
+ -webkit-animation-timing-function: ease-in-out;
6476
+ animation-timing-function: ease-in-out;
6477
+ -webkit-animation-iteration-count: infinite;
6478
+ animation-iteration-count: infinite;
6479
+ }
6480
+ .ball-triangle-path > div:nth-child(2) {
6481
+ -webkit-animation-name: ball-triangle-path-2;
6482
+ animation-name: ball-triangle-path-2;
6483
+ -webkit-animation-delay: 0;
6484
+ animation-delay: 0;
6485
+ -webkit-animation-duration: 2s;
6486
+ animation-duration: 2s;
6487
+ -webkit-animation-timing-function: ease-in-out;
6488
+ animation-timing-function: ease-in-out;
6489
+ -webkit-animation-iteration-count: infinite;
6490
+ animation-iteration-count: infinite;
6491
+ }
6492
+ .ball-triangle-path > div:nth-child(3) {
6493
+ -webkit-animation-name: ball-triangle-path-3;
6494
+ animation-name: ball-triangle-path-3;
6495
+ -webkit-animation-delay: 0;
6496
+ animation-delay: 0;
6497
+ -webkit-animation-duration: 2s;
6498
+ animation-duration: 2s;
6499
+ -webkit-animation-timing-function: ease-in-out;
6500
+ animation-timing-function: ease-in-out;
6501
+ -webkit-animation-iteration-count: infinite;
6502
+ animation-iteration-count: infinite;
6503
+ }
6504
+ .ball-triangle-path > div {
6505
+ -webkit-animation-fill-mode: both;
6506
+ animation-fill-mode: both;
6507
+ position: absolute;
6508
+ width: 10px;
6509
+ height: 10px;
6510
+ border-radius: 100%;
6511
+ border: 1px solid #fff;
6512
+ background-color: transparent !important;
6513
+ }
6514
+ .ball-triangle-path > div:nth-of-type(1) {
6515
+ top: 50px;
6516
+ }
6517
+ .ball-triangle-path > div:nth-of-type(2) {
6518
+ left: 25px;
6519
+ }
6520
+ .ball-triangle-path > div:nth-of-type(3) {
6521
+ top: 50px;
6522
+ left: 50px;
6523
+ }
6524
+ @-webkit-keyframes ball-pulse-rise-even {
6525
+ 0% {
6526
+ -webkit-transform: scale(1.1);
6527
+ transform: scale(1.1);
6528
+ }
6529
+ 25% {
6530
+ -webkit-transform: translateY(-30px);
6531
+ transform: translateY(-30px);
6532
+ }
6533
+ 50% {
6534
+ -webkit-transform: scale(0.4);
6535
+ transform: scale(0.4);
6536
+ }
6537
+ 75% {
6538
+ -webkit-transform: translateY(30px);
6539
+ transform: translateY(30px);
6540
+ }
6541
+ 100% {
6542
+ -webkit-transform: translateY(0);
6543
+ transform: translateY(0);
6544
+ -webkit-transform: scale(1);
6545
+ transform: scale(1);
6546
+ }
6547
+ }
6548
+ @keyframes ball-pulse-rise-even {
6549
+ 0% {
6550
+ -webkit-transform: scale(1.1);
6551
+ transform: scale(1.1);
6552
+ }
6553
+ 25% {
6554
+ -webkit-transform: translateY(-30px);
6555
+ transform: translateY(-30px);
6556
+ }
6557
+ 50% {
6558
+ -webkit-transform: scale(0.4);
6559
+ transform: scale(0.4);
6560
+ }
6561
+ 75% {
6562
+ -webkit-transform: translateY(30px);
6563
+ transform: translateY(30px);
6564
+ }
6565
+ 100% {
6566
+ -webkit-transform: translateY(0);
6567
+ transform: translateY(0);
6568
+ -webkit-transform: scale(1);
6569
+ transform: scale(1);
6570
+ }
6571
+ }
6572
+ @-webkit-keyframes ball-pulse-rise-odd {
6573
+ 0% {
6574
+ -webkit-transform: scale(0.4);
6575
+ transform: scale(0.4);
6576
+ }
6577
+ 25% {
6578
+ -webkit-transform: translateY(30px);
6579
+ transform: translateY(30px);
6580
+ }
6581
+ 50% {
6582
+ -webkit-transform: scale(1.1);
6583
+ transform: scale(1.1);
6584
+ }
6585
+ 75% {
6586
+ -webkit-transform: translateY(-30px);
6587
+ transform: translateY(-30px);
6588
+ }
6589
+ 100% {
6590
+ -webkit-transform: translateY(0);
6591
+ transform: translateY(0);
6592
+ -webkit-transform: scale(0.75);
6593
+ transform: scale(0.75);
6594
+ }
6595
+ }
6596
+ @keyframes ball-pulse-rise-odd {
6597
+ 0% {
6598
+ -webkit-transform: scale(0.4);
6599
+ transform: scale(0.4);
6600
+ }
6601
+ 25% {
6602
+ -webkit-transform: translateY(30px);
6603
+ transform: translateY(30px);
6604
+ }
6605
+ 50% {
6606
+ -webkit-transform: scale(1.1);
6607
+ transform: scale(1.1);
6608
+ }
6609
+ 75% {
6610
+ -webkit-transform: translateY(-30px);
6611
+ transform: translateY(-30px);
6612
+ }
6613
+ 100% {
6614
+ -webkit-transform: translateY(0);
6615
+ transform: translateY(0);
6616
+ -webkit-transform: scale(0.75);
6617
+ transform: scale(0.75);
6618
+ }
6619
+ }
6620
+ .ball-pulse-rise > div {
6621
+ background-color: #fff;
6622
+ width: 15px;
6623
+ height: 15px;
6624
+ border-radius: 100%;
6625
+ margin: 2px;
6626
+ -webkit-animation-fill-mode: both;
6627
+ animation-fill-mode: both;
6628
+ display: inline-block;
6629
+ -webkit-animation-duration: 1s;
6630
+ animation-duration: 1s;
6631
+ -webkit-animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
6632
+ animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
6633
+ -webkit-animation-iteration-count: infinite;
6634
+ animation-iteration-count: infinite;
6635
+ -webkit-animation-delay: 0;
6636
+ animation-delay: 0;
6637
+ }
6638
+ .ball-pulse-rise > div:nth-child(2n) {
6639
+ -webkit-animation-name: ball-pulse-rise-even;
6640
+ animation-name: ball-pulse-rise-even;
6641
+ }
6642
+ .ball-pulse-rise > div:nth-child(2n-1) {
6643
+ -webkit-animation-name: ball-pulse-rise-odd;
6644
+ animation-name: ball-pulse-rise-odd;
6645
+ }
6646
+ @-webkit-keyframes ball-grid-beat {
6647
+ 50% {
6648
+ opacity: 0.7;
6649
+ }
6650
+ 100% {
6651
+ opacity: 1;
6652
+ }
6653
+ }
6654
+ @keyframes ball-grid-beat {
6655
+ 50% {
6656
+ opacity: 0.7;
6657
+ }
6658
+ 100% {
6659
+ opacity: 1;
6660
+ }
6661
+ }
6662
+ .ball-grid-beat {
6663
+ width: 57px;
6664
+ }
6665
+ .ball-grid-beat > div:nth-child(1) {
6666
+ -webkit-animation-delay: 0.44s;
6667
+ animation-delay: 0.44s;
6668
+ -webkit-animation-duration: 1.27s;
6669
+ animation-duration: 1.27s;
6670
+ }
6671
+ .ball-grid-beat > div:nth-child(2) {
6672
+ -webkit-animation-delay: 0.2s;
6673
+ animation-delay: 0.2s;
6674
+ -webkit-animation-duration: 1.52s;
6675
+ animation-duration: 1.52s;
6676
+ }
6677
+ .ball-grid-beat > div:nth-child(3) {
6678
+ -webkit-animation-delay: 0.14s;
6679
+ animation-delay: 0.14s;
6680
+ -webkit-animation-duration: 0.61s;
6681
+ animation-duration: 0.61s;
6682
+ }
6683
+ .ball-grid-beat > div:nth-child(4) {
6684
+ -webkit-animation-delay: 0.15s;
6685
+ animation-delay: 0.15s;
6686
+ -webkit-animation-duration: 0.82s;
6687
+ animation-duration: 0.82s;
6688
+ }
6689
+ .ball-grid-beat > div:nth-child(5) {
6690
+ -webkit-animation-delay: -0.01s;
6691
+ animation-delay: -0.01s;
6692
+ -webkit-animation-duration: 1.24s;
6693
+ animation-duration: 1.24s;
6694
+ }
6695
+ .ball-grid-beat > div:nth-child(6) {
6696
+ -webkit-animation-delay: -0.07s;
6697
+ animation-delay: -0.07s;
6698
+ -webkit-animation-duration: 1.35s;
6699
+ animation-duration: 1.35s;
6700
+ }
6701
+ .ball-grid-beat > div:nth-child(7) {
6702
+ -webkit-animation-delay: 0.29s;
6703
+ animation-delay: 0.29s;
6704
+ -webkit-animation-duration: 1.44s;
6705
+ animation-duration: 1.44s;
6706
+ }
6707
+ .ball-grid-beat > div:nth-child(8) {
6708
+ -webkit-animation-delay: 0.63s;
6709
+ animation-delay: 0.63s;
6710
+ -webkit-animation-duration: 1.19s;
6711
+ animation-duration: 1.19s;
6712
+ }
6713
+ .ball-grid-beat > div:nth-child(9) {
6714
+ -webkit-animation-delay: -0.18s;
6715
+ animation-delay: -0.18s;
6716
+ -webkit-animation-duration: 1.48s;
6717
+ animation-duration: 1.48s;
6718
+ }
6719
+ .ball-grid-beat > div {
6720
+ background-color: #fff;
6721
+ width: 15px;
6722
+ height: 15px;
6723
+ border-radius: 100%;
6724
+ margin: 2px;
6725
+ -webkit-animation-fill-mode: both;
6726
+ animation-fill-mode: both;
6727
+ display: inline-block;
6728
+ float: left;
6729
+ -webkit-animation-name: ball-grid-beat;
6730
+ animation-name: ball-grid-beat;
6731
+ -webkit-animation-iteration-count: infinite;
6732
+ animation-iteration-count: infinite;
6733
+ -webkit-animation-delay: 0;
6734
+ animation-delay: 0;
6735
+ }
6736
+ @-webkit-keyframes ball-grid-pulse {
6737
+ 0% {
6738
+ -webkit-transform: scale(1);
6739
+ transform: scale(1);
6740
+ }
6741
+ 50% {
6742
+ -webkit-transform: scale(0.5);
6743
+ transform: scale(0.5);
6744
+ opacity: 0.7;
6745
+ }
6746
+ 100% {
6747
+ -webkit-transform: scale(1);
6748
+ transform: scale(1);
6749
+ opacity: 1;
6750
+ }
6751
+ }
6752
+ @keyframes ball-grid-pulse {
6753
+ 0% {
6754
+ -webkit-transform: scale(1);
6755
+ transform: scale(1);
6756
+ }
6757
+ 50% {
6758
+ -webkit-transform: scale(0.5);
6759
+ transform: scale(0.5);
6760
+ opacity: 0.7;
6761
+ }
6762
+ 100% {
6763
+ -webkit-transform: scale(1);
6764
+ transform: scale(1);
6765
+ opacity: 1;
6766
+ }
6767
+ }
6768
+ .ball-grid-pulse {
6769
+ width: 57px;
6770
+ }
6771
+ .ball-grid-pulse > div:nth-child(1) {
6772
+ -webkit-animation-delay: 0.58s;
6773
+ animation-delay: 0.58s;
6774
+ -webkit-animation-duration: 0.9s;
6775
+ animation-duration: 0.9s;
6776
+ }
6777
+ .ball-grid-pulse > div:nth-child(2) {
6778
+ -webkit-animation-delay: 0.01s;
6779
+ animation-delay: 0.01s;
6780
+ -webkit-animation-duration: 0.94s;
6781
+ animation-duration: 0.94s;
6782
+ }
6783
+ .ball-grid-pulse > div:nth-child(3) {
6784
+ -webkit-animation-delay: 0.25s;
6785
+ animation-delay: 0.25s;
6786
+ -webkit-animation-duration: 1.43s;
6787
+ animation-duration: 1.43s;
6788
+ }
6789
+ .ball-grid-pulse > div:nth-child(4) {
6790
+ -webkit-animation-delay: -0.03s;
6791
+ animation-delay: -0.03s;
6792
+ -webkit-animation-duration: 0.74s;
6793
+ animation-duration: 0.74s;
6794
+ }
6795
+ .ball-grid-pulse > div:nth-child(5) {
6796
+ -webkit-animation-delay: 0.21s;
6797
+ animation-delay: 0.21s;
6798
+ -webkit-animation-duration: 0.68s;
6799
+ animation-duration: 0.68s;
6800
+ }
6801
+ .ball-grid-pulse > div:nth-child(6) {
6802
+ -webkit-animation-delay: 0.25s;
6803
+ animation-delay: 0.25s;
6804
+ -webkit-animation-duration: 1.17s;
6805
+ animation-duration: 1.17s;
6806
+ }
6807
+ .ball-grid-pulse > div:nth-child(7) {
6808
+ -webkit-animation-delay: 0.46s;
6809
+ animation-delay: 0.46s;
6810
+ -webkit-animation-duration: 1.41s;
6811
+ animation-duration: 1.41s;
6812
+ }
6813
+ .ball-grid-pulse > div:nth-child(8) {
6814
+ -webkit-animation-delay: 0.02s;
6815
+ animation-delay: 0.02s;
6816
+ -webkit-animation-duration: 1.56s;
6817
+ animation-duration: 1.56s;
6818
+ }
6819
+ .ball-grid-pulse > div:nth-child(9) {
6820
+ -webkit-animation-delay: 0.13s;
6821
+ animation-delay: 0.13s;
6822
+ -webkit-animation-duration: 0.78s;
6823
+ animation-duration: 0.78s;
6824
+ }
6825
+ .ball-grid-pulse > div {
6826
+ background-color: #fff;
6827
+ width: 15px;
6828
+ height: 15px;
6829
+ border-radius: 100%;
6830
+ margin: 2px;
6831
+ -webkit-animation-fill-mode: both;
6832
+ animation-fill-mode: both;
6833
+ display: inline-block;
6834
+ float: left;
6835
+ -webkit-animation-name: ball-grid-pulse;
6836
+ animation-name: ball-grid-pulse;
6837
+ -webkit-animation-iteration-count: infinite;
6838
+ animation-iteration-count: infinite;
6839
+ -webkit-animation-delay: 0;
6840
+ animation-delay: 0;
6841
+ }
6842
+ @-webkit-keyframes ball-spin-fade-loader {
6843
+ 50% {
6844
+ opacity: 0.3;
6845
+ -webkit-transform: scale(0.4);
6846
+ transform: scale(0.4);
6847
+ }
6848
+ 100% {
6849
+ opacity: 1;
6850
+ -webkit-transform: scale(1);
6851
+ transform: scale(1);
6852
+ }
6853
+ }
6854
+ @keyframes ball-spin-fade-loader {
6855
+ 50% {
6856
+ opacity: 0.3;
6857
+ -webkit-transform: scale(0.4);
6858
+ transform: scale(0.4);
6859
+ }
6860
+ 100% {
6861
+ opacity: 1;
6862
+ -webkit-transform: scale(1);
6863
+ transform: scale(1);
6864
+ }
6865
+ }
6866
+ .ball-spin-fade-loader {
6867
+ position: relative;
6868
+ top: -10px;
6869
+ left: -10px;
6870
+ }
6871
+ .ball-spin-fade-loader > div:nth-child(1) {
6872
+ top: 25px;
6873
+ left: 0;
6874
+ -webkit-animation: ball-spin-fade-loader 1s -0.96s infinite linear;
6875
+ animation: ball-spin-fade-loader 1s -0.96s infinite linear;
6876
+ }
6877
+ .ball-spin-fade-loader > div:nth-child(2) {
6878
+ top: 17.04545px;
6879
+ left: 17.04545px;
6880
+ -webkit-animation: ball-spin-fade-loader 1s -0.84s infinite linear;
6881
+ animation: ball-spin-fade-loader 1s -0.84s infinite linear;
6882
+ }
6883
+ .ball-spin-fade-loader > div:nth-child(3) {
6884
+ top: 0;
6885
+ left: 25px;
6886
+ -webkit-animation: ball-spin-fade-loader 1s -0.72s infinite linear;
6887
+ animation: ball-spin-fade-loader 1s -0.72s infinite linear;
6888
+ }
6889
+ .ball-spin-fade-loader > div:nth-child(4) {
6890
+ top: -17.04545px;
6891
+ left: 17.04545px;
6892
+ -webkit-animation: ball-spin-fade-loader 1s -0.6s infinite linear;
6893
+ animation: ball-spin-fade-loader 1s -0.6s infinite linear;
6894
+ }
6895
+ .ball-spin-fade-loader > div:nth-child(5) {
6896
+ top: -25px;
6897
+ left: 0;
6898
+ -webkit-animation: ball-spin-fade-loader 1s -0.48s infinite linear;
6899
+ animation: ball-spin-fade-loader 1s -0.48s infinite linear;
6900
+ }
6901
+ .ball-spin-fade-loader > div:nth-child(6) {
6902
+ top: -17.04545px;
6903
+ left: -17.04545px;
6904
+ -webkit-animation: ball-spin-fade-loader 1s -0.36s infinite linear;
6905
+ animation: ball-spin-fade-loader 1s -0.36s infinite linear;
6906
+ }
6907
+ .ball-spin-fade-loader > div:nth-child(7) {
6908
+ top: 0;
6909
+ left: -25px;
6910
+ -webkit-animation: ball-spin-fade-loader 1s -0.24s infinite linear;
6911
+ animation: ball-spin-fade-loader 1s -0.24s infinite linear;
6912
+ }
6913
+ .ball-spin-fade-loader > div:nth-child(8) {
6914
+ top: 17.04545px;
6915
+ left: -17.04545px;
6916
+ -webkit-animation: ball-spin-fade-loader 1s -0.12s infinite linear;
6917
+ animation: ball-spin-fade-loader 1s -0.12s infinite linear;
6918
+ }
6919
+ .ball-spin-fade-loader > div {
6920
+ background-color: #fff;
6921
+ width: 15px;
6922
+ height: 15px;
6923
+ border-radius: 100%;
6924
+ margin: 2px;
6925
+ -webkit-animation-fill-mode: both;
6926
+ animation-fill-mode: both;
6927
+ position: absolute;
6928
+ }
6929
+ @-webkit-keyframes ball-spin-loader {
6930
+ 75% {
6931
+ opacity: 0.2;
6932
+ }
6933
+ 100% {
6934
+ opacity: 1;
6935
+ }
6936
+ }
6937
+ @keyframes ball-spin-loader {
6938
+ 75% {
6939
+ opacity: 0.2;
6940
+ }
6941
+ 100% {
6942
+ opacity: 1;
6943
+ }
6944
+ }
6945
+ .ball-spin-loader {
6946
+ position: relative;
6947
+ }
6948
+ .ball-spin-loader > span:nth-child(1) {
6949
+ top: 45px;
6950
+ left: 0;
6951
+ -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
6952
+ animation: ball-spin-loader 2s 0.9s infinite linear;
6953
+ }
6954
+ .ball-spin-loader > span:nth-child(2) {
6955
+ top: 30.68182px;
6956
+ left: 30.68182px;
6957
+ -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
6958
+ animation: ball-spin-loader 2s 1.8s infinite linear;
6959
+ }
6960
+ .ball-spin-loader > span:nth-child(3) {
6961
+ top: 0;
6962
+ left: 45px;
6963
+ -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
6964
+ animation: ball-spin-loader 2s 2.7s infinite linear;
6965
+ }
6966
+ .ball-spin-loader > span:nth-child(4) {
6967
+ top: -30.68182px;
6968
+ left: 30.68182px;
6969
+ -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
6970
+ animation: ball-spin-loader 2s 3.6s infinite linear;
6971
+ }
6972
+ .ball-spin-loader > span:nth-child(5) {
6973
+ top: -45px;
6974
+ left: 0;
6975
+ -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
6976
+ animation: ball-spin-loader 2s 4.5s infinite linear;
6977
+ }
6978
+ .ball-spin-loader > span:nth-child(6) {
6979
+ top: -30.68182px;
6980
+ left: -30.68182px;
6981
+ -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
6982
+ animation: ball-spin-loader 2s 5.4s infinite linear;
6983
+ }
6984
+ .ball-spin-loader > span:nth-child(7) {
6985
+ top: 0;
6986
+ left: -45px;
6987
+ -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
6988
+ animation: ball-spin-loader 2s 6.3s infinite linear;
6989
+ }
6990
+ .ball-spin-loader > span:nth-child(8) {
6991
+ top: 30.68182px;
6992
+ left: -30.68182px;
6993
+ -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
6994
+ animation: ball-spin-loader 2s 7.2s infinite linear;
6995
+ }
6996
+ .ball-spin-loader > div {
6997
+ -webkit-animation-fill-mode: both;
6998
+ animation-fill-mode: both;
6999
+ position: absolute;
7000
+ width: 15px;
7001
+ height: 15px;
7002
+ border-radius: 100%;
7003
+ background: green;
7004
+ }
7005
+ @-webkit-keyframes ball-zig {
7006
+ 33% {
7007
+ -webkit-transform: translate(-15px, -30px);
7008
+ transform: translate(-15px, -30px);
7009
+ }
7010
+ 66% {
7011
+ -webkit-transform: translate(15px, -30px);
7012
+ transform: translate(15px, -30px);
7013
+ }
7014
+ 100% {
7015
+ -webkit-transform: translate(0, 0);
7016
+ transform: translate(0, 0);
7017
+ }
7018
+ }
7019
+ @keyframes ball-zig {
7020
+ 33% {
7021
+ -webkit-transform: translate(-15px, -30px);
7022
+ transform: translate(-15px, -30px);
7023
+ }
7024
+ 66% {
7025
+ -webkit-transform: translate(15px, -30px);
7026
+ transform: translate(15px, -30px);
7027
+ }
7028
+ 100% {
7029
+ -webkit-transform: translate(0, 0);
7030
+ transform: translate(0, 0);
7031
+ }
7032
+ }
7033
+ @-webkit-keyframes ball-zag {
7034
+ 33% {
7035
+ -webkit-transform: translate(15px, 30px);
7036
+ transform: translate(15px, 30px);
7037
+ }
7038
+ 66% {
7039
+ -webkit-transform: translate(-15px, 30px);
7040
+ transform: translate(-15px, 30px);
7041
+ }
7042
+ 100% {
7043
+ -webkit-transform: translate(0, 0);
7044
+ transform: translate(0, 0);
7045
+ }
7046
+ }
7047
+ @keyframes ball-zag {
7048
+ 33% {
7049
+ -webkit-transform: translate(15px, 30px);
7050
+ transform: translate(15px, 30px);
7051
+ }
7052
+ 66% {
7053
+ -webkit-transform: translate(-15px, 30px);
7054
+ transform: translate(-15px, 30px);
7055
+ }
7056
+ 100% {
7057
+ -webkit-transform: translate(0, 0);
7058
+ transform: translate(0, 0);
7059
+ }
7060
+ }
7061
+ .ball-zig-zag {
7062
+ position: relative;
7063
+ -webkit-transform: translate(-15px, -15px);
7064
+ -ms-transform: translate(-15px, -15px);
7065
+ transform: translate(-15px, -15px);
7066
+ }
7067
+ .ball-zig-zag > div {
7068
+ background-color: #fff;
7069
+ width: 15px;
7070
+ height: 15px;
7071
+ border-radius: 100%;
7072
+ margin: 2px;
7073
+ -webkit-animation-fill-mode: both;
7074
+ animation-fill-mode: both;
7075
+ position: absolute;
7076
+ margin-left: 15px;
7077
+ top: 4px;
7078
+ left: -7px;
7079
+ }
7080
+ .ball-zig-zag > div:first-child {
7081
+ -webkit-animation: ball-zig 0.7s 0s infinite linear;
7082
+ animation: ball-zig 0.7s 0s infinite linear;
7083
+ }
7084
+ .ball-zig-zag > div:last-child {
7085
+ -webkit-animation: ball-zag 0.7s 0s infinite linear;
7086
+ animation: ball-zag 0.7s 0s infinite linear;
7087
+ }
7088
+ @-webkit-keyframes ball-zig-deflect {
7089
+ 17% {
7090
+ -webkit-transform: translate(-15px, -30px);
7091
+ transform: translate(-15px, -30px);
7092
+ }
7093
+ 34% {
7094
+ -webkit-transform: translate(15px, -30px);
7095
+ transform: translate(15px, -30px);
7096
+ }
7097
+ 50% {
7098
+ -webkit-transform: translate(0, 0);
7099
+ transform: translate(0, 0);
7100
+ }
7101
+ 67% {
7102
+ -webkit-transform: translate(15px, -30px);
7103
+ transform: translate(15px, -30px);
7104
+ }
7105
+ 84% {
7106
+ -webkit-transform: translate(-15px, -30px);
7107
+ transform: translate(-15px, -30px);
7108
+ }
7109
+ 100% {
7110
+ -webkit-transform: translate(0, 0);
7111
+ transform: translate(0, 0);
7112
+ }
7113
+ }
7114
+ @keyframes ball-zig-deflect {
7115
+ 17% {
7116
+ -webkit-transform: translate(-15px, -30px);
7117
+ transform: translate(-15px, -30px);
7118
+ }
7119
+ 34% {
7120
+ -webkit-transform: translate(15px, -30px);
7121
+ transform: translate(15px, -30px);
7122
+ }
7123
+ 50% {
7124
+ -webkit-transform: translate(0, 0);
7125
+ transform: translate(0, 0);
7126
+ }
7127
+ 67% {
7128
+ -webkit-transform: translate(15px, -30px);
7129
+ transform: translate(15px, -30px);
7130
+ }
7131
+ 84% {
7132
+ -webkit-transform: translate(-15px, -30px);
7133
+ transform: translate(-15px, -30px);
7134
+ }
7135
+ 100% {
7136
+ -webkit-transform: translate(0, 0);
7137
+ transform: translate(0, 0);
7138
+ }
7139
+ }
7140
+ @-webkit-keyframes ball-zag-deflect {
7141
+ 17% {
7142
+ -webkit-transform: translate(15px, 30px);
7143
+ transform: translate(15px, 30px);
7144
+ }
7145
+ 34% {
7146
+ -webkit-transform: translate(-15px, 30px);
7147
+ transform: translate(-15px, 30px);
7148
+ }
7149
+ 50% {
7150
+ -webkit-transform: translate(0, 0);
7151
+ transform: translate(0, 0);
7152
+ }
7153
+ 67% {
7154
+ -webkit-transform: translate(-15px, 30px);
7155
+ transform: translate(-15px, 30px);
7156
+ }
7157
+ 84% {
7158
+ -webkit-transform: translate(15px, 30px);
7159
+ transform: translate(15px, 30px);
7160
+ }
7161
+ 100% {
7162
+ -webkit-transform: translate(0, 0);
7163
+ transform: translate(0, 0);
7164
+ }
7165
+ }
7166
+ @keyframes ball-zag-deflect {
7167
+ 17% {
7168
+ -webkit-transform: translate(15px, 30px);
7169
+ transform: translate(15px, 30px);
7170
+ }
7171
+ 34% {
7172
+ -webkit-transform: translate(-15px, 30px);
7173
+ transform: translate(-15px, 30px);
7174
+ }
7175
+ 50% {
7176
+ -webkit-transform: translate(0, 0);
7177
+ transform: translate(0, 0);
7178
+ }
7179
+ 67% {
7180
+ -webkit-transform: translate(-15px, 30px);
7181
+ transform: translate(-15px, 30px);
7182
+ }
7183
+ 84% {
7184
+ -webkit-transform: translate(15px, 30px);
7185
+ transform: translate(15px, 30px);
7186
+ }
7187
+ 100% {
7188
+ -webkit-transform: translate(0, 0);
7189
+ transform: translate(0, 0);
7190
+ }
7191
+ }
7192
+ .ball-zig-zag-deflect {
7193
+ position: relative;
7194
+ -webkit-transform: translate(-15px, -15px);
7195
+ -ms-transform: translate(-15px, -15px);
7196
+ transform: translate(-15px, -15px);
7197
+ }
7198
+ .ball-zig-zag-deflect > div {
7199
+ background-color: #fff;
7200
+ width: 15px;
7201
+ height: 15px;
7202
+ border-radius: 100%;
7203
+ margin: 2px;
7204
+ -webkit-animation-fill-mode: both;
7205
+ animation-fill-mode: both;
7206
+ position: absolute;
7207
+ margin-left: 15px;
7208
+ top: 4px;
7209
+ left: -7px;
7210
+ }
7211
+ .ball-zig-zag-deflect > div:first-child {
7212
+ -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
7213
+ animation: ball-zig-deflect 1.5s 0s infinite linear;
7214
+ }
7215
+ .ball-zig-zag-deflect > div:last-child {
7216
+ -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
7217
+ animation: ball-zag-deflect 1.5s 0s infinite linear;
7218
+ }
7219
+ /**
7220
+ * Lines
7221
+ */
7222
+ @-webkit-keyframes line-scale {
7223
+ 0% {
7224
+ -webkit-transform: scaley(1);
7225
+ transform: scaley(1);
7226
+ }
7227
+ 50% {
7228
+ -webkit-transform: scaley(0.4);
7229
+ transform: scaley(0.4);
7230
+ }
7231
+ 100% {
7232
+ -webkit-transform: scaley(1);
7233
+ transform: scaley(1);
7234
+ }
7235
+ }
7236
+ @keyframes line-scale {
7237
+ 0% {
7238
+ -webkit-transform: scaley(1);
7239
+ transform: scaley(1);
7240
+ }
7241
+ 50% {
7242
+ -webkit-transform: scaley(0.4);
7243
+ transform: scaley(0.4);
7244
+ }
7245
+ 100% {
7246
+ -webkit-transform: scaley(1);
7247
+ transform: scaley(1);
7248
+ }
7249
+ }
7250
+ .line-scale > div:nth-child(1) {
7251
+ -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7252
+ animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7253
+ }
7254
+ .line-scale > div:nth-child(2) {
7255
+ -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7256
+ animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7257
+ }
7258
+ .line-scale > div:nth-child(3) {
7259
+ -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7260
+ animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7261
+ }
7262
+ .line-scale > div:nth-child(4) {
7263
+ -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7264
+ animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7265
+ }
7266
+ .line-scale > div:nth-child(5) {
7267
+ -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7268
+ animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
7269
+ }
7270
+ .line-scale > div {
7271
+ background-color: #fff;
7272
+ width: 4px;
7273
+ height: 35px;
7274
+ border-radius: 2px;
7275
+ margin: 2px;
7276
+ -webkit-animation-fill-mode: both;
7277
+ animation-fill-mode: both;
7278
+ display: inline-block;
7279
+ }
7280
+ @-webkit-keyframes line-scale-party {
7281
+ 0% {
7282
+ -webkit-transform: scale(1);
7283
+ transform: scale(1);
7284
+ }
7285
+ 50% {
7286
+ -webkit-transform: scale(0.5);
7287
+ transform: scale(0.5);
7288
+ }
7289
+ 100% {
7290
+ -webkit-transform: scale(1);
7291
+ transform: scale(1);
7292
+ }
7293
+ }
7294
+ @keyframes line-scale-party {
7295
+ 0% {
7296
+ -webkit-transform: scale(1);
7297
+ transform: scale(1);
7298
+ }
7299
+ 50% {
7300
+ -webkit-transform: scale(0.5);
7301
+ transform: scale(0.5);
7302
+ }
7303
+ 100% {
7304
+ -webkit-transform: scale(1);
7305
+ transform: scale(1);
7306
+ }
7307
+ }
7308
+ .line-scale-party > div:nth-child(1) {
7309
+ -webkit-animation-delay: -0.09s;
7310
+ animation-delay: -0.09s;
7311
+ -webkit-animation-duration: 0.83s;
7312
+ animation-duration: 0.83s;
7313
+ }
7314
+ .line-scale-party > div:nth-child(2) {
7315
+ -webkit-animation-delay: 0.33s;
7316
+ animation-delay: 0.33s;
7317
+ -webkit-animation-duration: 0.64s;
7318
+ animation-duration: 0.64s;
7319
+ }
7320
+ .line-scale-party > div:nth-child(3) {
7321
+ -webkit-animation-delay: 0.32s;
7322
+ animation-delay: 0.32s;
7323
+ -webkit-animation-duration: 0.39s;
7324
+ animation-duration: 0.39s;
7325
+ }
7326
+ .line-scale-party > div:nth-child(4) {
7327
+ -webkit-animation-delay: 0.47s;
7328
+ animation-delay: 0.47s;
7329
+ -webkit-animation-duration: 0.52s;
7330
+ animation-duration: 0.52s;
7331
+ }
7332
+ .line-scale-party > div {
7333
+ background-color: #fff;
7334
+ width: 4px;
7335
+ height: 35px;
7336
+ border-radius: 2px;
7337
+ margin: 2px;
7338
+ -webkit-animation-fill-mode: both;
7339
+ animation-fill-mode: both;
7340
+ display: inline-block;
7341
+ -webkit-animation-name: line-scale-party;
7342
+ animation-name: line-scale-party;
7343
+ -webkit-animation-iteration-count: infinite;
7344
+ animation-iteration-count: infinite;
7345
+ -webkit-animation-delay: 0;
7346
+ animation-delay: 0;
7347
+ }
7348
+ @-webkit-keyframes line-scale-pulse-out {
7349
+ 0% {
7350
+ -webkit-transform: scaley(1);
7351
+ transform: scaley(1);
7352
+ }
7353
+ 50% {
7354
+ -webkit-transform: scaley(0.4);
7355
+ transform: scaley(0.4);
7356
+ }
7357
+ 100% {
7358
+ -webkit-transform: scaley(1);
7359
+ transform: scaley(1);
7360
+ }
7361
+ }
7362
+ @keyframes line-scale-pulse-out {
7363
+ 0% {
7364
+ -webkit-transform: scaley(1);
7365
+ transform: scaley(1);
7366
+ }
7367
+ 50% {
7368
+ -webkit-transform: scaley(0.4);
7369
+ transform: scaley(0.4);
7370
+ }
7371
+ 100% {
7372
+ -webkit-transform: scaley(1);
7373
+ transform: scaley(1);
7374
+ }
7375
+ }
7376
+ .line-scale-pulse-out > div {
7377
+ background-color: #fff;
7378
+ width: 4px;
7379
+ height: 35px;
7380
+ border-radius: 2px;
7381
+ margin: 2px;
7382
+ -webkit-animation-fill-mode: both;
7383
+ animation-fill-mode: both;
7384
+ display: inline-block;
7385
+ -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
7386
+ animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
7387
+ }
7388
+ .line-scale-pulse-out > div:nth-child(2),
7389
+ .line-scale-pulse-out > div:nth-child(4) {
7390
+ -webkit-animation-delay: -0.4s !important;
7391
+ animation-delay: -0.4s !important;
7392
+ }
7393
+ .line-scale-pulse-out > div:nth-child(1),
7394
+ .line-scale-pulse-out > div:nth-child(5) {
7395
+ -webkit-animation-delay: -0.2s !important;
7396
+ animation-delay: -0.2s !important;
7397
+ }
7398
+ @-webkit-keyframes line-scale-pulse-out-rapid {
7399
+ 0% {
7400
+ -webkit-transform: scaley(1);
7401
+ transform: scaley(1);
7402
+ }
7403
+ 80% {
7404
+ -webkit-transform: scaley(0.3);
7405
+ transform: scaley(0.3);
7406
+ }
7407
+ 90% {
7408
+ -webkit-transform: scaley(1);
7409
+ transform: scaley(1);
7410
+ }
7411
+ }
7412
+ @keyframes line-scale-pulse-out-rapid {
7413
+ 0% {
7414
+ -webkit-transform: scaley(1);
7415
+ transform: scaley(1);
7416
+ }
7417
+ 80% {
7418
+ -webkit-transform: scaley(0.3);
7419
+ transform: scaley(0.3);
7420
+ }
7421
+ 90% {
7422
+ -webkit-transform: scaley(1);
7423
+ transform: scaley(1);
7424
+ }
7425
+ }
7426
+ .line-scale-pulse-out-rapid > div {
7427
+ background-color: #fff;
7428
+ width: 4px;
7429
+ height: 35px;
7430
+ border-radius: 2px;
7431
+ margin: 2px;
7432
+ -webkit-animation-fill-mode: both;
7433
+ animation-fill-mode: both;
7434
+ display: inline-block;
7435
+ -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
7436
+ animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
7437
+ }
7438
+ .line-scale-pulse-out-rapid > div:nth-child(2),
7439
+ .line-scale-pulse-out-rapid > div:nth-child(4) {
7440
+ -webkit-animation-delay: -0.25s !important;
7441
+ animation-delay: -0.25s !important;
7442
+ }
7443
+ .line-scale-pulse-out-rapid > div:nth-child(1),
7444
+ .line-scale-pulse-out-rapid > div:nth-child(5) {
7445
+ -webkit-animation-delay: 0s !important;
7446
+ animation-delay: 0s !important;
7447
+ }
7448
+ @-webkit-keyframes line-spin-fade-loader {
7449
+ 50% {
7450
+ opacity: 0.3;
7451
+ }
7452
+ 100% {
7453
+ opacity: 1;
7454
+ }
7455
+ }
7456
+ @keyframes line-spin-fade-loader {
7457
+ 50% {
7458
+ opacity: 0.3;
7459
+ }
7460
+ 100% {
7461
+ opacity: 1;
7462
+ }
7463
+ }
7464
+ .line-spin-fade-loader {
7465
+ position: relative;
7466
+ top: -10px;
7467
+ left: -4px;
7468
+ }
7469
+ .line-spin-fade-loader > div:nth-child(1) {
7470
+ top: 20px;
7471
+ left: 0;
7472
+ -webkit-animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
7473
+ animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out;
7474
+ }
7475
+ .line-spin-fade-loader > div:nth-child(2) {
7476
+ top: 13.63636px;
7477
+ left: 13.63636px;
7478
+ -webkit-transform: rotate(-45deg);
7479
+ -ms-transform: rotate(-45deg);
7480
+ transform: rotate(-45deg);
7481
+ -webkit-animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
7482
+ animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out;
7483
+ }
7484
+ .line-spin-fade-loader > div:nth-child(3) {
7485
+ top: 0;
7486
+ left: 20px;
7487
+ -webkit-transform: rotate(90deg);
7488
+ -ms-transform: rotate(90deg);
7489
+ transform: rotate(90deg);
7490
+ -webkit-animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
7491
+ animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out;
7492
+ }
7493
+ .line-spin-fade-loader > div:nth-child(4) {
7494
+ top: -13.63636px;
7495
+ left: 13.63636px;
7496
+ -webkit-transform: rotate(45deg);
7497
+ -ms-transform: rotate(45deg);
7498
+ transform: rotate(45deg);
7499
+ -webkit-animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
7500
+ animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out;
7501
+ }
7502
+ .line-spin-fade-loader > div:nth-child(5) {
7503
+ top: -20px;
7504
+ left: 0;
7505
+ -webkit-animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
7506
+ animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out;
7507
+ }
7508
+ .line-spin-fade-loader > div:nth-child(6) {
7509
+ top: -13.63636px;
7510
+ left: -13.63636px;
7511
+ -webkit-transform: rotate(-45deg);
7512
+ -ms-transform: rotate(-45deg);
7513
+ transform: rotate(-45deg);
7514
+ -webkit-animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
7515
+ animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out;
7516
+ }
7517
+ .line-spin-fade-loader > div:nth-child(7) {
7518
+ top: 0;
7519
+ left: -20px;
7520
+ -webkit-transform: rotate(90deg);
7521
+ -ms-transform: rotate(90deg);
7522
+ transform: rotate(90deg);
7523
+ -webkit-animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
7524
+ animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out;
7525
+ }
7526
+ .line-spin-fade-loader > div:nth-child(8) {
7527
+ top: 13.63636px;
7528
+ left: -13.63636px;
7529
+ -webkit-transform: rotate(45deg);
7530
+ -ms-transform: rotate(45deg);
7531
+ transform: rotate(45deg);
7532
+ -webkit-animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
7533
+ animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
7534
+ }
7535
+ .line-spin-fade-loader > div {
7536
+ background-color: #fff;
7537
+ width: 4px;
7538
+ height: 35px;
7539
+ border-radius: 2px;
7540
+ margin: 2px;
7541
+ -webkit-animation-fill-mode: both;
7542
+ animation-fill-mode: both;
7543
+ position: absolute;
7544
+ width: 5px;
7545
+ height: 15px;
7546
+ }
7547
+ /**
7548
+ * Misc
7549
+ */
7550
+ @-webkit-keyframes triangle-skew-spin {
7551
+ 25% {
7552
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
7553
+ transform: perspective(100px) rotateX(180deg) rotateY(0);
7554
+ }
7555
+ 50% {
7556
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7557
+ transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7558
+ }
7559
+ 75% {
7560
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
7561
+ transform: perspective(100px) rotateX(0) rotateY(180deg);
7562
+ }
7563
+ 100% {
7564
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
7565
+ transform: perspective(100px) rotateX(0) rotateY(0);
7566
+ }
7567
+ }
7568
+ @keyframes triangle-skew-spin {
7569
+ 25% {
7570
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
7571
+ transform: perspective(100px) rotateX(180deg) rotateY(0);
7572
+ }
7573
+ 50% {
7574
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7575
+ transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7576
+ }
7577
+ 75% {
7578
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
7579
+ transform: perspective(100px) rotateX(0) rotateY(180deg);
7580
+ }
7581
+ 100% {
7582
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
7583
+ transform: perspective(100px) rotateX(0) rotateY(0);
7584
+ }
7585
+ }
7586
+ .triangle-skew-spin > div {
7587
+ -webkit-animation-fill-mode: both;
7588
+ animation-fill-mode: both;
7589
+ width: 0;
7590
+ height: 0;
7591
+ border-left: 20px solid transparent !important;
7592
+ border-right: 20px solid transparent !important;
7593
+ border-bottom: 20px solid #fff;
7594
+ background-color: transparent !important;
7595
+ -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
7596
+ animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
7597
+ }
7598
+ @-webkit-keyframes square-spin {
7599
+ 25% {
7600
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
7601
+ transform: perspective(100px) rotateX(180deg) rotateY(0);
7602
+ }
7603
+ 50% {
7604
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7605
+ transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7606
+ }
7607
+ 75% {
7608
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
7609
+ transform: perspective(100px) rotateX(0) rotateY(180deg);
7610
+ }
7611
+ 100% {
7612
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
7613
+ transform: perspective(100px) rotateX(0) rotateY(0);
7614
+ }
7615
+ }
7616
+ @keyframes square-spin {
7617
+ 25% {
7618
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
7619
+ transform: perspective(100px) rotateX(180deg) rotateY(0);
7620
+ }
7621
+ 50% {
7622
+ -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7623
+ transform: perspective(100px) rotateX(180deg) rotateY(180deg);
7624
+ }
7625
+ 75% {
7626
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
7627
+ transform: perspective(100px) rotateX(0) rotateY(180deg);
7628
+ }
7629
+ 100% {
7630
+ -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
7631
+ transform: perspective(100px) rotateX(0) rotateY(0);
7632
+ }
7633
+ }
7634
+ .square-spin > div {
7635
+ -webkit-animation-fill-mode: both;
7636
+ animation-fill-mode: both;
7637
+ width: 50px;
7638
+ height: 50px;
7639
+ background: #fff;
7640
+ border: 1px solid red;
7641
+ -webkit-animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
7642
+ animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
7643
+ }
7644
+ @-webkit-keyframes rotate_pacman_half_up {
7645
+ 0% {
7646
+ -webkit-transform: rotate(270deg);
7647
+ transform: rotate(270deg);
7648
+ }
7649
+ 50% {
7650
+ -webkit-transform: rotate(360deg);
7651
+ transform: rotate(360deg);
7652
+ }
7653
+ 100% {
7654
+ -webkit-transform: rotate(270deg);
7655
+ transform: rotate(270deg);
7656
+ }
7657
+ }
7658
+ @keyframes rotate_pacman_half_up {
7659
+ 0% {
7660
+ -webkit-transform: rotate(270deg);
7661
+ transform: rotate(270deg);
7662
+ }
7663
+ 50% {
7664
+ -webkit-transform: rotate(360deg);
7665
+ transform: rotate(360deg);
7666
+ }
7667
+ 100% {
7668
+ -webkit-transform: rotate(270deg);
7669
+ transform: rotate(270deg);
7670
+ }
7671
+ }
7672
+ @-webkit-keyframes rotate_pacman_half_down {
7673
+ 0% {
7674
+ -webkit-transform: rotate(90deg);
7675
+ transform: rotate(90deg);
7676
+ }
7677
+ 50% {
7678
+ -webkit-transform: rotate(0deg);
7679
+ transform: rotate(0deg);
7680
+ }
7681
+ 100% {
7682
+ -webkit-transform: rotate(90deg);
7683
+ transform: rotate(90deg);
7684
+ }
7685
+ }
7686
+ @keyframes rotate_pacman_half_down {
7687
+ 0% {
7688
+ -webkit-transform: rotate(90deg);
7689
+ transform: rotate(90deg);
7690
+ }
7691
+ 50% {
7692
+ -webkit-transform: rotate(0deg);
7693
+ transform: rotate(0deg);
7694
+ }
7695
+ 100% {
7696
+ -webkit-transform: rotate(90deg);
7697
+ transform: rotate(90deg);
7698
+ }
7699
+ }
7700
+ @-webkit-keyframes pacman-balls {
7701
+ 75% {
7702
+ opacity: 0.7;
7703
+ }
7704
+ 100% {
7705
+ -webkit-transform: translate(-100px, -6.25px);
7706
+ transform: translate(-100px, -6.25px);
7707
+ }
7708
+ }
7709
+ @keyframes pacman-balls {
7710
+ 75% {
7711
+ opacity: 0.7;
7712
+ }
7713
+ 100% {
7714
+ -webkit-transform: translate(-100px, -6.25px);
7715
+ transform: translate(-100px, -6.25px);
7716
+ }
7717
+ }
7718
+ .pacman {
7719
+ position: relative;
7720
+ }
7721
+ .pacman > div:nth-child(2) {
7722
+ -webkit-animation: pacman-balls 1s -0.99s infinite linear;
7723
+ animation: pacman-balls 1s -0.99s infinite linear;
7724
+ }
7725
+ .pacman > div:nth-child(3) {
7726
+ -webkit-animation: pacman-balls 1s -0.66s infinite linear;
7727
+ animation: pacman-balls 1s -0.66s infinite linear;
7728
+ }
7729
+ .pacman > div:nth-child(4) {
7730
+ -webkit-animation: pacman-balls 1s -0.33s infinite linear;
7731
+ animation: pacman-balls 1s -0.33s infinite linear;
7732
+ }
7733
+ .pacman > div:nth-child(5) {
7734
+ -webkit-animation: pacman-balls 1s 0s infinite linear;
7735
+ animation: pacman-balls 1s 0s infinite linear;
7736
+ }
7737
+ .pacman > div:first-of-type {
7738
+ width: 0px;
7739
+ height: 0px;
7740
+ border-right: 25px solid transparent !important;
7741
+ border-top: 25px solid #fff;
7742
+ border-left: 25px solid #fff;
7743
+ border-bottom: 25px solid #fff;
7744
+ border-radius: 25px;
7745
+ background-color: transparent !important;
7746
+ -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
7747
+ animation: rotate_pacman_half_up 0.5s 0s infinite;
7748
+ position: relative;
7749
+ left: -30px;
7750
+ }
7751
+ .pacman > div:nth-child(2) {
7752
+ width: 0px;
7753
+ height: 0px;
7754
+ border-right: 25px solid transparent !important;
7755
+ border-top: 25px solid #fff;
7756
+ border-left: 25px solid #fff;
7757
+ border-bottom: 25px solid #fff;
7758
+ border-radius: 25px;
7759
+ background-color: transparent !important;
7760
+ -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
7761
+ animation: rotate_pacman_half_down 0.5s 0s infinite;
7762
+ margin-top: -50px;
7763
+ position: relative;
7764
+ left: -30px;
7765
+ }
7766
+ .pacman > div:nth-child(3),
7767
+ .pacman > div:nth-child(4),
7768
+ .pacman > div:nth-child(5),
7769
+ .pacman > div:nth-child(6) {
7770
+ background-color: #fff;
7771
+ width: 15px;
7772
+ height: 15px;
7773
+ border-radius: 100%;
7774
+ margin: 2px;
7775
+ width: 10px;
7776
+ height: 10px;
7777
+ position: absolute;
7778
+ -webkit-transform: translate(0, -6.25px);
7779
+ -ms-transform: translate(0, -6.25px);
7780
+ transform: translate(0, -6.25px);
7781
+ top: 25px;
7782
+ left: 70px;
7783
+ }
7784
+ @-webkit-keyframes cube-transition {
7785
+ 25% {
7786
+ -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
7787
+ transform: translateX(50px) scale(0.5) rotate(-90deg);
7788
+ }
7789
+ 50% {
7790
+ -webkit-transform: translate(50px, 50px) rotate(-180deg);
7791
+ transform: translate(50px, 50px) rotate(-180deg);
7792
+ }
7793
+ 75% {
7794
+ -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
7795
+ transform: translateY(50px) scale(0.5) rotate(-270deg);
7796
+ }
7797
+ 100% {
7798
+ -webkit-transform: rotate(-360deg);
7799
+ transform: rotate(-360deg);
7800
+ }
7801
+ }
7802
+ @keyframes cube-transition {
7803
+ 25% {
7804
+ -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
7805
+ transform: translateX(50px) scale(0.5) rotate(-90deg);
7806
+ }
7807
+ 50% {
7808
+ -webkit-transform: translate(50px, 50px) rotate(-180deg);
7809
+ transform: translate(50px, 50px) rotate(-180deg);
7810
+ }
7811
+ 75% {
7812
+ -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
7813
+ transform: translateY(50px) scale(0.5) rotate(-270deg);
7814
+ }
7815
+ 100% {
7816
+ -webkit-transform: rotate(-360deg);
7817
+ transform: rotate(-360deg);
7818
+ }
7819
+ }
7820
+ .cube-transition {
7821
+ position: relative;
7822
+ -webkit-transform: translate(-25px, -25px);
7823
+ -ms-transform: translate(-25px, -25px);
7824
+ transform: translate(-25px, -25px);
7825
+ }
7826
+ .cube-transition > div {
7827
+ -webkit-animation-fill-mode: both;
7828
+ animation-fill-mode: both;
7829
+ width: 10px;
7830
+ height: 10px;
7831
+ position: absolute;
7832
+ top: -5px;
7833
+ left: -5px;
7834
+ background-color: #fff;
7835
+ -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
7836
+ animation: cube-transition 1.6s 0s infinite ease-in-out;
7837
+ }
7838
+ .cube-transition > div:last-child {
7839
+ -webkit-animation-delay: -0.8s;
7840
+ animation-delay: -0.8s;
7841
+ }
7842
+ @-webkit-keyframes spin-rotate {
7843
+ 0% {
7844
+ -webkit-transform: rotate(0deg);
7845
+ transform: rotate(0deg);
7846
+ }
7847
+ 50% {
7848
+ -webkit-transform: rotate(180deg);
7849
+ transform: rotate(180deg);
7850
+ }
7851
+ 100% {
7852
+ -webkit-transform: rotate(360deg);
7853
+ transform: rotate(360deg);
7854
+ }
7855
+ }
7856
+ @keyframes spin-rotate {
7857
+ 0% {
7858
+ -webkit-transform: rotate(0deg);
7859
+ transform: rotate(0deg);
7860
+ }
7861
+ 50% {
7862
+ -webkit-transform: rotate(180deg);
7863
+ transform: rotate(180deg);
7864
+ }
7865
+ 100% {
7866
+ -webkit-transform: rotate(360deg);
7867
+ transform: rotate(360deg);
7868
+ }
7869
+ }
7870
+ .semi-circle-spin {
7871
+ position: relative;
7872
+ width: 35px;
7873
+ height: 35px;
7874
+ overflow: hidden;
7875
+ }
7876
+ .semi-circle-spin > div {
7877
+ position: absolute;
7878
+ border-width: 0px;
7879
+ border-radius: 100%;
7880
+ -webkit-animation: spin-rotate 0.6s 0s infinite linear;
7881
+ animation: spin-rotate 0.6s 0s infinite linear;
7882
+ background-image: -webkit-linear-gradient(transparent 0%, transparent 30%, #fff 30%, #fff 100%);
7883
+ background-image: linear-gradient(transparent 0%, transparent 30%, #fff 30%, #fff 100%);
7884
+ width: 100%;
7885
+ height: 100%;
7886
+ }
7887
+ @-webkit-keyframes bar-progress {
7888
+ 0% {
7889
+ -webkit-transform: scaleY(20%);
7890
+ transform: scaleY(20%);
7891
+ opacity: 1;
7892
+ }
7893
+ 25% {
7894
+ -webkit-transform: translateX(6%) scaleY(10%);
7895
+ transform: translateX(6%) scaleY(10%);
7896
+ opacity: 0.7;
7897
+ }
7898
+ 50% {
7899
+ -webkit-transform: translateX(20%) scaleY(20%);
7900
+ transform: translateX(20%) scaleY(20%);
7901
+ opacity: 1;
7902
+ }
7903
+ 75% {
7904
+ -webkit-transform: translateX(6%) scaleY(10%);
7905
+ transform: translateX(6%) scaleY(10%);
7906
+ opacity: 0.7;
7907
+ }
7908
+ 100% {
7909
+ -webkit-transform: scaleY(20%);
7910
+ transform: scaleY(20%);
7911
+ opacity: 1;
7912
+ }
7913
+ }
7914
+ @keyframes bar-progress {
7915
+ 0% {
7916
+ -webkit-transform: scaleY(20%);
7917
+ transform: scaleY(20%);
7918
+ opacity: 1;
7919
+ }
7920
+ 25% {
7921
+ -webkit-transform: translateX(6%) scaleY(10%);
7922
+ transform: translateX(6%) scaleY(10%);
7923
+ opacity: 0.7;
7924
+ }
7925
+ 50% {
7926
+ -webkit-transform: translateX(20%) scaleY(20%);
7927
+ transform: translateX(20%) scaleY(20%);
7928
+ opacity: 1;
7929
+ }
7930
+ 75% {
7931
+ -webkit-transform: translateX(6%) scaleY(10%);
7932
+ transform: translateX(6%) scaleY(10%);
7933
+ opacity: 0.7;
7934
+ }
7935
+ 100% {
7936
+ -webkit-transform: scaleY(20%);
7937
+ transform: scaleY(20%);
7938
+ opacity: 1;
7939
+ }
7940
+ }
7941
+ .bar-progress {
7942
+ width: 30%;
7943
+ height: 12px;
7944
+ }
7945
+ .bar-progress > div {
7946
+ position: relative;
7947
+ width: 20%;
7948
+ height: 12px;
7949
+ border-radius: 10px;
7950
+ background-color: #fff;
7951
+ -webkit-animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
7952
+ animation: bar-progress 3s cubic-bezier(0.57, 0.1, 0.44, 0.93) infinite;
7953
+ opacity: 1;
7954
+ }
7955
+ @-webkit-keyframes bar-swing {
7956
+ 0% {
7957
+ left: 0;
7958
+ }
7959
+ 50% {
7960
+ left: 70%;
7961
+ }
7962
+ 100% {
7963
+ left: 0;
7964
+ }
7965
+ }
7966
+ @keyframes bar-swing {
7967
+ 0% {
7968
+ left: 0;
7969
+ }
7970
+ 50% {
7971
+ left: 70%;
7972
+ }
7973
+ 100% {
7974
+ left: 0;
7975
+ }
7976
+ }
7977
+ .bar-swing {
7978
+ width: 30%;
7979
+ height: 8px;
7980
+ }
7981
+ .bar-swing > div {
7982
+ position: relative;
7983
+ width: 30%;
7984
+ height: 8px;
7985
+ border-radius: 10px;
7986
+ background-color: #fff;
7987
+ -webkit-animation: bar-swing 1.5s infinite;
7988
+ animation: bar-swing 1.5s infinite;
7989
+ }
7990
+ @-webkit-keyframes bar-swing-container {
7991
+ 0% {
7992
+ left: 0;
7993
+ -webkit-transform: translateX(0);
7994
+ transform: translateX(0);
7995
+ }
7996
+ 50% {
7997
+ left: 70%;
7998
+ -webkit-transform: translateX(-4px);
7999
+ transform: translateX(-4px);
8000
+ }
8001
+ 100% {
8002
+ left: 0;
8003
+ -webkit-transform: translateX(0);
8004
+ transform: translateX(0);
8005
+ }
8006
+ }
8007
+ @keyframes bar-swing-container {
8008
+ 0% {
8009
+ left: 0;
8010
+ -webkit-transform: translateX(0);
8011
+ transform: translateX(0);
8012
+ }
8013
+ 50% {
8014
+ left: 70%;
8015
+ -webkit-transform: translateX(-4px);
8016
+ transform: translateX(-4px);
8017
+ }
8018
+ 100% {
8019
+ left: 0;
8020
+ -webkit-transform: translateX(0);
8021
+ transform: translateX(0);
8022
+ }
8023
+ }
8024
+ .bar-swing-container {
8025
+ width: 20%;
8026
+ height: 8px;
8027
+ position: relative;
8028
+ }
8029
+ .bar-swing-container div:nth-child(1) {
8030
+ position: absolute;
8031
+ width: 100%;
8032
+ background-color: rgba(255, 255, 255, 0.2);
8033
+ height: 12px;
8034
+ border-radius: 10px;
8035
+ }
8036
+ .bar-swing-container div:nth-child(2) {
8037
+ position: absolute;
8038
+ width: 30%;
8039
+ height: 8px;
8040
+ border-radius: 10px;
8041
+ background-color: #fff;
8042
+ -webkit-animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
8043
+ animation: bar-swing-container 2s cubic-bezier(0.91, 0.35, 0.12, 0.6) infinite;
8044
+ margin: 2px 2px 0;
8045
+ }
5521
8046
  .mds-loading-parent {
5522
8047
  position: relative;
5523
8048
  }