Нема описа

hover.css 129KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944
  1. /*!
  2. * Hover.css (http://ianlunn.github.io/Hover/)
  3. * Version: 2.0.2
  4. * Author: Ian Lunn @IanLunn
  5. * Author URL: http://ianlunn.co.uk/
  6. * Github: https://github.com/IanLunn/Hover
  7. * Made available under a MIT License:
  8. * http://www.opensource.org/licenses/mit-license.php
  9. * Hover.css Copyright Ian Lunn 2014. Generated with Sass.
  10. */
  11. /* 2D TRANSITIONS */
  12. /* Grow */
  13. .hvr-grow {
  14. display: inline-block;
  15. vertical-align: middle;
  16. -webkit-transform: translateZ(0);
  17. transform: translateZ(0);
  18. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  19. -webkit-backface-visibility: hidden;
  20. backface-visibility: hidden;
  21. -moz-osx-font-smoothing: grayscale;
  22. -webkit-transition-duration: 0.3s;
  23. transition-duration: 0.3s;
  24. -webkit-transition-property: transform;
  25. transition-property: transform;
  26. }
  27. .hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  28. -webkit-transform: scale(1.1);
  29. transform: scale(1.1);
  30. }
  31. /* Shrink */
  32. .hvr-shrink {
  33. display: inline-block;
  34. vertical-align: middle;
  35. -webkit-transform: translateZ(0);
  36. transform: translateZ(0);
  37. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  38. -webkit-backface-visibility: hidden;
  39. backface-visibility: hidden;
  40. -moz-osx-font-smoothing: grayscale;
  41. -webkit-transition-duration: 0.3s;
  42. transition-duration: 0.3s;
  43. -webkit-transition-property: transform;
  44. transition-property: transform;
  45. }
  46. .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  47. -webkit-transform: scale(0.9);
  48. transform: scale(0.9);
  49. }
  50. /* Pulse */
  51. @-webkit-keyframes hvr-pulse {
  52. 25% {
  53. -webkit-transform: scale(1.1);
  54. transform: scale(1.1);
  55. }
  56. 75% {
  57. -webkit-transform: scale(0.9);
  58. transform: scale(0.9);
  59. }
  60. }
  61. @keyframes hvr-pulse {
  62. 25% {
  63. -webkit-transform: scale(1.1);
  64. transform: scale(1.1);
  65. }
  66. 75% {
  67. -webkit-transform: scale(0.9);
  68. transform: scale(0.9);
  69. }
  70. }
  71. .hvr-pulse {
  72. display: inline-block;
  73. vertical-align: middle;
  74. -webkit-transform: translateZ(0);
  75. transform: translateZ(0);
  76. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  77. -webkit-backface-visibility: hidden;
  78. backface-visibility: hidden;
  79. -moz-osx-font-smoothing: grayscale;
  80. }
  81. .hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  82. -webkit-animation-name: hvr-pulse;
  83. animation-name: hvr-pulse;
  84. -webkit-animation-duration: 1s;
  85. animation-duration: 1s;
  86. -webkit-animation-timing-function: linear;
  87. animation-timing-function: linear;
  88. -webkit-animation-iteration-count: infinite;
  89. animation-iteration-count: infinite;
  90. }
  91. /* Pulse Grow */
  92. @-webkit-keyframes hvr-pulse-grow {
  93. to {
  94. -webkit-transform: scale(1.1);
  95. transform: scale(1.1);
  96. }
  97. }
  98. @keyframes hvr-pulse-grow {
  99. to {
  100. -webkit-transform: scale(1.1);
  101. transform: scale(1.1);
  102. }
  103. }
  104. .hvr-pulse-grow {
  105. display: inline-block;
  106. vertical-align: middle;
  107. -webkit-transform: translateZ(0);
  108. transform: translateZ(0);
  109. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  110. -webkit-backface-visibility: hidden;
  111. backface-visibility: hidden;
  112. -moz-osx-font-smoothing: grayscale;
  113. }
  114. .hvr-pulse-grow:hover, .hvr-pulse-grow:focus, .hvr-pulse-grow:active {
  115. -webkit-animation-name: hvr-pulse-grow;
  116. animation-name: hvr-pulse-grow;
  117. -webkit-animation-duration: 0.3s;
  118. animation-duration: 0.3s;
  119. -webkit-animation-timing-function: linear;
  120. animation-timing-function: linear;
  121. -webkit-animation-iteration-count: infinite;
  122. animation-iteration-count: infinite;
  123. -webkit-animation-direction: alternate;
  124. animation-direction: alternate;
  125. }
  126. /* Pulse Shrink */
  127. @-webkit-keyframes hvr-pulse-shrink {
  128. to {
  129. -webkit-transform: scale(0.9);
  130. transform: scale(0.9);
  131. }
  132. }
  133. @keyframes hvr-pulse-shrink {
  134. to {
  135. -webkit-transform: scale(0.9);
  136. transform: scale(0.9);
  137. }
  138. }
  139. .hvr-pulse-shrink {
  140. display: inline-block;
  141. vertical-align: middle;
  142. -webkit-transform: translateZ(0);
  143. transform: translateZ(0);
  144. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  145. -webkit-backface-visibility: hidden;
  146. backface-visibility: hidden;
  147. -moz-osx-font-smoothing: grayscale;
  148. }
  149. .hvr-pulse-shrink:hover, .hvr-pulse-shrink:focus, .hvr-pulse-shrink:active {
  150. -webkit-animation-name: hvr-pulse-shrink;
  151. animation-name: hvr-pulse-shrink;
  152. -webkit-animation-duration: 0.3s;
  153. animation-duration: 0.3s;
  154. -webkit-animation-timing-function: linear;
  155. animation-timing-function: linear;
  156. -webkit-animation-iteration-count: infinite;
  157. animation-iteration-count: infinite;
  158. -webkit-animation-direction: alternate;
  159. animation-direction: alternate;
  160. }
  161. /* Push */
  162. @-webkit-keyframes hvr-push {
  163. 50% {
  164. -webkit-transform: scale(0.8);
  165. transform: scale(0.8);
  166. }
  167. 100% {
  168. -webkit-transform: scale(1);
  169. transform: scale(1);
  170. }
  171. }
  172. @keyframes hvr-push {
  173. 50% {
  174. -webkit-transform: scale(0.8);
  175. transform: scale(0.8);
  176. }
  177. 100% {
  178. -webkit-transform: scale(1);
  179. transform: scale(1);
  180. }
  181. }
  182. .hvr-push {
  183. display: inline-block;
  184. vertical-align: middle;
  185. -webkit-transform: translateZ(0);
  186. transform: translateZ(0);
  187. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  188. -webkit-backface-visibility: hidden;
  189. backface-visibility: hidden;
  190. -moz-osx-font-smoothing: grayscale;
  191. }
  192. .hvr-push:hover, .hvr-push:focus, .hvr-push:active {
  193. -webkit-animation-name: hvr-push;
  194. animation-name: hvr-push;
  195. -webkit-animation-duration: 0.3s;
  196. animation-duration: 0.3s;
  197. -webkit-animation-timing-function: linear;
  198. animation-timing-function: linear;
  199. -webkit-animation-iteration-count: 1;
  200. animation-iteration-count: 1;
  201. }
  202. /* Pop */
  203. @-webkit-keyframes hvr-pop {
  204. 50% {
  205. -webkit-transform: scale(1.2);
  206. transform: scale(1.2);
  207. }
  208. }
  209. @keyframes hvr-pop {
  210. 50% {
  211. -webkit-transform: scale(1.2);
  212. transform: scale(1.2);
  213. }
  214. }
  215. .hvr-pop {
  216. display: inline-block;
  217. vertical-align: middle;
  218. -webkit-transform: translateZ(0);
  219. transform: translateZ(0);
  220. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  221. -webkit-backface-visibility: hidden;
  222. backface-visibility: hidden;
  223. -moz-osx-font-smoothing: grayscale;
  224. }
  225. .hvr-pop:hover, .hvr-pop:focus, .hvr-pop:active {
  226. -webkit-animation-name: hvr-pop;
  227. animation-name: hvr-pop;
  228. -webkit-animation-duration: 0.3s;
  229. animation-duration: 0.3s;
  230. -webkit-animation-timing-function: linear;
  231. animation-timing-function: linear;
  232. -webkit-animation-iteration-count: 1;
  233. animation-iteration-count: 1;
  234. }
  235. /* Bounce In */
  236. .hvr-bounce-in {
  237. display: inline-block;
  238. vertical-align: middle;
  239. -webkit-transform: translateZ(0);
  240. transform: translateZ(0);
  241. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  242. -webkit-backface-visibility: hidden;
  243. backface-visibility: hidden;
  244. -moz-osx-font-smoothing: grayscale;
  245. -webkit-transition-duration: 0.5s;
  246. transition-duration: 0.5s;
  247. }
  248. .hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active {
  249. -webkit-transform: scale(1.2);
  250. transform: scale(1.2);
  251. -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  252. transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  253. }
  254. /* Bounce Out */
  255. .hvr-bounce-out {
  256. display: inline-block;
  257. vertical-align: middle;
  258. -webkit-transform: translateZ(0);
  259. transform: translateZ(0);
  260. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  261. -webkit-backface-visibility: hidden;
  262. backface-visibility: hidden;
  263. -moz-osx-font-smoothing: grayscale;
  264. -webkit-transition-duration: 0.5s;
  265. transition-duration: 0.5s;
  266. }
  267. .hvr-bounce-out:hover, .hvr-bounce-out:focus, .hvr-bounce-out:active {
  268. -webkit-transform: scale(0.8);
  269. transform: scale(0.8);
  270. -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  271. transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  272. }
  273. /* Rotate */
  274. .hvr-rotate {
  275. display: inline-block;
  276. vertical-align: middle;
  277. -webkit-transform: translateZ(0);
  278. transform: translateZ(0);
  279. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  280. -webkit-backface-visibility: hidden;
  281. backface-visibility: hidden;
  282. -moz-osx-font-smoothing: grayscale;
  283. -webkit-transition-duration: 0.3s;
  284. transition-duration: 0.3s;
  285. -webkit-transition-property: transform;
  286. transition-property: transform;
  287. }
  288. .hvr-rotate:hover, .hvr-rotate:focus, .hvr-rotate:active {
  289. -webkit-transform: rotate(4deg);
  290. transform: rotate(4deg);
  291. }
  292. /* Grow Rotate */
  293. .hvr-grow-rotate {
  294. display: inline-block;
  295. vertical-align: middle;
  296. -webkit-transform: translateZ(0);
  297. transform: translateZ(0);
  298. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  299. -webkit-backface-visibility: hidden;
  300. backface-visibility: hidden;
  301. -moz-osx-font-smoothing: grayscale;
  302. -webkit-transition-duration: 0.3s;
  303. transition-duration: 0.3s;
  304. -webkit-transition-property: transform;
  305. transition-property: transform;
  306. }
  307. .hvr-grow-rotate:hover, .hvr-grow-rotate:focus, .hvr-grow-rotate:active {
  308. -webkit-transform: scale(1.1) rotate(4deg);
  309. transform: scale(1.1) rotate(4deg);
  310. }
  311. /* Float */
  312. .hvr-float {
  313. display: inline-block;
  314. vertical-align: middle;
  315. -webkit-transform: translateZ(0);
  316. transform: translateZ(0);
  317. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  318. -webkit-backface-visibility: hidden;
  319. backface-visibility: hidden;
  320. -moz-osx-font-smoothing: grayscale;
  321. -webkit-transition-duration: 0.3s;
  322. transition-duration: 0.3s;
  323. -webkit-transition-property: transform;
  324. transition-property: transform;
  325. -webkit-transition-timing-function: ease-out;
  326. transition-timing-function: ease-out;
  327. }
  328. .hvr-float:hover, .hvr-float:focus, .hvr-float:active {
  329. -webkit-transform: translateY(-8px);
  330. transform: translateY(-8px);
  331. }
  332. /* Sink */
  333. .hvr-sink {
  334. display: inline-block;
  335. vertical-align: middle;
  336. -webkit-transform: translateZ(0);
  337. transform: translateZ(0);
  338. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  339. -webkit-backface-visibility: hidden;
  340. backface-visibility: hidden;
  341. -moz-osx-font-smoothing: grayscale;
  342. -webkit-transition-duration: 0.3s;
  343. transition-duration: 0.3s;
  344. -webkit-transition-property: transform;
  345. transition-property: transform;
  346. -webkit-transition-timing-function: ease-out;
  347. transition-timing-function: ease-out;
  348. }
  349. .hvr-sink:hover, .hvr-sink:focus, .hvr-sink:active {
  350. -webkit-transform: translateY(8px);
  351. transform: translateY(8px);
  352. }
  353. /* Bob */
  354. @-webkit-keyframes hvr-bob {
  355. 0% {
  356. -webkit-transform: translateY(-8px);
  357. transform: translateY(-8px);
  358. }
  359. 50% {
  360. -webkit-transform: translateY(-4px);
  361. transform: translateY(-4px);
  362. }
  363. 100% {
  364. -webkit-transform: translateY(-8px);
  365. transform: translateY(-8px);
  366. }
  367. }
  368. @keyframes hvr-bob {
  369. 0% {
  370. -webkit-transform: translateY(-8px);
  371. transform: translateY(-8px);
  372. }
  373. 50% {
  374. -webkit-transform: translateY(-4px);
  375. transform: translateY(-4px);
  376. }
  377. 100% {
  378. -webkit-transform: translateY(-8px);
  379. transform: translateY(-8px);
  380. }
  381. }
  382. @-webkit-keyframes hvr-bob-float {
  383. 100% {
  384. -webkit-transform: translateY(-8px);
  385. transform: translateY(-8px);
  386. }
  387. }
  388. @keyframes hvr-bob-float {
  389. 100% {
  390. -webkit-transform: translateY(-8px);
  391. transform: translateY(-8px);
  392. }
  393. }
  394. .hvr-bob {
  395. display: inline-block;
  396. vertical-align: middle;
  397. -webkit-transform: translateZ(0);
  398. transform: translateZ(0);
  399. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  400. -webkit-backface-visibility: hidden;
  401. backface-visibility: hidden;
  402. -moz-osx-font-smoothing: grayscale;
  403. }
  404. .hvr-bob:hover, .hvr-bob:focus, .hvr-bob:active {
  405. -webkit-animation-name: hvr-bob-float, hvr-bob;
  406. animation-name: hvr-bob-float, hvr-bob;
  407. -webkit-animation-duration: .3s, 1.5s;
  408. animation-duration: .3s, 1.5s;
  409. -webkit-animation-delay: 0s, .3s;
  410. animation-delay: 0s, .3s;
  411. -webkit-animation-timing-function: ease-out, ease-in-out;
  412. animation-timing-function: ease-out, ease-in-out;
  413. -webkit-animation-iteration-count: 1, infinite;
  414. animation-iteration-count: 1, infinite;
  415. -webkit-animation-fill-mode: forwards;
  416. animation-fill-mode: forwards;
  417. -webkit-animation-direction: normal, alternate;
  418. animation-direction: normal, alternate;
  419. }
  420. /* Hang */
  421. @-webkit-keyframes hvr-hang {
  422. 0% {
  423. -webkit-transform: translateY(8px);
  424. transform: translateY(8px);
  425. }
  426. 50% {
  427. -webkit-transform: translateY(4px);
  428. transform: translateY(4px);
  429. }
  430. 100% {
  431. -webkit-transform: translateY(8px);
  432. transform: translateY(8px);
  433. }
  434. }
  435. @keyframes hvr-hang {
  436. 0% {
  437. -webkit-transform: translateY(8px);
  438. transform: translateY(8px);
  439. }
  440. 50% {
  441. -webkit-transform: translateY(4px);
  442. transform: translateY(4px);
  443. }
  444. 100% {
  445. -webkit-transform: translateY(8px);
  446. transform: translateY(8px);
  447. }
  448. }
  449. @-webkit-keyframes hvr-hang-sink {
  450. 100% {
  451. -webkit-transform: translateY(8px);
  452. transform: translateY(8px);
  453. }
  454. }
  455. @keyframes hvr-hang-sink {
  456. 100% {
  457. -webkit-transform: translateY(8px);
  458. transform: translateY(8px);
  459. }
  460. }
  461. .hvr-hang {
  462. display: inline-block;
  463. vertical-align: middle;
  464. -webkit-transform: translateZ(0);
  465. transform: translateZ(0);
  466. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  467. -webkit-backface-visibility: hidden;
  468. backface-visibility: hidden;
  469. -moz-osx-font-smoothing: grayscale;
  470. }
  471. .hvr-hang:hover, .hvr-hang:focus, .hvr-hang:active {
  472. -webkit-animation-name: hvr-hang-sink, hvr-hang;
  473. animation-name: hvr-hang-sink, hvr-hang;
  474. -webkit-animation-duration: .3s, 1.5s;
  475. animation-duration: .3s, 1.5s;
  476. -webkit-animation-delay: 0s, .3s;
  477. animation-delay: 0s, .3s;
  478. -webkit-animation-timing-function: ease-out, ease-in-out;
  479. animation-timing-function: ease-out, ease-in-out;
  480. -webkit-animation-iteration-count: 1, infinite;
  481. animation-iteration-count: 1, infinite;
  482. -webkit-animation-fill-mode: forwards;
  483. animation-fill-mode: forwards;
  484. -webkit-animation-direction: normal, alternate;
  485. animation-direction: normal, alternate;
  486. }
  487. /* Skew */
  488. .hvr-skew {
  489. display: inline-block;
  490. vertical-align: middle;
  491. -webkit-transform: translateZ(0);
  492. transform: translateZ(0);
  493. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  494. -webkit-backface-visibility: hidden;
  495. backface-visibility: hidden;
  496. -moz-osx-font-smoothing: grayscale;
  497. -webkit-transition-duration: 0.3s;
  498. transition-duration: 0.3s;
  499. -webkit-transition-property: transform;
  500. transition-property: transform;
  501. }
  502. .hvr-skew:hover, .hvr-skew:focus, .hvr-skew:active {
  503. -webkit-transform: skew(-10deg);
  504. transform: skew(-10deg);
  505. }
  506. /* Skew Forward */
  507. .hvr-skew-forward {
  508. display: inline-block;
  509. vertical-align: middle;
  510. -webkit-transform: translateZ(0);
  511. transform: translateZ(0);
  512. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  513. -webkit-backface-visibility: hidden;
  514. backface-visibility: hidden;
  515. -moz-osx-font-smoothing: grayscale;
  516. -webkit-transition-duration: 0.3s;
  517. transition-duration: 0.3s;
  518. -webkit-transition-property: transform;
  519. transition-property: transform;
  520. -webkit-transform-origin: 0 100%;
  521. transform-origin: 0 100%;
  522. }
  523. .hvr-skew-forward:hover, .hvr-skew-forward:focus, .hvr-skew-forward:active {
  524. -webkit-transform: skew(-10deg);
  525. transform: skew(-10deg);
  526. }
  527. /* Skew Backward */
  528. .hvr-skew-backward {
  529. display: inline-block;
  530. vertical-align: middle;
  531. -webkit-transform: translateZ(0);
  532. transform: translateZ(0);
  533. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  534. -webkit-backface-visibility: hidden;
  535. backface-visibility: hidden;
  536. -moz-osx-font-smoothing: grayscale;
  537. -webkit-transition-duration: 0.3s;
  538. transition-duration: 0.3s;
  539. -webkit-transition-property: transform;
  540. transition-property: transform;
  541. -webkit-transform-origin: 0 100%;
  542. transform-origin: 0 100%;
  543. }
  544. .hvr-skew-backward:hover, .hvr-skew-backward:focus, .hvr-skew-backward:active {
  545. -webkit-transform: skew(10deg);
  546. transform: skew(10deg);
  547. }
  548. /* Wobble Vertical */
  549. @-webkit-keyframes hvr-wobble-vertical {
  550. 16.65% {
  551. -webkit-transform: translateY(8px);
  552. transform: translateY(8px);
  553. }
  554. 33.3% {
  555. -webkit-transform: translateY(-6px);
  556. transform: translateY(-6px);
  557. }
  558. 49.95% {
  559. -webkit-transform: translateY(4px);
  560. transform: translateY(4px);
  561. }
  562. 66.6% {
  563. -webkit-transform: translateY(-2px);
  564. transform: translateY(-2px);
  565. }
  566. 83.25% {
  567. -webkit-transform: translateY(1px);
  568. transform: translateY(1px);
  569. }
  570. 100% {
  571. -webkit-transform: translateY(0);
  572. transform: translateY(0);
  573. }
  574. }
  575. @keyframes hvr-wobble-vertical {
  576. 16.65% {
  577. -webkit-transform: translateY(8px);
  578. transform: translateY(8px);
  579. }
  580. 33.3% {
  581. -webkit-transform: translateY(-6px);
  582. transform: translateY(-6px);
  583. }
  584. 49.95% {
  585. -webkit-transform: translateY(4px);
  586. transform: translateY(4px);
  587. }
  588. 66.6% {
  589. -webkit-transform: translateY(-2px);
  590. transform: translateY(-2px);
  591. }
  592. 83.25% {
  593. -webkit-transform: translateY(1px);
  594. transform: translateY(1px);
  595. }
  596. 100% {
  597. -webkit-transform: translateY(0);
  598. transform: translateY(0);
  599. }
  600. }
  601. .hvr-wobble-vertical {
  602. display: inline-block;
  603. vertical-align: middle;
  604. -webkit-transform: translateZ(0);
  605. transform: translateZ(0);
  606. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  607. -webkit-backface-visibility: hidden;
  608. backface-visibility: hidden;
  609. -moz-osx-font-smoothing: grayscale;
  610. }
  611. .hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  612. -webkit-animation-name: hvr-wobble-vertical;
  613. animation-name: hvr-wobble-vertical;
  614. -webkit-animation-duration: 1s;
  615. animation-duration: 1s;
  616. -webkit-animation-timing-function: ease-in-out;
  617. animation-timing-function: ease-in-out;
  618. -webkit-animation-iteration-count: 1;
  619. animation-iteration-count: 1;
  620. }
  621. /* Wobble Horizontal */
  622. @-webkit-keyframes hvr-wobble-horizontal {
  623. 16.65% {
  624. -webkit-transform: translateX(8px);
  625. transform: translateX(8px);
  626. }
  627. 33.3% {
  628. -webkit-transform: translateX(-6px);
  629. transform: translateX(-6px);
  630. }
  631. 49.95% {
  632. -webkit-transform: translateX(4px);
  633. transform: translateX(4px);
  634. }
  635. 66.6% {
  636. -webkit-transform: translateX(-2px);
  637. transform: translateX(-2px);
  638. }
  639. 83.25% {
  640. -webkit-transform: translateX(1px);
  641. transform: translateX(1px);
  642. }
  643. 100% {
  644. -webkit-transform: translateX(0);
  645. transform: translateX(0);
  646. }
  647. }
  648. @keyframes hvr-wobble-horizontal {
  649. 16.65% {
  650. -webkit-transform: translateX(8px);
  651. transform: translateX(8px);
  652. }
  653. 33.3% {
  654. -webkit-transform: translateX(-6px);
  655. transform: translateX(-6px);
  656. }
  657. 49.95% {
  658. -webkit-transform: translateX(4px);
  659. transform: translateX(4px);
  660. }
  661. 66.6% {
  662. -webkit-transform: translateX(-2px);
  663. transform: translateX(-2px);
  664. }
  665. 83.25% {
  666. -webkit-transform: translateX(1px);
  667. transform: translateX(1px);
  668. }
  669. 100% {
  670. -webkit-transform: translateX(0);
  671. transform: translateX(0);
  672. }
  673. }
  674. .hvr-wobble-horizontal {
  675. display: inline-block;
  676. vertical-align: middle;
  677. -webkit-transform: translateZ(0);
  678. transform: translateZ(0);
  679. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  680. -webkit-backface-visibility: hidden;
  681. backface-visibility: hidden;
  682. -moz-osx-font-smoothing: grayscale;
  683. }
  684. .hvr-wobble-horizontal:hover, .hvr-wobble-horizontal:focus, .hvr-wobble-horizontal:active {
  685. -webkit-animation-name: hvr-wobble-horizontal;
  686. animation-name: hvr-wobble-horizontal;
  687. -webkit-animation-duration: 1s;
  688. animation-duration: 1s;
  689. -webkit-animation-timing-function: ease-in-out;
  690. animation-timing-function: ease-in-out;
  691. -webkit-animation-iteration-count: 1;
  692. animation-iteration-count: 1;
  693. }
  694. /* Wobble To Bottom Right */
  695. @-webkit-keyframes hvr-wobble-to-bottom-right {
  696. 16.65% {
  697. -webkit-transform: translate(8px, 8px);
  698. transform: translate(8px, 8px);
  699. }
  700. 33.3% {
  701. -webkit-transform: translate(-6px, -6px);
  702. transform: translate(-6px, -6px);
  703. }
  704. 49.95% {
  705. -webkit-transform: translate(4px, 4px);
  706. transform: translate(4px, 4px);
  707. }
  708. 66.6% {
  709. -webkit-transform: translate(-2px, -2px);
  710. transform: translate(-2px, -2px);
  711. }
  712. 83.25% {
  713. -webkit-transform: translate(1px, 1px);
  714. transform: translate(1px, 1px);
  715. }
  716. 100% {
  717. -webkit-transform: translate(0, 0);
  718. transform: translate(0, 0);
  719. }
  720. }
  721. @keyframes hvr-wobble-to-bottom-right {
  722. 16.65% {
  723. -webkit-transform: translate(8px, 8px);
  724. transform: translate(8px, 8px);
  725. }
  726. 33.3% {
  727. -webkit-transform: translate(-6px, -6px);
  728. transform: translate(-6px, -6px);
  729. }
  730. 49.95% {
  731. -webkit-transform: translate(4px, 4px);
  732. transform: translate(4px, 4px);
  733. }
  734. 66.6% {
  735. -webkit-transform: translate(-2px, -2px);
  736. transform: translate(-2px, -2px);
  737. }
  738. 83.25% {
  739. -webkit-transform: translate(1px, 1px);
  740. transform: translate(1px, 1px);
  741. }
  742. 100% {
  743. -webkit-transform: translate(0, 0);
  744. transform: translate(0, 0);
  745. }
  746. }
  747. .hvr-wobble-to-bottom-right {
  748. display: inline-block;
  749. vertical-align: middle;
  750. -webkit-transform: translateZ(0);
  751. transform: translateZ(0);
  752. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  753. -webkit-backface-visibility: hidden;
  754. backface-visibility: hidden;
  755. -moz-osx-font-smoothing: grayscale;
  756. }
  757. .hvr-wobble-to-bottom-right:hover, .hvr-wobble-to-bottom-right:focus, .hvr-wobble-to-bottom-right:active {
  758. -webkit-animation-name: hvr-wobble-to-bottom-right;
  759. animation-name: hvr-wobble-to-bottom-right;
  760. -webkit-animation-duration: 1s;
  761. animation-duration: 1s;
  762. -webkit-animation-timing-function: ease-in-out;
  763. animation-timing-function: ease-in-out;
  764. -webkit-animation-iteration-count: 1;
  765. animation-iteration-count: 1;
  766. }
  767. /* Wobble To Top Right */
  768. @-webkit-keyframes hvr-wobble-to-top-right {
  769. 16.65% {
  770. -webkit-transform: translate(8px, -8px);
  771. transform: translate(8px, -8px);
  772. }
  773. 33.3% {
  774. -webkit-transform: translate(-6px, 6px);
  775. transform: translate(-6px, 6px);
  776. }
  777. 49.95% {
  778. -webkit-transform: translate(4px, -4px);
  779. transform: translate(4px, -4px);
  780. }
  781. 66.6% {
  782. -webkit-transform: translate(-2px, 2px);
  783. transform: translate(-2px, 2px);
  784. }
  785. 83.25% {
  786. -webkit-transform: translate(1px, -1px);
  787. transform: translate(1px, -1px);
  788. }
  789. 100% {
  790. -webkit-transform: translate(0, 0);
  791. transform: translate(0, 0);
  792. }
  793. }
  794. @keyframes hvr-wobble-to-top-right {
  795. 16.65% {
  796. -webkit-transform: translate(8px, -8px);
  797. transform: translate(8px, -8px);
  798. }
  799. 33.3% {
  800. -webkit-transform: translate(-6px, 6px);
  801. transform: translate(-6px, 6px);
  802. }
  803. 49.95% {
  804. -webkit-transform: translate(4px, -4px);
  805. transform: translate(4px, -4px);
  806. }
  807. 66.6% {
  808. -webkit-transform: translate(-2px, 2px);
  809. transform: translate(-2px, 2px);
  810. }
  811. 83.25% {
  812. -webkit-transform: translate(1px, -1px);
  813. transform: translate(1px, -1px);
  814. }
  815. 100% {
  816. -webkit-transform: translate(0, 0);
  817. transform: translate(0, 0);
  818. }
  819. }
  820. .hvr-wobble-to-top-right {
  821. display: inline-block;
  822. vertical-align: middle;
  823. -webkit-transform: translateZ(0);
  824. transform: translateZ(0);
  825. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  826. -webkit-backface-visibility: hidden;
  827. backface-visibility: hidden;
  828. -moz-osx-font-smoothing: grayscale;
  829. }
  830. .hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {
  831. -webkit-animation-name: hvr-wobble-to-top-right;
  832. animation-name: hvr-wobble-to-top-right;
  833. -webkit-animation-duration: 1s;
  834. animation-duration: 1s;
  835. -webkit-animation-timing-function: ease-in-out;
  836. animation-timing-function: ease-in-out;
  837. -webkit-animation-iteration-count: 1;
  838. animation-iteration-count: 1;
  839. }
  840. /* Wobble Top */
  841. @-webkit-keyframes hvr-wobble-top {
  842. 16.65% {
  843. -webkit-transform: skew(-12deg);
  844. transform: skew(-12deg);
  845. }
  846. 33.3% {
  847. -webkit-transform: skew(10deg);
  848. transform: skew(10deg);
  849. }
  850. 49.95% {
  851. -webkit-transform: skew(-6deg);
  852. transform: skew(-6deg);
  853. }
  854. 66.6% {
  855. -webkit-transform: skew(4deg);
  856. transform: skew(4deg);
  857. }
  858. 83.25% {
  859. -webkit-transform: skew(-2deg);
  860. transform: skew(-2deg);
  861. }
  862. 100% {
  863. -webkit-transform: skew(0);
  864. transform: skew(0);
  865. }
  866. }
  867. @keyframes hvr-wobble-top {
  868. 16.65% {
  869. -webkit-transform: skew(-12deg);
  870. transform: skew(-12deg);
  871. }
  872. 33.3% {
  873. -webkit-transform: skew(10deg);
  874. transform: skew(10deg);
  875. }
  876. 49.95% {
  877. -webkit-transform: skew(-6deg);
  878. transform: skew(-6deg);
  879. }
  880. 66.6% {
  881. -webkit-transform: skew(4deg);
  882. transform: skew(4deg);
  883. }
  884. 83.25% {
  885. -webkit-transform: skew(-2deg);
  886. transform: skew(-2deg);
  887. }
  888. 100% {
  889. -webkit-transform: skew(0);
  890. transform: skew(0);
  891. }
  892. }
  893. .hvr-wobble-top {
  894. display: inline-block;
  895. vertical-align: middle;
  896. -webkit-transform: translateZ(0);
  897. transform: translateZ(0);
  898. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  899. -webkit-backface-visibility: hidden;
  900. backface-visibility: hidden;
  901. -moz-osx-font-smoothing: grayscale;
  902. -webkit-transform-origin: 0 100%;
  903. transform-origin: 0 100%;
  904. }
  905. .hvr-wobble-top:hover, .hvr-wobble-top:focus, .hvr-wobble-top:active {
  906. -webkit-animation-name: hvr-wobble-top;
  907. animation-name: hvr-wobble-top;
  908. -webkit-animation-duration: 1s;
  909. animation-duration: 1s;
  910. -webkit-animation-timing-function: ease-in-out;
  911. animation-timing-function: ease-in-out;
  912. -webkit-animation-iteration-count: 1;
  913. animation-iteration-count: 1;
  914. }
  915. /* Wobble Bottom */
  916. @-webkit-keyframes hvr-wobble-bottom {
  917. 16.65% {
  918. -webkit-transform: skew(-12deg);
  919. transform: skew(-12deg);
  920. }
  921. 33.3% {
  922. -webkit-transform: skew(10deg);
  923. transform: skew(10deg);
  924. }
  925. 49.95% {
  926. -webkit-transform: skew(-6deg);
  927. transform: skew(-6deg);
  928. }
  929. 66.6% {
  930. -webkit-transform: skew(4deg);
  931. transform: skew(4deg);
  932. }
  933. 83.25% {
  934. -webkit-transform: skew(-2deg);
  935. transform: skew(-2deg);
  936. }
  937. 100% {
  938. -webkit-transform: skew(0);
  939. transform: skew(0);
  940. }
  941. }
  942. @keyframes hvr-wobble-bottom {
  943. 16.65% {
  944. -webkit-transform: skew(-12deg);
  945. transform: skew(-12deg);
  946. }
  947. 33.3% {
  948. -webkit-transform: skew(10deg);
  949. transform: skew(10deg);
  950. }
  951. 49.95% {
  952. -webkit-transform: skew(-6deg);
  953. transform: skew(-6deg);
  954. }
  955. 66.6% {
  956. -webkit-transform: skew(4deg);
  957. transform: skew(4deg);
  958. }
  959. 83.25% {
  960. -webkit-transform: skew(-2deg);
  961. transform: skew(-2deg);
  962. }
  963. 100% {
  964. -webkit-transform: skew(0);
  965. transform: skew(0);
  966. }
  967. }
  968. .hvr-wobble-bottom {
  969. display: inline-block;
  970. vertical-align: middle;
  971. -webkit-transform: translateZ(0);
  972. transform: translateZ(0);
  973. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  974. -webkit-backface-visibility: hidden;
  975. backface-visibility: hidden;
  976. -moz-osx-font-smoothing: grayscale;
  977. -webkit-transform-origin: 100% 0;
  978. transform-origin: 100% 0;
  979. }
  980. .hvr-wobble-bottom:hover, .hvr-wobble-bottom:focus, .hvr-wobble-bottom:active {
  981. -webkit-animation-name: hvr-wobble-bottom;
  982. animation-name: hvr-wobble-bottom;
  983. -webkit-animation-duration: 1s;
  984. animation-duration: 1s;
  985. -webkit-animation-timing-function: ease-in-out;
  986. animation-timing-function: ease-in-out;
  987. -webkit-animation-iteration-count: 1;
  988. animation-iteration-count: 1;
  989. }
  990. /* Wobble Skew */
  991. @-webkit-keyframes hvr-wobble-skew {
  992. 16.65% {
  993. -webkit-transform: skew(-12deg);
  994. transform: skew(-12deg);
  995. }
  996. 33.3% {
  997. -webkit-transform: skew(10deg);
  998. transform: skew(10deg);
  999. }
  1000. 49.95% {
  1001. -webkit-transform: skew(-6deg);
  1002. transform: skew(-6deg);
  1003. }
  1004. 66.6% {
  1005. -webkit-transform: skew(4deg);
  1006. transform: skew(4deg);
  1007. }
  1008. 83.25% {
  1009. -webkit-transform: skew(-2deg);
  1010. transform: skew(-2deg);
  1011. }
  1012. 100% {
  1013. -webkit-transform: skew(0);
  1014. transform: skew(0);
  1015. }
  1016. }
  1017. @keyframes hvr-wobble-skew {
  1018. 16.65% {
  1019. -webkit-transform: skew(-12deg);
  1020. transform: skew(-12deg);
  1021. }
  1022. 33.3% {
  1023. -webkit-transform: skew(10deg);
  1024. transform: skew(10deg);
  1025. }
  1026. 49.95% {
  1027. -webkit-transform: skew(-6deg);
  1028. transform: skew(-6deg);
  1029. }
  1030. 66.6% {
  1031. -webkit-transform: skew(4deg);
  1032. transform: skew(4deg);
  1033. }
  1034. 83.25% {
  1035. -webkit-transform: skew(-2deg);
  1036. transform: skew(-2deg);
  1037. }
  1038. 100% {
  1039. -webkit-transform: skew(0);
  1040. transform: skew(0);
  1041. }
  1042. }
  1043. .hvr-wobble-skew {
  1044. display: inline-block;
  1045. vertical-align: middle;
  1046. -webkit-transform: translateZ(0);
  1047. transform: translateZ(0);
  1048. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1049. -webkit-backface-visibility: hidden;
  1050. backface-visibility: hidden;
  1051. -moz-osx-font-smoothing: grayscale;
  1052. }
  1053. .hvr-wobble-skew:hover, .hvr-wobble-skew:focus, .hvr-wobble-skew:active {
  1054. -webkit-animation-name: hvr-wobble-skew;
  1055. animation-name: hvr-wobble-skew;
  1056. -webkit-animation-duration: 1s;
  1057. animation-duration: 1s;
  1058. -webkit-animation-timing-function: ease-in-out;
  1059. animation-timing-function: ease-in-out;
  1060. -webkit-animation-iteration-count: 1;
  1061. animation-iteration-count: 1;
  1062. }
  1063. /* Buzz */
  1064. @-webkit-keyframes hvr-buzz {
  1065. 50% {
  1066. -webkit-transform: translateX(3px) rotate(2deg);
  1067. transform: translateX(3px) rotate(2deg);
  1068. }
  1069. 100% {
  1070. -webkit-transform: translateX(-3px) rotate(-2deg);
  1071. transform: translateX(-3px) rotate(-2deg);
  1072. }
  1073. }
  1074. @keyframes hvr-buzz {
  1075. 50% {
  1076. -webkit-transform: translateX(3px) rotate(2deg);
  1077. transform: translateX(3px) rotate(2deg);
  1078. }
  1079. 100% {
  1080. -webkit-transform: translateX(-3px) rotate(-2deg);
  1081. transform: translateX(-3px) rotate(-2deg);
  1082. }
  1083. }
  1084. .hvr-buzz {
  1085. display: inline-block;
  1086. vertical-align: middle;
  1087. -webkit-transform: translateZ(0);
  1088. transform: translateZ(0);
  1089. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1090. -webkit-backface-visibility: hidden;
  1091. backface-visibility: hidden;
  1092. -moz-osx-font-smoothing: grayscale;
  1093. }
  1094. .hvr-buzz:hover, .hvr-buzz:focus, .hvr-buzz:active {
  1095. -webkit-animation-name: hvr-buzz;
  1096. animation-name: hvr-buzz;
  1097. -webkit-animation-duration: 0.15s;
  1098. animation-duration: 0.15s;
  1099. -webkit-animation-timing-function: linear;
  1100. animation-timing-function: linear;
  1101. -webkit-animation-iteration-count: infinite;
  1102. animation-iteration-count: infinite;
  1103. }
  1104. /* Buzz Out */
  1105. @-webkit-keyframes hvr-buzz-out {
  1106. 10% {
  1107. -webkit-transform: translateX(3px) rotate(2deg);
  1108. transform: translateX(3px) rotate(2deg);
  1109. }
  1110. 20% {
  1111. -webkit-transform: translateX(-3px) rotate(-2deg);
  1112. transform: translateX(-3px) rotate(-2deg);
  1113. }
  1114. 30% {
  1115. -webkit-transform: translateX(3px) rotate(2deg);
  1116. transform: translateX(3px) rotate(2deg);
  1117. }
  1118. 40% {
  1119. -webkit-transform: translateX(-3px) rotate(-2deg);
  1120. transform: translateX(-3px) rotate(-2deg);
  1121. }
  1122. 50% {
  1123. -webkit-transform: translateX(2px) rotate(1deg);
  1124. transform: translateX(2px) rotate(1deg);
  1125. }
  1126. 60% {
  1127. -webkit-transform: translateX(-2px) rotate(-1deg);
  1128. transform: translateX(-2px) rotate(-1deg);
  1129. }
  1130. 70% {
  1131. -webkit-transform: translateX(2px) rotate(1deg);
  1132. transform: translateX(2px) rotate(1deg);
  1133. }
  1134. 80% {
  1135. -webkit-transform: translateX(-2px) rotate(-1deg);
  1136. transform: translateX(-2px) rotate(-1deg);
  1137. }
  1138. 90% {
  1139. -webkit-transform: translateX(1px) rotate(0);
  1140. transform: translateX(1px) rotate(0);
  1141. }
  1142. 100% {
  1143. -webkit-transform: translateX(-1px) rotate(0);
  1144. transform: translateX(-1px) rotate(0);
  1145. }
  1146. }
  1147. @keyframes hvr-buzz-out {
  1148. 10% {
  1149. -webkit-transform: translateX(3px) rotate(2deg);
  1150. transform: translateX(3px) rotate(2deg);
  1151. }
  1152. 20% {
  1153. -webkit-transform: translateX(-3px) rotate(-2deg);
  1154. transform: translateX(-3px) rotate(-2deg);
  1155. }
  1156. 30% {
  1157. -webkit-transform: translateX(3px) rotate(2deg);
  1158. transform: translateX(3px) rotate(2deg);
  1159. }
  1160. 40% {
  1161. -webkit-transform: translateX(-3px) rotate(-2deg);
  1162. transform: translateX(-3px) rotate(-2deg);
  1163. }
  1164. 50% {
  1165. -webkit-transform: translateX(2px) rotate(1deg);
  1166. transform: translateX(2px) rotate(1deg);
  1167. }
  1168. 60% {
  1169. -webkit-transform: translateX(-2px) rotate(-1deg);
  1170. transform: translateX(-2px) rotate(-1deg);
  1171. }
  1172. 70% {
  1173. -webkit-transform: translateX(2px) rotate(1deg);
  1174. transform: translateX(2px) rotate(1deg);
  1175. }
  1176. 80% {
  1177. -webkit-transform: translateX(-2px) rotate(-1deg);
  1178. transform: translateX(-2px) rotate(-1deg);
  1179. }
  1180. 90% {
  1181. -webkit-transform: translateX(1px) rotate(0);
  1182. transform: translateX(1px) rotate(0);
  1183. }
  1184. 100% {
  1185. -webkit-transform: translateX(-1px) rotate(0);
  1186. transform: translateX(-1px) rotate(0);
  1187. }
  1188. }
  1189. .hvr-buzz-out {
  1190. display: inline-block;
  1191. vertical-align: middle;
  1192. -webkit-transform: translateZ(0);
  1193. transform: translateZ(0);
  1194. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1195. -webkit-backface-visibility: hidden;
  1196. backface-visibility: hidden;
  1197. -moz-osx-font-smoothing: grayscale;
  1198. }
  1199. .hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  1200. -webkit-animation-name: hvr-buzz-out;
  1201. animation-name: hvr-buzz-out;
  1202. -webkit-animation-duration: 0.75s;
  1203. animation-duration: 0.75s;
  1204. -webkit-animation-timing-function: linear;
  1205. animation-timing-function: linear;
  1206. -webkit-animation-iteration-count: 1;
  1207. animation-iteration-count: 1;
  1208. }
  1209. /* BACKGROUND TRANSITIONS */
  1210. /* Fade */
  1211. .hvr-fade {
  1212. display: inline-block;
  1213. vertical-align: middle;
  1214. -webkit-transform: translateZ(0);
  1215. transform: translateZ(0);
  1216. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1217. -webkit-backface-visibility: hidden;
  1218. backface-visibility: hidden;
  1219. -moz-osx-font-smoothing: grayscale;
  1220. overflow: hidden;
  1221. -webkit-transition-duration: 0.3s;
  1222. transition-duration: 0.3s;
  1223. -webkit-transition-property: color, background-color;
  1224. transition-property: color, background-color;
  1225. }
  1226. .hvr-fade:hover, .hvr-fade:focus, .hvr-fade:active {
  1227. background-color: #2098d1;
  1228. color: white;
  1229. }
  1230. /* Back Pulse */
  1231. @-webkit-keyframes hvr-back-pulse {
  1232. 50% {
  1233. background-color: rgba(32, 152, 209, 0.75);
  1234. }
  1235. }
  1236. @keyframes hvr-back-pulse {
  1237. 50% {
  1238. background-color: rgba(32, 152, 209, 0.75);
  1239. }
  1240. }
  1241. .hvr-back-pulse {
  1242. display: inline-block;
  1243. vertical-align: middle;
  1244. -webkit-transform: translateZ(0);
  1245. transform: translateZ(0);
  1246. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1247. -webkit-backface-visibility: hidden;
  1248. backface-visibility: hidden;
  1249. -moz-osx-font-smoothing: grayscale;
  1250. overflow: hidden;
  1251. -webkit-transition-duration: 0.5s;
  1252. transition-duration: 0.5s;
  1253. -webkit-transition-property: color, background-color;
  1254. transition-property: color, background-color;
  1255. }
  1256. .hvr-back-pulse:hover, .hvr-back-pulse:focus, .hvr-back-pulse:active {
  1257. -webkit-animation-name: hvr-back-pulse;
  1258. animation-name: hvr-back-pulse;
  1259. -webkit-animation-duration: 1s;
  1260. animation-duration: 1s;
  1261. -webkit-animation-delay: 0.5s;
  1262. animation-delay: 0.5s;
  1263. -webkit-animation-timing-function: linear;
  1264. animation-timing-function: linear;
  1265. -webkit-animation-iteration-count: infinite;
  1266. animation-iteration-count: infinite;
  1267. background-color: #2098d1;
  1268. background-color: #2098d1;
  1269. color: white;
  1270. }
  1271. /* Sweep To Right */
  1272. .hvr-sweep-to-right {
  1273. display: inline-block;
  1274. vertical-align: middle;
  1275. -webkit-transform: translateZ(0);
  1276. transform: translateZ(0);
  1277. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1278. -webkit-backface-visibility: hidden;
  1279. backface-visibility: hidden;
  1280. -moz-osx-font-smoothing: grayscale;
  1281. position: relative;
  1282. -webkit-transition-property: color;
  1283. transition-property: color;
  1284. -webkit-transition-duration: 0.3s;
  1285. transition-duration: 0.3s;
  1286. }
  1287. .hvr-sweep-to-right:before {
  1288. content: "";
  1289. position: absolute;
  1290. z-index: -1;
  1291. top: 0;
  1292. left: 0;
  1293. right: 0;
  1294. bottom: 0;
  1295. background: #2098d1;
  1296. -webkit-transform: scaleX(0);
  1297. transform: scaleX(0);
  1298. -webkit-transform-origin: 0 50%;
  1299. transform-origin: 0 50%;
  1300. -webkit-transition-property: transform;
  1301. transition-property: transform;
  1302. -webkit-transition-duration: 0.3s;
  1303. transition-duration: 0.3s;
  1304. -webkit-transition-timing-function: ease-out;
  1305. transition-timing-function: ease-out;
  1306. }
  1307. .hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  1308. color: white;
  1309. }
  1310. .hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  1311. -webkit-transform: scaleX(1);
  1312. transform: scaleX(1);
  1313. }
  1314. /* Sweep To Left */
  1315. .hvr-sweep-to-left {
  1316. display: inline-block;
  1317. vertical-align: middle;
  1318. -webkit-transform: translateZ(0);
  1319. transform: translateZ(0);
  1320. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1321. -webkit-backface-visibility: hidden;
  1322. backface-visibility: hidden;
  1323. -moz-osx-font-smoothing: grayscale;
  1324. position: relative;
  1325. -webkit-transition-property: color;
  1326. transition-property: color;
  1327. -webkit-transition-duration: 0.3s;
  1328. transition-duration: 0.3s;
  1329. }
  1330. .hvr-sweep-to-left:before {
  1331. content: "";
  1332. position: absolute;
  1333. z-index: -1;
  1334. top: 0;
  1335. left: 0;
  1336. right: 0;
  1337. bottom: 0;
  1338. background: #2098d1;
  1339. -webkit-transform: scaleX(0);
  1340. transform: scaleX(0);
  1341. -webkit-transform-origin: 100% 50%;
  1342. transform-origin: 100% 50%;
  1343. -webkit-transition-property: transform;
  1344. transition-property: transform;
  1345. -webkit-transition-duration: 0.3s;
  1346. transition-duration: 0.3s;
  1347. -webkit-transition-timing-function: ease-out;
  1348. transition-timing-function: ease-out;
  1349. }
  1350. .hvr-sweep-to-left:hover, .hvr-sweep-to-left:focus, .hvr-sweep-to-left:active {
  1351. color: white;
  1352. }
  1353. .hvr-sweep-to-left:hover:before, .hvr-sweep-to-left:focus:before, .hvr-sweep-to-left:active:before {
  1354. -webkit-transform: scaleX(1);
  1355. transform: scaleX(1);
  1356. }
  1357. /* Sweep To Bottom */
  1358. .hvr-sweep-to-bottom {
  1359. display: inline-block;
  1360. vertical-align: middle;
  1361. -webkit-transform: translateZ(0);
  1362. transform: translateZ(0);
  1363. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1364. -webkit-backface-visibility: hidden;
  1365. backface-visibility: hidden;
  1366. -moz-osx-font-smoothing: grayscale;
  1367. position: relative;
  1368. -webkit-transition-property: color;
  1369. transition-property: color;
  1370. -webkit-transition-duration: 0.3s;
  1371. transition-duration: 0.3s;
  1372. }
  1373. .hvr-sweep-to-bottom:before {
  1374. content: "";
  1375. position: absolute;
  1376. z-index: -1;
  1377. top: 0;
  1378. left: 0;
  1379. right: 0;
  1380. bottom: 0;
  1381. background: #2098d1;
  1382. -webkit-transform: scaleY(0);
  1383. transform: scaleY(0);
  1384. -webkit-transform-origin: 50% 0;
  1385. transform-origin: 50% 0;
  1386. -webkit-transition-property: transform;
  1387. transition-property: transform;
  1388. -webkit-transition-duration: 0.3s;
  1389. transition-duration: 0.3s;
  1390. -webkit-transition-timing-function: ease-out;
  1391. transition-timing-function: ease-out;
  1392. }
  1393. .hvr-sweep-to-bottom:hover, .hvr-sweep-to-bottom:focus, .hvr-sweep-to-bottom:active {
  1394. color: white;
  1395. }
  1396. .hvr-sweep-to-bottom:hover:before, .hvr-sweep-to-bottom:focus:before, .hvr-sweep-to-bottom:active:before {
  1397. -webkit-transform: scaleY(1);
  1398. transform: scaleY(1);
  1399. }
  1400. /* Sweep To Top */
  1401. .hvr-sweep-to-top {
  1402. display: inline-block;
  1403. vertical-align: middle;
  1404. -webkit-transform: translateZ(0);
  1405. transform: translateZ(0);
  1406. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1407. -webkit-backface-visibility: hidden;
  1408. backface-visibility: hidden;
  1409. -moz-osx-font-smoothing: grayscale;
  1410. position: relative;
  1411. -webkit-transition-property: color;
  1412. transition-property: color;
  1413. -webkit-transition-duration: 0.3s;
  1414. transition-duration: 0.3s;
  1415. }
  1416. .hvr-sweep-to-top:before {
  1417. content: "";
  1418. position: absolute;
  1419. z-index: -1;
  1420. top: 0;
  1421. left: 0;
  1422. right: 0;
  1423. bottom: 0;
  1424. background: #2098d1;
  1425. -webkit-transform: scaleY(0);
  1426. transform: scaleY(0);
  1427. -webkit-transform-origin: 50% 100%;
  1428. transform-origin: 50% 100%;
  1429. -webkit-transition-property: transform;
  1430. transition-property: transform;
  1431. -webkit-transition-duration: 0.3s;
  1432. transition-duration: 0.3s;
  1433. -webkit-transition-timing-function: ease-out;
  1434. transition-timing-function: ease-out;
  1435. }
  1436. .hvr-sweep-to-top:hover, .hvr-sweep-to-top:focus, .hvr-sweep-to-top:active {
  1437. color: white;
  1438. }
  1439. .hvr-sweep-to-top:hover:before, .hvr-sweep-to-top:focus:before, .hvr-sweep-to-top:active:before {
  1440. -webkit-transform: scaleY(1);
  1441. transform: scaleY(1);
  1442. }
  1443. /* Bounce To Right */
  1444. .hvr-bounce-to-right {
  1445. display: inline-block;
  1446. vertical-align: middle;
  1447. -webkit-transform: translateZ(0);
  1448. transform: translateZ(0);
  1449. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1450. -webkit-backface-visibility: hidden;
  1451. backface-visibility: hidden;
  1452. -moz-osx-font-smoothing: grayscale;
  1453. position: relative;
  1454. -webkit-transition-property: color;
  1455. transition-property: color;
  1456. -webkit-transition-duration: 0.5s;
  1457. transition-duration: 0.5s;
  1458. }
  1459. .hvr-bounce-to-right:before {
  1460. content: "";
  1461. position: absolute;
  1462. z-index: -1;
  1463. top: 0;
  1464. left: 0;
  1465. right: 0;
  1466. bottom: 0;
  1467. background: #2098d1;
  1468. -webkit-transform: scaleX(0);
  1469. transform: scaleX(0);
  1470. -webkit-transform-origin: 0 50%;
  1471. transform-origin: 0 50%;
  1472. -webkit-transition-property: transform;
  1473. transition-property: transform;
  1474. -webkit-transition-duration: 0.5s;
  1475. transition-duration: 0.5s;
  1476. -webkit-transition-timing-function: ease-out;
  1477. transition-timing-function: ease-out;
  1478. }
  1479. .hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
  1480. color: white;
  1481. }
  1482. .hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
  1483. -webkit-transform: scaleX(1);
  1484. transform: scaleX(1);
  1485. -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1486. transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1487. }
  1488. /* Bounce To Left */
  1489. .hvr-bounce-to-left {
  1490. display: inline-block;
  1491. vertical-align: middle;
  1492. -webkit-transform: translateZ(0);
  1493. transform: translateZ(0);
  1494. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1495. -webkit-backface-visibility: hidden;
  1496. backface-visibility: hidden;
  1497. -moz-osx-font-smoothing: grayscale;
  1498. position: relative;
  1499. -webkit-transition-property: color;
  1500. transition-property: color;
  1501. -webkit-transition-duration: 0.5s;
  1502. transition-duration: 0.5s;
  1503. }
  1504. .hvr-bounce-to-left:before {
  1505. content: "";
  1506. position: absolute;
  1507. z-index: -1;
  1508. top: 0;
  1509. left: 0;
  1510. right: 0;
  1511. bottom: 0;
  1512. background: #2098d1;
  1513. -webkit-transform: scaleX(0);
  1514. transform: scaleX(0);
  1515. -webkit-transform-origin: 100% 50%;
  1516. transform-origin: 100% 50%;
  1517. -webkit-transition-property: transform;
  1518. transition-property: transform;
  1519. -webkit-transition-duration: 0.5s;
  1520. transition-duration: 0.5s;
  1521. -webkit-transition-timing-function: ease-out;
  1522. transition-timing-function: ease-out;
  1523. }
  1524. .hvr-bounce-to-left:hover, .hvr-bounce-to-left:focus, .hvr-bounce-to-left:active {
  1525. color: white;
  1526. }
  1527. .hvr-bounce-to-left:hover:before, .hvr-bounce-to-left:focus:before, .hvr-bounce-to-left:active:before {
  1528. -webkit-transform: scaleX(1);
  1529. transform: scaleX(1);
  1530. -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1531. transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1532. }
  1533. /* Bounce To Bottom */
  1534. .hvr-bounce-to-bottom {
  1535. display: inline-block;
  1536. vertical-align: middle;
  1537. -webkit-transform: translateZ(0);
  1538. transform: translateZ(0);
  1539. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1540. -webkit-backface-visibility: hidden;
  1541. backface-visibility: hidden;
  1542. -moz-osx-font-smoothing: grayscale;
  1543. position: relative;
  1544. -webkit-transition-property: color;
  1545. transition-property: color;
  1546. -webkit-transition-duration: 0.5s;
  1547. transition-duration: 0.5s;
  1548. }
  1549. .hvr-bounce-to-bottom:before {
  1550. content: "";
  1551. position: absolute;
  1552. z-index: -1;
  1553. top: 0;
  1554. left: 0;
  1555. right: 0;
  1556. bottom: 0;
  1557. background: #2098d1;
  1558. -webkit-transform: scaleY(0);
  1559. transform: scaleY(0);
  1560. -webkit-transform-origin: 50% 0;
  1561. transform-origin: 50% 0;
  1562. -webkit-transition-property: transform;
  1563. transition-property: transform;
  1564. -webkit-transition-duration: 0.5s;
  1565. transition-duration: 0.5s;
  1566. -webkit-transition-timing-function: ease-out;
  1567. transition-timing-function: ease-out;
  1568. }
  1569. .hvr-bounce-to-bottom:hover, .hvr-bounce-to-bottom:focus, .hvr-bounce-to-bottom:active {
  1570. color: white;
  1571. }
  1572. .hvr-bounce-to-bottom:hover:before, .hvr-bounce-to-bottom:focus:before, .hvr-bounce-to-bottom:active:before {
  1573. -webkit-transform: scaleY(1);
  1574. transform: scaleY(1);
  1575. -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1576. transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1577. }
  1578. /* Bounce To Top */
  1579. .hvr-bounce-to-top {
  1580. display: inline-block;
  1581. vertical-align: middle;
  1582. -webkit-transform: translateZ(0);
  1583. transform: translateZ(0);
  1584. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1585. -webkit-backface-visibility: hidden;
  1586. backface-visibility: hidden;
  1587. -moz-osx-font-smoothing: grayscale;
  1588. position: relative;
  1589. -webkit-transition-property: color;
  1590. transition-property: color;
  1591. -webkit-transition-duration: 0.5s;
  1592. transition-duration: 0.5s;
  1593. }
  1594. .hvr-bounce-to-top:before {
  1595. content: "";
  1596. position: absolute;
  1597. z-index: -1;
  1598. top: 0;
  1599. left: 0;
  1600. right: 0;
  1601. bottom: 0;
  1602. background: #2098d1;
  1603. -webkit-transform: scaleY(0);
  1604. transform: scaleY(0);
  1605. -webkit-transform-origin: 50% 100%;
  1606. transform-origin: 50% 100%;
  1607. -webkit-transition-property: transform;
  1608. transition-property: transform;
  1609. -webkit-transition-duration: 0.5s;
  1610. transition-duration: 0.5s;
  1611. -webkit-transition-timing-function: ease-out;
  1612. transition-timing-function: ease-out;
  1613. }
  1614. .hvr-bounce-to-top:hover, .hvr-bounce-to-top:focus, .hvr-bounce-to-top:active {
  1615. color: white;
  1616. }
  1617. .hvr-bounce-to-top:hover:before, .hvr-bounce-to-top:focus:before, .hvr-bounce-to-top:active:before {
  1618. -webkit-transform: scaleY(1);
  1619. transform: scaleY(1);
  1620. -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1621. transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  1622. }
  1623. /* Radial Out */
  1624. .hvr-radial-out {
  1625. display: inline-block;
  1626. vertical-align: middle;
  1627. -webkit-transform: translateZ(0);
  1628. transform: translateZ(0);
  1629. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1630. -webkit-backface-visibility: hidden;
  1631. backface-visibility: hidden;
  1632. -moz-osx-font-smoothing: grayscale;
  1633. position: relative;
  1634. overflow: hidden;
  1635. background: #e1e1e1;
  1636. -webkit-transition-property: color;
  1637. transition-property: color;
  1638. -webkit-transition-duration: 0.3s;
  1639. transition-duration: 0.3s;
  1640. }
  1641. .hvr-radial-out:before {
  1642. content: "";
  1643. position: absolute;
  1644. z-index: -1;
  1645. top: 0;
  1646. left: 0;
  1647. right: 0;
  1648. bottom: 0;
  1649. background: #2098d1;
  1650. border-radius: 100%;
  1651. -webkit-transform: scale(0);
  1652. transform: scale(0);
  1653. -webkit-transition-property: transform;
  1654. transition-property: transform;
  1655. -webkit-transition-duration: 0.3s;
  1656. transition-duration: 0.3s;
  1657. -webkit-transition-timing-function: ease-out;
  1658. transition-timing-function: ease-out;
  1659. }
  1660. .hvr-radial-out:hover, .hvr-radial-out:focus, .hvr-radial-out:active {
  1661. color: white;
  1662. }
  1663. .hvr-radial-out:hover:before, .hvr-radial-out:focus:before, .hvr-radial-out:active:before {
  1664. -webkit-transform: scale(2);
  1665. transform: scale(2);
  1666. }
  1667. /* Radial In */
  1668. .hvr-radial-in {
  1669. display: inline-block;
  1670. vertical-align: middle;
  1671. -webkit-transform: translateZ(0);
  1672. transform: translateZ(0);
  1673. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1674. -webkit-backface-visibility: hidden;
  1675. backface-visibility: hidden;
  1676. -moz-osx-font-smoothing: grayscale;
  1677. position: relative;
  1678. overflow: hidden;
  1679. background: #2098d1;
  1680. -webkit-transition-property: color;
  1681. transition-property: color;
  1682. -webkit-transition-duration: 0.3s;
  1683. transition-duration: 0.3s;
  1684. }
  1685. .hvr-radial-in:before {
  1686. content: "";
  1687. position: absolute;
  1688. z-index: -1;
  1689. top: 0;
  1690. left: 0;
  1691. right: 0;
  1692. bottom: 0;
  1693. background: #e1e1e1;
  1694. border-radius: 100%;
  1695. -webkit-transform: scale(2);
  1696. transform: scale(2);
  1697. -webkit-transition-property: transform;
  1698. transition-property: transform;
  1699. -webkit-transition-duration: 0.3s;
  1700. transition-duration: 0.3s;
  1701. -webkit-transition-timing-function: ease-out;
  1702. transition-timing-function: ease-out;
  1703. }
  1704. .hvr-radial-in:hover, .hvr-radial-in:focus, .hvr-radial-in:active {
  1705. color: white;
  1706. }
  1707. .hvr-radial-in:hover:before, .hvr-radial-in:focus:before, .hvr-radial-in:active:before {
  1708. -webkit-transform: scale(0);
  1709. transform: scale(0);
  1710. }
  1711. /* Rectangle In */
  1712. .hvr-rectangle-in {
  1713. display: inline-block;
  1714. vertical-align: middle;
  1715. -webkit-transform: translateZ(0);
  1716. transform: translateZ(0);
  1717. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1718. -webkit-backface-visibility: hidden;
  1719. backface-visibility: hidden;
  1720. -moz-osx-font-smoothing: grayscale;
  1721. position: relative;
  1722. background: #2098d1;
  1723. -webkit-transition-property: color;
  1724. transition-property: color;
  1725. -webkit-transition-duration: 0.3s;
  1726. transition-duration: 0.3s;
  1727. }
  1728. .hvr-rectangle-in:before {
  1729. content: "";
  1730. position: absolute;
  1731. z-index: -1;
  1732. top: 0;
  1733. left: 0;
  1734. right: 0;
  1735. bottom: 0;
  1736. background: #e1e1e1;
  1737. -webkit-transform: scale(1);
  1738. transform: scale(1);
  1739. -webkit-transition-property: transform;
  1740. transition-property: transform;
  1741. -webkit-transition-duration: 0.3s;
  1742. transition-duration: 0.3s;
  1743. -webkit-transition-timing-function: ease-out;
  1744. transition-timing-function: ease-out;
  1745. }
  1746. .hvr-rectangle-in:hover, .hvr-rectangle-in:focus, .hvr-rectangle-in:active {
  1747. color: white;
  1748. }
  1749. .hvr-rectangle-in:hover:before, .hvr-rectangle-in:focus:before, .hvr-rectangle-in:active:before {
  1750. -webkit-transform: scale(0);
  1751. transform: scale(0);
  1752. }
  1753. /* Rectangle Out */
  1754. .hvr-rectangle-out {
  1755. display: inline-block;
  1756. vertical-align: middle;
  1757. -webkit-transform: translateZ(0);
  1758. transform: translateZ(0);
  1759. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1760. -webkit-backface-visibility: hidden;
  1761. backface-visibility: hidden;
  1762. -moz-osx-font-smoothing: grayscale;
  1763. position: relative;
  1764. background: #e1e1e1;
  1765. -webkit-transition-property: color;
  1766. transition-property: color;
  1767. -webkit-transition-duration: 0.3s;
  1768. transition-duration: 0.3s;
  1769. }
  1770. .hvr-rectangle-out:before {
  1771. content: "";
  1772. position: absolute;
  1773. z-index: -1;
  1774. top: 0;
  1775. left: 0;
  1776. right: 0;
  1777. bottom: 0;
  1778. background: #2098d1;
  1779. -webkit-transform: scale(0);
  1780. transform: scale(0);
  1781. -webkit-transition-property: transform;
  1782. transition-property: transform;
  1783. -webkit-transition-duration: 0.3s;
  1784. transition-duration: 0.3s;
  1785. -webkit-transition-timing-function: ease-out;
  1786. transition-timing-function: ease-out;
  1787. }
  1788. .hvr-rectangle-out:hover, .hvr-rectangle-out:focus, .hvr-rectangle-out:active {
  1789. color: white;
  1790. }
  1791. .hvr-rectangle-out:hover:before, .hvr-rectangle-out:focus:before, .hvr-rectangle-out:active:before {
  1792. -webkit-transform: scale(1);
  1793. transform: scale(1);
  1794. }
  1795. .top-services .hvr-rectangle-out, .services-slider .hvr-rectangle-out{
  1796. -webkit-transition-duration: 0.5s;
  1797. transition-duration: 0.5s;
  1798. }
  1799. .top-services .hvr-rectangle-out:before, .services-slider .hvr-rectangle-out:before {
  1800. background: rgba(0,0,0,0.05);
  1801. -webkit-transition-duration: 0.5s;
  1802. transition-duration: 0.5s;
  1803. }
  1804. /* Shutter In Horizontal */
  1805. .hvr-shutter-in-horizontal {
  1806. display: inline-block;
  1807. vertical-align: middle;
  1808. -webkit-transform: translateZ(0);
  1809. transform: translateZ(0);
  1810. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1811. -webkit-backface-visibility: hidden;
  1812. backface-visibility: hidden;
  1813. -moz-osx-font-smoothing: grayscale;
  1814. position: relative;
  1815. background: #2098d1;
  1816. -webkit-transition-property: color;
  1817. transition-property: color;
  1818. -webkit-transition-duration: 0.3s;
  1819. transition-duration: 0.3s;
  1820. }
  1821. .hvr-shutter-in-horizontal:before {
  1822. content: "";
  1823. position: absolute;
  1824. z-index: -1;
  1825. top: 0;
  1826. bottom: 0;
  1827. left: 0;
  1828. right: 0;
  1829. background: #e1e1e1;
  1830. -webkit-transform: scaleX(1);
  1831. transform: scaleX(1);
  1832. -webkit-transform-origin: 50%;
  1833. transform-origin: 50%;
  1834. -webkit-transition-property: transform;
  1835. transition-property: transform;
  1836. -webkit-transition-duration: 0.3s;
  1837. transition-duration: 0.3s;
  1838. -webkit-transition-timing-function: ease-out;
  1839. transition-timing-function: ease-out;
  1840. }
  1841. .hvr-shutter-in-horizontal:hover, .hvr-shutter-in-horizontal:focus, .hvr-shutter-in-horizontal:active {
  1842. color: white;
  1843. }
  1844. .hvr-shutter-in-horizontal:hover:before, .hvr-shutter-in-horizontal:focus:before, .hvr-shutter-in-horizontal:active:before {
  1845. -webkit-transform: scaleX(0);
  1846. transform: scaleX(0);
  1847. }
  1848. /* Shutter Out Horizontal */
  1849. .hvr-shutter-out-horizontal {
  1850. display: inline-block;
  1851. vertical-align: middle;
  1852. -webkit-transform: translateZ(0);
  1853. transform: translateZ(0);
  1854. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1855. -webkit-backface-visibility: hidden;
  1856. backface-visibility: hidden;
  1857. -moz-osx-font-smoothing: grayscale;
  1858. position: relative;
  1859. background: #e1e1e1;
  1860. -webkit-transition-property: color;
  1861. transition-property: color;
  1862. -webkit-transition-duration: 0.3s;
  1863. transition-duration: 0.3s;
  1864. }
  1865. .hvr-shutter-out-horizontal:before {
  1866. content: "";
  1867. position: absolute;
  1868. z-index: -1;
  1869. top: 0;
  1870. bottom: 0;
  1871. left: 0;
  1872. right: 0;
  1873. background: #2098d1;
  1874. -webkit-transform: scaleX(0);
  1875. transform: scaleX(0);
  1876. -webkit-transform-origin: 50%;
  1877. transform-origin: 50%;
  1878. -webkit-transition-property: transform;
  1879. transition-property: transform;
  1880. -webkit-transition-duration: 0.3s;
  1881. transition-duration: 0.3s;
  1882. -webkit-transition-timing-function: ease-out;
  1883. transition-timing-function: ease-out;
  1884. }
  1885. .hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
  1886. color: white;
  1887. }
  1888. .hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
  1889. -webkit-transform: scaleX(1);
  1890. transform: scaleX(1);
  1891. }
  1892. /* Shutter In Vertical */
  1893. .hvr-shutter-in-vertical {
  1894. display: inline-block;
  1895. vertical-align: middle;
  1896. -webkit-transform: translateZ(0);
  1897. transform: translateZ(0);
  1898. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1899. -webkit-backface-visibility: hidden;
  1900. backface-visibility: hidden;
  1901. -moz-osx-font-smoothing: grayscale;
  1902. position: relative;
  1903. background: #2098d1;
  1904. -webkit-transition-property: color;
  1905. transition-property: color;
  1906. -webkit-transition-duration: 0.3s;
  1907. transition-duration: 0.3s;
  1908. }
  1909. .hvr-shutter-in-vertical:before {
  1910. content: "";
  1911. position: absolute;
  1912. z-index: -1;
  1913. top: 0;
  1914. bottom: 0;
  1915. left: 0;
  1916. right: 0;
  1917. background: #e1e1e1;
  1918. -webkit-transform: scaleY(1);
  1919. transform: scaleY(1);
  1920. -webkit-transform-origin: 50%;
  1921. transform-origin: 50%;
  1922. -webkit-transition-property: transform;
  1923. transition-property: transform;
  1924. -webkit-transition-duration: 0.3s;
  1925. transition-duration: 0.3s;
  1926. -webkit-transition-timing-function: ease-out;
  1927. transition-timing-function: ease-out;
  1928. }
  1929. .hvr-shutter-in-vertical:hover, .hvr-shutter-in-vertical:focus, .hvr-shutter-in-vertical:active {
  1930. color: white;
  1931. }
  1932. .hvr-shutter-in-vertical:hover:before, .hvr-shutter-in-vertical:focus:before, .hvr-shutter-in-vertical:active:before {
  1933. -webkit-transform: scaleY(0);
  1934. transform: scaleY(0);
  1935. }
  1936. /* Shutter Out Vertical */
  1937. .hvr-shutter-out-vertical {
  1938. display: inline-block;
  1939. vertical-align: middle;
  1940. -webkit-transform: translateZ(0);
  1941. transform: translateZ(0);
  1942. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1943. -webkit-backface-visibility: hidden;
  1944. backface-visibility: hidden;
  1945. -moz-osx-font-smoothing: grayscale;
  1946. position: relative;
  1947. background: #e1e1e1;
  1948. -webkit-transition-property: color;
  1949. transition-property: color;
  1950. -webkit-transition-duration: 0.3s;
  1951. transition-duration: 0.3s;
  1952. }
  1953. .hvr-shutter-out-vertical:before {
  1954. content: "";
  1955. position: absolute;
  1956. z-index: -1;
  1957. top: 0;
  1958. bottom: 0;
  1959. left: 0;
  1960. right: 0;
  1961. background: #2098d1;
  1962. -webkit-transform: scaleY(0);
  1963. transform: scaleY(0);
  1964. -webkit-transform-origin: 50%;
  1965. transform-origin: 50%;
  1966. -webkit-transition-property: transform;
  1967. transition-property: transform;
  1968. -webkit-transition-duration: 0.3s;
  1969. transition-duration: 0.3s;
  1970. -webkit-transition-timing-function: ease-out;
  1971. transition-timing-function: ease-out;
  1972. }
  1973. .hvr-shutter-out-vertical:hover, .hvr-shutter-out-vertical:focus, .hvr-shutter-out-vertical:active {
  1974. color: white;
  1975. }
  1976. .hvr-shutter-out-vertical:hover:before, .hvr-shutter-out-vertical:focus:before, .hvr-shutter-out-vertical:active:before {
  1977. -webkit-transform: scaleY(1);
  1978. transform: scaleY(1);
  1979. }
  1980. /* BORDER TRANSITIONS */
  1981. /* Border Fade */
  1982. .hvr-border-fade {
  1983. display: inline-block;
  1984. vertical-align: middle;
  1985. -webkit-transform: translateZ(0);
  1986. transform: translateZ(0);
  1987. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  1988. -webkit-backface-visibility: hidden;
  1989. backface-visibility: hidden;
  1990. -moz-osx-font-smoothing: grayscale;
  1991. -webkit-transition-duration: 0.3s;
  1992. transition-duration: 0.3s;
  1993. -webkit-transition-property: box-shadow;
  1994. transition-property: box-shadow;
  1995. box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  1996. /* Hack to improve aliasing on mobile/tablet devices */
  1997. }
  1998. .hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  1999. box-shadow: inset 0 0 0 4px #2098d1, 0 0 1px rgba(0, 0, 0, 0);
  2000. /* Hack to improve aliasing on mobile/tablet devices */
  2001. }
  2002. /* Hollow */
  2003. .hvr-hollow {
  2004. display: inline-block;
  2005. vertical-align: middle;
  2006. -webkit-transform: translateZ(0);
  2007. transform: translateZ(0);
  2008. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2009. -webkit-backface-visibility: hidden;
  2010. backface-visibility: hidden;
  2011. -moz-osx-font-smoothing: grayscale;
  2012. -webkit-transition-duration: 0.3s;
  2013. transition-duration: 0.3s;
  2014. -webkit-transition-property: background;
  2015. transition-property: background;
  2016. box-shadow: inset 0 0 0 4px #e1e1e1, 0 0 1px rgba(0, 0, 0, 0);
  2017. /* Hack to improve aliasing on mobile/tablet devices */
  2018. }
  2019. .hvr-hollow:hover, .hvr-hollow:focus, .hvr-hollow:active {
  2020. background: none;
  2021. }
  2022. /* Trim */
  2023. .hvr-trim {
  2024. display: inline-block;
  2025. vertical-align: middle;
  2026. -webkit-transform: translateZ(0);
  2027. transform: translateZ(0);
  2028. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2029. -webkit-backface-visibility: hidden;
  2030. backface-visibility: hidden;
  2031. -moz-osx-font-smoothing: grayscale;
  2032. position: relative;
  2033. }
  2034. .hvr-trim:before {
  2035. content: '';
  2036. position: absolute;
  2037. border: white solid 4px;
  2038. top: 4px;
  2039. left: 4px;
  2040. right: 4px;
  2041. bottom: 4px;
  2042. opacity: 0;
  2043. -webkit-transition-duration: 0.3s;
  2044. transition-duration: 0.3s;
  2045. -webkit-transition-property: opacity;
  2046. transition-property: opacity;
  2047. }
  2048. .hvr-trim:hover:before, .hvr-trim:focus:before, .hvr-trim:active:before {
  2049. opacity: 1;
  2050. }
  2051. /* Ripple Out */
  2052. @-webkit-keyframes hvr-ripple-out {
  2053. 100% {
  2054. top: -12px;
  2055. right: -12px;
  2056. bottom: -12px;
  2057. left: -12px;
  2058. opacity: 0;
  2059. }
  2060. }
  2061. @keyframes hvr-ripple-out {
  2062. 100% {
  2063. top: -12px;
  2064. right: -12px;
  2065. bottom: -12px;
  2066. left: -12px;
  2067. opacity: 0;
  2068. }
  2069. }
  2070. .hvr-ripple-out {
  2071. display: inline-block;
  2072. vertical-align: middle;
  2073. -webkit-transform: translateZ(0);
  2074. transform: translateZ(0);
  2075. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2076. -webkit-backface-visibility: hidden;
  2077. backface-visibility: hidden;
  2078. -moz-osx-font-smoothing: grayscale;
  2079. position: relative;
  2080. }
  2081. .hvr-ripple-out:before {
  2082. content: '';
  2083. position: absolute;
  2084. border: #e1e1e1 solid 6px;
  2085. top: 0;
  2086. right: 0;
  2087. bottom: 0;
  2088. left: 0;
  2089. -webkit-animation-duration: 1s;
  2090. animation-duration: 1s;
  2091. }
  2092. .meet-the-team .member .social li.hvr-ripple-out:before {
  2093. border: #0f86ff solid 6px;
  2094. }
  2095. .hvr-ripple-out:hover:before, .hvr-ripple-out:focus:before, .hvr-ripple-out:active:before {
  2096. -webkit-animation-name: hvr-ripple-out;
  2097. animation-name: hvr-ripple-out;
  2098. }
  2099. /* Ripple In */
  2100. @-webkit-keyframes hvr-ripple-in {
  2101. 100% {
  2102. top: 0;
  2103. right: 0;
  2104. bottom: 0;
  2105. left: 0;
  2106. opacity: 1;
  2107. }
  2108. }
  2109. @keyframes hvr-ripple-in {
  2110. 100% {
  2111. top: 0;
  2112. right: 0;
  2113. bottom: 0;
  2114. left: 0;
  2115. opacity: 1;
  2116. }
  2117. }
  2118. .hvr-ripple-in {
  2119. display: inline-block;
  2120. vertical-align: middle;
  2121. -webkit-transform: translateZ(0);
  2122. transform: translateZ(0);
  2123. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2124. -webkit-backface-visibility: hidden;
  2125. backface-visibility: hidden;
  2126. -moz-osx-font-smoothing: grayscale;
  2127. position: relative;
  2128. }
  2129. .hvr-ripple-in:before {
  2130. content: '';
  2131. position: absolute;
  2132. border: #e1e1e1 solid 4px;
  2133. top: -12px;
  2134. right: -12px;
  2135. bottom: -12px;
  2136. left: -12px;
  2137. opacity: 0;
  2138. -webkit-animation-duration: 1s;
  2139. animation-duration: 1s;
  2140. }
  2141. .hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
  2142. -webkit-animation-name: hvr-ripple-in;
  2143. animation-name: hvr-ripple-in;
  2144. }
  2145. /* Outline Out */
  2146. .hvr-outline-out {
  2147. display: inline-block;
  2148. vertical-align: middle;
  2149. -webkit-transform: translateZ(0);
  2150. transform: translateZ(0);
  2151. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2152. -webkit-backface-visibility: hidden;
  2153. backface-visibility: hidden;
  2154. -moz-osx-font-smoothing: grayscale;
  2155. position: relative;
  2156. }
  2157. .hvr-outline-out:before {
  2158. content: '';
  2159. position: absolute;
  2160. border: #e1e1e1 solid 4px;
  2161. top: 0;
  2162. right: 0;
  2163. bottom: 0;
  2164. left: 0;
  2165. -webkit-transition-duration: 0.3s;
  2166. transition-duration: 0.3s;
  2167. -webkit-transition-property: top, right, bottom, left;
  2168. transition-property: top, right, bottom, left;
  2169. }
  2170. .hvr-outline-out:hover:before, .hvr-outline-out:focus:before, .hvr-outline-out:active:before {
  2171. top: -8px;
  2172. right: -8px;
  2173. bottom: -8px;
  2174. left: -8px;
  2175. }
  2176. /* Outline In */
  2177. .hvr-outline-in {
  2178. display: inline-block;
  2179. vertical-align: middle;
  2180. -webkit-transform: translateZ(0);
  2181. transform: translateZ(0);
  2182. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2183. -webkit-backface-visibility: hidden;
  2184. backface-visibility: hidden;
  2185. -moz-osx-font-smoothing: grayscale;
  2186. position: relative;
  2187. }
  2188. .hvr-outline-in:before {
  2189. pointer-events: none;
  2190. content: '';
  2191. position: absolute;
  2192. border: #e1e1e1 solid 4px;
  2193. top: -16px;
  2194. right: -16px;
  2195. bottom: -16px;
  2196. left: -16px;
  2197. opacity: 0;
  2198. -webkit-transition-duration: 0.3s;
  2199. transition-duration: 0.3s;
  2200. -webkit-transition-property: top, right, bottom, left;
  2201. transition-property: top, right, bottom, left;
  2202. }
  2203. .hvr-outline-in:hover:before, .hvr-outline-in:focus:before, .hvr-outline-in:active:before {
  2204. top: -8px;
  2205. right: -8px;
  2206. bottom: -8px;
  2207. left: -8px;
  2208. opacity: 1;
  2209. }
  2210. /* Round Corners */
  2211. .hvr-round-corners {
  2212. display: inline-block;
  2213. vertical-align: middle;
  2214. -webkit-transform: translateZ(0);
  2215. transform: translateZ(0);
  2216. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2217. -webkit-backface-visibility: hidden;
  2218. backface-visibility: hidden;
  2219. -moz-osx-font-smoothing: grayscale;
  2220. -webkit-transition-duration: 0.3s;
  2221. transition-duration: 0.3s;
  2222. -webkit-transition-property: border-radius;
  2223. transition-property: border-radius;
  2224. }
  2225. .hvr-round-corners:hover, .hvr-round-corners:focus, .hvr-round-corners:active {
  2226. border-radius: 1em;
  2227. }
  2228. /* Underline From Left */
  2229. .hvr-underline-from-left {
  2230. display: inline-block;
  2231. vertical-align: middle;
  2232. -webkit-transform: translateZ(0);
  2233. transform: translateZ(0);
  2234. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2235. -webkit-backface-visibility: hidden;
  2236. backface-visibility: hidden;
  2237. -moz-osx-font-smoothing: grayscale;
  2238. position: relative;
  2239. overflow: hidden;
  2240. }
  2241. .hvr-underline-from-left:before {
  2242. content: "";
  2243. position: absolute;
  2244. z-index: -1;
  2245. left: 0;
  2246. right: 100%;
  2247. bottom: 0;
  2248. background: #2098d1;
  2249. height: 4px;
  2250. -webkit-transition-property: right;
  2251. transition-property: right;
  2252. -webkit-transition-duration: 0.3s;
  2253. transition-duration: 0.3s;
  2254. -webkit-transition-timing-function: ease-out;
  2255. transition-timing-function: ease-out;
  2256. }
  2257. .hvr-underline-from-left:hover:before, .hvr-underline-from-left:focus:before, .hvr-underline-from-left:active:before {
  2258. right: 0;
  2259. }
  2260. /* Underline From Center */
  2261. .hvr-underline-from-center {
  2262. display: inline-block;
  2263. vertical-align: middle;
  2264. -webkit-transform: translateZ(0);
  2265. transform: translateZ(0);
  2266. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2267. -webkit-backface-visibility: hidden;
  2268. backface-visibility: hidden;
  2269. -moz-osx-font-smoothing: grayscale;
  2270. position: relative;
  2271. overflow: hidden;
  2272. }
  2273. .hvr-underline-from-center:before {
  2274. content: "";
  2275. position: absolute;
  2276. z-index: -1;
  2277. left: 50%;
  2278. right: 50%;
  2279. bottom: 0;
  2280. background: #2098d1;
  2281. height: 4px;
  2282. -webkit-transition-property: left, right;
  2283. transition-property: left, right;
  2284. -webkit-transition-duration: 0.3s;
  2285. transition-duration: 0.3s;
  2286. -webkit-transition-timing-function: ease-out;
  2287. transition-timing-function: ease-out;
  2288. }
  2289. .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
  2290. left: 0;
  2291. right: 0;
  2292. }
  2293. /* Underline From Right */
  2294. .hvr-underline-from-right {
  2295. display: inline-block;
  2296. vertical-align: middle;
  2297. -webkit-transform: translateZ(0);
  2298. transform: translateZ(0);
  2299. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2300. -webkit-backface-visibility: hidden;
  2301. backface-visibility: hidden;
  2302. -moz-osx-font-smoothing: grayscale;
  2303. position: relative;
  2304. overflow: hidden;
  2305. }
  2306. .hvr-underline-from-right:before {
  2307. content: "";
  2308. position: absolute;
  2309. z-index: -1;
  2310. left: 100%;
  2311. right: 0;
  2312. bottom: 0;
  2313. background: #2098d1;
  2314. height: 4px;
  2315. -webkit-transition-property: left;
  2316. transition-property: left;
  2317. -webkit-transition-duration: 0.3s;
  2318. transition-duration: 0.3s;
  2319. -webkit-transition-timing-function: ease-out;
  2320. transition-timing-function: ease-out;
  2321. }
  2322. .hvr-underline-from-right:hover:before, .hvr-underline-from-right:focus:before, .hvr-underline-from-right:active:before {
  2323. left: 0;
  2324. }
  2325. /* Overline From Left */
  2326. .hvr-overline-from-left {
  2327. display: inline-block;
  2328. vertical-align: middle;
  2329. -webkit-transform: translateZ(0);
  2330. transform: translateZ(0);
  2331. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2332. -webkit-backface-visibility: hidden;
  2333. backface-visibility: hidden;
  2334. -moz-osx-font-smoothing: grayscale;
  2335. position: relative;
  2336. overflow: hidden;
  2337. }
  2338. .hvr-overline-from-left:before {
  2339. content: "";
  2340. position: absolute;
  2341. z-index: -1;
  2342. left: 0;
  2343. right: 100%;
  2344. top: 0;
  2345. background: #2098d1;
  2346. height: 4px;
  2347. -webkit-transition-property: right;
  2348. transition-property: right;
  2349. -webkit-transition-duration: 0.3s;
  2350. transition-duration: 0.3s;
  2351. -webkit-transition-timing-function: ease-out;
  2352. transition-timing-function: ease-out;
  2353. }
  2354. .hvr-overline-from-left:hover:before, .hvr-overline-from-left:focus:before, .hvr-overline-from-left:active:before {
  2355. right: 0;
  2356. }
  2357. /* Overline From Center */
  2358. .hvr-overline-from-center {
  2359. display: inline-block;
  2360. vertical-align: middle;
  2361. -webkit-transform: translateZ(0);
  2362. transform: translateZ(0);
  2363. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2364. -webkit-backface-visibility: hidden;
  2365. backface-visibility: hidden;
  2366. -moz-osx-font-smoothing: grayscale;
  2367. position: relative;
  2368. overflow: hidden;
  2369. }
  2370. .hvr-overline-from-center:before {
  2371. content: "";
  2372. position: absolute;
  2373. z-index: -1;
  2374. left: 50%;
  2375. right: 50%;
  2376. top: 0;
  2377. background: #2098d1;
  2378. height: 4px;
  2379. -webkit-transition-property: left, right;
  2380. transition-property: left, right;
  2381. -webkit-transition-duration: 0.3s;
  2382. transition-duration: 0.3s;
  2383. -webkit-transition-timing-function: ease-out;
  2384. transition-timing-function: ease-out;
  2385. }
  2386. .hvr-overline-from-center:hover:before, .hvr-overline-from-center:focus:before, .hvr-overline-from-center:active:before {
  2387. left: 0;
  2388. right: 0;
  2389. }
  2390. /* Overline From Right */
  2391. .hvr-overline-from-right {
  2392. display: inline-block;
  2393. vertical-align: middle;
  2394. -webkit-transform: translateZ(0);
  2395. transform: translateZ(0);
  2396. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2397. -webkit-backface-visibility: hidden;
  2398. backface-visibility: hidden;
  2399. -moz-osx-font-smoothing: grayscale;
  2400. position: relative;
  2401. overflow: hidden;
  2402. }
  2403. .hvr-overline-from-right:before {
  2404. content: "";
  2405. position: absolute;
  2406. z-index: -1;
  2407. left: 100%;
  2408. right: 0;
  2409. top: 0;
  2410. background: #2098d1;
  2411. height: 4px;
  2412. -webkit-transition-property: left;
  2413. transition-property: left;
  2414. -webkit-transition-duration: 0.3s;
  2415. transition-duration: 0.3s;
  2416. -webkit-transition-timing-function: ease-out;
  2417. transition-timing-function: ease-out;
  2418. }
  2419. .hvr-overline-from-right:hover:before, .hvr-overline-from-right:focus:before, .hvr-overline-from-right:active:before {
  2420. left: 0;
  2421. }
  2422. /* Reveal */
  2423. .hvr-reveal {
  2424. display: inline-block;
  2425. vertical-align: middle;
  2426. -webkit-transform: translateZ(0);
  2427. transform: translateZ(0);
  2428. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2429. -webkit-backface-visibility: hidden;
  2430. backface-visibility: hidden;
  2431. -moz-osx-font-smoothing: grayscale;
  2432. position: relative;
  2433. overflow: hidden;
  2434. }
  2435. .hvr-reveal:before {
  2436. content: "";
  2437. position: absolute;
  2438. z-index: -1;
  2439. left: 0;
  2440. right: 0;
  2441. top: 0;
  2442. bottom: 0;
  2443. border-color: #2098d1;
  2444. border-style: solid;
  2445. border-width: 0;
  2446. -webkit-transition-property: border-width;
  2447. transition-property: border-width;
  2448. -webkit-transition-duration: 0.1s;
  2449. transition-duration: 0.1s;
  2450. -webkit-transition-timing-function: ease-out;
  2451. transition-timing-function: ease-out;
  2452. }
  2453. .hvr-reveal:hover:before, .hvr-reveal:focus:before, .hvr-reveal:active:before {
  2454. -webkit-transform: translateY(0);
  2455. transform: translateY(0);
  2456. border-width: 4px;
  2457. }
  2458. /* Underline Reveal */
  2459. .hvr-underline-reveal {
  2460. display: inline-block;
  2461. vertical-align: middle;
  2462. -webkit-transform: translateZ(0);
  2463. transform: translateZ(0);
  2464. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2465. -webkit-backface-visibility: hidden;
  2466. backface-visibility: hidden;
  2467. -moz-osx-font-smoothing: grayscale;
  2468. position: relative;
  2469. overflow: hidden;
  2470. }
  2471. .hvr-underline-reveal:before {
  2472. content: "";
  2473. position: absolute;
  2474. z-index: -1;
  2475. left: 0;
  2476. right: 0;
  2477. bottom: 0;
  2478. background: #2098d1;
  2479. height: 4px;
  2480. -webkit-transform: translateY(4px);
  2481. transform: translateY(4px);
  2482. -webkit-transition-property: transform;
  2483. transition-property: transform;
  2484. -webkit-transition-duration: 0.3s;
  2485. transition-duration: 0.3s;
  2486. -webkit-transition-timing-function: ease-out;
  2487. transition-timing-function: ease-out;
  2488. }
  2489. .hvr-underline-reveal:hover:before, .hvr-underline-reveal:focus:before, .hvr-underline-reveal:active:before {
  2490. -webkit-transform: translateY(0);
  2491. transform: translateY(0);
  2492. }
  2493. /* Overline Reveal */
  2494. .hvr-overline-reveal {
  2495. display: inline-block;
  2496. vertical-align: middle;
  2497. -webkit-transform: translateZ(0);
  2498. transform: translateZ(0);
  2499. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2500. -webkit-backface-visibility: hidden;
  2501. backface-visibility: hidden;
  2502. -moz-osx-font-smoothing: grayscale;
  2503. position: relative;
  2504. overflow: hidden;
  2505. }
  2506. .hvr-overline-reveal:before {
  2507. content: "";
  2508. position: absolute;
  2509. z-index: -1;
  2510. left: 0;
  2511. right: 0;
  2512. top: 0;
  2513. background: #2098d1;
  2514. height: 4px;
  2515. -webkit-transform: translateY(-4px);
  2516. transform: translateY(-4px);
  2517. -webkit-transition-property: transform;
  2518. transition-property: transform;
  2519. -webkit-transition-duration: 0.3s;
  2520. transition-duration: 0.3s;
  2521. -webkit-transition-timing-function: ease-out;
  2522. transition-timing-function: ease-out;
  2523. }
  2524. .hvr-overline-reveal:hover:before, .hvr-overline-reveal:focus:before, .hvr-overline-reveal:active:before {
  2525. -webkit-transform: translateY(0);
  2526. transform: translateY(0);
  2527. }
  2528. /* SHADOW/GLOW TRANSITIONS */
  2529. /* Glow */
  2530. .hvr-glow {
  2531. display: inline-block;
  2532. vertical-align: middle;
  2533. -webkit-transform: translateZ(0);
  2534. transform: translateZ(0);
  2535. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2536. -webkit-backface-visibility: hidden;
  2537. backface-visibility: hidden;
  2538. -moz-osx-font-smoothing: grayscale;
  2539. -webkit-transition-duration: 0.3s;
  2540. transition-duration: 0.3s;
  2541. -webkit-transition-property: box-shadow;
  2542. transition-property: box-shadow;
  2543. }
  2544. .hvr-glow:hover, .hvr-glow:focus, .hvr-glow:active {
  2545. box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  2546. }
  2547. /* Shadow */
  2548. .hvr-shadow {
  2549. display: inline-block;
  2550. vertical-align: middle;
  2551. -webkit-transform: translateZ(0);
  2552. transform: translateZ(0);
  2553. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2554. -webkit-backface-visibility: hidden;
  2555. backface-visibility: hidden;
  2556. -moz-osx-font-smoothing: grayscale;
  2557. -webkit-transition-duration: 0.3s;
  2558. transition-duration: 0.3s;
  2559. -webkit-transition-property: box-shadow;
  2560. transition-property: box-shadow;
  2561. }
  2562. .hvr-shadow:hover, .hvr-shadow:focus, .hvr-shadow:active {
  2563. box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  2564. }
  2565. /* Grow Shadow */
  2566. .hvr-grow-shadow {
  2567. display: inline-block;
  2568. vertical-align: middle;
  2569. -webkit-transform: translateZ(0);
  2570. transform: translateZ(0);
  2571. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2572. -webkit-backface-visibility: hidden;
  2573. backface-visibility: hidden;
  2574. -moz-osx-font-smoothing: grayscale;
  2575. -webkit-transition-duration: 0.3s;
  2576. transition-duration: 0.3s;
  2577. -webkit-transition-property: box-shadow, transform;
  2578. transition-property: box-shadow, transform;
  2579. }
  2580. .hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  2581. box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  2582. -webkit-transform: scale(1.1);
  2583. transform: scale(1.1);
  2584. }
  2585. /* Box Shadow Outset */
  2586. .hvr-box-shadow-outset {
  2587. display: inline-block;
  2588. vertical-align: middle;
  2589. -webkit-transform: translateZ(0);
  2590. transform: translateZ(0);
  2591. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2592. -webkit-backface-visibility: hidden;
  2593. backface-visibility: hidden;
  2594. -moz-osx-font-smoothing: grayscale;
  2595. -webkit-transition-duration: 0.3s;
  2596. transition-duration: 0.3s;
  2597. -webkit-transition-property: box-shadow;
  2598. transition-property: box-shadow;
  2599. }
  2600. .hvr-box-shadow-outset:hover, .hvr-box-shadow-outset:focus, .hvr-box-shadow-outset:active {
  2601. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
  2602. }
  2603. /* Box Shadow Inset */
  2604. .hvr-box-shadow-inset {
  2605. display: inline-block;
  2606. vertical-align: middle;
  2607. -webkit-transform: translateZ(0);
  2608. transform: translateZ(0);
  2609. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2610. -webkit-backface-visibility: hidden;
  2611. backface-visibility: hidden;
  2612. -moz-osx-font-smoothing: grayscale;
  2613. -webkit-transition-duration: 0.3s;
  2614. transition-duration: 0.3s;
  2615. -webkit-transition-property: box-shadow;
  2616. transition-property: box-shadow;
  2617. box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  2618. /* Hack to improve aliasing on mobile/tablet devices */
  2619. }
  2620. .hvr-box-shadow-inset:hover, .hvr-box-shadow-inset:focus, .hvr-box-shadow-inset:active {
  2621. box-shadow: inset 2px 2px 2px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 0, 0, 0);
  2622. /* Hack to improve aliasing on mobile/tablet devices */
  2623. }
  2624. /* Float Shadow */
  2625. .hvr-float-shadow {
  2626. display: inline-block;
  2627. vertical-align: middle;
  2628. -webkit-transform: translateZ(0);
  2629. transform: translateZ(0);
  2630. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2631. -webkit-backface-visibility: hidden;
  2632. backface-visibility: hidden;
  2633. -moz-osx-font-smoothing: grayscale;
  2634. position: relative;
  2635. -webkit-transition-duration: 0.3s;
  2636. transition-duration: 0.3s;
  2637. -webkit-transition-property: transform;
  2638. transition-property: transform;
  2639. }
  2640. .hvr-float-shadow:before {
  2641. pointer-events: none;
  2642. position: absolute;
  2643. z-index: -1;
  2644. content: '';
  2645. top: 100%;
  2646. left: 5%;
  2647. height: 10px;
  2648. width: 90%;
  2649. opacity: 0;
  2650. background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  2651. background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  2652. /* W3C */
  2653. -webkit-transition-duration: 0.3s;
  2654. transition-duration: 0.3s;
  2655. -webkit-transition-property: transform, opacity;
  2656. transition-property: transform, opacity;
  2657. }
  2658. .hvr-float-shadow:hover, .hvr-float-shadow:focus, .hvr-float-shadow:active {
  2659. -webkit-transform: translateY(-5px);
  2660. transform: translateY(-5px);
  2661. /* move the element up by 5px */
  2662. }
  2663. .hvr-float-shadow:hover:before, .hvr-float-shadow:focus:before, .hvr-float-shadow:active:before {
  2664. opacity: 1;
  2665. -webkit-transform: translateY(5px);
  2666. transform: translateY(5px);
  2667. /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
  2668. }
  2669. /* Shadow Radial */
  2670. .hvr-shadow-radial {
  2671. display: inline-block;
  2672. vertical-align: middle;
  2673. -webkit-transform: translateZ(0);
  2674. transform: translateZ(0);
  2675. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2676. -webkit-backface-visibility: hidden;
  2677. backface-visibility: hidden;
  2678. -moz-osx-font-smoothing: grayscale;
  2679. position: relative;
  2680. }
  2681. .hvr-shadow-radial:before, .hvr-shadow-radial:after {
  2682. pointer-events: none;
  2683. position: absolute;
  2684. content: '';
  2685. left: 0;
  2686. width: 100%;
  2687. box-sizing: border-box;
  2688. background-repeat: no-repeat;
  2689. height: 5px;
  2690. opacity: 0;
  2691. -webkit-transition-duration: 0.3s;
  2692. transition-duration: 0.3s;
  2693. -webkit-transition-property: opacity;
  2694. transition-property: opacity;
  2695. }
  2696. .hvr-shadow-radial:before {
  2697. bottom: 100%;
  2698. background: -webkit-radial-gradient(50% 150%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  2699. background: radial-gradient(ellipse at 50% 150%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  2700. }
  2701. .hvr-shadow-radial:after {
  2702. top: 100%;
  2703. background: -webkit-radial-gradient(50% -50%, ellipse, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  2704. background: radial-gradient(ellipse at 50% -50%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 80%);
  2705. }
  2706. .hvr-shadow-radial:hover:before, .hvr-shadow-radial:focus:before, .hvr-shadow-radial:active:before, .hvr-shadow-radial:hover:after, .hvr-shadow-radial:focus:after, .hvr-shadow-radial:active:after {
  2707. opacity: 1;
  2708. }
  2709. /* SPEECH BUBBLES */
  2710. /* Bubble Top */
  2711. .hvr-bubble-top {
  2712. display: inline-block;
  2713. vertical-align: middle;
  2714. -webkit-transform: translateZ(0);
  2715. transform: translateZ(0);
  2716. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2717. -webkit-backface-visibility: hidden;
  2718. backface-visibility: hidden;
  2719. -moz-osx-font-smoothing: grayscale;
  2720. position: relative;
  2721. }
  2722. .hvr-bubble-top:before {
  2723. pointer-events: none;
  2724. position: absolute;
  2725. z-index: -1;
  2726. content: '';
  2727. border-style: solid;
  2728. -webkit-transition-duration: 0.3s;
  2729. transition-duration: 0.3s;
  2730. -webkit-transition-property: transform;
  2731. transition-property: transform;
  2732. left: calc(50% - 10px);
  2733. top: 0;
  2734. border-width: 0 10px 10px 10px;
  2735. border-color: transparent transparent #e1e1e1 transparent;
  2736. }
  2737. .hvr-bubble-top:hover:before, .hvr-bubble-top:focus:before, .hvr-bubble-top:active:before {
  2738. -webkit-transform: translateY(-10px);
  2739. transform: translateY(-10px);
  2740. }
  2741. /* Bubble Right */
  2742. .hvr-bubble-right {
  2743. display: inline-block;
  2744. vertical-align: middle;
  2745. -webkit-transform: translateZ(0);
  2746. transform: translateZ(0);
  2747. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2748. -webkit-backface-visibility: hidden;
  2749. backface-visibility: hidden;
  2750. -moz-osx-font-smoothing: grayscale;
  2751. position: relative;
  2752. }
  2753. .hvr-bubble-right:before {
  2754. pointer-events: none;
  2755. position: absolute;
  2756. z-index: -1;
  2757. content: '';
  2758. border-style: solid;
  2759. -webkit-transition-duration: 0.3s;
  2760. transition-duration: 0.3s;
  2761. -webkit-transition-property: transform;
  2762. transition-property: transform;
  2763. top: calc(50% - 10px);
  2764. right: 0;
  2765. border-width: 10px 0 10px 10px;
  2766. border-color: transparent transparent transparent #e1e1e1;
  2767. }
  2768. .hvr-bubble-right:hover:before, .hvr-bubble-right:focus:before, .hvr-bubble-right:active:before {
  2769. -webkit-transform: translateX(10px);
  2770. transform: translateX(10px);
  2771. }
  2772. /* Bubble Bottom */
  2773. .hvr-bubble-bottom {
  2774. display: inline-block;
  2775. vertical-align: middle;
  2776. -webkit-transform: translateZ(0);
  2777. transform: translateZ(0);
  2778. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2779. -webkit-backface-visibility: hidden;
  2780. backface-visibility: hidden;
  2781. -moz-osx-font-smoothing: grayscale;
  2782. position: relative;
  2783. }
  2784. .hvr-bubble-bottom:before {
  2785. pointer-events: none;
  2786. position: absolute;
  2787. z-index: -1;
  2788. content: '';
  2789. border-style: solid;
  2790. -webkit-transition-duration: 0.3s;
  2791. transition-duration: 0.3s;
  2792. -webkit-transition-property: transform;
  2793. transition-property: transform;
  2794. left: calc(50% - 10px);
  2795. bottom: 0;
  2796. border-width: 10px 10px 0 10px;
  2797. border-color: #e1e1e1 transparent transparent transparent;
  2798. }
  2799. .hvr-bubble-bottom:hover:before, .hvr-bubble-bottom:focus:before, .hvr-bubble-bottom:active:before {
  2800. -webkit-transform: translateY(10px);
  2801. transform: translateY(10px);
  2802. }
  2803. /* Bubble Left */
  2804. .hvr-bubble-left {
  2805. display: inline-block;
  2806. vertical-align: middle;
  2807. -webkit-transform: translateZ(0);
  2808. transform: translateZ(0);
  2809. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2810. -webkit-backface-visibility: hidden;
  2811. backface-visibility: hidden;
  2812. -moz-osx-font-smoothing: grayscale;
  2813. position: relative;
  2814. }
  2815. .hvr-bubble-left:before {
  2816. pointer-events: none;
  2817. position: absolute;
  2818. z-index: -1;
  2819. content: '';
  2820. border-style: solid;
  2821. -webkit-transition-duration: 0.3s;
  2822. transition-duration: 0.3s;
  2823. -webkit-transition-property: transform;
  2824. transition-property: transform;
  2825. top: calc(50% - 10px);
  2826. left: 0;
  2827. border-width: 10px 10px 10px 0;
  2828. border-color: transparent #e1e1e1 transparent transparent;
  2829. }
  2830. .hvr-bubble-left:hover:before, .hvr-bubble-left:focus:before, .hvr-bubble-left:active:before {
  2831. -webkit-transform: translateX(-10px);
  2832. transform: translateX(-10px);
  2833. }
  2834. /* Bubble Float Top */
  2835. .hvr-bubble-float-top {
  2836. display: inline-block;
  2837. vertical-align: middle;
  2838. -webkit-transform: translateZ(0);
  2839. transform: translateZ(0);
  2840. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2841. -webkit-backface-visibility: hidden;
  2842. backface-visibility: hidden;
  2843. -moz-osx-font-smoothing: grayscale;
  2844. position: relative;
  2845. -webkit-transition-duration: 0.3s;
  2846. transition-duration: 0.3s;
  2847. -webkit-transition-property: transform;
  2848. transition-property: transform;
  2849. }
  2850. .hvr-bubble-float-top:before {
  2851. position: absolute;
  2852. z-index: -1;
  2853. content: '';
  2854. left: calc(50% - 10px);
  2855. top: 0;
  2856. border-style: solid;
  2857. border-width: 0 10px 10px 10px;
  2858. border-color: transparent transparent #e1e1e1 transparent;
  2859. -webkit-transition-duration: 0.3s;
  2860. transition-duration: 0.3s;
  2861. -webkit-transition-property: transform;
  2862. transition-property: transform;
  2863. }
  2864. .hvr-bubble-float-top:hover, .hvr-bubble-float-top:focus, .hvr-bubble-float-top:active {
  2865. -webkit-transform: translateY(10px);
  2866. transform: translateY(10px);
  2867. }
  2868. .hvr-bubble-float-top:hover:before, .hvr-bubble-float-top:focus:before, .hvr-bubble-float-top:active:before {
  2869. -webkit-transform: translateY(-10px);
  2870. transform: translateY(-10px);
  2871. }
  2872. /* Bubble Float Right */
  2873. .hvr-bubble-float-right {
  2874. display: inline-block;
  2875. vertical-align: middle;
  2876. -webkit-transform: translateZ(0);
  2877. transform: translateZ(0);
  2878. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2879. -webkit-backface-visibility: hidden;
  2880. backface-visibility: hidden;
  2881. -moz-osx-font-smoothing: grayscale;
  2882. position: relative;
  2883. -webkit-transition-duration: 0.3s;
  2884. transition-duration: 0.3s;
  2885. -webkit-transition-property: transform;
  2886. transition-property: transform;
  2887. }
  2888. .hvr-bubble-float-right:before {
  2889. position: absolute;
  2890. z-index: -1;
  2891. top: calc(50% - 10px);
  2892. right: 0;
  2893. content: '';
  2894. border-style: solid;
  2895. border-width: 10px 0 10px 10px;
  2896. border-color: transparent transparent transparent #e1e1e1;
  2897. -webkit-transition-duration: 0.3s;
  2898. transition-duration: 0.3s;
  2899. -webkit-transition-property: transform;
  2900. transition-property: transform;
  2901. }
  2902. .hvr-bubble-float-right:hover, .hvr-bubble-float-right:focus, .hvr-bubble-float-right:active {
  2903. -webkit-transform: translateX(-10px);
  2904. transform: translateX(-10px);
  2905. }
  2906. .hvr-bubble-float-right:hover:before, .hvr-bubble-float-right:focus:before, .hvr-bubble-float-right:active:before {
  2907. -webkit-transform: translateX(10px);
  2908. transform: translateX(10px);
  2909. }
  2910. /* Bubble Float Bottom */
  2911. .hvr-bubble-float-bottom {
  2912. display: inline-block;
  2913. vertical-align: middle;
  2914. -webkit-transform: translateZ(0);
  2915. transform: translateZ(0);
  2916. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2917. -webkit-backface-visibility: hidden;
  2918. backface-visibility: hidden;
  2919. -moz-osx-font-smoothing: grayscale;
  2920. position: relative;
  2921. -webkit-transition-duration: 0.3s;
  2922. transition-duration: 0.3s;
  2923. -webkit-transition-property: transform;
  2924. transition-property: transform;
  2925. }
  2926. .hvr-bubble-float-bottom:before {
  2927. position: absolute;
  2928. z-index: -1;
  2929. content: '';
  2930. left: calc(50% - 10px);
  2931. bottom: 0;
  2932. border-style: solid;
  2933. border-width: 10px 10px 0 10px;
  2934. border-color: #e1e1e1 transparent transparent transparent;
  2935. -webkit-transition-duration: 0.3s;
  2936. transition-duration: 0.3s;
  2937. -webkit-transition-property: transform;
  2938. transition-property: transform;
  2939. }
  2940. .hvr-bubble-float-bottom:hover, .hvr-bubble-float-bottom:focus, .hvr-bubble-float-bottom:active {
  2941. -webkit-transform: translateY(-10px);
  2942. transform: translateY(-10px);
  2943. }
  2944. .hvr-bubble-float-bottom:hover:before, .hvr-bubble-float-bottom:focus:before, .hvr-bubble-float-bottom:active:before {
  2945. -webkit-transform: translateY(10px);
  2946. transform: translateY(10px);
  2947. }
  2948. /* Bubble Float Left */
  2949. .hvr-bubble-float-left {
  2950. display: inline-block;
  2951. vertical-align: middle;
  2952. -webkit-transform: translateZ(0);
  2953. transform: translateZ(0);
  2954. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2955. -webkit-backface-visibility: hidden;
  2956. backface-visibility: hidden;
  2957. -moz-osx-font-smoothing: grayscale;
  2958. position: relative;
  2959. -webkit-transition-duration: 0.3s;
  2960. transition-duration: 0.3s;
  2961. -webkit-transition-property: transform;
  2962. transition-property: transform;
  2963. }
  2964. .hvr-bubble-float-left:before {
  2965. position: absolute;
  2966. z-index: -1;
  2967. content: '';
  2968. top: calc(50% - 10px);
  2969. left: 0;
  2970. border-style: solid;
  2971. border-width: 10px 10px 10px 0;
  2972. border-color: transparent #e1e1e1 transparent transparent;
  2973. -webkit-transition-duration: 0.3s;
  2974. transition-duration: 0.3s;
  2975. -webkit-transition-property: transform;
  2976. transition-property: transform;
  2977. }
  2978. .hvr-bubble-float-left:hover, .hvr-bubble-float-left:focus, .hvr-bubble-float-left:active {
  2979. -webkit-transform: translateX(10px);
  2980. transform: translateX(10px);
  2981. }
  2982. .hvr-bubble-float-left:hover:before, .hvr-bubble-float-left:focus:before, .hvr-bubble-float-left:active:before {
  2983. -webkit-transform: translateX(-10px);
  2984. transform: translateX(-10px);
  2985. }
  2986. /* ICONS */
  2987. /* Icon Back */
  2988. .hvr-icon-back {
  2989. display: inline-block;
  2990. vertical-align: middle;
  2991. -webkit-transform: translateZ(0);
  2992. transform: translateZ(0);
  2993. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  2994. -webkit-backface-visibility: hidden;
  2995. backface-visibility: hidden;
  2996. -moz-osx-font-smoothing: grayscale;
  2997. position: relative;
  2998. padding-left: 2.2em;
  2999. -webkit-transition-duration: 0.1s;
  3000. transition-duration: 0.1s;
  3001. }
  3002. .hvr-icon-back:before {
  3003. content: "\f137";
  3004. position: absolute;
  3005. left: 1em;
  3006. padding: 0 1px;
  3007. font-family: FontAwesome;
  3008. -webkit-transform: translateZ(0);
  3009. transform: translateZ(0);
  3010. -webkit-transition-duration: 0.1s;
  3011. transition-duration: 0.1s;
  3012. -webkit-transition-property: transform;
  3013. transition-property: transform;
  3014. -webkit-transition-timing-function: ease-out;
  3015. transition-timing-function: ease-out;
  3016. }
  3017. .hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
  3018. -webkit-transform: translateX(-4px);
  3019. transform: translateX(-4px);
  3020. }
  3021. /* Icon Forward */
  3022. .hvr-icon-forward {
  3023. display: inline-block;
  3024. vertical-align: middle;
  3025. -webkit-transform: translateZ(0);
  3026. transform: translateZ(0);
  3027. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3028. -webkit-backface-visibility: hidden;
  3029. backface-visibility: hidden;
  3030. -moz-osx-font-smoothing: grayscale;
  3031. position: relative;
  3032. padding-right: 2.2em;
  3033. -webkit-transition-duration: 0.1s;
  3034. transition-duration: 0.1s;
  3035. }
  3036. .hvr-icon-forward:before {
  3037. content: "\f138";
  3038. position: absolute;
  3039. right: 1em;
  3040. padding: 0 1px;
  3041. font-family: FontAwesome;
  3042. -webkit-transform: translateZ(0);
  3043. transform: translateZ(0);
  3044. -webkit-transition-duration: 0.1s;
  3045. transition-duration: 0.1s;
  3046. -webkit-transition-property: transform;
  3047. transition-property: transform;
  3048. -webkit-transition-timing-function: ease-out;
  3049. transition-timing-function: ease-out;
  3050. }
  3051. .hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
  3052. -webkit-transform: translateX(4px);
  3053. transform: translateX(4px);
  3054. }
  3055. /* Icon Down */
  3056. @-webkit-keyframes hvr-icon-down {
  3057. 0%,
  3058. 50%,
  3059. 100% {
  3060. -webkit-transform: translateY(0);
  3061. transform: translateY(0);
  3062. }
  3063. 25%,
  3064. 75% {
  3065. -webkit-transform: translateY(6px);
  3066. transform: translateY(6px);
  3067. }
  3068. }
  3069. @keyframes hvr-icon-down {
  3070. 0%,
  3071. 50%,
  3072. 100% {
  3073. -webkit-transform: translateY(0);
  3074. transform: translateY(0);
  3075. }
  3076. 25%,
  3077. 75% {
  3078. -webkit-transform: translateY(6px);
  3079. transform: translateY(6px);
  3080. }
  3081. }
  3082. /* Icon Down */
  3083. .hvr-icon-down {
  3084. display: inline-block;
  3085. vertical-align: middle;
  3086. -webkit-transform: translateZ(0);
  3087. transform: translateZ(0);
  3088. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3089. -webkit-backface-visibility: hidden;
  3090. backface-visibility: hidden;
  3091. -moz-osx-font-smoothing: grayscale;
  3092. position: relative;
  3093. padding-right: 2.2em;
  3094. }
  3095. .hvr-icon-down:before {
  3096. content: "\f01a";
  3097. position: absolute;
  3098. right: 1em;
  3099. padding: 0 1px;
  3100. font-family: FontAwesome;
  3101. -webkit-transform: translateZ(0);
  3102. transform: translateZ(0);
  3103. }
  3104. .hvr-icon-down:hover:before, .hvr-icon-down:focus:before, .hvr-icon-down:active:before {
  3105. -webkit-animation-name: hvr-icon-down;
  3106. animation-name: hvr-icon-down;
  3107. -webkit-animation-duration: 0.75s;
  3108. animation-duration: 0.75s;
  3109. -webkit-animation-timing-function: ease-out;
  3110. animation-timing-function: ease-out;
  3111. }
  3112. /* Icon Up */
  3113. @-webkit-keyframes hvr-icon-up {
  3114. 0%,
  3115. 50%,
  3116. 100% {
  3117. -webkit-transform: translateY(0);
  3118. transform: translateY(0);
  3119. }
  3120. 25%,
  3121. 75% {
  3122. -webkit-transform: translateY(-6px);
  3123. transform: translateY(-6px);
  3124. }
  3125. }
  3126. @keyframes hvr-icon-up {
  3127. 0%,
  3128. 50%,
  3129. 100% {
  3130. -webkit-transform: translateY(0);
  3131. transform: translateY(0);
  3132. }
  3133. 25%,
  3134. 75% {
  3135. -webkit-transform: translateY(-6px);
  3136. transform: translateY(-6px);
  3137. }
  3138. }
  3139. /* Icon Up */
  3140. .hvr-icon-up {
  3141. display: inline-block;
  3142. vertical-align: middle;
  3143. -webkit-transform: translateZ(0);
  3144. transform: translateZ(0);
  3145. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3146. -webkit-backface-visibility: hidden;
  3147. backface-visibility: hidden;
  3148. -moz-osx-font-smoothing: grayscale;
  3149. position: relative;
  3150. padding-right: 2.2em;
  3151. }
  3152. .hvr-icon-up:before {
  3153. content: "\f01b";
  3154. position: absolute;
  3155. right: 1em;
  3156. padding: 0 1px;
  3157. font-family: FontAwesome;
  3158. -webkit-transform: translateZ(0);
  3159. transform: translateZ(0);
  3160. }
  3161. .hvr-icon-up:hover:before, .hvr-icon-up:focus:before, .hvr-icon-up:active:before {
  3162. -webkit-animation-name: hvr-icon-up;
  3163. animation-name: hvr-icon-up;
  3164. -webkit-animation-duration: 0.75s;
  3165. animation-duration: 0.75s;
  3166. -webkit-animation-timing-function: ease-out;
  3167. animation-timing-function: ease-out;
  3168. }
  3169. /* Icon Spin */
  3170. .hvr-icon-spin {
  3171. display: inline-block;
  3172. vertical-align: middle;
  3173. -webkit-transform: translateZ(0);
  3174. transform: translateZ(0);
  3175. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3176. -webkit-backface-visibility: hidden;
  3177. backface-visibility: hidden;
  3178. -moz-osx-font-smoothing: grayscale;
  3179. position: relative;
  3180. padding-right: 2.2em;
  3181. }
  3182. .hvr-icon-spin:before {
  3183. content: "\f021";
  3184. position: absolute;
  3185. right: 1em;
  3186. padding: 0 1px;
  3187. font-family: FontAwesome;
  3188. -webkit-transition-duration: 1s;
  3189. transition-duration: 1s;
  3190. -webkit-transition-property: transform;
  3191. transition-property: transform;
  3192. -webkit-transition-timing-function: ease-in-out;
  3193. transition-timing-function: ease-in-out;
  3194. }
  3195. .hvr-icon-spin:hover:before, .hvr-icon-spin:focus:before, .hvr-icon-spin:active:before {
  3196. -webkit-transform: rotate(360deg);
  3197. transform: rotate(360deg);
  3198. }
  3199. /* Icon Drop */
  3200. @-webkit-keyframes hvr-icon-drop {
  3201. 0% {
  3202. opacity: 0;
  3203. }
  3204. 50% {
  3205. opacity: 0;
  3206. -webkit-transform: translateY(-100%);
  3207. transform: translateY(-100%);
  3208. }
  3209. 51%,
  3210. 100% {
  3211. opacity: 1;
  3212. }
  3213. }
  3214. @keyframes hvr-icon-drop {
  3215. 0% {
  3216. opacity: 0;
  3217. }
  3218. 50% {
  3219. opacity: 0;
  3220. -webkit-transform: translateY(-100%);
  3221. transform: translateY(-100%);
  3222. }
  3223. 51%,
  3224. 100% {
  3225. opacity: 1;
  3226. }
  3227. }
  3228. /* Icon Drop */
  3229. .hvr-icon-drop {
  3230. display: inline-block;
  3231. vertical-align: middle;
  3232. -webkit-transform: translateZ(0);
  3233. transform: translateZ(0);
  3234. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3235. -webkit-backface-visibility: hidden;
  3236. backface-visibility: hidden;
  3237. -moz-osx-font-smoothing: grayscale;
  3238. position: relative;
  3239. padding-right: 2.2em;
  3240. }
  3241. .hvr-icon-drop:before {
  3242. content: "\f041";
  3243. position: absolute;
  3244. right: 1em;
  3245. opacity: 1;
  3246. padding: 0 1px;
  3247. font-family: FontAwesome;
  3248. -webkit-transform: translateZ(0);
  3249. transform: translateZ(0);
  3250. }
  3251. .hvr-icon-drop:hover:before, .hvr-icon-drop:focus:before, .hvr-icon-drop:active:before {
  3252. opacity: 0;
  3253. -webkit-transition-duration: 0.3s;
  3254. transition-duration: 0.3s;
  3255. -webkit-animation-name: hvr-icon-drop;
  3256. animation-name: hvr-icon-drop;
  3257. -webkit-animation-duration: 0.5s;
  3258. animation-duration: 0.5s;
  3259. -webkit-animation-delay: 0.3s;
  3260. animation-delay: 0.3s;
  3261. -webkit-animation-fill-mode: forwards;
  3262. animation-fill-mode: forwards;
  3263. -webkit-animation-timing-function: ease-in-out;
  3264. animation-timing-function: ease-in-out;
  3265. -webkit-animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  3266. animation-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  3267. }
  3268. /* Icon Fade */
  3269. .hvr-icon-fade {
  3270. display: inline-block;
  3271. vertical-align: middle;
  3272. -webkit-transform: translateZ(0);
  3273. transform: translateZ(0);
  3274. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3275. -webkit-backface-visibility: hidden;
  3276. backface-visibility: hidden;
  3277. -moz-osx-font-smoothing: grayscale;
  3278. position: relative;
  3279. padding-right: 2.2em;
  3280. }
  3281. .hvr-icon-fade:before {
  3282. content: "\f00c";
  3283. position: absolute;
  3284. right: 1em;
  3285. padding: 0 1px;
  3286. font-family: FontAwesome;
  3287. -webkit-transform: translateZ(0);
  3288. transform: translateZ(0);
  3289. -webkit-transition-duration: 0.5s;
  3290. transition-duration: 0.5s;
  3291. -webkit-transition-property: color;
  3292. transition-property: color;
  3293. }
  3294. .hvr-icon-fade:hover:before, .hvr-icon-fade:focus:before, .hvr-icon-fade:active:before {
  3295. color: #0F9E5E;
  3296. }
  3297. /* Icon Float Away */
  3298. @-webkit-keyframes hvr-icon-float-away {
  3299. 0% {
  3300. opacity: 1;
  3301. }
  3302. 100% {
  3303. opacity: 0;
  3304. -webkit-transform: translateY(-1em);
  3305. transform: translateY(-1em);
  3306. }
  3307. }
  3308. @keyframes hvr-icon-float-away {
  3309. 0% {
  3310. opacity: 1;
  3311. }
  3312. 100% {
  3313. opacity: 0;
  3314. -webkit-transform: translateY(-1em);
  3315. transform: translateY(-1em);
  3316. }
  3317. }
  3318. /* Icon Float Away */
  3319. .hvr-icon-float-away {
  3320. display: inline-block;
  3321. vertical-align: middle;
  3322. -webkit-transform: translateZ(0);
  3323. transform: translateZ(0);
  3324. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3325. -webkit-backface-visibility: hidden;
  3326. backface-visibility: hidden;
  3327. -moz-osx-font-smoothing: grayscale;
  3328. position: relative;
  3329. padding-right: 2.2em;
  3330. }
  3331. .hvr-icon-float-away:before, .hvr-icon-float-away:after {
  3332. content: "\f055";
  3333. position: absolute;
  3334. right: 1em;
  3335. padding: 0 1px;
  3336. font-family: FontAwesome;
  3337. }
  3338. .hvr-icon-float-away:after {
  3339. opacity: 0;
  3340. -webkit-animation-duration: 0.5s;
  3341. animation-duration: 0.5s;
  3342. -webkit-animation-fill-mode: forwards;
  3343. animation-fill-mode: forwards;
  3344. }
  3345. .hvr-icon-float-away:hover:after, .hvr-icon-float-away:focus:after, .hvr-icon-float-away:active:after {
  3346. -webkit-animation-name: hvr-icon-float-away;
  3347. animation-name: hvr-icon-float-away;
  3348. -webkit-animation-timing-function: ease-out;
  3349. animation-timing-function: ease-out;
  3350. }
  3351. /* Icon Sink Away */
  3352. @-webkit-keyframes hvr-icon-sink-away {
  3353. 0% {
  3354. opacity: 1;
  3355. }
  3356. 100% {
  3357. opacity: 0;
  3358. -webkit-transform: translateY(1em);
  3359. transform: translateY(1em);
  3360. }
  3361. }
  3362. @keyframes hvr-icon-sink-away {
  3363. 0% {
  3364. opacity: 1;
  3365. }
  3366. 100% {
  3367. opacity: 0;
  3368. -webkit-transform: translateY(1em);
  3369. transform: translateY(1em);
  3370. }
  3371. }
  3372. /* Icon Sink Away */
  3373. .hvr-icon-sink-away {
  3374. display: inline-block;
  3375. vertical-align: middle;
  3376. -webkit-transform: translateZ(0);
  3377. transform: translateZ(0);
  3378. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3379. -webkit-backface-visibility: hidden;
  3380. backface-visibility: hidden;
  3381. -moz-osx-font-smoothing: grayscale;
  3382. position: relative;
  3383. padding-right: 2.2em;
  3384. }
  3385. .hvr-icon-sink-away:before, .hvr-icon-sink-away:after {
  3386. content: "\f056";
  3387. position: absolute;
  3388. right: 1em;
  3389. padding: 0 1px;
  3390. font-family: FontAwesome;
  3391. -webkit-transform: translateZ(0);
  3392. transform: translateZ(0);
  3393. }
  3394. .hvr-icon-sink-away:after {
  3395. opacity: 0;
  3396. -webkit-animation-duration: 0.5s;
  3397. animation-duration: 0.5s;
  3398. -webkit-animation-fill-mode: forwards;
  3399. animation-fill-mode: forwards;
  3400. }
  3401. .hvr-icon-sink-away:hover:after, .hvr-icon-sink-away:focus:after, .hvr-icon-sink-away:active:after {
  3402. -webkit-animation-name: hvr-icon-sink-away;
  3403. animation-name: hvr-icon-sink-away;
  3404. -webkit-animation-timing-function: ease-out;
  3405. animation-timing-function: ease-out;
  3406. }
  3407. /* Icon Grow */
  3408. .hvr-icon-grow {
  3409. display: inline-block;
  3410. vertical-align: middle;
  3411. -webkit-transform: translateZ(0);
  3412. transform: translateZ(0);
  3413. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3414. -webkit-backface-visibility: hidden;
  3415. backface-visibility: hidden;
  3416. -moz-osx-font-smoothing: grayscale;
  3417. position: relative;
  3418. padding-right: 2.2em;
  3419. -webkit-transition-duration: 0.3s;
  3420. transition-duration: 0.3s;
  3421. }
  3422. .hvr-icon-grow:before {
  3423. content: "\f118";
  3424. position: absolute;
  3425. right: 1em;
  3426. padding: 0 1px;
  3427. font-family: FontAwesome;
  3428. -webkit-transform: translateZ(0);
  3429. transform: translateZ(0);
  3430. -webkit-transition-duration: 0.3s;
  3431. transition-duration: 0.3s;
  3432. -webkit-transition-property: transform;
  3433. transition-property: transform;
  3434. -webkit-transition-timing-function: ease-out;
  3435. transition-timing-function: ease-out;
  3436. }
  3437. .hvr-icon-grow:hover:before, .hvr-icon-grow:focus:before, .hvr-icon-grow:active:before {
  3438. -webkit-transform: scale(1.3) translateZ(0);
  3439. transform: scale(1.3) translateZ(0);
  3440. }
  3441. /* Icon Shrink */
  3442. .hvr-icon-shrink {
  3443. display: inline-block;
  3444. vertical-align: middle;
  3445. -webkit-transform: translateZ(0);
  3446. transform: translateZ(0);
  3447. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3448. -webkit-backface-visibility: hidden;
  3449. backface-visibility: hidden;
  3450. -moz-osx-font-smoothing: grayscale;
  3451. position: relative;
  3452. padding-right: 2.2em;
  3453. -webkit-transition-duration: 0.3s;
  3454. transition-duration: 0.3s;
  3455. }
  3456. .hvr-icon-shrink:before {
  3457. content: "\f119";
  3458. position: absolute;
  3459. right: 1em;
  3460. padding: 0 1px;
  3461. font-family: FontAwesome;
  3462. -webkit-transform: translateZ(0);
  3463. transform: translateZ(0);
  3464. -webkit-transition-duration: 0.3s;
  3465. transition-duration: 0.3s;
  3466. -webkit-transition-property: transform;
  3467. transition-property: transform;
  3468. -webkit-transition-timing-function: ease-out;
  3469. transition-timing-function: ease-out;
  3470. }
  3471. .hvr-icon-shrink:hover:before, .hvr-icon-shrink:focus:before, .hvr-icon-shrink:active:before {
  3472. -webkit-transform: scale(0.8);
  3473. transform: scale(0.8);
  3474. }
  3475. /* Icon Pulse */
  3476. @-webkit-keyframes hvr-icon-pulse {
  3477. 25% {
  3478. -webkit-transform: scale(1.3);
  3479. transform: scale(1.3);
  3480. }
  3481. 75% {
  3482. -webkit-transform: scale(0.8);
  3483. transform: scale(0.8);
  3484. }
  3485. }
  3486. @keyframes hvr-icon-pulse {
  3487. 25% {
  3488. -webkit-transform: scale(1.3);
  3489. transform: scale(1.3);
  3490. }
  3491. 75% {
  3492. -webkit-transform: scale(0.8);
  3493. transform: scale(0.8);
  3494. }
  3495. }
  3496. .hvr-icon-pulse {
  3497. display: inline-block;
  3498. vertical-align: middle;
  3499. -webkit-transform: translateZ(0);
  3500. transform: translateZ(0);
  3501. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3502. -webkit-backface-visibility: hidden;
  3503. backface-visibility: hidden;
  3504. -moz-osx-font-smoothing: grayscale;
  3505. position: relative;
  3506. padding-right: 2.2em;
  3507. }
  3508. .hvr-icon-pulse:before {
  3509. content: "\f015";
  3510. position: absolute;
  3511. right: 1em;
  3512. padding: 0 1px;
  3513. font-family: FontAwesome;
  3514. -webkit-transform: translateZ(0);
  3515. transform: translateZ(0);
  3516. -webkit-transition-timing-function: ease-out;
  3517. transition-timing-function: ease-out;
  3518. }
  3519. .hvr-icon-pulse:hover:before, .hvr-icon-pulse:focus:before, .hvr-icon-pulse:active:before {
  3520. -webkit-animation-name: hvr-icon-pulse;
  3521. animation-name: hvr-icon-pulse;
  3522. -webkit-animation-duration: 1s;
  3523. animation-duration: 1s;
  3524. -webkit-animation-timing-function: linear;
  3525. animation-timing-function: linear;
  3526. -webkit-animation-iteration-count: infinite;
  3527. animation-iteration-count: infinite;
  3528. }
  3529. /* Icon Pulse Grow */
  3530. @-webkit-keyframes hvr-icon-pulse-grow {
  3531. to {
  3532. -webkit-transform: scale(1.3);
  3533. transform: scale(1.3);
  3534. }
  3535. }
  3536. @keyframes hvr-icon-pulse-grow {
  3537. to {
  3538. -webkit-transform: scale(1.3);
  3539. transform: scale(1.3);
  3540. }
  3541. }
  3542. .hvr-icon-pulse-grow {
  3543. display: inline-block;
  3544. vertical-align: middle;
  3545. -webkit-transform: translateZ(0);
  3546. transform: translateZ(0);
  3547. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3548. -webkit-backface-visibility: hidden;
  3549. backface-visibility: hidden;
  3550. -moz-osx-font-smoothing: grayscale;
  3551. position: relative;
  3552. padding-right: 2.2em;
  3553. }
  3554. .hvr-icon-pulse-grow:before {
  3555. content: "\f015";
  3556. position: absolute;
  3557. right: 1em;
  3558. padding: 0 1px;
  3559. font-family: FontAwesome;
  3560. -webkit-transform: translateZ(0);
  3561. transform: translateZ(0);
  3562. -webkit-transition-timing-function: ease-out;
  3563. transition-timing-function: ease-out;
  3564. }
  3565. .hvr-icon-pulse-grow:hover:before, .hvr-icon-pulse-grow:focus:before, .hvr-icon-pulse-grow:active:before {
  3566. -webkit-animation-name: hvr-icon-pulse-grow;
  3567. animation-name: hvr-icon-pulse-grow;
  3568. -webkit-animation-duration: 0.3s;
  3569. animation-duration: 0.3s;
  3570. -webkit-animation-timing-function: linear;
  3571. animation-timing-function: linear;
  3572. -webkit-animation-iteration-count: infinite;
  3573. animation-iteration-count: infinite;
  3574. -webkit-animation-direction: alternate;
  3575. animation-direction: alternate;
  3576. }
  3577. /* Icon Pulse Shrink */
  3578. @-webkit-keyframes hvr-icon-pulse-shrink {
  3579. to {
  3580. -webkit-transform: scale(0.8);
  3581. transform: scale(0.8);
  3582. }
  3583. }
  3584. @keyframes hvr-icon-pulse-shrink {
  3585. to {
  3586. -webkit-transform: scale(0.8);
  3587. transform: scale(0.8);
  3588. }
  3589. }
  3590. .hvr-icon-pulse-shrink {
  3591. display: inline-block;
  3592. vertical-align: middle;
  3593. -webkit-transform: translateZ(0);
  3594. transform: translateZ(0);
  3595. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3596. -webkit-backface-visibility: hidden;
  3597. backface-visibility: hidden;
  3598. -moz-osx-font-smoothing: grayscale;
  3599. position: relative;
  3600. padding-right: 2.2em;
  3601. }
  3602. .hvr-icon-pulse-shrink:before {
  3603. content: "\f015";
  3604. position: absolute;
  3605. right: 1em;
  3606. padding: 0 1px;
  3607. font-family: FontAwesome;
  3608. -webkit-transform: translateZ(0);
  3609. transform: translateZ(0);
  3610. -webkit-transition-timing-function: ease-out;
  3611. transition-timing-function: ease-out;
  3612. }
  3613. .hvr-icon-pulse-shrink:hover:before, .hvr-icon-pulse-shrink:focus:before, .hvr-icon-pulse-shrink:active:before {
  3614. -webkit-animation-name: hvr-icon-pulse-shrink;
  3615. animation-name: hvr-icon-pulse-shrink;
  3616. -webkit-animation-duration: 0.3s;
  3617. animation-duration: 0.3s;
  3618. -webkit-animation-timing-function: linear;
  3619. animation-timing-function: linear;
  3620. -webkit-animation-iteration-count: infinite;
  3621. animation-iteration-count: infinite;
  3622. -webkit-animation-direction: alternate;
  3623. animation-direction: alternate;
  3624. }
  3625. /* Icon Push */
  3626. @-webkit-keyframes hvr-icon-push {
  3627. 50% {
  3628. -webkit-transform: scale(0.5);
  3629. transform: scale(0.5);
  3630. }
  3631. }
  3632. @keyframes hvr-icon-push {
  3633. 50% {
  3634. -webkit-transform: scale(0.5);
  3635. transform: scale(0.5);
  3636. }
  3637. }
  3638. .hvr-icon-push {
  3639. display: inline-block;
  3640. vertical-align: middle;
  3641. -webkit-transform: translateZ(0);
  3642. transform: translateZ(0);
  3643. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3644. -webkit-backface-visibility: hidden;
  3645. backface-visibility: hidden;
  3646. -moz-osx-font-smoothing: grayscale;
  3647. position: relative;
  3648. padding-right: 2.2em;
  3649. -webkit-transition-duration: 0.3s;
  3650. transition-duration: 0.3s;
  3651. }
  3652. .hvr-icon-push:before {
  3653. content: "\f006";
  3654. position: absolute;
  3655. right: 1em;
  3656. padding: 0 1px;
  3657. font-family: FontAwesome;
  3658. -webkit-transform: translateZ(0);
  3659. transform: translateZ(0);
  3660. -webkit-transition-duration: 0.3s;
  3661. transition-duration: 0.3s;
  3662. -webkit-transition-property: transform;
  3663. transition-property: transform;
  3664. -webkit-transition-timing-function: ease-out;
  3665. transition-timing-function: ease-out;
  3666. }
  3667. .hvr-icon-push:hover:before, .hvr-icon-push:focus:before, .hvr-icon-push:active:before {
  3668. -webkit-animation-name: hvr-icon-push;
  3669. animation-name: hvr-icon-push;
  3670. -webkit-animation-duration: 0.3s;
  3671. animation-duration: 0.3s;
  3672. -webkit-animation-timing-function: linear;
  3673. animation-timing-function: linear;
  3674. -webkit-animation-iteration-count: 1;
  3675. animation-iteration-count: 1;
  3676. }
  3677. /* Icon Pop */
  3678. @-webkit-keyframes hvr-icon-pop {
  3679. 50% {
  3680. -webkit-transform: scale(1.5);
  3681. transform: scale(1.5);
  3682. }
  3683. }
  3684. @keyframes hvr-icon-pop {
  3685. 50% {
  3686. -webkit-transform: scale(1.5);
  3687. transform: scale(1.5);
  3688. }
  3689. }
  3690. .hvr-icon-pop {
  3691. display: inline-block;
  3692. vertical-align: middle;
  3693. -webkit-transform: translateZ(0);
  3694. transform: translateZ(0);
  3695. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3696. -webkit-backface-visibility: hidden;
  3697. backface-visibility: hidden;
  3698. -moz-osx-font-smoothing: grayscale;
  3699. position: relative;
  3700. padding-right: 2.2em;
  3701. -webkit-transition-duration: 0.3s;
  3702. transition-duration: 0.3s;
  3703. }
  3704. .hvr-icon-pop:before {
  3705. content: "\f005";
  3706. position: absolute;
  3707. right: 1em;
  3708. padding: 0 1px;
  3709. font-family: FontAwesome;
  3710. -webkit-transform: translateZ(0);
  3711. transform: translateZ(0);
  3712. -webkit-transition-duration: 0.3s;
  3713. transition-duration: 0.3s;
  3714. -webkit-transition-property: transform;
  3715. transition-property: transform;
  3716. -webkit-transition-timing-function: ease-out;
  3717. transition-timing-function: ease-out;
  3718. }
  3719. .hvr-icon-pop:hover:before, .hvr-icon-pop:focus:before, .hvr-icon-pop:active:before {
  3720. -webkit-animation-name: hvr-icon-pop;
  3721. animation-name: hvr-icon-pop;
  3722. -webkit-animation-duration: 0.3s;
  3723. animation-duration: 0.3s;
  3724. -webkit-animation-timing-function: linear;
  3725. animation-timing-function: linear;
  3726. -webkit-animation-iteration-count: 1;
  3727. animation-iteration-count: 1;
  3728. }
  3729. /* Icon Bounce */
  3730. .hvr-icon-bounce {
  3731. display: inline-block;
  3732. vertical-align: middle;
  3733. -webkit-transform: translateZ(0);
  3734. transform: translateZ(0);
  3735. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3736. -webkit-backface-visibility: hidden;
  3737. backface-visibility: hidden;
  3738. -moz-osx-font-smoothing: grayscale;
  3739. position: relative;
  3740. padding-right: 2.2em;
  3741. -webkit-transition-duration: 0.3s;
  3742. transition-duration: 0.3s;
  3743. }
  3744. .hvr-icon-bounce:before {
  3745. content: "\f087";
  3746. position: absolute;
  3747. right: 1em;
  3748. padding: 0 1px;
  3749. font-family: FontAwesome;
  3750. -webkit-transform: translateZ(0);
  3751. transform: translateZ(0);
  3752. -webkit-transition-duration: 0.3s;
  3753. transition-duration: 0.3s;
  3754. -webkit-transition-property: transform;
  3755. transition-property: transform;
  3756. -webkit-transition-timing-function: ease-out;
  3757. transition-timing-function: ease-out;
  3758. }
  3759. .hvr-icon-bounce:hover:before, .hvr-icon-bounce:focus:before, .hvr-icon-bounce:active:before {
  3760. -webkit-transform: scale(1.5);
  3761. transform: scale(1.5);
  3762. -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  3763. transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
  3764. }
  3765. /* Icon Rotate */
  3766. .hvr-icon-rotate {
  3767. display: inline-block;
  3768. vertical-align: middle;
  3769. -webkit-transform: translateZ(0);
  3770. transform: translateZ(0);
  3771. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3772. -webkit-backface-visibility: hidden;
  3773. backface-visibility: hidden;
  3774. -moz-osx-font-smoothing: grayscale;
  3775. position: relative;
  3776. padding-right: 2.2em;
  3777. -webkit-transition-duration: 0.3s;
  3778. transition-duration: 0.3s;
  3779. }
  3780. .hvr-icon-rotate:before {
  3781. content: "\f0c6";
  3782. position: absolute;
  3783. right: 1em;
  3784. padding: 0 1px;
  3785. font-family: FontAwesome;
  3786. -webkit-transform: translateZ(0);
  3787. transform: translateZ(0);
  3788. -webkit-transition-duration: 0.3s;
  3789. transition-duration: 0.3s;
  3790. -webkit-transition-property: transform;
  3791. transition-property: transform;
  3792. -webkit-transition-timing-function: ease-out;
  3793. transition-timing-function: ease-out;
  3794. }
  3795. .hvr-icon-rotate:hover:before, .hvr-icon-rotate:focus:before, .hvr-icon-rotate:active:before {
  3796. -webkit-transform: rotate(20deg);
  3797. transform: rotate(20deg);
  3798. }
  3799. /* Icon Grow Rotate */
  3800. .hvr-icon-grow-rotate {
  3801. display: inline-block;
  3802. vertical-align: middle;
  3803. -webkit-transform: translateZ(0);
  3804. transform: translateZ(0);
  3805. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3806. -webkit-backface-visibility: hidden;
  3807. backface-visibility: hidden;
  3808. -moz-osx-font-smoothing: grayscale;
  3809. position: relative;
  3810. padding-right: 2.2em;
  3811. -webkit-transition-duration: 0.3s;
  3812. transition-duration: 0.3s;
  3813. }
  3814. .hvr-icon-grow-rotate:before {
  3815. content: "\f095";
  3816. position: absolute;
  3817. right: 1em;
  3818. padding: 0 1px;
  3819. font-family: FontAwesome;
  3820. -webkit-transform: translateZ(0);
  3821. transform: translateZ(0);
  3822. -webkit-transition-duration: 0.3s;
  3823. transition-duration: 0.3s;
  3824. -webkit-transition-property: transform;
  3825. transition-property: transform;
  3826. -webkit-transition-timing-function: ease-out;
  3827. transition-timing-function: ease-out;
  3828. }
  3829. .hvr-icon-grow-rotate:hover:before, .hvr-icon-grow-rotate:focus:before, .hvr-icon-grow-rotate:active:before {
  3830. -webkit-transform: scale(1.5) rotate(12deg);
  3831. transform: scale(1.5) rotate(12deg);
  3832. }
  3833. /* Icon Float */
  3834. .hvr-icon-float {
  3835. display: inline-block;
  3836. vertical-align: middle;
  3837. -webkit-transform: translateZ(0);
  3838. transform: translateZ(0);
  3839. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3840. -webkit-backface-visibility: hidden;
  3841. backface-visibility: hidden;
  3842. -moz-osx-font-smoothing: grayscale;
  3843. position: relative;
  3844. padding-right: 2.2em;
  3845. -webkit-transition-duration: 0.3s;
  3846. transition-duration: 0.3s;
  3847. }
  3848. .hvr-icon-float:before {
  3849. content: "\f01b";
  3850. position: absolute;
  3851. right: 1em;
  3852. padding: 0 1px;
  3853. font-family: FontAwesome;
  3854. -webkit-transform: translateZ(0);
  3855. transform: translateZ(0);
  3856. -webkit-transition-duration: 0.3s;
  3857. transition-duration: 0.3s;
  3858. -webkit-transition-property: transform;
  3859. transition-property: transform;
  3860. -webkit-transition-timing-function: ease-out;
  3861. transition-timing-function: ease-out;
  3862. }
  3863. .hvr-icon-float:hover:before, .hvr-icon-float:focus:before, .hvr-icon-float:active:before {
  3864. -webkit-transform: translateY(-4px);
  3865. transform: translateY(-4px);
  3866. }
  3867. /* Icon Sink */
  3868. .hvr-icon-sink {
  3869. display: inline-block;
  3870. vertical-align: middle;
  3871. -webkit-transform: translateZ(0);
  3872. transform: translateZ(0);
  3873. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3874. -webkit-backface-visibility: hidden;
  3875. backface-visibility: hidden;
  3876. -moz-osx-font-smoothing: grayscale;
  3877. position: relative;
  3878. padding-right: 2.2em;
  3879. -webkit-transition-duration: 0.3s;
  3880. transition-duration: 0.3s;
  3881. }
  3882. .hvr-icon-sink:before {
  3883. content: "\f01a";
  3884. position: absolute;
  3885. right: 1em;
  3886. padding: 0 1px;
  3887. font-family: FontAwesome;
  3888. -webkit-transform: translateZ(0);
  3889. transform: translateZ(0);
  3890. -webkit-transition-duration: 0.3s;
  3891. transition-duration: 0.3s;
  3892. -webkit-transition-property: transform;
  3893. transition-property: transform;
  3894. -webkit-transition-timing-function: ease-out;
  3895. transition-timing-function: ease-out;
  3896. }
  3897. .hvr-icon-sink:hover:before, .hvr-icon-sink:focus:before, .hvr-icon-sink:active:before {
  3898. -webkit-transform: translateY(4px);
  3899. transform: translateY(4px);
  3900. }
  3901. /* Icon Bob */
  3902. @-webkit-keyframes hvr-icon-bob {
  3903. 0% {
  3904. -webkit-transform: translateY(-6px);
  3905. transform: translateY(-6px);
  3906. }
  3907. 50% {
  3908. -webkit-transform: translateY(-2px);
  3909. transform: translateY(-2px);
  3910. }
  3911. 100% {
  3912. -webkit-transform: translateY(-6px);
  3913. transform: translateY(-6px);
  3914. }
  3915. }
  3916. @keyframes hvr-icon-bob {
  3917. 0% {
  3918. -webkit-transform: translateY(-6px);
  3919. transform: translateY(-6px);
  3920. }
  3921. 50% {
  3922. -webkit-transform: translateY(-2px);
  3923. transform: translateY(-2px);
  3924. }
  3925. 100% {
  3926. -webkit-transform: translateY(-6px);
  3927. transform: translateY(-6px);
  3928. }
  3929. }
  3930. @-webkit-keyframes hvr-icon-bob-float {
  3931. 100% {
  3932. -webkit-transform: translateY(-6px);
  3933. transform: translateY(-6px);
  3934. }
  3935. }
  3936. @keyframes hvr-icon-bob-float {
  3937. 100% {
  3938. -webkit-transform: translateY(-6px);
  3939. transform: translateY(-6px);
  3940. }
  3941. }
  3942. .hvr-icon-bob {
  3943. display: inline-block;
  3944. vertical-align: middle;
  3945. -webkit-transform: translateZ(0);
  3946. transform: translateZ(0);
  3947. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  3948. -webkit-backface-visibility: hidden;
  3949. backface-visibility: hidden;
  3950. -moz-osx-font-smoothing: grayscale;
  3951. position: relative;
  3952. padding-right: 2.2em;
  3953. -webkit-transition-duration: 0.3s;
  3954. transition-duration: 0.3s;
  3955. }
  3956. .hvr-icon-bob:before {
  3957. content: "\f077";
  3958. position: absolute;
  3959. right: 1em;
  3960. padding: 0 1px;
  3961. font-family: FontAwesome;
  3962. -webkit-transform: translateZ(0);
  3963. transform: translateZ(0);
  3964. }
  3965. .hvr-icon-bob:hover:before, .hvr-icon-bob:focus:before, .hvr-icon-bob:active:before {
  3966. -webkit-animation-name: hvr-icon-bob-float, hvr-icon-bob;
  3967. animation-name: hvr-icon-bob-float, hvr-icon-bob;
  3968. -webkit-animation-duration: .3s, 1.5s;
  3969. animation-duration: .3s, 1.5s;
  3970. -webkit-animation-delay: 0s, .3s;
  3971. animation-delay: 0s, .3s;
  3972. -webkit-animation-timing-function: ease-out, ease-in-out;
  3973. animation-timing-function: ease-out, ease-in-out;
  3974. -webkit-animation-iteration-count: 1, infinite;
  3975. animation-iteration-count: 1, infinite;
  3976. -webkit-animation-fill-mode: forwards;
  3977. animation-fill-mode: forwards;
  3978. -webkit-animation-direction: normal, alternate;
  3979. animation-direction: normal, alternate;
  3980. }
  3981. /* Icon Hang */
  3982. @-webkit-keyframes hvr-icon-hang {
  3983. 0% {
  3984. -webkit-transform: translateY(6px);
  3985. transform: translateY(6px);
  3986. }
  3987. 50% {
  3988. -webkit-transform: translateY(2px);
  3989. transform: translateY(2px);
  3990. }
  3991. 100% {
  3992. -webkit-transform: translateY(6px);
  3993. transform: translateY(6px);
  3994. }
  3995. }
  3996. @keyframes hvr-icon-hang {
  3997. 0% {
  3998. -webkit-transform: translateY(6px);
  3999. transform: translateY(6px);
  4000. }
  4001. 50% {
  4002. -webkit-transform: translateY(2px);
  4003. transform: translateY(2px);
  4004. }
  4005. 100% {
  4006. -webkit-transform: translateY(6px);
  4007. transform: translateY(6px);
  4008. }
  4009. }
  4010. @-webkit-keyframes hvr-icon-hang-sink {
  4011. 100% {
  4012. -webkit-transform: translateY(6px);
  4013. transform: translateY(6px);
  4014. }
  4015. }
  4016. @keyframes hvr-icon-hang-sink {
  4017. 100% {
  4018. -webkit-transform: translateY(6px);
  4019. transform: translateY(6px);
  4020. }
  4021. }
  4022. .hvr-icon-hang {
  4023. display: inline-block;
  4024. vertical-align: middle;
  4025. -webkit-transform: translateZ(0);
  4026. transform: translateZ(0);
  4027. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4028. -webkit-backface-visibility: hidden;
  4029. backface-visibility: hidden;
  4030. -moz-osx-font-smoothing: grayscale;
  4031. position: relative;
  4032. padding-right: 2.2em;
  4033. -webkit-transition-duration: 0.3s;
  4034. transition-duration: 0.3s;
  4035. }
  4036. .hvr-icon-hang:before {
  4037. content: "\f078";
  4038. position: absolute;
  4039. right: 1em;
  4040. padding: 0 1px;
  4041. font-family: FontAwesome;
  4042. -webkit-transform: translateZ(0);
  4043. transform: translateZ(0);
  4044. }
  4045. .hvr-icon-hang:hover:before, .hvr-icon-hang:focus:before, .hvr-icon-hang:active:before {
  4046. -webkit-animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  4047. animation-name: hvr-icon-hang-sink, hvr-icon-hang;
  4048. -webkit-animation-duration: .3s, 1.5s;
  4049. animation-duration: .3s, 1.5s;
  4050. -webkit-animation-delay: 0s, .3s;
  4051. animation-delay: 0s, .3s;
  4052. -webkit-animation-timing-function: ease-out, ease-in-out;
  4053. animation-timing-function: ease-out, ease-in-out;
  4054. -webkit-animation-iteration-count: 1, infinite;
  4055. animation-iteration-count: 1, infinite;
  4056. -webkit-animation-fill-mode: forwards;
  4057. animation-fill-mode: forwards;
  4058. -webkit-animation-direction: normal, alternate;
  4059. animation-direction: normal, alternate;
  4060. }
  4061. /* Icon Wobble Horizontal */
  4062. @-webkit-keyframes hvr-icon-wobble-horizontal {
  4063. 16.65% {
  4064. -webkit-transform: translateX(6px);
  4065. transform: translateX(6px);
  4066. }
  4067. 33.3% {
  4068. -webkit-transform: translateX(-5px);
  4069. transform: translateX(-5px);
  4070. }
  4071. 49.95% {
  4072. -webkit-transform: translateX(4px);
  4073. transform: translateX(4px);
  4074. }
  4075. 66.6% {
  4076. -webkit-transform: translateX(-2px);
  4077. transform: translateX(-2px);
  4078. }
  4079. 83.25% {
  4080. -webkit-transform: translateX(1px);
  4081. transform: translateX(1px);
  4082. }
  4083. 100% {
  4084. -webkit-transform: translateX(0);
  4085. transform: translateX(0);
  4086. }
  4087. }
  4088. @keyframes hvr-icon-wobble-horizontal {
  4089. 16.65% {
  4090. -webkit-transform: translateX(6px);
  4091. transform: translateX(6px);
  4092. }
  4093. 33.3% {
  4094. -webkit-transform: translateX(-5px);
  4095. transform: translateX(-5px);
  4096. }
  4097. 49.95% {
  4098. -webkit-transform: translateX(4px);
  4099. transform: translateX(4px);
  4100. }
  4101. 66.6% {
  4102. -webkit-transform: translateX(-2px);
  4103. transform: translateX(-2px);
  4104. }
  4105. 83.25% {
  4106. -webkit-transform: translateX(1px);
  4107. transform: translateX(1px);
  4108. }
  4109. 100% {
  4110. -webkit-transform: translateX(0);
  4111. transform: translateX(0);
  4112. }
  4113. }
  4114. .hvr-icon-wobble-horizontal {
  4115. display: inline-block;
  4116. vertical-align: middle;
  4117. -webkit-transform: translateZ(0);
  4118. transform: translateZ(0);
  4119. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4120. -webkit-backface-visibility: hidden;
  4121. backface-visibility: hidden;
  4122. -moz-osx-font-smoothing: grayscale;
  4123. position: relative;
  4124. padding-right: 2.2em;
  4125. -webkit-transition-duration: 0.3s;
  4126. transition-duration: 0.3s;
  4127. }
  4128. .hvr-icon-wobble-horizontal:before {
  4129. content: "\f061";
  4130. position: absolute;
  4131. right: 1em;
  4132. padding: 0 1px;
  4133. font-family: FontAwesome;
  4134. -webkit-transform: translateZ(0);
  4135. transform: translateZ(0);
  4136. }
  4137. .hvr-icon-wobble-horizontal:hover:before, .hvr-icon-wobble-horizontal:focus:before, .hvr-icon-wobble-horizontal:active:before {
  4138. -webkit-animation-name: hvr-icon-wobble-horizontal;
  4139. animation-name: hvr-icon-wobble-horizontal;
  4140. -webkit-animation-duration: 1s;
  4141. animation-duration: 1s;
  4142. -webkit-animation-timing-function: ease-in-out;
  4143. animation-timing-function: ease-in-out;
  4144. -webkit-animation-iteration-count: 1;
  4145. animation-iteration-count: 1;
  4146. }
  4147. /* Icon Wobble Vertical */
  4148. @-webkit-keyframes hvr-icon-wobble-vertical {
  4149. 16.65% {
  4150. -webkit-transform: translateY(6px);
  4151. transform: translateY(6px);
  4152. }
  4153. 33.3% {
  4154. -webkit-transform: translateY(-5px);
  4155. transform: translateY(-5px);
  4156. }
  4157. 49.95% {
  4158. -webkit-transform: translateY(4px);
  4159. transform: translateY(4px);
  4160. }
  4161. 66.6% {
  4162. -webkit-transform: translateY(-2px);
  4163. transform: translateY(-2px);
  4164. }
  4165. 83.25% {
  4166. -webkit-transform: translateY(1px);
  4167. transform: translateY(1px);
  4168. }
  4169. 100% {
  4170. -webkit-transform: translateY(0);
  4171. transform: translateY(0);
  4172. }
  4173. }
  4174. @keyframes hvr-icon-wobble-vertical {
  4175. 16.65% {
  4176. -webkit-transform: translateY(6px);
  4177. transform: translateY(6px);
  4178. }
  4179. 33.3% {
  4180. -webkit-transform: translateY(-5px);
  4181. transform: translateY(-5px);
  4182. }
  4183. 49.95% {
  4184. -webkit-transform: translateY(4px);
  4185. transform: translateY(4px);
  4186. }
  4187. 66.6% {
  4188. -webkit-transform: translateY(-2px);
  4189. transform: translateY(-2px);
  4190. }
  4191. 83.25% {
  4192. -webkit-transform: translateY(1px);
  4193. transform: translateY(1px);
  4194. }
  4195. 100% {
  4196. -webkit-transform: translateY(0);
  4197. transform: translateY(0);
  4198. }
  4199. }
  4200. .hvr-icon-wobble-vertical {
  4201. display: inline-block;
  4202. vertical-align: middle;
  4203. -webkit-transform: translateZ(0);
  4204. transform: translateZ(0);
  4205. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4206. -webkit-backface-visibility: hidden;
  4207. backface-visibility: hidden;
  4208. -moz-osx-font-smoothing: grayscale;
  4209. position: relative;
  4210. padding-right: 2.2em;
  4211. -webkit-transition-duration: 0.3s;
  4212. transition-duration: 0.3s;
  4213. }
  4214. .hvr-icon-wobble-vertical:before {
  4215. content: "\f062";
  4216. position: absolute;
  4217. right: 1em;
  4218. padding: 0 1px;
  4219. font-family: FontAwesome;
  4220. -webkit-transform: translateZ(0);
  4221. transform: translateZ(0);
  4222. }
  4223. .hvr-icon-wobble-vertical:hover:before, .hvr-icon-wobble-vertical:focus:before, .hvr-icon-wobble-vertical:active:before {
  4224. -webkit-animation-name: hvr-icon-wobble-vertical;
  4225. animation-name: hvr-icon-wobble-vertical;
  4226. -webkit-animation-duration: 1s;
  4227. animation-duration: 1s;
  4228. -webkit-animation-timing-function: ease-in-out;
  4229. animation-timing-function: ease-in-out;
  4230. -webkit-animation-iteration-count: 1;
  4231. animation-iteration-count: 1;
  4232. }
  4233. /* Icon Buzz */
  4234. @-webkit-keyframes hvr-icon-buzz {
  4235. 50% {
  4236. -webkit-transform: translateX(3px) rotate(2deg);
  4237. transform: translateX(3px) rotate(2deg);
  4238. }
  4239. 100% {
  4240. -webkit-transform: translateX(-3px) rotate(-2deg);
  4241. transform: translateX(-3px) rotate(-2deg);
  4242. }
  4243. }
  4244. @keyframes hvr-icon-buzz {
  4245. 50% {
  4246. -webkit-transform: translateX(3px) rotate(2deg);
  4247. transform: translateX(3px) rotate(2deg);
  4248. }
  4249. 100% {
  4250. -webkit-transform: translateX(-3px) rotate(-2deg);
  4251. transform: translateX(-3px) rotate(-2deg);
  4252. }
  4253. }
  4254. .hvr-icon-buzz {
  4255. display: inline-block;
  4256. vertical-align: middle;
  4257. -webkit-transform: translateZ(0);
  4258. transform: translateZ(0);
  4259. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4260. -webkit-backface-visibility: hidden;
  4261. backface-visibility: hidden;
  4262. -moz-osx-font-smoothing: grayscale;
  4263. position: relative;
  4264. padding-right: 2.2em;
  4265. -webkit-transition-duration: 0.3s;
  4266. transition-duration: 0.3s;
  4267. }
  4268. .hvr-icon-buzz:before {
  4269. content: "\f017";
  4270. position: absolute;
  4271. right: 1em;
  4272. padding: 0 1px;
  4273. font-family: FontAwesome;
  4274. -webkit-transform: translateZ(0);
  4275. transform: translateZ(0);
  4276. }
  4277. .hvr-icon-buzz:hover:before, .hvr-icon-buzz:focus:before, .hvr-icon-buzz:active:before {
  4278. -webkit-animation-name: hvr-icon-buzz;
  4279. animation-name: hvr-icon-buzz;
  4280. -webkit-animation-duration: 0.15s;
  4281. animation-duration: 0.15s;
  4282. -webkit-animation-timing-function: linear;
  4283. animation-timing-function: linear;
  4284. -webkit-animation-iteration-count: infinite;
  4285. animation-iteration-count: infinite;
  4286. }
  4287. /* Icon Buzz Out */
  4288. @-webkit-keyframes hvr-icon-buzz-out {
  4289. 10% {
  4290. -webkit-transform: translateX(3px) rotate(2deg);
  4291. transform: translateX(3px) rotate(2deg);
  4292. }
  4293. 20% {
  4294. -webkit-transform: translateX(-3px) rotate(-2deg);
  4295. transform: translateX(-3px) rotate(-2deg);
  4296. }
  4297. 30% {
  4298. -webkit-transform: translateX(3px) rotate(2deg);
  4299. transform: translateX(3px) rotate(2deg);
  4300. }
  4301. 40% {
  4302. -webkit-transform: translateX(-3px) rotate(-2deg);
  4303. transform: translateX(-3px) rotate(-2deg);
  4304. }
  4305. 50% {
  4306. -webkit-transform: translateX(2px) rotate(1deg);
  4307. transform: translateX(2px) rotate(1deg);
  4308. }
  4309. 60% {
  4310. -webkit-transform: translateX(-2px) rotate(-1deg);
  4311. transform: translateX(-2px) rotate(-1deg);
  4312. }
  4313. 70% {
  4314. -webkit-transform: translateX(2px) rotate(1deg);
  4315. transform: translateX(2px) rotate(1deg);
  4316. }
  4317. 80% {
  4318. -webkit-transform: translateX(-2px) rotate(-1deg);
  4319. transform: translateX(-2px) rotate(-1deg);
  4320. }
  4321. 90% {
  4322. -webkit-transform: translateX(1px) rotate(0);
  4323. transform: translateX(1px) rotate(0);
  4324. }
  4325. 100% {
  4326. -webkit-transform: translateX(-1px) rotate(0);
  4327. transform: translateX(-1px) rotate(0);
  4328. }
  4329. }
  4330. @keyframes hvr-icon-buzz-out {
  4331. 10% {
  4332. -webkit-transform: translateX(3px) rotate(2deg);
  4333. transform: translateX(3px) rotate(2deg);
  4334. }
  4335. 20% {
  4336. -webkit-transform: translateX(-3px) rotate(-2deg);
  4337. transform: translateX(-3px) rotate(-2deg);
  4338. }
  4339. 30% {
  4340. -webkit-transform: translateX(3px) rotate(2deg);
  4341. transform: translateX(3px) rotate(2deg);
  4342. }
  4343. 40% {
  4344. -webkit-transform: translateX(-3px) rotate(-2deg);
  4345. transform: translateX(-3px) rotate(-2deg);
  4346. }
  4347. 50% {
  4348. -webkit-transform: translateX(2px) rotate(1deg);
  4349. transform: translateX(2px) rotate(1deg);
  4350. }
  4351. 60% {
  4352. -webkit-transform: translateX(-2px) rotate(-1deg);
  4353. transform: translateX(-2px) rotate(-1deg);
  4354. }
  4355. 70% {
  4356. -webkit-transform: translateX(2px) rotate(1deg);
  4357. transform: translateX(2px) rotate(1deg);
  4358. }
  4359. 80% {
  4360. -webkit-transform: translateX(-2px) rotate(-1deg);
  4361. transform: translateX(-2px) rotate(-1deg);
  4362. }
  4363. 90% {
  4364. -webkit-transform: translateX(1px) rotate(0);
  4365. transform: translateX(1px) rotate(0);
  4366. }
  4367. 100% {
  4368. -webkit-transform: translateX(-1px) rotate(0);
  4369. transform: translateX(-1px) rotate(0);
  4370. }
  4371. }
  4372. .hvr-icon-buzz-out {
  4373. display: inline-block;
  4374. vertical-align: middle;
  4375. -webkit-transform: translateZ(0);
  4376. transform: translateZ(0);
  4377. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4378. -webkit-backface-visibility: hidden;
  4379. backface-visibility: hidden;
  4380. -moz-osx-font-smoothing: grayscale;
  4381. position: relative;
  4382. padding-right: 2.2em;
  4383. -webkit-transition-duration: 0.3s;
  4384. transition-duration: 0.3s;
  4385. }
  4386. .hvr-icon-buzz-out:before {
  4387. content: "\f023";
  4388. position: absolute;
  4389. right: 1em;
  4390. padding: 0 1px;
  4391. font-family: FontAwesome;
  4392. -webkit-transform: translateZ(0);
  4393. transform: translateZ(0);
  4394. }
  4395. .hvr-icon-buzz-out:hover:before, .hvr-icon-buzz-out:focus:before, .hvr-icon-buzz-out:active:before {
  4396. -webkit-animation-name: hvr-icon-buzz-out;
  4397. animation-name: hvr-icon-buzz-out;
  4398. -webkit-animation-duration: 0.75s;
  4399. animation-duration: 0.75s;
  4400. -webkit-animation-timing-function: linear;
  4401. animation-timing-function: linear;
  4402. -webkit-animation-iteration-count: 1;
  4403. animation-iteration-count: 1;
  4404. }
  4405. /* CURLS */
  4406. /* Curl Top Left */
  4407. .hvr-curl-top-left {
  4408. display: inline-block;
  4409. vertical-align: middle;
  4410. -webkit-transform: translateZ(0);
  4411. transform: translateZ(0);
  4412. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4413. -webkit-backface-visibility: hidden;
  4414. backface-visibility: hidden;
  4415. -moz-osx-font-smoothing: grayscale;
  4416. position: relative;
  4417. }
  4418. .hvr-curl-top-left:before {
  4419. pointer-events: none;
  4420. position: absolute;
  4421. content: '';
  4422. height: 0;
  4423. width: 0;
  4424. top: 0;
  4425. left: 0;
  4426. background: white;
  4427. /* IE9 */
  4428. background: linear-gradient(135deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  4429. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#000000');
  4430. /*For IE7-8-9*/
  4431. z-index: 1000;
  4432. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  4433. -webkit-transition-duration: 0.3s;
  4434. transition-duration: 0.3s;
  4435. -webkit-transition-property: width, height;
  4436. transition-property: width, height;
  4437. }
  4438. .hvr-curl-top-left:hover:before, .hvr-curl-top-left:focus:before, .hvr-curl-top-left:active:before {
  4439. width: 25px;
  4440. height: 25px;
  4441. }
  4442. .top-services .hvr-curl-top-left:before {
  4443. pointer-events: none;
  4444. position: absolute;
  4445. content: '';
  4446. height: 0;
  4447. width: 0;
  4448. top: 0;
  4449. left: 0;
  4450. background: #0f86ff;
  4451. /* IE9 */
  4452. background: linear-gradient(135deg, white 45%, #0f86ff 50%, #0f86ff 56%, #0f86ff 80%);
  4453. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffffff', endColorstr='#0f86ff');
  4454. /*For IE7-8-9*/
  4455. z-index: 1000;
  4456. box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  4457. -webkit-transition-duration: 0.3s;
  4458. transition-duration: 0.3s;
  4459. -webkit-transition-property: width, height;
  4460. transition-property: width, height;
  4461. }
  4462. .top-services .hvr-curl-top-left:hover:before, .top-services .hvr-curl-top-left:focus:before, .top-services .hvr-curl-top-left:active:before {
  4463. width: 40px;
  4464. height: 40px;
  4465. }
  4466. /* Curl Top Right */
  4467. .hvr-curl-top-right {
  4468. display: inline-block;
  4469. vertical-align: middle;
  4470. -webkit-transform: translateZ(0);
  4471. transform: translateZ(0);
  4472. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4473. -webkit-backface-visibility: hidden;
  4474. backface-visibility: hidden;
  4475. -moz-osx-font-smoothing: grayscale;
  4476. position: relative;
  4477. }
  4478. .hvr-curl-top-right:before {
  4479. pointer-events: none;
  4480. position: absolute;
  4481. content: '';
  4482. height: 0;
  4483. width: 0;
  4484. top: 0;
  4485. right: 0;
  4486. background: white;
  4487. /* IE9 */
  4488. background: linear-gradient(225deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  4489. box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  4490. -webkit-transition-duration: 0.3s;
  4491. transition-duration: 0.3s;
  4492. -webkit-transition-property: width, height;
  4493. transition-property: width, height;
  4494. }
  4495. .hvr-curl-top-right:hover:before, .hvr-curl-top-right:focus:before, .hvr-curl-top-right:active:before {
  4496. width: 25px;
  4497. height: 25px;
  4498. }
  4499. .top-services .hvr-curl-top-right:before {
  4500. pointer-events: none;
  4501. position: absolute;
  4502. content: '';
  4503. height: 0;
  4504. width: 0;
  4505. top: 0;
  4506. right: 0;
  4507. background: #6ec7f9;
  4508. /* IE9 */
  4509. background: linear-gradient(225deg, white 45%, #6ec7f9 50%, #6ec7f9 56%, #6ec7f9 80%);
  4510. box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.4);
  4511. -webkit-transition-duration: 0.3s;
  4512. transition-duration: 0.3s;
  4513. -webkit-transition-property: width, height;
  4514. transition-property: width, height;
  4515. }
  4516. .top-services .hvr-curl-top-right:hover:before, .top-services .hvr-curl-top-right:focus:before, .top-services .hvr-curl-top-right:active:before {
  4517. width: 40px;
  4518. height: 40px;
  4519. }
  4520. /* Curl Bottom Right */
  4521. .hvr-curl-bottom-right {
  4522. display: inline-block;
  4523. vertical-align: middle;
  4524. -webkit-transform: translateZ(0);
  4525. transform: translateZ(0);
  4526. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4527. -webkit-backface-visibility: hidden;
  4528. backface-visibility: hidden;
  4529. -moz-osx-font-smoothing: grayscale;
  4530. position: relative;
  4531. }
  4532. .hvr-curl-bottom-right:before {
  4533. pointer-events: none;
  4534. position: absolute;
  4535. content: '';
  4536. height: 0;
  4537. width: 0;
  4538. bottom: 0;
  4539. right: 0;
  4540. background: white;
  4541. /* IE9 */
  4542. background: linear-gradient(315deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  4543. box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.4);
  4544. -webkit-transition-duration: 0.3s;
  4545. transition-duration: 0.3s;
  4546. -webkit-transition-property: width, height;
  4547. transition-property: width, height;
  4548. }
  4549. .hvr-curl-bottom-right:hover:before, .hvr-curl-bottom-right:focus:before, .hvr-curl-bottom-right:active:before {
  4550. width: 25px;
  4551. height: 25px;
  4552. }
  4553. /* Curl Bottom Left */
  4554. .hvr-curl-bottom-left {
  4555. display: inline-block;
  4556. vertical-align: middle;
  4557. -webkit-transform: translateZ(0);
  4558. transform: translateZ(0);
  4559. box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  4560. -webkit-backface-visibility: hidden;
  4561. backface-visibility: hidden;
  4562. -moz-osx-font-smoothing: grayscale;
  4563. position: relative;
  4564. }
  4565. .hvr-curl-bottom-left:before {
  4566. pointer-events: none;
  4567. position: absolute;
  4568. content: '';
  4569. height: 0;
  4570. width: 0;
  4571. bottom: 0;
  4572. left: 0;
  4573. background: white;
  4574. /* IE9 */
  4575. background: linear-gradient(45deg, white 45%, #aaaaaa 50%, #cccccc 56%, white 80%);
  4576. box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.4);
  4577. -webkit-transition-duration: 0.3s;
  4578. transition-duration: 0.3s;
  4579. -webkit-transition-property: width, height;
  4580. transition-property: width, height;
  4581. }
  4582. .hvr-curl-bottom-left:hover:before, .hvr-curl-bottom-left:focus:before, .hvr-curl-bottom-left:active:before {
  4583. width: 25px;
  4584. height: 25px;
  4585. }