ns-style-other.css 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. .notification-shape {
  2. position: fixed;
  3. z-index: 1500;
  4. }
  5. .notification-shape svg {
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. width: 100%;
  10. height: 100%;
  11. }
  12. [class^="ns-effect-"].ns-other.ns-hide,
  13. [class*=" ns-effect-"].ns-other.ns-hide {
  14. -webkit-animation-direction: reverse;
  15. animation-direction: reverse;
  16. }
  17. /* Individual Effects */
  18. /* Expand SVG corner */
  19. .ns-effect-cornerexpand {
  20. width: 200px;
  21. min-height: 200px;
  22. background: #5a7d98;
  23. text-align: center;
  24. position: relative;
  25. z-index: 100;
  26. }
  27. .shape-box {
  28. top: 0;
  29. right: 0;
  30. width: 200px;
  31. min-height: 200px;
  32. }
  33. .shape-box path {
  34. fill: #3b5163;
  35. }
  36. .ns-effect-cornerexpand .icon {
  37. color: #5a7d98;
  38. background: #fff;
  39. display: block;
  40. width: 4em;
  41. height: 4em;
  42. line-height: 5.3;
  43. margin: 0.5em auto 1.25em;
  44. border-radius: 50%;
  45. }
  46. .ns-effect-cornerexpand .ns-close {
  47. top: 15px;
  48. right: 15px;
  49. }
  50. .ns-effect-cornerexpand .ns-close::before,
  51. .ns-effect-cornerexpand .ns-close::after {
  52. background: #3b5163;
  53. }
  54. .ns-effect-cornerexpand .ns-close:hover::before,
  55. .ns-effect-cornerexpand .ns-close:hover::after {
  56. background: #fff;
  57. }
  58. .ns-effect-cornerexpand a {
  59. color: #3b5163;
  60. opacity: 1;
  61. }
  62. .ns-effect-cornerexpand a:hover,
  63. .ns-effect-cornerexpand a:focus {
  64. color: #fff;
  65. }
  66. .ns-effect-cornerexpand.ns-show,
  67. .ns-effect-cornerexpand.ns-hide {
  68. -webkit-animation-name: animScale;
  69. animation-name: animScale;
  70. -webkit-animation-duration: 0.3s;
  71. animation-duration: 0.3s;
  72. }
  73. .ns-effect-cornerexpand.ns-show {
  74. opacity: 0;
  75. -webkit-animation-fill-mode: both;
  76. animation-fill-mode: both;
  77. -webkit-animation-delay: 0.2s;
  78. animation-delay: 0.2s;
  79. }
  80. @-webkit-keyframes animScale {
  81. 0% { opacity: 0; -webkit-transform: scale3d(0.4,0.4,1); }
  82. 100% { opacity: 1; -webkit-transform: scale3d(1,1,1); }
  83. }
  84. @keyframes animScale {
  85. 0% { opacity: 0; -webkit-transform: scale3d(0.4,0.4,1); transform: scale3d(0.4,0.4,1); }
  86. 100% { opacity: 1; -webkit-transform: scale3d(1,1,1); transform: scale3d(1,1,1); }
  87. }
  88. /* SVG Windshield Wiper */
  89. .ns-effect-loadingcircle {
  90. width: 250px;
  91. height: 70px;
  92. border: 5px solid #fff;
  93. border-radius: 40px;
  94. background: #fff;
  95. font-weight: 700;
  96. padding: 0.75em 1.5em 0;
  97. position: relative;
  98. z-index: 100;
  99. }
  100. .ns-effect-loadingcircle .ns-close {
  101. border: 2px solid #ddd;
  102. border-radius: 50%;
  103. top: 50%;
  104. right: 15px;
  105. -webkit-transform: translate3d(0,-50%,0);
  106. transform: translate3d(0,-50%,0);
  107. }
  108. .ns-effect-loadingcircle .ns-close::before,
  109. .ns-effect-loadingcircle .ns-close::after {
  110. background: #ddd;
  111. }
  112. .ns-effect-loadingcircle .ns-close:hover::before,
  113. .ns-effect-loadingcircle .ns-close:hover::after {
  114. background: #72BF7B;
  115. }
  116. .ns-effect-loadingcircle .ns-box-inner {
  117. color: #72BF7B;
  118. }
  119. .shape-progress {
  120. bottom: 40px;
  121. left: 40px;
  122. }
  123. .shape-progress svg {
  124. width: 70px;
  125. height: 70px;
  126. left: 0;
  127. top: 0;
  128. z-index: 100;
  129. }
  130. .shape-progress path {
  131. fill: none;
  132. stroke: #fff;
  133. stroke-width: 5;
  134. stroke-dasharray: 204;
  135. stroke-dashoffset: 204;
  136. opacity: 0;
  137. }
  138. .ns-effect-loadingcircle.ns-show + svg path {
  139. -webkit-animation: animDash 3s;
  140. animation: animDash 3s;
  141. }
  142. @-webkit-keyframes animDash {
  143. 0% { opacity: 1; stroke-dashoffset: 204; }
  144. 33% { stroke-dashoffset: 160; }
  145. 50% { stroke-dashoffset: 150; }
  146. 85% { stroke-dashoffset: 30; }
  147. 100% { opacity: 1; stroke-dashoffset: 0; }
  148. }
  149. @keyframes animDash {
  150. 0% { opacity: 1; stroke-dashoffset: 204; }
  151. 33% { stroke-dashoffset: 160; }
  152. 50% { stroke-dashoffset: 150; }
  153. 85% { stroke-dashoffset: 30; }
  154. 100% { opacity: 1; stroke-dashoffset: 0; }
  155. }
  156. .ns-effect-loadingcircle.ns-show {
  157. opacity: 0;
  158. -webkit-animation-name: animResize;
  159. animation-name: animResize;
  160. -webkit-animation-duration: 0.3s;
  161. animation-duration: 0.3s;
  162. -webkit-animation-fill-mode: forwards;
  163. animation-fill-mode: forwards;
  164. -webkit-animation-delay: 3s;
  165. animation-delay: 3s;
  166. -webkit-animation-timing-function: cubic-bezier(0.25, 0.25, 0.4, 1.6);
  167. animation-timing-function: cubic-bezier(0.25, 0.25, 0.4, 1.6);
  168. }
  169. @-webkit-keyframes animResize {
  170. 0% { opacity: 1; width: 70px; background: transparent; }
  171. 100% { opacity: 1; width: 250px; background: #fff; }
  172. }
  173. @keyframes animResize {
  174. 0% { opacity: 1; width: 70px; background: transparent; }
  175. 100% { opacity: 1; width: 250px; background: #fff; }
  176. }
  177. .ns-effect-loadingcircle.ns-show .ns-box-inner,
  178. .ns-effect-loadingcircle.ns-show .ns-close,
  179. .ns-effect-loadingcircle.ns-hide {
  180. -webkit-animation-name: animFade;
  181. animation-name: animFade;
  182. -webkit-animation-duration: 0.3s;
  183. animation-duration: 0.3s;
  184. }
  185. .ns-effect-loadingcircle.ns-show .ns-box-inner,
  186. .ns-effect-loadingcircle.ns-show .ns-close {
  187. opacity: 0;
  188. -webkit-animation-fill-mode: both;
  189. animation-fill-mode: both;
  190. -webkit-animation-delay: 3.3s;
  191. animation-delay: 3.3s;
  192. }
  193. .ns-effect-loadingcircle.ns-hide {
  194. opacity: 1;
  195. }
  196. @-webkit-keyframes animFade {
  197. 0% { opacity: 0; }
  198. 100% { opacity: 1; }
  199. }
  200. @keyframes animFade {
  201. 0% { opacity: 0; }
  202. 100% { opacity: 1; }
  203. }
  204. /* Box spinner (from http://tobiasahlin.com/spinkit/) */
  205. .ns-effect-boxspinner {
  206. width: 250px;
  207. height: 90px;
  208. top: 30px;
  209. right: 30px;
  210. background: #5699bc;
  211. font-weight: 700;
  212. border-radius: 5px;
  213. outline: 1px solid transparent;
  214. }
  215. .ns-effect-boxspinner .ns-close::before,
  216. .ns-effect-boxspinner .ns-close::after {
  217. background: #27546c;
  218. }
  219. .ns-effect-boxspinner .ns-close:hover::before,
  220. .ns-effect-boxspinner .ns-close:hover::after {
  221. background: #fff;
  222. }
  223. .ns-effect-boxspinner a {
  224. color: #27546c;
  225. }
  226. .ns-effect-boxspinner a:hover {
  227. color: #fff;
  228. }
  229. .ns-effect-boxspinner .ns-box-inner,
  230. .ns-effect-boxspinner .ns-close {
  231. opacity: 0;
  232. }
  233. .ns-effect-boxspinner.ns-show {
  234. -webkit-animation-name: animFade, animSpin, animExpand;
  235. animation-name: animFade, animSpin, animExpand;
  236. -webkit-animation-duration: 0.9s, 1.2s, 0.3s;
  237. animation-duration: 0.9s, 1.2s, 0.3s;
  238. -webkit-animation-delay: 0s, 0s, 2.4s;
  239. animation-delay: 0s, 0s, 2.4s;
  240. -webkit-animation-iteration-count: 1, 2, 1;
  241. animation-iteration-count: 1, 2, 1;
  242. -webkit-animation-timing-function: ease-in-out, ease, cubic-bezier(0.7,0,0.3,1);
  243. animation-timing-function: ease-in-out, ease, cubic-bezier(0.7,0,0.3,1);
  244. -webkit-animation-fill-mode: forwards, forwards, both;
  245. animation-fill-mode: forwards, forwards, both;
  246. }
  247. @-webkit-keyframes animSpin {
  248. 0% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); width: 70px; height: 70px; }
  249. 50% { -webkit-transform: perspective(120px) rotateY(180deg); }
  250. 100% { -webkit-transform: perspective(120px); width: 70px; height: 70px; }
  251. }
  252. @keyframes animSpin {
  253. 0% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg); transform: perspective(120px) rotateY(181deg) rotateX(181deg); width: 70px; height: 70px;}
  254. 50% { -webkit-transform: perspective(120px) rotateY(180deg); transform: perspective(120px) rotateY(181deg); }
  255. 100% { -webkit-transform: perspective(120px); transform: perspective(120px); width: 70px; height: 70px; }
  256. }
  257. @-webkit-keyframes animExpand {
  258. 0% { width: 70px; height: 70px; }
  259. 100% { width: 250px; height: 90px; }
  260. }
  261. @keyframes animExpand {
  262. 0% { width: 70px; height: 70px; }
  263. 100% { width: 250px; height: 90px; }
  264. }
  265. .ns-effect-boxspinner .ns-box-inner {
  266. backface-visibility: hidden;
  267. }
  268. .ns-effect-boxspinner.ns-show .ns-box-inner,
  269. .ns-effect-boxspinner.ns-show .ns-close,
  270. .ns-effect-boxspinner.ns-hide {
  271. -webkit-animation-name: animFade;
  272. animation-name: animFade;
  273. -webkit-animation-duration: 0.3s;
  274. animation-duration: 0.3s;
  275. }
  276. .ns-effect-boxspinner.ns-show .ns-box-inner,
  277. .ns-effect-boxspinner.ns-show .ns-close {
  278. opacity: 0;
  279. -webkit-animation-fill-mode: both;
  280. animation-fill-mode: both;
  281. -webkit-animation-delay: 2.75s;
  282. animation-delay: 2.75s;
  283. }
  284. .ns-effect-boxspinner.ns-hide {
  285. opacity: 1;
  286. }
  287. /* Thumb slider */
  288. .ns-effect-thumbslider {
  289. background: transparent;
  290. right: 30px;
  291. }
  292. .ns-effect-thumbslider .ns-close {
  293. top: 1.8em;
  294. right: 1.8em;
  295. }
  296. .ns-effect-thumbslider.ns-show .ns-close,
  297. .ns-effect-thumbslider.ns-hide .ns-close,
  298. .ns-effect-thumbslider.ns-show .ns-content p,
  299. .ns-effect-thumbslider.ns-hide .ns-content p {
  300. -webkit-animation-name: animFade;
  301. animation-name: animFade;
  302. -webkit-animation-duration: 0.3s;
  303. animation-duration: 0.3s;
  304. -webkit-animation-fill-mode: forwards;
  305. animation-fill-mode: forwards;
  306. opacity: 0;
  307. }
  308. .ns-effect-thumbslider.ns-show .ns-close,
  309. .ns-effect-thumbslider.ns-show .ns-content p {
  310. -webkit-animation-delay: 0.8s;
  311. animation-delay: 0.8s;
  312. }
  313. .ns-effect-thumbslider.ns-hide .ns-close,
  314. .ns-effect-thumbslider.ns-hide .ns-content p {
  315. -webkit-animation-direction: reverse;
  316. animation-direction: reverse;
  317. }
  318. .ns-effect-thumbslider .ns-close::before,
  319. .ns-effect-thumbslider .ns-close::after {
  320. background: #ddd;
  321. width: 2px;
  322. }
  323. .ns-effect-thumbslider .ns-close:hover::before,
  324. .ns-effect-thumbslider .ns-close:hover::after {
  325. background: #aaa;
  326. }
  327. .ns-effect-thumbslider .ns-box-inner {
  328. overflow: hidden;
  329. }
  330. .ns-effect-thumbslider .ns-thumb {
  331. position: absolute;
  332. z-index: 100;
  333. overflow: hidden;
  334. }
  335. .ns-effect-thumbslider .ns-content {
  336. background: #fff;
  337. color: #727275;
  338. font-weight: bold;
  339. padding: 0 40px 0 80px;
  340. height: 64px;
  341. line-height: 60px;
  342. }
  343. .ns-effect-thumbslider.ns-show .ns-content,
  344. .ns-effect-thumbslider.ns-hide .ns-content {
  345. -webkit-animation-name: animSlide;
  346. animation-name: animSlide;
  347. -webkit-animation-duration: 0.4s;
  348. animation-duration: 0.4s;
  349. -webkit-animation-fill-mode: both;
  350. animation-fill-mode: both;
  351. -webkit-animation-timing-function: cubic-bezier(0.7,0,0.3,1);
  352. animation-timing-function: cubic-bezier(0.7,0,0.3,1);
  353. }
  354. .ns-effect-thumbslider.ns-show .ns-content {
  355. -webkit-animation-delay: 0.5s;
  356. animation-delay: 0.5s;
  357. }
  358. .ns-effect-thumbslider.ns-hide .ns-content {
  359. -webkit-animation-direction: reverse;
  360. animation-direction: reverse;
  361. -webkit-animation-delay: 0.3s;
  362. animation-delay: 0.3s;
  363. }
  364. @-webkit-keyframes animSlide {
  365. 0% { -webkit-transform: translate3d(-100%,0,0); }
  366. 100% { -webkit-transform: translate3d(0,0,0);}
  367. }
  368. @keyframes animSlide {
  369. 0% { -webkit-transform: translate3d(-100%,0,0); transform: translate3d(-100%,0,0); }
  370. 100% { -webkit-transform: translate3d(0,0,0); transform: translate3d(0,0,0); }
  371. }
  372. .ns-effect-thumbslider.ns-show .ns-thumb,
  373. .ns-effect-thumbslider.ns-hide .ns-thumb {
  374. -webkit-animation-name: animJelly;
  375. animation-name: animJelly;
  376. -webkit-animation-duration: 1s;
  377. animation-duration: 1s;
  378. -webkit-animation-timing-function: linear;
  379. animation-timing-function: linear;
  380. -webkit-animation-fill-mode: both;
  381. animation-fill-mode: both;
  382. }
  383. .ns-effect-thumbslider.ns-hide .ns-thumb {
  384. -webkit-animation-direction: reverse;
  385. animation-direction: reverse;
  386. -webkit-animation-delay: 0.3s;
  387. animation-delay: 0.3s;
  388. }
  389. /* Generated with Bounce.js. Edit at http://goo.gl/6iLZu5 */
  390. @-webkit-keyframes animJelly {
  391. 0% { opacity: 0; -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  392. 2.083333% { -webkit-transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  393. 4.166667% { -webkit-transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  394. 6.25% { -webkit-transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  395. 8.333333% { -webkit-transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  396. 10.416667% { opacity: 1; -webkit-transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  397. 12.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  398. 14.583333% { -webkit-transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  399. 16.666667% { -webkit-transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  400. 18.75% { -webkit-transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  401. 20.833333% { -webkit-transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  402. 22.916667% { -webkit-transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  403. 25% { -webkit-transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  404. 27.083333% { -webkit-transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  405. 29.166667% { -webkit-transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  406. 31.25% { -webkit-transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  407. 33.333333% { -webkit-transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  408. 35.416667% { -webkit-transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  409. 37.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  410. 39.583333% { -webkit-transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  411. 41.666667% { -webkit-transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  412. 43.75% { -webkit-transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  413. 45.833333% { -webkit-transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  414. 47.916667% { -webkit-transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  415. 50% { -webkit-transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  416. 52.083333% { -webkit-transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  417. 54.166667% { -webkit-transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  418. 56.25% { -webkit-transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  419. 58.333333% { -webkit-transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  420. 60.416667% { -webkit-transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  421. 62.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  422. 64.583333% { -webkit-transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  423. 66.666667% { -webkit-transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  424. 68.75% { -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  425. 70.833333% { -webkit-transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  426. 72.916667% { -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  427. 75% { -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  428. 77.083333% { -webkit-transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  429. 79.166667% { -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  430. 81.25% { -webkit-transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  431. 83.333333% { -webkit-transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  432. 85.416667% { -webkit-transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  433. 87.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  434. 89.583333% { -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  435. 91.666667% { -webkit-transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  436. 93.75% { -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  437. 95.833333% { -webkit-transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  438. 97.916667% { -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  439. 100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  440. }
  441. @keyframes animJelly {
  442. 0% { opacity: 0; -webkit-transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  443. 2.083333% { -webkit-transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  444. 4.166667% { -webkit-transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  445. 6.25% { -webkit-transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  446. 8.333333% { -webkit-transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  447. 10.416667% { opacity: 1; -webkit-transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  448. 12.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  449. 14.583333% { -webkit-transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  450. 16.666667% { -webkit-transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  451. 18.75% { -webkit-transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  452. 20.833333% { -webkit-transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  453. 22.916667% { -webkit-transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  454. 25% { -webkit-transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  455. 27.083333% { -webkit-transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  456. 29.166667% { -webkit-transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  457. 31.25% { -webkit-transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  458. 33.333333% { -webkit-transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  459. 35.416667% { -webkit-transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  460. 37.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  461. 39.583333% { -webkit-transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  462. 41.666667% { -webkit-transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  463. 43.75% { -webkit-transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  464. 45.833333% { -webkit-transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  465. 47.916667% { -webkit-transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  466. 50% { -webkit-transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  467. 52.083333% { -webkit-transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  468. 54.166667% { -webkit-transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  469. 56.25% { -webkit-transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  470. 58.333333% { -webkit-transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  471. 60.416667% { -webkit-transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  472. 62.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  473. 64.583333% { -webkit-transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  474. 66.666667% { -webkit-transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  475. 68.75% { -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  476. 70.833333% { -webkit-transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  477. 72.916667% { -webkit-transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  478. 75% { -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  479. 77.083333% { -webkit-transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  480. 79.166667% { -webkit-transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  481. 81.25% { -webkit-transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  482. 83.333333% { -webkit-transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  483. 85.416667% { -webkit-transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  484. 87.5% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  485. 89.583333% { -webkit-transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  486. 91.666667% { -webkit-transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  487. 93.75% { -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  488. 95.833333% { -webkit-transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  489. 97.916667% { -webkit-transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  490. 100% { -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1); }
  491. }