loaders.css 57 KB

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