webplayer2.css 55 KB

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