animate.css 71 KB

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