123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866 |
- .bg-white-1 {
- background-color: rgb(255, 255, 255) !important;
- }
- .border-white-1 {
- border-color: rgb(255, 255, 255) !important;
- }
- .btn-white-1 {
- color: rgb(255, 255, 255); background-color: rgb(255, 255, 255);
- }
- .btn-white-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(242, 242, 242) !important;
- }
- .text-white-1 {
- color: rgb(255, 255, 255) !important;
- }
- .panel-white-1 {
- border-color: rgb(242, 242, 242) !important;
- }
- .panel-white-1 .panel-heading {
- border-color: rgb(242, 242, 242) !important; border-radius: 0px; background-color: rgb(255, 255, 255) !important;
- }
- .panel-white-1 .panel-heading a {
- color: rgb(51, 51, 51);
- }
- .panel-white-1 .panel-title {
- color: rgb(51, 51, 51);
- }
- .widget.white-1 {
- color: rgb(51, 51, 51); background-color: rgb(255, 255, 255);
- }
- .widget.white-1 .widget-header h2 {
- color: rgb(51, 51, 51);
- }
- .bg-red-1 {
- background-color: rgb(235, 80, 85) !important;
- }
- .border-red-1 {
- border-color: rgb(235, 80, 85) !important;
- }
- .btn-red-1 {
- color: rgb(255, 255, 255); background-color: rgb(235, 80, 85);
- }
- .btn-red-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(221, 68, 73) !important;
- }
- .text-red-1 {
- color: rgb(235, 80, 85) !important;
- }
- .panel-red-1 {
- border-color: rgb(221, 68, 73) !important;
- }
- .panel-red-1 .panel-heading {
- border-color: rgb(221, 68, 73) !important; border-radius: 0px; background-color: rgb(235, 80, 85) !important;
- }
- .panel-red-1 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-red-1 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.red-1 {
- color: rgb(255, 255, 255); background-color: rgb(235, 80, 85);
- }
- .widget.red-1 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-blue-1 {
- background-color: rgb(60, 152, 158) !important;
- }
- .border-blue-1 {
- border-color: rgb(60, 152, 158) !important;
- }
- .btn-blue-1 {
- color: rgb(255, 255, 255); background-color: rgb(60, 152, 158);
- }
- .btn-blue-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(63, 126, 130) !important;
- }
- .text-blue-1 {
- color: rgb(60, 152, 158) !important;
- }
- .panel-blue-1 {
- border-color: rgb(63, 126, 130) !important;
- }
- .panel-blue-1 .panel-heading {
- border-color: rgb(63, 126, 130) !important; border-radius: 0px; background-color: rgb(60, 152, 158) !important;
- }
- .panel-blue-1 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-blue-1 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.blue-1 {
- color: rgb(255, 255, 255); background-color: rgb(60, 152, 158);
- }
- .widget.blue-1 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-blue-2 {
- background-color: rgb(52, 152, 219) !important;
- }
- .border-blue-2 {
- border-color: rgb(52, 152, 219) !important;
- }
- .btn-blue-2 {
- color: rgb(255, 255, 255); background-color: rgb(52, 152, 219);
- }
- .btn-blue-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(49, 137, 196) !important;
- }
- .text-blue-2 {
- color: rgb(52, 152, 219) !important;
- }
- .panel-blue-2 {
- border-color: rgb(49, 137, 196) !important;
- }
- .panel-blue-2 .panel-heading {
- border-color: rgb(49, 137, 196) !important; border-radius: 0px; background-color: rgb(52, 152, 219) !important;
- }
- .panel-blue-2 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-blue-2 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.blue-2 {
- color: rgb(255, 255, 255); background-color: rgb(52, 152, 219);
- }
- .widget.blue-2 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-blue-3 {
- background-color: rgb(41, 128, 185) !important;
- }
- .border-blue-3 {
- border-color: rgb(41, 128, 185) !important;
- }
- .btn-blue-3 {
- color: rgb(255, 255, 255); background-color: rgb(41, 128, 185);
- }
- .btn-blue-3:hover {
- color: rgb(255, 255, 255); background-color: rgb(46, 111, 154) !important;
- }
- .text-blue-3 {
- color: rgb(41, 128, 185) !important;
- }
- .panel-blue-3 {
- border-color: rgb(46, 111, 154) !important;
- }
- .panel-blue-3 .panel-heading {
- border-color: rgb(46, 111, 154) !important; border-radius: 0px; background-color: rgb(41, 128, 185) !important;
- }
- .panel-blue-3 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-blue-3 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.blue-3 {
- color: rgb(255, 255, 255); background-color: rgb(41, 128, 185);
- }
- .widget.blue-3 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-darkblue-1 {
- background-color: rgb(37, 41, 50) !important;
- }
- .border-darkblue-1 {
- border-color: rgb(37, 41, 50) !important;
- }
- .btn-darkblue-1 {
- color: rgb(255, 255, 255); background-color: rgb(37, 41, 50);
- }
- .btn-darkblue-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(29, 30, 32) !important;
- }
- .text-darkblue-1 {
- color: rgb(37, 41, 50) !important;
- }
- .panel-darkblue-1 {
- border-color: rgb(29, 30, 32) !important;
- }
- .panel-darkblue-1 .panel-heading {
- border-color: rgb(29, 30, 32) !important; border-radius: 0px; background-color: rgb(37, 41, 50) !important;
- }
- .panel-darkblue-1 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-darkblue-1 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.darkblue-1 {
- color: rgb(255, 255, 255); background-color: rgb(37, 41, 50);
- }
- .widget.darkblue-1 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-darkblue-2 {
- background-color: rgb(74, 82, 95) !important;
- }
- .border-darkblue-2 {
- border-color: rgb(74, 82, 95) !important;
- }
- .btn-darkblue-2 {
- color: rgb(255, 255, 255); background-color: rgb(74, 82, 95);
- }
- .btn-darkblue-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(70, 71, 73) !important;
- }
- .text-darkblue-2 {
- color: rgb(74, 82, 95) !important;
- }
- .panel-darkblue-2 {
- border-color: rgb(70, 71, 73) !important;
- }
- .panel-darkblue-2 .panel-heading {
- border-color: rgb(70, 71, 73) !important; border-radius: 0px; background-color: rgb(74, 82, 95) !important;
- }
- .panel-darkblue-2 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-darkblue-2 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.darkblue-2 {
- color: rgb(255, 255, 255); background-color: rgb(74, 82, 95);
- }
- .widget.darkblue-2 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-darkblue-3 {
- background-color: rgb(56, 70, 74) !important;
- }
- .border-darkblue-3 {
- border-color: rgb(56, 70, 74) !important;
- }
- .btn-darkblue-3 {
- color: rgb(255, 255, 255); background-color: rgb(56, 70, 74);
- }
- .btn-darkblue-3:hover {
- color: rgb(255, 255, 255); background-color: rgb(50, 53, 54) !important;
- }
- .text-darkblue-3 {
- color: rgb(56, 70, 74) !important;
- }
- .panel-darkblue-3 {
- border-color: rgb(50, 53, 54) !important;
- }
- .panel-darkblue-3 .panel-heading {
- border-color: rgb(50, 53, 54) !important; border-radius: 0px; background-color: rgb(56, 70, 74) !important;
- }
- .panel-darkblue-3 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-darkblue-3 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.darkblue-3 {
- color: rgb(255, 255, 255); background-color: rgb(56, 70, 74);
- }
- .widget.darkblue-3 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-lightblue-1 {
- background-color: rgb(171, 183, 183) !important;
- }
- .border-lightblue-1 {
- border-color: rgb(171, 183, 183) !important;
- }
- .btn-lightblue-1 {
- color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- .btn-lightblue-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(164, 164, 164) !important;
- }
- .text-lightblue-1 {
- color: rgb(171, 183, 183) !important;
- }
- .panel-lightblue-1 {
- border-color: rgb(164, 164, 164) !important;
- }
- .panel-lightblue-1 .panel-heading {
- border-color: rgb(164, 164, 164) !important; border-radius: 0px; background-color: rgb(171, 183, 183) !important;
- }
- .panel-lightblue-1 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-lightblue-1 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.lightblue-1 {
- color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- .widget.lightblue-1 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-lightblue-2 {
- background-color: rgb(122, 134, 143) !important;
- }
- .border-lightblue-2 {
- border-color: rgb(122, 134, 143) !important;
- }
- .btn-lightblue-2 {
- color: rgb(255, 255, 255); background-color: rgb(122, 134, 143);
- }
- .btn-lightblue-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(120, 120, 120) !important;
- }
- .text-lightblue-2 {
- color: rgb(122, 134, 143) !important;
- }
- .panel-lightblue-2 {
- border-color: rgb(120, 120, 120) !important;
- }
- .panel-lightblue-2 .panel-heading {
- border-color: rgb(120, 120, 120) !important; border-radius: 0px; background-color: rgb(122, 134, 143) !important;
- }
- .panel-lightblue-2 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-lightblue-2 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.lightblue-2 {
- padding: 0px 15px; color: rgb(51, 51, 51); background-color: rgb(122, 134, 143);
- }
- .widget.lightblue-2 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-orange-1 {
- background-color: rgb(232, 76, 61) !important;
- }
- .border-orange-1 {
- border-color: rgb(232, 76, 61) !important;
- }
- .btn-orange-1 {
- color: rgb(255, 255, 255); background-color: rgb(232, 76, 61);
- }
- .btn-orange-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(217, 65, 50) !important;
- }
- .text-orange-1 {
- color: rgb(232, 76, 61) !important;
- }
- .panel-orange-1 {
- border-color: rgb(217, 65, 50) !important;
- }
- .panel-orange-1 .panel-heading {
- border-color: rgb(217, 65, 50) !important; border-radius: 0px; background-color: rgb(232, 76, 61) !important;
- }
- .panel-orange-1 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-orange-1 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.orange-1 {
- color: rgb(255, 255, 255); background-color: rgb(232, 76, 61);
- }
- .widget.orange-1 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-orange-2 {
- background-color: rgb(222, 116, 94) !important;
- }
- .border-orange-2 {
- border-color: rgb(222, 116, 94) !important;
- }
- .btn-orange-2 {
- color: rgb(255, 255, 255); background-color: rgb(222, 116, 94);
- }
- .btn-orange-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(207, 105, 84) !important;
- }
- .text-orange-2 {
- color: rgb(222, 116, 94) !important;
- }
- .panel-orange-2 {
- border-color: rgb(207, 105, 84) !important;
- }
- .panel-orange-2 .panel-heading {
- border-color: rgb(207, 105, 84) !important; border-radius: 0px; background-color: rgb(222, 116, 94) !important;
- }
- .panel-orange-2 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-orange-2 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.orange-2 {
- color: rgb(255, 255, 255); background-color: rgb(222, 116, 94);
- }
- .widget.orange-2 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-orange-3 {
- background-color: rgb(226, 122, 63) !important;
- }
- .border-orange-3 {
- border-color: rgb(226, 122, 63) !important;
- }
- .btn-orange-3 {
- color: rgb(255, 255, 255); background-color: rgb(226, 122, 63);
- }
- .btn-orange-3:hover {
- color: rgb(255, 255, 255); background-color: rgb(210, 110, 53) !important;
- }
- .text-orange-3 {
- color: rgb(226, 122, 63) !important;
- }
- .panel-orange-3 {
- border-color: rgb(210, 110, 53) !important;
- }
- .panel-orange-3 .panel-heading {
- border-color: rgb(210, 110, 53) !important; border-radius: 0px; background-color: rgb(226, 122, 63) !important;
- }
- .panel-orange-3 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-orange-3 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.orange-3 {
- color: rgb(255, 255, 255); background-color: rgb(226, 122, 63);
- }
- .widget.orange-3 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-orange-4 {
- background-color: rgb(237, 206, 140) !important;
- }
- .border-orange-4 {
- border-color: rgb(237, 206, 140) !important;
- }
- .btn-orange-4 {
- color: rgb(255, 255, 255); background-color: rgb(237, 206, 140);
- }
- .btn-orange-4:hover {
- color: rgb(255, 255, 255); background-color: rgb(226, 194, 126) !important;
- }
- .text-orange-4 {
- color: rgb(237, 206, 140) !important;
- }
- .panel-orange-4 {
- border-color: rgb(226, 194, 126) !important;
- }
- .panel-orange-4 .panel-heading {
- border-color: rgb(226, 194, 126) !important; border-radius: 0px; background-color: rgb(237, 206, 140) !important;
- }
- .panel-orange-4 .panel-heading a {
- color: rgb(51, 51, 51);
- }
- .panel-orange-4 .panel-title {
- color: rgb(51, 51, 51);
- }
- .widget.orange-4 {
- color: rgb(51, 51, 51); background-color: rgb(237, 206, 140);
- }
- .widget.orange-4 .widget-header h2 {
- color: rgb(51, 51, 51);
- }
- .bg-green-1 {
- background-color: rgb(105, 199, 76) !important;
- }
- .border-green-1 {
- border-color: rgb(104, 195, 159) !important;
- }
- .btn-green-1 {
- color: rgb(255, 255, 255); background-color: rgb(104, 195, 159);
- }
- .btn-green-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(98, 176, 145) !important;
- }
- .text-green-1 {
- color: rgb(104, 195, 159) !important;
- }
- .panel-green-1 {
- border-color: rgb(98, 176, 145) !important;
- }
- .panel-green-1 .panel-heading {
- border-color: rgb(47, 218, 184) !important; border-radius: 0px; background-color: rgb(47, 218, 184) !important;
- }
- .panel-green-1 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-green-1 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.green-1 {
- color: rgb(255, 255, 255); background-color: rgb(104, 195, 159);
- }
- .widget.green-1 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-green-2 {
- background-color: rgb(158, 199, 137) !important;
- }
- .border-green-2 {
- border-color: rgb(158, 199, 137) !important;
- }
- .btn-green-2 {
- color: rgb(255, 255, 255); background-color: rgb(158, 199, 137);
- }
- .btn-green-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(147, 181, 130) !important;
- }
- .text-green-2 {
- color: rgb(158, 199, 137) !important;
- }
- .panel-green-2 {
- border-color: rgb(147, 181, 130) !important;
- }
- .panel-green-2 .panel-heading {
- border-color: rgb(147, 181, 130) !important; border-radius: 0px; background-color: rgb(158, 199, 137) !important;
- }
- .panel-green-2 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-green-2 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.green-2 {
- color: rgb(255, 255, 255); background-color: rgb(158, 199, 137);
- }
- .widget.green-2 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-green-3 {
- background-color: rgb(32, 156, 131) !important;
- }
- .border-green-3 {
- border-color: rgb(32, 156, 131) !important;
- }
- .btn-green-3 {
- color: rgb(255, 255, 255); background-color: rgb(32, 156, 131);
- }
- .btn-green-3:hover {
- color: rgb(255, 255, 255); background-color: rgb(36, 127, 108) !important;
- }
- .text-green-3 {
- color: rgb(32, 156, 131) !important;
- }
- .panel-green-3 {
- border-color: rgb(36, 127, 108) !important;
- }
- .panel-green-3 .panel-heading {
- border-color: rgb(36, 127, 108) !important; border-radius: 0px; background-color: rgb(32, 156, 131) !important;
- }
- .panel-green-3 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-green-3 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.green-3 {
- color: rgb(255, 255, 255); background-color: rgb(32, 156, 131);
- }
- .widget.green-3 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-pink-1 {
- background-color: rgb(245, 122, 130) !important;
- }
- .border-pink-1 {
- border-color: rgb(245, 122, 130) !important;
- }
- .btn-pink-1 {
- color: rgb(255, 255, 255); background-color: rgb(245, 122, 130);
- }
- .btn-pink-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(235, 107, 115) !important;
- }
- .text-pink-1 {
- color: rgb(245, 122, 130) !important;
- }
- .panel-pink-1 {
- border-color: rgb(235, 107, 115) !important;
- }
- .panel-pink-1 .panel-heading {
- border-color: rgb(235, 107, 115) !important; border-radius: 0px; background-color: rgb(245, 122, 130) !important;
- }
- .panel-pink-1 .panel-heading a {
- color: rgb(51, 51, 51);
- }
- .panel-pink-1 .panel-title {
- color: rgb(51, 51, 51);
- }
- .widget.pink-1 {
- color: rgb(51, 51, 51); background-color: rgb(245, 122, 130);
- }
- .widget.pink-1 .widget-header h2 {
- color: rgb(51, 51, 51);
- }
- .bg-pink-2 {
- background-color: rgb(245, 111, 108) !important;
- }
- .border-pink-2 {
- border-color: rgb(245, 111, 108) !important;
- }
- .btn-pink-2 {
- color: rgb(255, 255, 255); background-color: rgb(245, 111, 108);
- }
- .btn-pink-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(234, 96, 93) !important;
- }
- .text-pink-2 {
- color: rgb(245, 111, 108) !important;
- }
- .panel-pink-2 {
- border-color: rgb(234, 96, 93) !important;
- }
- .panel-pink-2 .panel-heading {
- border-color: rgb(234, 96, 93) !important; border-radius: 0px; background-color: rgb(245, 111, 108) !important;
- }
- .panel-pink-2 .panel-heading a {
- color: rgb(255, 255, 255);
- }
- .panel-pink-2 .panel-title {
- color: rgb(255, 255, 255);
- }
- .widget.pink-2 {
- color: rgb(255, 255, 255); background-color: rgb(245, 111, 108);
- }
- .widget.pink-2 .widget-header h2 {
- color: rgb(255, 255, 255);
- }
- .bg-yellow-1 {
- background-color: rgb(244, 205, 165) !important;
- }
- .border-yellow-1 {
- border-color: rgb(244, 205, 165) !important;
- }
- .btn-yellow-1 {
- color: rgb(255, 255, 255); background-color: rgb(244, 205, 165);
- }
- .btn-yellow-1:hover {
- color: rgb(255, 255, 255); background-color: rgb(235, 192, 149) !important;
- }
- .text-yellow-1 {
- color: rgb(244, 205, 165) !important;
- }
- .panel-yellow-1 {
- border-color: rgb(235, 192, 149) !important;
- }
- .panel-yellow-1 .panel-heading {
- border-color: rgb(235, 192, 149) !important; border-radius: 0px; background-color: rgb(244, 205, 165) !important;
- }
- .panel-yellow-1 .panel-heading a {
- color: rgb(51, 51, 51);
- }
- .panel-yellow-1 .panel-title {
- color: rgb(51, 51, 51);
- }
- .widget.yellow-1 {
- color: rgb(51, 51, 51); background-color: rgb(244, 205, 165);
- }
- .widget.yellow-1 .widget-header h2 {
- color: rgb(51, 51, 51);
- }
- .bg-yellow-2 {
- background-color: rgb(234, 230, 150) !important;
- }
- .border-yellow-2 {
- border-color: rgb(234, 230, 150) !important;
- }
- .btn-yellow-2 {
- color: rgb(255, 255, 255); background-color: rgb(234, 230, 150);
- }
- .btn-yellow-2:hover {
- color: rgb(255, 255, 255); background-color: rgb(222, 218, 136) !important;
- }
- .text-yellow-2 {
- color: rgb(234, 230, 150) !important;
- }
- .panel-yellow-2 {
- border-color: rgb(222, 218, 136) !important;
- }
- .panel-yellow-2 .panel-heading {
- border-color: rgb(222, 218, 136) !important; border-radius: 0px; background-color: rgb(234, 230, 150) !important;
- }
- .panel-yellow-2 .panel-heading a {
- color: rgb(51, 51, 51);
- }
- .panel-yellow-2 .panel-title {
- color: rgb(51, 51, 51);
- }
- .widget.yellow-2 {
- color: rgb(51, 51, 51); background-color: rgb(234, 230, 150);
- }
- .widget.yellow-2 .widget-header h2 {
- color: rgb(51, 51, 51);
- }
- body {
- 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;
- }
- h1 {
- margin: 10px 0px;
- }
- h2 {
- margin: 10px 0px;
- }
- h3 {
- margin: 10px 0px;
- }
- h4 {
- margin: 10px 0px;
- }
- h5 {
- margin: 10px 0px;
- }
- h6 {
- margin: 10px 0px;
- }
- h1 {
- line-height: 43px;
- }
- h2 {
- line-height: 35px;
- }
- h3 {
- line-height: 30px;
- }
- h4 {
- line-height: 22px;
- }
- h3 small {
- color: rgb(68, 68, 68); font-family: "Open Sans"; font-weight: 300;
- }
- h4 small {
- color: rgb(68, 68, 68); font-family: "Open Sans"; font-weight: 300;
- }
- h5 small {
- color: rgb(68, 68, 68); font-family: "Open Sans"; font-weight: 300;
- }
- h1 {
- font-family: "Open Sans"; font-weight: normal;
- }
- h2 {
- font-family: "Open Sans"; font-weight: normal;
- }
- h3 {
- font-family: "Open Sans"; font-weight: normal;
- }
- h4 {
- font-family: "Open Sans"; font-weight: normal;
- }
- h5 {
- font-family: "Open Sans"; font-weight: normal;
- }
- h6 {
- font-family: "Open Sans"; font-weight: normal;
- }
- * {
-
- }
- a:hover {
- outline: 0px; text-decoration: none;
- }
- a:active {
- outline: 0px; text-decoration: none;
- }
- a:focus {
- outline: 0px; text-decoration: none;
- }
- :focus {
-
- }
- .label {
- padding: 0.3em 0.6em;
- }
- .container {
- width: auto;
- }
- .navbar {
- margin: 0px 0px 0px -15px; border-radius: 0px; border: currentColor; border-image: none;
- }
- .navbar-collapse {
- margin: 0px; padding: 0px;
- }
- .navbar-default {
- border: currentColor; border-image: none; background-color: transparent;
- }
- .nav.navbar-nav.top-navbar .dropdown-menu > li {
- position: relative;
- }
- .nav.navbar-nav.top-navbar .dropdown-menu > li > a {
- padding: 8px 15px; color: rgb(76, 82, 100); font-family: "Open Sans", sans-serif; cursor: pointer;
- }
- .nav.navbar-nav.top-navbar > li span.absolute {
- padding: 0px; border-radius: 25px; top: 13px; width: 20px; text-align: center; right: 16px; line-height: 20px; font-size: 9px; position: absolute;
- }
- .table-noborder td {
- border: 0px currentColor !important; border-image: none !important;
- }
- .badge {
- vertical-align: bottom;
- }
- .btn-group.spaced .btn {
- border-left-color: rgba(0, 0, 0, 0.1); border-left-width: 1px; border-left-style: solid;
- }
- .btn-group.open {
- z-index: 2 !important;
- }
- .bold {
- font-weight: 700 !important;
- }
- .semibold {
- font-weight: 600 !important;
- }
- .input-invis {
- background: none !important; border: currentColor !important; border-image: none !important;
- }
- span.new-circle {
- padding: 5px; border-radius: 10px;
- }
- img.xs-avatar {
- 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;
- }
- img.ava-dropdown {
- margin: 0px 10px 0px 0px; float: left;
- }
- label {
- font-family: "Open Sans"; font-size: 13px; font-weight: 600;
- }
- .no-left-padding {
- padding-left: 0px;
- }
- .no-right-padding {
- padding-right: 0px;
- }
- .nomargin {
- margin: 0px !important;
- }
- .no-rounded {
- border-radius: 0px !important; -webkit-border-radius: 0px;
- }
- .full-rounded {
- border-radius: 20px !important; -webkit-border-radius: 20px; -moz-border-radius: 20px;
- }
- .stacked {
- margin: 0px;
- }
- .stacked > [class*='col-'] {
- margin: 0px !important; padding-right: 0px; padding-left: 0px;
- }
- textarea {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='text'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='password'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='datetime'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='datetime-local'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='date'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='month'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='time'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='week'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='number'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='email'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='url'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='search'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='tel'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- input[type='color'] {
- transition:background 0.2s linear; -webkit-transition: background 0.2s linear; -o-transition: background 0.2s linear; -moz-transition: background 0.2s linear;
- }
- textarea:focus {
- 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;
- }
- select:focus {
- 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;
- }
- input[type='text']:focus {
- 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;
- }
- input[type='password']:focus {
- 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;
- }
- input[type='datetime']:focus {
- 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;
- }
- input[type='datetime-local']:focus {
- 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;
- }
- input[type='date']:focus {
- 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;
- }
- input[type='month']:focus {
- 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;
- }
- input[type='time']:focus {
- 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;
- }
- input[type='week']:focus {
- 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;
- }
- input[type='number']:focus {
- 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;
- }
- input[type='email']:focus {
- 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;
- }
- input[type='url']:focus {
- 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;
- }
- input[type='search']:focus {
- 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;
- }
- input[type='tel']:focus {
- 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;
- }
- input[type='color']:focus {
- 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;
- }
- .m-uneditable-input:focus {
- 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;
- }
- .icon-added input {
- padding-left: 32px !important;
- }
- .icon-added i:first-child {
- margin: 10px; text-align: center; color: rgba(0, 0, 0, 0.2); display: block; position: absolute; z-index: 3;
- }
- .loading {
- 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;
- }
- .dropdown-menu {
- 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;
- }
- .dropdown-menu > li > a {
- padding: 5px 7px; border-radius: 2px; color: rgb(85, 85, 85); font-size: 13px; -webkit-border-radius: 2px;
- }
- .dropdown-menu > li > a:hover {
- background: rgb(170, 170, 170); color: rgb(255, 255, 255);
- }
- .nav .dropdown-menu {
- z-index: 8;
- }
- .dropdown-menu.dropdown-message ul {
- white-space: inherit;
- }
- .dropdown-menu.dropdown-message > li > a {
- 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;
- }
- .dropdown-menu.dropdown-message li.dropdown-footer a {
- display: block;
- }
- .dropdown-menu.dropdown-message li p {
- font-size: 11px; margin-bottom: 5px;
- }
- .dropdown-menu.dropdown-message li i.msg-time {
- color: rgb(122, 134, 143); font-size: 11px; font-style: normal;
- }
- .dropdown-menu.dropdown-message li p i {
- color: rgb(122, 134, 143); font-size: 11px; font-style: normal;
- }
- .dropdown-menu.dropdown-message .dropdown-message-scroll {
- padding: 0px;
- }
- .dropdown-menu.dropdown-message .dropdown-message-scroll li {
- padding: 5px 20px;
- }
- .dropdown-menu.dropdown-message .dropdown-message-scroll a {
- text-decoration: none; border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none;
- }
- .dropdown-menu.dropdown-message .dropdown-message-scroll strong {
- text-decoration: none; border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none;
- }
- .dropdown-menu.dropdown-message .dropdown-message-scroll .unread {
- background: rgb(255, 252, 224);
- }
- .dropdown-menu.dropdown-message .dropdown-message-scroll a:hover {
- color: rgb(0, 0, 0);
- }
- .dropdown-header.notif-header {
- padding: 10px 15px; font-size: 13px;
- }
- .dropdown-header.notif-header .pull-right {
- margin-top: -10px;
- }
- .iradio {
- padding-left: 0px; margin-top: 10px; margin-bottom: 10px; min-height: 20px;
- }
- .icheckbox {
- padding-left: 0px; margin-top: 10px; margin-bottom: 10px; min-height: 20px;
- }
- .icheckbox_square-aero {
- margin-right: 5px;
- }
- .input-group-addon {
- padding: 5px 12px;
- }
- i.i-xs {
- font-size: 10px;
- }
- .widget-tabbed :first-child.nav-tabs {
- margin-top: -38px;
- }
- .navbar-default .navbar-nav > .active > a {
- color: rgb(85, 85, 85); border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none; background-color: rgb(238, 238, 238);
- }
- .navbar-default .navbar-nav > .active > a:hover {
- color: rgb(85, 85, 85); border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none; background-color: rgb(238, 238, 238);
- }
- .navbar-default .navbar-nav > .active > a:focus {
- color: rgb(85, 85, 85); border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none; background-color: rgb(238, 238, 238);
- }
- .navbar-default .navbar-nav > .open > a {
- color: rgb(85, 85, 85); background-color: rgb(238, 238, 238);
- }
- .navbar-default .navbar-nav > .open > a:hover {
- color: rgb(85, 85, 85); background-color: rgb(238, 238, 238);
- }
- .navbar-default .navbar-nav > .open > a:focus {
- color: rgb(85, 85, 85); background-color: rgb(238, 238, 238);
- }
- .navbar-nav > li > .dropdown-menu::before {
- 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;
- }
- .navbar-nav > li > .dropdown-menu {
- 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;
- }
- .navbar-nav > li > .dropdown-menu > li > a {
- 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;
- }
- .navbar-nav > li > .dropdown-menu > li > a:hover {
- background: rgba(0, 0, 0, 0.06);
- }
- .navbar-nav > li > .dropdown-menu > li > a:focus {
- background: rgba(0, 0, 0, 0.06);
- }
- .navbar-nav > li > .dropdown-menu .dropdown-header {
- 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;
- }
- .navbar-nav > li > .dropdown-menu .dropdown-header a {
- padding: 0px; border: currentColor; border-image: none; width: auto; margin-right: 7px; display: inline-block;
- }
- .navbar-nav > li > .dropdown-menu .dropdown-footer {
- padding: 15px; color: rgb(51, 51, 51);
- }
- .navbar-nav > li.language_bar > .dropdown-menu > li > a:hover {
- background: rgba(0, 0, 0, 0.3);
- }
- .navbar-nav > li.language_bar > .dropdown-menu > li > a:focus {
- background: rgba(0, 0, 0, 0.3);
- }
- .navbar-nav > li.language_bar > .dropdown-menu::before {
- border-bottom-color: rgb(255, 255, 255); border-bottom-width: 6px; border-bottom-style: solid;
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown::before {
- border-bottom-color: rgb(255, 255, 255); border-bottom-width: 6px; border-bottom-style: solid;
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown {
- width: 300px; text-align: center; color: rgb(37, 41, 50); font-size: 16px;
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown a {
- 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;
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown a.clickable:hover {
- background: rgb(171, 183, 183); color: rgb(255, 255, 255);
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown a.clickable:hover i {
- color: rgb(255, 255, 255);
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown a i {
- height: 30px; color: rgb(105, 122, 122); line-height: 30px; font-size: 25px; display: block;
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown a.clickable {
- cursor: pointer; opacity: 1;
- }
- .navbar-nav > li > .dropdown-menu.grid-dropdown::before {
- left: 18px; right: auto;
- }
- .navbar-nav > li.topbar-profile > .dropdown-menu {
- background: rgb(26, 41, 38); color: rgb(255, 255, 255);
- }
- .navbar-nav > li.topbar-profile > .dropdown-menu > li > a {
- color: rgb(238, 238, 238) !important; padding-right: 10px; padding-left: 10px; font-family: "Open Sans";
- }
- .navbar-nav > li.topbar-profile > .dropdown-menu > li.divider {
- 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;
- }
- .navbar-nav > li.topbar-profile > .dropdown-menu > li:hover > a {
- color: rgb(255, 255, 255) !important;
- }
- .navbar-nav > li.topbar-profile > .dropdown-menu > li:focus > a {
- color: rgb(255, 255, 255) !important;
- }
- .navbar-nav > li.topbar-profile > .dropdown-menu::before {
- border-bottom-color: rgb(26, 41, 38); border-bottom-width: 6px; border-bottom-style: solid;
- }
- .navbar-form {
- background: rgb(0, 99, 147); padding: 4px 5px; border-radius: 999px; width: 250px; margin-top: 16px; margin-right: 25px; position: relative;
- }
- .navbar-form .search-button {
- 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;
- }
- .navbar-form .search-button:hover {
- 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;
- }
- .navbar-form .form-control:focus + .search-button {
- color: rgb(204, 204, 204);
- }
- .navbar-form .form-group {
- display: block;
- }
- .navbar-form .form-control {
- 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;
- }
- .navbar-form :-ms-input-placeholder.form-control {
- color: rgb(119, 119, 119) !important; -ms-text-overflow: ellipsis;
- }
- .enlarged .navbar-form .form-control {
- color: transparent;
- }
- .enlarged .navbar-form .form-control:hover {
- color: rgb(170, 170, 170);
- }
- .enlarged .navbar-form .form-control:focus {
- color: rgb(170, 170, 170);
- }
- .enlarged .navbar-form :-ms-input-placeholder.form-control {
- color: transparent !important; -ms-text-overflow: ellipsis;
- }
- .rounded-image {
- border-radius: 100px; overflow: hidden; display: inline-block; -webkit-border-radius: 100px;
- }
- .rounded-image img {
- width: 100%;
- }
- .profile-image img {
- border-radius: 999px;
- }
- .profile-text {
- color: rgb(51, 51, 51); font-size: 16px; font-weight: bold; margin-top: 7px; margin-bottom: 0px;
- }
- .profile-buttons {
- margin-top: 5px;
- }
- .profile-buttons a {
- padding: 4px 10px 6px; color: rgb(238, 238, 238); line-height: 22px; font-size: 13px; vertical-align: middle; display: inline-block;
- }
- .profile-buttons a i {
- line-height: 25px; font-size: 16px;
- }
- .profile-buttons a:hover {
- background: rgba(0, 0, 0, 0.2); border-radius: 3px; color: rgb(255, 255, 255); -webkit-border-radius: 3px;
- }
- .profile-status i {
- color: rgb(68, 68, 68); font-size: 14px; margin-top: -14px; float: right;
- }
- i.online {
- color: rgb(0, 172, 101);
- }
- hr.divider {
- border-color: rgba(255, 255, 255, 0.1); margin: 10px 5%; width: 90%; clear: both; display: block;
- }
- .the-timeline {
- margin-bottom: 40px;
- }
- .the-timeline .post-to-timeline {
- margin: 15px 0px;
- }
- .the-timeline .post-to-timeline textarea {
- height: 50px; margin-bottom: 10px; resize: none;
- }
- .the-timeline ul {
- 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;
- }
- .the-timeline ul li.the-year {
- 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;
- }
- .the-timeline ul li.the-year p {
- width: 20%; margin-left: 41%;
- }
- .the-timeline ul li.the-year::before {
- 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;
- }
- .the-timeline ul li.the-year::after {
- 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: " ";
- }
- .the-timeline ul li::before {
- 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: " ";
- }
- .the-timeline ul li {
- 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;
- }
- .the-timeline ul li:hover {
- border-left-color: rgb(74, 82, 95);
- }
- .the-timeline ul li:hover::before {
- border-color: transparent rgb(74, 82, 95) transparent transparent;
- }
- .the-timeline ul li p {
- margin: 0px; padding: 0px;
- }
- .the-timeline ul li .the-date {
- background: rgb(235, 80, 85); border-radius: 50%; left: -69px; top: 0px; width: 50px; height: 50px; text-align: center; line-height: 130%; position: absolute;
- }
- .the-timeline ul li .the-date span {
- color: rgb(255, 255, 255); font-size: 18px; margin-top: 8px; display: block;
- }
- .the-timeline ul li .the-date small {
- color: rgb(255, 255, 255); font-size: 12px; display: block;
- }
- .videoWrapper {
- height: 0px; padding-top: 25px; padding-bottom: 56.25%; margin-bottom: 15px; position: relative;
- }
- .videoWrapper iframe {
- border: currentColor; border-image: none; left: 0px; top: 0px; width: 100%; height: 100%; position: absolute;
- }
- iframe {
- border: currentColor; border-image: none; width: 100%;
- }
- .breadcrumb {
- background: none; margin: 0px; padding: 0px; font-size: 12px;
- }
- .progress.progress-xs {
- border-radius: 0px; height: 5px; margin-top: 25px; margin-bottom: 20px; box-shadow: none; -webkit-box-shadow: none;
- }
- .progress.progress-xs.for-modal {
- margin-top: 10px; margin-bottom: 20px;
- }
- .progress.progress-xs .progress-bar {
- 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);
- }
- .progress.progress-xs.progress-striped .progress-bar {
- background-size: 10px 10px;
- }
- .progress.progress-sm {
- border-radius: 0px; height: 10px; margin-top: 20px; margin-bottom: 20px; box-shadow: none; -webkit-box-shadow: none;
- }
- .progress.progress-sm.progress-striped .progress-bar {
- background-size: 15px 15px;
- }
- .table > thead > tr > th {
- vertical-align: middle; border-bottom-color: rgb(221, 221, 221); border-bottom-width: 1px; border-bottom-style: solid;
- }
- .form-control {
- 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);
- }
- .form-control:focus {
- 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);
- }
- .form-group .checkbox {
- padding-left: 0px; margin-left: 0px;
- }
- .btn {
- border-radius: 2px;
- }
- :first-child.list-group-item {
- border-top-left-radius: 0px; border-top-right-radius: 0px;
- }
- :last-child.list-group-item {
- border-bottom-right-radius: 0px; border-bottom-left-radius: 0px;
- }
- .alert {
- border-radius: 0px;
- }
- .btn-facebook {
- background: rgb(69, 97, 157); border-color: rgb(77, 108, 173);
- }
- .btn-facebook:hover {
- background: rgb(57, 82, 137); border-color: rgb(77, 108, 173);
- }
- .btn-twitter {
- background: rgb(0, 172, 238); border-color: rgb(0, 183, 252);
- }
- .btn-twitter:hover {
- background: rgb(3, 160, 222); border-color: rgb(0, 183, 252);
- }
- .btn-gplus {
- background: rgb(213, 70, 54); border-color: rgb(178, 46, 33);
- }
- .btn-gplus:hover {
- background: rgb(191, 57, 46); border-color: rgb(178, 46, 33);
- }
- .btn-vimeo {
- background: rgb(27, 182, 236); border-color: rgb(10, 160, 211);
- }
- .btn-vimeo:hover {
- background: rgb(18, 173, 227); border-color: rgb(10, 160, 211);
- }
- .btn-pinterest {
- background: rgb(205, 31, 40); border-color: rgb(183, 15, 23);
- }
- .btn-pinterest:hover {
- background: rgb(201, 18, 26); border-color: rgb(183, 15, 23);
- }
- .btn-instagram {
- background: rgb(78, 61, 53); border-color: rgb(57, 44, 36);
- }
- .btn-instagram:hover {
- background: rgb(72, 57, 49); border-color: rgb(57, 44, 36);
- }
- .clear {
- clear: both;
- }
- #wrapper {
- background: rgb(242, 242, 242); width: 100%; height: 100%; position: relative;
- }
- .page {
- left: 0px; top: 0px; right: 0px; bottom: 0px;
- }
- .rows {
- position: absolute;
- }
- .col {
- position: absolute;
- }
- .page {
- position: absolute;
- }
- .rows {
- left: 0px; right: 0px;
- }
- .topbar {
- 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);
- }
- .topbar .topbar-left {
- background: rgb(0, 111, 164); width: 285px; height: 70px; float: left; position: relative; z-index: 1;
- }
- .topbar .topbar-left::before {
- left: 50%; bottom: -14px; color: rgb(0, 111, 164); font-family: FontAwesome; font-size: 30px; margin-left: -6px; position: absolute; content: "\f0d7";
- }
- .logo h1 {
- 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;
- }
- .logo h1 a {
- color: rgb(255, 255, 255);
- }
- .topbar .title {
- 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;
- }
- .topbar-profile .topbar-profile-image {
- width: 40px; margin-top: -15px; margin-right: 5px; margin-bottom: -12px; position: relative;
- }
- .navbar-right .iconify > a > i {
- color: rgb(255, 255, 255); line-height: 17px; font-size: 14px;
- }
- .logout {
- display: none !important;
- }
- .right-opener {
-
- }
- .right-opener i {
- color: rgb(255, 255, 255); font-size: 16px;
- }
- .right-opener .fa-angle-double-right {
- display: none;
- }
- .open-right-sidebar .right-opener .fa-angle-double-right {
- display: inline-block;
- }
- .open-right-sidebar .right-opener .fa-angle-double-left {
- display: none;
- }
- .logo h1 img {
- height: 40%;
- }
- .col {
- top: 0px; bottom: 0px;
- }
- .scroll-x {
- -ms-overflow-x: auto; -webkit-overflow-scrolling: touch;
- }
- .scroll-y {
- -ms-overflow-y: auto; -webkit-overflow-scrolling: touch;
- }
- .fill {
- left: 0px; top: 0px; width: 100%; height: 100%; right: 0px; bottom: 0px; position: absolute;
- }
- .pane {
- left: 0px; top: 0px; width: 100%; height: 100%; right: 0px; bottom: 0px; position: absolute;
- }
- .pane {
- display: none;
- }
- .side-menu {
- top: 0px; width: 260px; bottom: 0px; z-index: 2;
- }
- .side-menu.left {
- left: 25px; top: 95px; position: absolute;
- }
- .fixed-left-void .side-menu.left {
- display: none;
- }
- body.fixed-left .side-menu.left {
- bottom: 30px; margin-top: 0px;
- }
- .side-menu.left .scroll-y {
- direction: rtl; -ms-overflow-x: visible;
- }
- body.mobile .slimscrollleft {
- -ms-overflow-y: scroll;
- }
- body.mobile .slimscroller {
- -ms-overflow-y: scroll;
- }
- .side-menu.left .scroll-y .sidebar-inner {
- direction: ltr;
- }
- .content-page {
- overflow: hidden; margin-left: 285px; position: relative;
- }
- .content-page > .content {
- 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);
- }
- .content-page > .content h4 {
- 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;
- }
- .content-page > .content .widget-content h2 {
- margin: 0px; padding: 0px; color: rgb(92, 102, 114); letter-spacing: normal; font-family: "Montserrat", sans-serif; font-size: 16px; font-weight: bold;
- }
- .grid-example {
- padding: 0px 15px; margin-bottom: 25px;
- }
- .side-menu.right {
- background: rgb(52, 56, 56); width: 230px; right: -230px; position: fixed; z-index: 15;
- }
- .side-menu.right .tab-inner {
- height: 100%;
- }
- .open-right-sidebar#wrapper {
- padding-right: 230px;
- }
- .open-right-sidebar .topbar {
-
- }
- .open-right-sidebar .right {
- right: 0px !important;
- }
- .header.rows {
- height: 50px;
- }
- .header.rows-content-header {
- height: 50px;
- }
- .header.left.side-menu {
- background: rgb(52, 56, 56);
- }
- .header.content {
- background: rgb(255, 255, 255); border-bottom-color: rgb(229, 233, 236); border-bottom-width: 1px; border-bottom-style: solid;
- }
- .body.rows {
- top: 0px; bottom: 50px;
- }
- .body.content.rows {
- background: rgb(228, 234, 230); padding: 20px; top: 50px; bottom: 0px; font-size: 13px;
- }
- body.fixed-left .left-footer {
- bottom: 50px;
- }
- .left-footer {
- background: rgba(0, 0, 0, 0.3); padding: 15px; width: 100%; height: 50px; bottom: 0px; color: rgb(232, 234, 237); position: absolute;
- }
- .left-footer .progress.progress-xs {
- margin: 9px 70px 9px 0px; overflow: visible; position: relative;
- }
- .left-footer .progress.progress-xs .progress-precentage {
- background: rgb(85, 85, 85); padding: 7px 5px; border-radius: 50%; top: -12px; right: -20px; color: rgb(243, 243, 243); display: block; position: absolute;
- }
- .left-footer .progress.progress-xs {
- background: rgba(0, 0, 0, 0.6);
- }
- .left-footer .progress.progress-xs .btn {
- background: rgb(85, 85, 85); border: currentColor; border-image: none; top: -14px; right: -70px; color: rgb(243, 243, 243); display: block; position: absolute;
- }
- .button-menu-mobile {
- 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;
- }
- .button-menu-mobile:hover {
- color: rgb(255, 255, 255);
- }
- .button-menu-mobile i {
- font-size: 14px; vertical-align: middle;
- }
- button.navbar-toggle {
- padding: 5px 20px;
- }
- .breadcrumb {
- 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;
- }
- .breadcrumb li a {
- color: rgb(157, 171, 171); font-family: "Open Sans";
- }
- .breadcrumb li.active {
- color: rgb(122, 134, 143);
- }
- .breadcrumb > li + li::before {
- padding: 0px 10px; color: rgb(157, 171, 171); font-family: FontAwesome; content: "???��?��a?????��a???|";
- }
- .sidebar-inner {
- height: 100%;
- }
- .sidebar-inner .profile-info {
- background: rgb(255, 255, 255); text-align: center; padding-top: 20px; padding-bottom: 20px;
- }
- #sidebar-menu {
- 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;
- }
- #sidebar-menu ul {
- 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;
- }
- #sidebar-menu li {
- 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;
- }
- #sidebar-menu a {
- 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;
- }
- #sidebar-menu a {
- line-height: 1.3;
- }
- #sidebar-menu {
- background: rgb(38, 50, 56); width: 100%; font-family: "Montserrat", sans-serif;
- }
- #sidebar-menu::before {
- 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);
- }
- #sidebar-menu > ul > li {
- display: block;
- }
- #sidebar-menu > ul > li > a {
- padding: 16px 20px 16px 23px; color: rgb(250, 250, 250); font-size: 14px; display: block;
- }
- #sidebar-menu > ul > li > a > span {
- vertical-align: middle;
- }
- #sidebar-menu > ul > li > a:hover {
- padding-left: 17px; border-left-color: rgb(19, 159, 225); border-left-width: 6px; border-left-style: solid;
- }
- #sidebar-menu > ul > li > a > i {
- width: 20px; font-size: 14px;
- }
- #sidebar-menu > ul > li > a > i.i-right {
- margin: 3px 0px 0px; float: right;
- }
- #sidebar-menu > ul > li > a:hover {
- text-decoration: none;
- }
- #sidebar-menu > ul > li > a.subdrop {
- 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;
- }
- #sidebar-menu > ul > li > a.active {
- 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;
- }
- #sidebar-menu > ul > li > a.active.subdrop {
- 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;
- }
- #sidebar-menu > ul > li > a.open::after {
- 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: " ";
- }
- #sidebar-menu > ul > li > a.active::after {
- 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: " ";
- }
- #sidebar-menu > ul > li > a span.label {
- margin-top: 1px; margin-right: 10px; float: right;
- }
- #sidebar-menu > ul > li > a span.label.span-left {
- margin-left: 5px; float: none;
- }
- #sidebar-menu span.cnt {
- background: none; margin: 0px; padding: 0px; top: 8px; right: 15px; position: absolute;
- }
- #sidebar-menu ul ul {
- 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;
- }
- #sidebar-menu ul ul ul {
- background: rgba(0, 0, 0, 0.2); border-top-color: rgba(0, 0, 0, 0.1); border-top-width: 1px; border-top-style: solid;
- }
- #sidebar-menu ul ul li {
- border-top-color: currentColor; border-top-width: 0px; border-top-style: none;
- }
- #sidebar-menu ul ul a {
- padding: 10px 50px; color: rgb(255, 255, 255); font-size: 13px; display: block;
- }
- #sidebar-menu ul ul ul a {
- padding-left: 35px;
- }
- #sidebar-menu ul ul ul ul a {
- padding-left: 45px;
- }
- #sidebar-menu ul ul a:hover {
- background: rgb(26, 41, 38); color: rgb(255, 255, 255);
- }
- #sidebar-menu ul ul li a.active {
- background: rgb(15, 16, 16); color: rgb(255, 255, 255);
- }
- #sidebar-menu ul ul a i {
- margin-right: 5px;
- }
- .enlarged#wrapper #sidebar-menu ul ul {
- border: currentColor; border-image: none;
- }
- .enlarged#wrapper .left.side-menu .widget {
- display: none;
- }
- .enlarged#wrapper .profile-text {
-
- }
- .enlarged#wrapper .profile-info .col-xs-4 {
- padding: 5px; width: 100%;
- }
- .enlarged#wrapper .profile-info .col-xs-8 {
- padding: 0px 7px; width: 100%;
- }
- .enlarged#wrapper .left.side-menu {
- z-index: 5;
- }
- .enlarged#wrapper .content-page {
- margin-left: 0px;
- }
- .enlarged#wrapper .left.side-menu .navbar-form input:-ms-input-placeholder {
- color: transparent !important;
- }
- .enlarged#wrapper .left.side-menu .navbar-form:hover {
- width: 280px; position: relative; z-index: 5;
- }
- .enlarged#wrapper .topbar .topbar-left {
- width: 0px !important; display: none;
- }
- .enlarged#wrapper .topbar .topbar-left .logo {
- display: none; opacity: 0;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li {
- white-space: nowrap;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li > ul {
- display: none;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li:hover > a {
- background: rgb(77, 82, 82);
- }
- .enlarged#wrapper #sidebar-menu ul ul li a.active {
- background: rgb(27, 30, 30) !important;
- }
- .enlarged#wrapper #sidebar-menu > ul > li:hover > a.open::after {
- display: none;
- }
- .enlarged#wrapper #sidebar-menu > ul > li:hover > a.active::after {
- display: none;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li:hover > ul {
- left: 50px; width: 230px; display: block; position: absolute;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul ul li:hover > a {
- background: rgb(89, 100, 110) !important; color: rgb(255, 255, 255);
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul ul li:hover > a i {
- background: rgb(89, 100, 110) !important; color: rgb(255, 255, 255);
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul ul li:hover > ul {
- left: 230px; width: 230px; margin-top: -36px; display: block; position: absolute;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li:hover > ul a {
- 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;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul ul li > a span.pull-right {
- top: 12px; right: 10px; position: absolute; transform: rotate(270deg); -webkit-transform: rotate(270deg);
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li > a span {
-
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li:hover > a span.pull-right {
- top: 12px; right: 10px; position: absolute;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li:hover > a {
- width: 280px; position: relative;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li {
- position: relative;
- }
- .enlarged#wrapper .left.side-menu #sidebar-menu ul > li:hover a span {
- display: inline;
- }
- .enlarged#wrapper .left.side-menu .navbar-form .search-button {
- right: 7px;
- }
- .side-menu.right .nav-tabs {
- background: rgba(0, 0, 0, 0.2); border: currentColor; border-image: none;
- }
- .side-menu.right .nav-tabs li {
- text-align: center;
- }
- .side-menu.right .nav-tabs > li > a {
- 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;
- }
- .side-menu.right .nav > li > a:hover {
- background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0); color: rgba(255, 255, 255, 0.7);
- }
- .side-menu.right .nav > li > a:focus {
- background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0); color: rgba(255, 255, 255, 0.7);
- }
- .side-menu.right .nav-tabs > li.active > a {
- color: rgb(204, 204, 204);
- }
- .side-menu.right .nav-tabs > li.active > a {
- background: rgb(52, 56, 56); border-color: rgb(52, 56, 56); border-radius: 0px;
- }
- .side-menu.right .nav-tabs > li.active > a:hover {
- background: rgb(52, 56, 56); border-color: rgb(52, 56, 56); border-radius: 0px;
- }
- .side-menu.right .nav-tabs > li.active > a:focus {
- background: rgb(52, 56, 56); border-color: rgb(52, 56, 56); border-radius: 0px;
- }
- .side-menu.right .right-toolbar {
- margin: 5px 15px 15px;
- }
- .side-menu.right .right-toolbar a {
- color: rgb(221, 221, 221); font-size: 12px;
- }
- .side-menu.right .panel-group .panel {
- background: none; border-radius: 0px; border: currentColor; border-image: none; color: rgb(243, 243, 243);
- }
- .side-menu.right .panel-default > .panel-heading {
- background: none; border-radius: 0px; border: currentColor; border-image: none;
- }
- .side-menu.right .panel-default > .panel-heading + .panel-collapse .panel-body {
- border-top-color: currentColor; border-top-width: medium; border-top-style: none;
- }
- .side-menu.right .panel-title > a {
- color: rgb(255, 255, 255);
- }
- .side-menu.right .panel-title > a .label {
- margin-top: 2px;
- }
- .side-menu.right .tab-content {
- height: 100%; padding-bottom: 20px;
- }
- .side-menu.right .tab-content > .tab-pane {
- height: 100%; padding-bottom: 20px;
- }
- .side-menu.right .tab-content > .tab-pane.active {
- height: 100%; padding-bottom: 20px;
- }
- .accordion-toggle .panel-heading {
- padding: 0px;
- }
- .accordion-toggle .panel-title a {
- padding: 9px 35px 9px 20px; color: rgb(255, 255, 255); line-height: 22px; font-family: "Open Sans"; font-size: 14px; display: block; position: relative;
- }
- .accordion-toggle .panel-title a::after {
- top: 3px; right: 15px; line-height: 36px; font-family: FontAwesome; font-size: 10px; display: block; position: absolute; content: "\f106";
- }
- .accordion-toggle .panel-title a.collapsed::after {
- content: "\f107";
- }
- .accordion-toggle .panel.panel-default .panel-title a {
- color: rgb(85, 85, 85);
- }
- .panel-group .panel {
- border-radius: 3px;
- }
- .not-logged-avatar {
- margin: 0px auto 20px; width: 100px; text-align: center; display: block; box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
- }
- .search-right {
- padding: 10px 15px;
- }
- .search-right input {
- background: rgba(0, 0, 0, 0.3); border: currentColor; border-image: none; color: rgb(238, 238, 238);
- }
- #notification-list a {
- color: rgb(255, 255, 255); font-size: 13px; font-weight: 600; vertical-align: text-top;
- }
- #notification-list li {
- 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;
- }
- #notification-list a .muted {
- color: rgba(255, 255, 255, 0.4); font-size: 12px; font-weight: 300; display: block;
- }
- #notification-list .icon-wrapper {
- 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;
- }
- #inbox-list li {
- margin-bottom: 15px;
- }
- #inbox-list a {
- color: rgb(255, 255, 255);
- }
- #inbox-list a .datetime {
- color: rgba(255, 255, 255, 0.4); font-family: "Open Sans"; font-size: 12px; font-weight: 400; float: right;
- }
- #inbox-list a .sender {
- font-family: "Open Sans"; font-size: 13px; font-weight: 600; float: left; display: block;
- }
- #inbox-list a .title {
- 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;
- }
- #inbox-list a .content {
- color: rgba(255, 255, 255, 0.6); overflow: hidden; clear: both; font-size: 11px; font-weight: 300; display: block;
- }
- #updates-list li {
- margin-bottom: 10px;
- }
- #updates-list a {
- color: rgb(255, 255, 255); font-family: "Open Sans"; font-size: 13px;
- }
- #updates-list .icon-wrapper {
- 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;
- }
- #chat-panel .panel-body {
- padding: 0px;
- }
- #chat-list li {
- padding: 7px 15px 10px; height: 55px; clear: both; opacity: 0.9;
- }
- #chat-list li:hover {
- background: rgba(0, 0, 0, 0.1); opacity: 1;
- }
- #chat-list a {
- color: rgb(255, 255, 255); font-family: "Open Sans"; font-size: 13px;
- }
- #chat-list a.online .chat-user-avatar {
- box-shadow: 0px 0px 0px 2px #68c39f;
- }
- #chat-list a.away .chat-user-avatar {
- box-shadow: 0px 0px 0px 2px orange;
- }
- #chat-list a.offline .chat-user-avatar img {
- 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%);
- }
- #chat-list .chat-user-avatar {
- 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;
- }
- #chat-list .chat-user-avatar img {
- width: 100%; height: 100%;
- }
- #chat-list .chat-user-msg {
- color: rgba(255, 255, 255, 0.3); overflow: hidden; font-size: 12px; display: block; white-space: nowrap; -ms-text-overflow: ellipsis;
- }
- #settings .tab-inner {
- color: rgba(255, 255, 255, 0.8);
- }
- #settings .tab-inner h3 {
- color: rgba(255, 255, 255, 0.6); margin-bottom: 20px;
- }
- #settings .tab-inner h4 {
- color: rgba(255, 255, 255, 0.6); margin-bottom: 15px;
- }
- #settings .tab-inner .row {
- font-size: 12px; margin-bottom: 10px;
- }
- .page-heading {
- margin: 0px 0px 20px; padding: 5px 0px;
- }
- .page-heading h1 {
- margin: 0px; padding: 0px; font-size: 24px; font-weight: 400;
- }
- .page-heading h3 {
- font-size: 15px; margin-top: 0px;
- }
- .widget {
- background: rgb(255, 255, 255); color: rgb(91, 91, 91); margin-bottom: 20px; position: relative;
- }
- .widget-header {
- width: 100%; clear: both; display: block;
- }
- .widget-content {
- width: 100%; clear: both; display: block;
- }
- .widget-content h3 {
- font-size: 18px;
- }
- .widget-header {
- 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;
- }
- .portlets {
- min-height: 50px;
- }
- .portlets .widget-header {
- cursor: move;
- }
- .widget-footer {
- border-radius: 0px 0px 2px 2px; overflow: hidden; -webkit-border-radius: 0 0 2px 2px;
- }
- .widget-header.transparent {
- background: none; border: currentColor; border-image: none;
- }
- .widget-header.centered {
- text-align: center;
- }
- .widget-header .left-btn {
- left: 10px; top: 6px; position: absolute;
- }
- .widget-content {
- border-radius: 0px 0px 2px 2px; -webkit-border-radius: 0 0 2px 2px;
- }
- .widget-content.padding {
- padding: 15px 0px;
- }
- .widget-content.padding-sm {
- padding: 10px;
- }
- .widget-content.padding-xs {
- padding: 1%;
- }
- .widget.maximized {
- margin: 0px; border-radius: 0px; left: 280px; top: 50px; right: 0px; bottom: 0px; position: fixed; z-index: 10; -webkit-border-radius: 0;
- }
- .enlarged#wrapper .widget.maximized {
- left: 50px;
- }
- .open-right-sidebar#wrapper .widget.maximized {
- right: 230px;
- }
- .widget.modal-widget {
- 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);
- }
- .widget.modal-widget.modalize .widget-header {
- background: rgb(239, 239, 239);
- }
- .widget::before {
- display: table; content: " ";
- }
- .widget::after {
- display: table; content: " ";
- }
- .widget::after {
- clear: both;
- }
- .widget .des-thumbnail {
- padding: 20px;
- }
- .widget .img-wrap {
- width: 100%; height: auto; overflow: hidden;
- }
- .widget .img-wrap img {
- width: 100%;
- }
- .widget .widget-header {
- height: 43px; display: block;
- }
- .widget .widget-header h2 {
- 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;
- }
- .widget .widget-header h2.no-style {
- margin: 20px 0px 10px; padding: 0px; font-size: 30px; border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none;
- }
- .widget.box-messages {
- margin-top: -50px;
- }
- .widget.box-messages h2 {
- border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none;
- }
- .widget .statistic-chart {
- padding: 0px;
- }
- .widget .statistic-chart .toolbar {
- padding: 0px 10px 10px;
- }
- .widget.full {
- padding: 0px;
- }
- .widget.full .box-footer {
- padding: 20px 20px 15px;
- }
- .widget.full .box-footer a {
- color: rgb(27, 30, 36); text-decoration: none;
- }
- .widget.full .box-footer a:hover {
- color: rgb(27, 30, 36); text-decoration: none;
- }
- .widget .nav-tabs > li > a {
- 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;
- }
- .widget .tab-content {
- padding-top: 10px; font-size: 13px;
- }
- .widget .tab-boxed {
- 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;
- }
- .widget .nav-tabs > li > a i {
- color: rgb(255, 255, 255);
- }
- .widget .media-list {
- margin-top: 30px;
- }
- .widget .media-list a {
- color: rgb(27, 30, 36);
- }
- .widget .media-list a:hover {
- color: rgb(33, 33, 33); text-decoration: none;
- }
- .widget .media-list .media {
- padding: 5px 20px; border-bottom-color: rgb(234, 234, 234); border-bottom-width: 1px; border-bottom-style: solid;
- }
- .widget .media-list li:last-child.media {
- border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none;
- }
- .widget .media-list .media .media-heading a {
- color: rgb(27, 30, 36); font-size: 14px; font-weight: 600; margin-right: 5px;
- }
- .widget .media-list .media .media-heading small {
- color: rgb(101, 189, 119); font-size: 11px;
- }
- .widget .media-list .media p {
- color: rgb(144, 144, 144);
- }
- .widget .media-list .media .media-object {
- width: 50px;
- }
- .widget .nav-tabs > li.active > a {
- padding: 10px 25px; border: currentColor; color: rgb(255, 255, 255); cursor: default; background-color: rgb(0, 131, 193);
- }
- .widget .nav-tabs > li.active > a:hover {
- padding: 10px 25px; border: currentColor; color: rgb(255, 255, 255); cursor: default; background-color: rgb(0, 131, 193);
- }
- .widget .nav-tabs > li.active > a:focus {
- padding: 10px 25px; border: currentColor; color: rgb(255, 255, 255); cursor: default; background-color: rgb(0, 131, 193);
- }
- .widget .nav-tabs > li.active > a i {
- color: rgb(255, 255, 255);
- }
- .widget .nav-tabs > li.active > a:hover i {
- color: rgb(255, 255, 255);
- }
- .widget .nav-tabs > li.active > a:focus i {
- color: rgb(255, 255, 255);
- }
- .widget .nav-tabs.nav-simple li a {
- background: none;
- }
- .widget .nav-tabs.nav-simple > li.active > a {
- 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);
- }
- .widget .nav-tabs.nav-simple > li.active > a:hover {
- 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);
- }
- .widget .nav-tabs.nav-simple > li.active > a:focus {
- 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);
- }
- .widget .nav-tabs.nav-simple > li.active > a i {
- color: rgb(85, 85, 85);
- }
- .widget .nav-tabs.nav-simple > li.active > a:hover i {
- color: rgb(85, 85, 85);
- }
- .widget .nav-tabs.nav-simple > li.active > a:focus i {
- color: rgb(85, 85, 85);
- }
- .widget .additional-box {
- top: 10px; right: 15px; position: absolute; z-index: 2;
- }
- .widget .additional-btn {
- top: 10px; right: 13px; position: absolute; z-index: 2;
- }
- .widget .left-toolbar {
- left: 13px; top: 10px; position: absolute; z-index: 2;
- }
- .widget:hover .additional-btn > a.hidden {
- display: inline-block !important; visibility: visible !important;
- }
- .widget:hover .additional-btn > a.hidden.nevershow {
- display: none !important;
- }
- .widget:hover .additional-btn > a.nevershow {
- display: none !important;
- }
- .widget .additional-btn > a.nevershow {
- display: none !important;
- }
- .widget .widget-header:hover .additional-btn > a {
- color: rgb(144, 144, 144); -webkit-transition: All 0.4s ease; -o-transition: All 0.4s ease; -moz-transition: All 0.4s ease;
- }
- .widget.modal-widget.modalize .widget-header .additional-btn > a {
- color: rgb(144, 144, 144);
- }
- .widget .btn-group {
- z-index: 1;
- }
- .widget table .btn-group {
- z-index: 1;
- }
- .widget .additional-btn .dropdown-menu {
- z-index: 2;
- }
- .widget .widget-close {
- font-size: 15px;
- }
- .widget .widget-toggle {
- font-size: 15px;
- }
- .widget .widget-close:hover {
- color: rgb(235, 80, 85) !important;
- }
- .widget .additional-btn > a {
- 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;
- }
- .widget .widget-header .additional-btn .btn-group > a {
- 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;
- }
- .widget .additional-btn > a:hover {
- text-decoration: none; -webkit-transition: All 0.4s ease; -o-transition: All 0.4s ease; -moz-transition: All 0.4s ease;
- }
- .ui-sortable-placeholder {
- 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);
- }
- .widget.ui-sortable-placeholder * {
- visibility: hidden;
- }
- .transparent {
- background: rgba(0, 0, 0, 0); color: rgb(255, 255, 255);
- }
- .white {
- background: rgb(255, 255, 255); color: rgb(85, 85, 85);
- }
- .widget.success {
- background: rgb(101, 189, 119); color: rgb(255, 255, 255);
- }
- .widget.success h2 {
- color: rgb(44, 116, 57); border-bottom-color: rgb(59, 147, 75);
- }
- .widget.success:hover {
- color: rgb(222, 255, 229);
- }
- .widget.success .additional-btn a.additional-icon {
- color: rgb(59, 147, 75);
- }
- .widget.success .additional-btn a.additional-icon:hover {
- color: rgb(44, 116, 57);
- }
- .widget.success .text-box h3 {
- color: rgb(33, 95, 46);
- }
- .widget.success .progress-bar-success {
- background-color: rgb(33, 95, 46);
- }
- .widget.success i.success {
- color: rgb(33, 95, 46);
- }
- .widget.danger {
- background: rgb(217, 83, 79); color: rgb(255, 255, 255);
- }
- .widget.danger h2 {
- color: rgb(121, 28, 26); border-bottom-color: rgb(121, 28, 26);
- }
- .widget.danger:hover {
- color: rgb(255, 255, 255);
- }
- .widget.danger .additional-btn a.additional-icon {
- color: rgb(121, 28, 26);
- }
- .widget.danger .additional-btn a.additional-icon:hover {
- color: rgb(121, 28, 26);
- }
- .widget.danger .text-box h3 {
- color: rgb(121, 28, 26);
- }
- .widget.danger .progress-bar-danger {
- background-color: rgb(121, 28, 26);
- }
- .widget.danger i.danger {
- color: rgb(121, 28, 26);
- }
- .widget.info {
- background: rgb(67, 147, 216); color: rgb(255, 255, 255);
- }
- .widget.info h2 {
- color: rgb(21, 85, 139); border-bottom-color: rgb(21, 85, 139);
- }
- .widget.info:hover {
- color: rgb(222, 255, 229);
- }
- .widget.info .additional-btn a.additional-icon {
- color: rgb(21, 85, 139);
- }
- .widget.info .additional-btn a.additional-icon:hover {
- color: rgb(21, 85, 139);
- }
- .widget.info .text-box h3 {
- color: rgb(21, 85, 139);
- }
- .widget.info .progress-bar-info {
- background-color: rgb(21, 85, 139);
- }
- .widget.info i.info {
- color: rgb(21, 85, 139);
- }
- .widget.warning {
- background: rgb(247, 203, 23); color: rgb(255, 255, 255);
- }
- .widget.warning h2 {
- color: rgb(157, 93, 3); border-bottom-color: rgb(157, 93, 3);
- }
- .widget.warning:hover {
- color: rgb(222, 255, 229);
- }
- .widget.warning .additional-btn a.additional-icon {
- color: rgb(157, 93, 3);
- }
- .widget.warning .additional-btn a.additional-icon:hover {
- color: rgb(157, 93, 3);
- }
- .widget.warning .text-box h3 {
- color: rgb(157, 93, 3);
- }
- .widget.warning .progress-bar-warning {
- background-color: rgb(157, 93, 3);
- }
- .widget .progress-bar-semi-transparent {
- background-color: rgba(255, 255, 255, 0.4);
- }
- .widget.warning i.warning {
- color: rgb(157, 93, 3);
- }
- .widget .additional {
- background: rgb(255, 255, 255); margin: 15px -15px -15px; padding: 0px 15px; color: rgb(144, 144, 144);
- }
- .widget .additional .list-box-info {
- margin: 0px -15px;
- }
- .widget .additional .list-box-info ul {
- list-style: none; margin: 0px; padding: 0px;
- }
- .widget .additional .list-box-info ul li {
- 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;
- }
- .widget .additional .list-box-info ul li span.label {
- font-size: 13px; float: right;
- }
- .widget .additional .list-box-info ul li:last-child {
- border-bottom-color: rgb(255, 255, 255); border-bottom-width: 1px; border-bottom-style: solid;
- }
- .left .widget {
- margin: 10px;
- }
- .left .widget-header h2 {
- padding: 4px; color: rgb(255, 255, 255);
- }
- .left .widget .additional-btn {
- right: 4px;
- }
- .widget.full h2 {
- margin: 5px 0px 20px; padding: 15px;
- }
- .widget table {
- margin: 0px;
- }
- .widget table tr th {
- padding-right: 15px; padding-left: 15px;
- }
- .widget table tr td {
- padding-right: 15px; padding-left: 15px;
- }
- .widget .widget-icon {
- top: 10px; right: 4%; color: rgb(255, 255, 255); font-size: 50px; position: absolute;
- }
- .widget .text-box h2 {
- 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;
- }
- .top-summary {
- 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);
- }
- .top-summary .progress {
- background: rgb(242, 242, 242); height: 5px; text-align: center; margin-top: 10px; margin-bottom: 0px; box-shadow: none;
- }
- .block-space {
- padding: 0px; text-align: center; border-right-color: rgb(242, 242, 242); border-right-width: 1px; border-right-style: solid;
- }
- .top-summary .widget {
- margin-bottom: 0px;
- }
- .top-summary .widget-content.padding {
- padding: 35px;
- }
- .widget .text-box .maindata {
- 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;
- }
- .widget .text-box .maindata b {
- font-size: 12px;
- }
- .top-summary .widget .widget-footer {
- background: rgba(0, 0, 0, 0.1); padding: 4px 15px; color: rgba(255, 255, 255, 0.9); font-size: 12px;
- }
- .top-summary .widget .widget-footer .rel-change {
- color: rgb(255, 255, 255); font-size: 14px; margin-right: 7px;
- }
- .flip {
- perspective-origin: 50% 50%; position: relative; perspective: 600px;
- }
- .flip:hover .widget-flip {
- transform: rotateY(180deg);
- }
- .flip.hover .widget-flip {
- transform: rotateY(180deg);
- }
- .flip {
- width: 100%; height: 110px;
- }
- .widget-front {
- width: 100%; height: 110px;
- }
- .widget-back {
- width: 100%; height: 110px;
- }
- .widget-flip {
- transition:600ms, opacity 200ms; position: relative; transform-style: preserve-3d;
- }
- .widget-front {
- transform-origin: 50% 50% 0px; left: 0px; top: 0px; position: absolute; backface-visibility: hidden;
- }
- .widget-back {
- transform-origin: 50% 50% 0px; left: 0px; top: 0px; position: absolute; backface-visibility: hidden;
- }
- .widget-front {
- background: rgb(255, 0, 0); z-index: 2;
- }
- .widget-back {
- background: rgb(51, 51, 51); transform: rotateY(180deg);
- }
- .dropdown-toggle.btn-sm {
- padding-right: 6px;
- }
- .dropdown-toggle.btn-xs {
- padding-right: 3px;
- }
- .btn-primary {
- border-color: rgb(74, 82, 95); color: rgb(255, 255, 255); background-color: rgb(74, 82, 95);
- }
- .btn-primary:hover {
- border-color: rgb(62, 68, 79); color: rgb(255, 255, 255); background-color: rgb(62, 68, 79);
- }
- .btn-primary:focus {
- border-color: rgb(62, 68, 79); color: rgb(255, 255, 255); background-color: rgb(62, 68, 79);
- }
- .btn-primary:active {
- border-color: rgb(62, 68, 79); color: rgb(255, 255, 255); background-color: rgb(62, 68, 79);
- }
- .btn-primary.active {
- border-color: rgb(62, 68, 79); color: rgb(255, 255, 255); background-color: rgb(62, 68, 79);
- }
- .open .dropdown-toggle.btn-primary {
- border-color: rgb(62, 68, 79); color: rgb(255, 255, 255); background-color: rgb(62, 68, 79);
- }
- .btn-success {
- border-color: rgb(47, 218, 184); color: rgb(255, 255, 255); background-color: rgb(47, 218, 184);
- }
- .btn-success:hover {
- border-color: rgb(92, 173, 141); color: rgb(255, 255, 255); background-color: rgb(92, 173, 141);
- }
- .btn-success:focus {
- border-color: rgb(92, 173, 141); color: rgb(255, 255, 255); background-color: rgb(92, 173, 141);
- }
- .btn-success:active {
- border-color: rgb(92, 173, 141); color: rgb(255, 255, 255); background-color: rgb(92, 173, 141);
- }
- .btn-success.active {
- border-color: rgb(92, 173, 141); color: rgb(255, 255, 255); background-color: rgb(92, 173, 141);
- }
- .open .dropdown-toggle.btn-success {
- border-color: rgb(92, 173, 141); color: rgb(255, 255, 255); background-color: rgb(92, 173, 141);
- }
- .btn-info {
- border-color: rgb(101, 187, 214); color: rgb(255, 255, 255); background-color: rgb(101, 187, 214);
- }
- .btn-info:hover {
- border-color: rgb(91, 169, 194); color: rgb(255, 255, 255); background-color: rgb(91, 169, 194);
- }
- .btn-info:focus {
- border-color: rgb(91, 169, 194); color: rgb(255, 255, 255); background-color: rgb(91, 169, 194);
- }
- .btn-info:active {
- border-color: rgb(91, 169, 194); color: rgb(255, 255, 255); background-color: rgb(91, 169, 194);
- }
- .btn-info.active {
- border-color: rgb(91, 169, 194); color: rgb(255, 255, 255); background-color: rgb(91, 169, 194);
- }
- .open .dropdown-toggle.btn-info {
- border-color: rgb(91, 169, 194); color: rgb(255, 255, 255); background-color: rgb(91, 169, 194);
- }
- .btn-warning {
- border-color: rgb(255, 192, 82); color: rgb(255, 255, 255); background-color: rgb(255, 192, 82);
- }
- .btn-warning:hover {
- border-color: rgb(245, 184, 79); color: rgb(255, 255, 255); background-color: rgb(245, 184, 79);
- }
- .btn-warning:focus {
- border-color: rgb(245, 184, 79); color: rgb(255, 255, 255); background-color: rgb(245, 184, 79);
- }
- .btn-warning:active {
- border-color: rgb(245, 184, 79); color: rgb(255, 255, 255); background-color: rgb(245, 184, 79);
- }
- .btn-warning.active {
- border-color: rgb(245, 184, 79); color: rgb(255, 255, 255); background-color: rgb(245, 184, 79);
- }
- .open .dropdown-toggle.btn-warning {
- border-color: rgb(245, 184, 79); color: rgb(255, 255, 255); background-color: rgb(245, 184, 79);
- }
- .btn-danger {
- border-color: rgb(225, 85, 84); color: rgb(255, 255, 255); background-color: rgb(225, 85, 84);
- }
- .btn-danger:hover {
- border-color: rgb(199, 75, 74); color: rgb(255, 255, 255); background-color: rgb(199, 75, 74);
- }
- .btn-danger:focus {
- border-color: rgb(199, 75, 74); color: rgb(255, 255, 255); background-color: rgb(199, 75, 74);
- }
- .btn-danger:active {
- border-color: rgb(199, 75, 74); color: rgb(255, 255, 255); background-color: rgb(199, 75, 74);
- }
- .btn-danger.active {
- border-color: rgb(199, 75, 74); color: rgb(255, 255, 255); background-color: rgb(199, 75, 74);
- }
- .open .dropdown-toggle.btn-danger {
- border-color: rgb(199, 75, 74); color: rgb(255, 255, 255); background-color: rgb(199, 75, 74);
- }
- i.success {
- color: rgb(104, 195, 159);
- }
- i.warning {
- color: rgb(255, 192, 82);
- }
- i.info {
- color: rgb(101, 187, 214);
- }
- i.danger {
- color: rgb(225, 85, 84);
- }
- .label.label-success {
- background: rgb(104, 195, 159);
- }
- .label.label-warning {
- background: rgb(255, 192, 82);
- }
- .label.label-info {
- background: rgb(101, 187, 214);
- }
- .label.label-danger {
- background: rgb(225, 85, 84);
- }
- p.quick-post {
- margin: 10px 5px;
- }
- p.quick-post i {
- margin: 5px; color: rgb(144, 144, 144); cursor: pointer;
- }
- p.quick-post.message i {
- margin: 0px 2px;
- }
- p.quick-post.message {
- margin: 3px 0px; padding: 0px; text-align: right;
- }
- .chat-widget {
- height: 300px; margin-bottom: 20px;
- }
- form.input-chat {
- margin-top: 20px;
- }
- .chat-widget .media-list {
- margin: 0px;
- }
- .chat-widget .media-list .media {
- border-bottom-color: currentColor; border-bottom-width: medium; border-bottom-style: none;
- }
- .chat-widget .media-list .media .media-object {
- padding: 4px; border: 1px solid rgb(234, 234, 234); border-image: none; width: 50px;
- }
- .chat-widget .media-list .media .media-body {
- background: rgb(247, 247, 247); padding: 10px; border-radius: 3px; color: rgb(103, 113, 121);
- }
- .chat-widget .media-list .media .media-body p.time {
- text-align: right; color: rgb(144, 144, 144); font-size: 11px; font-style: italic;
- }
- .chat-widget .media-list .media .media-body.success {
- background: rgb(237, 255, 237);
- }
- .chat-widget .media-list .media .media-body.warning {
- background: rgb(255, 252, 224);
- }
- .chat-widget .media-list .media .media-body.danger {
- background: rgb(255, 232, 232);
- }
- .chat-widget .media-list .media .media-body.info {
- background: rgb(229, 245, 255);
- }
- .selectpicker {
- border-radius: 0px; font-size: 13px;
- }
- .icon-showcase i {
- margin-right: 5px;
- }
- .bs-glyphicons {
- list-style: none; overflow: hidden; padding-bottom: 1px; padding-left: 0px; margin-bottom: 20px;
- }
- .bs-glyphicons li {
- 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;
- }
- .bs-glyphicons .glyphicon {
- font-size: 24px; margin-top: 5px; margin-bottom: 10px;
- }
- .bs-glyphicons .glyphicon-class {
- text-align: center; display: block; -ms-word-wrap: break-word;
- }
- .bs-glyphicons li:hover {
- background-color: rgba(86, 61, 124, 0.1);
- }
- @media all and (min-width:768px)
- {
- .bs-glyphicons li {
- width: 12.5%;
- }
- }
- .search-box.has-feedback .form-control-feedback {
- right: 5px;
- }
- .btn-toolbar .rows-check-cont {
- margin-top: 6px; margin-right: 15px;
- }
- .mail-list {
- background: rgb(255, 255, 255); color: rgb(119, 119, 119); box-shadow: 0px 0px 3px rgba(0,0,0,0.1);
- }
- .mail-reply {
- color: rgb(119, 119, 119); font-size: 13px;
- }
- .sender-photo {
- height: 30px; margin-top: 5px; margin-right: 10px; float: left;
- }
- .menu-message {
- margin: 20px 0px;
- }
- .menu-message .list-group-item {
- 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;
- }
- .menu-message .list-group-item.active {
- 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;
- }
- .menu-message .list-group-item.active .badge {
- background: rgb(122, 134, 143); color: rgb(255, 255, 255);
- }
- .menu-folders {
- margin: 20px 0px;
- }
- .menu-folders .list-group-item {
- background: rgba(255, 255, 255, 0.8); border: 0px currentColor; border-image: none; color: rgb(102, 102, 102); font-size: 13px; margin-bottom: 0px;
- }
- .menu-folders .list-group-item i {
- font-size: 14px; margin-right: 5px;
- }
- .table-message tr.unread {
- font-weight: 500;
- }
- .table-message tr.unread a {
- font-weight: 500;
- }
- .table-message > tbody > tr > td {
- border-bottom-color: rgb(243, 243, 243) !important; border-bottom-width: 1px !important; border-bottom-style: solid !important;
- }
- .table-message > tbody > tr > td > a {
- color: rgb(91, 91, 91); font-weight: 300; display: block;
- }
- .table-message > tbody > tr > td > a:hover {
- text-decoration: none;
- }
- .data-table-toolbar span.paging-status {
- margin: 10px 10px 0px 0px; font-weight: bold;
- }
- .input-message {
- margin-top: -1px;
- }
- .new-message-btns {
- width: 100%;
- }
- hr.dashed {
- 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;
- }
- .data-table-toolbar {
- background: rgba(0, 0, 0, 0.03); margin: 0px; padding: 15px;
- }
- .data-table-toolbar-footer {
- padding: 0px; margin-top: 15px;
- }
- .toolbar-btn-action {
- text-align: right;
- }
- .gallery-wrap {
- margin: 10px -10px;
- }
- .gallery-wrap::before {
- display: table; content: " ";
- }
- .gallery-wrap::after {
- display: table; content: " ";
- }
- .gallery-wrap::after {
- clear: both;
- }
- .gallery-wrap .column {
- margin: 0px; padding: 0px; width: 20%; float: left;
- }
- .gallery-wrap .column-4 {
- margin: 0px; padding: 0px; width: 25%; float: left;
- }
- .gallery-wrap .column-3 {
- margin: 0px; padding: 0px; width: 33.33%; float: left;
- }
- .gallery-wrap .column .inner {
- margin: 10px; overflow: hidden; position: relative; -webkit-transition: All 0.4s ease; -o-transition: All 0.4s ease; -moz-transition: All 0.4s ease;
- }
- .gallery-wrap .column-4 .inner {
- margin: 10px; overflow: hidden; position: relative; -webkit-transition: All 0.4s ease; -o-transition: All 0.4s ease; -moz-transition: All 0.4s ease;
- }
- .gallery-wrap .column-3 .inner {
- margin: 10px; overflow: hidden; position: relative; -webkit-transition: All 0.4s ease; -o-transition: All 0.4s ease; -moz-transition: All 0.4s ease;
- }
- .gallery-wrap .column .inner:hover {
- 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);
- }
- .gallery-wrap .column-4 .inner:hover {
- 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);
- }
- .gallery-wrap .column-3 .inner:hover {
- 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);
- }
- .gallery-wrap .column .inner a .img-wrap {
- cursor: pointer;
- }
- .gallery-wrap .column-3 .inner a .img-wrap {
- cursor: pointer;
- }
- .gallery-wrap .column-4 .inner a .img-wrap {
- cursor: pointer;
- }
- .gallery-wrap .column .inner .img-wrap {
- background: rgb(221, 221, 221); height: 140px; overflow: hidden;
- }
- .gallery-wrap .column-3 .inner .img-wrap {
- background: rgb(221, 221, 221); height: 200px; overflow: hidden;
- }
- .gallery-wrap .column-4 .inner .img-wrap {
- background: rgb(221, 221, 221); height: 180px; overflow: hidden;
- }
- .gallery-wrap .column .inner .img-frame {
- 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;
- }
- .gallery-wrap .column-3 .inner .img-frame {
- 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;
- }
- .gallery-wrap .column-4 .inner .img-frame {
- 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;
- }
- .gallery-wrap .column .inner:hover .img-frame {
- background: rgb(255, 255, 255);
- }
- .gallery-wrap .column-3 .inner:hover .img-frame {
- background: rgb(255, 255, 255);
- }
- .gallery-wrap .column-4 .inner:hover .img-frame {
- background: rgb(255, 255, 255);
- }
- .gallery-wrap .column .inner:hover .img-frame.success {
- background: rgb(101, 189, 119);
- }
- .gallery-wrap .column-3 .inner:hover .img-frame.success {
- background: rgb(101, 189, 119);
- }
- .gallery-wrap .column-4 .inner:hover .img-frame.success {
- background: rgb(101, 189, 119);
- }
- .gallery-wrap .column .inner:hover .img-frame.warning {
- background: rgb(255, 206, 0);
- }
- .gallery-wrap .column-3 .inner:hover .img-frame.warning {
- background: rgb(255, 206, 0);
- }
- .gallery-wrap .column-4 .inner:hover .img-frame.warning {
- background: rgb(255, 206, 0);
- }
- .gallery-wrap .column .inner:hover .img-frame.danger {
- background: rgb(215, 61, 61);
- }
- .gallery-wrap .column-3 .inner:hover .img-frame.danger {
- background: rgb(215, 61, 61);
- }
- .gallery-wrap .column-4 .inner:hover .img-frame.danger {
- background: rgb(215, 61, 61);
- }
- .gallery-wrap .column .inner:hover .img-frame.info {
- background: rgb(66, 139, 202);
- }
- .gallery-wrap .column-3 .inner:hover .img-frame.info {
- background: rgb(66, 139, 202);
- }
- .gallery-wrap .column-4 .inner:hover .img-frame.info {
- background: rgb(66, 139, 202);
- }
- .gallery-wrap .column .inner .img-wrap img {
- width: 100%;
- }
- .gallery-wrap .column-4 .inner .img-wrap img {
- width: 100%;
- }
- .gallery-wrap .column-3 .inner .img-wrap img {
- width: 100%;
- }
- .gallery-wrap .column .inner .caption-hover {
- 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;
- }
- .gallery-wrap .column-4 .inner .caption-hover {
- 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;
- }
- .gallery-wrap .column-3 .inner .caption-hover {
- 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;
- }
- .gallery-wrap .column .inner .caption-hover.success {
- background: rgb(101, 189, 119); color: rgb(44, 116, 57);
- }
- .gallery-wrap .column-4 .inner .caption-hover.success {
- background: rgb(101, 189, 119); color: rgb(44, 116, 57);
- }
- .gallery-wrap .column-3 .inner .caption-hover.success {
- background: rgb(101, 189, 119); color: rgb(44, 116, 57);
- }
- .gallery-wrap .column .inner .caption-hover.danger {
- background: rgb(215, 61, 61); color: rgb(121, 13, 13);
- }
- .gallery-wrap .column-4 .inner .caption-hover.danger {
- background: rgb(215, 61, 61); color: rgb(121, 13, 13);
- }
- .gallery-wrap .column-3 .inner .caption-hover.danger {
- background: rgb(215, 61, 61); color: rgb(121, 13, 13);
- }
- .gallery-wrap .column .inner .caption-hover.warning {
- background: rgb(255, 206, 0); color: rgb(178, 124, 5);
- }
- .gallery-wrap .column-4 .inner .caption-hover.warning {
- background: rgb(255, 206, 0); color: rgb(178, 124, 5);
- }
- .gallery-wrap .column-3 .inner .caption-hover.warning {
- background: rgb(255, 206, 0); color: rgb(178, 124, 5);
- }
- .gallery-wrap .column .inner .caption-hover.info {
- background: rgb(66, 139, 202); color: rgb(10, 72, 124);
- }
- .gallery-wrap .column-4 .inner .caption-hover.info {
- background: rgb(66, 139, 202); color: rgb(10, 72, 124);
- }
- .gallery-wrap .column-3 .inner .caption-hover.info {
- background: rgb(66, 139, 202); color: rgb(10, 72, 124);
- }
- .gallery-wrap .column .inner:hover .caption-hover {
- bottom: 0px;
- }
- .gallery-wrap .column-4 .inner:hover .caption-hover {
- bottom: 0px;
- }
- .gallery-wrap .column-3 .inner:hover .caption-hover {
- bottom: 0px;
- }
- .gallery-wrap .column .inner .caption-static {
- 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;
- }
- .gallery-wrap .column-4 .inner .caption-static {
- 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;
- }
- .gallery-wrap .column-3 .inner .caption-static {
- 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;
- }
- .gallery-wrap .column .inner a:hover {
- text-decoration: none;
- }
- .gallery-wrap .column-4 .inner a:hover {
- text-decoration: none;
- }
- .gallery-wrap .column-3 .inner a:hover {
- text-decoration: none;
- }
- .gallery-wrap .column .inner .caption-static.success {
- background: rgb(101, 189, 119); color: rgb(44, 116, 57);
- }
- .gallery-wrap .column-4 .inner .caption-static.success {
- background: rgb(101, 189, 119); color: rgb(44, 116, 57);
- }
- .gallery-wrap .column-3 .inner .caption-static.success {
- background: rgb(101, 189, 119); color: rgb(44, 116, 57);
- }
- .gallery-wrap .column .inner .caption-static.danger {
- background: rgb(215, 61, 61); color: rgb(121, 13, 13);
- }
- .gallery-wrap .column-4 .inner .caption-static.danger {
- background: rgb(215, 61, 61); color: rgb(121, 13, 13);
- }
- .gallery-wrap .column-3 .inner .caption-static.danger {
- background: rgb(215, 61, 61); color: rgb(121, 13, 13);
- }
- .gallery-wrap .column .inner .caption-static.warning {
- background: rgb(255, 206, 0); color: rgb(178, 124, 5);
- }
- .gallery-wrap .column-4 .inner .caption-static.warning {
- background: rgb(255, 206, 0); color: rgb(178, 124, 5);
- }
- .gallery-wrap .column-3 .inner .caption-static.warning {
- background: rgb(255, 206, 0); color: rgb(178, 124, 5);
- }
- .gallery-wrap .column .inner .caption-static.info {
- background: rgb(66, 139, 202); color: rgb(10, 72, 124);
- }
- .gallery-wrap .column-4 .inner .caption-static.info {
- background: rgb(66, 139, 202); color: rgb(10, 72, 124);
- }
- .gallery-wrap .column-3 .inner .caption-static.info {
- background: rgb(66, 139, 202); color: rgb(10, 72, 124);
- }
- .btn-facebook {
- background: rgb(69, 97, 157); border-color: rgb(77, 108, 173);
- }
- .btn-facebook:hover {
- background: rgb(57, 82, 137); border-color: rgb(77, 108, 173);
- }
- .btn-twitter {
- background: rgb(0, 172, 238); border-color: rgb(0, 183, 252);
- }
- .btn-twitter:hover {
- background: rgb(3, 160, 222); border-color: rgb(0, 183, 252);
- }
- .btn-gplus {
- background: rgb(213, 70, 54); border-color: rgb(178, 46, 33);
- }
- .btn-gplus:hover {
- background: rgb(191, 57, 46); border-color: rgb(178, 46, 33);
- }
- .btn-vimeo {
- background: rgb(27, 182, 236); border-color: rgb(10, 160, 211);
- }
- .btn-vimeo:hover {
- background: rgb(18, 173, 227); border-color: rgb(10, 160, 211);
- }
- .btn-pinterest {
- background: rgb(205, 31, 40); border-color: rgb(183, 15, 23);
- }
- .btn-pinterest:hover {
- background: rgb(201, 18, 26); border-color: rgb(183, 15, 23);
- }
- .btn-instagram {
- background: rgb(78, 61, 53); border-color: rgb(57, 44, 36);
- }
- .btn-instagram:hover {
- background: rgb(72, 57, 49); border-color: rgb(57, 44, 36);
- }
- i.success {
- color: rgb(101, 189, 119);
- }
- i.warning {
- color: rgb(243, 156, 18);
- }
- i.info {
- color: rgb(52, 152, 219);
- }
- i.danger {
- color: rgb(232, 83, 68);
- }
- .btn-facebook {
- border-color: rgb(75, 102, 160); color: rgb(255, 255, 255); background-color: rgb(75, 102, 160);
- }
- .btn-facebook:hover {
- border-color: rgb(59, 90, 152); color: rgb(255, 255, 255); background-color: rgb(59, 90, 152);
- }
- .btn-facebook:focus {
- border-color: rgb(59, 90, 152); color: rgb(255, 255, 255); background-color: rgb(59, 90, 152);
- }
- .btn-facebook:active {
- border-color: rgb(59, 90, 152); color: rgb(255, 255, 255); background-color: rgb(59, 90, 152);
- }
- .btn-facebook.active {
- border-color: rgb(59, 90, 152); color: rgb(255, 255, 255); background-color: rgb(59, 90, 152);
- }
- .open .dropdown-toggle.btn-facebook {
- border-color: rgb(59, 90, 152); color: rgb(255, 255, 255); background-color: rgb(59, 90, 152);
- }
- .btn-facebook:active {
- background-image: none;
- }
- .btn-facebook.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-facebook {
- background-image: none;
- }
- .btn-facebook.disabled {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- [disabled].btn-facebook {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- fieldset[disabled] .btn-facebook {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- .btn-facebook.disabled:hover {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- [disabled].btn-facebook:hover {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- fieldset[disabled] .btn-facebook:hover {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- .btn-facebook.disabled:focus {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- [disabled].btn-facebook:focus {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- fieldset[disabled] .btn-facebook:focus {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- .btn-facebook.disabled:active {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- [disabled].btn-facebook:active {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- fieldset[disabled] .btn-facebook:active {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- .btn-facebook.disabled.active {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- [disabled].btn-facebook.active {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- fieldset[disabled] .btn-facebook.active {
- border-color: rgb(108, 137, 193); color: rgb(255, 255, 255); background-color: rgb(108, 137, 193);
- }
- .btn-facebook .badge {
- color: rgb(59, 90, 152);
- }
- .btn-twitter {
- border-color: rgb(85, 172, 238); color: rgb(255, 255, 255); background-color: rgb(85, 172, 238);
- }
- .btn-twitter:hover {
- border-color: rgb(52, 144, 211); color: rgb(255, 255, 255); background-color: rgb(52, 144, 211);
- }
- .btn-twitter:focus {
- border-color: rgb(52, 144, 211); color: rgb(255, 255, 255); background-color: rgb(52, 144, 211);
- }
- .btn-twitter:active {
- border-color: rgb(52, 144, 211); color: rgb(255, 255, 255); background-color: rgb(52, 144, 211);
- }
- .btn-twitter.active {
- border-color: rgb(52, 144, 211); color: rgb(255, 255, 255); background-color: rgb(52, 144, 211);
- }
- .open .dropdown-toggle.btn-twitter {
- border-color: rgb(52, 144, 211); color: rgb(255, 255, 255); background-color: rgb(52, 144, 211);
- }
- .btn-twitter:active {
- background-image: none;
- }
- .btn-twitter.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-twitter {
- background-image: none;
- }
- .btn-twitter.disabled {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- [disabled].btn-twitter {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- fieldset[disabled] .btn-twitter {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- .btn-twitter.disabled:hover {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- [disabled].btn-twitter:hover {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- fieldset[disabled] .btn-twitter:hover {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- .btn-twitter.disabled:focus {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- [disabled].btn-twitter:focus {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- fieldset[disabled] .btn-twitter:focus {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- .btn-twitter.disabled:active {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- [disabled].btn-twitter:active {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- fieldset[disabled] .btn-twitter:active {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- .btn-twitter.disabled.active {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- [disabled].btn-twitter.active {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- fieldset[disabled] .btn-twitter.active {
- border-color: rgb(124, 193, 245); color: rgb(255, 255, 255); background-color: rgb(124, 193, 245);
- }
- .btn-twitter .badge {
- color: rgb(52, 144, 211);
- }
- .btn-google-plus {
- border-color: rgb(210, 67, 51); color: rgb(255, 255, 255); background-color: rgb(210, 67, 51);
- }
- .btn-google-plus:hover {
- border-color: rgb(188, 44, 31); color: rgb(255, 255, 255); background-color: rgb(188, 44, 31);
- }
- .btn-google-plus:focus {
- border-color: rgb(188, 44, 31); color: rgb(255, 255, 255); background-color: rgb(188, 44, 31);
- }
- .btn-google-plus:active {
- border-color: rgb(188, 44, 31); color: rgb(255, 255, 255); background-color: rgb(188, 44, 31);
- }
- .btn-google-plus.active {
- border-color: rgb(188, 44, 31); color: rgb(255, 255, 255); background-color: rgb(188, 44, 31);
- }
- .open .dropdown-toggle.btn-google-plus {
- border-color: rgb(188, 44, 31); color: rgb(255, 255, 255); background-color: rgb(188, 44, 31);
- }
- .btn-google-plus:active {
- background-image: none;
- }
- .btn-google-plus.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-google-plus {
- background-image: none;
- }
- .btn-google-plus.disabled {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- [disabled].btn-google-plus {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- fieldset[disabled] .btn-google-plus {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- .btn-google-plus.disabled:hover {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- [disabled].btn-google-plus:hover {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- fieldset[disabled] .btn-google-plus:hover {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- .btn-google-plus.disabled:focus {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- [disabled].btn-google-plus:focus {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- fieldset[disabled] .btn-google-plus:focus {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- .btn-google-plus.disabled:active {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- [disabled].btn-google-plus:active {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- fieldset[disabled] .btn-google-plus:active {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- .btn-google-plus.disabled.active {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- [disabled].btn-google-plus.active {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- fieldset[disabled] .btn-google-plus.active {
- border-color: rgb(240, 103, 90); color: rgb(255, 255, 255); background-color: rgb(240, 103, 90);
- }
- .btn-google-plus .badge {
- color: rgb(188, 44, 31);
- }
- .btn-dribbble {
- border-color: rgb(224, 76, 134); color: rgb(255, 255, 255); background-color: rgb(224, 76, 134);
- }
- .btn-dribbble:hover {
- border-color: rgb(211, 52, 113); color: rgb(255, 255, 255); background-color: rgb(211, 52, 113);
- }
- .btn-dribbble:focus {
- border-color: rgb(211, 52, 113); color: rgb(255, 255, 255); background-color: rgb(211, 52, 113);
- }
- .btn-dribbble:active {
- border-color: rgb(211, 52, 113); color: rgb(255, 255, 255); background-color: rgb(211, 52, 113);
- }
- .btn-dribbble.active {
- border-color: rgb(211, 52, 113); color: rgb(255, 255, 255); background-color: rgb(211, 52, 113);
- }
- .open .dropdown-toggle.btn-dribbble {
- border-color: rgb(211, 52, 113); color: rgb(255, 255, 255); background-color: rgb(211, 52, 113);
- }
- .btn-dribbble:active {
- background-image: none;
- }
- .btn-dribbble.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-dribbble {
- background-image: none;
- }
- .btn-dribbble.disabled {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- [disabled].btn-dribbble {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- fieldset[disabled] .btn-dribbble {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- .btn-dribbble.disabled:hover {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- [disabled].btn-dribbble:hover {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- fieldset[disabled] .btn-dribbble:hover {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- .btn-dribbble.disabled:focus {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- [disabled].btn-dribbble:focus {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- fieldset[disabled] .btn-dribbble:focus {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- .btn-dribbble.disabled:active {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- [disabled].btn-dribbble:active {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- fieldset[disabled] .btn-dribbble:active {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- .btn-dribbble.disabled.active {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- [disabled].btn-dribbble.active {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- fieldset[disabled] .btn-dribbble.active {
- border-color: rgb(245, 113, 165); color: rgb(255, 255, 255); background-color: rgb(245, 113, 165);
- }
- .btn-dribbble .badge {
- color: rgb(211, 52, 113);
- }
- .btn-flickr {
- border-color: rgb(1, 98, 219); color: rgb(255, 255, 255); background-color: rgb(1, 98, 219);
- }
- .btn-flickr:hover {
- border-color: rgb(5, 85, 191); color: rgb(255, 255, 255); background-color: rgb(5, 85, 191);
- }
- .btn-flickr:focus {
- border-color: rgb(5, 85, 191); color: rgb(255, 255, 255); background-color: rgb(5, 85, 191);
- }
- .btn-flickr:active {
- border-color: rgb(5, 85, 191); color: rgb(255, 255, 255); background-color: rgb(5, 85, 191);
- }
- .btn-flickr.active {
- border-color: rgb(5, 85, 191); color: rgb(255, 255, 255); background-color: rgb(5, 85, 191);
- }
- .open .dropdown-toggle.btn-flickr {
- border-color: rgb(5, 85, 191); color: rgb(255, 255, 255); background-color: rgb(5, 85, 191);
- }
- .btn-flickr:active {
- background-image: none;
- }
- .btn-flickr.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-flickr {
- background-image: none;
- }
- .btn-flickr.disabled {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- [disabled].btn-flickr {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- fieldset[disabled] .btn-flickr {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- .btn-flickr.disabled:hover {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- [disabled].btn-flickr:hover {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- fieldset[disabled] .btn-flickr:hover {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- .btn-flickr.disabled:focus {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- [disabled].btn-flickr:focus {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- fieldset[disabled] .btn-flickr:focus {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- .btn-flickr.disabled:active {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- [disabled].btn-flickr:active {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- fieldset[disabled] .btn-flickr:active {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- .btn-flickr.disabled.active {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- [disabled].btn-flickr.active {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- fieldset[disabled] .btn-flickr.active {
- border-color: rgb(41, 131, 247); color: rgb(255, 255, 255); background-color: rgb(41, 131, 247);
- }
- .btn-flickr .badge {
- color: rgb(5, 85, 191);
- }
- .btn-pinterest {
- border-color: rgb(204, 33, 39); color: rgb(255, 255, 255); background-color: rgb(204, 33, 39);
- }
- .btn-pinterest:hover {
- border-color: rgb(183, 15, 18); color: rgb(255, 255, 255); background-color: rgb(183, 15, 18);
- }
- .btn-pinterest:focus {
- border-color: rgb(183, 15, 18); color: rgb(255, 255, 255); background-color: rgb(183, 15, 18);
- }
- .btn-pinterest:active {
- border-color: rgb(183, 15, 18); color: rgb(255, 255, 255); background-color: rgb(183, 15, 18);
- }
- .btn-pinterest.active {
- border-color: rgb(183, 15, 18); color: rgb(255, 255, 255); background-color: rgb(183, 15, 18);
- }
- .open .dropdown-toggle.btn-pinterest {
- border-color: rgb(183, 15, 18); color: rgb(255, 255, 255); background-color: rgb(183, 15, 18);
- }
- .btn-pinterest:active {
- background-image: none;
- }
- .btn-pinterest.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-pinterest {
- background-image: none;
- }
- .btn-pinterest.disabled {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- [disabled].btn-pinterest {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- fieldset[disabled] .btn-pinterest {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- .btn-pinterest.disabled:hover {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- [disabled].btn-pinterest:hover {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- fieldset[disabled] .btn-pinterest:hover {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- .btn-pinterest.disabled:focus {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- [disabled].btn-pinterest:focus {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- fieldset[disabled] .btn-pinterest:focus {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- .btn-pinterest.disabled:active {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- [disabled].btn-pinterest:active {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- fieldset[disabled] .btn-pinterest:active {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- .btn-pinterest.disabled.active {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- [disabled].btn-pinterest.active {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- fieldset[disabled] .btn-pinterest.active {
- border-color: rgb(229, 59, 62); color: rgb(255, 255, 255); background-color: rgb(229, 59, 62);
- }
- .btn-pinterest .badge {
- color: rgb(183, 15, 18);
- }
- .btn-youtube {
- border-color: rgb(217, 38, 35); color: rgb(255, 255, 255); background-color: rgb(217, 38, 35);
- }
- .btn-youtube:hover {
- border-color: rgb(201, 18, 18); color: rgb(255, 255, 255); background-color: rgb(201, 18, 18);
- }
- .btn-youtube:focus {
- border-color: rgb(201, 18, 18); color: rgb(255, 255, 255); background-color: rgb(201, 18, 18);
- }
- .btn-youtube:active {
- border-color: rgb(201, 18, 18); color: rgb(255, 255, 255); background-color: rgb(201, 18, 18);
- }
- .btn-youtube.active {
- border-color: rgb(201, 18, 18); color: rgb(255, 255, 255); background-color: rgb(201, 18, 18);
- }
- .open .dropdown-toggle.btn-youtube {
- border-color: rgb(201, 18, 18); color: rgb(255, 255, 255); background-color: rgb(201, 18, 18);
- }
- .btn-youtube:active {
- background-image: none;
- }
- .btn-youtube.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-youtube {
- background-image: none;
- }
- .btn-youtube.disabled {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- [disabled].btn-youtube {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- fieldset[disabled] .btn-youtube {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- .btn-youtube.disabled:hover {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- [disabled].btn-youtube:hover {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- fieldset[disabled] .btn-youtube:hover {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- .btn-youtube.disabled:focus {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- [disabled].btn-youtube:focus {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- fieldset[disabled] .btn-youtube:focus {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- .btn-youtube.disabled:active {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- [disabled].btn-youtube:active {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- fieldset[disabled] .btn-youtube:active {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- .btn-youtube.disabled.active {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- [disabled].btn-youtube.active {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- fieldset[disabled] .btn-youtube.active {
- border-color: rgb(240, 67, 67); color: rgb(255, 255, 255); background-color: rgb(240, 67, 67);
- }
- .btn-youtube .badge {
- color: rgb(201, 18, 18);
- }
- .btn-dropbox {
- border-color: rgb(20, 115, 195); color: rgb(255, 255, 255); background-color: rgb(20, 115, 195);
- }
- .btn-dropbox:hover {
- border-color: rgb(8, 100, 178); color: rgb(255, 255, 255); background-color: rgb(8, 100, 178);
- }
- .btn-dropbox:focus {
- border-color: rgb(8, 100, 178); color: rgb(255, 255, 255); background-color: rgb(8, 100, 178);
- }
- .btn-dropbox:active {
- border-color: rgb(8, 100, 178); color: rgb(255, 255, 255); background-color: rgb(8, 100, 178);
- }
- .btn-dropbox.active {
- border-color: rgb(8, 100, 178); color: rgb(255, 255, 255); background-color: rgb(8, 100, 178);
- }
- .open .dropdown-toggle.btn-dropbox {
- border-color: rgb(8, 100, 178); color: rgb(255, 255, 255); background-color: rgb(8, 100, 178);
- }
- .btn-dropbox:active {
- background-image: none;
- }
- .btn-dropbox.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-dropbox {
- background-image: none;
- }
- .btn-dropbox.disabled {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- [disabled].btn-dropbox {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- fieldset[disabled] .btn-dropbox {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- .btn-dropbox.disabled:hover {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- [disabled].btn-dropbox:hover {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- fieldset[disabled] .btn-dropbox:hover {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- .btn-dropbox.disabled:focus {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- [disabled].btn-dropbox:focus {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- fieldset[disabled] .btn-dropbox:focus {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- .btn-dropbox.disabled:active {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- [disabled].btn-dropbox:active {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- fieldset[disabled] .btn-dropbox:active {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- .btn-dropbox.disabled.active {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- [disabled].btn-dropbox.active {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- fieldset[disabled] .btn-dropbox.active {
- border-color: rgb(46, 144, 227); color: rgb(255, 255, 255); background-color: rgb(46, 144, 227);
- }
- .btn-dropbox .badge {
- color: rgb(8, 100, 178);
- }
- .btn-foursquare {
- border-color: rgb(0, 134, 190); color: rgb(255, 255, 255); background-color: rgb(0, 134, 190);
- }
- .btn-foursquare:hover {
- border-color: rgb(5, 113, 160); color: rgb(255, 255, 255); background-color: rgb(5, 113, 160);
- }
- .btn-foursquare:focus {
- border-color: rgb(5, 113, 160); color: rgb(255, 255, 255); background-color: rgb(5, 113, 160);
- }
- .btn-foursquare:active {
- border-color: rgb(5, 113, 160); color: rgb(255, 255, 255); background-color: rgb(5, 113, 160);
- }
- .btn-foursquare.active {
- border-color: rgb(5, 113, 160); color: rgb(255, 255, 255); background-color: rgb(5, 113, 160);
- }
- .open .dropdown-toggle.btn-foursquare {
- border-color: rgb(5, 113, 160); color: rgb(255, 255, 255); background-color: rgb(5, 113, 160);
- }
- .btn-foursquare:active {
- background-image: none;
- }
- .btn-foursquare.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-foursquare {
- background-image: none;
- }
- .btn-foursquare.disabled {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- [disabled].btn-foursquare {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- fieldset[disabled] .btn-foursquare {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- .btn-foursquare.disabled:hover {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- [disabled].btn-foursquare:hover {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- fieldset[disabled] .btn-foursquare:hover {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- .btn-foursquare.disabled:focus {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- [disabled].btn-foursquare:focus {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- fieldset[disabled] .btn-foursquare:focus {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- .btn-foursquare.disabled:active {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- [disabled].btn-foursquare:active {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- fieldset[disabled] .btn-foursquare:active {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- .btn-foursquare.disabled.active {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- [disabled].btn-foursquare.active {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- fieldset[disabled] .btn-foursquare.active {
- border-color: rgb(44, 160, 206); color: rgb(255, 255, 255); background-color: rgb(44, 160, 206);
- }
- .btn-foursquare .badge {
- color: rgb(5, 113, 160);
- }
- .btn-github {
- border-color: rgb(59, 59, 59); color: rgb(255, 255, 255); background-color: rgb(59, 59, 59);
- }
- .btn-github:hover {
- border-color: rgb(33, 33, 33); color: rgb(255, 255, 255); background-color: rgb(33, 33, 33);
- }
- .btn-github:focus {
- border-color: rgb(33, 33, 33); color: rgb(255, 255, 255); background-color: rgb(33, 33, 33);
- }
- .btn-github:active {
- border-color: rgb(33, 33, 33); color: rgb(255, 255, 255); background-color: rgb(33, 33, 33);
- }
- .btn-github.active {
- border-color: rgb(33, 33, 33); color: rgb(255, 255, 255); background-color: rgb(33, 33, 33);
- }
- .open .dropdown-toggle.btn-github {
- border-color: rgb(33, 33, 33); color: rgb(255, 255, 255); background-color: rgb(33, 33, 33);
- }
- .btn-github:active {
- background-image: none;
- }
- .btn-github.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-github {
- background-image: none;
- }
- .btn-github.disabled {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- [disabled].btn-github {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- fieldset[disabled] .btn-github {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- .btn-github.disabled:hover {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- [disabled].btn-github:hover {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- fieldset[disabled] .btn-github:hover {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- .btn-github.disabled:focus {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- [disabled].btn-github:focus {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- fieldset[disabled] .btn-github:focus {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- .btn-github.disabled:active {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- [disabled].btn-github:active {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- fieldset[disabled] .btn-github:active {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- .btn-github.disabled.active {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- [disabled].btn-github.active {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- fieldset[disabled] .btn-github.active {
- border-color: rgb(95, 95, 95); color: rgb(255, 255, 255); background-color: rgb(95, 95, 95);
- }
- .btn-github .badge {
- color: rgb(33, 33, 33);
- }
- .btn-linkedin {
- border-color: rgb(0, 133, 174); color: rgb(255, 255, 255); background-color: rgb(0, 133, 174);
- }
- .btn-linkedin:hover {
- border-color: rgb(3, 108, 142); color: rgb(255, 255, 255); background-color: rgb(3, 108, 142);
- }
- .btn-linkedin:focus {
- border-color: rgb(3, 108, 142); color: rgb(255, 255, 255); background-color: rgb(3, 108, 142);
- }
- .btn-linkedin:active {
- border-color: rgb(3, 108, 142); color: rgb(255, 255, 255); background-color: rgb(3, 108, 142);
- }
- .btn-linkedin.active {
- border-color: rgb(3, 108, 142); color: rgb(255, 255, 255); background-color: rgb(3, 108, 142);
- }
- .open .dropdown-toggle.btn-linkedin {
- border-color: rgb(3, 108, 142); color: rgb(255, 255, 255); background-color: rgb(3, 108, 142);
- }
- .btn-linkedin:active {
- background-image: none;
- }
- .btn-linkedin.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-linkedin {
- background-image: none;
- }
- .btn-linkedin.disabled {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- [disabled].btn-linkedin {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- fieldset[disabled] .btn-linkedin {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- .btn-linkedin.disabled:hover {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- [disabled].btn-linkedin:hover {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- fieldset[disabled] .btn-linkedin:hover {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- .btn-linkedin.disabled:focus {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- [disabled].btn-linkedin:focus {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- fieldset[disabled] .btn-linkedin:focus {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- .btn-linkedin.disabled:active {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- [disabled].btn-linkedin:active {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- fieldset[disabled] .btn-linkedin:active {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- .btn-linkedin.disabled.active {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- [disabled].btn-linkedin.active {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- fieldset[disabled] .btn-linkedin.active {
- border-color: rgb(36, 167, 211); color: rgb(255, 255, 255); background-color: rgb(36, 167, 211);
- }
- .btn-linkedin .badge {
- color: rgb(3, 108, 142);
- }
- .btn-tumblr {
- border-color: rgb(62, 90, 112); color: rgb(255, 255, 255); background-color: rgb(62, 90, 112);
- }
- .btn-tumblr:hover {
- border-color: rgb(46, 72, 93); color: rgb(255, 255, 255); background-color: rgb(46, 72, 93);
- }
- .btn-tumblr:focus {
- border-color: rgb(46, 72, 93); color: rgb(255, 255, 255); background-color: rgb(46, 72, 93);
- }
- .btn-tumblr:active {
- border-color: rgb(46, 72, 93); color: rgb(255, 255, 255); background-color: rgb(46, 72, 93);
- }
- .btn-tumblr.active {
- border-color: rgb(46, 72, 93); color: rgb(255, 255, 255); background-color: rgb(46, 72, 93);
- }
- .open .dropdown-toggle.btn-tumblr {
- border-color: rgb(46, 72, 93); color: rgb(255, 255, 255); background-color: rgb(46, 72, 93);
- }
- .btn-tumblr:active {
- background-image: none;
- }
- .btn-tumblr.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-tumblr {
- background-image: none;
- }
- .btn-tumblr.disabled {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- [disabled].btn-tumblr {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- fieldset[disabled] .btn-tumblr {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- .btn-tumblr.disabled:hover {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- [disabled].btn-tumblr:hover {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- fieldset[disabled] .btn-tumblr:hover {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- .btn-tumblr.disabled:focus {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- [disabled].btn-tumblr:focus {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- fieldset[disabled] .btn-tumblr:focus {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- .btn-tumblr.disabled:active {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- [disabled].btn-tumblr:active {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- fieldset[disabled] .btn-tumblr:active {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- .btn-tumblr.disabled.active {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- [disabled].btn-tumblr.active {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- fieldset[disabled] .btn-tumblr.active {
- border-color: rgb(88, 111, 129); color: rgb(255, 255, 255); background-color: rgb(88, 111, 129);
- }
- .btn-tumblr .badge {
- color: rgb(46, 72, 93);
- }
- .btn-vimeo {
- border-color: rgb(27, 182, 236); color: rgb(255, 255, 255); background-color: rgb(27, 182, 236);
- }
- .btn-vimeo:hover {
- border-color: rgb(13, 157, 209); color: rgb(255, 255, 255); background-color: rgb(13, 157, 209);
- }
- .btn-vimeo:focus {
- border-color: rgb(13, 157, 209); color: rgb(255, 255, 255); background-color: rgb(13, 157, 209);
- }
- .btn-vimeo:active {
- border-color: rgb(13, 157, 209); color: rgb(255, 255, 255); background-color: rgb(13, 157, 209);
- }
- .btn-vimeo.active {
- border-color: rgb(13, 157, 209); color: rgb(255, 255, 255); background-color: rgb(13, 157, 209);
- }
- .open .dropdown-toggle.btn-vimeo {
- border-color: rgb(13, 157, 209); color: rgb(255, 255, 255); background-color: rgb(13, 157, 209);
- }
- .btn-vimeo:active {
- background-image: none;
- }
- .btn-vimeo.active {
- background-image: none;
- }
- .open .dropdown-toggle.btn-vimeo {
- background-image: none;
- }
- .btn-vimeo.disabled {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- [disabled].btn-vimeo {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- fieldset[disabled] .btn-vimeo {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- .btn-vimeo.disabled:hover {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- [disabled].btn-vimeo:hover {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- fieldset[disabled] .btn-vimeo:hover {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- .btn-vimeo.disabled:focus {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- [disabled].btn-vimeo:focus {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- fieldset[disabled] .btn-vimeo:focus {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- .btn-vimeo.disabled:active {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- [disabled].btn-vimeo:active {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- fieldset[disabled] .btn-vimeo:active {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- .btn-vimeo.disabled.active {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- [disabled].btn-vimeo.active {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- fieldset[disabled] .btn-vimeo.active {
- border-color: rgb(75, 203, 250); color: rgb(255, 255, 255); background-color: rgb(75, 203, 250);
- }
- .btn-vimeo .badge {
- color: rgb(13, 157, 209);
- }
- .icon-facebook {
- color: rgb(75, 102, 160);
- }
- a .icon-facebook {
- color: rgb(75, 102, 160);
- }
- a:hover .icon-facebook {
- color: rgb(59, 90, 152); text-decoration: none;
- }
- a:focus .icon-facebook {
- color: rgb(59, 90, 152); text-decoration: none;
- }
- .icon-twitter {
- color: rgb(85, 172, 238);
- }
- a .icon-twitter {
- color: rgb(85, 172, 238);
- }
- a:hover .icon-twitter {
- color: rgb(52, 144, 211); text-decoration: none;
- }
- a:focus .icon-twitter {
- color: rgb(52, 144, 211); text-decoration: none;
- }
- .icon-google-plus {
- color: rgb(210, 67, 51);
- }
- a .icon-google-plus {
- color: rgb(210, 67, 51);
- }
- a:hover .icon-google-plus {
- color: rgb(188, 44, 31); text-decoration: none;
- }
- a:focus .icon-google-plus {
- color: rgb(188, 44, 31); text-decoration: none;
- }
- .icon-dribbble {
- color: rgb(224, 76, 134);
- }
- a .icon-dribbble {
- color: rgb(224, 76, 134);
- }
- a:hover .icon-dribbble {
- color: rgb(211, 52, 113); text-decoration: none;
- }
- a:focus .icon-dribbble {
- color: rgb(211, 52, 113); text-decoration: none;
- }
- .icon-flickr {
- color: rgb(1, 98, 219);
- }
- a .icon-flickr {
- color: rgb(1, 98, 219);
- }
- a:hover .icon-flickr {
- color: rgb(5, 85, 191); text-decoration: none;
- }
- a:focus .icon-flickr {
- color: rgb(5, 85, 191); text-decoration: none;
- }
- .icon-pinterest {
- color: rgb(204, 33, 39);
- }
- a .icon-pinterest {
- color: rgb(204, 33, 39);
- }
- a:hover .icon-pinterest {
- color: rgb(183, 15, 18); text-decoration: none;
- }
- a:focus .icon-pinterest {
- color: rgb(183, 15, 18); text-decoration: none;
- }
- .icon-youtube {
- color: rgb(217, 38, 35);
- }
- a .icon-youtube {
- color: rgb(217, 38, 35);
- }
- a:hover .icon-youtube {
- color: rgb(201, 18, 18); text-decoration: none;
- }
- a:focus .icon-youtube {
- color: rgb(201, 18, 18); text-decoration: none;
- }
- .icon-dropbox {
- color: rgb(20, 115, 195);
- }
- a .icon-dropbox {
- color: rgb(20, 115, 195);
- }
- a:hover .icon-dropbox {
- color: rgb(8, 100, 178); text-decoration: none;
- }
- a:focus .icon-dropbox {
- color: rgb(8, 100, 178); text-decoration: none;
- }
- .icon-foursquare {
- color: rgb(0, 134, 190);
- }
- a .icon-foursquare {
- color: rgb(0, 134, 190);
- }
- a:hover .icon-foursquare {
- color: rgb(5, 113, 160); text-decoration: none;
- }
- a:focus .icon-foursquare {
- color: rgb(5, 113, 160); text-decoration: none;
- }
- .icon-github {
- color: rgb(59, 59, 59);
- }
- a .icon-github {
- color: rgb(59, 59, 59);
- }
- a:hover .icon-github {
- color: rgb(33, 33, 33); text-decoration: none;
- }
- a:focus .icon-github {
- color: rgb(33, 33, 33); text-decoration: none;
- }
- .icon-linkedin {
- color: rgb(0, 133, 174);
- }
- a .icon-linkedin {
- color: rgb(0, 133, 174);
- }
- a:hover .icon-linkedin {
- color: rgb(3, 108, 142); text-decoration: none;
- }
- a:focus .icon-linkedin {
- color: rgb(3, 108, 142); text-decoration: none;
- }
- .icon-tumblr {
- color: rgb(62, 90, 112);
- }
- a .icon-tumblr {
- color: rgb(62, 90, 112);
- }
- a:hover .icon-tumblr {
- color: rgb(46, 72, 93); text-decoration: none;
- }
- a:focus .icon-tumblr {
- color: rgb(46, 72, 93); text-decoration: none;
- }
- .icon-vimeo {
- color: rgb(27, 182, 236);
- }
- a .icon-vimeo {
- color: rgb(27, 182, 236);
- }
- a:hover .icon-vimeo {
- color: rgb(13, 157, 209); text-decoration: none;
- }
- a:focus .icon-vimeo {
- color: rgb(13, 157, 209); text-decoration: none;
- }
- .mfp-fade.mfp-bg {
- transition:0.4s ease-out; opacity: 0; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;
- }
- .mfp-fade.mfp-bg.mfp-ready {
- opacity: 0.8;
- }
- .mfp-fade.mfp-bg.mfp-removing {
- opacity: 0;
- }
- .mfp-fade.mfp-wrap .mfp-content {
- transition:0.4s ease-out; opacity: 0; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;
- }
- .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
- opacity: 1;
- }
- .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
- opacity: 0;
- }
- .login-page {
- background: rgb(122, 134, 143);
- }
- .signup-page {
- background: rgb(122, 134, 143);
- }
- .lock-page {
- background: rgb(37, 41, 50);
- }
- .lock-page .container {
- background: rgb(122, 134, 143);
- }
- .internal-error h1 {
- transform: rotate(10deg); -webkit-transform: rotate(10deg); -o-transform: rotate(10deg); -moz-transform: rotate(10deg);
- }
- .internal-error h2 {
- transform: rotate(-185deg); -webkit-transform: rotate(-185deg); -o-transform: rotate(-185deg); -moz-transform: rotate(-185deg);
- }
- .internal-error .backbtn {
- transform: rotate(-44deg); -webkit-transform: rotate(-44deg); -o-transform: rotate(-44deg); -moz-transform: rotate(-44deg);
- }
- .internal-error .searchbtn {
- transform: rotate(-44deg); -webkit-transform: rotate(-44deg); -o-transform: rotate(-44deg); -moz-transform: rotate(-44deg);
- }
- .full-content-center {
- background: rgb(47, 155, 218); margin: 6% auto; padding: 40px 25px; width: 100%; text-align: center; max-width: 500px;
- }
- .full-content {
- background: rgb(229, 233, 236);
- }
- .full-content-center h1 {
- color: rgb(37, 41, 50); line-height: 150px; font-family: "Open Sans"; font-size: 150px; font-weight: 700;
- }
- .maintenance h1 i {
- color: rgb(255, 255, 255); font-size: 90px;
- }
- .maintenance h1 {
- 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);
- }
- .maintenance h2 {
- line-height: 20px; font-size: 16px;
- }
- .error-page h2 {
- line-height: 20px; font-size: 16px;
- }
- .login-wrap {
- margin: 20px 10%; text-align: left; color: rgb(255, 255, 255);
- }
- .error-page .btn-search {
- background: rgb(21, 188, 155);
- }
- .login-wrap .btn-login {
- background: rgb(66, 74, 85);
- }
- .login-wrap .btn-login:hover {
- background: rgb(66, 74, 85); color: rgb(255, 255, 255);
- }
- .login-wrap .btn-reg {
- background: rgb(21, 188, 155);
- }
- .login-wrap a {
- color: rgb(255, 255, 255);
- }
- .login-wrap i {
- margin-right: 5px;
- }
- .login-wrap .checkbox {
- padding-left: 0px; margin-left: 0px;
- }
- .login-wrap .btn-block {
- margin: 5px 0px;
- }
- .login-wrap .login-input {
- position: relative;
- }
- .login-wrap .login-input .text-input {
- padding-left: 30px;
- }
- .login-wrap .login-input i.overlay {
- left: 10px; top: 10px; color: rgb(170, 170, 170); position: absolute;
- }
- .widget .media-list.search-result .media a {
- color: rgb(70, 196, 95);
- }
- .widget .media-list.search-result .media .media-heading a {
- color: rgb(18, 121, 209);
- }
- .widget .media-list.search-result .media .media-heading span {
- padding: 3px 5px; font-size: 12px; font-weight: 400;
- }
- .widget .media-list.search-result .media .media-object {
- width: 100px;
- }
- ul.faq {
- list-style: none; margin: 20px 0px 50px; padding-left: 10px;
- }
- ul.faq li i {
- margin-right: 5px;
- }
- ul.faq li {
- margin: 10px 0px;
- }
- ul.faq li a.faq-question {
- font-size: 14px; display: block; cursor: pointer;
- }
- ul.faq li .faq-answer {
- margin: 10px 15px;
- }
- table.pricing-table-style-1 {
- background: rgb(255, 255, 255); text-align: center;
- }
- table.pricing-table-style-1 thead tr th {
- padding: 15px; text-align: center; font-size: 18px; font-weight: 600;
- }
- table.pricing-table-style-1 thead tr th.best-choice {
- background: rgb(15, 18, 21); color: rgb(162, 167, 183); border-bottom-color: rgb(0, 0, 0);
- }
- table.pricing-table-style-1 tbody tr td.best-choice {
- background: rgb(27, 30, 36); color: rgb(250, 250, 250); font-size: 15px; font-weight: 600; border-top-color: rgb(0, 0, 0);
- }
- table.pricing-table-style-1 tbody tr td.td-success {
- background: rgb(101, 189, 119); text-align: right; color: rgb(44, 116, 57); font-weight: 600; border-top-color: rgb(85, 173, 103);
- }
- table.pricing-table-style-1 thead tr th.th-success {
- background: rgb(85, 173, 103); color: rgb(101, 189, 119); border-bottom-color: rgb(85, 173, 103);
- }
- .la-pricing-table {
- margin: 30px 0px; text-align: center;
- }
- .la-pricing-table::before {
- display: table; content: " ";
- }
- .la-pricing-table::after {
- display: table; content: " ";
- }
- .la-pricing-table::after {
- clear: both;
- }
- .la-pricing-table .la-col-4 {
- 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;
- }
- .la-pricing-table .la-col-4:hover {
- border-color: rgb(67, 77, 88);
- }
- .la-pricing-table .la-col-4 i.bg-big {
- 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;
- }
- .la-pricing-table .la-col-4:hover i.bg-big {
- opacity: 0; transform: scale(2); -webkit-transform: scale(2); -o-transform: scale(2); -moz-transform: scale(2);
- }
- .la-pricing-table .la-col-4 ul {
- background: rgb(255, 255, 255); list-style: none; margin: 0px; padding: 0px;
- }
- .la-pricing-table .la-col-4 ul li {
- padding: 10px 20px; font-size: 13px; display: block;
- }
- .la-pricing-table .la-col-4 ul li.la-package {
- background: rgb(18, 21, 21); color: rgb(255, 255, 255); font-size: 24px; font-weight: 600;
- }
- .la-pricing-table .la-col-4 ul li.la-price {
- background: rgb(67, 77, 88); margin: 0px 20px; color: rgb(142, 152, 173); font-size: 18px; font-weight: 600;
- }
- .la-pricing-table .la-col-4 ul li.la-price i {
- font-size: 13px;
- }
- .la-pricing-table .la-col-4.success:hover {
- border-color: rgb(44, 116, 57);
- }
- .la-pricing-table .la-col-4.success ul {
- background: rgb(101, 189, 119);
- }
- .la-pricing-table .la-col-4.success ul li {
- color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.success ul li.la-package {
- background: rgb(44, 116, 57); color: rgb(188, 245, 198);
- }
- .la-pricing-table .la-col-4.success ul li.la-price {
- background: rgb(62, 152, 77); color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.danger:hover {
- border-color: rgb(180, 36, 36);
- }
- .la-pricing-table .la-col-4.danger ul {
- background: rgb(215, 61, 61);
- }
- .la-pricing-table .la-col-4.danger ul li {
- color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.danger ul li.la-package {
- background: rgb(180, 36, 36); color: rgb(255, 180, 180);
- }
- .la-pricing-table .la-col-4.danger ul li.la-price {
- background: rgb(196, 46, 46); color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.info:hover {
- border-color: rgb(31, 106, 170);
- }
- .la-pricing-table .la-col-4.info ul {
- background: rgb(82, 157, 222);
- }
- .la-pricing-table .la-col-4.info ul li {
- color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.info ul li.la-package {
- background: rgb(31, 106, 170); color: rgb(198, 229, 255);
- }
- .la-pricing-table .la-col-4.info ul li.la-price {
- background: rgb(46, 113, 173); color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.warning:hover {
- border-color: rgb(240, 134, 0);
- }
- .la-pricing-table .la-col-4.warning ul {
- background: rgb(255, 206, 0);
- }
- .la-pricing-table .la-col-4.warning ul li {
- color: rgb(255, 255, 255);
- }
- .la-pricing-table .la-col-4.warning ul li.la-package {
- background: rgb(240, 134, 0); color: rgb(255, 245, 201);
- }
- .la-pricing-table .la-col-4.warning ul li.la-price {
- background: rgb(255, 170, 0); color: rgb(255, 255, 255);
- }
- .invoice .widget-content.padding {
- padding: 70px 30px; color: rgb(122, 134, 143);
- }
- .payment-methods {
- font-size: 30px;
- }
- .company-column {
- padding: 15px; margin-bottom: 20px;
- }
- .company-column address {
- color: rgb(122, 134, 143);
- }
- .bill-to {
- padding: 15px; border: 1px dashed rgb(229, 233, 236); border-image: none; margin-top: 20px; margin-bottom: 20px;
- }
- .btn-default.disabled {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- [disabled].btn-default {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- fieldset[disabled] .btn-default {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- .btn-default.disabled:hover {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- [disabled].btn-default:hover {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- fieldset[disabled] .btn-default:hover {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- .btn-default.disabled:focus {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- [disabled].btn-default:focus {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- fieldset[disabled] .btn-default:focus {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- .btn-default.disabled:active {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- [disabled].btn-default:active {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- fieldset[disabled] .btn-default:active {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- .btn-default.disabled.active {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- [disabled].btn-default.active {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- fieldset[disabled] .btn-default.active {
- border-color: rgb(171, 183, 183); color: rgb(255, 255, 255); background-color: rgb(171, 183, 183);
- }
- #calculator {
- font: bold 17px/normal "Open Sans", Arial, sans-serif; padding: 20px; height: auto; font-size-adjust: none; font-stretch: normal;
- }
- #calculator .col-xs-3 {
- padding: 0px 2%;
- }
- #calculator .col-xs-9 {
- padding: 0px 2%;
- }
- .calc-top .calc-screen {
- 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);
- }
- .calc-keys {
- overflow: hidden;
- }
- .calc-top {
- overflow: hidden;
- }
- .calc-keys span {
- 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;
- }
- .calc-top span.calc-clean {
- 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;
- }
- .calc-keys span.calc-operator {
- background: rgb(153, 153, 153); color: rgb(255, 255, 255); font-size: 22px; margin-right: 0px;
- }
- .calc-keys span.calc-eval {
- background: rgb(241, 255, 146); color: rgb(136, 142, 95);
- }
- .calc-top span.calc-clean {
- background: rgb(235, 80, 85); color: white;
- }
- .calc-keys span:hover {
- background: rgb(156, 137, 246); color: white;
- }
- .profile-banner {
- background-position: center; width: 100%; height: 300px; position: relative; background-size: cover; background-color: rgb(37, 41, 50);
- }
- .avatar-container {
- height: 300px; text-align: center;
- }
- .profile-avatar {
- margin: 196px auto 0px; border: 4px solid rgb(228, 234, 230); border-image: none; width: 200px; position: relative;
- }
- .profile-actions {
- bottom: 60px; position: absolute;
- }
- .user-profile-2 {
- margin-top: 120px;
- }
- .user-profile-sidebar {
- margin: 0px 0px 20px;
- }
- .user-profile-sidebar .user-identity {
- margin: 20px 0px 0px;
- }
- .user-profile-sidebar img {
- width: 90px;
- }
- .account-status-data {
- 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;
- }
- .account-status-data h5 {
- color: rgb(144, 144, 144); line-height: 150%; font-size: 11px;
- }
- .user-button {
- margin: 15px 0px;
- }
- .user-button .btn {
- margin: 5px 0px;
- }
- #social {
- background: rgb(229, 233, 236); padding: 10px; text-align: center;
- }
- #social a:hover {
- text-decoration: none;
- }
- .fa-circle.facebook {
- color: rgb(84, 113, 174);
- }
- .fa-circle.twitter {
- color: rgb(78, 198, 246);
- }
- .fa-circle.gplus {
- color: rgb(226, 78, 62);
- }
- .fa-circle.tumblr {
- color: rgb(77, 119, 163);
- }
- .fa-circle.linkedin {
- color: rgb(48, 151, 206);
- }
- .user-profile-content {
- margin: 30px 15px;
- }
- .easyWizardSteps {
- 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;
- }
- .easyWizardSteps li {
- 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;
- }
- .easyWizardSteps li:last-child {
- border-right-color: currentColor; border-right-width: 0px; border-right-style: none;
- }
- .easyWizardSteps li span {
- 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;
- }
- .easyWizardSteps li.current span {
- border: 2px solid rgb(104, 195, 159); border-image: none; color: rgb(104, 195, 159);
- }
- .easyWizardSteps li.current {
- background: rgb(255, 255, 255); color: rgb(56, 70, 74);
- }
- .easyWizardButtons {
- padding: 10px; overflow: hidden;
- }
- .easyWizardButtons button {
- cursor: pointer;
- }
- .easyWizardButtons .submit {
- cursor: pointer;
- }
- .easyWizardButtons .prev {
- float: left;
- }
- .easyWizardButtons .next {
- float: right;
- }
- .easyWizardButtons .submit {
- float: right;
- }
- .notes {
- padding: 15px; border: 1px dashed rgb(221, 221, 221); border-image: none;
- }
- section.step {
- padding: 0px 30px;
- }
- .the-notes {
- padding: 15px 15px 15px 30px; margin-bottom: 20px; border-left-color: rgb(144, 144, 144); border-left-width: 4px; border-left-style: solid;
- }
- .the-notes.default {
- background: rgb(255, 255, 255);
- }
- .the-notes.success {
- background: rgb(255, 255, 255); border-left-color: rgb(101, 189, 119);
- }
- .the-notes.warning {
- background: rgb(255, 255, 255); border-left-color: rgb(247, 203, 23);
- }
- .the-notes.danger {
- background: rgb(255, 255, 255); border-left-color: rgb(217, 83, 79);
- }
- .the-notes.info {
- background: rgb(255, 255, 255); border-left-color: rgb(67, 147, 216);
- }
- .the-notes.success h4 {
- color: rgb(101, 189, 119);
- }
- .the-notes.warning h4 {
- color: rgb(247, 203, 23);
- }
- .the-notes.danger h4 {
- color: rgb(217, 83, 79);
- }
- .the-notes.inf h4 {
- color: rgb(67, 147, 216);
- }
- .popover {
- border-radius: 3px; border: currentColor; border-image: none; opacity: 0.9; box-shadow: none;
- }
- .popover .arrow {
- border-top-color: currentColor; border-top-width: medium; border-top-style: none;
- }
- .popover .popover-title {
- background: 0px 0px rgba(0, 0, 0, 0.025); font-family: "Open Sans";
- }
- .popover .popover-content {
- padding: 6px 11px; font-family: Helvetica, Arial; font-size: 12px;
- }
- .modal {
- direction: rtl; -ms-overflow-y: auto;
- }
- .modal .modal-dialog {
- z-index: 10000; direction: ltr;
- }
- .modal-open {
- overflow: auto;
- }
- .mini-stats {
- color: rgb(85, 85, 85); font-size: 12px;
- }
- #website-statistics1 .widget-footer {
- border-top-color: rgb(238, 238, 238); border-top-width: 1px; border-top-style: solid;
- }
- #website-statistics1 .widget-footer > .col-sm-4 {
- padding-top: 25px; padding-bottom: 20px; font-size: 13px;
- }
- .status-data {
- color: rgba(255, 255, 255, 0.5); padding-left: 30px; font-family: "Open Sans"; font-size: 12px;
- }
- .status-data .animate-number {
- color: rgba(255, 255, 255, 0.85); font-size: 14px; font-weight: 700;
- }
- .status-data .right-border {
- border-right-color: rgba(0, 0, 0, 0.2); border-right-width: 1px; border-right-style: solid;
- }
- #home-chart-2 {
- margin-top: 24px;
- }
- .morris-chart svg {
- width: 100% !important;
- }
- #website-statistic2 h4 {
- color: rgb(255, 255, 255);
- }
- #website-statistic2 .progress {
- background: rgba(0, 0, 0, 0.2);
- }
- #website-statistic3 {
- padding: 20px; color: rgb(255, 255, 255);
- }
- #website-statistic3 h2 {
- color: rgb(255, 255, 255);
- }
- #website-statistic3 .stock-status {
- margin: 10px 0px; line-height: 35px; font-family: "Open Sans"; font-size: 21px; display: block;
- }
- .sales-report-data {
- padding: 20px;
- }
- #chat_groups h2 {
- 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);
- }
- #chat_groups li a {
- padding: 5px 15px; color: rgba(255, 255, 255, 0.8); font-family: "Open Sans"; font-size: 13px; display: block;
- }
- #chat_groups li a i {
- font-size: 12px; margin-right: 5px;
- }
- #recent_tickets h2 {
- 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);
- }
- #recent_tickets li a {
- padding: 5px 15px; color: rgba(255, 255, 255, 0.8); font-family: "Open Sans"; font-size: 13px; display: block;
- }
- #recent_tickets li a i {
- margin-right: 5px;
- }
- #recent_tickets li a span {
- color: rgba(255, 255, 255, 0.5); font-size: 12px; display: block;
- }
- #stock-widget .widget-content h4 {
- left: 15px; top: 40px; position: absolute;
- }
- #stock-widget #stock-chart svg {
- margin-top: -20px;
- }
- #stock-widget .stock-options {
- margin-right: 15px;
- }
- #notes-app {
- background: rgb(253, 253, 190); overflow: hidden;
- }
- #note-data {
- 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;
- }
- .new-item#notes-app #notes-list {
- 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;
- }
- #notes-list {
- 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;
- }
- #notes-list a {
- color: rgb(85, 85, 85);
- }
- #notes-list ul li {
- line-height: 31px;
- }
- #note-text {
- background: none !important; border: currentColor !important; border-image: none !important; height: 100%; line-height: 31px; min-height: 300px; resize: none;
- }
- #notes-app .status-indicator {
- 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;
- }
- .saved#notes-app .status-indicator {
- 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;
- }
- #notes-app .widget-content {
- background: repeating-linear-gradient(0deg, transparent, transparent 30px, rgb(243, 243, 243) 30px, rgb(243, 243, 243) 31px); height: 342px; padding-top: 0px;
- }
- #notes-app .notes-line {
- 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;
- }
- .new-item#notes-app #note-data {
- 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;
- }
- .todo-list {
- list-style: none; margin: 0px;
- }
- .todo-list li {
-
- }
- .todo-list li.done {
- opacity: 0.5;
- }
- .todo-list li.done .todo-item {
- text-decoration: line-through;
- }
- .todo-list li > span {
- overflow: hidden; vertical-align: middle; display: inline-block; -ms-text-overflow: ellipsis; max-width: 70%;
- }
- .todo-list .check-icon {
- width: 30px; margin-top: -2px; display: inline-block;
- }
- .todo-list .todo-item {
- font-size: 12px; border-bottom-color: rgba(0, 0, 0, 0) !important; border-bottom-width: 1px !important; border-bottom-style: dashed !important;
- }
- .todo-list .todo-item:hover {
- border-bottom-color: rgba(0, 0, 0, 0.2) !important; border-bottom-width: 1px !important; border-bottom-style: dashed !important;
- }
- .todo-list .todo-options {
- font-size: 16px; display: none;
- }
- .todo-list .editable-buttons {
- display: inline-block;
- }
- .todo-list .todo-tags {
- top: 9px; right: 9px; font-family: "Open Sans"; display: inline; position: absolute;
- }
- .todo-list .todo-options a {
- color: rgb(136, 136, 136);
- }
- .todo-list li:hover .todo-tags {
- display: none;
- }
- .todo-list li:hover .todo-options {
- top: 9px; right: 9px; display: inline; position: absolute;
- }
- .todo-list li.done .todo-tags {
- display: inline !important;
- }
- .todo-list li.done .todo-options {
- display: none !important;
- }
- .todo-list li .editable-container.editable-inline {
- overflow: visible; margin-top: -4px;
- }
- .todo-list li.high {
- border-left-color: rgb(235, 80, 85); border-left-width: 4px; border-left-style: solid;
- }
- .todo-list li.medium {
- border-left-color: rgb(226, 122, 63); border-left-width: 4px; border-left-style: solid;
- }
- .todo-list li.low {
- border-left-color: rgb(255, 192, 82); border-left-width: 4px; border-left-style: solid;
- }
- #contextMenu {
- display: none; position: absolute; z-index: 1000;
- }
- #weather-widget {
- background: url("../../images/weather/weather-bg.jpg") 0% 0% / cover; min-height: 364px;
- }
- #weather-widget h2 {
- color: rgb(255, 255, 255);
- }
- #weather h2 {
- top: 60px; right: 30px; font-size: 50px; position: absolute;
- }
- #weather .w-region {
- left: 20px; top: 100px; color: rgba(255, 255, 255, 0.9); font-family: "Open Sans"; font-size: 30px; position: absolute;
- }
- #weather .w-currently {
- color: rgba(255, 255, 255, 0.8); font-size: 20px; display: block;
- }
- #weather .w-temp2 {
- color: rgba(255, 255, 255, 0.8); font-size: 24px;
- }
- .bic_calendar {
- background: none; border: currentColor; border-image: none; font-family: "Open Sans";
- }
- .bic_calendar a {
- color: rgb(255, 255, 255);
- }
- .bic_calendar .table tbody > tr > td {
- padding: 2px 0px; border: currentColor !important; border-image: none !important; line-height: 2.429;
- }
- .bic_calendar td > div {
- padding: 4px;
- }
- .bic_calendar .button-month-next {
- padding: 5px 15px !important;
- }
- .bic_calendar .button-month-previous {
- padding: 5px 15px !important;
- }
- .bic_calendar .days-month td {
- background: rgba(0, 0, 0, 0.1); font-weight: 600;
- }
- .fc-event {
- padding: 1px 4px; border: 0px currentColor; border-image: none;
- }
- .dataTables_length {
- margin-left: 15px;
- }
- div.dataTables_info {
- margin-left: 15px;
- }
- .dataTables_filter {
- margin-right: 15px !important;
- }
- .dataTables_paginate {
- margin-right: 15px !important;
- }
- .dataTables_filter input {
- margin-left: 6px;
- }
- .streetview {
- height: 300px;
- }
- .cluster {
- text-align: center; color: rgb(255, 255, 255); font-family: "Arial,Helvetica"; font-size: 11px; font-weight: bold;
- }
- .cluster-1 {
- width: 53px; height: 52px; line-height: 53px; background-image: url("../img/gmap/m1.png");
- }
- .cluster-2 {
- width: 56px; height: 55px; line-height: 53px; background-image: url("../img/gmap/m2.png");
- }
- .cluster-3 {
- width: 66px; height: 65px; line-height: 66px; background-image: url("../img/gmap/m3.png");
- }
- .modal-content {
- border-radius: 2px; -webkit-border-radius: 2px;
- }
- .notification-positions {
- padding: 2px; border: 2px dashed rgb(221, 221, 221); border-image: none;
- }
- .notification-positions div {
- height: 50px; margin-bottom: 20px; display: block;
- }
- .notification-positions a {
- height: 50px; margin-bottom: 20px; display: block;
- }
- .notification-positions :last-child.row {
- margin-bottom: 0px !important;
- }
- .notification-positions :last-child.row div {
- margin-bottom: 0px !important;
- }
- .notification-positions :last-child.row div a {
- margin-bottom: 0px !important;
- }
- .jqstooltip {
- 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;
- }
- .rickshaw_graph .detail .x_label {
- color: rgb(51, 51, 51);
- }
- .echart {
- vertical-align: middle; display: inline-block; position: relative;
- }
- .echart canvas {
- display: block;
- }
- .percent {
- 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;
- }
- .percent::after {
- color: rgba(255, 255, 255, 0.7); font-size: 9px; font-weight: normal; margin-right: -5px; margin-left: 0.1em; content: "%";
- }
- .jvectormap-zoomin {
- background: rgb(0, 131, 193); width: 18px; height: 18px;
- }
- .jvectormap-zoomout {
- background: rgb(0, 131, 193); width: 18px; height: 18px;
- }
- .jvectormap-zoomin:hover {
- background: rgb(51, 51, 51);
- }
- .jvectormap-zoomout:hover {
- background: rgb(51, 51, 51);
- }
- .jvectormap-zoomin {
- top: auto; bottom: 10px;
- }
- .jvectormap-zoomout {
- left: 30px; top: auto; bottom: 10px;
- }
- .grid-example [class*='col-'] {
- 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;
- }
- span.i-code {
- display: none;
- }
- .icon-showcase p {
- line-height: 30px; font-size: 14px; vertical-align: middle;
- }
- .icon-showcase p i {
- width: 24px; text-align: center; line-height: 30px; font-size: 24px; vertical-align: middle;
- }
- #icons .the-icons i {
- top: auto; right: auto; line-height: 30px; font-size: 24px; position: relative;
- }
- #icons .the-icons .i-name {
- line-height: 30px; font-size: 14px;
- }
- .ios-switch-default .on-background {
- background: rgb(171, 183, 183);
- }
- .ios-switch-primary .on-background {
- background: rgb(41, 128, 185);
- }
- .ios-switch-success .on-background {
- background: rgb(104, 195, 159);
- }
- .ios-switch-warning .on-background {
- background: rgb(226, 122, 63);
- }
- .ios-switch-info .on-background {
- background: rgb(122, 134, 143);
- }
- .ios-switch-danger .on-background {
- background: rgb(235, 80, 85);
- }
- .ios-switch-lg {
- width: 75px; height: 45px;
- }
- .ios-switch-lg .handle {
- width: 41px; height: 41px;
- }
- .ios-switch-lg.on .handle {
- transform: translate3d(30px, 0px, 0px); -webkit-transform: translate3d(30px, 0, 0); -o-transform: translate3d(30px, 0, 0); -moz-transform: translate3d(30px, 0, 0);
- }
- .ios-switch-sm {
- width: 45px; height: 25px;
- }
- .ios-switch-sm .handle {
- width: 21px; height: 21px;
- }
- .ios-switch-sm.on .handle {
- transform: translate3d(20px, 0px, 0px); -webkit-transform: translate3d(20px, 0, 0); -o-transform: translate3d(20px, 0, 0); -moz-transform: translate3d(20px, 0, 0);
- }
- footer {
- 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;
- }
- footer .footer-links a {
- 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;
- }
- footer .footer-links a:hover {
- color: rgb(74, 82, 95);
- }
- footer .footer-links a:last-child {
- border: currentColor; border-image: none;
- }
|