animation.css 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180
  1. /*
  2. Animate.css - http://daneden.me/animate
  3. Licensed under the MIT license
  4. Copyright (c) 2013 Daniel Eden
  5. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  6. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  7. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  8. */
  9. @charset "UTF-8";.animated{-webkit-animation-duration:1s;-moz-animation-duration:1s;-o-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;visibility:hidden!important;-webkit-backface-visibility:hidden}.animated_visible{visibility:visible!important}
  10. .animated.hinge{-webkit-animation-duration:2s;-moz-animation-duration:2s;-o-animation-duration:2s;animation-duration:2s}.animate_infinite{animation-iteration-count:infinite; -moz-animation-iteration-count:infinite; -webkit-animation-iteration-count:infinite; -o-animation-iteration-count:infinite; -ms-animation-iteration-count:infinite;}.animate_infinite:hover{animation-iteration-count:0}
  11. /*.animated {
  12. -webkit-animation-duration: 1s;
  13. animation-duration: 1s;
  14. -webkit-animation-fill-mode: both;
  15. animation-fill-mode: both;
  16. }
  17. .animated.infinite {
  18. -webkit-animation-iteration-count: infinite;
  19. animation-iteration-count: infinite;
  20. }*/
  21. .animated.hinge {
  22. -webkit-animation-duration: 2s;
  23. animation-duration: 2s;
  24. }
  25. @-webkit-keyframes bounce {
  26. 0%, 20%, 53%, 80%, 100% {
  27. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  28. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  29. -webkit-transform: translate3d(0,0,0);
  30. transform: translate3d(0,0,0);
  31. }
  32. 40%, 43% {
  33. -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  34. transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  35. -webkit-transform: translate3d(0, -30px, 0);
  36. transform: translate3d(0, -30px, 0);
  37. }
  38. 70% {
  39. -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  40. transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  41. -webkit-transform: translate3d(0, -15px, 0);
  42. transform: translate3d(0, -15px, 0);
  43. }
  44. 90% {
  45. -webkit-transform: translate3d(0,-4px,0);
  46. transform: translate3d(0,-4px,0);
  47. }
  48. }
  49. @keyframes bounce {
  50. 0%, 20%, 53%, 80%, 100% {
  51. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  52. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  53. -webkit-transform: translate3d(0,0,0);
  54. transform: translate3d(0,0,0);
  55. }
  56. 40%, 43% {
  57. -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  58. transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  59. -webkit-transform: translate3d(0, -30px, 0);
  60. transform: translate3d(0, -30px, 0);
  61. }
  62. 70% {
  63. -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  64. transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
  65. -webkit-transform: translate3d(0, -15px, 0);
  66. transform: translate3d(0, -15px, 0);
  67. }
  68. 90% {
  69. -webkit-transform: translate3d(0,-4px,0);
  70. transform: translate3d(0,-4px,0);
  71. }
  72. }
  73. .bounce {
  74. -webkit-animation-name: bounce;
  75. animation-name: bounce;
  76. -webkit-transform-origin: center bottom;
  77. -ms-transform-origin: center bottom;
  78. transform-origin: center bottom;
  79. }
  80. @-webkit-keyframes flash {
  81. 0%, 50%, 100% {
  82. opacity: 1;
  83. }
  84. 25%, 75% {
  85. opacity: 0;
  86. }
  87. }
  88. @keyframes flash {
  89. 0%, 50%, 100% {
  90. opacity: 1;
  91. }
  92. 25%, 75% {
  93. opacity: 0;
  94. }
  95. }
  96. .flash {
  97. -webkit-animation-name: flash;
  98. animation-name: flash;
  99. }
  100. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  101. @-webkit-keyframes pulse {
  102. 0% {
  103. -webkit-transform: scale3d(1, 1, 1);
  104. transform: scale3d(1, 1, 1);
  105. }
  106. 50% {
  107. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  108. transform: scale3d(1.05, 1.05, 1.05);
  109. }
  110. 100% {
  111. -webkit-transform: scale3d(1, 1, 1);
  112. transform: scale3d(1, 1, 1);
  113. }
  114. }
  115. @keyframes pulse {
  116. 0% {
  117. -webkit-transform: scale3d(1, 1, 1);
  118. transform: scale3d(1, 1, 1);
  119. }
  120. 50% {
  121. -webkit-transform: scale3d(1.05, 1.05, 1.05);
  122. transform: scale3d(1.05, 1.05, 1.05);
  123. }
  124. 100% {
  125. -webkit-transform: scale3d(1, 1, 1);
  126. transform: scale3d(1, 1, 1);
  127. }
  128. }
  129. .pulse {
  130. -webkit-animation-name: pulse;
  131. animation-name: pulse;
  132. }
  133. @-webkit-keyframes rubberBand {
  134. 0% {
  135. -webkit-transform: scale3d(1, 1, 1);
  136. transform: scale3d(1, 1, 1);
  137. }
  138. 30% {
  139. -webkit-transform: scale3d(1.25, 0.75, 1);
  140. transform: scale3d(1.25, 0.75, 1);
  141. }
  142. 40% {
  143. -webkit-transform: scale3d(0.75, 1.25, 1);
  144. transform: scale3d(0.75, 1.25, 1);
  145. }
  146. 50% {
  147. -webkit-transform: scale3d(1.15, 0.85, 1);
  148. transform: scale3d(1.15, 0.85, 1);
  149. }
  150. 65% {
  151. -webkit-transform: scale3d(.95, 1.05, 1);
  152. transform: scale3d(.95, 1.05, 1);
  153. }
  154. 75% {
  155. -webkit-transform: scale3d(1.05, .95, 1);
  156. transform: scale3d(1.05, .95, 1);
  157. }
  158. 100% {
  159. -webkit-transform: scale3d(1, 1, 1);
  160. transform: scale3d(1, 1, 1);
  161. }
  162. }
  163. @keyframes rubberBand {
  164. 0% {
  165. -webkit-transform: scale3d(1, 1, 1);
  166. transform: scale3d(1, 1, 1);
  167. }
  168. 30% {
  169. -webkit-transform: scale3d(1.25, 0.75, 1);
  170. transform: scale3d(1.25, 0.75, 1);
  171. }
  172. 40% {
  173. -webkit-transform: scale3d(0.75, 1.25, 1);
  174. transform: scale3d(0.75, 1.25, 1);
  175. }
  176. 50% {
  177. -webkit-transform: scale3d(1.15, 0.85, 1);
  178. transform: scale3d(1.15, 0.85, 1);
  179. }
  180. 65% {
  181. -webkit-transform: scale3d(.95, 1.05, 1);
  182. transform: scale3d(.95, 1.05, 1);
  183. }
  184. 75% {
  185. -webkit-transform: scale3d(1.05, .95, 1);
  186. transform: scale3d(1.05, .95, 1);
  187. }
  188. 100% {
  189. -webkit-transform: scale3d(1, 1, 1);
  190. transform: scale3d(1, 1, 1);
  191. }
  192. }
  193. .rubberBand {
  194. -webkit-animation-name: rubberBand;
  195. animation-name: rubberBand;
  196. }
  197. @-webkit-keyframes shake {
  198. 0%, 100% {
  199. -webkit-transform: translate3d(0, 0, 0);
  200. transform: translate3d(0, 0, 0);
  201. }
  202. 10%, 30%, 50%, 70%, 90% {
  203. -webkit-transform: translate3d(-10px, 0, 0);
  204. transform: translate3d(-10px, 0, 0);
  205. }
  206. 20%, 40%, 60%, 80% {
  207. -webkit-transform: translate3d(10px, 0, 0);
  208. transform: translate3d(10px, 0, 0);
  209. }
  210. }
  211. @keyframes shake {
  212. 0%, 100% {
  213. -webkit-transform: translate3d(0, 0, 0);
  214. transform: translate3d(0, 0, 0);
  215. }
  216. 10%, 30%, 50%, 70%, 90% {
  217. -webkit-transform: translate3d(-10px, 0, 0);
  218. transform: translate3d(-10px, 0, 0);
  219. }
  220. 20%, 40%, 60%, 80% {
  221. -webkit-transform: translate3d(10px, 0, 0);
  222. transform: translate3d(10px, 0, 0);
  223. }
  224. }
  225. .shake {
  226. -webkit-animation-name: shake;
  227. animation-name: shake;
  228. }
  229. @-webkit-keyframes swing {
  230. 20% {
  231. -webkit-transform: rotate3d(0, 0, 1, 15deg);
  232. transform: rotate3d(0, 0, 1, 15deg);
  233. }
  234. 40% {
  235. -webkit-transform: rotate3d(0, 0, 1, -10deg);
  236. transform: rotate3d(0, 0, 1, -10deg);
  237. }
  238. 60% {
  239. -webkit-transform: rotate3d(0, 0, 1, 5deg);
  240. transform: rotate3d(0, 0, 1, 5deg);
  241. }
  242. 80% {
  243. -webkit-transform: rotate3d(0, 0, 1, -5deg);
  244. transform: rotate3d(0, 0, 1, -5deg);
  245. }
  246. 100% {
  247. -webkit-transform: rotate3d(0, 0, 1, 0deg);
  248. transform: rotate3d(0, 0, 1, 0deg);
  249. }
  250. }
  251. @keyframes swing {
  252. 20% {
  253. -webkit-transform: rotate3d(0, 0, 1, 15deg);
  254. transform: rotate3d(0, 0, 1, 15deg);
  255. }
  256. 40% {
  257. -webkit-transform: rotate3d(0, 0, 1, -10deg);
  258. transform: rotate3d(0, 0, 1, -10deg);
  259. }
  260. 60% {
  261. -webkit-transform: rotate3d(0, 0, 1, 5deg);
  262. transform: rotate3d(0, 0, 1, 5deg);
  263. }
  264. 80% {
  265. -webkit-transform: rotate3d(0, 0, 1, -5deg);
  266. transform: rotate3d(0, 0, 1, -5deg);
  267. }
  268. 100% {
  269. -webkit-transform: rotate3d(0, 0, 1, 0deg);
  270. transform: rotate3d(0, 0, 1, 0deg);
  271. }
  272. }
  273. .swing {
  274. -webkit-transform-origin: top center;
  275. -ms-transform-origin: top center;
  276. transform-origin: top center;
  277. -webkit-animation-name: swing;
  278. animation-name: swing;
  279. }
  280. @-webkit-keyframes tada {
  281. 0% {
  282. -webkit-transform: scale3d(1, 1, 1);
  283. transform: scale3d(1, 1, 1);
  284. }
  285. 10%, 20% {
  286. -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  287. transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  288. }
  289. 30%, 50%, 70%, 90% {
  290. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  291. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  292. }
  293. 40%, 60%, 80% {
  294. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  295. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  296. }
  297. 100% {
  298. -webkit-transform: scale3d(1, 1, 1);
  299. transform: scale3d(1, 1, 1);
  300. }
  301. }
  302. @keyframes tada {
  303. 0% {
  304. -webkit-transform: scale3d(1, 1, 1);
  305. transform: scale3d(1, 1, 1);
  306. }
  307. 10%, 20% {
  308. -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  309. transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  310. }
  311. 30%, 50%, 70%, 90% {
  312. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  313. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  314. }
  315. 40%, 60%, 80% {
  316. -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  317. transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  318. }
  319. 100% {
  320. -webkit-transform: scale3d(1, 1, 1);
  321. transform: scale3d(1, 1, 1);
  322. }
  323. }
  324. .tada {
  325. -webkit-animation-name: tada;
  326. animation-name: tada;
  327. }
  328. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  329. @-webkit-keyframes wobble {
  330. 0% {
  331. -webkit-transform: none;
  332. transform: none;
  333. }
  334. 15% {
  335. -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  336. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  337. }
  338. 30% {
  339. -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  340. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  341. }
  342. 45% {
  343. -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  344. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  345. }
  346. 60% {
  347. -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  348. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  349. }
  350. 75% {
  351. -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  352. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  353. }
  354. 100% {
  355. -webkit-transform: none;
  356. transform: none;
  357. }
  358. }
  359. @keyframes wobble {
  360. 0% {
  361. -webkit-transform: none;
  362. transform: none;
  363. }
  364. 15% {
  365. -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  366. transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  367. }
  368. 30% {
  369. -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  370. transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  371. }
  372. 45% {
  373. -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  374. transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  375. }
  376. 60% {
  377. -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  378. transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  379. }
  380. 75% {
  381. -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  382. transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  383. }
  384. 100% {
  385. -webkit-transform: none;
  386. transform: none;
  387. }
  388. }
  389. .wobble {
  390. -webkit-animation-name: wobble;
  391. animation-name: wobble;
  392. }
  393. @-webkit-keyframes bounceIn {
  394. 0%, 20%, 40%, 60%, 80%, 100% {
  395. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  396. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  397. }
  398. 0% {
  399. opacity: 0;
  400. -webkit-transform: scale3d(.3, .3, .3);
  401. transform: scale3d(.3, .3, .3);
  402. }
  403. 20% {
  404. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  405. transform: scale3d(1.1, 1.1, 1.1);
  406. }
  407. 40% {
  408. -webkit-transform: scale3d(.9, .9, .9);
  409. transform: scale3d(.9, .9, .9);
  410. }
  411. 60% {
  412. opacity: 1;
  413. -webkit-transform: scale3d(1.03, 1.03, 1.03);
  414. transform: scale3d(1.03, 1.03, 1.03);
  415. }
  416. 80% {
  417. -webkit-transform: scale3d(.97, .97, .97);
  418. transform: scale3d(.97, .97, .97);
  419. }
  420. 100% {
  421. opacity: 1;
  422. -webkit-transform: scale3d(1, 1, 1);
  423. transform: scale3d(1, 1, 1);
  424. }
  425. }
  426. @keyframes bounceIn {
  427. 0%, 20%, 40%, 60%, 80%, 100% {
  428. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  429. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  430. }
  431. 0% {
  432. opacity: 0;
  433. -webkit-transform: scale3d(.3, .3, .3);
  434. transform: scale3d(.3, .3, .3);
  435. }
  436. 20% {
  437. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  438. transform: scale3d(1.1, 1.1, 1.1);
  439. }
  440. 40% {
  441. -webkit-transform: scale3d(.9, .9, .9);
  442. transform: scale3d(.9, .9, .9);
  443. }
  444. 60% {
  445. opacity: 1;
  446. -webkit-transform: scale3d(1.03, 1.03, 1.03);
  447. transform: scale3d(1.03, 1.03, 1.03);
  448. }
  449. 80% {
  450. -webkit-transform: scale3d(.97, .97, .97);
  451. transform: scale3d(.97, .97, .97);
  452. }
  453. 100% {
  454. opacity: 1;
  455. -webkit-transform: scale3d(1, 1, 1);
  456. transform: scale3d(1, 1, 1);
  457. }
  458. }
  459. .bounceIn {
  460. -webkit-animation-name: bounceIn;
  461. animation-name: bounceIn;
  462. -webkit-animation-duration: .75s;
  463. animation-duration: .75s;
  464. }
  465. @-webkit-keyframes bounceInDown {
  466. 0%, 60%, 75%, 90%, 100% {
  467. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  468. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  469. }
  470. 0% {
  471. opacity: 0;
  472. -webkit-transform: translate3d(0, -3000px, 0);
  473. transform: translate3d(0, -3000px, 0);
  474. }
  475. 60% {
  476. opacity: 1;
  477. -webkit-transform: translate3d(0, 25px, 0);
  478. transform: translate3d(0, 25px, 0);
  479. }
  480. 75% {
  481. -webkit-transform: translate3d(0, -10px, 0);
  482. transform: translate3d(0, -10px, 0);
  483. }
  484. 90% {
  485. -webkit-transform: translate3d(0, 5px, 0);
  486. transform: translate3d(0, 5px, 0);
  487. }
  488. 100% {
  489. -webkit-transform: none;
  490. transform: none;
  491. }
  492. }
  493. @keyframes bounceInDown {
  494. 0%, 60%, 75%, 90%, 100% {
  495. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  496. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  497. }
  498. 0% {
  499. opacity: 0;
  500. -webkit-transform: translate3d(0, -3000px, 0);
  501. transform: translate3d(0, -3000px, 0);
  502. }
  503. 60% {
  504. opacity: 1;
  505. -webkit-transform: translate3d(0, 25px, 0);
  506. transform: translate3d(0, 25px, 0);
  507. }
  508. 75% {
  509. -webkit-transform: translate3d(0, -10px, 0);
  510. transform: translate3d(0, -10px, 0);
  511. }
  512. 90% {
  513. -webkit-transform: translate3d(0, 5px, 0);
  514. transform: translate3d(0, 5px, 0);
  515. }
  516. 100% {
  517. -webkit-transform: none;
  518. transform: none;
  519. }
  520. }
  521. .bounceInDown {
  522. -webkit-animation-name: bounceInDown;
  523. animation-name: bounceInDown;
  524. }
  525. @-webkit-keyframes bounceInLeft {
  526. 0%, 60%, 75%, 90%, 100% {
  527. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  528. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  529. }
  530. 0% {
  531. opacity: 0;
  532. -webkit-transform: translate3d(-3000px, 0, 0);
  533. transform: translate3d(-3000px, 0, 0);
  534. }
  535. 60% {
  536. opacity: 1;
  537. -webkit-transform: translate3d(25px, 0, 0);
  538. transform: translate3d(25px, 0, 0);
  539. }
  540. 75% {
  541. opacity: 1;
  542. -webkit-transform: translate3d(-10px, 0, 0);
  543. transform: translate3d(-10px, 0, 0);
  544. }
  545. 90% {
  546. opacity: 1;
  547. -webkit-transform: translate3d(5px, 0, 0);
  548. transform: translate3d(5px, 0, 0);
  549. }
  550. 100% {
  551. opacity: 1;
  552. -webkit-transform: none;
  553. transform: none;
  554. }
  555. }
  556. @keyframes bounceInLeft {
  557. 0%, 60%, 75%, 90%, 100% {
  558. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  559. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  560. }
  561. 0% {
  562. opacity: 0;
  563. -webkit-transform: translate3d(-3000px, 0, 0);
  564. transform: translate3d(-3000px, 0, 0);
  565. }
  566. 60% {
  567. opacity: 1;
  568. -webkit-transform: translate3d(25px, 0, 0);
  569. transform: translate3d(25px, 0, 0);
  570. }
  571. 75% {
  572. opacity: 1;
  573. -webkit-transform: translate3d(-10px, 0, 0);
  574. transform: translate3d(-10px, 0, 0);
  575. }
  576. 90% {
  577. opacity: 1;
  578. -webkit-transform: translate3d(5px, 0, 0);
  579. transform: translate3d(5px, 0, 0);
  580. }
  581. 100% {
  582. opacity: 1;
  583. -webkit-transform: none;
  584. transform: none;
  585. }
  586. }
  587. .bounceInLeft {
  588. -webkit-animation-name: bounceInLeft;
  589. animation-name: bounceInLeft;
  590. }
  591. @-webkit-keyframes bounceInRight {
  592. 0%, 60%, 75%, 90%, 100% {
  593. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  594. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  595. }
  596. 0% {
  597. opacity: 0;
  598. -webkit-transform: translate3d(3000px, 0, 0);
  599. transform: translate3d(3000px, 0, 0);
  600. }
  601. 60% {
  602. opacity: 1;
  603. -webkit-transform: translate3d(-25px, 0, 0);
  604. transform: translate3d(-25px, 0, 0);
  605. }
  606. 75% {
  607. opacity: 1;
  608. -webkit-transform: translate3d(10px, 0, 0);
  609. transform: translate3d(10px, 0, 0);
  610. }
  611. 90% {
  612. opacity: 1;
  613. -webkit-transform: translate3d(-5px, 0, 0);
  614. transform: translate3d(-5px, 0, 0);
  615. }
  616. 100% {
  617. opacity: 1;
  618. -webkit-transform: none;
  619. transform: none;
  620. }
  621. }
  622. @keyframes bounceInRight {
  623. 0%, 60%, 75%, 90%, 100% {
  624. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  625. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  626. }
  627. 0% {
  628. opacity: 0;
  629. -webkit-transform: translate3d(3000px, 0, 0);
  630. transform: translate3d(3000px, 0, 0);
  631. }
  632. 60% {
  633. opacity: 1;
  634. -webkit-transform: translate3d(-25px, 0, 0);
  635. transform: translate3d(-25px, 0, 0);
  636. }
  637. 75% {
  638. opacity: 1;
  639. -webkit-transform: translate3d(10px, 0, 0);
  640. transform: translate3d(10px, 0, 0);
  641. }
  642. 90% {
  643. opacity: 1;
  644. -webkit-transform: translate3d(-5px, 0, 0);
  645. transform: translate3d(-5px, 0, 0);
  646. }
  647. 100% {
  648. opacity: 1;
  649. -webkit-transform: none;
  650. transform: none;
  651. }
  652. }
  653. .bounceInRight {
  654. -webkit-animation-name: bounceInRight;
  655. animation-name: bounceInRight;
  656. }
  657. @-webkit-keyframes bounceInUp {
  658. 0%, 60%, 75%, 90%, 100% {
  659. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  660. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  661. }
  662. 0% {
  663. opacity: 0;
  664. -webkit-transform: translate3d(0, 3000px, 0);
  665. transform: translate3d(0, 3000px, 0);
  666. }
  667. 60% {
  668. opacity: 1;
  669. -webkit-transform: translate3d(0, -20px, 0);
  670. transform: translate3d(0, -20px, 0);
  671. }
  672. 75% {
  673. -webkit-transform: translate3d(0, 10px, 0);
  674. transform: translate3d(0, 10px, 0);
  675. }
  676. 90% {
  677. -webkit-transform: translate3d(0, -5px, 0);
  678. transform: translate3d(0, -5px, 0);
  679. }
  680. 100% {
  681. -webkit-transform: translate3d(0, 0, 0);
  682. transform: translate3d(0, 0, 0);
  683. }
  684. }
  685. @keyframes bounceInUp {
  686. 0%, 60%, 75%, 90%, 100% {
  687. -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  688. transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  689. }
  690. 0% {
  691. opacity: 0;
  692. -webkit-transform: translate3d(0, 3000px, 0);
  693. transform: translate3d(0, 3000px, 0);
  694. }
  695. 60% {
  696. opacity: 1;
  697. -webkit-transform: translate3d(0, -20px, 0);
  698. transform: translate3d(0, -20px, 0);
  699. }
  700. 75% {
  701. -webkit-transform: translate3d(0, 10px, 0);
  702. transform: translate3d(0, 10px, 0);
  703. }
  704. 90% {
  705. -webkit-transform: translate3d(0, -5px, 0);
  706. transform: translate3d(0, -5px, 0);
  707. }
  708. 100% {
  709. -webkit-transform: translate3d(0, 0, 0);
  710. transform: translate3d(0, 0, 0);
  711. }
  712. }
  713. .bounceInUp {
  714. -webkit-animation-name: bounceInUp;
  715. animation-name: bounceInUp;
  716. }
  717. @-webkit-keyframes bounceOut {
  718. 20% {
  719. -webkit-transform: scale3d(.9, .9, .9);
  720. transform: scale3d(.9, .9, .9);
  721. }
  722. 50%, 55% {
  723. opacity: 1;
  724. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  725. transform: scale3d(1.1, 1.1, 1.1);
  726. }
  727. 100% {
  728. opacity: 0;
  729. -webkit-transform: scale3d(.3, .3, .3);
  730. transform: scale3d(.3, .3, .3);
  731. }
  732. }
  733. @keyframes bounceOut {
  734. 20% {
  735. -webkit-transform: scale3d(.9, .9, .9);
  736. transform: scale3d(.9, .9, .9);
  737. }
  738. 50%, 55% {
  739. opacity: 1;
  740. -webkit-transform: scale3d(1.1, 1.1, 1.1);
  741. transform: scale3d(1.1, 1.1, 1.1);
  742. }
  743. 100% {
  744. opacity: 0;
  745. -webkit-transform: scale3d(.3, .3, .3);
  746. transform: scale3d(.3, .3, .3);
  747. }
  748. }
  749. .bounceOut {
  750. -webkit-animation-name: bounceOut;
  751. animation-name: bounceOut;
  752. -webkit-animation-duration: .75s;
  753. animation-duration: .75s;
  754. }
  755. @-webkit-keyframes bounceOutDown {
  756. 20% {
  757. -webkit-transform: translate3d(0, 10px, 0);
  758. transform: translate3d(0, 10px, 0);
  759. }
  760. 40%, 45% {
  761. opacity: 1;
  762. -webkit-transform: translate3d(0, -20px, 0);
  763. transform: translate3d(0, -20px, 0);
  764. }
  765. 100% {
  766. opacity: 0;
  767. -webkit-transform: translate3d(0, 2000px, 0);
  768. transform: translate3d(0, 2000px, 0);
  769. }
  770. }
  771. @keyframes bounceOutDown {
  772. 20% {
  773. -webkit-transform: translate3d(0, 10px, 0);
  774. transform: translate3d(0, 10px, 0);
  775. }
  776. 40%, 45% {
  777. opacity: 1;
  778. -webkit-transform: translate3d(0, -20px, 0);
  779. transform: translate3d(0, -20px, 0);
  780. }
  781. 100% {
  782. opacity: 0;
  783. -webkit-transform: translate3d(0, 2000px, 0);
  784. transform: translate3d(0, 2000px, 0);
  785. }
  786. }
  787. .bounceOutDown {
  788. -webkit-animation-name: bounceOutDown;
  789. animation-name: bounceOutDown;
  790. }
  791. @-webkit-keyframes bounceOutLeft {
  792. 20% {
  793. opacity: 1;
  794. -webkit-transform: translate3d(20px, 0, 0);
  795. transform: translate3d(20px, 0, 0);
  796. }
  797. 100% {
  798. opacity: 0;
  799. -webkit-transform: translate3d(-2000px, 0, 0);
  800. transform: translate3d(-2000px, 0, 0);
  801. }
  802. }
  803. @keyframes bounceOutLeft {
  804. 20% {
  805. opacity: 1;
  806. -webkit-transform: translate3d(20px, 0, 0);
  807. transform: translate3d(20px, 0, 0);
  808. }
  809. 100% {
  810. opacity: 0;
  811. -webkit-transform: translate3d(-2000px, 0, 0);
  812. transform: translate3d(-2000px, 0, 0);
  813. }
  814. }
  815. .bounceOutLeft {
  816. -webkit-animation-name: bounceOutLeft;
  817. animation-name: bounceOutLeft;
  818. }
  819. @-webkit-keyframes bounceOutRight {
  820. 20% {
  821. opacity: 1;
  822. -webkit-transform: translate3d(-20px, 0, 0);
  823. transform: translate3d(-20px, 0, 0);
  824. }
  825. 100% {
  826. opacity: 0;
  827. -webkit-transform: translate3d(2000px, 0, 0);
  828. transform: translate3d(2000px, 0, 0);
  829. }
  830. }
  831. @keyframes bounceOutRight {
  832. 20% {
  833. opacity: 1;
  834. -webkit-transform: translate3d(-20px, 0, 0);
  835. transform: translate3d(-20px, 0, 0);
  836. }
  837. 100% {
  838. opacity: 0;
  839. -webkit-transform: translate3d(2000px, 0, 0);
  840. transform: translate3d(2000px, 0, 0);
  841. }
  842. }
  843. .bounceOutRight {
  844. -webkit-animation-name: bounceOutRight;
  845. animation-name: bounceOutRight;
  846. }
  847. @-webkit-keyframes bounceOutUp {
  848. 20% {
  849. -webkit-transform: translate3d(0, -10px, 0);
  850. transform: translate3d(0, -10px, 0);
  851. }
  852. 40%, 45% {
  853. opacity: 1;
  854. -webkit-transform: translate3d(0, 20px, 0);
  855. transform: translate3d(0, 20px, 0);
  856. }
  857. 100% {
  858. opacity: 0;
  859. -webkit-transform: translate3d(0, -2000px, 0);
  860. transform: translate3d(0, -2000px, 0);
  861. }
  862. }
  863. @keyframes bounceOutUp {
  864. 20% {
  865. -webkit-transform: translate3d(0, -10px, 0);
  866. transform: translate3d(0, -10px, 0);
  867. }
  868. 40%, 45% {
  869. opacity: 1;
  870. -webkit-transform: translate3d(0, 20px, 0);
  871. transform: translate3d(0, 20px, 0);
  872. }
  873. 100% {
  874. opacity: 0;
  875. -webkit-transform: translate3d(0, -2000px, 0);
  876. transform: translate3d(0, -2000px, 0);
  877. }
  878. }
  879. .bounceOutUp {
  880. -webkit-animation-name: bounceOutUp;
  881. animation-name: bounceOutUp;
  882. }
  883. @-webkit-keyframes fadeIn {
  884. 0% {opacity: 0;}
  885. 100% {opacity: 1;}
  886. }
  887. @keyframes fadeIn {
  888. 0% {opacity: 0;}
  889. 100% {opacity: 1;}
  890. }
  891. .fadeIn {
  892. -webkit-animation-name: fadeIn;
  893. animation-name: fadeIn;
  894. }
  895. @-webkit-keyframes fadeInDown {
  896. 0% {
  897. opacity: 0;
  898. -webkit-transform: translate3d(0, -100%, 0);
  899. transform: translate3d(0, -100%, 0);
  900. }
  901. 100% {
  902. opacity: 1;
  903. -webkit-transform: none;
  904. transform: none;
  905. }
  906. }
  907. @keyframes fadeInDown {
  908. 0% {
  909. opacity: 0;
  910. -webkit-transform: translate3d(0, -100%, 0);
  911. transform: translate3d(0, -100%, 0);
  912. }
  913. 100% {
  914. opacity: 1;
  915. -webkit-transform: none;
  916. transform: none;
  917. }
  918. }
  919. .fadeInDown {
  920. -webkit-animation-name: fadeInDown;
  921. animation-name: fadeInDown;
  922. }
  923. @-webkit-keyframes fadeInDownBig {
  924. 0% {
  925. opacity: 0;
  926. -webkit-transform: translate3d(0, -2000px, 0);
  927. transform: translate3d(0, -2000px, 0);
  928. }
  929. 100% {
  930. opacity: 1;
  931. -webkit-transform: none;
  932. transform: none;
  933. }
  934. }
  935. @keyframes fadeInDownBig {
  936. 0% {
  937. opacity: 0;
  938. -webkit-transform: translate3d(0, -2000px, 0);
  939. transform: translate3d(0, -2000px, 0);
  940. }
  941. 100% {
  942. opacity: 1;
  943. -webkit-transform: none;
  944. transform: none;
  945. }
  946. }
  947. .fadeInDownBig {
  948. -webkit-animation-name: fadeInDownBig;
  949. animation-name: fadeInDownBig;
  950. }
  951. @-webkit-keyframes fadeInLeft {
  952. 0% {
  953. opacity: 0;
  954. -webkit-transform: translate3d(-100%, 0, 0);
  955. transform: translate3d(-100%, 0, 0);
  956. }
  957. 100% {
  958. opacity: 1;
  959. -webkit-transform: none;
  960. transform: none;
  961. }
  962. }
  963. @keyframes fadeInLeft {
  964. 0% {
  965. opacity: 0;
  966. -webkit-transform: translate3d(-100%, 0, 0);
  967. transform: translate3d(-100%, 0, 0);
  968. }
  969. 100% {
  970. opacity: 1;
  971. -webkit-transform: none;
  972. transform: none;
  973. }
  974. }
  975. .fadeInLeft {
  976. -webkit-animation-name: fadeInLeft;
  977. animation-name: fadeInLeft;
  978. }
  979. @-webkit-keyframes fadeInLeftBig {
  980. 0% {
  981. opacity: 0;
  982. -webkit-transform: translate3d(-2000px, 0, 0);
  983. transform: translate3d(-2000px, 0, 0);
  984. }
  985. 100% {
  986. opacity: 1;
  987. -webkit-transform: none;
  988. transform: none;
  989. }
  990. }
  991. @keyframes fadeInLeftBig {
  992. 0% {
  993. opacity: 0;
  994. -webkit-transform: translate3d(-2000px, 0, 0);
  995. transform: translate3d(-2000px, 0, 0);
  996. }
  997. 100% {
  998. opacity: 1;
  999. -webkit-transform: none;
  1000. transform: none;
  1001. }
  1002. }
  1003. .fadeInLeftBig {
  1004. -webkit-animation-name: fadeInLeftBig;
  1005. animation-name: fadeInLeftBig;
  1006. }
  1007. @-webkit-keyframes fadeInRight {
  1008. 0% {
  1009. opacity: 0;
  1010. -webkit-transform: translate3d(100%, 0, 0);
  1011. transform: translate3d(100%, 0, 0);
  1012. }
  1013. 100% {
  1014. opacity: 1;
  1015. -webkit-transform: none;
  1016. transform: none;
  1017. }
  1018. }
  1019. @keyframes fadeInRight {
  1020. 0% {
  1021. opacity: 0;
  1022. -webkit-transform: translate3d(100%, 0, 0);
  1023. transform: translate3d(100%, 0, 0);
  1024. }
  1025. 100% {
  1026. opacity: 1;
  1027. -webkit-transform: none;
  1028. transform: none;
  1029. }
  1030. }
  1031. .fadeInRight {
  1032. -webkit-animation-name: fadeInRight;
  1033. animation-name: fadeInRight;
  1034. }
  1035. @-webkit-keyframes fadeInRightBig {
  1036. 0% {
  1037. opacity: 0;
  1038. -webkit-transform: translate3d(2000px, 0, 0);
  1039. transform: translate3d(2000px, 0, 0);
  1040. }
  1041. 100% {
  1042. opacity: 1;
  1043. -webkit-transform: none;
  1044. transform: none;
  1045. }
  1046. }
  1047. @keyframes fadeInRightBig {
  1048. 0% {
  1049. opacity: 0;
  1050. -webkit-transform: translate3d(2000px, 0, 0);
  1051. transform: translate3d(2000px, 0, 0);
  1052. }
  1053. 100% {
  1054. opacity: 1;
  1055. -webkit-transform: none;
  1056. transform: none;
  1057. }
  1058. }
  1059. .fadeInRightBig {
  1060. -webkit-animation-name: fadeInRightBig;
  1061. animation-name: fadeInRightBig;
  1062. }
  1063. @-webkit-keyframes fadeInUp {
  1064. 0% {
  1065. opacity: 0;
  1066. -webkit-transform: translate3d(0, 100%, 0);
  1067. transform: translate3d(0, 100%, 0);
  1068. }
  1069. 100% {
  1070. opacity: 1;
  1071. -webkit-transform: none;
  1072. transform: none;
  1073. }
  1074. }
  1075. @keyframes fadeInUp {
  1076. 0% {
  1077. opacity: 0;
  1078. -webkit-transform: translate3d(0, 100%, 0);
  1079. transform: translate3d(0, 100%, 0);
  1080. }
  1081. 100% {
  1082. opacity: 1;
  1083. -webkit-transform: none;
  1084. transform: none;
  1085. }
  1086. }
  1087. .fadeInUp {
  1088. -webkit-animation-name: fadeInUp;
  1089. animation-name: fadeInUp;
  1090. }
  1091. @-webkit-keyframes fadeInUpBig {
  1092. 0% {
  1093. opacity: 0;
  1094. -webkit-transform: translate3d(0, 2000px, 0);
  1095. transform: translate3d(0, 2000px, 0);
  1096. }
  1097. 100% {
  1098. opacity: 1;
  1099. -webkit-transform: none;
  1100. transform: none;
  1101. }
  1102. }
  1103. @keyframes fadeInUpBig {
  1104. 0% {
  1105. opacity: 0;
  1106. -webkit-transform: translate3d(0, 2000px, 0);
  1107. transform: translate3d(0, 2000px, 0);
  1108. }
  1109. 100% {
  1110. opacity: 1;
  1111. -webkit-transform: none;
  1112. transform: none;
  1113. }
  1114. }
  1115. .fadeInUpBig {
  1116. -webkit-animation-name: fadeInUpBig;
  1117. animation-name: fadeInUpBig;
  1118. }
  1119. @-webkit-keyframes fadeOut {
  1120. 0% {opacity: 1;}
  1121. 100% {opacity: 0;}
  1122. }
  1123. @keyframes fadeOut {
  1124. 0% {opacity: 1;}
  1125. 100% {opacity: 0;}
  1126. }
  1127. .fadeOut {
  1128. -webkit-animation-name: fadeOut;
  1129. animation-name: fadeOut;
  1130. }
  1131. @-webkit-keyframes fadeOutDown {
  1132. 0% {
  1133. opacity: 1;
  1134. }
  1135. 100% {
  1136. opacity: 0;
  1137. -webkit-transform: translate3d(0, 100%, 0);
  1138. transform: translate3d(0, 100%, 0);
  1139. }
  1140. }
  1141. @keyframes fadeOutDown {
  1142. 0% {
  1143. opacity: 1;
  1144. }
  1145. 100% {
  1146. opacity: 0;
  1147. -webkit-transform: translate3d(0, 100%, 0);
  1148. transform: translate3d(0, 100%, 0);
  1149. }
  1150. }
  1151. .fadeOutDown {
  1152. -webkit-animation-name: fadeOutDown;
  1153. animation-name: fadeOutDown;
  1154. }
  1155. @-webkit-keyframes fadeOutDownBig {
  1156. 0% {
  1157. opacity: 1;
  1158. }
  1159. 100% {
  1160. opacity: 0;
  1161. -webkit-transform: translate3d(0, 2000px, 0);
  1162. transform: translate3d(0, 2000px, 0);
  1163. }
  1164. }
  1165. @keyframes fadeOutDownBig {
  1166. 0% {
  1167. opacity: 1;
  1168. }
  1169. 100% {
  1170. opacity: 0;
  1171. -webkit-transform: translate3d(0, 2000px, 0);
  1172. transform: translate3d(0, 2000px, 0);
  1173. }
  1174. }
  1175. .fadeOutDownBig {
  1176. -webkit-animation-name: fadeOutDownBig;
  1177. animation-name: fadeOutDownBig;
  1178. }
  1179. @-webkit-keyframes fadeOutLeft {
  1180. 0% {
  1181. opacity: 1;
  1182. }
  1183. 100% {
  1184. opacity: 0;
  1185. -webkit-transform: translate3d(-100%, 0, 0);
  1186. transform: translate3d(-100%, 0, 0);
  1187. }
  1188. }
  1189. @keyframes fadeOutLeft {
  1190. 0% {
  1191. opacity: 1;
  1192. }
  1193. 100% {
  1194. opacity: 0;
  1195. -webkit-transform: translate3d(-100%, 0, 0);
  1196. transform: translate3d(-100%, 0, 0);
  1197. }
  1198. }
  1199. .fadeOutLeft {
  1200. -webkit-animation-name: fadeOutLeft;
  1201. animation-name: fadeOutLeft;
  1202. }
  1203. @-webkit-keyframes fadeOutLeftBig {
  1204. 0% {
  1205. opacity: 1;
  1206. }
  1207. 100% {
  1208. opacity: 0;
  1209. -webkit-transform: translate3d(-2000px, 0, 0);
  1210. transform: translate3d(-2000px, 0, 0);
  1211. }
  1212. }
  1213. @keyframes fadeOutLeftBig {
  1214. 0% {
  1215. opacity: 1;
  1216. }
  1217. 100% {
  1218. opacity: 0;
  1219. -webkit-transform: translate3d(-2000px, 0, 0);
  1220. transform: translate3d(-2000px, 0, 0);
  1221. }
  1222. }
  1223. .fadeOutLeftBig {
  1224. -webkit-animation-name: fadeOutLeftBig;
  1225. animation-name: fadeOutLeftBig;
  1226. }
  1227. @-webkit-keyframes fadeOutRight {
  1228. 0% {
  1229. opacity: 1;
  1230. }
  1231. 100% {
  1232. opacity: 0;
  1233. -webkit-transform: translate3d(100%, 0, 0);
  1234. transform: translate3d(100%, 0, 0);
  1235. }
  1236. }
  1237. @keyframes fadeOutRight {
  1238. 0% {
  1239. opacity: 1;
  1240. }
  1241. 100% {
  1242. opacity: 0;
  1243. -webkit-transform: translate3d(100%, 0, 0);
  1244. transform: translate3d(100%, 0, 0);
  1245. }
  1246. }
  1247. .fadeOutRight {
  1248. -webkit-animation-name: fadeOutRight;
  1249. animation-name: fadeOutRight;
  1250. }
  1251. @-webkit-keyframes fadeOutRightBig {
  1252. 0% {
  1253. opacity: 1;
  1254. }
  1255. 100% {
  1256. opacity: 0;
  1257. -webkit-transform: translate3d(2000px, 0, 0);
  1258. transform: translate3d(2000px, 0, 0);
  1259. }
  1260. }
  1261. @keyframes fadeOutRightBig {
  1262. 0% {
  1263. opacity: 1;
  1264. }
  1265. 100% {
  1266. opacity: 0;
  1267. -webkit-transform: translate3d(2000px, 0, 0);
  1268. transform: translate3d(2000px, 0, 0);
  1269. }
  1270. }
  1271. .fadeOutRightBig {
  1272. -webkit-animation-name: fadeOutRightBig;
  1273. animation-name: fadeOutRightBig;
  1274. }
  1275. @-webkit-keyframes fadeOutUp {
  1276. 0% {
  1277. opacity: 1;
  1278. }
  1279. 100% {
  1280. opacity: 0;
  1281. -webkit-transform: translate3d(0, -100%, 0);
  1282. transform: translate3d(0, -100%, 0);
  1283. }
  1284. }
  1285. @keyframes fadeOutUp {
  1286. 0% {
  1287. opacity: 1;
  1288. }
  1289. 100% {
  1290. opacity: 0;
  1291. -webkit-transform: translate3d(0, -100%, 0);
  1292. transform: translate3d(0, -100%, 0);
  1293. }
  1294. }
  1295. .fadeOutUp {
  1296. -webkit-animation-name: fadeOutUp;
  1297. animation-name: fadeOutUp;
  1298. }
  1299. @-webkit-keyframes fadeOutUpBig {
  1300. 0% {
  1301. opacity: 1;
  1302. }
  1303. 100% {
  1304. opacity: 0;
  1305. -webkit-transform: translate3d(0, -2000px, 0);
  1306. transform: translate3d(0, -2000px, 0);
  1307. }
  1308. }
  1309. @keyframes fadeOutUpBig {
  1310. 0% {
  1311. opacity: 1;
  1312. }
  1313. 100% {
  1314. opacity: 0;
  1315. -webkit-transform: translate3d(0, -2000px, 0);
  1316. transform: translate3d(0, -2000px, 0);
  1317. }
  1318. }
  1319. .fadeOutUpBig {
  1320. -webkit-animation-name: fadeOutUpBig;
  1321. animation-name: fadeOutUpBig;
  1322. }
  1323. @-webkit-keyframes flip {
  1324. 0% {
  1325. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  1326. transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  1327. -webkit-animation-timing-function: ease-out;
  1328. animation-timing-function: ease-out;
  1329. }
  1330. 40% {
  1331. -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  1332. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  1333. -webkit-animation-timing-function: ease-out;
  1334. animation-timing-function: ease-out;
  1335. }
  1336. 50% {
  1337. -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  1338. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  1339. -webkit-animation-timing-function: ease-in;
  1340. animation-timing-function: ease-in;
  1341. }
  1342. 80% {
  1343. -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
  1344. transform: perspective(400px) scale3d(.95, .95, .95);
  1345. -webkit-animation-timing-function: ease-in;
  1346. animation-timing-function: ease-in;
  1347. }
  1348. 100% {
  1349. -webkit-transform: perspective(400px);
  1350. transform: perspective(400px);
  1351. -webkit-animation-timing-function: ease-in;
  1352. animation-timing-function: ease-in;
  1353. }
  1354. }
  1355. @keyframes flip {
  1356. 0% {
  1357. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  1358. transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
  1359. -webkit-animation-timing-function: ease-out;
  1360. animation-timing-function: ease-out;
  1361. }
  1362. 40% {
  1363. -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  1364. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
  1365. -webkit-animation-timing-function: ease-out;
  1366. animation-timing-function: ease-out;
  1367. }
  1368. 50% {
  1369. -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  1370. transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
  1371. -webkit-animation-timing-function: ease-in;
  1372. animation-timing-function: ease-in;
  1373. }
  1374. 80% {
  1375. -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
  1376. transform: perspective(400px) scale3d(.95, .95, .95);
  1377. -webkit-animation-timing-function: ease-in;
  1378. animation-timing-function: ease-in;
  1379. }
  1380. 100% {
  1381. -webkit-transform: perspective(400px);
  1382. transform: perspective(400px);
  1383. -webkit-animation-timing-function: ease-in;
  1384. animation-timing-function: ease-in;
  1385. }
  1386. }
  1387. .animated.flip {
  1388. -webkit-backface-visibility: visible;
  1389. backface-visibility: visible;
  1390. -webkit-animation-name: flip;
  1391. animation-name: flip;
  1392. }
  1393. @-webkit-keyframes flipInX {
  1394. 0% {
  1395. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1396. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1397. -webkit-transition-timing-function: ease-in;
  1398. transition-timing-function: ease-in;
  1399. opacity: 0;
  1400. }
  1401. 40% {
  1402. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1403. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1404. -webkit-transition-timing-function: ease-in;
  1405. transition-timing-function: ease-in;
  1406. }
  1407. 60% {
  1408. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1409. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1410. opacity: 1;
  1411. }
  1412. 80% {
  1413. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1414. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1415. }
  1416. 100% {
  1417. -webkit-transform: perspective(400px);
  1418. transform: perspective(400px);
  1419. }
  1420. }
  1421. @keyframes flipInX {
  1422. 0% {
  1423. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1424. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1425. -webkit-transition-timing-function: ease-in;
  1426. transition-timing-function: ease-in;
  1427. opacity: 0;
  1428. }
  1429. 40% {
  1430. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1431. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1432. -webkit-transition-timing-function: ease-in;
  1433. transition-timing-function: ease-in;
  1434. }
  1435. 60% {
  1436. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1437. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1438. opacity: 1;
  1439. }
  1440. 80% {
  1441. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1442. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1443. }
  1444. 100% {
  1445. -webkit-transform: perspective(400px);
  1446. transform: perspective(400px);
  1447. }
  1448. }
  1449. .flipInX {
  1450. -webkit-backface-visibility: visible !important;
  1451. backface-visibility: visible !important;
  1452. -webkit-animation-name: flipInX;
  1453. animation-name: flipInX;
  1454. }
  1455. @-webkit-keyframes flipInY {
  1456. 0% {
  1457. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1458. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1459. -webkit-transition-timing-function: ease-in;
  1460. transition-timing-function: ease-in;
  1461. opacity: 0;
  1462. }
  1463. 40% {
  1464. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  1465. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  1466. -webkit-transition-timing-function: ease-in;
  1467. transition-timing-function: ease-in;
  1468. }
  1469. 60% {
  1470. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  1471. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  1472. opacity: 1;
  1473. }
  1474. 80% {
  1475. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  1476. transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  1477. }
  1478. 100% {
  1479. -webkit-transform: perspective(400px);
  1480. transform: perspective(400px);
  1481. }
  1482. }
  1483. @keyframes flipInY {
  1484. 0% {
  1485. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1486. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1487. -webkit-transition-timing-function: ease-in;
  1488. transition-timing-function: ease-in;
  1489. opacity: 0;
  1490. }
  1491. 40% {
  1492. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  1493. transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  1494. -webkit-transition-timing-function: ease-in;
  1495. transition-timing-function: ease-in;
  1496. }
  1497. 60% {
  1498. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  1499. transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  1500. opacity: 1;
  1501. }
  1502. 80% {
  1503. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  1504. transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  1505. }
  1506. 100% {
  1507. -webkit-transform: perspective(400px);
  1508. transform: perspective(400px);
  1509. }
  1510. }
  1511. .flipInY {
  1512. -webkit-backface-visibility: visible !important;
  1513. backface-visibility: visible !important;
  1514. -webkit-animation-name: flipInY;
  1515. animation-name: flipInY;
  1516. }
  1517. @-webkit-keyframes flipOutX {
  1518. 0% {
  1519. -webkit-transform: perspective(400px);
  1520. transform: perspective(400px);
  1521. }
  1522. 30% {
  1523. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1524. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1525. opacity: 1;
  1526. }
  1527. 100% {
  1528. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1529. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1530. opacity: 0;
  1531. }
  1532. }
  1533. @keyframes flipOutX {
  1534. 0% {
  1535. -webkit-transform: perspective(400px);
  1536. transform: perspective(400px);
  1537. }
  1538. 30% {
  1539. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1540. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1541. opacity: 1;
  1542. }
  1543. 100% {
  1544. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1545. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1546. opacity: 0;
  1547. }
  1548. }
  1549. .flipOutX {
  1550. -webkit-animation-name: flipOutX;
  1551. animation-name: flipOutX;
  1552. -webkit-animation-duration: .75s;
  1553. animation-duration: .75s;
  1554. -webkit-backface-visibility: visible !important;
  1555. backface-visibility: visible !important;
  1556. }
  1557. @-webkit-keyframes flipOutY {
  1558. 0% {
  1559. -webkit-transform: perspective(400px);
  1560. transform: perspective(400px);
  1561. }
  1562. 30% {
  1563. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  1564. transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  1565. opacity: 1;
  1566. }
  1567. 100% {
  1568. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1569. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1570. opacity: 0;
  1571. }
  1572. }
  1573. @keyframes flipOutY {
  1574. 0% {
  1575. -webkit-transform: perspective(400px);
  1576. transform: perspective(400px);
  1577. }
  1578. 30% {
  1579. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  1580. transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
  1581. opacity: 1;
  1582. }
  1583. 100% {
  1584. -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1585. transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  1586. opacity: 0;
  1587. }
  1588. }
  1589. .flipOutY {
  1590. -webkit-backface-visibility: visible !important;
  1591. backface-visibility: visible !important;
  1592. -webkit-animation-name: flipOutY;
  1593. animation-name: flipOutY;
  1594. -webkit-animation-duration: .75s;
  1595. animation-duration: .75s;
  1596. }
  1597. @-webkit-keyframes lightSpeedIn {
  1598. 0% {
  1599. -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
  1600. transform: translate3d(100%, 0, 0) skewX(-30deg);
  1601. opacity: 0;
  1602. }
  1603. 60% {
  1604. -webkit-transform: skewX(20deg);
  1605. transform: skewX(20deg);
  1606. opacity: 1;
  1607. }
  1608. 80% {
  1609. -webkit-transform: skewX(-5deg);
  1610. transform: skewX(-5deg);
  1611. opacity: 1;
  1612. }
  1613. 100% {
  1614. -webkit-transform: none;
  1615. transform: none;
  1616. opacity: 1;
  1617. }
  1618. }
  1619. @keyframes lightSpeedIn {
  1620. 0% {
  1621. -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
  1622. transform: translate3d(100%, 0, 0) skewX(-30deg);
  1623. opacity: 0;
  1624. }
  1625. 60% {
  1626. -webkit-transform: skewX(20deg);
  1627. transform: skewX(20deg);
  1628. opacity: 1;
  1629. }
  1630. 80% {
  1631. -webkit-transform: skewX(-5deg);
  1632. transform: skewX(-5deg);
  1633. opacity: 1;
  1634. }
  1635. 100% {
  1636. -webkit-transform: none;
  1637. transform: none;
  1638. opacity: 1;
  1639. }
  1640. }
  1641. .lightSpeedIn {
  1642. -webkit-animation-name: lightSpeedIn;
  1643. animation-name: lightSpeedIn;
  1644. -webkit-animation-timing-function: ease-out;
  1645. animation-timing-function: ease-out;
  1646. }
  1647. @-webkit-keyframes lightSpeedOut {
  1648. 0% {
  1649. opacity: 1;
  1650. }
  1651. 100% {
  1652. -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  1653. transform: translate3d(100%, 0, 0) skewX(30deg);
  1654. opacity: 0;
  1655. }
  1656. }
  1657. @keyframes lightSpeedOut {
  1658. 0% {
  1659. opacity: 1;
  1660. }
  1661. 100% {
  1662. -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  1663. transform: translate3d(100%, 0, 0) skewX(30deg);
  1664. opacity: 0;
  1665. }
  1666. }
  1667. .lightSpeedOut {
  1668. -webkit-animation-name: lightSpeedOut;
  1669. animation-name: lightSpeedOut;
  1670. -webkit-animation-timing-function: ease-in;
  1671. animation-timing-function: ease-in;
  1672. }
  1673. @-webkit-keyframes rotateIn {
  1674. 0% {
  1675. -webkit-transform-origin: center;
  1676. transform-origin: center;
  1677. -webkit-transform: rotate3d(0, 0, 1, -200deg);
  1678. transform: rotate3d(0, 0, 1, -200deg);
  1679. opacity: 0;
  1680. }
  1681. 100% {
  1682. -webkit-transform-origin: center;
  1683. transform-origin: center;
  1684. -webkit-transform: none;
  1685. transform: none;
  1686. opacity: 1;
  1687. }
  1688. }
  1689. @keyframes rotateIn {
  1690. 0% {
  1691. -webkit-transform-origin: center;
  1692. transform-origin: center;
  1693. -webkit-transform: rotate3d(0, 0, 1, -200deg);
  1694. transform: rotate3d(0, 0, 1, -200deg);
  1695. opacity: 0;
  1696. }
  1697. 100% {
  1698. -webkit-transform-origin: center;
  1699. transform-origin: center;
  1700. -webkit-transform: none;
  1701. transform: none;
  1702. opacity: 1;
  1703. }
  1704. }
  1705. .rotateIn {
  1706. -webkit-animation-name: rotateIn;
  1707. animation-name: rotateIn;
  1708. }
  1709. @-webkit-keyframes rotateInDownLeft {
  1710. 0% {
  1711. -webkit-transform-origin: left bottom;
  1712. transform-origin: left bottom;
  1713. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  1714. transform: rotate3d(0, 0, 1, -45deg);
  1715. opacity: 0;
  1716. }
  1717. 100% {
  1718. -webkit-transform-origin: left bottom;
  1719. transform-origin: left bottom;
  1720. -webkit-transform: none;
  1721. transform: none;
  1722. opacity: 1;
  1723. }
  1724. }
  1725. @keyframes rotateInDownLeft {
  1726. 0% {
  1727. -webkit-transform-origin: left bottom;
  1728. transform-origin: left bottom;
  1729. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  1730. transform: rotate3d(0, 0, 1, -45deg);
  1731. opacity: 0;
  1732. }
  1733. 100% {
  1734. -webkit-transform-origin: left bottom;
  1735. transform-origin: left bottom;
  1736. -webkit-transform: none;
  1737. transform: none;
  1738. opacity: 1;
  1739. }
  1740. }
  1741. .rotateInDownLeft {
  1742. -webkit-animation-name: rotateInDownLeft;
  1743. animation-name: rotateInDownLeft;
  1744. }
  1745. @-webkit-keyframes rotateInDownRight {
  1746. 0% {
  1747. -webkit-transform-origin: right bottom;
  1748. transform-origin: right bottom;
  1749. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  1750. transform: rotate3d(0, 0, 1, 45deg);
  1751. opacity: 0;
  1752. }
  1753. 100% {
  1754. -webkit-transform-origin: right bottom;
  1755. transform-origin: right bottom;
  1756. -webkit-transform: none;
  1757. transform: none;
  1758. opacity: 1;
  1759. }
  1760. }
  1761. @keyframes rotateInDownRight {
  1762. 0% {
  1763. -webkit-transform-origin: right bottom;
  1764. transform-origin: right bottom;
  1765. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  1766. transform: rotate3d(0, 0, 1, 45deg);
  1767. opacity: 0;
  1768. }
  1769. 100% {
  1770. -webkit-transform-origin: right bottom;
  1771. transform-origin: right bottom;
  1772. -webkit-transform: none;
  1773. transform: none;
  1774. opacity: 1;
  1775. }
  1776. }
  1777. .rotateInDownRight {
  1778. -webkit-animation-name: rotateInDownRight;
  1779. animation-name: rotateInDownRight;
  1780. }
  1781. @-webkit-keyframes rotateInUpLeft {
  1782. 0% {
  1783. -webkit-transform-origin: left bottom;
  1784. transform-origin: left bottom;
  1785. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  1786. transform: rotate3d(0, 0, 1, 45deg);
  1787. opacity: 0;
  1788. }
  1789. 100% {
  1790. -webkit-transform-origin: left bottom;
  1791. transform-origin: left bottom;
  1792. -webkit-transform: none;
  1793. transform: none;
  1794. opacity: 1;
  1795. }
  1796. }
  1797. @keyframes rotateInUpLeft {
  1798. 0% {
  1799. -webkit-transform-origin: left bottom;
  1800. transform-origin: left bottom;
  1801. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  1802. transform: rotate3d(0, 0, 1, 45deg);
  1803. opacity: 0;
  1804. }
  1805. 100% {
  1806. -webkit-transform-origin: left bottom;
  1807. transform-origin: left bottom;
  1808. -webkit-transform: none;
  1809. transform: none;
  1810. opacity: 1;
  1811. }
  1812. }
  1813. .rotateInUpLeft {
  1814. -webkit-animation-name: rotateInUpLeft;
  1815. animation-name: rotateInUpLeft;
  1816. }
  1817. @-webkit-keyframes rotateInUpRight {
  1818. 0% {
  1819. -webkit-transform-origin: right bottom;
  1820. transform-origin: right bottom;
  1821. -webkit-transform: rotate3d(0, 0, 1, -90deg);
  1822. transform: rotate3d(0, 0, 1, -90deg);
  1823. opacity: 0;
  1824. }
  1825. 100% {
  1826. -webkit-transform-origin: right bottom;
  1827. transform-origin: right bottom;
  1828. -webkit-transform: none;
  1829. transform: none;
  1830. opacity: 1;
  1831. }
  1832. }
  1833. @keyframes rotateInUpRight {
  1834. 0% {
  1835. -webkit-transform-origin: right bottom;
  1836. transform-origin: right bottom;
  1837. -webkit-transform: rotate3d(0, 0, 1, -90deg);
  1838. transform: rotate3d(0, 0, 1, -90deg);
  1839. opacity: 0;
  1840. }
  1841. 100% {
  1842. -webkit-transform-origin: right bottom;
  1843. transform-origin: right bottom;
  1844. -webkit-transform: none;
  1845. transform: none;
  1846. opacity: 1;
  1847. }
  1848. }
  1849. .rotateInUpRight {
  1850. -webkit-animation-name: rotateInUpRight;
  1851. animation-name: rotateInUpRight;
  1852. }
  1853. @-webkit-keyframes rotateOut {
  1854. 0% {
  1855. -webkit-transform-origin: center;
  1856. transform-origin: center;
  1857. opacity: 1;
  1858. }
  1859. 100% {
  1860. -webkit-transform-origin: center;
  1861. transform-origin: center;
  1862. -webkit-transform: rotate3d(0, 0, 1, 200deg);
  1863. transform: rotate3d(0, 0, 1, 200deg);
  1864. opacity: 0;
  1865. }
  1866. }
  1867. @keyframes rotateOut {
  1868. 0% {
  1869. -webkit-transform-origin: center;
  1870. transform-origin: center;
  1871. opacity: 1;
  1872. }
  1873. 100% {
  1874. -webkit-transform-origin: center;
  1875. transform-origin: center;
  1876. -webkit-transform: rotate3d(0, 0, 1, 200deg);
  1877. transform: rotate3d(0, 0, 1, 200deg);
  1878. opacity: 0;
  1879. }
  1880. }
  1881. .rotateOut {
  1882. -webkit-animation-name: rotateOut;
  1883. animation-name: rotateOut;
  1884. }
  1885. @-webkit-keyframes rotateOutDownLeft {
  1886. 0% {
  1887. -webkit-transform-origin: left bottom;
  1888. transform-origin: left bottom;
  1889. opacity: 1;
  1890. }
  1891. 100% {
  1892. -webkit-transform-origin: left bottom;
  1893. transform-origin: left bottom;
  1894. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  1895. transform: rotate3d(0, 0, 1, 45deg);
  1896. opacity: 0;
  1897. }
  1898. }
  1899. @keyframes rotateOutDownLeft {
  1900. 0% {
  1901. -webkit-transform-origin: left bottom;
  1902. transform-origin: left bottom;
  1903. opacity: 1;
  1904. }
  1905. 100% {
  1906. -webkit-transform-origin: left bottom;
  1907. transform-origin: left bottom;
  1908. -webkit-transform: rotate3d(0, 0, 1, 45deg);
  1909. transform: rotate3d(0, 0, 1, 45deg);
  1910. opacity: 0;
  1911. }
  1912. }
  1913. .rotateOutDownLeft {
  1914. -webkit-animation-name: rotateOutDownLeft;
  1915. animation-name: rotateOutDownLeft;
  1916. }
  1917. @-webkit-keyframes rotateOutDownRight {
  1918. 0% {
  1919. -webkit-transform-origin: right bottom;
  1920. transform-origin: right bottom;
  1921. opacity: 1;
  1922. }
  1923. 100% {
  1924. -webkit-transform-origin: right bottom;
  1925. transform-origin: right bottom;
  1926. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  1927. transform: rotate3d(0, 0, 1, -45deg);
  1928. opacity: 0;
  1929. }
  1930. }
  1931. @keyframes rotateOutDownRight {
  1932. 0% {
  1933. -webkit-transform-origin: right bottom;
  1934. transform-origin: right bottom;
  1935. opacity: 1;
  1936. }
  1937. 100% {
  1938. -webkit-transform-origin: right bottom;
  1939. transform-origin: right bottom;
  1940. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  1941. transform: rotate3d(0, 0, 1, -45deg);
  1942. opacity: 0;
  1943. }
  1944. }
  1945. .rotateOutDownRight {
  1946. -webkit-animation-name: rotateOutDownRight;
  1947. animation-name: rotateOutDownRight;
  1948. }
  1949. @-webkit-keyframes rotateOutUpLeft {
  1950. 0% {
  1951. -webkit-transform-origin: left bottom;
  1952. transform-origin: left bottom;
  1953. opacity: 1;
  1954. }
  1955. 100% {
  1956. -webkit-transform-origin: left bottom;
  1957. transform-origin: left bottom;
  1958. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  1959. transform: rotate3d(0, 0, 1, -45deg);
  1960. opacity: 0;
  1961. }
  1962. }
  1963. @keyframes rotateOutUpLeft {
  1964. 0% {
  1965. -webkit-transform-origin: left bottom;
  1966. transform-origin: left bottom;
  1967. opacity: 1;
  1968. }
  1969. 100% {
  1970. -webkit-transform-origin: left bottom;
  1971. transform-origin: left bottom;
  1972. -webkit-transform: rotate3d(0, 0, 1, -45deg);
  1973. transform: rotate3d(0, 0, 1, -45deg);
  1974. opacity: 0;
  1975. }
  1976. }
  1977. .rotateOutUpLeft {
  1978. -webkit-animation-name: rotateOutUpLeft;
  1979. animation-name: rotateOutUpLeft;
  1980. }
  1981. @-webkit-keyframes rotateOutUpRight {
  1982. 0% {
  1983. -webkit-transform-origin: right bottom;
  1984. transform-origin: right bottom;
  1985. opacity: 1;
  1986. }
  1987. 100% {
  1988. -webkit-transform-origin: right bottom;
  1989. transform-origin: right bottom;
  1990. -webkit-transform: rotate3d(0, 0, 1, 90deg);
  1991. transform: rotate3d(0, 0, 1, 90deg);
  1992. opacity: 0;
  1993. }
  1994. }
  1995. @keyframes rotateOutUpRight {
  1996. 0% {
  1997. -webkit-transform-origin: right bottom;
  1998. transform-origin: right bottom;
  1999. opacity: 1;
  2000. }
  2001. 100% {
  2002. -webkit-transform-origin: right bottom;
  2003. transform-origin: right bottom;
  2004. -webkit-transform: rotate3d(0, 0, 1, 90deg);
  2005. transform: rotate3d(0, 0, 1, 90deg);
  2006. opacity: 0;
  2007. }
  2008. }
  2009. .rotateOutUpRight {
  2010. -webkit-animation-name: rotateOutUpRight;
  2011. animation-name: rotateOutUpRight;
  2012. }
  2013. @-webkit-keyframes hinge {
  2014. 0% {
  2015. -webkit-transform-origin: top left;
  2016. transform-origin: top left;
  2017. -webkit-animation-timing-function: ease-in-out;
  2018. animation-timing-function: ease-in-out;
  2019. }
  2020. 20%, 60% {
  2021. -webkit-transform: rotate3d(0, 0, 1, 80deg);
  2022. transform: rotate3d(0, 0, 1, 80deg);
  2023. -webkit-transform-origin: top left;
  2024. transform-origin: top left;
  2025. -webkit-animation-timing-function: ease-in-out;
  2026. animation-timing-function: ease-in-out;
  2027. }
  2028. 40%, 80% {
  2029. -webkit-transform: rotate3d(0, 0, 1, 60deg);
  2030. transform: rotate3d(0, 0, 1, 60deg);
  2031. -webkit-transform-origin: top left;
  2032. transform-origin: top left;
  2033. -webkit-animation-timing-function: ease-in-out;
  2034. animation-timing-function: ease-in-out;
  2035. opacity: 1;
  2036. }
  2037. 100% {
  2038. -webkit-transform: translate3d(0, 700px, 0);
  2039. transform: translate3d(0, 700px, 0);
  2040. opacity: 0;
  2041. }
  2042. }
  2043. @keyframes hinge {
  2044. 0% {
  2045. -webkit-transform-origin: top left;
  2046. transform-origin: top left;
  2047. -webkit-animation-timing-function: ease-in-out;
  2048. animation-timing-function: ease-in-out;
  2049. }
  2050. 20%, 60% {
  2051. -webkit-transform: rotate3d(0, 0, 1, 80deg);
  2052. transform: rotate3d(0, 0, 1, 80deg);
  2053. -webkit-transform-origin: top left;
  2054. transform-origin: top left;
  2055. -webkit-animation-timing-function: ease-in-out;
  2056. animation-timing-function: ease-in-out;
  2057. }
  2058. 40%, 80% {
  2059. -webkit-transform: rotate3d(0, 0, 1, 60deg);
  2060. transform: rotate3d(0, 0, 1, 60deg);
  2061. -webkit-transform-origin: top left;
  2062. transform-origin: top left;
  2063. -webkit-animation-timing-function: ease-in-out;
  2064. animation-timing-function: ease-in-out;
  2065. opacity: 1;
  2066. }
  2067. 100% {
  2068. -webkit-transform: translate3d(0, 700px, 0);
  2069. transform: translate3d(0, 700px, 0);
  2070. opacity: 0;
  2071. }
  2072. }
  2073. .hinge {
  2074. -webkit-animation-name: hinge;
  2075. animation-name: hinge;
  2076. }
  2077. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  2078. @-webkit-keyframes rollIn {
  2079. 0% {
  2080. opacity: 0;
  2081. -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  2082. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  2083. }
  2084. 100% {
  2085. opacity: 1;
  2086. -webkit-transform: none;
  2087. transform: none;
  2088. }
  2089. }
  2090. @keyframes rollIn {
  2091. 0% {
  2092. opacity: 0;
  2093. -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  2094. transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  2095. }
  2096. 100% {
  2097. opacity: 1;
  2098. -webkit-transform: none;
  2099. transform: none;
  2100. }
  2101. }
  2102. .rollIn {
  2103. -webkit-animation-name: rollIn;
  2104. animation-name: rollIn;
  2105. }
  2106. /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  2107. @-webkit-keyframes rollOut {
  2108. 0% {
  2109. opacity: 1;
  2110. }
  2111. 100% {
  2112. opacity: 0;
  2113. -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  2114. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  2115. }
  2116. }
  2117. @keyframes rollOut {
  2118. 0% {
  2119. opacity: 1;
  2120. }
  2121. 100% {
  2122. opacity: 0;
  2123. -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  2124. transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  2125. }
  2126. }
  2127. .rollOut {
  2128. -webkit-animation-name: rollOut;
  2129. animation-name: rollOut;
  2130. }
  2131. @-webkit-keyframes zoomIn {
  2132. 0% {
  2133. opacity: 0;
  2134. -webkit-transform: scale3d(.3, .3, .3);
  2135. transform: scale3d(.3, .3, .3);
  2136. }
  2137. 50% {
  2138. opacity: 1;
  2139. }
  2140. }
  2141. @keyframes zoomIn {
  2142. 0% {
  2143. opacity: 0;
  2144. -webkit-transform: scale3d(.3, .3, .3);
  2145. transform: scale3d(.3, .3, .3);
  2146. }
  2147. 50% {
  2148. opacity: 1;
  2149. }
  2150. }
  2151. .zoomIn {
  2152. -webkit-animation-name: zoomIn;
  2153. animation-name: zoomIn;
  2154. }
  2155. @-webkit-keyframes zoomInDown {
  2156. 0% {
  2157. opacity: 0;
  2158. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  2159. transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  2160. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2161. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2162. }
  2163. 60% {
  2164. opacity: 1;
  2165. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2166. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2167. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2168. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2169. }
  2170. }
  2171. @keyframes zoomInDown {
  2172. 0% {
  2173. opacity: 0;
  2174. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  2175. transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
  2176. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2177. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2178. }
  2179. 60% {
  2180. opacity: 1;
  2181. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2182. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2183. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2184. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2185. }
  2186. }
  2187. .zoomInDown {
  2188. -webkit-animation-name: zoomInDown;
  2189. animation-name: zoomInDown;
  2190. }
  2191. @-webkit-keyframes zoomInLeft {
  2192. 0% {
  2193. opacity: 0;
  2194. -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  2195. transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  2196. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2197. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2198. }
  2199. 60% {
  2200. opacity: 1;
  2201. -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  2202. transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  2203. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2204. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2205. }
  2206. }
  2207. @keyframes zoomInLeft {
  2208. 0% {
  2209. opacity: 0;
  2210. -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  2211. transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
  2212. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2213. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2214. }
  2215. 60% {
  2216. opacity: 1;
  2217. -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  2218. transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
  2219. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2220. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2221. }
  2222. }
  2223. .zoomInLeft {
  2224. -webkit-animation-name: zoomInLeft;
  2225. animation-name: zoomInLeft;
  2226. }
  2227. @-webkit-keyframes zoomInRight {
  2228. 0% {
  2229. opacity: 0;
  2230. -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  2231. transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  2232. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2233. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2234. }
  2235. 60% {
  2236. opacity: 1;
  2237. -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  2238. transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  2239. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2240. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2241. }
  2242. }
  2243. @keyframes zoomInRight {
  2244. 0% {
  2245. opacity: 0;
  2246. -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  2247. transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
  2248. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2249. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2250. }
  2251. 60% {
  2252. opacity: 1;
  2253. -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  2254. transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
  2255. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2256. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2257. }
  2258. }
  2259. .zoomInRight {
  2260. -webkit-animation-name: zoomInRight;
  2261. animation-name: zoomInRight;
  2262. }
  2263. @-webkit-keyframes zoomInUp {
  2264. 0% {
  2265. opacity: 0;
  2266. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  2267. transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  2268. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2269. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2270. }
  2271. 60% {
  2272. opacity: 1;
  2273. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2274. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2275. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2276. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2277. }
  2278. }
  2279. @keyframes zoomInUp {
  2280. 0% {
  2281. opacity: 0;
  2282. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  2283. transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
  2284. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2285. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2286. }
  2287. 60% {
  2288. opacity: 1;
  2289. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2290. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2291. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2292. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2293. }
  2294. }
  2295. .zoomInUp {
  2296. -webkit-animation-name: zoomInUp;
  2297. animation-name: zoomInUp;
  2298. }
  2299. @-webkit-keyframes zoomOut {
  2300. 0% {
  2301. opacity: 1;
  2302. }
  2303. 50% {
  2304. opacity: 0;
  2305. -webkit-transform: scale3d(.3, .3, .3);
  2306. transform: scale3d(.3, .3, .3);
  2307. }
  2308. 100% {
  2309. opacity: 0;
  2310. }
  2311. }
  2312. @keyframes zoomOut {
  2313. 0% {
  2314. opacity: 1;
  2315. }
  2316. 50% {
  2317. opacity: 0;
  2318. -webkit-transform: scale3d(.3, .3, .3);
  2319. transform: scale3d(.3, .3, .3);
  2320. }
  2321. 100% {
  2322. opacity: 0;
  2323. }
  2324. }
  2325. .zoomOut {
  2326. -webkit-animation-name: zoomOut;
  2327. animation-name: zoomOut;
  2328. }
  2329. @-webkit-keyframes zoomOutDown {
  2330. 40% {
  2331. opacity: 1;
  2332. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2333. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2334. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2335. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2336. }
  2337. 100% {
  2338. opacity: 0;
  2339. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
  2340. transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
  2341. -webkit-transform-origin: center bottom;
  2342. transform-origin: center bottom;
  2343. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2344. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2345. }
  2346. }
  2347. @keyframes zoomOutDown {
  2348. 40% {
  2349. opacity: 1;
  2350. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2351. transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
  2352. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2353. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2354. }
  2355. 100% {
  2356. opacity: 0;
  2357. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
  2358. transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
  2359. -webkit-transform-origin: center bottom;
  2360. transform-origin: center bottom;
  2361. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2362. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2363. }
  2364. }
  2365. .zoomOutDown {
  2366. -webkit-animation-name: zoomOutDown;
  2367. animation-name: zoomOutDown;
  2368. }
  2369. @-webkit-keyframes zoomOutLeft {
  2370. 40% {
  2371. opacity: 1;
  2372. -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  2373. transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  2374. }
  2375. 100% {
  2376. opacity: 0;
  2377. -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
  2378. transform: scale(.1) translate3d(-2000px, 0, 0);
  2379. -webkit-transform-origin: left center;
  2380. transform-origin: left center;
  2381. }
  2382. }
  2383. @keyframes zoomOutLeft {
  2384. 40% {
  2385. opacity: 1;
  2386. -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  2387. transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  2388. }
  2389. 100% {
  2390. opacity: 0;
  2391. -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
  2392. transform: scale(.1) translate3d(-2000px, 0, 0);
  2393. -webkit-transform-origin: left center;
  2394. transform-origin: left center;
  2395. }
  2396. }
  2397. .zoomOutLeft {
  2398. -webkit-animation-name: zoomOutLeft;
  2399. animation-name: zoomOutLeft;
  2400. }
  2401. @-webkit-keyframes zoomOutRight {
  2402. 40% {
  2403. opacity: 1;
  2404. -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  2405. transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  2406. }
  2407. 100% {
  2408. opacity: 0;
  2409. -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
  2410. transform: scale(.1) translate3d(2000px, 0, 0);
  2411. -webkit-transform-origin: right center;
  2412. transform-origin: right center;
  2413. }
  2414. }
  2415. @keyframes zoomOutRight {
  2416. 40% {
  2417. opacity: 1;
  2418. -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  2419. transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  2420. }
  2421. 100% {
  2422. opacity: 0;
  2423. -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
  2424. transform: scale(.1) translate3d(2000px, 0, 0);
  2425. -webkit-transform-origin: right center;
  2426. transform-origin: right center;
  2427. }
  2428. }
  2429. .zoomOutRight {
  2430. -webkit-animation-name: zoomOutRight;
  2431. animation-name: zoomOutRight;
  2432. }
  2433. @-webkit-keyframes zoomOutUp {
  2434. 40% {
  2435. opacity: 1;
  2436. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2437. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2438. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2439. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2440. }
  2441. 100% {
  2442. opacity: 0;
  2443. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
  2444. transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
  2445. -webkit-transform-origin: center bottom;
  2446. transform-origin: center bottom;
  2447. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2448. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2449. }
  2450. }
  2451. @keyframes zoomOutUp {
  2452. 40% {
  2453. opacity: 1;
  2454. -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2455. transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
  2456. -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2457. animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  2458. }
  2459. 100% {
  2460. opacity: 0;
  2461. -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
  2462. transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
  2463. -webkit-transform-origin: center bottom;
  2464. transform-origin: center bottom;
  2465. -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2466. animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  2467. }
  2468. }
  2469. .zoomOutUp {
  2470. -webkit-animation-name: zoomOutUp;
  2471. animation-name: zoomOutUp;
  2472. }
  2473. @-webkit-keyframes slideInDown {
  2474. 0% {
  2475. -webkit-transform: translateY(-100%);
  2476. transform: translateY(-100%);
  2477. visibility: visible;
  2478. }
  2479. 100% {
  2480. -webkit-transform: translateY(0);
  2481. transform: translateY(0);
  2482. }
  2483. }
  2484. @keyframes slideInDown {
  2485. 0% {
  2486. -webkit-transform: translateY(-100%);
  2487. transform: translateY(-100%);
  2488. visibility: visible;
  2489. }
  2490. 100% {
  2491. -webkit-transform: translateY(0);
  2492. transform: translateY(0);
  2493. }
  2494. }
  2495. .slideInDown {
  2496. -webkit-animation-name: slideInDown;
  2497. animation-name: slideInDown;
  2498. }
  2499. @-webkit-keyframes slideInLeft {
  2500. 0% {
  2501. -webkit-transform: translateX(-100%);
  2502. transform: translateX(-100%);
  2503. visibility: visible;
  2504. }
  2505. 100% {
  2506. -webkit-transform: translateX(0);
  2507. transform: translateX(0);
  2508. }
  2509. }
  2510. @keyframes slideInLeft {
  2511. 0% {
  2512. -webkit-transform: translateX(-100%);
  2513. transform: translateX(-100%);
  2514. visibility: visible;
  2515. }
  2516. 100% {
  2517. -webkit-transform: translateX(0);
  2518. transform: translateX(0);
  2519. }
  2520. }
  2521. .slideInLeft {
  2522. -webkit-animation-name: slideInLeft;
  2523. animation-name: slideInLeft;
  2524. }
  2525. @-webkit-keyframes slideInRight {
  2526. 0% {
  2527. -webkit-transform: translateX(100%);
  2528. transform: translateX(100%);
  2529. visibility: visible;
  2530. }
  2531. 100% {
  2532. -webkit-transform: translateX(0);
  2533. transform: translateX(0);
  2534. }
  2535. }
  2536. @keyframes slideInRight {
  2537. 0% {
  2538. -webkit-transform: translateX(100%);
  2539. transform: translateX(100%);
  2540. visibility: visible;
  2541. }
  2542. 100% {
  2543. -webkit-transform: translateX(0);
  2544. transform: translateX(0);
  2545. }
  2546. }
  2547. .slideInRight {
  2548. -webkit-animation-name: slideInRight;
  2549. animation-name: slideInRight;
  2550. }
  2551. @-webkit-keyframes slideInUp {
  2552. 0% {
  2553. -webkit-transform: translateY(100%);
  2554. transform: translateY(100%);
  2555. visibility: visible;
  2556. }
  2557. 100% {
  2558. -webkit-transform: translateY(0);
  2559. transform: translateY(0);
  2560. }
  2561. }
  2562. @keyframes slideInUp {
  2563. 0% {
  2564. -webkit-transform: translateY(100%);
  2565. transform: translateY(100%);
  2566. visibility: visible;
  2567. }
  2568. 100% {
  2569. -webkit-transform: translateY(0);
  2570. transform: translateY(0);
  2571. }
  2572. }
  2573. .slideInUp {
  2574. -webkit-animation-name: slideInUp;
  2575. animation-name: slideInUp;
  2576. }
  2577. @-webkit-keyframes slideOutDown {
  2578. 0% {
  2579. -webkit-transform: translateY(0);
  2580. transform: translateY(0);
  2581. }
  2582. 100% {
  2583. visibility: hidden;
  2584. -webkit-transform: translateY(100%);
  2585. transform: translateY(100%);
  2586. }
  2587. }
  2588. @keyframes slideOutDown {
  2589. 0% {
  2590. -webkit-transform: translateY(0);
  2591. transform: translateY(0);
  2592. }
  2593. 100% {
  2594. visibility: hidden;
  2595. -webkit-transform: translateY(100%);
  2596. transform: translateY(100%);
  2597. }
  2598. }
  2599. .slideOutDown {
  2600. -webkit-animation-name: slideOutDown;
  2601. animation-name: slideOutDown;
  2602. }
  2603. @-webkit-keyframes slideOutLeft {
  2604. 0% {
  2605. -webkit-transform: translateX(0);
  2606. transform: translateX(0);
  2607. }
  2608. 100% {
  2609. visibility: hidden;
  2610. -webkit-transform: translateX(-100%);
  2611. transform: translateX(-100%);
  2612. }
  2613. }
  2614. @keyframes slideOutLeft {
  2615. 0% {
  2616. -webkit-transform: translateX(0);
  2617. transform: translateX(0);
  2618. }
  2619. 100% {
  2620. visibility: hidden;
  2621. -webkit-transform: translateX(-100%);
  2622. transform: translateX(-100%);
  2623. }
  2624. }
  2625. .slideOutLeft {
  2626. -webkit-animation-name: slideOutLeft;
  2627. animation-name: slideOutLeft;
  2628. }
  2629. @-webkit-keyframes slideOutRight {
  2630. 0% {
  2631. -webkit-transform: translateX(0);
  2632. transform: translateX(0);
  2633. }
  2634. 100% {
  2635. visibility: hidden;
  2636. -webkit-transform: translateX(100%);
  2637. transform: translateX(100%);
  2638. }
  2639. }
  2640. @keyframes slideOutRight {
  2641. 0% {
  2642. -webkit-transform: translateX(0);
  2643. transform: translateX(0);
  2644. }
  2645. 100% {
  2646. visibility: hidden;
  2647. -webkit-transform: translateX(100%);
  2648. transform: translateX(100%);
  2649. }
  2650. }
  2651. .slideOutRight {
  2652. -webkit-animation-name: slideOutRight;
  2653. animation-name: slideOutRight;
  2654. }
  2655. @-webkit-keyframes slideOutUp {
  2656. 0% {
  2657. -webkit-transform: translateY(0);
  2658. transform: translateY(0);
  2659. }
  2660. 100% {
  2661. visibility: hidden;
  2662. -webkit-transform: translateY(-100%);
  2663. transform: translateY(-100%);
  2664. }
  2665. }
  2666. @keyframes slideOutUp {
  2667. 0% {
  2668. -webkit-transform: translateY(0);
  2669. transform: translateY(0);
  2670. }
  2671. 100% {
  2672. visibility: hidden;
  2673. -webkit-transform: translateY(-100%);
  2674. transform: translateY(-100%);
  2675. }
  2676. }
  2677. .slideOutUp {
  2678. -webkit-animation-name: slideOutUp;
  2679. animation-name: slideOutUp;
  2680. }