loaders.css 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869
  1. /**
  2. *
  3. * All animations must live in their own file
  4. * in the animations directory and be included
  5. * here.
  6. *
  7. */
  8. /**
  9. * Styles shared by multiple animations
  10. */
  11. @-webkit-keyframes scale {
  12. 0% {
  13. -webkit-transform: scale(1);
  14. transform: scale(1);
  15. opacity: 1; }
  16. 45% {
  17. -webkit-transform: scale(0.1);
  18. transform: scale(0.1);
  19. opacity: 0.7; }
  20. 80% {
  21. -webkit-transform: scale(1);
  22. transform: scale(1);
  23. opacity: 1; } }
  24. @keyframes scale {
  25. 0% {
  26. -webkit-transform: scale(1);
  27. transform: scale(1);
  28. opacity: 1; }
  29. 45% {
  30. -webkit-transform: scale(0.1);
  31. transform: scale(0.1);
  32. opacity: 0.7; }
  33. 80% {
  34. -webkit-transform: scale(1);
  35. transform: scale(1);
  36. opacity: 1; } }
  37. .ball-pulse > div:nth-child(0) {
  38. -webkit-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
  39. animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08); }
  40. .ball-pulse > div:nth-child(1) {
  41. -webkit-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
  42. animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08); }
  43. .ball-pulse > div:nth-child(2) {
  44. -webkit-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
  45. animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08); }
  46. .ball-pulse > div:nth-child(3) {
  47. -webkit-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
  48. animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08); }
  49. .ball-pulse > div {
  50. background-color: #fff;
  51. width: 15px;
  52. height: 15px;
  53. border-radius: 100%;
  54. margin: 2px;
  55. -webkit-animation-fill-mode: both;
  56. animation-fill-mode: both;
  57. display: inline-block; }
  58. @-webkit-keyframes ball-pulse-sync {
  59. 33% {
  60. -webkit-transform: translateY(10px);
  61. transform: translateY(10px); }
  62. 66% {
  63. -webkit-transform: translateY(-10px);
  64. transform: translateY(-10px); }
  65. 100% {
  66. -webkit-transform: translateY(0);
  67. transform: translateY(0); } }
  68. @keyframes ball-pulse-sync {
  69. 33% {
  70. -webkit-transform: translateY(10px);
  71. transform: translateY(10px); }
  72. 66% {
  73. -webkit-transform: translateY(-10px);
  74. transform: translateY(-10px); }
  75. 100% {
  76. -webkit-transform: translateY(0);
  77. transform: translateY(0); } }
  78. .ball-pulse-sync > div:nth-child(0) {
  79. -webkit-animation: ball-pulse-sync 0.6s 0s infinite ease-in-out;
  80. animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; }
  81. .ball-pulse-sync > div:nth-child(1) {
  82. -webkit-animation: ball-pulse-sync 0.6s 0.07s infinite ease-in-out;
  83. animation: ball-pulse-sync 0.6s 0.07s infinite ease-in-out; }
  84. .ball-pulse-sync > div:nth-child(2) {
  85. -webkit-animation: ball-pulse-sync 0.6s 0.14s infinite ease-in-out;
  86. animation: ball-pulse-sync 0.6s 0.14s infinite ease-in-out; }
  87. .ball-pulse-sync > div:nth-child(3) {
  88. -webkit-animation: ball-pulse-sync 0.6s 0.21s infinite ease-in-out;
  89. animation: ball-pulse-sync 0.6s 0.21s infinite ease-in-out; }
  90. .ball-pulse-sync > div {
  91. background-color: #fff;
  92. width: 15px;
  93. height: 15px;
  94. border-radius: 100%;
  95. margin: 2px;
  96. -webkit-animation-fill-mode: both;
  97. animation-fill-mode: both;
  98. display: inline-block; }
  99. @-webkit-keyframes ball-scale {
  100. 0% {
  101. -webkit-transform: scale(0);
  102. transform: scale(0); }
  103. 100% {
  104. -webkit-transform: scale(1);
  105. transform: scale(1);
  106. opacity: 0; } }
  107. @keyframes ball-scale {
  108. 0% {
  109. -webkit-transform: scale(0);
  110. transform: scale(0); }
  111. 100% {
  112. -webkit-transform: scale(1);
  113. transform: scale(1);
  114. opacity: 0; } }
  115. .ball-scale > div {
  116. background-color: #fff;
  117. width: 15px;
  118. height: 15px;
  119. border-radius: 100%;
  120. margin: 2px;
  121. -webkit-animation-fill-mode: both;
  122. animation-fill-mode: both;
  123. display: inline-block;
  124. height: 60px;
  125. width: 60px;
  126. -webkit-animation: ball-scale 1s 0s ease-in-out infinite;
  127. animation: ball-scale 1s 0s ease-in-out infinite; }
  128. @-webkit-keyframes rotate {
  129. 0% {
  130. -webkit-transform: rotate(0deg);
  131. transform: rotate(0deg); }
  132. 50% {
  133. -webkit-transform: rotate(180deg);
  134. transform: rotate(180deg); }
  135. 100% {
  136. -webkit-transform: rotate(360deg);
  137. transform: rotate(360deg); } }
  138. @keyframes rotate {
  139. 0% {
  140. -webkit-transform: rotate(0deg);
  141. transform: rotate(0deg); }
  142. 50% {
  143. -webkit-transform: rotate(180deg);
  144. transform: rotate(180deg); }
  145. 100% {
  146. -webkit-transform: rotate(360deg);
  147. transform: rotate(360deg); } }
  148. .ball-rotate {
  149. position: relative; }
  150. .ball-rotate > div {
  151. background-color: #fff;
  152. width: 15px;
  153. height: 15px;
  154. border-radius: 100%;
  155. margin: 2px;
  156. -webkit-animation-fill-mode: both;
  157. animation-fill-mode: both;
  158. position: relative; }
  159. .ball-rotate > div:first-child {
  160. -webkit-animation: rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite;
  161. animation: rotate 1s 0s cubic-bezier(.7, -.13, .22, .86) infinite; }
  162. .ball-rotate > div:before, .ball-rotate > div:after {
  163. background-color: #fff;
  164. width: 15px;
  165. height: 15px;
  166. border-radius: 100%;
  167. margin: 2px;
  168. content: "";
  169. position: absolute;
  170. opacity: 0.8; }
  171. .ball-rotate > div:before {
  172. top: 0px;
  173. left: -28px; }
  174. .ball-rotate > div:after {
  175. top: 0px;
  176. left: 25px; }
  177. @keyframes rotate {
  178. 0% {
  179. -webkit-transform: rotate(0deg) scale(1);
  180. transform: rotate(0deg) scale(1); }
  181. 50% {
  182. -webkit-transform: rotate(180deg) scale(0.6);
  183. transform: rotate(180deg) scale(0.6); }
  184. 100% {
  185. -webkit-transform: rotate(360deg) scale(1);
  186. transform: rotate(360deg) scale(1); } }
  187. .ball-clip-rotate > div {
  188. background-color: #fff;
  189. width: 15px;
  190. height: 15px;
  191. border-radius: 100%;
  192. margin: 2px;
  193. -webkit-animation-fill-mode: both;
  194. animation-fill-mode: both;
  195. border: 2px solid #fff;
  196. border-bottom-color: transparent;
  197. height: 25px;
  198. width: 25px;
  199. background: transparent !important;
  200. display: inline-block;
  201. -webkit-animation: rotate 0.75s 0s linear infinite;
  202. animation: rotate 0.75s 0s linear infinite; }
  203. @keyframes rotate {
  204. 0% {
  205. -webkit-transform: rotate(0deg) scale(1);
  206. transform: rotate(0deg) scale(1); }
  207. 50% {
  208. -webkit-transform: rotate(180deg) scale(0.6);
  209. transform: rotate(180deg) scale(0.6); }
  210. 100% {
  211. -webkit-transform: rotate(360deg) scale(1);
  212. transform: rotate(360deg) scale(1); } }
  213. @keyframes scale {
  214. 30% {
  215. -webkit-transform: scale(0.3);
  216. transform: scale(0.3); }
  217. 100% {
  218. -webkit-transform: scale(1);
  219. transform: scale(1); } }
  220. .ball-clip-rotate-pulse {
  221. position: relative;
  222. -webkit-transform: translateY(-15px);
  223. -ms-transform: translateY(-15px);
  224. transform: translateY(-15px); }
  225. .ball-clip-rotate-pulse > div {
  226. -webkit-animation-fill-mode: both;
  227. animation-fill-mode: both;
  228. position: absolute;
  229. top: 0px;
  230. left: 0px;
  231. border-radius: 100%; }
  232. .ball-clip-rotate-pulse > div:first-child {
  233. background: #fff;
  234. height: 16px;
  235. width: 16px;
  236. top: 9px;
  237. left: 9px;
  238. -webkit-animation: scale 1s 0s cubic-bezier(.09, .57, .49, .9) infinite;
  239. animation: scale 1s 0s cubic-bezier(.09, .57, .49, .9) infinite; }
  240. .ball-clip-rotate-pulse > div:last-child {
  241. position: absolute;
  242. border: 2px solid #fff;
  243. width: 30px;
  244. height: 30px;
  245. background: transparent;
  246. border: 2px solid;
  247. border-color: #fff transparent #fff transparent;
  248. -webkit-animation: rotate 1s 0s cubic-bezier(.09, .57, .49, .9) infinite;
  249. animation: rotate 1s 0s cubic-bezier(.09, .57, .49, .9) infinite;
  250. -webkit-animation-duration: 1s;
  251. animation-duration: 1s; }
  252. @keyframes rotate {
  253. 0% {
  254. -webkit-transform: rotate(0deg) scale(1);
  255. transform: rotate(0deg) scale(1); }
  256. 50% {
  257. -webkit-transform: rotate(180deg) scale(0.6);
  258. transform: rotate(180deg) scale(0.6); }
  259. 100% {
  260. -webkit-transform: rotate(360deg) scale(1);
  261. transform: rotate(360deg) scale(1); } }
  262. .ball-clip-rotate-multiple {
  263. position: relative; }
  264. .ball-clip-rotate-multiple > div {
  265. -webkit-animation-fill-mode: both;
  266. animation-fill-mode: both;
  267. position: absolute;
  268. left: 0px;
  269. top: 0px;
  270. border: 2px solid #fff;
  271. border-bottom-color: transparent;
  272. border-top-color: transparent;
  273. border-radius: 100%;
  274. height: 35px;
  275. width: 35px;
  276. -webkit-animation: rotate 1s 0s ease-in-out infinite;
  277. animation: rotate 1s 0s ease-in-out infinite; }
  278. .ball-clip-rotate-multiple > div:last-child {
  279. display: inline-block;
  280. top: 10px;
  281. left: 10px;
  282. width: 15px;
  283. height: 15px;
  284. -webkit-animation-duration: 0.5s;
  285. animation-duration: 0.5s;
  286. border-color: #fff transparent #fff transparent;
  287. -webkit-animation-direction: reverse;
  288. animation-direction: reverse; }
  289. @-webkit-keyframes ball-scale-ripple {
  290. 0% {
  291. -webkit-transform: scale(0.1);
  292. transform: scale(0.1);
  293. opacity: 1; }
  294. 70% {
  295. -webkit-transform: scale(1);
  296. transform: scale(1);
  297. opacity: 0.7; }
  298. 100% {
  299. opacity: 0.0; } }
  300. @keyframes ball-scale-ripple {
  301. 0% {
  302. -webkit-transform: scale(0.1);
  303. transform: scale(0.1);
  304. opacity: 1; }
  305. 70% {
  306. -webkit-transform: scale(1);
  307. transform: scale(1);
  308. opacity: 0.7; }
  309. 100% {
  310. opacity: 0.0; } }
  311. .ball-scale-ripple > div {
  312. -webkit-animation-fill-mode: both;
  313. animation-fill-mode: both;
  314. height: 50px;
  315. width: 50px;
  316. border-radius: 100%;
  317. border: 2px solid #fff;
  318. -webkit-animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21, .53, .56, .8);
  319. animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21, .53, .56, .8); }
  320. @-webkit-keyframes ball-scale-ripple-multiple {
  321. 0% {
  322. -webkit-transform: scale(0.1);
  323. transform: scale(0.1);
  324. opacity: 1; }
  325. 70% {
  326. -webkit-transform: scale(1);
  327. transform: scale(1);
  328. opacity: 0.7; }
  329. 100% {
  330. opacity: 0.0; } }
  331. @keyframes ball-scale-ripple-multiple {
  332. 0% {
  333. -webkit-transform: scale(0.1);
  334. transform: scale(0.1);
  335. opacity: 1; }
  336. 70% {
  337. -webkit-transform: scale(1);
  338. transform: scale(1);
  339. opacity: 0.7; }
  340. 100% {
  341. opacity: 0.0; } }
  342. .ball-scale-ripple-multiple {
  343. position: relative;
  344. -webkit-transform: translateY(-25px);
  345. -ms-transform: translateY(-25px);
  346. transform: translateY(-25px); }
  347. .ball-scale-ripple-multiple > div:nth-child(0) {
  348. -webkit-animation-delay: -0.2s;
  349. animation-delay: -0.2s; }
  350. .ball-scale-ripple-multiple > div:nth-child(1) {
  351. -webkit-animation-delay: 0s;
  352. animation-delay: 0s; }
  353. .ball-scale-ripple-multiple > div:nth-child(2) {
  354. -webkit-animation-delay: 0.2s;
  355. animation-delay: 0.2s; }
  356. .ball-scale-ripple-multiple > div:nth-child(3) {
  357. -webkit-animation-delay: 0.4s;
  358. animation-delay: 0.4s; }
  359. .ball-scale-ripple-multiple > div {
  360. -webkit-animation-fill-mode: both;
  361. animation-fill-mode: both;
  362. position: absolute;
  363. top: 0;
  364. left: 0;
  365. width: 50px;
  366. height: 50px;
  367. border-radius: 100%;
  368. border: 2px solid #fff;
  369. -webkit-animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21, .53, .56, .8);
  370. animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21, .53, .56, .8); }
  371. @-webkit-keyframes ball-beat {
  372. 50% {
  373. opacity: 0.2;
  374. -webkit-transform: scale(0.75);
  375. transform: scale(0.75); }
  376. 100% {
  377. opacity: 1;
  378. -webkit-transform: scale(1);
  379. transform: scale(1); } }
  380. @keyframes ball-beat {
  381. 50% {
  382. opacity: 0.2;
  383. -webkit-transform: scale(0.75);
  384. transform: scale(0.75); }
  385. 100% {
  386. opacity: 1;
  387. -webkit-transform: scale(1);
  388. transform: scale(1); } }
  389. .ball-beat > div {
  390. background-color: #fff;
  391. width: 15px;
  392. height: 15px;
  393. border-radius: 100%;
  394. margin: 2px;
  395. -webkit-animation-fill-mode: both;
  396. animation-fill-mode: both;
  397. display: inline-block;
  398. -webkit-animation: ball-beat 0.7s 0s infinite linear;
  399. animation: ball-beat 0.7s 0s infinite linear; }
  400. .ball-beat > div:nth-child(2n-1) {
  401. -webkit-animation-delay: 0.35s !important;
  402. animation-delay: 0.35s !important; }
  403. @-webkit-keyframes ball-scale-multiple {
  404. 0% {
  405. -webkit-transform: scale(0);
  406. transform: scale(0);
  407. opacity: 0; }
  408. 5% {
  409. opacity: 1; }
  410. 100% {
  411. -webkit-transform: scale(1);
  412. transform: scale(1);
  413. opacity: 0; } }
  414. @keyframes ball-scale-multiple {
  415. 0% {
  416. -webkit-transform: scale(0);
  417. transform: scale(0);
  418. opacity: 0; }
  419. 5% {
  420. opacity: 1; }
  421. 100% {
  422. -webkit-transform: scale(1);
  423. transform: scale(1);
  424. opacity: 0; } }
  425. .ball-scale-multiple {
  426. position: relative;
  427. -webkit-transform: translateY(-30px);
  428. -ms-transform: translateY(-30px);
  429. transform: translateY(-30px); }
  430. .ball-scale-multiple > div:nth-child(2) {
  431. -webkit-animation-delay: 0.2s;
  432. animation-delay: 0.2s; }
  433. .ball-scale-multiple > div:nth-child(3) {
  434. -webkit-animation-delay: 0.4s;
  435. animation-delay: 0.4s; }
  436. .ball-scale-multiple > div {
  437. background-color: #fff;
  438. width: 15px;
  439. height: 15px;
  440. border-radius: 100%;
  441. margin: 2px;
  442. -webkit-animation-fill-mode: both;
  443. animation-fill-mode: both;
  444. position: absolute;
  445. left: 0px;
  446. top: 0px;
  447. opacity: 0;
  448. margin: 0;
  449. width: 60px;
  450. height: 60px;
  451. -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
  452. animation: ball-scale-multiple 1s 0s linear infinite; }
  453. @-webkit-keyframes ball-triangle-path-1 {
  454. 33% {
  455. -webkit-transform: translate(25px, -50px);
  456. transform: translate(25px, -50px); }
  457. 66% {
  458. -webkit-transform: translate(50px, 0px);
  459. transform: translate(50px, 0px); }
  460. 100% {
  461. -webkit-transform: translate(0px, 0px);
  462. transform: translate(0px, 0px); } }
  463. @keyframes ball-triangle-path-1 {
  464. 33% {
  465. -webkit-transform: translate(25px, -50px);
  466. transform: translate(25px, -50px); }
  467. 66% {
  468. -webkit-transform: translate(50px, 0px);
  469. transform: translate(50px, 0px); }
  470. 100% {
  471. -webkit-transform: translate(0px, 0px);
  472. transform: translate(0px, 0px); } }
  473. @-webkit-keyframes ball-triangle-path-2 {
  474. 33% {
  475. -webkit-transform: translate(25px, 50px);
  476. transform: translate(25px, 50px); }
  477. 66% {
  478. -webkit-transform: translate(-25px, 50px);
  479. transform: translate(-25px, 50px); }
  480. 100% {
  481. -webkit-transform: translate(0px, 0px);
  482. transform: translate(0px, 0px); } }
  483. @keyframes ball-triangle-path-2 {
  484. 33% {
  485. -webkit-transform: translate(25px, 50px);
  486. transform: translate(25px, 50px); }
  487. 66% {
  488. -webkit-transform: translate(-25px, 50px);
  489. transform: translate(-25px, 50px); }
  490. 100% {
  491. -webkit-transform: translate(0px, 0px);
  492. transform: translate(0px, 0px); } }
  493. @-webkit-keyframes ball-triangle-path-3 {
  494. 33% {
  495. -webkit-transform: translate(-50px, 0px);
  496. transform: translate(-50px, 0px); }
  497. 66% {
  498. -webkit-transform: translate(-25px, -50px);
  499. transform: translate(-25px, -50px); }
  500. 100% {
  501. -webkit-transform: translate(0px, 0px);
  502. transform: translate(0px, 0px); } }
  503. @keyframes ball-triangle-path-3 {
  504. 33% {
  505. -webkit-transform: translate(-50px, 0px);
  506. transform: translate(-50px, 0px); }
  507. 66% {
  508. -webkit-transform: translate(-25px, -50px);
  509. transform: translate(-25px, -50px); }
  510. 100% {
  511. -webkit-transform: translate(0px, 0px);
  512. transform: translate(0px, 0px); } }
  513. .ball-triangle-path {
  514. position: relative;
  515. -webkit-transform: translate(-25px, -25px);
  516. -ms-transform: translate(-25px, -25px);
  517. transform: translate(-25px, -25px); }
  518. .ball-triangle-path > div:nth-child(1) {
  519. -webkit-animation-name: ball-triangle-path-1;
  520. animation-name: ball-triangle-path-1;
  521. -webkit-animation-delay: 0;
  522. animation-delay: 0;
  523. -webkit-animation-duration: 2s;
  524. animation-duration: 2s;
  525. -webkit-animation-timing-function: ease-in-out;
  526. animation-timing-function: ease-in-out;
  527. -webkit-animation-iteration-count: infinite;
  528. animation-iteration-count: infinite; }
  529. .ball-triangle-path > div:nth-child(2) {
  530. -webkit-animation-name: ball-triangle-path-2;
  531. animation-name: ball-triangle-path-2;
  532. -webkit-animation-delay: 0;
  533. animation-delay: 0;
  534. -webkit-animation-duration: 2s;
  535. animation-duration: 2s;
  536. -webkit-animation-timing-function: ease-in-out;
  537. animation-timing-function: ease-in-out;
  538. -webkit-animation-iteration-count: infinite;
  539. animation-iteration-count: infinite; }
  540. .ball-triangle-path > div:nth-child(3) {
  541. -webkit-animation-name: ball-triangle-path-3;
  542. animation-name: ball-triangle-path-3;
  543. -webkit-animation-delay: 0;
  544. animation-delay: 0;
  545. -webkit-animation-duration: 2s;
  546. animation-duration: 2s;
  547. -webkit-animation-timing-function: ease-in-out;
  548. animation-timing-function: ease-in-out;
  549. -webkit-animation-iteration-count: infinite;
  550. animation-iteration-count: infinite; }
  551. .ball-triangle-path > div {
  552. -webkit-animation-fill-mode: both;
  553. animation-fill-mode: both;
  554. position: absolute;
  555. width: 10px;
  556. height: 10px;
  557. border-radius: 100%;
  558. border: 1px solid #fff; }
  559. .ball-triangle-path > div:nth-of-type(1) {
  560. top: 50px; }
  561. .ball-triangle-path > div:nth-of-type(2) {
  562. left: 25px; }
  563. .ball-triangle-path > div:nth-of-type(3) {
  564. top: 50px;
  565. left: 50px; }
  566. @-webkit-keyframes ball-pulse-rise-even {
  567. 0% {
  568. -webkit-transform: scale(1.1);
  569. transform: scale(1.1); }
  570. 25% {
  571. -webkit-transform: translateY(-30px);
  572. transform: translateY(-30px); }
  573. 50% {
  574. -webkit-transform: scale(0.4);
  575. transform: scale(0.4); }
  576. 75% {
  577. -webkit-transform: translateY(30px);
  578. transform: translateY(30px); }
  579. 100% {
  580. -webkit-transform: translateY(0);
  581. transform: translateY(0);
  582. -webkit-transform: scale(1);
  583. transform: scale(1); } }
  584. @keyframes ball-pulse-rise-even {
  585. 0% {
  586. -webkit-transform: scale(1.1);
  587. transform: scale(1.1); }
  588. 25% {
  589. -webkit-transform: translateY(-30px);
  590. transform: translateY(-30px); }
  591. 50% {
  592. -webkit-transform: scale(0.4);
  593. transform: scale(0.4); }
  594. 75% {
  595. -webkit-transform: translateY(30px);
  596. transform: translateY(30px); }
  597. 100% {
  598. -webkit-transform: translateY(0);
  599. transform: translateY(0);
  600. -webkit-transform: scale(1);
  601. transform: scale(1); } }
  602. @-webkit-keyframes ball-pulse-rise-odd {
  603. 0% {
  604. -webkit-transform: scale(0.4);
  605. transform: scale(0.4); }
  606. 25% {
  607. -webkit-transform: translateY(30px);
  608. transform: translateY(30px); }
  609. 50% {
  610. -webkit-transform: scale(1.1);
  611. transform: scale(1.1); }
  612. 75% {
  613. -webkit-transform: translateY(-30px);
  614. transform: translateY(-30px); }
  615. 100% {
  616. -webkit-transform: translateY(0);
  617. transform: translateY(0);
  618. -webkit-transform: scale(0.75);
  619. transform: scale(0.75); } }
  620. @keyframes ball-pulse-rise-odd {
  621. 0% {
  622. -webkit-transform: scale(0.4);
  623. transform: scale(0.4); }
  624. 25% {
  625. -webkit-transform: translateY(30px);
  626. transform: translateY(30px); }
  627. 50% {
  628. -webkit-transform: scale(1.1);
  629. transform: scale(1.1); }
  630. 75% {
  631. -webkit-transform: translateY(-30px);
  632. transform: translateY(-30px); }
  633. 100% {
  634. -webkit-transform: translateY(0);
  635. transform: translateY(0);
  636. -webkit-transform: scale(0.75);
  637. transform: scale(0.75); } }
  638. .ball-pulse-rise > div {
  639. background-color: #fff;
  640. width: 15px;
  641. height: 15px;
  642. border-radius: 100%;
  643. margin: 2px;
  644. -webkit-animation-fill-mode: both;
  645. animation-fill-mode: both;
  646. display: inline-block;
  647. -webkit-animation-duration: 1s;
  648. animation-duration: 1s;
  649. -webkit-animation-timing-function: cubic-bezier(.15, .46, .9, .6);
  650. animation-timing-function: cubic-bezier(.15, .46, .9, .6);
  651. -webkit-animation-iteration-count: infinite;
  652. animation-iteration-count: infinite;
  653. -webkit-animation-delay: 0;
  654. animation-delay: 0; }
  655. .ball-pulse-rise > div:nth-child(2n) {
  656. -webkit-animation-name: ball-pulse-rise-even;
  657. animation-name: ball-pulse-rise-even; }
  658. .ball-pulse-rise > div:nth-child(2n-1) {
  659. -webkit-animation-name: ball-pulse-rise-odd;
  660. animation-name: ball-pulse-rise-odd; }
  661. @-webkit-keyframes ball-grid-beat {
  662. 50% {
  663. opacity: 0.7; }
  664. 100% {
  665. opacity: 1; } }
  666. @keyframes ball-grid-beat {
  667. 50% {
  668. opacity: 0.7; }
  669. 100% {
  670. opacity: 1; } }
  671. .ball-grid-beat {
  672. width: 57px; }
  673. .ball-grid-beat > div:nth-child(1) {
  674. -webkit-animation-delay: 0.36s;
  675. animation-delay: 0.36s;
  676. -webkit-animation-duration: 0.96s;
  677. animation-duration: 0.96s; }
  678. .ball-grid-beat > div:nth-child(2) {
  679. -webkit-animation-delay: 0.4s;
  680. animation-delay: 0.4s;
  681. -webkit-animation-duration: 0.93s;
  682. animation-duration: 0.93s; }
  683. .ball-grid-beat > div:nth-child(3) {
  684. -webkit-animation-delay: 0.68s;
  685. animation-delay: 0.68s;
  686. -webkit-animation-duration: 1.19s;
  687. animation-duration: 1.19s; }
  688. .ball-grid-beat > div:nth-child(4) {
  689. -webkit-animation-delay: 0.41s;
  690. animation-delay: 0.41s;
  691. -webkit-animation-duration: 1.13s;
  692. animation-duration: 1.13s; }
  693. .ball-grid-beat > div:nth-child(5) {
  694. -webkit-animation-delay: 0.71s;
  695. animation-delay: 0.71s;
  696. -webkit-animation-duration: 1.34s;
  697. animation-duration: 1.34s; }
  698. .ball-grid-beat > div:nth-child(6) {
  699. -webkit-animation-delay: -0.15s;
  700. animation-delay: -0.15s;
  701. -webkit-animation-duration: 0.94s;
  702. animation-duration: 0.94s; }
  703. .ball-grid-beat > div:nth-child(7) {
  704. -webkit-animation-delay: -0.12s;
  705. animation-delay: -0.12s;
  706. -webkit-animation-duration: 1.2s;
  707. animation-duration: 1.2s; }
  708. .ball-grid-beat > div:nth-child(8) {
  709. -webkit-animation-delay: 0.01s;
  710. animation-delay: 0.01s;
  711. -webkit-animation-duration: 0.82s;
  712. animation-duration: 0.82s; }
  713. .ball-grid-beat > div:nth-child(9) {
  714. -webkit-animation-delay: 0.32s;
  715. animation-delay: 0.32s;
  716. -webkit-animation-duration: 1.19s;
  717. animation-duration: 1.19s; }
  718. .ball-grid-beat > div {
  719. background-color: #fff;
  720. width: 15px;
  721. height: 15px;
  722. border-radius: 100%;
  723. margin: 2px;
  724. -webkit-animation-fill-mode: both;
  725. animation-fill-mode: both;
  726. display: inline-block;
  727. float: left;
  728. -webkit-animation-name: ball-grid-beat;
  729. animation-name: ball-grid-beat;
  730. -webkit-animation-iteration-count: infinite;
  731. animation-iteration-count: infinite;
  732. -webkit-animation-delay: 0;
  733. animation-delay: 0; }
  734. @-webkit-keyframes ball-grid-pulse {
  735. 0% {
  736. -webkit-transform: scale(1);
  737. transform: scale(1); }
  738. 50% {
  739. -webkit-transform: scale(0.5);
  740. transform: scale(0.5);
  741. opacity: 0.7; }
  742. 100% {
  743. -webkit-transform: scale(1);
  744. transform: scale(1);
  745. opacity: 1; } }
  746. @keyframes ball-grid-pulse {
  747. 0% {
  748. -webkit-transform: scale(1);
  749. transform: scale(1); }
  750. 50% {
  751. -webkit-transform: scale(0.5);
  752. transform: scale(0.5);
  753. opacity: 0.7; }
  754. 100% {
  755. -webkit-transform: scale(1);
  756. transform: scale(1);
  757. opacity: 1; } }
  758. .ball-grid-pulse {
  759. width: 57px; }
  760. .ball-grid-pulse > div:nth-child(1) {
  761. -webkit-animation-delay: -0.06s;
  762. animation-delay: -0.06s;
  763. -webkit-animation-duration: 0.72s;
  764. animation-duration: 0.72s; }
  765. .ball-grid-pulse > div:nth-child(2) {
  766. -webkit-animation-delay: 0.25s;
  767. animation-delay: 0.25s;
  768. -webkit-animation-duration: 1.02s;
  769. animation-duration: 1.02s; }
  770. .ball-grid-pulse > div:nth-child(3) {
  771. -webkit-animation-delay: -0.17s;
  772. animation-delay: -0.17s;
  773. -webkit-animation-duration: 1.28s;
  774. animation-duration: 1.28s; }
  775. .ball-grid-pulse > div:nth-child(4) {
  776. -webkit-animation-delay: 0.48s;
  777. animation-delay: 0.48s;
  778. -webkit-animation-duration: 1.42s;
  779. animation-duration: 1.42s; }
  780. .ball-grid-pulse > div:nth-child(5) {
  781. -webkit-animation-delay: 0.31s;
  782. animation-delay: 0.31s;
  783. -webkit-animation-duration: 1.45s;
  784. animation-duration: 1.45s; }
  785. .ball-grid-pulse > div:nth-child(6) {
  786. -webkit-animation-delay: 0.03s;
  787. animation-delay: 0.03s;
  788. -webkit-animation-duration: 1.18s;
  789. animation-duration: 1.18s; }
  790. .ball-grid-pulse > div:nth-child(7) {
  791. -webkit-animation-delay: 0.46s;
  792. animation-delay: 0.46s;
  793. -webkit-animation-duration: 0.87s;
  794. animation-duration: 0.87s; }
  795. .ball-grid-pulse > div:nth-child(8) {
  796. -webkit-animation-delay: 0.78s;
  797. animation-delay: 0.78s;
  798. -webkit-animation-duration: 1.45s;
  799. animation-duration: 1.45s; }
  800. .ball-grid-pulse > div:nth-child(9) {
  801. -webkit-animation-delay: 0.45s;
  802. animation-delay: 0.45s;
  803. -webkit-animation-duration: 1.06s;
  804. animation-duration: 1.06s; }
  805. .ball-grid-pulse > div {
  806. background-color: #fff;
  807. width: 15px;
  808. height: 15px;
  809. border-radius: 100%;
  810. margin: 2px;
  811. -webkit-animation-fill-mode: both;
  812. animation-fill-mode: both;
  813. display: inline-block;
  814. float: left;
  815. -webkit-animation-name: ball-grid-pulse;
  816. animation-name: ball-grid-pulse;
  817. -webkit-animation-iteration-count: infinite;
  818. animation-iteration-count: infinite;
  819. -webkit-animation-delay: 0;
  820. animation-delay: 0; }
  821. @-webkit-keyframes ball-spin-fade-loader {
  822. 50% {
  823. opacity: 0.3;
  824. -webkit-transform: scale(0.4);
  825. transform: scale(0.4); }
  826. 100% {
  827. opacity: 1;
  828. -webkit-transform: scale(1);
  829. transform: scale(1); } }
  830. @keyframes ball-spin-fade-loader {
  831. 50% {
  832. opacity: 0.3;
  833. -webkit-transform: scale(0.4);
  834. transform: scale(0.4); }
  835. 100% {
  836. opacity: 1;
  837. -webkit-transform: scale(1);
  838. transform: scale(1); } }
  839. .ball-spin-fade-loader {
  840. position: relative; }
  841. .ball-spin-fade-loader > div:nth-child(1) {
  842. top: 25px;
  843. left: 0;
  844. -webkit-animation: ball-spin-fade-loader 1s 0s infinite linear;
  845. animation: ball-spin-fade-loader 1s 0s infinite linear; }
  846. .ball-spin-fade-loader > div:nth-child(2) {
  847. top: 17.04545px;
  848. left: 17.04545px;
  849. -webkit-animation: ball-spin-fade-loader 1s 0.12s infinite linear;
  850. animation: ball-spin-fade-loader 1s 0.12s infinite linear; }
  851. .ball-spin-fade-loader > div:nth-child(3) {
  852. top: 0;
  853. left: 25px;
  854. -webkit-animation: ball-spin-fade-loader 1s 0.24s infinite linear;
  855. animation: ball-spin-fade-loader 1s 0.24s infinite linear; }
  856. .ball-spin-fade-loader > div:nth-child(4) {
  857. top: -17.04545px;
  858. left: 17.04545px;
  859. -webkit-animation: ball-spin-fade-loader 1s 0.36s infinite linear;
  860. animation: ball-spin-fade-loader 1s 0.36s infinite linear; }
  861. .ball-spin-fade-loader > div:nth-child(5) {
  862. top: -25px;
  863. left: 0;
  864. -webkit-animation: ball-spin-fade-loader 1s 0.48s infinite linear;
  865. animation: ball-spin-fade-loader 1s 0.48s infinite linear; }
  866. .ball-spin-fade-loader > div:nth-child(6) {
  867. top: -17.04545px;
  868. left: -17.04545px;
  869. -webkit-animation: ball-spin-fade-loader 1s 0.6s infinite linear;
  870. animation: ball-spin-fade-loader 1s 0.6s infinite linear; }
  871. .ball-spin-fade-loader > div:nth-child(7) {
  872. top: 0;
  873. left: -25px;
  874. -webkit-animation: ball-spin-fade-loader 1s 0.72s infinite linear;
  875. animation: ball-spin-fade-loader 1s 0.72s infinite linear; }
  876. .ball-spin-fade-loader > div:nth-child(8) {
  877. top: 17.04545px;
  878. left: -17.04545px;
  879. -webkit-animation: ball-spin-fade-loader 1s 0.84s infinite linear;
  880. animation: ball-spin-fade-loader 1s 0.84s infinite linear; }
  881. .ball-spin-fade-loader > div {
  882. background-color: #fff;
  883. width: 15px;
  884. height: 15px;
  885. border-radius: 100%;
  886. margin: 2px;
  887. -webkit-animation-fill-mode: both;
  888. animation-fill-mode: both;
  889. position: absolute; }
  890. @-webkit-keyframes ball-spin-loader {
  891. 75% {
  892. opacity: 0.2; }
  893. 100% {
  894. opacity: 1; } }
  895. @keyframes ball-spin-loader {
  896. 75% {
  897. opacity: 0.2; }
  898. 100% {
  899. opacity: 1; } }
  900. .ball-spin-loader {
  901. position: relative; }
  902. .ball-spin-loader > span:nth-child(1) {
  903. top: 45px;
  904. left: 0;
  905. -webkit-animation: ball-spin-loader 2s 0.9s infinite linear;
  906. animation: ball-spin-loader 2s 0.9s infinite linear; }
  907. .ball-spin-loader > span:nth-child(2) {
  908. top: 30.68182px;
  909. left: 30.68182px;
  910. -webkit-animation: ball-spin-loader 2s 1.8s infinite linear;
  911. animation: ball-spin-loader 2s 1.8s infinite linear; }
  912. .ball-spin-loader > span:nth-child(3) {
  913. top: 0;
  914. left: 45px;
  915. -webkit-animation: ball-spin-loader 2s 2.7s infinite linear;
  916. animation: ball-spin-loader 2s 2.7s infinite linear; }
  917. .ball-spin-loader > span:nth-child(4) {
  918. top: -30.68182px;
  919. left: 30.68182px;
  920. -webkit-animation: ball-spin-loader 2s 3.6s infinite linear;
  921. animation: ball-spin-loader 2s 3.6s infinite linear; }
  922. .ball-spin-loader > span:nth-child(5) {
  923. top: -45px;
  924. left: 0;
  925. -webkit-animation: ball-spin-loader 2s 4.5s infinite linear;
  926. animation: ball-spin-loader 2s 4.5s infinite linear; }
  927. .ball-spin-loader > span:nth-child(6) {
  928. top: -30.68182px;
  929. left: -30.68182px;
  930. -webkit-animation: ball-spin-loader 2s 5.4s infinite linear;
  931. animation: ball-spin-loader 2s 5.4s infinite linear; }
  932. .ball-spin-loader > span:nth-child(7) {
  933. top: 0;
  934. left: -45px;
  935. -webkit-animation: ball-spin-loader 2s 6.3s infinite linear;
  936. animation: ball-spin-loader 2s 6.3s infinite linear; }
  937. .ball-spin-loader > span:nth-child(8) {
  938. top: 30.68182px;
  939. left: -30.68182px;
  940. -webkit-animation: ball-spin-loader 2s 7.2s infinite linear;
  941. animation: ball-spin-loader 2s 7.2s infinite linear; }
  942. .ball-spin-loader > div {
  943. -webkit-animation-fill-mode: both;
  944. animation-fill-mode: both;
  945. position: absolute;
  946. width: 15px;
  947. height: 15px;
  948. border-radius: 100%;
  949. background: green; }
  950. @-webkit-keyframes ball-zig {
  951. 33% {
  952. -webkit-transform: translate(-15px, -30px);
  953. transform: translate(-15px, -30px); }
  954. 66% {
  955. -webkit-transform: translate(15px, -30px);
  956. transform: translate(15px, -30px); }
  957. 100% {
  958. -webkit-transform: translate(0, 0);
  959. transform: translate(0, 0); } }
  960. @keyframes ball-zig {
  961. 33% {
  962. -webkit-transform: translate(-15px, -30px);
  963. transform: translate(-15px, -30px); }
  964. 66% {
  965. -webkit-transform: translate(15px, -30px);
  966. transform: translate(15px, -30px); }
  967. 100% {
  968. -webkit-transform: translate(0, 0);
  969. transform: translate(0, 0); } }
  970. @-webkit-keyframes ball-zag {
  971. 33% {
  972. -webkit-transform: translate(15px, 30px);
  973. transform: translate(15px, 30px); }
  974. 66% {
  975. -webkit-transform: translate(-15px, 30px);
  976. transform: translate(-15px, 30px); }
  977. 100% {
  978. -webkit-transform: translate(0, 0);
  979. transform: translate(0, 0); } }
  980. @keyframes ball-zag {
  981. 33% {
  982. -webkit-transform: translate(15px, 30px);
  983. transform: translate(15px, 30px); }
  984. 66% {
  985. -webkit-transform: translate(-15px, 30px);
  986. transform: translate(-15px, 30px); }
  987. 100% {
  988. -webkit-transform: translate(0, 0);
  989. transform: translate(0, 0); } }
  990. .ball-zig-zag {
  991. position: relative;
  992. -webkit-transform: translate(-15px, -15px);
  993. -ms-transform: translate(-15px, -15px);
  994. transform: translate(-15px, -15px); }
  995. .ball-zig-zag > div {
  996. background-color: #fff;
  997. width: 15px;
  998. height: 15px;
  999. border-radius: 100%;
  1000. margin: 2px;
  1001. -webkit-animation-fill-mode: both;
  1002. animation-fill-mode: both;
  1003. position: absolute;
  1004. margin-left: 15px;
  1005. top: 30px;
  1006. left: 30px; }
  1007. .ball-zig-zag > div:first-child {
  1008. -webkit-animation: ball-zig 0.7s 0s infinite linear;
  1009. animation: ball-zig 0.7s 0s infinite linear; }
  1010. .ball-zig-zag > div:last-child {
  1011. -webkit-animation: ball-zag 0.7s 0s infinite linear;
  1012. animation: ball-zag 0.7s 0s infinite linear; }
  1013. @-webkit-keyframes ball-zig-deflect {
  1014. 17% {
  1015. -webkit-transform: translate(-15px, -30px);
  1016. transform: translate(-15px, -30px); }
  1017. 34% {
  1018. -webkit-transform: translate(15px, -30px);
  1019. transform: translate(15px, -30px); }
  1020. 50% {
  1021. -webkit-transform: translate(0, 0);
  1022. transform: translate(0, 0); }
  1023. 67% {
  1024. -webkit-transform: translate(15px, -30px);
  1025. transform: translate(15px, -30px); }
  1026. 84% {
  1027. -webkit-transform: translate(-15px, -30px);
  1028. transform: translate(-15px, -30px); }
  1029. 100% {
  1030. -webkit-transform: translate(0, 0);
  1031. transform: translate(0, 0); } }
  1032. @keyframes ball-zig-deflect {
  1033. 17% {
  1034. -webkit-transform: translate(-15px, -30px);
  1035. transform: translate(-15px, -30px); }
  1036. 34% {
  1037. -webkit-transform: translate(15px, -30px);
  1038. transform: translate(15px, -30px); }
  1039. 50% {
  1040. -webkit-transform: translate(0, 0);
  1041. transform: translate(0, 0); }
  1042. 67% {
  1043. -webkit-transform: translate(15px, -30px);
  1044. transform: translate(15px, -30px); }
  1045. 84% {
  1046. -webkit-transform: translate(-15px, -30px);
  1047. transform: translate(-15px, -30px); }
  1048. 100% {
  1049. -webkit-transform: translate(0, 0);
  1050. transform: translate(0, 0); } }
  1051. @-webkit-keyframes ball-zag-deflect {
  1052. 17% {
  1053. -webkit-transform: translate(15px, 30px);
  1054. transform: translate(15px, 30px); }
  1055. 34% {
  1056. -webkit-transform: translate(-15px, 30px);
  1057. transform: translate(-15px, 30px); }
  1058. 50% {
  1059. -webkit-transform: translate(0, 0);
  1060. transform: translate(0, 0); }
  1061. 67% {
  1062. -webkit-transform: translate(-15px, 30px);
  1063. transform: translate(-15px, 30px); }
  1064. 84% {
  1065. -webkit-transform: translate(15px, 30px);
  1066. transform: translate(15px, 30px); }
  1067. 100% {
  1068. -webkit-transform: translate(0, 0);
  1069. transform: translate(0, 0); } }
  1070. @keyframes ball-zag-deflect {
  1071. 17% {
  1072. -webkit-transform: translate(15px, 30px);
  1073. transform: translate(15px, 30px); }
  1074. 34% {
  1075. -webkit-transform: translate(-15px, 30px);
  1076. transform: translate(-15px, 30px); }
  1077. 50% {
  1078. -webkit-transform: translate(0, 0);
  1079. transform: translate(0, 0); }
  1080. 67% {
  1081. -webkit-transform: translate(-15px, 30px);
  1082. transform: translate(-15px, 30px); }
  1083. 84% {
  1084. -webkit-transform: translate(15px, 30px);
  1085. transform: translate(15px, 30px); }
  1086. 100% {
  1087. -webkit-transform: translate(0, 0);
  1088. transform: translate(0, 0); } }
  1089. .ball-zig-zag-deflect {
  1090. position: relative;
  1091. -webkit-transform: translate(-15px, -15px);
  1092. -ms-transform: translate(-15px, -15px);
  1093. transform: translate(-15px, -15px); }
  1094. .ball-zig-zag-deflect > div {
  1095. background-color: #fff;
  1096. width: 15px;
  1097. height: 15px;
  1098. border-radius: 100%;
  1099. margin: 2px;
  1100. -webkit-animation-fill-mode: both;
  1101. animation-fill-mode: both;
  1102. position: absolute;
  1103. margin-left: 15px;
  1104. top: 30px;
  1105. left: 30px; }
  1106. .ball-zig-zag-deflect > div:first-child {
  1107. -webkit-animation: ball-zig-deflect 1.5s 0s infinite linear;
  1108. animation: ball-zig-deflect 1.5s 0s infinite linear; }
  1109. .ball-zig-zag-deflect > div:last-child {
  1110. -webkit-animation: ball-zag-deflect 1.5s 0s infinite linear;
  1111. animation: ball-zag-deflect 1.5s 0s infinite linear; }
  1112. /**
  1113. * Lines
  1114. */
  1115. @-webkit-keyframes line-scale {
  1116. 0% {
  1117. -webkit-transform: scaley(1);
  1118. transform: scaley(1); }
  1119. 50% {
  1120. -webkit-transform: scaley(0.4);
  1121. transform: scaley(0.4); }
  1122. 100% {
  1123. -webkit-transform: scaley(1);
  1124. transform: scaley(1); } }
  1125. @keyframes line-scale {
  1126. 0% {
  1127. -webkit-transform: scaley(1);
  1128. transform: scaley(1); }
  1129. 50% {
  1130. -webkit-transform: scaley(0.4);
  1131. transform: scaley(0.4); }
  1132. 100% {
  1133. -webkit-transform: scaley(1);
  1134. transform: scaley(1); } }
  1135. .line-scale > div:nth-child(1) {
  1136. -webkit-animation: line-scale 1s 0.1s infinite cubic-bezier(.2, .68, .18, 1.08);
  1137. animation: line-scale 1s 0.1s infinite cubic-bezier(.2, .68, .18, 1.08); }
  1138. .line-scale > div:nth-child(2) {
  1139. -webkit-animation: line-scale 1s 0.2s infinite cubic-bezier(.2, .68, .18, 1.08);
  1140. animation: line-scale 1s 0.2s infinite cubic-bezier(.2, .68, .18, 1.08); }
  1141. .line-scale > div:nth-child(3) {
  1142. -webkit-animation: line-scale 1s 0.3s infinite cubic-bezier(.2, .68, .18, 1.08);
  1143. animation: line-scale 1s 0.3s infinite cubic-bezier(.2, .68, .18, 1.08); }
  1144. .line-scale > div:nth-child(4) {
  1145. -webkit-animation: line-scale 1s 0.4s infinite cubic-bezier(.2, .68, .18, 1.08);
  1146. animation: line-scale 1s 0.4s infinite cubic-bezier(.2, .68, .18, 1.08); }
  1147. .line-scale > div:nth-child(5) {
  1148. -webkit-animation: line-scale 1s 0.5s infinite cubic-bezier(.2, .68, .18, 1.08);
  1149. animation: line-scale 1s 0.5s infinite cubic-bezier(.2, .68, .18, 1.08); }
  1150. .line-scale > div {
  1151. background-color: #fff;
  1152. width: 4px;
  1153. height: 35px;
  1154. border-radius: 2px;
  1155. margin: 2px;
  1156. -webkit-animation-fill-mode: both;
  1157. animation-fill-mode: both;
  1158. display: inline-block; }
  1159. @-webkit-keyframes line-scale-party {
  1160. 0% {
  1161. -webkit-transform: scale(1);
  1162. transform: scale(1); }
  1163. 50% {
  1164. -webkit-transform: scale(0.5);
  1165. transform: scale(0.5); }
  1166. 100% {
  1167. -webkit-transform: scale(1);
  1168. transform: scale(1); } }
  1169. @keyframes line-scale-party {
  1170. 0% {
  1171. -webkit-transform: scale(1);
  1172. transform: scale(1); }
  1173. 50% {
  1174. -webkit-transform: scale(0.5);
  1175. transform: scale(0.5); }
  1176. 100% {
  1177. -webkit-transform: scale(1);
  1178. transform: scale(1); } }
  1179. .line-scale-party > div:nth-child(1) {
  1180. -webkit-animation-delay: 0.77s;
  1181. animation-delay: 0.77s;
  1182. -webkit-animation-duration: 1.26s;
  1183. animation-duration: 1.26s; }
  1184. .line-scale-party > div:nth-child(2) {
  1185. -webkit-animation-delay: 0.29s;
  1186. animation-delay: 0.29s;
  1187. -webkit-animation-duration: 0.43s;
  1188. animation-duration: 0.43s; }
  1189. .line-scale-party > div:nth-child(3) {
  1190. -webkit-animation-delay: 0.28s;
  1191. animation-delay: 0.28s;
  1192. -webkit-animation-duration: 1.01s;
  1193. animation-duration: 1.01s; }
  1194. .line-scale-party > div:nth-child(4) {
  1195. -webkit-animation-delay: 0.74s;
  1196. animation-delay: 0.74s;
  1197. -webkit-animation-duration: 0.73s;
  1198. animation-duration: 0.73s; }
  1199. .line-scale-party > div {
  1200. background-color: #fff;
  1201. width: 4px;
  1202. height: 35px;
  1203. border-radius: 2px;
  1204. margin: 2px;
  1205. -webkit-animation-fill-mode: both;
  1206. animation-fill-mode: both;
  1207. display: inline-block;
  1208. -webkit-animation-name: line-scale-party;
  1209. animation-name: line-scale-party;
  1210. -webkit-animation-iteration-count: infinite;
  1211. animation-iteration-count: infinite;
  1212. -webkit-animation-delay: 0;
  1213. animation-delay: 0; }
  1214. @-webkit-keyframes line-scale-pulse-out {
  1215. 0% {
  1216. -webkit-transform: scaley(1);
  1217. transform: scaley(1); }
  1218. 50% {
  1219. -webkit-transform: scaley(0.4);
  1220. transform: scaley(0.4); }
  1221. 100% {
  1222. -webkit-transform: scaley(1);
  1223. transform: scaley(1); } }
  1224. @keyframes line-scale-pulse-out {
  1225. 0% {
  1226. -webkit-transform: scaley(1);
  1227. transform: scaley(1); }
  1228. 50% {
  1229. -webkit-transform: scaley(0.4);
  1230. transform: scaley(0.4); }
  1231. 100% {
  1232. -webkit-transform: scaley(1);
  1233. transform: scaley(1); } }
  1234. .line-scale-pulse-out > div {
  1235. background-color: #fff;
  1236. width: 4px;
  1237. height: 35px;
  1238. border-radius: 2px;
  1239. margin: 2px;
  1240. -webkit-animation-fill-mode: both;
  1241. animation-fill-mode: both;
  1242. display: inline-block;
  1243. -webkit-animation: line-scale-pulse-out 0.9s 0s infinite cubic-bezier(.85, .25, .37, .85);
  1244. animation: line-scale-pulse-out 0.9s 0s infinite cubic-bezier(.85, .25, .37, .85); }
  1245. .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  1246. -webkit-animation-delay: 0.2s !important;
  1247. animation-delay: 0.2s !important; }
  1248. .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  1249. -webkit-animation-delay: 0.4s !important;
  1250. animation-delay: 0.4s !important; }
  1251. @-webkit-keyframes line-scale-pulse-out-rapid {
  1252. 0% {
  1253. -webkit-transform: scaley(1);
  1254. transform: scaley(1); }
  1255. 80% {
  1256. -webkit-transform: scaley(0.3);
  1257. transform: scaley(0.3); }
  1258. 90% {
  1259. -webkit-transform: scaley(1);
  1260. transform: scaley(1); } }
  1261. @keyframes line-scale-pulse-out-rapid {
  1262. 0% {
  1263. -webkit-transform: scaley(1);
  1264. transform: scaley(1); }
  1265. 80% {
  1266. -webkit-transform: scaley(0.3);
  1267. transform: scaley(0.3); }
  1268. 90% {
  1269. -webkit-transform: scaley(1);
  1270. transform: scaley(1); } }
  1271. .line-scale-pulse-out-rapid > div {
  1272. background-color: #fff;
  1273. width: 4px;
  1274. height: 35px;
  1275. border-radius: 2px;
  1276. margin: 2px;
  1277. -webkit-animation-fill-mode: both;
  1278. animation-fill-mode: both;
  1279. display: inline-block;
  1280. -webkit-animation: line-scale-pulse-out-rapid 0.9s 0s infinite cubic-bezier(.11, .49, .38, .78);
  1281. animation: line-scale-pulse-out-rapid 0.9s 0s infinite cubic-bezier(.11, .49, .38, .78); }
  1282. .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  1283. -webkit-animation-delay: 0.25s !important;
  1284. animation-delay: 0.25s !important; }
  1285. .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  1286. -webkit-animation-delay: 0.5s !important;
  1287. animation-delay: 0.5s !important; }
  1288. @-webkit-keyframes line-spin-fade-loader {
  1289. 50% {
  1290. opacity: 0.3; }
  1291. 100% {
  1292. opacity: 1; } }
  1293. @keyframes line-spin-fade-loader {
  1294. 50% {
  1295. opacity: 0.3; }
  1296. 100% {
  1297. opacity: 1; } }
  1298. .line-spin-fade-loader {
  1299. position: relative; }
  1300. .line-spin-fade-loader > div:nth-child(1) {
  1301. top: 20px;
  1302. left: 0;
  1303. -webkit-animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
  1304. animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out; }
  1305. .line-spin-fade-loader > div:nth-child(2) {
  1306. top: 13.63636px;
  1307. left: 13.63636px;
  1308. -webkit-transform: rotate(-45deg);
  1309. -ms-transform: rotate(-45deg);
  1310. transform: rotate(-45deg);
  1311. -webkit-animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
  1312. animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out; }
  1313. .line-spin-fade-loader > div:nth-child(3) {
  1314. top: 0;
  1315. left: 20px;
  1316. -webkit-transform: rotate(90deg);
  1317. -ms-transform: rotate(90deg);
  1318. transform: rotate(90deg);
  1319. -webkit-animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
  1320. animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out; }
  1321. .line-spin-fade-loader > div:nth-child(4) {
  1322. top: -13.63636px;
  1323. left: 13.63636px;
  1324. -webkit-transform: rotate(45deg);
  1325. -ms-transform: rotate(45deg);
  1326. transform: rotate(45deg);
  1327. -webkit-animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
  1328. animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out; }
  1329. .line-spin-fade-loader > div:nth-child(5) {
  1330. top: -20px;
  1331. left: 0;
  1332. -webkit-animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
  1333. animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out; }
  1334. .line-spin-fade-loader > div:nth-child(6) {
  1335. top: -13.63636px;
  1336. left: -13.63636px;
  1337. -webkit-transform: rotate(-45deg);
  1338. -ms-transform: rotate(-45deg);
  1339. transform: rotate(-45deg);
  1340. -webkit-animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
  1341. animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out; }
  1342. .line-spin-fade-loader > div:nth-child(7) {
  1343. top: 0;
  1344. left: -20px;
  1345. -webkit-transform: rotate(90deg);
  1346. -ms-transform: rotate(90deg);
  1347. transform: rotate(90deg);
  1348. -webkit-animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
  1349. animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out; }
  1350. .line-spin-fade-loader > div:nth-child(8) {
  1351. top: 13.63636px;
  1352. left: -13.63636px;
  1353. -webkit-transform: rotate(45deg);
  1354. -ms-transform: rotate(45deg);
  1355. transform: rotate(45deg);
  1356. -webkit-animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out;
  1357. animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out; }
  1358. .line-spin-fade-loader > div {
  1359. background-color: #fff;
  1360. width: 4px;
  1361. height: 35px;
  1362. border-radius: 2px;
  1363. margin: 2px;
  1364. -webkit-animation-fill-mode: both;
  1365. animation-fill-mode: both;
  1366. position: absolute;
  1367. width: 5px;
  1368. height: 15px; }
  1369. /**
  1370. * Misc
  1371. */
  1372. @-webkit-keyframes triangle-skew-spin {
  1373. 25% {
  1374. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
  1375. transform: perspective(100px) rotateX(180deg) rotateY(0); }
  1376. 50% {
  1377. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  1378. transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  1379. 75% {
  1380. -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
  1381. transform: perspective(100px) rotateX(0) rotateY(180deg); }
  1382. 100% {
  1383. -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
  1384. transform: perspective(100px) rotateX(0) rotateY(0); } }
  1385. @keyframes triangle-skew-spin {
  1386. 25% {
  1387. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
  1388. transform: perspective(100px) rotateX(180deg) rotateY(0); }
  1389. 50% {
  1390. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  1391. transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  1392. 75% {
  1393. -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
  1394. transform: perspective(100px) rotateX(0) rotateY(180deg); }
  1395. 100% {
  1396. -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
  1397. transform: perspective(100px) rotateX(0) rotateY(0); } }
  1398. .triangle-skew-spin > div {
  1399. -webkit-animation-fill-mode: both;
  1400. animation-fill-mode: both;
  1401. width: 0;
  1402. height: 0;
  1403. border-left: 20px solid transparent;
  1404. border-right: 20px solid transparent;
  1405. border-bottom: 20px solid #fff;
  1406. -webkit-animation: triangle-skew-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite;
  1407. animation: triangle-skew-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite; }
  1408. @-webkit-keyframes square-spin {
  1409. 25% {
  1410. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
  1411. transform: perspective(100px) rotateX(180deg) rotateY(0); }
  1412. 50% {
  1413. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  1414. transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  1415. 75% {
  1416. -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
  1417. transform: perspective(100px) rotateX(0) rotateY(180deg); }
  1418. 100% {
  1419. -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
  1420. transform: perspective(100px) rotateX(0) rotateY(0); } }
  1421. @keyframes square-spin {
  1422. 25% {
  1423. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(0);
  1424. transform: perspective(100px) rotateX(180deg) rotateY(0); }
  1425. 50% {
  1426. -webkit-transform: perspective(100px) rotateX(180deg) rotateY(180deg);
  1427. transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  1428. 75% {
  1429. -webkit-transform: perspective(100px) rotateX(0) rotateY(180deg);
  1430. transform: perspective(100px) rotateX(0) rotateY(180deg); }
  1431. 100% {
  1432. -webkit-transform: perspective(100px) rotateX(0) rotateY(0);
  1433. transform: perspective(100px) rotateX(0) rotateY(0); } }
  1434. .square-spin > div {
  1435. -webkit-animation-fill-mode: both;
  1436. animation-fill-mode: both;
  1437. width: 50px;
  1438. height: 50px;
  1439. background: #fff;
  1440. border: 1px solid red;
  1441. -webkit-animation: square-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite;
  1442. animation: square-spin 3s 0s cubic-bezier(.09, .57, .49, .9) infinite; }
  1443. @-webkit-keyframes rotate_pacman_half_up {
  1444. 0% {
  1445. -webkit-transform: rotate(270deg);
  1446. transform: rotate(270deg); }
  1447. 50% {
  1448. -webkit-transform: rotate(360deg);
  1449. transform: rotate(360deg); }
  1450. 100% {
  1451. -webkit-transform: rotate(270deg);
  1452. transform: rotate(270deg); } }
  1453. @keyframes rotate_pacman_half_up {
  1454. 0% {
  1455. -webkit-transform: rotate(270deg);
  1456. transform: rotate(270deg); }
  1457. 50% {
  1458. -webkit-transform: rotate(360deg);
  1459. transform: rotate(360deg); }
  1460. 100% {
  1461. -webkit-transform: rotate(270deg);
  1462. transform: rotate(270deg); } }
  1463. @-webkit-keyframes rotate_pacman_half_down {
  1464. 0% {
  1465. -webkit-transform: rotate(90deg);
  1466. transform: rotate(90deg); }
  1467. 50% {
  1468. -webkit-transform: rotate(0deg);
  1469. transform: rotate(0deg); }
  1470. 100% {
  1471. -webkit-transform: rotate(90deg);
  1472. transform: rotate(90deg); } }
  1473. @keyframes rotate_pacman_half_down {
  1474. 0% {
  1475. -webkit-transform: rotate(90deg);
  1476. transform: rotate(90deg); }
  1477. 50% {
  1478. -webkit-transform: rotate(0deg);
  1479. transform: rotate(0deg); }
  1480. 100% {
  1481. -webkit-transform: rotate(90deg);
  1482. transform: rotate(90deg); } }
  1483. @-webkit-keyframes pacman-balls {
  1484. 75% {
  1485. opacity: 0.7; }
  1486. 100% {
  1487. -webkit-transform: translate(-100px, -6.25px);
  1488. transform: translate(-100px, -6.25px); } }
  1489. @keyframes pacman-balls {
  1490. 75% {
  1491. opacity: 0.7; }
  1492. 100% {
  1493. -webkit-transform: translate(-100px, -6.25px);
  1494. transform: translate(-100px, -6.25px); } }
  1495. .pacman {
  1496. position: relative; }
  1497. .pacman > div:nth-child(2) {
  1498. -webkit-animation: pacman-balls 1s 0s infinite linear;
  1499. animation: pacman-balls 1s 0s infinite linear; }
  1500. .pacman > div:nth-child(3) {
  1501. -webkit-animation: pacman-balls 1s 0.33s infinite linear;
  1502. animation: pacman-balls 1s 0.33s infinite linear; }
  1503. .pacman > div:nth-child(4) {
  1504. -webkit-animation: pacman-balls 1s 0.66s infinite linear;
  1505. animation: pacman-balls 1s 0.66s infinite linear; }
  1506. .pacman > div:nth-child(5) {
  1507. -webkit-animation: pacman-balls 1s 0.99s infinite linear;
  1508. animation: pacman-balls 1s 0.99s infinite linear; }
  1509. .pacman > div:first-of-type {
  1510. width: 0px;
  1511. height: 0px;
  1512. border-right: 25px solid transparent;
  1513. border-top: 25px solid #fff;
  1514. border-left: 25px solid #fff;
  1515. border-bottom: 25px solid #fff;
  1516. border-radius: 25px;
  1517. -webkit-animation: rotate_pacman_half_up 0.5s 0s infinite;
  1518. animation: rotate_pacman_half_up 0.5s 0s infinite; }
  1519. .pacman > div:nth-child(2) {
  1520. width: 0px;
  1521. height: 0px;
  1522. border-right: 25px solid transparent;
  1523. border-top: 25px solid #fff;
  1524. border-left: 25px solid #fff;
  1525. border-bottom: 25px solid #fff;
  1526. border-radius: 25px;
  1527. -webkit-animation: rotate_pacman_half_down 0.5s 0s infinite;
  1528. animation: rotate_pacman_half_down 0.5s 0s infinite;
  1529. margin-top: -50px; }
  1530. .pacman > div:nth-child(3), .pacman > div:nth-child(4), .pacman > div:nth-child(5), .pacman > div:nth-child(6) {
  1531. background-color: #fff;
  1532. width: 15px;
  1533. height: 15px;
  1534. border-radius: 100%;
  1535. margin: 2px;
  1536. width: 10px;
  1537. height: 10px;
  1538. position: absolute;
  1539. -webkit-transform: translate(0, -6.25px);
  1540. -ms-transform: translate(0, -6.25px);
  1541. transform: translate(0, -6.25px);
  1542. top: 25px;
  1543. left: 100px; }
  1544. @-webkit-keyframes cube-transition {
  1545. 25% {
  1546. -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
  1547. transform: translateX(50px) scale(0.5) rotate(-90deg); }
  1548. 50% {
  1549. -webkit-transform: translate(50px, 50px) rotate(-180deg);
  1550. transform: translate(50px, 50px) rotate(-180deg); }
  1551. 75% {
  1552. -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
  1553. transform: translateY(50px) scale(0.5) rotate(-270deg); }
  1554. 100% {
  1555. -webkit-transform: rotate(-360deg);
  1556. transform: rotate(-360deg); } }
  1557. @keyframes cube-transition {
  1558. 25% {
  1559. -webkit-transform: translateX(50px) scale(0.5) rotate(-90deg);
  1560. transform: translateX(50px) scale(0.5) rotate(-90deg); }
  1561. 50% {
  1562. -webkit-transform: translate(50px, 50px) rotate(-180deg);
  1563. transform: translate(50px, 50px) rotate(-180deg); }
  1564. 75% {
  1565. -webkit-transform: translateY(50px) scale(0.5) rotate(-270deg);
  1566. transform: translateY(50px) scale(0.5) rotate(-270deg); }
  1567. 100% {
  1568. -webkit-transform: rotate(-360deg);
  1569. transform: rotate(-360deg); } }
  1570. .cube-transition {
  1571. position: relative;
  1572. -webkit-transform: translate(-25px, -25px);
  1573. -ms-transform: translate(-25px, -25px);
  1574. transform: translate(-25px, -25px); }
  1575. .cube-transition > div {
  1576. -webkit-animation-fill-mode: both;
  1577. animation-fill-mode: both;
  1578. width: 10px;
  1579. height: 10px;
  1580. position: absolute;
  1581. top: 0;
  1582. left: 0;
  1583. background-color: #fff;
  1584. -webkit-animation: cube-transition 1.6s 0s infinite ease-in-out;
  1585. animation: cube-transition 1.6s 0s infinite ease-in-out; }
  1586. .cube-transition > div:last-child {
  1587. -webkit-animation-delay: -0.8s;
  1588. animation-delay: -0.8s; }
  1589. @-webkit-keyframes spin-rotate {
  1590. 0% {
  1591. -webkit-transform: rotate(0deg);
  1592. transform: rotate(0deg); }
  1593. 50% {
  1594. -webkit-transform: rotate(180deg);
  1595. transform: rotate(180deg); }
  1596. 100% {
  1597. -webkit-transform: rotate(360deg);
  1598. transform: rotate(360deg); } }
  1599. @keyframes spin-rotate {
  1600. 0% {
  1601. -webkit-transform: rotate(0deg);
  1602. transform: rotate(0deg); }
  1603. 50% {
  1604. -webkit-transform: rotate(180deg);
  1605. transform: rotate(180deg); }
  1606. 100% {
  1607. -webkit-transform: rotate(360deg);
  1608. transform: rotate(360deg); } }
  1609. .semi-circle-spin {
  1610. position: relative;
  1611. width: 35px;
  1612. height: 35px;
  1613. overflow: hidden; }
  1614. .semi-circle-spin > div {
  1615. position: absolute;
  1616. border-width: 0px;
  1617. border-radius: 100%;
  1618. -webkit-animation: spin-rotate 0.6s 0s infinite linear;
  1619. animation: spin-rotate 0.6s 0s infinite linear;
  1620. background-image: -webkit-linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  1621. background-image: linear-gradient(transparent 0%, transparent 70%, #fff 30%, #fff 100%);
  1622. width: 100%;
  1623. height: 100%; }