loaders.css 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415
  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. /* Custom Loader.CSS */
  13. .loader-container {
  14. position: absolute;
  15. top: 50%;
  16. left: 50%; }
  17. .double-bounce {
  18. width: 40px;
  19. height: 40px;
  20. position: relative;
  21. margin: 40px auto; }
  22. .double-bounce .child {
  23. width: 100%;
  24. height: 100%;
  25. border-radius: 50%;
  26. background-color: #333;
  27. opacity: 0.6;
  28. position: absolute;
  29. top: 0;
  30. left: 0;
  31. animation: doubleBounce 2s infinite ease-in-out; }
  32. .double-bounce .double-bounce2 {
  33. animation-delay: -1.0s; }
  34. @-webkit-keyframes doubleBounce {
  35. 0%, 100% {
  36. transform: scale(0); }
  37. 50% {
  38. transform: scale(1); } }
  39. @keyframes doubleBounce {
  40. 0%, 100% {
  41. transform: scale(0); }
  42. 50% {
  43. transform: scale(1); } }
  44. .chasing-dots {
  45. width: 40px;
  46. height: 40px;
  47. position: relative;
  48. text-align: center;
  49. animation: chasingDotsRotate 2s infinite linear; }
  50. .chasing-dots .child {
  51. width: 60%;
  52. height: 60%;
  53. display: inline-block;
  54. position: absolute;
  55. top: 0;
  56. background-color: #333;
  57. border-radius: 100%;
  58. animation: chasingDotsBounce 2s infinite ease-in-out; }
  59. .chasing-dots .dot2 {
  60. top: auto;
  61. bottom: 0;
  62. animation-delay: -1s; }
  63. @-webkit-keyframes chasingDotsRotate {
  64. 100% {
  65. transform: rotate(360deg); } }
  66. @keyframes chasingDotsRotate {
  67. 100% {
  68. transform: rotate(360deg); } }
  69. @-webkit-keyframes chasingDotsBounce {
  70. 0%, 100% {
  71. transform: scale(0); }
  72. 50% {
  73. transform: scale(1); } }
  74. @keyframes chasingDotsBounce {
  75. 0%, 100% {
  76. transform: scale(0); }
  77. 50% {
  78. transform: scale(1); } }
  79. /*
  80. * Spinner positions
  81. * 1 2 3
  82. * 4 5 6
  83. * 7 8 9
  84. */
  85. .cube-grid {
  86. width: 40px;
  87. height: 40px;
  88. margin: 40px auto; }
  89. .cube-grid .cube {
  90. width: 33.33%;
  91. height: 33.33%;
  92. background-color: #333;
  93. float: left;
  94. animation: cubeGridScaleDelay 1.3s infinite ease-in-out; }
  95. .cube-grid .cube1 {
  96. animation-delay: 0.2s; }
  97. .cube-grid .cube2 {
  98. animation-delay: 0.3s; }
  99. .cube-grid .cube3 {
  100. animation-delay: 0.4s; }
  101. .cube-grid .cube4 {
  102. animation-delay: 0.1s; }
  103. .cube-grid .cube5 {
  104. animation-delay: 0.2s; }
  105. .cube-grid .cube6 {
  106. animation-delay: 0.3s; }
  107. .cube-grid .cube7 {
  108. animation-delay: 0.0s; }
  109. .cube-grid .cube8 {
  110. animation-delay: 0.1s; }
  111. .cube-grid .cube9 {
  112. animation-delay: 0.2s; }
  113. @-webkit-keyframes cubeGridScaleDelay {
  114. 0%, 70%, 100% {
  115. transform: scale3D(1, 1, 1); }
  116. 35% {
  117. transform: scale3D(0, 0, 1); } }
  118. @keyframes cubeGridScaleDelay {
  119. 0%, 70%, 100% {
  120. transform: scale3D(1, 1, 1); }
  121. 35% {
  122. transform: scale3D(0, 0, 1); } }
  123. .fading-circle {
  124. margin: 40px auto;
  125. width: 40px;
  126. height: 40px;
  127. position: relative; }
  128. .fading-circle .circle {
  129. width: 100%;
  130. height: 100%;
  131. position: absolute;
  132. left: 0;
  133. top: 0; }
  134. .fading-circle .circle:before {
  135. content: '';
  136. display: block;
  137. margin: 0 auto;
  138. width: 15%;
  139. height: 15%;
  140. background-color: #333;
  141. border-radius: 100%;
  142. animation: circleFadeDelay 1.2s infinite ease-in-out both; }
  143. .fading-circle .circle2 {
  144. transform: rotate(30deg); }
  145. .fading-circle .circle2:before {
  146. animation-delay: -1.1s; }
  147. .fading-circle .circle3 {
  148. transform: rotate(60deg); }
  149. .fading-circle .circle3:before {
  150. animation-delay: -1s; }
  151. .fading-circle .circle4 {
  152. transform: rotate(90deg); }
  153. .fading-circle .circle4:before {
  154. animation-delay: -0.9s; }
  155. .fading-circle .circle5 {
  156. transform: rotate(120deg); }
  157. .fading-circle .circle5:before {
  158. animation-delay: -0.8s; }
  159. .fading-circle .circle6 {
  160. transform: rotate(150deg); }
  161. .fading-circle .circle6:before {
  162. animation-delay: -0.7s; }
  163. .fading-circle .circle7 {
  164. transform: rotate(180deg); }
  165. .fading-circle .circle7:before {
  166. animation-delay: -0.6s; }
  167. .fading-circle .circle8 {
  168. transform: rotate(210deg); }
  169. .fading-circle .circle8:before {
  170. animation-delay: -0.5s; }
  171. .fading-circle .circle9 {
  172. transform: rotate(240deg); }
  173. .fading-circle .circle9:before {
  174. animation-delay: -0.4s; }
  175. .fading-circle .circle10 {
  176. transform: rotate(270deg); }
  177. .fading-circle .circle10:before {
  178. animation-delay: -0.3s; }
  179. .fading-circle .circle11 {
  180. transform: rotate(300deg); }
  181. .fading-circle .circle11:before {
  182. animation-delay: -0.2s; }
  183. .fading-circle .circle12 {
  184. transform: rotate(330deg); }
  185. .fading-circle .circle12:before {
  186. animation-delay: -0.1s; }
  187. @-webkit-keyframes circleFadeDelay {
  188. 0%, 39%, 100% {
  189. opacity: 0; }
  190. 40% {
  191. opacity: 1; } }
  192. @keyframes circleFadeDelay {
  193. 0%, 39%, 100% {
  194. opacity: 0; }
  195. 40% {
  196. opacity: 1; } }
  197. .folding-cube {
  198. width: 40px;
  199. height: 40px;
  200. position: relative;
  201. transform: rotateZ(45deg); }
  202. .folding-cube .cube {
  203. float: left;
  204. width: 50%;
  205. height: 50%;
  206. position: relative;
  207. transform: scale(1.1); }
  208. .folding-cube .cube:before {
  209. content: '';
  210. position: absolute;
  211. top: 0;
  212. left: 0;
  213. width: 100%;
  214. height: 100%;
  215. background-color: #333;
  216. animation: foldCubeAngle 2.4s infinite linear both;
  217. transform-origin: 100% 100%; }
  218. .folding-cube .cube2 {
  219. transform: scale(1.1) rotateZ(90deg); }
  220. .folding-cube .cube2:before {
  221. animation-delay: 0.3s; }
  222. .folding-cube .cube3 {
  223. transform: scale(1.1) rotateZ(180deg); }
  224. .folding-cube .cube3:before {
  225. animation-delay: 0.6s; }
  226. .folding-cube .cube4 {
  227. transform: scale(1.1) rotateZ(270deg); }
  228. .folding-cube .cube4:before {
  229. animation-delay: 0.9s; }
  230. @-webkit-keyframes foldCubeAngle {
  231. 0%, 10% {
  232. transform: perspective(140px) rotateX(-180deg);
  233. opacity: 0; }
  234. 25%, 75% {
  235. transform: perspective(140px) rotateX(0deg);
  236. opacity: 1; }
  237. 90%, 100% {
  238. transform: perspective(140px) rotateY(180deg);
  239. opacity: 0; } }
  240. @keyframes foldCubeAngle {
  241. 0%, 10% {
  242. transform: perspective(140px) rotateX(-180deg);
  243. opacity: 0; }
  244. 25%, 75% {
  245. transform: perspective(140px) rotateX(0deg);
  246. opacity: 1; }
  247. 90%, 100% {
  248. transform: perspective(140px) rotateY(180deg);
  249. opacity: 0; } }
  250. /**
  251. * Dots
  252. */
  253. @keyframes scale {
  254. 0% {
  255. transform: scale(1);
  256. opacity: 1; }
  257. 45% {
  258. transform: scale(0.1);
  259. opacity: 0.7; }
  260. 80% {
  261. transform: scale(1);
  262. opacity: 1; } }
  263. .ball-pulse > div:nth-child(1) {
  264. animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  265. .ball-pulse > div:nth-child(2) {
  266. animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  267. .ball-pulse > div:nth-child(3) {
  268. animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  269. .ball-pulse > div {
  270. background-color: #55595c;
  271. width: 15px;
  272. height: 15px;
  273. border-radius: 100%;
  274. margin: 2px;
  275. animation-fill-mode: both;
  276. display: inline-block; }
  277. @keyframes ball-pulse-sync {
  278. 33% {
  279. transform: translateY(10px); }
  280. 66% {
  281. transform: translateY(-10px); }
  282. 100% {
  283. transform: translateY(0); } }
  284. .ball-pulse-sync > div:nth-child(1) {
  285. animation: ball-pulse-sync 0.6s -0.14s infinite ease-in-out; }
  286. .ball-pulse-sync > div:nth-child(2) {
  287. animation: ball-pulse-sync 0.6s -0.07s infinite ease-in-out; }
  288. .ball-pulse-sync > div:nth-child(3) {
  289. animation: ball-pulse-sync 0.6s 0s infinite ease-in-out; }
  290. .ball-pulse-sync > div {
  291. background-color: #55595c;
  292. width: 15px;
  293. height: 15px;
  294. border-radius: 100%;
  295. margin: 2px;
  296. animation-fill-mode: both;
  297. display: inline-block; }
  298. @keyframes ball-scale {
  299. 0% {
  300. transform: scale(0); }
  301. 100% {
  302. transform: scale(1);
  303. opacity: 0; } }
  304. .ball-scale > div {
  305. background-color: #55595c;
  306. width: 15px;
  307. height: 15px;
  308. border-radius: 100%;
  309. margin: 2px;
  310. animation-fill-mode: both;
  311. display: inline-block;
  312. height: 60px;
  313. width: 60px;
  314. animation: ball-scale 1s 0s ease-in-out infinite; }
  315. @keyframes ball-scale {
  316. 0% {
  317. transform: scale(0); }
  318. 100% {
  319. transform: scale(1);
  320. opacity: 0; } }
  321. .ball-scale > div {
  322. background-color: #55595c;
  323. width: 15px;
  324. height: 15px;
  325. border-radius: 100%;
  326. margin: 2px;
  327. animation-fill-mode: both;
  328. display: inline-block;
  329. height: 60px;
  330. width: 60px;
  331. animation: ball-scale 1s 0s ease-in-out infinite; }
  332. .ball-scale-random {
  333. width: 37px;
  334. height: 40px; }
  335. .ball-scale-random > div {
  336. background-color: #55595c;
  337. width: 15px;
  338. height: 15px;
  339. border-radius: 100%;
  340. margin: 2px;
  341. animation-fill-mode: both;
  342. position: absolute;
  343. display: inline-block;
  344. height: 30px;
  345. width: 30px;
  346. animation: ball-scale 1s 0s ease-in-out infinite; }
  347. .ball-scale-random > div:nth-child(1) {
  348. margin-left: -7px;
  349. animation: ball-scale 1s 0.2s ease-in-out infinite; }
  350. .ball-scale-random > div:nth-child(3) {
  351. margin-left: -2px;
  352. margin-top: 9px;
  353. animation: ball-scale 1s 0.5s ease-in-out infinite; }
  354. @keyframes rotate {
  355. 0% {
  356. transform: rotate(0deg); }
  357. 50% {
  358. transform: rotate(180deg); }
  359. 100% {
  360. transform: rotate(360deg); } }
  361. .ball-rotate {
  362. position: relative; }
  363. .ball-rotate > div {
  364. background-color: #55595c;
  365. width: 15px;
  366. height: 15px;
  367. border-radius: 100%;
  368. margin: 2px;
  369. animation-fill-mode: both;
  370. position: relative; }
  371. .ball-rotate > div:first-child {
  372. animation: rotate 1s 0s cubic-bezier(0.7, -0.13, 0.22, 0.86) infinite; }
  373. .ball-rotate > div:before, .ball-rotate > div:after {
  374. background-color: #55595c;
  375. width: 15px;
  376. height: 15px;
  377. border-radius: 100%;
  378. margin: 2px;
  379. content: "";
  380. position: absolute;
  381. opacity: 0.8; }
  382. .ball-rotate > div:before {
  383. top: 0px;
  384. left: -28px; }
  385. .ball-rotate > div:after {
  386. top: 0px;
  387. left: 25px; }
  388. @keyframes rotate {
  389. 0% {
  390. transform: rotate(0deg) scale(1); }
  391. 50% {
  392. transform: rotate(180deg) scale(0.6); }
  393. 100% {
  394. transform: rotate(360deg) scale(1); } }
  395. .ball-clip-rotate > div {
  396. background-color: #55595c;
  397. width: 15px;
  398. height: 15px;
  399. border-radius: 100%;
  400. margin: 2px;
  401. animation-fill-mode: both;
  402. border: 2px solid #55595c;
  403. border-bottom-color: transparent;
  404. height: 25px;
  405. width: 25px;
  406. background: transparent !important;
  407. display: inline-block;
  408. animation: rotate 0.75s 0s linear infinite; }
  409. @keyframes rotate {
  410. 0% {
  411. transform: rotate(0deg) scale(1); }
  412. 50% {
  413. transform: rotate(180deg) scale(0.6); }
  414. 100% {
  415. transform: rotate(360deg) scale(1); } }
  416. @keyframes scale {
  417. 30% {
  418. transform: scale(0.3); }
  419. 100% {
  420. transform: scale(1); } }
  421. .ball-clip-rotate-pulse {
  422. position: relative;
  423. transform: translateY(-15px); }
  424. .ball-clip-rotate-pulse > div {
  425. animation-fill-mode: both;
  426. position: absolute;
  427. top: 0px;
  428. left: 0px;
  429. border-radius: 100%; }
  430. .ball-clip-rotate-pulse > div:first-child {
  431. background: #55595c;
  432. height: 16px;
  433. width: 16px;
  434. top: 7px;
  435. left: -7px;
  436. animation: scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }
  437. .ball-clip-rotate-pulse > div:last-child {
  438. position: absolute;
  439. border: 2px solid #55595c;
  440. width: 30px;
  441. height: 30px;
  442. left: -16px;
  443. top: -2px;
  444. background: transparent;
  445. border: 2px solid;
  446. border-color: #55595c transparent #55595c transparent;
  447. animation: rotate 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
  448. animation-duration: 1s; }
  449. @keyframes rotate {
  450. 0% {
  451. transform: rotate(0deg) scale(1); }
  452. 50% {
  453. transform: rotate(180deg) scale(0.6); }
  454. 100% {
  455. transform: rotate(360deg) scale(1); } }
  456. .ball-clip-rotate-multiple {
  457. position: relative; }
  458. .ball-clip-rotate-multiple > div {
  459. animation-fill-mode: both;
  460. position: absolute;
  461. left: -20px;
  462. top: -20px;
  463. border: 2px solid #55595c;
  464. border-bottom-color: transparent;
  465. border-top-color: transparent;
  466. border-radius: 100%;
  467. height: 35px;
  468. width: 35px;
  469. animation: rotate 1s 0s ease-in-out infinite; }
  470. .ball-clip-rotate-multiple > div:last-child {
  471. display: inline-block;
  472. top: -10px;
  473. left: -10px;
  474. width: 15px;
  475. height: 15px;
  476. animation-duration: 0.5s;
  477. border-color: #55595c transparent #55595c transparent;
  478. animation-direction: reverse; }
  479. @keyframes ball-scale-ripple {
  480. 0% {
  481. transform: scale(0.1);
  482. opacity: 1; }
  483. 70% {
  484. transform: scale(1);
  485. opacity: 0.7; }
  486. 100% {
  487. opacity: 0.0; } }
  488. .ball-scale-ripple > div {
  489. animation-fill-mode: both;
  490. height: 50px;
  491. width: 50px;
  492. border-radius: 100%;
  493. border: 2px solid #55595c;
  494. animation: ball-scale-ripple 1s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }
  495. @keyframes ball-scale-ripple-multiple {
  496. 0% {
  497. transform: scale(0.1);
  498. opacity: 1; }
  499. 70% {
  500. transform: scale(1);
  501. opacity: 0.7; }
  502. 100% {
  503. opacity: 0.0; } }
  504. .ball-scale-ripple-multiple {
  505. position: relative;
  506. transform: translateY(-25px); }
  507. .ball-scale-ripple-multiple > div:nth-child(0) {
  508. animation-delay: -0.8s; }
  509. .ball-scale-ripple-multiple > div:nth-child(1) {
  510. animation-delay: -0.6s; }
  511. .ball-scale-ripple-multiple > div:nth-child(2) {
  512. animation-delay: -0.4s; }
  513. .ball-scale-ripple-multiple > div:nth-child(3) {
  514. animation-delay: -0.2s; }
  515. .ball-scale-ripple-multiple > div {
  516. animation-fill-mode: both;
  517. position: absolute;
  518. top: -2px;
  519. left: -26px;
  520. width: 50px;
  521. height: 50px;
  522. border-radius: 100%;
  523. border: 2px solid #55595c;
  524. animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(0.21, 0.53, 0.56, 0.8); }
  525. @keyframes ball-beat {
  526. 50% {
  527. opacity: 0.2;
  528. transform: scale(0.75); }
  529. 100% {
  530. opacity: 1;
  531. transform: scale(1); } }
  532. .ball-beat > div {
  533. background-color: #55595c;
  534. width: 15px;
  535. height: 15px;
  536. border-radius: 100%;
  537. margin: 2px;
  538. animation-fill-mode: both;
  539. display: inline-block;
  540. animation: ball-beat 0.7s 0s infinite linear; }
  541. .ball-beat > div:nth-child(2n-1) {
  542. animation-delay: -0.35s !important; }
  543. @keyframes ball-scale-multiple {
  544. 0% {
  545. transform: scale(0);
  546. opacity: 0; }
  547. 5% {
  548. opacity: 1; }
  549. 100% {
  550. transform: scale(1);
  551. opacity: 0; } }
  552. .ball-scale-multiple {
  553. position: relative; }
  554. .ball-scale-multiple > div:nth-child(2) {
  555. animation-delay: -0.4s; }
  556. .ball-scale-multiple > div:nth-child(3) {
  557. animation-delay: -0.2s; }
  558. .ball-scale-multiple > div {
  559. background-color: #55595c;
  560. width: 15px;
  561. height: 15px;
  562. border-radius: 100%;
  563. margin: 2px;
  564. animation-fill-mode: both;
  565. position: absolute;
  566. top: 0px;
  567. opacity: 0;
  568. margin: 0;
  569. width: 60px;
  570. height: 60px;
  571. animation: ball-scale-multiple 1s 0s linear infinite; }
  572. @keyframes ball-triangle-path-1 {
  573. 33% {
  574. transform: translate(25px, -50px); }
  575. 66% {
  576. transform: translate(50px, 0px); }
  577. 100% {
  578. transform: translate(0px, 0px); } }
  579. @keyframes ball-triangle-path-2 {
  580. 33% {
  581. transform: translate(25px, 50px); }
  582. 66% {
  583. transform: translate(-25px, 50px); }
  584. 100% {
  585. transform: translate(0px, 0px); } }
  586. @keyframes ball-triangle-path-3 {
  587. 33% {
  588. transform: translate(-50px, 0px); }
  589. 66% {
  590. transform: translate(-25px, -50px); }
  591. 100% {
  592. transform: translate(0px, 0px); } }
  593. .ball-triangle-path {
  594. position: relative;
  595. transform: translate(-29.994px, -37.50938px); }
  596. .ball-triangle-path > div:nth-child(1) {
  597. animation-name: ball-triangle-path-1;
  598. animation-delay: 0;
  599. animation-duration: 2s;
  600. animation-timing-function: ease-in-out;
  601. animation-iteration-count: infinite; }
  602. .ball-triangle-path > div:nth-child(2) {
  603. animation-name: ball-triangle-path-2;
  604. animation-delay: 0;
  605. animation-duration: 2s;
  606. animation-timing-function: ease-in-out;
  607. animation-iteration-count: infinite; }
  608. .ball-triangle-path > div:nth-child(3) {
  609. animation-name: ball-triangle-path-3;
  610. animation-delay: 0;
  611. animation-duration: 2s;
  612. animation-timing-function: ease-in-out;
  613. animation-iteration-count: infinite; }
  614. .ball-triangle-path > div {
  615. animation-fill-mode: both;
  616. position: absolute;
  617. width: 10px;
  618. height: 10px;
  619. border-radius: 100%;
  620. border: 1px solid #55595c; }
  621. .ball-triangle-path > div:nth-of-type(1) {
  622. top: 50px; }
  623. .ball-triangle-path > div:nth-of-type(2) {
  624. left: 25px; }
  625. .ball-triangle-path > div:nth-of-type(3) {
  626. top: 50px;
  627. left: 50px; }
  628. @keyframes ball-pulse-rise-even {
  629. 0% {
  630. transform: scale(1.1); }
  631. 25% {
  632. transform: translateY(-30px); }
  633. 50% {
  634. transform: scale(0.4); }
  635. 75% {
  636. transform: translateY(30px); }
  637. 100% {
  638. transform: translateY(0);
  639. transform: scale(1); } }
  640. @keyframes ball-pulse-rise-odd {
  641. 0% {
  642. transform: scale(0.4); }
  643. 25% {
  644. transform: translateY(30px); }
  645. 50% {
  646. transform: scale(1.1); }
  647. 75% {
  648. transform: translateY(-30px); }
  649. 100% {
  650. transform: translateY(0);
  651. transform: scale(0.75); } }
  652. .ball-pulse-rise > div {
  653. background-color: #55595c;
  654. width: 15px;
  655. height: 15px;
  656. border-radius: 100%;
  657. margin: 2px;
  658. animation-fill-mode: both;
  659. display: inline-block;
  660. animation-duration: 1s;
  661. animation-timing-function: cubic-bezier(0.15, 0.46, 0.9, 0.6);
  662. animation-iteration-count: infinite;
  663. animation-delay: 0; }
  664. .ball-pulse-rise > div:nth-child(2n) {
  665. animation-name: ball-pulse-rise-even; }
  666. .ball-pulse-rise > div:nth-child(2n-1) {
  667. animation-name: ball-pulse-rise-odd; }
  668. @keyframes ball-grid-beat {
  669. 50% {
  670. opacity: 0.7; }
  671. 100% {
  672. opacity: 1; } }
  673. .ball-grid-beat {
  674. width: 57px; }
  675. .ball-grid-beat > div:nth-child(1) {
  676. animation-delay: 0.77s;
  677. animation-duration: 1.27s; }
  678. .ball-grid-beat > div:nth-child(2) {
  679. animation-delay: -0.18s;
  680. animation-duration: 0.78s; }
  681. .ball-grid-beat > div:nth-child(3) {
  682. animation-delay: 0.72s;
  683. animation-duration: 0.95s; }
  684. .ball-grid-beat > div:nth-child(4) {
  685. animation-delay: 0.13s;
  686. animation-duration: 0.93s; }
  687. .ball-grid-beat > div:nth-child(5) {
  688. animation-delay: 0.47s;
  689. animation-duration: 1.12s; }
  690. .ball-grid-beat > div:nth-child(6) {
  691. animation-delay: 0.65s;
  692. animation-duration: 1.16s; }
  693. .ball-grid-beat > div:nth-child(7) {
  694. animation-delay: 0.59s;
  695. animation-duration: 0.72s; }
  696. .ball-grid-beat > div:nth-child(8) {
  697. animation-delay: -0.05s;
  698. animation-duration: 1.57s; }
  699. .ball-grid-beat > div:nth-child(9) {
  700. animation-delay: 0.14s;
  701. animation-duration: 1.19s; }
  702. .ball-grid-beat > div {
  703. background-color: #55595c;
  704. width: 15px;
  705. height: 15px;
  706. border-radius: 100%;
  707. margin: 2px;
  708. animation-fill-mode: both;
  709. display: inline-block;
  710. float: left;
  711. animation-name: ball-grid-beat;
  712. animation-iteration-count: infinite;
  713. animation-delay: 0; }
  714. @keyframes ball-grid-pulse {
  715. 0% {
  716. transform: scale(1); }
  717. 50% {
  718. transform: scale(0.5);
  719. opacity: 0.7; }
  720. 100% {
  721. transform: scale(1);
  722. opacity: 1; } }
  723. .ball-grid-pulse {
  724. width: 57px; }
  725. .ball-grid-pulse > div:nth-child(1) {
  726. animation-delay: -0.11s;
  727. animation-duration: 0.7s; }
  728. .ball-grid-pulse > div:nth-child(2) {
  729. animation-delay: 0.24s;
  730. animation-duration: 1.08s; }
  731. .ball-grid-pulse > div:nth-child(3) {
  732. animation-delay: 0.18s;
  733. animation-duration: 0.65s; }
  734. .ball-grid-pulse > div:nth-child(4) {
  735. animation-delay: 0.68s;
  736. animation-duration: 0.79s; }
  737. .ball-grid-pulse > div:nth-child(5) {
  738. animation-delay: 0.37s;
  739. animation-duration: 0.85s; }
  740. .ball-grid-pulse > div:nth-child(6) {
  741. animation-delay: 0.73s;
  742. animation-duration: 1.17s; }
  743. .ball-grid-pulse > div:nth-child(7) {
  744. animation-delay: 0.73s;
  745. animation-duration: 1.09s; }
  746. .ball-grid-pulse > div:nth-child(8) {
  747. animation-delay: 0.07s;
  748. animation-duration: 1.52s; }
  749. .ball-grid-pulse > div:nth-child(9) {
  750. animation-delay: 0.73s;
  751. animation-duration: 1.25s; }
  752. .ball-grid-pulse > div {
  753. background-color: #55595c;
  754. width: 15px;
  755. height: 15px;
  756. border-radius: 100%;
  757. margin: 2px;
  758. animation-fill-mode: both;
  759. display: inline-block;
  760. float: left;
  761. animation-name: ball-grid-pulse;
  762. animation-iteration-count: infinite;
  763. animation-delay: 0; }
  764. @keyframes ball-spin-fade-loader {
  765. 50% {
  766. opacity: 0.3;
  767. transform: scale(0.4); }
  768. 100% {
  769. opacity: 1;
  770. transform: scale(1); } }
  771. .ball-spin-fade-loader {
  772. position: relative;
  773. top: -10px;
  774. left: -10px; }
  775. .ball-spin-fade-loader > div:nth-child(1) {
  776. top: 25px;
  777. left: 0;
  778. animation: ball-spin-fade-loader 1s -0.96s infinite linear; }
  779. .ball-spin-fade-loader > div:nth-child(2) {
  780. top: 17.04545px;
  781. left: 17.04545px;
  782. animation: ball-spin-fade-loader 1s -0.84s infinite linear; }
  783. .ball-spin-fade-loader > div:nth-child(3) {
  784. top: 0;
  785. left: 25px;
  786. animation: ball-spin-fade-loader 1s -0.72s infinite linear; }
  787. .ball-spin-fade-loader > div:nth-child(4) {
  788. top: -17.04545px;
  789. left: 17.04545px;
  790. animation: ball-spin-fade-loader 1s -0.6s infinite linear; }
  791. .ball-spin-fade-loader > div:nth-child(5) {
  792. top: -25px;
  793. left: 0;
  794. animation: ball-spin-fade-loader 1s -0.48s infinite linear; }
  795. .ball-spin-fade-loader > div:nth-child(6) {
  796. top: -17.04545px;
  797. left: -17.04545px;
  798. animation: ball-spin-fade-loader 1s -0.36s infinite linear; }
  799. .ball-spin-fade-loader > div:nth-child(7) {
  800. top: 0;
  801. left: -25px;
  802. animation: ball-spin-fade-loader 1s -0.24s infinite linear; }
  803. .ball-spin-fade-loader > div:nth-child(8) {
  804. top: 17.04545px;
  805. left: -17.04545px;
  806. animation: ball-spin-fade-loader 1s -0.12s infinite linear; }
  807. .ball-spin-fade-loader > div {
  808. background-color: #55595c;
  809. width: 15px;
  810. height: 15px;
  811. border-radius: 100%;
  812. margin: 2px;
  813. animation-fill-mode: both;
  814. position: absolute; }
  815. @keyframes ball-spin-loader {
  816. 75% {
  817. opacity: 0.2; }
  818. 100% {
  819. opacity: 1; } }
  820. .ball-spin-loader {
  821. position: relative; }
  822. .ball-spin-loader > span:nth-child(1) {
  823. top: 45px;
  824. left: 0;
  825. animation: ball-spin-loader 2s 0.9s infinite linear; }
  826. .ball-spin-loader > span:nth-child(2) {
  827. top: 30.68182px;
  828. left: 30.68182px;
  829. animation: ball-spin-loader 2s 1.8s infinite linear; }
  830. .ball-spin-loader > span:nth-child(3) {
  831. top: 0;
  832. left: 45px;
  833. animation: ball-spin-loader 2s 2.7s infinite linear; }
  834. .ball-spin-loader > span:nth-child(4) {
  835. top: -30.68182px;
  836. left: 30.68182px;
  837. animation: ball-spin-loader 2s 3.6s infinite linear; }
  838. .ball-spin-loader > span:nth-child(5) {
  839. top: -45px;
  840. left: 0;
  841. animation: ball-spin-loader 2s 4.5s infinite linear; }
  842. .ball-spin-loader > span:nth-child(6) {
  843. top: -30.68182px;
  844. left: -30.68182px;
  845. animation: ball-spin-loader 2s 5.4s infinite linear; }
  846. .ball-spin-loader > span:nth-child(7) {
  847. top: 0;
  848. left: -45px;
  849. animation: ball-spin-loader 2s 6.3s infinite linear; }
  850. .ball-spin-loader > span:nth-child(8) {
  851. top: 30.68182px;
  852. left: -30.68182px;
  853. animation: ball-spin-loader 2s 7.2s infinite linear; }
  854. .ball-spin-loader > div {
  855. animation-fill-mode: both;
  856. position: absolute;
  857. width: 15px;
  858. height: 15px;
  859. border-radius: 100%;
  860. background: green; }
  861. @keyframes ball-zig {
  862. 33% {
  863. transform: translate(-15px, -30px); }
  864. 66% {
  865. transform: translate(15px, -30px); }
  866. 100% {
  867. transform: translate(0, 0); } }
  868. @keyframes ball-zag {
  869. 33% {
  870. transform: translate(15px, 30px); }
  871. 66% {
  872. transform: translate(-15px, 30px); }
  873. 100% {
  874. transform: translate(0, 0); } }
  875. .ball-zig-zag {
  876. position: relative;
  877. transform: translate(-15px, -15px); }
  878. .ball-zig-zag > div {
  879. background-color: #55595c;
  880. width: 15px;
  881. height: 15px;
  882. border-radius: 100%;
  883. margin: 2px;
  884. animation-fill-mode: both;
  885. position: absolute;
  886. margin-left: 15px;
  887. top: 4px;
  888. left: -7px; }
  889. .ball-zig-zag > div:first-child {
  890. animation: ball-zig 0.7s 0s infinite linear; }
  891. .ball-zig-zag > div:last-child {
  892. animation: ball-zag 0.7s 0s infinite linear; }
  893. @keyframes ball-zig-deflect {
  894. 17% {
  895. transform: translate(-15px, -30px); }
  896. 34% {
  897. transform: translate(15px, -30px); }
  898. 50% {
  899. transform: translate(0, 0); }
  900. 67% {
  901. transform: translate(15px, -30px); }
  902. 84% {
  903. transform: translate(-15px, -30px); }
  904. 100% {
  905. transform: translate(0, 0); } }
  906. @keyframes ball-zag-deflect {
  907. 17% {
  908. transform: translate(15px, 30px); }
  909. 34% {
  910. transform: translate(-15px, 30px); }
  911. 50% {
  912. transform: translate(0, 0); }
  913. 67% {
  914. transform: translate(-15px, 30px); }
  915. 84% {
  916. transform: translate(15px, 30px); }
  917. 100% {
  918. transform: translate(0, 0); } }
  919. .ball-zig-zag-deflect {
  920. position: relative;
  921. transform: translate(-15px, -15px); }
  922. .ball-zig-zag-deflect > div {
  923. background-color: #55595c;
  924. width: 15px;
  925. height: 15px;
  926. border-radius: 100%;
  927. margin: 2px;
  928. animation-fill-mode: both;
  929. position: absolute;
  930. margin-left: 15px;
  931. top: 4px;
  932. left: -7px; }
  933. .ball-zig-zag-deflect > div:first-child {
  934. animation: ball-zig-deflect 1.5s 0s infinite linear; }
  935. .ball-zig-zag-deflect > div:last-child {
  936. animation: ball-zag-deflect 1.5s 0s infinite linear; }
  937. /**
  938. * Lines
  939. */
  940. @keyframes line-scale {
  941. 0% {
  942. transform: scaley(1); }
  943. 50% {
  944. transform: scaley(0.4); }
  945. 100% {
  946. transform: scaley(1); } }
  947. .line-scale > div:nth-child(1) {
  948. animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  949. .line-scale > div:nth-child(2) {
  950. animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  951. .line-scale > div:nth-child(3) {
  952. animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  953. .line-scale > div:nth-child(4) {
  954. animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  955. .line-scale > div:nth-child(5) {
  956. animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }
  957. .line-scale > div {
  958. background-color: #55595c;
  959. width: 4px;
  960. height: 3.45rem;
  961. border-radius: 2px;
  962. margin: 2px;
  963. animation-fill-mode: both;
  964. display: inline-block; }
  965. @keyframes line-scale-party {
  966. 0% {
  967. transform: scale(1); }
  968. 50% {
  969. transform: scale(0.5); }
  970. 100% {
  971. transform: scale(1); } }
  972. .line-scale-party > div:nth-child(1) {
  973. animation-delay: 0.61s;
  974. animation-duration: 1.27s; }
  975. .line-scale-party > div:nth-child(2) {
  976. animation-delay: -0.15s;
  977. animation-duration: 0.84s; }
  978. .line-scale-party > div:nth-child(3) {
  979. animation-delay: -0.13s;
  980. animation-duration: 0.65s; }
  981. .line-scale-party > div:nth-child(4) {
  982. animation-delay: 0.33s;
  983. animation-duration: 0.72s; }
  984. .line-scale-party > div {
  985. background-color: #55595c;
  986. width: 4px;
  987. height: 3.45rem;
  988. border-radius: 2px;
  989. margin: 2px;
  990. animation-fill-mode: both;
  991. display: inline-block;
  992. animation-name: line-scale-party;
  993. animation-iteration-count: infinite;
  994. animation-delay: 0; }
  995. @keyframes line-scale-pulse-out {
  996. 0% {
  997. transform: scaley(1); }
  998. 50% {
  999. transform: scaley(0.4); }
  1000. 100% {
  1001. transform: scaley(1); } }
  1002. .line-scale-pulse-out > div {
  1003. background-color: #55595c;
  1004. width: 4px;
  1005. height: 3.45rem;
  1006. border-radius: 2px;
  1007. margin: 2px;
  1008. animation-fill-mode: both;
  1009. display: inline-block;
  1010. animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85); }
  1011. .line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4) {
  1012. animation-delay: -0.4s !important; }
  1013. .line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5) {
  1014. animation-delay: -0.2s !important; }
  1015. @keyframes line-scale-pulse-out-rapid {
  1016. 0% {
  1017. transform: scaley(1); }
  1018. 80% {
  1019. transform: scaley(0.3); }
  1020. 90% {
  1021. transform: scaley(1); } }
  1022. .line-scale-pulse-out-rapid > div {
  1023. background-color: #55595c;
  1024. width: 4px;
  1025. height: 3.45rem;
  1026. border-radius: 2px;
  1027. margin: 2px;
  1028. animation-fill-mode: both;
  1029. display: inline-block;
  1030. vertical-align: middle;
  1031. animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); }
  1032. .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
  1033. animation-delay: -0.25s !important; }
  1034. .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
  1035. animation-delay: 0s !important; }
  1036. @keyframes line-spin-fade-loader {
  1037. 50% {
  1038. opacity: 0.3; }
  1039. 100% {
  1040. opacity: 1; } }
  1041. .line-spin-fade-loader {
  1042. position: relative;
  1043. top: -10px;
  1044. left: -4px; }
  1045. .line-spin-fade-loader > div:nth-child(1) {
  1046. top: 20px;
  1047. left: 0;
  1048. animation: line-spin-fade-loader 1.2s -0.84s infinite ease-in-out; }
  1049. .line-spin-fade-loader > div:nth-child(2) {
  1050. top: 13.63636px;
  1051. left: 13.63636px;
  1052. transform: rotate(-45deg);
  1053. animation: line-spin-fade-loader 1.2s -0.72s infinite ease-in-out; }
  1054. .line-spin-fade-loader > div:nth-child(3) {
  1055. top: 0;
  1056. left: 20px;
  1057. transform: rotate(90deg);
  1058. animation: line-spin-fade-loader 1.2s -0.6s infinite ease-in-out; }
  1059. .line-spin-fade-loader > div:nth-child(4) {
  1060. top: -13.63636px;
  1061. left: 13.63636px;
  1062. transform: rotate(45deg);
  1063. animation: line-spin-fade-loader 1.2s -0.48s infinite ease-in-out; }
  1064. .line-spin-fade-loader > div:nth-child(5) {
  1065. top: -20px;
  1066. left: 0;
  1067. animation: line-spin-fade-loader 1.2s -0.36s infinite ease-in-out; }
  1068. .line-spin-fade-loader > div:nth-child(6) {
  1069. top: -13.63636px;
  1070. left: -13.63636px;
  1071. transform: rotate(-45deg);
  1072. animation: line-spin-fade-loader 1.2s -0.24s infinite ease-in-out; }
  1073. .line-spin-fade-loader > div:nth-child(7) {
  1074. top: 0;
  1075. left: -20px;
  1076. transform: rotate(90deg);
  1077. animation: line-spin-fade-loader 1.2s -0.12s infinite ease-in-out; }
  1078. .line-spin-fade-loader > div:nth-child(8) {
  1079. top: 13.63636px;
  1080. left: -13.63636px;
  1081. transform: rotate(45deg);
  1082. animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out; }
  1083. .line-spin-fade-loader > div {
  1084. background-color: #55595c;
  1085. width: 4px;
  1086. height: 3.45rem;
  1087. border-radius: 2px;
  1088. margin: 2px;
  1089. animation-fill-mode: both;
  1090. position: absolute;
  1091. width: 5px;
  1092. height: 15px; }
  1093. /**
  1094. * Misc
  1095. */
  1096. @keyframes triangle-skew-spin {
  1097. 25% {
  1098. transform: perspective(100px) rotateX(180deg) rotateY(0); }
  1099. 50% {
  1100. transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  1101. 75% {
  1102. transform: perspective(100px) rotateX(0) rotateY(180deg); }
  1103. 100% {
  1104. transform: perspective(100px) rotateX(0) rotateY(0); } }
  1105. .triangle-skew-spin > div {
  1106. animation-fill-mode: both;
  1107. width: 0;
  1108. height: 0;
  1109. border-left: 20px solid transparent;
  1110. border-right: 20px solid transparent;
  1111. border-bottom: 20px solid #55595c;
  1112. animation: triangle-skew-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }
  1113. @keyframes square-spin {
  1114. 25% {
  1115. transform: perspective(100px) rotateX(180deg) rotateY(0); }
  1116. 50% {
  1117. transform: perspective(100px) rotateX(180deg) rotateY(180deg); }
  1118. 75% {
  1119. transform: perspective(100px) rotateX(0) rotateY(180deg); }
  1120. 100% {
  1121. transform: perspective(100px) rotateX(0) rotateY(0); } }
  1122. .square-spin > div {
  1123. animation-fill-mode: both;
  1124. width: 50px;
  1125. height: 50px;
  1126. background: #55595c;
  1127. animation: square-spin 3s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite; }
  1128. @keyframes rotate_pacman_half_up {
  1129. 0% {
  1130. transform: rotate(270deg); }
  1131. 50% {
  1132. transform: rotate(360deg); }
  1133. 100% {
  1134. transform: rotate(270deg); } }
  1135. @keyframes rotate_pacman_half_down {
  1136. 0% {
  1137. transform: rotate(90deg); }
  1138. 50% {
  1139. transform: rotate(0deg); }
  1140. 100% {
  1141. transform: rotate(90deg); } }
  1142. @keyframes pacman-balls {
  1143. 75% {
  1144. opacity: 0.7; }
  1145. 100% {
  1146. transform: translate(-100px, -6.25px); } }
  1147. .pacman {
  1148. position: relative; }
  1149. .pacman > div:nth-child(2) {
  1150. animation: pacman-balls 1s -0.99s infinite linear; }
  1151. .pacman > div:nth-child(3) {
  1152. animation: pacman-balls 1s -0.66s infinite linear; }
  1153. .pacman > div:nth-child(4) {
  1154. animation: pacman-balls 1s -0.33s infinite linear; }
  1155. .pacman > div:nth-child(5) {
  1156. animation: pacman-balls 1s 0s infinite linear; }
  1157. .pacman > div:first-of-type {
  1158. width: 0px;
  1159. height: 0px;
  1160. border-right: 25px solid transparent;
  1161. border-top: 25px solid #55595c;
  1162. border-left: 25px solid #55595c;
  1163. border-bottom: 25px solid #55595c;
  1164. border-radius: 25px;
  1165. animation: rotate_pacman_half_up 0.5s 0s infinite;
  1166. position: relative;
  1167. left: -30px; }
  1168. .pacman > div:nth-child(2) {
  1169. width: 0px;
  1170. height: 0px;
  1171. border-right: 25px solid transparent;
  1172. border-top: 25px solid #55595c;
  1173. border-left: 25px solid #55595c;
  1174. border-bottom: 25px solid #55595c;
  1175. border-radius: 25px;
  1176. animation: rotate_pacman_half_down 0.5s 0s infinite;
  1177. margin-top: -50px;
  1178. position: relative;
  1179. left: -30px; }
  1180. .pacman > div:nth-child(3),
  1181. .pacman > div:nth-child(4),
  1182. .pacman > div:nth-child(5),
  1183. .pacman > div:nth-child(6) {
  1184. background-color: #55595c;
  1185. width: 15px;
  1186. height: 15px;
  1187. border-radius: 100%;
  1188. margin: 2px;
  1189. width: 10px;
  1190. height: 10px;
  1191. position: absolute;
  1192. transform: translate(0, -6.25px);
  1193. top: 25px;
  1194. left: 70px; }
  1195. @keyframes cube-transition {
  1196. 25% {
  1197. transform: translateX(50px) scale(0.5) rotate(-90deg); }
  1198. 50% {
  1199. transform: translate(50px, 50px) rotate(-180deg); }
  1200. 75% {
  1201. transform: translateY(50px) scale(0.5) rotate(-270deg); }
  1202. 100% {
  1203. transform: rotate(-360deg); } }
  1204. .cube-transition {
  1205. position: relative;
  1206. transform: translate(-25px, -25px); }
  1207. .cube-transition > div {
  1208. animation-fill-mode: both;
  1209. width: 10px;
  1210. height: 10px;
  1211. position: absolute;
  1212. top: -5px;
  1213. left: -5px;
  1214. background-color: #55595c;
  1215. animation: cube-transition 1.6s 0s infinite ease-in-out; }
  1216. .cube-transition > div:last-child {
  1217. animation-delay: -0.8s; }
  1218. @keyframes spin-rotate {
  1219. 0% {
  1220. transform: rotate(0deg); }
  1221. 50% {
  1222. transform: rotate(180deg); }
  1223. 100% {
  1224. transform: rotate(360deg); } }
  1225. .semi-circle-spin {
  1226. position: relative;
  1227. width: 35px;
  1228. height: 35px;
  1229. overflow: hidden; }
  1230. .semi-circle-spin > div {
  1231. position: absolute;
  1232. border-width: 0px;
  1233. border-radius: 100%;
  1234. animation: spin-rotate 0.6s 0s infinite linear;
  1235. background-image: linear-gradient(transparent 0%, transparent 70%, #55595c 30%, #55595c 100%);
  1236. width: 100%;
  1237. height: 100%; }
  1238. .loader-wrapper {
  1239. position: relative; }
  1240. .loader-container {
  1241. margin: 0;
  1242. position: absolute;
  1243. top: 50%;
  1244. left: 50%;
  1245. margin-right: -50%;
  1246. transform: translate(-50%, -50%); }
  1247. #preloader-wrapper {
  1248. position: fixed;
  1249. top: 0;
  1250. left: 0;
  1251. width: 100%;
  1252. height: 100%;
  1253. z-index: 1050; }
  1254. #preloader-wrapper .loader-section {
  1255. position: fixed;
  1256. width: 100%;
  1257. height: 51%;
  1258. background: #222222;
  1259. z-index: 1050; }
  1260. #preloader-wrapper .loader-section.section-top {
  1261. top: 0; }
  1262. #preloader-wrapper .loader-section.section-bottom {
  1263. bottom: 0; }
  1264. #loader {
  1265. display: block;
  1266. position: absolute;
  1267. left: 50%;
  1268. top: 50%;
  1269. width: 60px;
  1270. height: 60px;
  1271. margin-right: -50%;
  1272. transform: translate(-50%, -50%);
  1273. z-index: 1051;
  1274. /* anything higher than z-index: 1000 of .loader-section */ }
  1275. /* Loaded */
  1276. .loaded #preloader-wrapper .loader-section.section-top {
  1277. -webkit-transform: translateY(-100%);
  1278. /* Chrome, Opera 15+, Safari 3.1+ */
  1279. -ms-transform: translateY(-100%);
  1280. /* IE 9 */
  1281. transform: translateY(-100%);
  1282. /* Firefox 16+, IE 10+, Opera */ }
  1283. .loaded #preloader-wrapper .loader-section.section-bottom {
  1284. -webkit-transform: translateY(100%);
  1285. /* Chrome, Opera 15+, Safari 3.1+ */
  1286. -ms-transform: translateY(100%);
  1287. /* IE 9 */
  1288. transform: translateY(100%);
  1289. /* Firefox 16+, IE 10+, Opera */ }
  1290. .loaded #loader {
  1291. opacity: 0; }
  1292. .loaded #preloader-wrapper {
  1293. visibility: hidden; }
  1294. .loaded #loader {
  1295. opacity: 0;
  1296. -webkit-transition: all 0.3s ease-out;
  1297. transition: all 0.3s ease-out; }
  1298. .loaded #preloader-wrapper .loader-section.section-bottom,
  1299. .loaded #preloader-wrapper .loader-section.section-top {
  1300. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  1301. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }