style.css 163 KB

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