error_page.css 124 KB

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