fastadmin.css 132 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831
  1. /*!
  2. * AdminLTE v2.3.7
  3. * Author: Almsaeed Studio
  4. * Website: Almsaeed Studio <http://almsaeedstudio.com>
  5. * License: Open source - MIT
  6. * Please visit http://opensource.org/licenses/MIT for more information
  7. !*/
  8. /*
  9. * Core: General Layout Style
  10. * -------------------------
  11. */
  12. html,
  13. body {
  14. min-height: 100%;
  15. }
  16. .layout-boxed html,
  17. .layout-boxed body {
  18. height: 100%;
  19. }
  20. body {
  21. -webkit-font-smoothing: antialiased;
  22. -moz-osx-font-smoothing: grayscale;
  23. font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  24. font-weight: 400;
  25. overflow-x: hidden;
  26. overflow-y: auto;
  27. }
  28. /* Layout */
  29. .wrapper {
  30. min-height: 100%;
  31. position: relative;
  32. overflow: hidden;
  33. }
  34. .wrapper:before,
  35. .wrapper:after {
  36. content: " ";
  37. display: table;
  38. }
  39. .wrapper:after {
  40. clear: both;
  41. }
  42. .wrapper:before,
  43. .wrapper:after {
  44. content: " ";
  45. display: table;
  46. }
  47. .wrapper:after {
  48. clear: both;
  49. }
  50. .layout-boxed .wrapper {
  51. max-width: 1250px;
  52. margin: 0 auto;
  53. min-height: 100%;
  54. box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  55. position: relative;
  56. }
  57. .layout-boxed {
  58. background: url('../img/boxed-bg.jpg') repeat fixed;
  59. }
  60. /*
  61. * Content Wrapper - contains the main content
  62. * ```.right-side has been deprecated as of v2.0.0 in favor of .content-wrapper ```
  63. */
  64. .content-wrapper,
  65. .right-side,
  66. .main-footer {
  67. -webkit-transition: -webkit-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  68. -moz-transition: -moz-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  69. -o-transition: -o-transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  70. transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
  71. margin-left: 230px;
  72. z-index: 820;
  73. }
  74. .layout-top-nav .content-wrapper,
  75. .layout-top-nav .right-side,
  76. .layout-top-nav .main-footer {
  77. margin-left: 0;
  78. }
  79. @media (max-width: 767px) {
  80. .content-wrapper,
  81. .right-side,
  82. .main-footer {
  83. margin-left: 0;
  84. }
  85. }
  86. @media (min-width: 768px) {
  87. .sidebar-collapse .content-wrapper,
  88. .sidebar-collapse .right-side,
  89. .sidebar-collapse .main-footer {
  90. margin-left: 0;
  91. }
  92. }
  93. @media (max-width: 767px) {
  94. .sidebar-open .content-wrapper,
  95. .sidebar-open .right-side,
  96. .sidebar-open .main-footer {
  97. -webkit-transform: translate(230px, 0);
  98. -ms-transform: translate(230px, 0);
  99. -o-transform: translate(230px, 0);
  100. transform: translate(230px, 0);
  101. }
  102. }
  103. .content-wrapper,
  104. .right-side {
  105. min-height: 100%;
  106. background-color: #ecf0f5;
  107. z-index: 800;
  108. }
  109. .main-footer {
  110. background: #fff;
  111. padding: 15px;
  112. color: #444;
  113. border-top: 1px solid #d2d6de;
  114. }
  115. /* Fixed layout */
  116. .fixed .main-header,
  117. .fixed .main-sidebar,
  118. .fixed .left-side {
  119. position: fixed;
  120. }
  121. .fixed .main-header {
  122. top: 0;
  123. right: 0;
  124. left: 0;
  125. }
  126. .fixed .content-wrapper,
  127. .fixed .right-side {
  128. padding-top: 50px;
  129. }
  130. @media (max-width: 767px) {
  131. .fixed .content-wrapper,
  132. .fixed .right-side {
  133. padding-top: 100px;
  134. }
  135. }
  136. .fixed.layout-boxed .wrapper {
  137. max-width: 100%;
  138. }
  139. body.hold-transition .content-wrapper,
  140. body.hold-transition .right-side,
  141. body.hold-transition .main-footer,
  142. body.hold-transition .main-sidebar,
  143. body.hold-transition .left-side,
  144. body.hold-transition .main-header .navbar,
  145. body.hold-transition .main-header .logo {
  146. /* Fix for IE */
  147. -webkit-transition: none;
  148. -o-transition: none;
  149. transition: none;
  150. }
  151. /* Content */
  152. .content {
  153. min-height: 250px;
  154. padding: 15px;
  155. margin-right: auto;
  156. margin-left: auto;
  157. padding-left: 15px;
  158. padding-right: 15px;
  159. }
  160. /* H1 - H6 font */
  161. h1,
  162. h2,
  163. h3,
  164. h4,
  165. h5,
  166. h6,
  167. .h1,
  168. .h2,
  169. .h3,
  170. .h4,
  171. .h5,
  172. .h6 {
  173. font-family: 'Source Sans Pro', sans-serif;
  174. }
  175. /* General Links */
  176. a {
  177. color: #3c8dbc;
  178. }
  179. a:hover,
  180. a:active,
  181. a:focus {
  182. outline: none;
  183. text-decoration: none;
  184. color: #72afd2;
  185. }
  186. /* Page Header */
  187. .page-header {
  188. margin: 10px 0 20px 0;
  189. font-size: 22px;
  190. }
  191. .page-header > small {
  192. color: #666;
  193. display: block;
  194. margin-top: 5px;
  195. }
  196. /*
  197. * Component: Main Header
  198. * ----------------------
  199. */
  200. .main-header {
  201. position: relative;
  202. max-height: 100px;
  203. z-index: 1030;
  204. }
  205. .main-header .navbar {
  206. -webkit-transition: margin-left 0.3s ease-in-out;
  207. -o-transition: margin-left 0.3s ease-in-out;
  208. transition: margin-left 0.3s ease-in-out;
  209. margin-bottom: 0;
  210. margin-left: 230px;
  211. border: none;
  212. min-height: 50px;
  213. border-radius: 0;
  214. }
  215. .layout-top-nav .main-header .navbar {
  216. margin-left: 0;
  217. }
  218. .main-header #navbar-search-input.form-control {
  219. background: rgba(255, 255, 255, 0.2);
  220. border-color: transparent;
  221. }
  222. .main-header #navbar-search-input.form-control:focus,
  223. .main-header #navbar-search-input.form-control:active {
  224. border-color: rgba(0, 0, 0, 0.1);
  225. background: rgba(255, 255, 255, 0.9);
  226. }
  227. .main-header #navbar-search-input.form-control::-moz-placeholder {
  228. color: #ccc;
  229. opacity: 1;
  230. }
  231. .main-header #navbar-search-input.form-control:-ms-input-placeholder {
  232. color: #ccc;
  233. }
  234. .main-header #navbar-search-input.form-control::-webkit-input-placeholder {
  235. color: #ccc;
  236. }
  237. .main-header .navbar-custom-menu,
  238. .main-header .navbar-right {
  239. float: right;
  240. }
  241. @media (max-width: 991px) {
  242. .main-header .navbar-custom-menu a,
  243. .main-header .navbar-right a {
  244. color: inherit;
  245. background: transparent;
  246. }
  247. }
  248. @media (max-width: 767px) {
  249. .main-header .navbar-right {
  250. float: none;
  251. }
  252. .navbar-collapse .main-header .navbar-right {
  253. margin: 7.5px -15px;
  254. }
  255. .main-header .navbar-right > li {
  256. color: inherit;
  257. border: 0;
  258. }
  259. }
  260. .main-header .sidebar-toggle {
  261. float: left;
  262. background-color: transparent;
  263. background-image: none;
  264. padding: 16.5px 15px;
  265. font-family: fontAwesome;
  266. }
  267. .main-header .sidebar-toggle:before {
  268. content: "\f0c9";
  269. }
  270. .main-header .sidebar-toggle:hover {
  271. color: #fff;
  272. }
  273. .main-header .sidebar-toggle:focus,
  274. .main-header .sidebar-toggle:active {
  275. background: transparent;
  276. }
  277. .main-header .sidebar-toggle .icon-bar {
  278. display: none;
  279. }
  280. .main-header .navbar .nav > li.user > a > .fa,
  281. .main-header .navbar .nav > li.user > a > .glyphicon,
  282. .main-header .navbar .nav > li.user > a > .ion {
  283. margin-right: 5px;
  284. }
  285. .main-header .navbar .nav > li > a > .label {
  286. position: absolute;
  287. top: 9px;
  288. right: 7px;
  289. text-align: center;
  290. font-size: 9px;
  291. padding: 2px 3px;
  292. line-height: .9;
  293. }
  294. .main-header .logo {
  295. -webkit-transition: width 0.3s ease-in-out;
  296. -o-transition: width 0.3s ease-in-out;
  297. transition: width 0.3s ease-in-out;
  298. display: block;
  299. float: left;
  300. height: 50px;
  301. font-size: 20px;
  302. line-height: 50px;
  303. text-align: center;
  304. width: 230px;
  305. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  306. padding: 0 15px;
  307. font-weight: 300;
  308. overflow: hidden;
  309. }
  310. .main-header .logo .logo-lg {
  311. display: block;
  312. }
  313. .main-header .logo .logo-mini {
  314. display: none;
  315. }
  316. .main-header .navbar-brand {
  317. color: #fff;
  318. }
  319. .content-header {
  320. position: relative;
  321. padding: 15px 15px 0 15px;
  322. }
  323. .content-header > h1 {
  324. margin: 0;
  325. font-size: 24px;
  326. }
  327. .content-header > h1 > small {
  328. font-size: 15px;
  329. display: inline-block;
  330. padding-left: 4px;
  331. font-weight: 300;
  332. }
  333. .content-header > .breadcrumb {
  334. float: right;
  335. background: transparent;
  336. margin-top: 0;
  337. margin-bottom: 0;
  338. font-size: 12px;
  339. padding: 7px 5px;
  340. position: absolute;
  341. top: 15px;
  342. right: 10px;
  343. border-radius: 2px;
  344. }
  345. .content-header > .breadcrumb > li > a {
  346. color: #444;
  347. text-decoration: none;
  348. display: inline-block;
  349. }
  350. .content-header > .breadcrumb > li > a > .fa,
  351. .content-header > .breadcrumb > li > a > .glyphicon,
  352. .content-header > .breadcrumb > li > a > .ion {
  353. margin-right: 5px;
  354. }
  355. .content-header > .breadcrumb > li + li:before {
  356. content: '>\00a0';
  357. }
  358. @media (max-width: 991px) {
  359. .content-header > .breadcrumb {
  360. position: relative;
  361. margin-top: 5px;
  362. top: 0;
  363. right: 0;
  364. float: none;
  365. background: #d2d6de;
  366. padding-left: 10px;
  367. }
  368. .content-header > .breadcrumb li:before {
  369. color: #97a0b3;
  370. }
  371. }
  372. .navbar-toggle {
  373. color: #fff;
  374. border: 0;
  375. margin: 0;
  376. padding: 16.5px 15px;
  377. }
  378. @media (max-width: 991px) {
  379. .navbar-custom-menu .navbar-nav > li {
  380. float: left;
  381. }
  382. .navbar-custom-menu .navbar-nav {
  383. margin: 0;
  384. float: left;
  385. }
  386. .navbar-custom-menu .navbar-nav > li > a {
  387. padding-top: 15px;
  388. padding-bottom: 15px;
  389. line-height: 20px;
  390. }
  391. }
  392. @media (max-width: 767px) {
  393. .main-header {
  394. position: relative;
  395. }
  396. .main-header .logo,
  397. .main-header .navbar {
  398. width: 100%;
  399. float: none;
  400. }
  401. .main-header .navbar {
  402. margin: 0;
  403. }
  404. .main-header .navbar-custom-menu {
  405. float: right;
  406. }
  407. }
  408. @media (max-width: 991px) {
  409. .navbar-collapse.pull-left {
  410. float: none !important;
  411. }
  412. .navbar-collapse.pull-left + .navbar-custom-menu {
  413. display: block;
  414. position: absolute;
  415. top: 0;
  416. right: 40px;
  417. }
  418. }
  419. /*
  420. * Component: Sidebar
  421. * ------------------
  422. */
  423. .main-sidebar,
  424. .left-side {
  425. position: absolute;
  426. top: 0;
  427. left: 0;
  428. padding-top: 50px;
  429. min-height: 100%;
  430. width: 230px;
  431. z-index: 810;
  432. -webkit-transition: -webkit-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  433. -moz-transition: -moz-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  434. -o-transition: -o-transform 0.3s ease-in-out, width 0.3s ease-in-out;
  435. transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  436. }
  437. @media (max-width: 767px) {
  438. .main-sidebar,
  439. .left-side {
  440. padding-top: 100px;
  441. }
  442. }
  443. @media (max-width: 767px) {
  444. .main-sidebar,
  445. .left-side {
  446. -webkit-transform: translate(-230px, 0);
  447. -ms-transform: translate(-230px, 0);
  448. -o-transform: translate(-230px, 0);
  449. transform: translate(-230px, 0);
  450. }
  451. }
  452. @media (min-width: 768px) {
  453. .sidebar-collapse .main-sidebar,
  454. .sidebar-collapse .left-side {
  455. -webkit-transform: translate(-230px, 0);
  456. -ms-transform: translate(-230px, 0);
  457. -o-transform: translate(-230px, 0);
  458. transform: translate(-230px, 0);
  459. }
  460. }
  461. @media (max-width: 767px) {
  462. .sidebar-open .main-sidebar,
  463. .sidebar-open .left-side {
  464. -webkit-transform: translate(0, 0);
  465. -ms-transform: translate(0, 0);
  466. -o-transform: translate(0, 0);
  467. transform: translate(0, 0);
  468. }
  469. }
  470. .sidebar {
  471. padding-bottom: 10px;
  472. }
  473. .sidebar-form input:focus {
  474. border-color: transparent;
  475. }
  476. .user-panel {
  477. position: relative;
  478. width: 100%;
  479. padding: 10px;
  480. overflow: hidden;
  481. }
  482. .user-panel:before,
  483. .user-panel:after {
  484. content: " ";
  485. display: table;
  486. }
  487. .user-panel:after {
  488. clear: both;
  489. }
  490. .user-panel:before,
  491. .user-panel:after {
  492. content: " ";
  493. display: table;
  494. }
  495. .user-panel:after {
  496. clear: both;
  497. }
  498. .user-panel > .image > img {
  499. width: 100%;
  500. max-width: 45px;
  501. height: auto;
  502. }
  503. .user-panel > .info {
  504. padding: 5px 5px 5px 15px;
  505. line-height: 1;
  506. position: absolute;
  507. left: 55px;
  508. }
  509. .user-panel > .info > p {
  510. font-weight: 600;
  511. margin-bottom: 9px;
  512. }
  513. .user-panel > .info > a {
  514. text-decoration: none;
  515. padding-right: 5px;
  516. margin-top: 3px;
  517. font-size: 11px;
  518. }
  519. .user-panel > .info > a > .fa,
  520. .user-panel > .info > a > .ion,
  521. .user-panel > .info > a > .glyphicon {
  522. margin-right: 3px;
  523. }
  524. .sidebar-menu {
  525. list-style: none;
  526. margin: 0;
  527. padding: 0;
  528. }
  529. .sidebar-menu > li {
  530. position: relative;
  531. margin: 0;
  532. padding: 0;
  533. }
  534. .sidebar-menu > li > a {
  535. padding: 12px 5px 12px 15px;
  536. display: block;
  537. }
  538. .sidebar-menu > li > a > .fa,
  539. .sidebar-menu > li > a > .glyphicon,
  540. .sidebar-menu > li > a > .ion {
  541. width: 20px;
  542. }
  543. .sidebar-menu > li .label,
  544. .sidebar-menu > li .badge {
  545. margin-right: 5px;
  546. }
  547. .sidebar-menu > li .badge {
  548. margin-top: 3px;
  549. }
  550. .sidebar-menu li.header {
  551. padding: 10px 25px 10px 15px;
  552. font-size: 12px;
  553. }
  554. .sidebar-menu li > a > .fa-angle-left,
  555. .sidebar-menu li > a > .pull-right-container > .fa-angle-left {
  556. width: auto;
  557. height: auto;
  558. padding: 0;
  559. margin-right: 10px;
  560. }
  561. .sidebar-menu li.active > a > .fa-angle-left,
  562. .sidebar-menu li.active > a > .pull-right-container > .fa-angle-left {
  563. -webkit-transform: rotate(-90deg);
  564. -ms-transform: rotate(-90deg);
  565. -o-transform: rotate(-90deg);
  566. transform: rotate(-90deg);
  567. }
  568. .sidebar-menu li.active > .treeview-menu {
  569. display: block;
  570. }
  571. .sidebar-menu .treeview-menu {
  572. display: none;
  573. list-style: none;
  574. padding: 0;
  575. margin: 0;
  576. padding-left: 5px;
  577. }
  578. .sidebar-menu .treeview-menu .treeview-menu {
  579. padding-left: 20px;
  580. }
  581. .sidebar-menu .treeview-menu > li {
  582. margin: 0;
  583. }
  584. .sidebar-menu .treeview-menu > li > a {
  585. padding: 12px 5px 12px 15px;
  586. display: block;
  587. font-size: 12px;
  588. }
  589. .sidebar-menu .treeview-menu > li > a > .fa,
  590. .sidebar-menu .treeview-menu > li > a > .glyphicon,
  591. .sidebar-menu .treeview-menu > li > a > .ion {
  592. width: 20px;
  593. }
  594. .sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-left,
  595. .sidebar-menu .treeview-menu > li > a > .pull-right-container > .fa-angle-down,
  596. .sidebar-menu .treeview-menu > li > a > .fa-angle-left,
  597. .sidebar-menu .treeview-menu > li > a > .fa-angle-down {
  598. width: auto;
  599. }
  600. /*
  601. * Component: Sidebar Mini
  602. */
  603. @media (min-width: 768px) {
  604. .sidebar-mini.sidebar-collapse .content-wrapper,
  605. .sidebar-mini.sidebar-collapse .right-side,
  606. .sidebar-mini.sidebar-collapse .main-footer {
  607. margin-left: 50px !important;
  608. z-index: 840;
  609. }
  610. .sidebar-mini.sidebar-collapse .main-sidebar {
  611. -webkit-transform: translate(0, 0);
  612. -ms-transform: translate(0, 0);
  613. -o-transform: translate(0, 0);
  614. transform: translate(0, 0);
  615. width: 50px !important;
  616. z-index: 850;
  617. }
  618. .sidebar-mini.sidebar-collapse .sidebar-menu > li {
  619. position: relative;
  620. }
  621. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a {
  622. margin-right: 0;
  623. }
  624. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span {
  625. border-top-right-radius: 4px;
  626. }
  627. .sidebar-mini.sidebar-collapse .sidebar-menu > li:not(.treeview) > a > span {
  628. border-bottom-right-radius: 4px;
  629. }
  630. .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu {
  631. padding-top: 5px;
  632. padding-bottom: 5px;
  633. border-bottom-right-radius: 4px;
  634. }
  635. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right),
  636. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  637. display: block !important;
  638. position: absolute;
  639. width: 180px;
  640. left: 50px;
  641. }
  642. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > span {
  643. top: 0;
  644. margin-left: -3px;
  645. padding: 12px 5px 12px 20px;
  646. background-color: inherit;
  647. }
  648. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
  649. float: right;
  650. width: auto!important;
  651. left: 200px!important;
  652. top: 10px!important;
  653. }
  654. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container > .label:not(:first-of-type) {
  655. display: none;
  656. }
  657. .sidebar-mini.sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
  658. top: 44px;
  659. margin-left: 0;
  660. }
  661. .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
  662. .sidebar-mini.sidebar-collapse .sidebar-form,
  663. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > span,
  664. .sidebar-mini.sidebar-collapse .sidebar-menu > li > .treeview-menu,
  665. .sidebar-mini.sidebar-collapse .sidebar-menu > li > a > .pull-right,
  666. .sidebar-mini.sidebar-collapse .sidebar-menu li.header {
  667. display: none !important;
  668. -webkit-transform: translateZ(0);
  669. }
  670. .sidebar-mini.sidebar-collapse .main-header .logo {
  671. width: 50px;
  672. }
  673. .sidebar-mini.sidebar-collapse .main-header .logo > .logo-mini {
  674. display: block;
  675. margin-left: -15px;
  676. margin-right: -15px;
  677. font-size: 18px;
  678. }
  679. .sidebar-mini.sidebar-collapse .main-header .logo > .logo-lg {
  680. display: none;
  681. }
  682. .sidebar-mini.sidebar-collapse .main-header .navbar {
  683. margin-left: 50px;
  684. }
  685. }
  686. .sidebar-menu,
  687. .main-sidebar .user-panel,
  688. .sidebar-menu > li.header {
  689. white-space: nowrap;
  690. overflow: hidden;
  691. }
  692. .sidebar-menu:hover {
  693. overflow: visible;
  694. }
  695. .sidebar-form,
  696. .sidebar-menu > li.header {
  697. overflow: hidden;
  698. text-overflow: clip;
  699. }
  700. .sidebar-menu li > a {
  701. position: relative;
  702. }
  703. .sidebar-menu li > a > .pull-right-container {
  704. position: absolute;
  705. right: 10px;
  706. top: 50%;
  707. margin-top: -7px;
  708. }
  709. /*
  710. * Component: Control sidebar. By default, this is the right sidebar.
  711. */
  712. .control-sidebar-bg {
  713. position: fixed;
  714. z-index: 1000;
  715. bottom: 0;
  716. }
  717. .control-sidebar-bg,
  718. .control-sidebar {
  719. top: 0;
  720. right: -230px;
  721. width: 230px;
  722. -webkit-transition: right 0.3s ease-in-out;
  723. -o-transition: right 0.3s ease-in-out;
  724. transition: right 0.3s ease-in-out;
  725. }
  726. .control-sidebar {
  727. position: absolute;
  728. padding-top: 50px;
  729. z-index: 1010;
  730. }
  731. @media (max-width: 768px) {
  732. .control-sidebar {
  733. padding-top: 100px;
  734. }
  735. }
  736. .control-sidebar > .tab-content {
  737. padding: 10px 15px;
  738. }
  739. .control-sidebar.control-sidebar-open,
  740. .control-sidebar.control-sidebar-open + .control-sidebar-bg {
  741. right: 0;
  742. }
  743. .control-sidebar-open .control-sidebar-bg,
  744. .control-sidebar-open .control-sidebar {
  745. right: 0;
  746. }
  747. @media (min-width: 768px) {
  748. .control-sidebar-open .content-wrapper,
  749. .control-sidebar-open .right-side,
  750. .control-sidebar-open .main-footer {
  751. margin-right: 230px;
  752. }
  753. }
  754. .nav-tabs.control-sidebar-tabs > li:first-of-type > a,
  755. .nav-tabs.control-sidebar-tabs > li:first-of-type > a:hover,
  756. .nav-tabs.control-sidebar-tabs > li:first-of-type > a:focus {
  757. border-left-width: 0;
  758. }
  759. .nav-tabs.control-sidebar-tabs > li > a {
  760. border-radius: 0;
  761. }
  762. .nav-tabs.control-sidebar-tabs > li > a,
  763. .nav-tabs.control-sidebar-tabs > li > a:hover {
  764. border-top: none;
  765. border-right: none;
  766. border-left: 1px solid transparent;
  767. border-bottom: 1px solid transparent;
  768. }
  769. .nav-tabs.control-sidebar-tabs > li > a .icon {
  770. font-size: 16px;
  771. }
  772. .nav-tabs.control-sidebar-tabs > li.active > a,
  773. .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  774. .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  775. .nav-tabs.control-sidebar-tabs > li.active > a:active {
  776. border-top: none;
  777. border-right: none;
  778. border-bottom: none;
  779. }
  780. @media (max-width: 768px) {
  781. .nav-tabs.control-sidebar-tabs {
  782. display: table;
  783. }
  784. .nav-tabs.control-sidebar-tabs > li {
  785. display: table-cell;
  786. }
  787. }
  788. .control-sidebar-heading {
  789. font-weight: 400;
  790. font-size: 16px;
  791. padding: 10px 0;
  792. margin-bottom: 10px;
  793. }
  794. .control-sidebar-subheading {
  795. display: block;
  796. font-weight: 400;
  797. font-size: 14px;
  798. }
  799. .control-sidebar-menu {
  800. list-style: none;
  801. padding: 0;
  802. margin: 0 -15px;
  803. }
  804. .control-sidebar-menu > li > a {
  805. display: block;
  806. padding: 10px 15px;
  807. }
  808. .control-sidebar-menu > li > a:before,
  809. .control-sidebar-menu > li > a:after {
  810. content: " ";
  811. display: table;
  812. }
  813. .control-sidebar-menu > li > a:after {
  814. clear: both;
  815. }
  816. .control-sidebar-menu > li > a:before,
  817. .control-sidebar-menu > li > a:after {
  818. content: " ";
  819. display: table;
  820. }
  821. .control-sidebar-menu > li > a:after {
  822. clear: both;
  823. }
  824. .control-sidebar-menu > li > a > .control-sidebar-subheading {
  825. margin-top: 0;
  826. }
  827. .control-sidebar-menu .menu-icon {
  828. float: left;
  829. width: 35px;
  830. height: 35px;
  831. border-radius: 50%;
  832. text-align: center;
  833. line-height: 35px;
  834. }
  835. .control-sidebar-menu .menu-info {
  836. margin-left: 45px;
  837. margin-top: 3px;
  838. }
  839. .control-sidebar-menu .menu-info > .control-sidebar-subheading {
  840. margin: 0;
  841. }
  842. .control-sidebar-menu .menu-info > p {
  843. margin: 0;
  844. font-size: 11px;
  845. }
  846. .control-sidebar-menu .progress {
  847. margin: 0;
  848. }
  849. .control-sidebar-dark {
  850. color: #b8c7ce;
  851. }
  852. .control-sidebar-dark,
  853. .control-sidebar-dark + .control-sidebar-bg {
  854. background: #222d32;
  855. }
  856. .control-sidebar-dark .nav-tabs.control-sidebar-tabs {
  857. border-bottom: #1c2529;
  858. }
  859. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
  860. background: #181f23;
  861. color: #b8c7ce;
  862. }
  863. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a,
  864. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
  865. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
  866. border-left-color: #141a1d;
  867. border-bottom-color: #141a1d;
  868. }
  869. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover,
  870. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus,
  871. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
  872. background: #1c2529;
  873. }
  874. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
  875. color: #fff;
  876. }
  877. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a,
  878. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  879. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  880. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
  881. background: #222d32;
  882. color: #fff;
  883. }
  884. .control-sidebar-dark .control-sidebar-heading,
  885. .control-sidebar-dark .control-sidebar-subheading {
  886. color: #fff;
  887. }
  888. .control-sidebar-dark .control-sidebar-menu > li > a:hover {
  889. background: #1e282c;
  890. }
  891. .control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
  892. color: #b8c7ce;
  893. }
  894. .control-sidebar-light {
  895. color: #5e5e5e;
  896. }
  897. .control-sidebar-light,
  898. .control-sidebar-light + .control-sidebar-bg {
  899. background: #f9fafc;
  900. border-left: 1px solid #d2d6de;
  901. }
  902. .control-sidebar-light .nav-tabs.control-sidebar-tabs {
  903. border-bottom: #d2d6de;
  904. }
  905. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
  906. background: #e8ecf4;
  907. color: #444;
  908. }
  909. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a,
  910. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
  911. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
  912. border-left-color: #d2d6de;
  913. border-bottom-color: #d2d6de;
  914. }
  915. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover,
  916. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus,
  917. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
  918. background: #eff1f7;
  919. }
  920. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a,
  921. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover,
  922. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus,
  923. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
  924. background: #f9fafc;
  925. color: #111;
  926. }
  927. .control-sidebar-light .control-sidebar-heading,
  928. .control-sidebar-light .control-sidebar-subheading {
  929. color: #111;
  930. }
  931. .control-sidebar-light .control-sidebar-menu {
  932. margin-left: -14px;
  933. }
  934. .control-sidebar-light .control-sidebar-menu > li > a:hover {
  935. background: #f4f4f5;
  936. }
  937. .control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
  938. color: #5e5e5e;
  939. }
  940. /*
  941. * Component: Dropdown menus
  942. * -------------------------
  943. */
  944. /*Dropdowns in general*/
  945. .dropdown-menu {
  946. border: none;
  947. }
  948. .dropdown-menu > li > a {
  949. /*color: #777;*/
  950. }
  951. .dropdown-menu > li > a > .glyphicon,
  952. .dropdown-menu > li > a > .fa,
  953. .dropdown-menu > li > a > .ion {
  954. margin-right: 10px;
  955. }
  956. .dropdown-menu > li > a:hover {
  957. background-color: #e1e3e9;
  958. color: #333;
  959. }
  960. .dropdown-menu > .divider {
  961. background-color: #eee;
  962. }
  963. .navbar-nav > .notifications-menu > .dropdown-menu,
  964. .navbar-nav > .messages-menu > .dropdown-menu,
  965. .navbar-nav > .tasks-menu > .dropdown-menu {
  966. width: 280px;
  967. padding: 0 0 0 0;
  968. margin: 0;
  969. top: 100%;
  970. }
  971. .navbar-nav > .notifications-menu > .dropdown-menu > li,
  972. .navbar-nav > .messages-menu > .dropdown-menu > li,
  973. .navbar-nav > .tasks-menu > .dropdown-menu > li {
  974. position: relative;
  975. }
  976. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  977. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  978. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  979. border-top-left-radius: 4px;
  980. border-top-right-radius: 4px;
  981. border-bottom-right-radius: 0;
  982. border-bottom-left-radius: 0;
  983. background-color: #ffffff;
  984. padding: 7px 10px;
  985. border-bottom: 1px solid #f4f4f4;
  986. color: #444444;
  987. font-size: 14px;
  988. }
  989. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  990. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  991. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  992. border-top-left-radius: 0;
  993. border-top-right-radius: 0;
  994. border-bottom-right-radius: 4px;
  995. border-bottom-left-radius: 4px;
  996. font-size: 12px;
  997. background-color: #fff;
  998. padding: 7px 10px;
  999. border-bottom: 1px solid #eeeeee;
  1000. color: #444 !important;
  1001. text-align: center;
  1002. }
  1003. @media (max-width: 991px) {
  1004. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  1005. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  1006. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  1007. background: #fff !important;
  1008. color: #444 !important;
  1009. }
  1010. }
  1011. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  1012. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  1013. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  1014. text-decoration: none;
  1015. font-weight: normal;
  1016. }
  1017. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  1018. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  1019. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  1020. max-height: 200px;
  1021. margin: 0;
  1022. padding: 0;
  1023. list-style: none;
  1024. overflow-x: hidden;
  1025. }
  1026. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  1027. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  1028. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  1029. display: block;
  1030. white-space: nowrap;
  1031. /* Prevent text from breaking */
  1032. border-bottom: 1px solid #f4f4f4;
  1033. }
  1034. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  1035. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  1036. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  1037. background: #f4f4f4;
  1038. text-decoration: none;
  1039. }
  1040. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  1041. color: #444444;
  1042. overflow: hidden;
  1043. text-overflow: ellipsis;
  1044. padding: 10px;
  1045. }
  1046. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  1047. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  1048. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  1049. width: 20px;
  1050. }
  1051. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  1052. margin: 0;
  1053. padding: 10px 10px;
  1054. }
  1055. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  1056. margin: auto 10px auto auto;
  1057. width: 40px;
  1058. height: 40px;
  1059. }
  1060. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  1061. padding: 0;
  1062. margin: 0 0 0 45px;
  1063. color: #444444;
  1064. font-size: 15px;
  1065. position: relative;
  1066. }
  1067. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  1068. color: #999999;
  1069. font-size: 10px;
  1070. position: absolute;
  1071. top: 0;
  1072. right: 0;
  1073. }
  1074. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  1075. margin: 0 0 0 45px;
  1076. font-size: 12px;
  1077. color: #888888;
  1078. }
  1079. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  1080. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1081. content: " ";
  1082. display: table;
  1083. }
  1084. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1085. clear: both;
  1086. }
  1087. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  1088. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1089. content: " ";
  1090. display: table;
  1091. }
  1092. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  1093. clear: both;
  1094. }
  1095. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  1096. padding: 10px;
  1097. }
  1098. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  1099. font-size: 14px;
  1100. padding: 0;
  1101. margin: 0 0 10px 0;
  1102. color: #666666;
  1103. }
  1104. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  1105. padding: 0;
  1106. margin: 0;
  1107. }
  1108. .navbar-nav > .user-menu > .dropdown-menu {
  1109. border-top-right-radius: 0;
  1110. border-top-left-radius: 0;
  1111. padding: 1px 0 0 0;
  1112. border-top-width: 0;
  1113. width: 280px;
  1114. }
  1115. .navbar-nav > .user-menu > .dropdown-menu,
  1116. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  1117. border-bottom-right-radius: 4px;
  1118. border-bottom-left-radius: 4px;
  1119. }
  1120. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  1121. height: 175px;
  1122. padding: 10px;
  1123. text-align: center;
  1124. }
  1125. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  1126. z-index: 5;
  1127. height: 90px;
  1128. width: 90px;
  1129. border: 3px solid;
  1130. border-color: transparent;
  1131. border-color: rgba(255, 255, 255, 0.2);
  1132. }
  1133. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  1134. z-index: 5;
  1135. color: #fff;
  1136. color: rgba(255, 255, 255, 0.8);
  1137. font-size: 17px;
  1138. margin-top: 10px;
  1139. }
  1140. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  1141. display: block;
  1142. font-size: 12px;
  1143. }
  1144. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  1145. padding: 15px;
  1146. border-bottom: 1px solid #f4f4f4;
  1147. border-top: 1px solid #dddddd;
  1148. }
  1149. .navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
  1150. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1151. content: " ";
  1152. display: table;
  1153. }
  1154. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1155. clear: both;
  1156. }
  1157. .navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
  1158. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1159. content: " ";
  1160. display: table;
  1161. }
  1162. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  1163. clear: both;
  1164. }
  1165. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  1166. color: #444 !important;
  1167. }
  1168. @media (max-width: 991px) {
  1169. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  1170. background: #fff !important;
  1171. color: #444 !important;
  1172. }
  1173. }
  1174. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  1175. background-color: #f9f9f9;
  1176. padding: 10px;
  1177. }
  1178. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
  1179. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1180. content: " ";
  1181. display: table;
  1182. }
  1183. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1184. clear: both;
  1185. }
  1186. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
  1187. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1188. content: " ";
  1189. display: table;
  1190. }
  1191. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  1192. clear: both;
  1193. }
  1194. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  1195. color: #666666;
  1196. }
  1197. @media (max-width: 991px) {
  1198. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
  1199. background-color: #f9f9f9;
  1200. }
  1201. }
  1202. .navbar-nav > .user-menu .user-image {
  1203. float: left;
  1204. width: 25px;
  1205. height: 25px;
  1206. border-radius: 50%;
  1207. margin-right: 10px;
  1208. margin-top: -2px;
  1209. }
  1210. @media (max-width: 767px) {
  1211. .navbar-nav > .user-menu .user-image {
  1212. float: none;
  1213. margin-right: 0;
  1214. margin-top: -8px;
  1215. line-height: 10px;
  1216. }
  1217. }
  1218. /* Add fade animation to dropdown menus by appending
  1219. the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
  1220. .open:not(.dropup) > .animated-dropdown-menu {
  1221. backface-visibility: visible !important;
  1222. -webkit-animation: flipInX 0.7s both;
  1223. -o-animation: flipInX 0.7s both;
  1224. animation: flipInX 0.7s both;
  1225. }
  1226. @keyframes flipInX {
  1227. 0% {
  1228. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1229. transition-timing-function: ease-in;
  1230. opacity: 0;
  1231. }
  1232. 40% {
  1233. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1234. transition-timing-function: ease-in;
  1235. }
  1236. 60% {
  1237. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1238. opacity: 1;
  1239. }
  1240. 80% {
  1241. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1242. }
  1243. 100% {
  1244. transform: perspective(400px);
  1245. }
  1246. }
  1247. @-webkit-keyframes flipInX {
  1248. 0% {
  1249. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  1250. -webkit-transition-timing-function: ease-in;
  1251. opacity: 0;
  1252. }
  1253. 40% {
  1254. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  1255. -webkit-transition-timing-function: ease-in;
  1256. }
  1257. 60% {
  1258. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  1259. opacity: 1;
  1260. }
  1261. 80% {
  1262. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  1263. }
  1264. 100% {
  1265. -webkit-transform: perspective(400px);
  1266. }
  1267. }
  1268. /* Fix dropdown menu in navbars */
  1269. .navbar-custom-menu > .navbar-nav > li {
  1270. position: relative;
  1271. }
  1272. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  1273. position: absolute;
  1274. right: 0;
  1275. left: auto;
  1276. }
  1277. @media (max-width: 991px) {
  1278. .navbar-custom-menu > .navbar-nav {
  1279. float: right;
  1280. }
  1281. .navbar-custom-menu > .navbar-nav > li {
  1282. position: static;
  1283. }
  1284. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  1285. position: absolute;
  1286. right: 5%;
  1287. left: auto;
  1288. border: 1px solid #ddd;
  1289. background: #fff;
  1290. }
  1291. }
  1292. .dropdown-submenu {
  1293. position: relative;
  1294. }
  1295. .dropdown-submenu > .dropdown-menu {
  1296. top: 0;
  1297. left: 100%;
  1298. margin-top: -6px;
  1299. margin-left: -1px;
  1300. border-radius: 3px 0 3px 3px;
  1301. }
  1302. .dropdown-submenu:hover > .dropdown-menu {
  1303. display: block;
  1304. }
  1305. .dropdown-submenu:hover > a:after {
  1306. border-left-color: #fff;
  1307. }
  1308. .dropdown-submenu > a:after {
  1309. display: block;
  1310. content: " ";
  1311. float: right;
  1312. width: 0;
  1313. height: 0;
  1314. border-color: transparent;
  1315. border-style: solid;
  1316. border-width: 5px 0 5px 5px;
  1317. border-left-color: #ccc;
  1318. margin-top: 5px;
  1319. margin-right: -10px;
  1320. }
  1321. .dropdown-submenu.pull-left {
  1322. float: none;
  1323. }
  1324. .dropdown-submenu.pull-left > .dropdown-menu {
  1325. left: -100%;
  1326. margin-left: 10px;
  1327. border-radius: 3px 0 3px 3px;
  1328. }
  1329. /*
  1330. * Component: Form
  1331. * ---------------
  1332. */
  1333. .form-control {
  1334. border-radius: 0;
  1335. box-shadow: none;
  1336. border-color: #d2d6de;
  1337. -webkit-appearance: none;
  1338. -moz-appearance: none;
  1339. appearance: none;
  1340. }
  1341. .form-control:focus {
  1342. border-color: #3c8dbc;
  1343. box-shadow: none;
  1344. }
  1345. .form-control::-moz-placeholder,
  1346. .form-control:-ms-input-placeholder,
  1347. .form-control::-webkit-input-placeholder {
  1348. color: #bbb;
  1349. opacity: 1;
  1350. }
  1351. .form-control .btn {
  1352. border-radius: 0;
  1353. }
  1354. select.form-control {
  1355. -webkit-appearance: none;
  1356. -webkit-border-radius: 0px;
  1357. background-position: right 50%;
  1358. background-repeat: no-repeat;
  1359. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
  1360. }
  1361. .form-group.has-success label {
  1362. color: #18bc9c;
  1363. }
  1364. .form-group.has-success .form-control,
  1365. .form-group.has-success .input-group-addon {
  1366. border-color: #18bc9c;
  1367. box-shadow: none;
  1368. }
  1369. .form-group.has-success .help-block {
  1370. color: #18bc9c;
  1371. }
  1372. .form-group.has-warning label {
  1373. color: #f39c12;
  1374. }
  1375. .form-group.has-warning .form-control,
  1376. .form-group.has-warning .input-group-addon {
  1377. border-color: #f39c12;
  1378. box-shadow: none;
  1379. }
  1380. .form-group.has-warning .help-block {
  1381. color: #f39c12;
  1382. }
  1383. .form-group.has-error label {
  1384. color: #e74c3c;
  1385. }
  1386. .form-group.has-error .form-control,
  1387. .form-group.has-error .input-group-addon {
  1388. border-color: #e74c3c;
  1389. box-shadow: none;
  1390. }
  1391. .form-group.has-error .help-block {
  1392. color: #e74c3c;
  1393. }
  1394. /* Input group */
  1395. .input-group .input-group-addon {
  1396. border-radius: 0;
  1397. border-color: #d2d6de;
  1398. background-color: #fff;
  1399. }
  1400. /* button groups */
  1401. .btn-group-vertical .btn.btn-flat:first-of-type,
  1402. .btn-group-vertical .btn.btn-flat:last-of-type {
  1403. border-radius: 0;
  1404. }
  1405. .icheck > label {
  1406. padding-left: 0;
  1407. }
  1408. /* support Font Awesome icons in form-control */
  1409. .form-control-feedback.fa {
  1410. line-height: 31px;
  1411. }
  1412. .input-lg + .form-control-feedback.fa,
  1413. .input-group-lg + .form-control-feedback.fa,
  1414. .form-group-lg .form-control + .form-control-feedback.fa {
  1415. line-height: 42px;
  1416. }
  1417. .input-sm + .form-control-feedback.fa,
  1418. .input-group-sm + .form-control-feedback.fa,
  1419. .form-group-sm .form-control + .form-control-feedback.fa {
  1420. line-height: 28px;
  1421. }
  1422. /*
  1423. * Component: Progress Bar
  1424. * -----------------------
  1425. */
  1426. .progress,
  1427. .progress > .progress-bar {
  1428. -webkit-box-shadow: none;
  1429. box-shadow: none;
  1430. }
  1431. .progress,
  1432. .progress > .progress-bar,
  1433. .progress .progress-bar,
  1434. .progress > .progress-bar .progress-bar {
  1435. border-radius: 1px;
  1436. }
  1437. /* size variation */
  1438. .progress.sm,
  1439. .progress-sm {
  1440. height: 10px;
  1441. }
  1442. .progress.sm,
  1443. .progress-sm,
  1444. .progress.sm .progress-bar,
  1445. .progress-sm .progress-bar {
  1446. border-radius: 1px;
  1447. }
  1448. .progress.xs,
  1449. .progress-xs {
  1450. height: 7px;
  1451. }
  1452. .progress.xs,
  1453. .progress-xs,
  1454. .progress.xs .progress-bar,
  1455. .progress-xs .progress-bar {
  1456. border-radius: 1px;
  1457. }
  1458. .progress.xxs,
  1459. .progress-xxs {
  1460. height: 3px;
  1461. }
  1462. .progress.xxs,
  1463. .progress-xxs,
  1464. .progress.xxs .progress-bar,
  1465. .progress-xxs .progress-bar {
  1466. border-radius: 1px;
  1467. }
  1468. /* Vertical bars */
  1469. .progress.vertical {
  1470. position: relative;
  1471. width: 30px;
  1472. height: 200px;
  1473. display: inline-block;
  1474. margin-right: 10px;
  1475. }
  1476. .progress.vertical > .progress-bar {
  1477. width: 100%;
  1478. position: absolute;
  1479. bottom: 0;
  1480. }
  1481. .progress.vertical.sm,
  1482. .progress.vertical.progress-sm {
  1483. width: 20px;
  1484. }
  1485. .progress.vertical.xs,
  1486. .progress.vertical.progress-xs {
  1487. width: 10px;
  1488. }
  1489. .progress.vertical.xxs,
  1490. .progress.vertical.progress-xxs {
  1491. width: 3px;
  1492. }
  1493. .progress-group .progress-text {
  1494. font-weight: 600;
  1495. }
  1496. .progress-group .progress-number {
  1497. float: right;
  1498. }
  1499. /* Remove margins from progress bars when put in a table */
  1500. .table tr > td .progress {
  1501. margin: 0;
  1502. }
  1503. .progress-bar-light-blue,
  1504. .progress-bar-primary {
  1505. background-color: #3c8dbc;
  1506. }
  1507. .progress-striped .progress-bar-light-blue,
  1508. .progress-striped .progress-bar-primary {
  1509. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1510. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1511. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1512. }
  1513. .progress-bar-green,
  1514. .progress-bar-success {
  1515. background-color: #18bc9c;
  1516. }
  1517. .progress-striped .progress-bar-green,
  1518. .progress-striped .progress-bar-success {
  1519. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1520. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1521. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1522. }
  1523. .progress-bar-aqua,
  1524. .progress-bar-info {
  1525. background-color: #3498db;
  1526. }
  1527. .progress-striped .progress-bar-aqua,
  1528. .progress-striped .progress-bar-info {
  1529. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1530. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1531. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1532. }
  1533. .progress-bar-yellow,
  1534. .progress-bar-warning {
  1535. background-color: #f39c12;
  1536. }
  1537. .progress-striped .progress-bar-yellow,
  1538. .progress-striped .progress-bar-warning {
  1539. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1540. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1541. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1542. }
  1543. .progress-bar-red,
  1544. .progress-bar-danger {
  1545. background-color: #e74c3c;
  1546. }
  1547. .progress-striped .progress-bar-red,
  1548. .progress-striped .progress-bar-danger {
  1549. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1550. background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1551. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1552. }
  1553. /*
  1554. * Component: Small Box
  1555. * --------------------
  1556. */
  1557. .small-box {
  1558. border-radius: 2px;
  1559. position: relative;
  1560. display: block;
  1561. margin-bottom: 20px;
  1562. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  1563. }
  1564. .small-box > .inner {
  1565. padding: 10px;
  1566. }
  1567. .small-box > .small-box-footer {
  1568. position: relative;
  1569. text-align: center;
  1570. padding: 3px 0;
  1571. color: #fff;
  1572. color: rgba(255, 255, 255, 0.8);
  1573. display: block;
  1574. z-index: 10;
  1575. background: rgba(0, 0, 0, 0.1);
  1576. text-decoration: none;
  1577. }
  1578. .small-box > .small-box-footer:hover {
  1579. color: #fff;
  1580. background: rgba(0, 0, 0, 0.15);
  1581. }
  1582. .small-box h3 {
  1583. font-size: 38px;
  1584. font-weight: bold;
  1585. margin: 0 0 10px 0;
  1586. white-space: nowrap;
  1587. padding: 0;
  1588. }
  1589. .small-box p {
  1590. font-size: 15px;
  1591. }
  1592. .small-box p > small {
  1593. display: block;
  1594. color: #f9f9f9;
  1595. font-size: 13px;
  1596. margin-top: 5px;
  1597. }
  1598. .small-box h3,
  1599. .small-box p {
  1600. z-index: 5;
  1601. }
  1602. .small-box .icon {
  1603. -webkit-transition: all 0.3s linear;
  1604. -o-transition: all 0.3s linear;
  1605. transition: all 0.3s linear;
  1606. position: absolute;
  1607. top: -10px;
  1608. right: 10px;
  1609. z-index: 0;
  1610. font-size: 90px;
  1611. color: rgba(0, 0, 0, 0.15);
  1612. }
  1613. .small-box:hover {
  1614. text-decoration: none;
  1615. color: #f9f9f9;
  1616. }
  1617. .small-box:hover .icon {
  1618. font-size: 95px;
  1619. }
  1620. @media (max-width: 767px) {
  1621. .small-box {
  1622. text-align: center;
  1623. }
  1624. .small-box .icon {
  1625. display: none;
  1626. }
  1627. .small-box p {
  1628. font-size: 12px;
  1629. }
  1630. }
  1631. /*
  1632. * Component: Box
  1633. * --------------
  1634. */
  1635. .box {
  1636. position: relative;
  1637. border-radius: 3px;
  1638. background: #ffffff;
  1639. border-top: 3px solid #d2d6de;
  1640. margin-bottom: 20px;
  1641. width: 100%;
  1642. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  1643. }
  1644. .box.box-primary {
  1645. border-top-color: #3c8dbc;
  1646. }
  1647. .box.box-info {
  1648. border-top-color: #3498db;
  1649. }
  1650. .box.box-danger {
  1651. border-top-color: #e74c3c;
  1652. }
  1653. .box.box-warning {
  1654. border-top-color: #f39c12;
  1655. }
  1656. .box.box-success {
  1657. border-top-color: #18bc9c;
  1658. }
  1659. .box.box-default {
  1660. border-top-color: #d2d6de;
  1661. }
  1662. .box.collapsed-box .box-body,
  1663. .box.collapsed-box .box-footer {
  1664. display: none;
  1665. }
  1666. .box .nav-stacked > li {
  1667. border-bottom: 1px solid #f4f4f4;
  1668. margin: 0;
  1669. }
  1670. .box .nav-stacked > li:last-of-type {
  1671. border-bottom: none;
  1672. }
  1673. .box.height-control .box-body {
  1674. max-height: 300px;
  1675. overflow: auto;
  1676. }
  1677. .box .border-right {
  1678. border-right: 1px solid #f4f4f4;
  1679. }
  1680. .box .border-left {
  1681. border-left: 1px solid #f4f4f4;
  1682. }
  1683. .box.box-solid {
  1684. border-top: 0;
  1685. }
  1686. .box.box-solid > .box-header .btn.btn-default {
  1687. background: transparent;
  1688. }
  1689. .box.box-solid > .box-header .btn:hover,
  1690. .box.box-solid > .box-header a:hover {
  1691. background: rgba(0, 0, 0, 0.1);
  1692. }
  1693. .box.box-solid.box-default {
  1694. border: 1px solid #d2d6de;
  1695. }
  1696. .box.box-solid.box-default > .box-header {
  1697. color: #444;
  1698. background: #d2d6de;
  1699. background-color: #d2d6de;
  1700. }
  1701. .box.box-solid.box-default > .box-header a,
  1702. .box.box-solid.box-default > .box-header .btn {
  1703. color: #444;
  1704. }
  1705. .box.box-solid.box-primary {
  1706. border: 1px solid #3c8dbc;
  1707. }
  1708. .box.box-solid.box-primary > .box-header {
  1709. color: #fff;
  1710. background: #3c8dbc;
  1711. background-color: #3c8dbc;
  1712. }
  1713. .box.box-solid.box-primary > .box-header a,
  1714. .box.box-solid.box-primary > .box-header .btn {
  1715. color: #fff;
  1716. }
  1717. .box.box-solid.box-info {
  1718. border: 1px solid #3498db;
  1719. }
  1720. .box.box-solid.box-info > .box-header {
  1721. color: #fff;
  1722. background: #3498db;
  1723. background-color: #3498db;
  1724. }
  1725. .box.box-solid.box-info > .box-header a,
  1726. .box.box-solid.box-info > .box-header .btn {
  1727. color: #fff;
  1728. }
  1729. .box.box-solid.box-danger {
  1730. border: 1px solid #e74c3c;
  1731. }
  1732. .box.box-solid.box-danger > .box-header {
  1733. color: #fff;
  1734. background: #e74c3c;
  1735. background-color: #e74c3c;
  1736. }
  1737. .box.box-solid.box-danger > .box-header a,
  1738. .box.box-solid.box-danger > .box-header .btn {
  1739. color: #fff;
  1740. }
  1741. .box.box-solid.box-warning {
  1742. border: 1px solid #f39c12;
  1743. }
  1744. .box.box-solid.box-warning > .box-header {
  1745. color: #fff;
  1746. background: #f39c12;
  1747. background-color: #f39c12;
  1748. }
  1749. .box.box-solid.box-warning > .box-header a,
  1750. .box.box-solid.box-warning > .box-header .btn {
  1751. color: #fff;
  1752. }
  1753. .box.box-solid.box-success {
  1754. border: 1px solid #18bc9c;
  1755. }
  1756. .box.box-solid.box-success > .box-header {
  1757. color: #fff;
  1758. background: #18bc9c;
  1759. background-color: #18bc9c;
  1760. }
  1761. .box.box-solid.box-success > .box-header a,
  1762. .box.box-solid.box-success > .box-header .btn {
  1763. color: #fff;
  1764. }
  1765. .box.box-solid > .box-header > .box-tools .btn {
  1766. border: 0;
  1767. box-shadow: none;
  1768. }
  1769. .box.box-solid[class*='bg'] > .box-header {
  1770. color: #fff;
  1771. }
  1772. .box .box-group > .box {
  1773. margin-bottom: 5px;
  1774. }
  1775. .box .knob-label {
  1776. text-align: center;
  1777. color: #333;
  1778. font-weight: 100;
  1779. font-size: 12px;
  1780. margin-bottom: 0.3em;
  1781. }
  1782. .box > .overlay,
  1783. .overlay-wrapper > .overlay,
  1784. .box > .loading-img,
  1785. .overlay-wrapper > .loading-img {
  1786. position: absolute;
  1787. top: 0;
  1788. left: 0;
  1789. width: 100%;
  1790. height: 100%;
  1791. }
  1792. .box .overlay,
  1793. .overlay-wrapper .overlay {
  1794. z-index: 50;
  1795. background: rgba(255, 255, 255, 0.7);
  1796. border-radius: 3px;
  1797. }
  1798. .box .overlay > .fa,
  1799. .overlay-wrapper .overlay > .fa {
  1800. position: absolute;
  1801. top: 50%;
  1802. left: 50%;
  1803. margin-left: -15px;
  1804. margin-top: -15px;
  1805. color: #000;
  1806. font-size: 30px;
  1807. }
  1808. .box .overlay.dark,
  1809. .overlay-wrapper .overlay.dark {
  1810. background: rgba(0, 0, 0, 0.5);
  1811. }
  1812. .box-header:before,
  1813. .box-body:before,
  1814. .box-footer:before,
  1815. .box-header:after,
  1816. .box-body:after,
  1817. .box-footer:after {
  1818. content: " ";
  1819. display: table;
  1820. }
  1821. .box-header:after,
  1822. .box-body:after,
  1823. .box-footer:after {
  1824. clear: both;
  1825. }
  1826. .box-header:before,
  1827. .box-body:before,
  1828. .box-footer:before,
  1829. .box-header:after,
  1830. .box-body:after,
  1831. .box-footer:after {
  1832. content: " ";
  1833. display: table;
  1834. }
  1835. .box-header:after,
  1836. .box-body:after,
  1837. .box-footer:after {
  1838. clear: both;
  1839. }
  1840. .box-header {
  1841. color: #444;
  1842. display: block;
  1843. padding: 10px;
  1844. position: relative;
  1845. }
  1846. .box-header.with-border {
  1847. border-bottom: 1px solid #f4f4f4;
  1848. }
  1849. .collapsed-box .box-header.with-border {
  1850. border-bottom: none;
  1851. }
  1852. .box-header > .fa,
  1853. .box-header > .glyphicon,
  1854. .box-header > .ion,
  1855. .box-header .box-title {
  1856. display: inline-block;
  1857. font-size: 18px;
  1858. margin: 0;
  1859. line-height: 1;
  1860. }
  1861. .box-header > .fa,
  1862. .box-header > .glyphicon,
  1863. .box-header > .ion {
  1864. margin-right: 5px;
  1865. }
  1866. .box-header > .box-tools {
  1867. position: absolute;
  1868. right: 10px;
  1869. top: 5px;
  1870. }
  1871. .box-header > .box-tools [data-toggle="tooltip"] {
  1872. position: relative;
  1873. }
  1874. .box-header > .box-tools.pull-right .dropdown-menu {
  1875. right: 0;
  1876. left: auto;
  1877. }
  1878. .btn-box-tool {
  1879. padding: 5px;
  1880. font-size: 12px;
  1881. background: transparent;
  1882. color: #97a0b3;
  1883. }
  1884. .open .btn-box-tool,
  1885. .btn-box-tool:hover {
  1886. color: #606c84;
  1887. }
  1888. .btn-box-tool.btn:active {
  1889. box-shadow: none;
  1890. }
  1891. .box-body {
  1892. border-top-left-radius: 0;
  1893. border-top-right-radius: 0;
  1894. border-bottom-right-radius: 3px;
  1895. border-bottom-left-radius: 3px;
  1896. padding: 10px;
  1897. }
  1898. .no-header .box-body {
  1899. border-top-right-radius: 3px;
  1900. border-top-left-radius: 3px;
  1901. }
  1902. .box-body > .table {
  1903. margin-bottom: 0;
  1904. }
  1905. .box-body .fc {
  1906. margin-top: 5px;
  1907. }
  1908. .box-body .full-width-chart {
  1909. margin: -19px;
  1910. }
  1911. .box-body.no-padding .full-width-chart {
  1912. margin: -9px;
  1913. }
  1914. .box-body .box-pane {
  1915. border-top-left-radius: 0;
  1916. border-top-right-radius: 0;
  1917. border-bottom-right-radius: 0;
  1918. border-bottom-left-radius: 3px;
  1919. }
  1920. .box-body .box-pane-right {
  1921. border-top-left-radius: 0;
  1922. border-top-right-radius: 0;
  1923. border-bottom-right-radius: 3px;
  1924. border-bottom-left-radius: 0;
  1925. }
  1926. .box-footer {
  1927. border-top-left-radius: 0;
  1928. border-top-right-radius: 0;
  1929. border-bottom-right-radius: 3px;
  1930. border-bottom-left-radius: 3px;
  1931. border-top: 1px solid #f4f4f4;
  1932. padding: 10px;
  1933. background-color: #fff;
  1934. }
  1935. .chart-legend {
  1936. margin: 10px 0;
  1937. }
  1938. @media (max-width: 991px) {
  1939. .chart-legend > li {
  1940. float: left;
  1941. margin-right: 10px;
  1942. }
  1943. }
  1944. .box-comments {
  1945. background: #f7f7f7;
  1946. }
  1947. .box-comments .box-comment {
  1948. padding: 8px 0;
  1949. border-bottom: 1px solid #eee;
  1950. }
  1951. .box-comments .box-comment:before,
  1952. .box-comments .box-comment:after {
  1953. content: " ";
  1954. display: table;
  1955. }
  1956. .box-comments .box-comment:after {
  1957. clear: both;
  1958. }
  1959. .box-comments .box-comment:before,
  1960. .box-comments .box-comment:after {
  1961. content: " ";
  1962. display: table;
  1963. }
  1964. .box-comments .box-comment:after {
  1965. clear: both;
  1966. }
  1967. .box-comments .box-comment:last-of-type {
  1968. border-bottom: 0;
  1969. }
  1970. .box-comments .box-comment:first-of-type {
  1971. padding-top: 0;
  1972. }
  1973. .box-comments .box-comment img {
  1974. float: left;
  1975. }
  1976. .box-comments .comment-text {
  1977. margin-left: 40px;
  1978. color: #555;
  1979. }
  1980. .box-comments .username {
  1981. color: #444;
  1982. display: block;
  1983. font-weight: 600;
  1984. }
  1985. .box-comments .text-muted {
  1986. font-weight: 400;
  1987. font-size: 12px;
  1988. }
  1989. /* Widget: TODO LIST */
  1990. .todo-list {
  1991. margin: 0;
  1992. padding: 0;
  1993. list-style: none;
  1994. overflow: auto;
  1995. }
  1996. .todo-list > li {
  1997. border-radius: 2px;
  1998. padding: 10px;
  1999. background: #f4f4f4;
  2000. margin-bottom: 2px;
  2001. border-left: 2px solid #e6e7e8;
  2002. color: #444;
  2003. }
  2004. .todo-list > li:last-of-type {
  2005. margin-bottom: 0;
  2006. }
  2007. .todo-list > li > input[type='checkbox'] {
  2008. margin: 0 10px 0 5px;
  2009. }
  2010. .todo-list > li .text {
  2011. display: inline-block;
  2012. margin-left: 5px;
  2013. font-weight: 600;
  2014. }
  2015. .todo-list > li .label {
  2016. margin-left: 10px;
  2017. font-size: 9px;
  2018. }
  2019. .todo-list > li .tools {
  2020. display: none;
  2021. float: right;
  2022. color: #e74c3c;
  2023. }
  2024. .todo-list > li .tools > .fa,
  2025. .todo-list > li .tools > .glyphicon,
  2026. .todo-list > li .tools > .ion {
  2027. margin-right: 5px;
  2028. cursor: pointer;
  2029. }
  2030. .todo-list > li:hover .tools {
  2031. display: inline-block;
  2032. }
  2033. .todo-list > li.done {
  2034. color: #999;
  2035. }
  2036. .todo-list > li.done .text {
  2037. text-decoration: line-through;
  2038. font-weight: 500;
  2039. }
  2040. .todo-list > li.done .label {
  2041. background: #d2d6de !important;
  2042. }
  2043. .todo-list .danger {
  2044. border-left-color: #e74c3c;
  2045. }
  2046. .todo-list .warning {
  2047. border-left-color: #f39c12;
  2048. }
  2049. .todo-list .info {
  2050. border-left-color: #3498db;
  2051. }
  2052. .todo-list .success {
  2053. border-left-color: #18bc9c;
  2054. }
  2055. .todo-list .primary {
  2056. border-left-color: #3c8dbc;
  2057. }
  2058. .todo-list .handle {
  2059. display: inline-block;
  2060. cursor: move;
  2061. margin: 0 5px;
  2062. }
  2063. /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
  2064. .chat {
  2065. padding: 5px 20px 5px 10px;
  2066. }
  2067. .chat .item {
  2068. margin-bottom: 10px;
  2069. }
  2070. .chat .item:before,
  2071. .chat .item:after {
  2072. content: " ";
  2073. display: table;
  2074. }
  2075. .chat .item:after {
  2076. clear: both;
  2077. }
  2078. .chat .item:before,
  2079. .chat .item:after {
  2080. content: " ";
  2081. display: table;
  2082. }
  2083. .chat .item:after {
  2084. clear: both;
  2085. }
  2086. .chat .item > img {
  2087. width: 40px;
  2088. height: 40px;
  2089. border: 2px solid transparent;
  2090. border-radius: 50%;
  2091. }
  2092. .chat .item > .online {
  2093. border: 2px solid #18bc9c;
  2094. }
  2095. .chat .item > .offline {
  2096. border: 2px solid #e74c3c;
  2097. }
  2098. .chat .item > .message {
  2099. margin-left: 55px;
  2100. margin-top: -40px;
  2101. }
  2102. .chat .item > .message > .name {
  2103. display: block;
  2104. font-weight: 600;
  2105. }
  2106. .chat .item > .attachment {
  2107. border-radius: 3px;
  2108. background: #f4f4f4;
  2109. margin-left: 65px;
  2110. margin-right: 15px;
  2111. padding: 10px;
  2112. }
  2113. .chat .item > .attachment > h4 {
  2114. margin: 0 0 5px 0;
  2115. font-weight: 600;
  2116. font-size: 14px;
  2117. }
  2118. .chat .item > .attachment > p,
  2119. .chat .item > .attachment > .filename {
  2120. font-weight: 600;
  2121. font-size: 13px;
  2122. font-style: italic;
  2123. margin: 0;
  2124. }
  2125. .chat .item > .attachment:before,
  2126. .chat .item > .attachment:after {
  2127. content: " ";
  2128. display: table;
  2129. }
  2130. .chat .item > .attachment:after {
  2131. clear: both;
  2132. }
  2133. .chat .item > .attachment:before,
  2134. .chat .item > .attachment:after {
  2135. content: " ";
  2136. display: table;
  2137. }
  2138. .chat .item > .attachment:after {
  2139. clear: both;
  2140. }
  2141. .box-input {
  2142. max-width: 200px;
  2143. }
  2144. .modal .panel-body {
  2145. color: #444;
  2146. }
  2147. /*
  2148. * Component: Info Box
  2149. * -------------------
  2150. */
  2151. .info-box {
  2152. display: block;
  2153. min-height: 90px;
  2154. background: #fff;
  2155. width: 100%;
  2156. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2157. border-radius: 2px;
  2158. margin-bottom: 15px;
  2159. }
  2160. .info-box small {
  2161. font-size: 14px;
  2162. }
  2163. .info-box .progress {
  2164. background: rgba(0, 0, 0, 0.2);
  2165. margin: 5px -10px 5px -10px;
  2166. height: 2px;
  2167. }
  2168. .info-box .progress,
  2169. .info-box .progress .progress-bar {
  2170. border-radius: 0;
  2171. }
  2172. .info-box .progress .progress-bar {
  2173. background: #fff;
  2174. }
  2175. .info-box-icon {
  2176. border-top-left-radius: 2px;
  2177. border-top-right-radius: 0;
  2178. border-bottom-right-radius: 0;
  2179. border-bottom-left-radius: 2px;
  2180. display: block;
  2181. float: left;
  2182. height: 90px;
  2183. width: 90px;
  2184. text-align: center;
  2185. font-size: 45px;
  2186. line-height: 90px;
  2187. background: rgba(0, 0, 0, 0.2);
  2188. }
  2189. .info-box-icon > img {
  2190. max-width: 100%;
  2191. }
  2192. .info-box-content {
  2193. padding: 5px 10px;
  2194. margin-left: 90px;
  2195. }
  2196. .info-box-number {
  2197. display: block;
  2198. font-weight: bold;
  2199. font-size: 18px;
  2200. }
  2201. .progress-description,
  2202. .info-box-text {
  2203. display: block;
  2204. font-size: 14px;
  2205. white-space: nowrap;
  2206. overflow: hidden;
  2207. text-overflow: ellipsis;
  2208. }
  2209. .info-box-text {
  2210. text-transform: uppercase;
  2211. }
  2212. .info-box-more {
  2213. display: block;
  2214. }
  2215. .progress-description {
  2216. margin: 0;
  2217. }
  2218. /*
  2219. * Component: Timeline
  2220. * -------------------
  2221. */
  2222. .timeline {
  2223. position: relative;
  2224. margin: 0 0 30px 0;
  2225. padding: 0;
  2226. list-style: none;
  2227. }
  2228. .timeline:before {
  2229. content: '';
  2230. position: absolute;
  2231. top: 0;
  2232. bottom: 0;
  2233. width: 4px;
  2234. background: #ddd;
  2235. left: 31px;
  2236. margin: 0;
  2237. border-radius: 2px;
  2238. }
  2239. .timeline > li {
  2240. position: relative;
  2241. margin-right: 10px;
  2242. margin-bottom: 15px;
  2243. }
  2244. .timeline > li:before,
  2245. .timeline > li:after {
  2246. content: " ";
  2247. display: table;
  2248. }
  2249. .timeline > li:after {
  2250. clear: both;
  2251. }
  2252. .timeline > li:before,
  2253. .timeline > li:after {
  2254. content: " ";
  2255. display: table;
  2256. }
  2257. .timeline > li:after {
  2258. clear: both;
  2259. }
  2260. .timeline > li > .timeline-item {
  2261. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2262. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2263. border-radius: 3px;
  2264. margin-top: 0;
  2265. background: #fff;
  2266. color: #444;
  2267. margin-left: 60px;
  2268. margin-right: 15px;
  2269. padding: 0;
  2270. position: relative;
  2271. }
  2272. .timeline > li > .timeline-item > .time {
  2273. color: #999;
  2274. float: right;
  2275. padding: 10px;
  2276. font-size: 12px;
  2277. }
  2278. .timeline > li > .timeline-item > .timeline-header {
  2279. margin: 0;
  2280. color: #555;
  2281. border-bottom: 1px solid #f4f4f4;
  2282. padding: 10px;
  2283. font-size: 16px;
  2284. line-height: 1.1;
  2285. }
  2286. .timeline > li > .timeline-item > .timeline-header > a {
  2287. font-weight: 600;
  2288. }
  2289. .timeline > li > .timeline-item > .timeline-body,
  2290. .timeline > li > .timeline-item > .timeline-footer {
  2291. padding: 10px;
  2292. }
  2293. .timeline > li > .fa,
  2294. .timeline > li > .glyphicon,
  2295. .timeline > li > .ion {
  2296. width: 30px;
  2297. height: 30px;
  2298. font-size: 15px;
  2299. line-height: 30px;
  2300. position: absolute;
  2301. color: #666;
  2302. background: #d2d6de;
  2303. border-radius: 50%;
  2304. text-align: center;
  2305. left: 18px;
  2306. top: 0;
  2307. }
  2308. .timeline > .time-label > span {
  2309. font-weight: 600;
  2310. padding: 5px;
  2311. display: inline-block;
  2312. background-color: #fff;
  2313. border-radius: 4px;
  2314. }
  2315. .timeline-inverse > li > .timeline-item {
  2316. background: #f0f0f0;
  2317. border: 1px solid #ddd;
  2318. -webkit-box-shadow: none;
  2319. box-shadow: none;
  2320. }
  2321. .timeline-inverse > li > .timeline-item > .timeline-header {
  2322. border-bottom-color: #ddd;
  2323. }
  2324. /*
  2325. * Component: Button
  2326. * -----------------
  2327. */
  2328. .btn {
  2329. /*.border-radius(@btn-border-radius);*/
  2330. -webkit-box-shadow: none;
  2331. box-shadow: none;
  2332. border: 1px solid transparent;
  2333. }
  2334. .btn.uppercase {
  2335. text-transform: uppercase;
  2336. }
  2337. .btn.btn-flat {
  2338. border-radius: 0;
  2339. -webkit-box-shadow: none;
  2340. -moz-box-shadow: none;
  2341. box-shadow: none;
  2342. border-width: 1px;
  2343. }
  2344. .btn:active {
  2345. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2346. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2347. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2348. }
  2349. .btn:focus {
  2350. outline: none;
  2351. }
  2352. .btn.btn-file {
  2353. position: relative;
  2354. overflow: hidden;
  2355. }
  2356. .btn.btn-file > input[type='file'] {
  2357. position: absolute;
  2358. top: 0;
  2359. right: 0;
  2360. min-width: 100%;
  2361. min-height: 100%;
  2362. font-size: 100px;
  2363. text-align: right;
  2364. opacity: 0;
  2365. filter: alpha(opacity=0);
  2366. outline: none;
  2367. background: white;
  2368. cursor: inherit;
  2369. display: block;
  2370. }
  2371. .btn-default {
  2372. background-color: #f4f4f4;
  2373. color: #444;
  2374. border-color: #ddd;
  2375. }
  2376. .btn-default:hover,
  2377. .btn-default:active,
  2378. .btn-default.hover {
  2379. background-color: #e7e7e7;
  2380. }
  2381. .btn-outline {
  2382. border: 1px solid #fff;
  2383. background: transparent;
  2384. color: #fff;
  2385. }
  2386. .btn-outline:hover,
  2387. .btn-outline:focus,
  2388. .btn-outline:active {
  2389. color: rgba(255, 255, 255, 0.7);
  2390. border-color: rgba(255, 255, 255, 0.7);
  2391. }
  2392. .btn-link {
  2393. -webkit-box-shadow: none;
  2394. box-shadow: none;
  2395. }
  2396. .btn[class*='bg-']:hover {
  2397. -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  2398. box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  2399. }
  2400. .btn-app {
  2401. border-radius: 3px;
  2402. position: relative;
  2403. padding: 15px 5px;
  2404. margin: 0 0 10px 10px;
  2405. min-width: 80px;
  2406. height: 60px;
  2407. text-align: center;
  2408. color: #666;
  2409. border: 1px solid #ddd;
  2410. background-color: #f4f4f4;
  2411. font-size: 12px;
  2412. }
  2413. .btn-app > .fa,
  2414. .btn-app > .glyphicon,
  2415. .btn-app > .ion {
  2416. font-size: 20px;
  2417. display: block;
  2418. }
  2419. .btn-app:hover {
  2420. background: #f4f4f4;
  2421. color: #444;
  2422. border-color: #aaa;
  2423. }
  2424. .btn-app:active,
  2425. .btn-app:focus {
  2426. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2427. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2428. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2429. }
  2430. .btn-app > .badge {
  2431. position: absolute;
  2432. top: -3px;
  2433. right: -10px;
  2434. font-size: 10px;
  2435. font-weight: 400;
  2436. }
  2437. /*
  2438. * Component: Callout
  2439. * ------------------
  2440. */
  2441. .callout {
  2442. border-radius: 3px;
  2443. margin: 0 0 20px 0;
  2444. padding: 15px 30px 15px 15px;
  2445. border-left: 5px solid #eee;
  2446. }
  2447. .callout a {
  2448. color: #fff;
  2449. text-decoration: underline;
  2450. }
  2451. .callout a:hover {
  2452. color: #eee;
  2453. }
  2454. .callout h4 {
  2455. margin-top: 0;
  2456. font-weight: 600;
  2457. }
  2458. .callout p:last-child {
  2459. margin-bottom: 0;
  2460. }
  2461. .callout code,
  2462. .callout .highlight {
  2463. background-color: #fff;
  2464. }
  2465. .callout.callout-danger {
  2466. border-color: #d62c1a;
  2467. }
  2468. .callout.callout-warning {
  2469. border-color: #c87f0a;
  2470. }
  2471. .callout.callout-info {
  2472. border-color: #217dbb;
  2473. }
  2474. .callout.callout-success {
  2475. border-color: #128f76;
  2476. }
  2477. /*
  2478. * Component: alert
  2479. * ----------------
  2480. */
  2481. .alert {
  2482. border-radius: 3px;
  2483. }
  2484. .alert h4 {
  2485. font-weight: 600;
  2486. }
  2487. .alert .icon {
  2488. margin-right: 10px;
  2489. }
  2490. .alert .close {
  2491. color: #000;
  2492. opacity: 0.2;
  2493. filter: alpha(opacity=20);
  2494. }
  2495. .alert .close:hover {
  2496. opacity: 0.5;
  2497. filter: alpha(opacity=50);
  2498. }
  2499. .alert a {
  2500. color: #fff;
  2501. text-decoration: underline;
  2502. }
  2503. .alert-success {
  2504. border-color: #15a589;
  2505. }
  2506. .alert-danger,
  2507. .alert-error {
  2508. border-color: #e43725;
  2509. }
  2510. .alert-warning {
  2511. border-color: #e08e0b;
  2512. }
  2513. .alert-info {
  2514. border-color: #258cd1;
  2515. }
  2516. .alert-primary-light {
  2517. background-color: #E2E5E8;
  2518. border-color: #D0D4D8;
  2519. color: #85878A;
  2520. }
  2521. .alert-primary-light a {
  2522. color: #787a7d;
  2523. }
  2524. .alert-success-light {
  2525. background-color: #dff0d8;
  2526. border-color: #d1eac8;
  2527. color: #468847;
  2528. }
  2529. .alert-success-light a {
  2530. color: #3d773e;
  2531. }
  2532. .alert-danger-light,
  2533. .alert-error-light {
  2534. background-color: #f2dede;
  2535. border-color: #ebcdcd;
  2536. color: #b94a48;
  2537. }
  2538. .alert-danger-light a,
  2539. .alert-error-light a {
  2540. color: #a74240;
  2541. }
  2542. .alert-warning-light {
  2543. background-color: #fcf8e3;
  2544. border-color: #faf3cd;
  2545. color: #c09853;
  2546. }
  2547. .alert-warning-light a {
  2548. color: #b78c43;
  2549. }
  2550. .alert-info-light {
  2551. background-color: #d9edf7;
  2552. border-color: #c6e4f3;
  2553. color: #3a87ad;
  2554. }
  2555. .alert-info-light a {
  2556. color: #34789a;
  2557. }
  2558. /*
  2559. * Component: Nav
  2560. * --------------
  2561. */
  2562. .nav > li > a:hover,
  2563. .nav > li > a:active,
  2564. .nav > li > a:focus {
  2565. color: #444;
  2566. background: #f7f7f7;
  2567. }
  2568. /* NAV PILLS */
  2569. .nav-pills > li > a {
  2570. border-radius: 0;
  2571. border-top: 3px solid transparent;
  2572. color: #444;
  2573. }
  2574. .nav-pills > li > a > .fa,
  2575. .nav-pills > li > a > .glyphicon,
  2576. .nav-pills > li > a > .ion {
  2577. margin-right: 5px;
  2578. }
  2579. .nav-pills > li.active > a,
  2580. .nav-pills > li.active > a:hover,
  2581. .nav-pills > li.active > a:focus {
  2582. border-top-color: #3c8dbc;
  2583. }
  2584. .nav-pills > li.active > a {
  2585. font-weight: 600;
  2586. }
  2587. /* NAV STACKED */
  2588. .nav-stacked > li > a {
  2589. border-radius: 0;
  2590. border-top: 0;
  2591. border-left: 3px solid transparent;
  2592. color: #444;
  2593. }
  2594. .nav-stacked > li.active > a,
  2595. .nav-stacked > li.active > a:hover {
  2596. background: transparent;
  2597. color: #444;
  2598. border-top: 0;
  2599. border-left-color: #3c8dbc;
  2600. }
  2601. .nav-stacked > li.header {
  2602. border-bottom: 1px solid #ddd;
  2603. color: #777;
  2604. margin-bottom: 10px;
  2605. padding: 5px 10px;
  2606. text-transform: uppercase;
  2607. }
  2608. /* NAV TABS */
  2609. .nav-tabs-custom {
  2610. margin-bottom: 20px;
  2611. background: #fff;
  2612. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2613. border-radius: 3px;
  2614. }
  2615. .nav-tabs-custom > .nav-tabs {
  2616. margin: 0;
  2617. border-bottom-color: #f4f4f4;
  2618. border-top-right-radius: 3px;
  2619. border-top-left-radius: 3px;
  2620. }
  2621. .nav-tabs-custom > .nav-tabs > li {
  2622. border-top: 3px solid transparent;
  2623. margin-bottom: -2px;
  2624. margin-right: 5px;
  2625. }
  2626. .nav-tabs-custom > .nav-tabs > li > a {
  2627. color: #444;
  2628. border-radius: 0;
  2629. }
  2630. .nav-tabs-custom > .nav-tabs > li > a.text-muted {
  2631. color: #999;
  2632. }
  2633. .nav-tabs-custom > .nav-tabs > li > a,
  2634. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2635. background: transparent;
  2636. margin: 0;
  2637. }
  2638. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2639. color: #999;
  2640. }
  2641. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
  2642. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
  2643. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  2644. border-color: transparent;
  2645. }
  2646. .nav-tabs-custom > .nav-tabs > li.active {
  2647. border-top-color: #3c8dbc;
  2648. }
  2649. .nav-tabs-custom > .nav-tabs > li.active > a,
  2650. .nav-tabs-custom > .nav-tabs > li.active:hover > a {
  2651. background-color: #fff;
  2652. color: #444;
  2653. }
  2654. .nav-tabs-custom > .nav-tabs > li.active > a {
  2655. border-top-color: transparent;
  2656. border-left-color: #f4f4f4;
  2657. border-right-color: #f4f4f4;
  2658. }
  2659. .nav-tabs-custom > .nav-tabs > li:first-of-type {
  2660. margin-left: 0;
  2661. }
  2662. .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  2663. border-left-color: transparent;
  2664. }
  2665. .nav-tabs-custom > .nav-tabs.pull-right {
  2666. float: none !important;
  2667. }
  2668. .nav-tabs-custom > .nav-tabs.pull-right > li {
  2669. float: right;
  2670. }
  2671. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  2672. margin-right: 0;
  2673. }
  2674. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  2675. border-left-width: 1px;
  2676. }
  2677. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  2678. border-left-color: #f4f4f4;
  2679. border-right-color: transparent;
  2680. }
  2681. .nav-tabs-custom > .nav-tabs > li.header {
  2682. line-height: 35px;
  2683. padding: 0 10px;
  2684. font-size: 20px;
  2685. color: #444;
  2686. }
  2687. .nav-tabs-custom > .nav-tabs > li.header > .fa,
  2688. .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
  2689. .nav-tabs-custom > .nav-tabs > li.header > .ion {
  2690. margin-right: 5px;
  2691. }
  2692. .nav-tabs-custom > .tab-content {
  2693. background: #fff;
  2694. padding: 10px;
  2695. border-bottom-right-radius: 3px;
  2696. border-bottom-left-radius: 3px;
  2697. }
  2698. .nav-tabs-custom .dropdown.open > a:active,
  2699. .nav-tabs-custom .dropdown.open > a:focus {
  2700. background: transparent;
  2701. color: #999;
  2702. }
  2703. .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  2704. border-top-color: #3c8dbc;
  2705. }
  2706. .nav-tabs-custom.tab-info > .nav-tabs > li.active {
  2707. border-top-color: #3498db;
  2708. }
  2709. .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  2710. border-top-color: #e74c3c;
  2711. }
  2712. .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  2713. border-top-color: #f39c12;
  2714. }
  2715. .nav-tabs-custom.tab-success > .nav-tabs > li.active {
  2716. border-top-color: #18bc9c;
  2717. }
  2718. .nav-tabs-custom.tab-default > .nav-tabs > li.active {
  2719. border-top-color: #d2d6de;
  2720. }
  2721. /* PAGINATION */
  2722. .pagination > li > a {
  2723. background: #fafafa;
  2724. color: #666;
  2725. }
  2726. .pagination.pagination-flat > li > a {
  2727. border-radius: 0 !important;
  2728. }
  2729. /*
  2730. * Component: Products List
  2731. * ------------------------
  2732. */
  2733. .products-list {
  2734. list-style: none;
  2735. margin: 0;
  2736. padding: 0;
  2737. }
  2738. .products-list > .item {
  2739. border-radius: 3px;
  2740. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2741. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  2742. padding: 10px 0;
  2743. background: #fff;
  2744. }
  2745. .products-list > .item:before,
  2746. .products-list > .item:after {
  2747. content: " ";
  2748. display: table;
  2749. }
  2750. .products-list > .item:after {
  2751. clear: both;
  2752. }
  2753. .products-list > .item:before,
  2754. .products-list > .item:after {
  2755. content: " ";
  2756. display: table;
  2757. }
  2758. .products-list > .item:after {
  2759. clear: both;
  2760. }
  2761. .products-list .product-img {
  2762. float: left;
  2763. }
  2764. .products-list .product-img img {
  2765. width: 50px;
  2766. height: 50px;
  2767. }
  2768. .products-list .product-info {
  2769. margin-left: 60px;
  2770. }
  2771. .products-list .product-title {
  2772. font-weight: 600;
  2773. }
  2774. .products-list .product-description {
  2775. display: block;
  2776. color: #999;
  2777. overflow: hidden;
  2778. white-space: nowrap;
  2779. text-overflow: ellipsis;
  2780. }
  2781. .product-list-in-box > .item {
  2782. -webkit-box-shadow: none;
  2783. box-shadow: none;
  2784. border-radius: 0;
  2785. border-bottom: 1px solid #f4f4f4;
  2786. }
  2787. .product-list-in-box > .item:last-of-type {
  2788. border-bottom-width: 0;
  2789. }
  2790. /*
  2791. * Component: Table
  2792. * ----------------
  2793. */
  2794. .table > thead > tr > th,
  2795. .table > tbody > tr > th,
  2796. .table > tfoot > tr > th,
  2797. .table > thead > tr > td,
  2798. .table > tbody > tr > td,
  2799. .table > tfoot > tr > td {
  2800. border-top: 1px solid #f4f4f4;
  2801. }
  2802. .table > thead > tr > th {
  2803. border-bottom: 2px solid #f4f4f4;
  2804. }
  2805. .table tr td .progress {
  2806. margin-top: 5px;
  2807. }
  2808. .table-bordered {
  2809. border: 1px solid #f4f4f4;
  2810. }
  2811. .table-bordered > thead > tr > th,
  2812. .table-bordered > tbody > tr > th,
  2813. .table-bordered > tfoot > tr > th,
  2814. .table-bordered > thead > tr > td,
  2815. .table-bordered > tbody > tr > td,
  2816. .table-bordered > tfoot > tr > td {
  2817. border: 1px solid #f4f4f4;
  2818. }
  2819. .table-bordered > thead > tr > th,
  2820. .table-bordered > thead > tr > td {
  2821. border-bottom-width: 2px;
  2822. }
  2823. .table.no-border,
  2824. .table.no-border td,
  2825. .table.no-border th {
  2826. border: 0;
  2827. }
  2828. /* .text-center in tables */
  2829. table.text-center,
  2830. table.text-center td,
  2831. table.text-center th {
  2832. text-align: center;
  2833. }
  2834. .table.align th {
  2835. text-align: left;
  2836. }
  2837. .table.align td {
  2838. text-align: right;
  2839. }
  2840. /*
  2841. * Component: Direct Chat
  2842. * ----------------------
  2843. */
  2844. .direct-chat .box-body {
  2845. border-bottom-right-radius: 0;
  2846. border-bottom-left-radius: 0;
  2847. position: relative;
  2848. overflow-x: hidden;
  2849. padding: 0;
  2850. }
  2851. .direct-chat.chat-pane-open .direct-chat-contacts {
  2852. -webkit-transform: translate(0, 0);
  2853. -ms-transform: translate(0, 0);
  2854. -o-transform: translate(0, 0);
  2855. transform: translate(0, 0);
  2856. }
  2857. .direct-chat-messages {
  2858. -webkit-transform: translate(0, 0);
  2859. -ms-transform: translate(0, 0);
  2860. -o-transform: translate(0, 0);
  2861. transform: translate(0, 0);
  2862. padding: 10px;
  2863. height: 250px;
  2864. overflow: auto;
  2865. }
  2866. .direct-chat-msg,
  2867. .direct-chat-text {
  2868. display: block;
  2869. }
  2870. .direct-chat-msg {
  2871. margin-bottom: 10px;
  2872. }
  2873. .direct-chat-msg:before,
  2874. .direct-chat-msg:after {
  2875. content: " ";
  2876. display: table;
  2877. }
  2878. .direct-chat-msg:after {
  2879. clear: both;
  2880. }
  2881. .direct-chat-msg:before,
  2882. .direct-chat-msg:after {
  2883. content: " ";
  2884. display: table;
  2885. }
  2886. .direct-chat-msg:after {
  2887. clear: both;
  2888. }
  2889. .direct-chat-messages,
  2890. .direct-chat-contacts {
  2891. -webkit-transition: -webkit-transform 0.5s ease-in-out;
  2892. -moz-transition: -moz-transform 0.5s ease-in-out;
  2893. -o-transition: -o-transform 0.5s ease-in-out;
  2894. transition: transform 0.5s ease-in-out;
  2895. }
  2896. .direct-chat-text {
  2897. border-radius: 5px;
  2898. position: relative;
  2899. padding: 5px 10px;
  2900. background: #d2d6de;
  2901. border: 1px solid #d2d6de;
  2902. margin: 5px 0 0 50px;
  2903. color: #444;
  2904. }
  2905. .direct-chat-text:after,
  2906. .direct-chat-text:before {
  2907. position: absolute;
  2908. right: 100%;
  2909. top: 15px;
  2910. border: solid transparent;
  2911. border-right-color: #d2d6de;
  2912. content: ' ';
  2913. height: 0;
  2914. width: 0;
  2915. pointer-events: none;
  2916. }
  2917. .direct-chat-text:after {
  2918. border-width: 5px;
  2919. margin-top: -5px;
  2920. }
  2921. .direct-chat-text:before {
  2922. border-width: 6px;
  2923. margin-top: -6px;
  2924. }
  2925. .right .direct-chat-text {
  2926. margin-right: 50px;
  2927. margin-left: 0;
  2928. }
  2929. .right .direct-chat-text:after,
  2930. .right .direct-chat-text:before {
  2931. right: auto;
  2932. left: 100%;
  2933. border-right-color: transparent;
  2934. border-left-color: #d2d6de;
  2935. }
  2936. .direct-chat-img {
  2937. border-radius: 50%;
  2938. float: left;
  2939. width: 40px;
  2940. height: 40px;
  2941. }
  2942. .right .direct-chat-img {
  2943. float: right;
  2944. }
  2945. .direct-chat-info {
  2946. display: block;
  2947. margin-bottom: 2px;
  2948. font-size: 12px;
  2949. }
  2950. .direct-chat-name {
  2951. font-weight: 600;
  2952. }
  2953. .direct-chat-timestamp {
  2954. color: #999;
  2955. }
  2956. .direct-chat-contacts-open .direct-chat-contacts {
  2957. -webkit-transform: translate(0, 0);
  2958. -ms-transform: translate(0, 0);
  2959. -o-transform: translate(0, 0);
  2960. transform: translate(0, 0);
  2961. }
  2962. .direct-chat-contacts {
  2963. -webkit-transform: translate(101%, 0);
  2964. -ms-transform: translate(101%, 0);
  2965. -o-transform: translate(101%, 0);
  2966. transform: translate(101%, 0);
  2967. position: absolute;
  2968. top: 0;
  2969. bottom: 0;
  2970. height: 250px;
  2971. width: 100%;
  2972. background: #222d32;
  2973. color: #fff;
  2974. overflow: auto;
  2975. }
  2976. .contacts-list > li {
  2977. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  2978. padding: 10px;
  2979. margin: 0;
  2980. }
  2981. .contacts-list > li:before,
  2982. .contacts-list > li:after {
  2983. content: " ";
  2984. display: table;
  2985. }
  2986. .contacts-list > li:after {
  2987. clear: both;
  2988. }
  2989. .contacts-list > li:before,
  2990. .contacts-list > li:after {
  2991. content: " ";
  2992. display: table;
  2993. }
  2994. .contacts-list > li:after {
  2995. clear: both;
  2996. }
  2997. .contacts-list > li:last-of-type {
  2998. border-bottom: none;
  2999. }
  3000. .contacts-list-img {
  3001. border-radius: 50%;
  3002. width: 40px;
  3003. float: left;
  3004. }
  3005. .contacts-list-info {
  3006. margin-left: 45px;
  3007. color: #fff;
  3008. }
  3009. .contacts-list-name,
  3010. .contacts-list-status {
  3011. display: block;
  3012. }
  3013. .contacts-list-name {
  3014. font-weight: 600;
  3015. }
  3016. .contacts-list-status {
  3017. font-size: 12px;
  3018. }
  3019. .contacts-list-date {
  3020. color: #aaa;
  3021. font-weight: normal;
  3022. }
  3023. .contacts-list-msg {
  3024. color: #999;
  3025. }
  3026. .direct-chat-danger .right > .direct-chat-text {
  3027. background: #e74c3c;
  3028. border-color: #e74c3c;
  3029. color: #fff;
  3030. }
  3031. .direct-chat-danger .right > .direct-chat-text:after,
  3032. .direct-chat-danger .right > .direct-chat-text:before {
  3033. border-left-color: #e74c3c;
  3034. }
  3035. .direct-chat-primary .right > .direct-chat-text {
  3036. background: #3c8dbc;
  3037. border-color: #3c8dbc;
  3038. color: #fff;
  3039. }
  3040. .direct-chat-primary .right > .direct-chat-text:after,
  3041. .direct-chat-primary .right > .direct-chat-text:before {
  3042. border-left-color: #3c8dbc;
  3043. }
  3044. .direct-chat-warning .right > .direct-chat-text {
  3045. background: #f39c12;
  3046. border-color: #f39c12;
  3047. color: #fff;
  3048. }
  3049. .direct-chat-warning .right > .direct-chat-text:after,
  3050. .direct-chat-warning .right > .direct-chat-text:before {
  3051. border-left-color: #f39c12;
  3052. }
  3053. .direct-chat-info .right > .direct-chat-text {
  3054. background: #3498db;
  3055. border-color: #3498db;
  3056. color: #fff;
  3057. }
  3058. .direct-chat-info .right > .direct-chat-text:after,
  3059. .direct-chat-info .right > .direct-chat-text:before {
  3060. border-left-color: #3498db;
  3061. }
  3062. .direct-chat-success .right > .direct-chat-text {
  3063. background: #18bc9c;
  3064. border-color: #18bc9c;
  3065. color: #fff;
  3066. }
  3067. .direct-chat-success .right > .direct-chat-text:after,
  3068. .direct-chat-success .right > .direct-chat-text:before {
  3069. border-left-color: #18bc9c;
  3070. }
  3071. /*
  3072. * Component: Users List
  3073. * ---------------------
  3074. */
  3075. .users-list > li {
  3076. width: 25%;
  3077. float: left;
  3078. padding: 10px;
  3079. text-align: center;
  3080. }
  3081. .users-list > li img {
  3082. border-radius: 50%;
  3083. max-width: 100%;
  3084. height: auto;
  3085. }
  3086. .users-list > li > a:hover,
  3087. .users-list > li > a:hover .users-list-name {
  3088. color: #999;
  3089. }
  3090. .users-list-name,
  3091. .users-list-date {
  3092. display: block;
  3093. }
  3094. .users-list-name {
  3095. font-weight: 600;
  3096. color: #444;
  3097. overflow: hidden;
  3098. white-space: nowrap;
  3099. text-overflow: ellipsis;
  3100. }
  3101. .users-list-date {
  3102. color: #999;
  3103. font-size: 12px;
  3104. }
  3105. /*
  3106. * Component: Carousel
  3107. * -------------------
  3108. */
  3109. .carousel-control.left,
  3110. .carousel-control.right {
  3111. background-image: none;
  3112. }
  3113. .carousel-control > .fa {
  3114. font-size: 40px;
  3115. position: absolute;
  3116. top: 50%;
  3117. z-index: 5;
  3118. display: inline-block;
  3119. margin-top: -20px;
  3120. }
  3121. /*
  3122. * Component: modal
  3123. * ----------------
  3124. */
  3125. .modal {
  3126. background: rgba(0, 0, 0, 0.3);
  3127. }
  3128. .modal-content {
  3129. border-radius: 0;
  3130. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  3131. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  3132. border: 0;
  3133. }
  3134. @media (min-width: 768px) {
  3135. .modal-content {
  3136. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  3137. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125);
  3138. }
  3139. }
  3140. .modal-header {
  3141. border-bottom-color: #f4f4f4;
  3142. }
  3143. .modal-footer {
  3144. border-top-color: #f4f4f4;
  3145. }
  3146. .modal-primary .modal-header,
  3147. .modal-primary .modal-footer {
  3148. border-color: #307095;
  3149. }
  3150. .modal-warning .modal-header,
  3151. .modal-warning .modal-footer {
  3152. border-color: #c87f0a;
  3153. }
  3154. .modal-info .modal-header,
  3155. .modal-info .modal-footer {
  3156. border-color: #217dbb;
  3157. }
  3158. .modal-success .modal-header,
  3159. .modal-success .modal-footer {
  3160. border-color: #128f76;
  3161. }
  3162. .modal-danger .modal-header,
  3163. .modal-danger .modal-footer {
  3164. border-color: #d62c1a;
  3165. }
  3166. /*
  3167. * Component: Social Widgets
  3168. * -------------------------
  3169. */
  3170. .box-widget {
  3171. border: none;
  3172. position: relative;
  3173. }
  3174. .widget-user .widget-user-header {
  3175. padding: 20px;
  3176. height: 120px;
  3177. border-top-right-radius: 3px;
  3178. border-top-left-radius: 3px;
  3179. }
  3180. .widget-user .widget-user-username {
  3181. margin-top: 0;
  3182. margin-bottom: 5px;
  3183. font-size: 25px;
  3184. font-weight: 300;
  3185. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  3186. }
  3187. .widget-user .widget-user-desc {
  3188. margin-top: 0;
  3189. }
  3190. .widget-user .widget-user-image {
  3191. position: absolute;
  3192. top: 65px;
  3193. left: 50%;
  3194. margin-left: -45px;
  3195. }
  3196. .widget-user .widget-user-image > img {
  3197. width: 90px;
  3198. height: auto;
  3199. border: 3px solid #fff;
  3200. }
  3201. .widget-user .box-footer {
  3202. padding-top: 30px;
  3203. }
  3204. .widget-user-2 .widget-user-header {
  3205. padding: 20px;
  3206. border-top-right-radius: 3px;
  3207. border-top-left-radius: 3px;
  3208. }
  3209. .widget-user-2 .widget-user-username {
  3210. margin-top: 5px;
  3211. margin-bottom: 5px;
  3212. font-size: 25px;
  3213. font-weight: 300;
  3214. }
  3215. .widget-user-2 .widget-user-desc {
  3216. margin-top: 0;
  3217. }
  3218. .widget-user-2 .widget-user-username,
  3219. .widget-user-2 .widget-user-desc {
  3220. margin-left: 75px;
  3221. }
  3222. .widget-user-2 .widget-user-image > img {
  3223. width: 65px;
  3224. height: auto;
  3225. float: left;
  3226. }
  3227. .close,
  3228. .mailbox-attachment-close {
  3229. float: right;
  3230. font-size: 18px;
  3231. font-weight: bold;
  3232. line-height: 1;
  3233. color: #000;
  3234. text-shadow: 0 1px 0 #fff;
  3235. opacity: 0.2;
  3236. filter: alpha(opacity=20);
  3237. }
  3238. .close:hover,
  3239. .close:focus {
  3240. color: #000;
  3241. text-decoration: none;
  3242. cursor: pointer;
  3243. opacity: 0.5;
  3244. filter: alpha(opacity=50);
  3245. }
  3246. button.close {
  3247. padding: 0;
  3248. cursor: pointer;
  3249. background: transparent;
  3250. border: 0;
  3251. -webkit-appearance: none;
  3252. }
  3253. .clearfix:before,
  3254. .clearfix:after,
  3255. .content:before,
  3256. .content:after {
  3257. content: " ";
  3258. display: table;
  3259. }
  3260. .clearfix:after,
  3261. .content:after {
  3262. clear: both;
  3263. }
  3264. .center-block {
  3265. display: block;
  3266. margin-left: auto;
  3267. margin-right: auto;
  3268. }
  3269. .pull-right {
  3270. float: right !important;
  3271. }
  3272. .pull-left {
  3273. float: left !important;
  3274. }
  3275. .hide {
  3276. display: none !important;
  3277. }
  3278. .show {
  3279. display: block !important;
  3280. }
  3281. .invisible {
  3282. visibility: hidden;
  3283. }
  3284. .text-hide {
  3285. font: 0/0 a;
  3286. color: transparent;
  3287. text-shadow: none;
  3288. background-color: transparent;
  3289. border: 0;
  3290. }
  3291. .hidden {
  3292. display: none !important;
  3293. }
  3294. .affix {
  3295. position: fixed;
  3296. }
  3297. /*
  3298. * Page: Mailbox
  3299. * -------------
  3300. */
  3301. .mailbox-messages > .table {
  3302. margin: 0;
  3303. }
  3304. .mailbox-controls {
  3305. padding: 5px;
  3306. }
  3307. .mailbox-controls.with-border {
  3308. border-bottom: 1px solid #f4f4f4;
  3309. }
  3310. .mailbox-read-info {
  3311. border-bottom: 1px solid #f4f4f4;
  3312. padding: 10px;
  3313. }
  3314. .mailbox-read-info h3 {
  3315. font-size: 20px;
  3316. margin: 0;
  3317. }
  3318. .mailbox-read-info h5 {
  3319. margin: 0;
  3320. padding: 5px 0 0 0;
  3321. }
  3322. .mailbox-read-time {
  3323. color: #999;
  3324. font-size: 13px;
  3325. }
  3326. .mailbox-read-message {
  3327. padding: 10px;
  3328. }
  3329. .mailbox-attachments li {
  3330. float: left;
  3331. width: 200px;
  3332. border: 1px solid #eee;
  3333. margin-bottom: 10px;
  3334. margin-right: 10px;
  3335. }
  3336. .mailbox-attachment-name {
  3337. font-weight: bold;
  3338. color: #666;
  3339. }
  3340. .mailbox-attachment-icon,
  3341. .mailbox-attachment-info,
  3342. .mailbox-attachment-size {
  3343. display: block;
  3344. }
  3345. .mailbox-attachment-info {
  3346. padding: 10px;
  3347. background: #f4f4f4;
  3348. }
  3349. .mailbox-attachment-size {
  3350. color: #999;
  3351. font-size: 12px;
  3352. }
  3353. .mailbox-attachment-icon {
  3354. text-align: center;
  3355. font-size: 65px;
  3356. color: #666;
  3357. padding: 20px 10px;
  3358. }
  3359. .mailbox-attachment-icon.has-img {
  3360. padding: 0;
  3361. }
  3362. .mailbox-attachment-icon.has-img > img {
  3363. max-width: 100%;
  3364. height: auto;
  3365. }
  3366. /*
  3367. * Page: Lock Screen
  3368. * -----------------
  3369. */
  3370. /* ADD THIS CLASS TO THE <BODY> TAG */
  3371. .lockscreen {
  3372. background: #d2d6de;
  3373. }
  3374. .lockscreen-logo {
  3375. font-size: 35px;
  3376. text-align: center;
  3377. margin-bottom: 25px;
  3378. font-weight: 300;
  3379. }
  3380. .lockscreen-logo a {
  3381. color: #444;
  3382. }
  3383. .lockscreen-wrapper {
  3384. max-width: 400px;
  3385. margin: 0 auto;
  3386. margin-top: 10%;
  3387. }
  3388. /* User name [optional] */
  3389. .lockscreen .lockscreen-name {
  3390. text-align: center;
  3391. font-weight: 600;
  3392. }
  3393. /* Will contain the image and the sign in form */
  3394. .lockscreen-item {
  3395. border-radius: 4px;
  3396. padding: 0;
  3397. background: #fff;
  3398. position: relative;
  3399. margin: 10px auto 30px auto;
  3400. width: 290px;
  3401. }
  3402. /* User image */
  3403. .lockscreen-image {
  3404. border-radius: 50%;
  3405. position: absolute;
  3406. left: -10px;
  3407. top: -25px;
  3408. background: #fff;
  3409. padding: 5px;
  3410. z-index: 10;
  3411. }
  3412. .lockscreen-image > img {
  3413. border-radius: 50%;
  3414. width: 70px;
  3415. height: 70px;
  3416. }
  3417. /* Contains the password input and the login button */
  3418. .lockscreen-credentials {
  3419. margin-left: 70px;
  3420. }
  3421. .lockscreen-credentials .form-control {
  3422. border: 0;
  3423. }
  3424. .lockscreen-credentials .btn {
  3425. background-color: #fff;
  3426. border: 0;
  3427. padding: 0 10px;
  3428. }
  3429. .lockscreen-footer {
  3430. margin-top: 10px;
  3431. }
  3432. /*
  3433. * Page: Login & Register
  3434. * ----------------------
  3435. */
  3436. .login-logo,
  3437. .register-logo {
  3438. font-size: 35px;
  3439. text-align: center;
  3440. margin-bottom: 25px;
  3441. font-weight: 300;
  3442. }
  3443. .login-logo a,
  3444. .register-logo a {
  3445. color: #444;
  3446. }
  3447. .login-page,
  3448. .register-page {
  3449. background: #d2d6de;
  3450. }
  3451. .login-box,
  3452. .register-box {
  3453. width: 360px;
  3454. margin: 7% auto;
  3455. }
  3456. @media (max-width: 768px) {
  3457. .login-box,
  3458. .register-box {
  3459. width: 90%;
  3460. margin-top: 20px;
  3461. }
  3462. }
  3463. .login-box-body,
  3464. .register-box-body {
  3465. background: #fff;
  3466. padding: 20px;
  3467. border-top: 0;
  3468. color: #666;
  3469. }
  3470. .login-box-body .form-control-feedback,
  3471. .register-box-body .form-control-feedback {
  3472. color: #777;
  3473. }
  3474. .login-box-msg,
  3475. .register-box-msg {
  3476. margin: 0;
  3477. text-align: center;
  3478. padding: 0 20px 20px 20px;
  3479. }
  3480. .social-auth-links {
  3481. margin: 10px 0;
  3482. }
  3483. /*
  3484. * Page: 400 and 500 error pages
  3485. * ------------------------------
  3486. */
  3487. .error-page {
  3488. width: 600px;
  3489. margin: 20px auto 0 auto;
  3490. }
  3491. @media (max-width: 991px) {
  3492. .error-page {
  3493. width: 100%;
  3494. }
  3495. }
  3496. .error-page > .headline {
  3497. float: left;
  3498. font-size: 100px;
  3499. font-weight: 300;
  3500. }
  3501. @media (max-width: 991px) {
  3502. .error-page > .headline {
  3503. float: none;
  3504. text-align: center;
  3505. }
  3506. }
  3507. .error-page > .error-content {
  3508. margin-left: 190px;
  3509. display: block;
  3510. }
  3511. @media (max-width: 991px) {
  3512. .error-page > .error-content {
  3513. margin-left: 0;
  3514. }
  3515. }
  3516. .error-page > .error-content > h3 {
  3517. font-weight: 300;
  3518. font-size: 25px;
  3519. }
  3520. @media (max-width: 991px) {
  3521. .error-page > .error-content > h3 {
  3522. text-align: center;
  3523. }
  3524. }
  3525. /*
  3526. * Page: Invoice
  3527. * -------------
  3528. */
  3529. .invoice {
  3530. position: relative;
  3531. background: #fff;
  3532. border: 1px solid #f4f4f4;
  3533. padding: 20px;
  3534. margin: 10px 25px;
  3535. }
  3536. .invoice-title {
  3537. margin-top: 0;
  3538. }
  3539. /*
  3540. * Page: Profile
  3541. * -------------
  3542. */
  3543. .profile-user-img {
  3544. margin: 0 auto;
  3545. width: 100px;
  3546. padding: 3px;
  3547. border: 3px solid #d2d6de;
  3548. }
  3549. .profile-username {
  3550. font-size: 21px;
  3551. margin-top: 5px;
  3552. }
  3553. .post {
  3554. border-bottom: 1px solid #d2d6de;
  3555. margin-bottom: 15px;
  3556. padding-bottom: 15px;
  3557. color: #666;
  3558. }
  3559. .post:last-of-type {
  3560. border-bottom: 0;
  3561. margin-bottom: 0;
  3562. padding-bottom: 0;
  3563. }
  3564. .post .user-block {
  3565. margin-bottom: 15px;
  3566. }
  3567. /*
  3568. * Social Buttons for Bootstrap
  3569. *
  3570. * Copyright 2013-2015 Panayiotis Lipiridis
  3571. * Licensed under the MIT License
  3572. *
  3573. * https://github.com/lipis/bootstrap-social
  3574. */
  3575. .btn-social {
  3576. position: relative;
  3577. padding-left: 41px;
  3578. text-align: left;
  3579. white-space: nowrap;
  3580. overflow: hidden;
  3581. text-overflow: ellipsis;
  3582. }
  3583. .btn-social > :first-child {
  3584. position: absolute;
  3585. left: 0;
  3586. top: 0;
  3587. bottom: 0;
  3588. width: 29px;
  3589. line-height: 31px;
  3590. font-size: 1.6em;
  3591. text-align: center;
  3592. border-right: 1px solid rgba(0, 0, 0, 0.2);
  3593. }
  3594. .btn-social.btn-lg {
  3595. padding-left: 57px;
  3596. }
  3597. .btn-social.btn-lg > :first-child {
  3598. line-height: 41px;
  3599. width: 41px;
  3600. font-size: 1.8em;
  3601. }
  3602. .btn-social.btn-sm {
  3603. padding-left: 36px;
  3604. }
  3605. .btn-social.btn-sm > :first-child {
  3606. line-height: 26px;
  3607. width: 26px;
  3608. font-size: 1.4em;
  3609. }
  3610. .btn-social.btn-xs {
  3611. padding-left: 29px;
  3612. }
  3613. .btn-social.btn-xs > :first-child {
  3614. line-height: 19px;
  3615. width: 19px;
  3616. font-size: 1.2em;
  3617. }
  3618. .btn-social-icon {
  3619. position: relative;
  3620. padding-left: 41px;
  3621. text-align: left;
  3622. white-space: nowrap;
  3623. overflow: hidden;
  3624. text-overflow: ellipsis;
  3625. height: 31px;
  3626. width: 31px;
  3627. padding: 0;
  3628. }
  3629. .btn-social-icon > :first-child {
  3630. position: absolute;
  3631. left: 0;
  3632. top: 0;
  3633. bottom: 0;
  3634. width: 29px;
  3635. line-height: 31px;
  3636. font-size: 1.6em;
  3637. text-align: center;
  3638. border-right: 1px solid rgba(0, 0, 0, 0.2);
  3639. }
  3640. .btn-social-icon.btn-lg {
  3641. padding-left: 57px;
  3642. }
  3643. .btn-social-icon.btn-lg > :first-child {
  3644. line-height: 41px;
  3645. width: 41px;
  3646. font-size: 1.8em;
  3647. }
  3648. .btn-social-icon.btn-sm {
  3649. padding-left: 36px;
  3650. }
  3651. .btn-social-icon.btn-sm > :first-child {
  3652. line-height: 26px;
  3653. width: 26px;
  3654. font-size: 1.4em;
  3655. }
  3656. .btn-social-icon.btn-xs {
  3657. padding-left: 29px;
  3658. }
  3659. .btn-social-icon.btn-xs > :first-child {
  3660. line-height: 19px;
  3661. width: 19px;
  3662. font-size: 1.2em;
  3663. }
  3664. .btn-social-icon > :first-child {
  3665. border: none;
  3666. text-align: center;
  3667. width: 100%;
  3668. }
  3669. .btn-social-icon.btn-lg {
  3670. height: 41px;
  3671. width: 41px;
  3672. padding-left: 0;
  3673. padding-right: 0;
  3674. }
  3675. .btn-social-icon.btn-sm {
  3676. height: 28px;
  3677. width: 28px;
  3678. padding-left: 0;
  3679. padding-right: 0;
  3680. }
  3681. .btn-social-icon.btn-xs {
  3682. height: 21px;
  3683. width: 21px;
  3684. padding-left: 0;
  3685. padding-right: 0;
  3686. }
  3687. .btn-adn {
  3688. color: #fff;
  3689. background-color: #d87a68;
  3690. border-color: rgba(0, 0, 0, 0.2);
  3691. }
  3692. .btn-adn:focus,
  3693. .btn-adn.focus {
  3694. color: #fff;
  3695. background-color: #ce563f;
  3696. border-color: rgba(0, 0, 0, 0.2);
  3697. }
  3698. .btn-adn:hover {
  3699. color: #fff;
  3700. background-color: #ce563f;
  3701. border-color: rgba(0, 0, 0, 0.2);
  3702. }
  3703. .btn-adn:active,
  3704. .btn-adn.active,
  3705. .open > .dropdown-toggle.btn-adn {
  3706. color: #fff;
  3707. background-color: #ce563f;
  3708. border-color: rgba(0, 0, 0, 0.2);
  3709. }
  3710. .btn-adn:active:hover,
  3711. .btn-adn.active:hover,
  3712. .open > .dropdown-toggle.btn-adn:hover,
  3713. .btn-adn:active:focus,
  3714. .btn-adn.active:focus,
  3715. .open > .dropdown-toggle.btn-adn:focus,
  3716. .btn-adn:active.focus,
  3717. .btn-adn.active.focus,
  3718. .open > .dropdown-toggle.btn-adn.focus {
  3719. color: #fff;
  3720. background-color: #b94630;
  3721. border-color: rgba(0, 0, 0, 0.2);
  3722. }
  3723. .btn-adn:active,
  3724. .btn-adn.active,
  3725. .open > .dropdown-toggle.btn-adn {
  3726. background-image: none;
  3727. }
  3728. .btn-adn.disabled,
  3729. .btn-adn[disabled],
  3730. fieldset[disabled] .btn-adn,
  3731. .btn-adn.disabled:hover,
  3732. .btn-adn[disabled]:hover,
  3733. fieldset[disabled] .btn-adn:hover,
  3734. .btn-adn.disabled:focus,
  3735. .btn-adn[disabled]:focus,
  3736. fieldset[disabled] .btn-adn:focus,
  3737. .btn-adn.disabled.focus,
  3738. .btn-adn[disabled].focus,
  3739. fieldset[disabled] .btn-adn.focus,
  3740. .btn-adn.disabled:active,
  3741. .btn-adn[disabled]:active,
  3742. fieldset[disabled] .btn-adn:active,
  3743. .btn-adn.disabled.active,
  3744. .btn-adn[disabled].active,
  3745. fieldset[disabled] .btn-adn.active {
  3746. background-color: #d87a68;
  3747. border-color: rgba(0, 0, 0, 0.2);
  3748. }
  3749. .btn-adn .badge {
  3750. color: #d87a68;
  3751. background-color: #fff;
  3752. }
  3753. .btn-bitbucket {
  3754. color: #fff;
  3755. background-color: #205081;
  3756. border-color: rgba(0, 0, 0, 0.2);
  3757. }
  3758. .btn-bitbucket:focus,
  3759. .btn-bitbucket.focus {
  3760. color: #fff;
  3761. background-color: #163758;
  3762. border-color: rgba(0, 0, 0, 0.2);
  3763. }
  3764. .btn-bitbucket:hover {
  3765. color: #fff;
  3766. background-color: #163758;
  3767. border-color: rgba(0, 0, 0, 0.2);
  3768. }
  3769. .btn-bitbucket:active,
  3770. .btn-bitbucket.active,
  3771. .open > .dropdown-toggle.btn-bitbucket {
  3772. color: #fff;
  3773. background-color: #163758;
  3774. border-color: rgba(0, 0, 0, 0.2);
  3775. }
  3776. .btn-bitbucket:active:hover,
  3777. .btn-bitbucket.active:hover,
  3778. .open > .dropdown-toggle.btn-bitbucket:hover,
  3779. .btn-bitbucket:active:focus,
  3780. .btn-bitbucket.active:focus,
  3781. .open > .dropdown-toggle.btn-bitbucket:focus,
  3782. .btn-bitbucket:active.focus,
  3783. .btn-bitbucket.active.focus,
  3784. .open > .dropdown-toggle.btn-bitbucket.focus {
  3785. color: #fff;
  3786. background-color: #0f253c;
  3787. border-color: rgba(0, 0, 0, 0.2);
  3788. }
  3789. .btn-bitbucket:active,
  3790. .btn-bitbucket.active,
  3791. .open > .dropdown-toggle.btn-bitbucket {
  3792. background-image: none;
  3793. }
  3794. .btn-bitbucket.disabled,
  3795. .btn-bitbucket[disabled],
  3796. fieldset[disabled] .btn-bitbucket,
  3797. .btn-bitbucket.disabled:hover,
  3798. .btn-bitbucket[disabled]:hover,
  3799. fieldset[disabled] .btn-bitbucket:hover,
  3800. .btn-bitbucket.disabled:focus,
  3801. .btn-bitbucket[disabled]:focus,
  3802. fieldset[disabled] .btn-bitbucket:focus,
  3803. .btn-bitbucket.disabled.focus,
  3804. .btn-bitbucket[disabled].focus,
  3805. fieldset[disabled] .btn-bitbucket.focus,
  3806. .btn-bitbucket.disabled:active,
  3807. .btn-bitbucket[disabled]:active,
  3808. fieldset[disabled] .btn-bitbucket:active,
  3809. .btn-bitbucket.disabled.active,
  3810. .btn-bitbucket[disabled].active,
  3811. fieldset[disabled] .btn-bitbucket.active {
  3812. background-color: #205081;
  3813. border-color: rgba(0, 0, 0, 0.2);
  3814. }
  3815. .btn-bitbucket .badge {
  3816. color: #205081;
  3817. background-color: #fff;
  3818. }
  3819. .btn-dropbox {
  3820. color: #fff;
  3821. background-color: #1087dd;
  3822. border-color: rgba(0, 0, 0, 0.2);
  3823. }
  3824. .btn-dropbox:focus,
  3825. .btn-dropbox.focus {
  3826. color: #fff;
  3827. background-color: #0d6aad;
  3828. border-color: rgba(0, 0, 0, 0.2);
  3829. }
  3830. .btn-dropbox:hover {
  3831. color: #fff;
  3832. background-color: #0d6aad;
  3833. border-color: rgba(0, 0, 0, 0.2);
  3834. }
  3835. .btn-dropbox:active,
  3836. .btn-dropbox.active,
  3837. .open > .dropdown-toggle.btn-dropbox {
  3838. color: #fff;
  3839. background-color: #0d6aad;
  3840. border-color: rgba(0, 0, 0, 0.2);
  3841. }
  3842. .btn-dropbox:active:hover,
  3843. .btn-dropbox.active:hover,
  3844. .open > .dropdown-toggle.btn-dropbox:hover,
  3845. .btn-dropbox:active:focus,
  3846. .btn-dropbox.active:focus,
  3847. .open > .dropdown-toggle.btn-dropbox:focus,
  3848. .btn-dropbox:active.focus,
  3849. .btn-dropbox.active.focus,
  3850. .open > .dropdown-toggle.btn-dropbox.focus {
  3851. color: #fff;
  3852. background-color: #0a568c;
  3853. border-color: rgba(0, 0, 0, 0.2);
  3854. }
  3855. .btn-dropbox:active,
  3856. .btn-dropbox.active,
  3857. .open > .dropdown-toggle.btn-dropbox {
  3858. background-image: none;
  3859. }
  3860. .btn-dropbox.disabled,
  3861. .btn-dropbox[disabled],
  3862. fieldset[disabled] .btn-dropbox,
  3863. .btn-dropbox.disabled:hover,
  3864. .btn-dropbox[disabled]:hover,
  3865. fieldset[disabled] .btn-dropbox:hover,
  3866. .btn-dropbox.disabled:focus,
  3867. .btn-dropbox[disabled]:focus,
  3868. fieldset[disabled] .btn-dropbox:focus,
  3869. .btn-dropbox.disabled.focus,
  3870. .btn-dropbox[disabled].focus,
  3871. fieldset[disabled] .btn-dropbox.focus,
  3872. .btn-dropbox.disabled:active,
  3873. .btn-dropbox[disabled]:active,
  3874. fieldset[disabled] .btn-dropbox:active,
  3875. .btn-dropbox.disabled.active,
  3876. .btn-dropbox[disabled].active,
  3877. fieldset[disabled] .btn-dropbox.active {
  3878. background-color: #1087dd;
  3879. border-color: rgba(0, 0, 0, 0.2);
  3880. }
  3881. .btn-dropbox .badge {
  3882. color: #1087dd;
  3883. background-color: #fff;
  3884. }
  3885. .btn-facebook {
  3886. color: #fff;
  3887. background-color: #3b5998;
  3888. border-color: rgba(0, 0, 0, 0.2);
  3889. }
  3890. .btn-facebook:focus,
  3891. .btn-facebook.focus {
  3892. color: #fff;
  3893. background-color: #2d4373;
  3894. border-color: rgba(0, 0, 0, 0.2);
  3895. }
  3896. .btn-facebook:hover {
  3897. color: #fff;
  3898. background-color: #2d4373;
  3899. border-color: rgba(0, 0, 0, 0.2);
  3900. }
  3901. .btn-facebook:active,
  3902. .btn-facebook.active,
  3903. .open > .dropdown-toggle.btn-facebook {
  3904. color: #fff;
  3905. background-color: #2d4373;
  3906. border-color: rgba(0, 0, 0, 0.2);
  3907. }
  3908. .btn-facebook:active:hover,
  3909. .btn-facebook.active:hover,
  3910. .open > .dropdown-toggle.btn-facebook:hover,
  3911. .btn-facebook:active:focus,
  3912. .btn-facebook.active:focus,
  3913. .open > .dropdown-toggle.btn-facebook:focus,
  3914. .btn-facebook:active.focus,
  3915. .btn-facebook.active.focus,
  3916. .open > .dropdown-toggle.btn-facebook.focus {
  3917. color: #fff;
  3918. background-color: #23345a;
  3919. border-color: rgba(0, 0, 0, 0.2);
  3920. }
  3921. .btn-facebook:active,
  3922. .btn-facebook.active,
  3923. .open > .dropdown-toggle.btn-facebook {
  3924. background-image: none;
  3925. }
  3926. .btn-facebook.disabled,
  3927. .btn-facebook[disabled],
  3928. fieldset[disabled] .btn-facebook,
  3929. .btn-facebook.disabled:hover,
  3930. .btn-facebook[disabled]:hover,
  3931. fieldset[disabled] .btn-facebook:hover,
  3932. .btn-facebook.disabled:focus,
  3933. .btn-facebook[disabled]:focus,
  3934. fieldset[disabled] .btn-facebook:focus,
  3935. .btn-facebook.disabled.focus,
  3936. .btn-facebook[disabled].focus,
  3937. fieldset[disabled] .btn-facebook.focus,
  3938. .btn-facebook.disabled:active,
  3939. .btn-facebook[disabled]:active,
  3940. fieldset[disabled] .btn-facebook:active,
  3941. .btn-facebook.disabled.active,
  3942. .btn-facebook[disabled].active,
  3943. fieldset[disabled] .btn-facebook.active {
  3944. background-color: #3b5998;
  3945. border-color: rgba(0, 0, 0, 0.2);
  3946. }
  3947. .btn-facebook .badge {
  3948. color: #3b5998;
  3949. background-color: #fff;
  3950. }
  3951. .btn-flickr {
  3952. color: #fff;
  3953. background-color: #ff0084;
  3954. border-color: rgba(0, 0, 0, 0.2);
  3955. }
  3956. .btn-flickr:focus,
  3957. .btn-flickr.focus {
  3958. color: #fff;
  3959. background-color: #cc006a;
  3960. border-color: rgba(0, 0, 0, 0.2);
  3961. }
  3962. .btn-flickr:hover {
  3963. color: #fff;
  3964. background-color: #cc006a;
  3965. border-color: rgba(0, 0, 0, 0.2);
  3966. }
  3967. .btn-flickr:active,
  3968. .btn-flickr.active,
  3969. .open > .dropdown-toggle.btn-flickr {
  3970. color: #fff;
  3971. background-color: #cc006a;
  3972. border-color: rgba(0, 0, 0, 0.2);
  3973. }
  3974. .btn-flickr:active:hover,
  3975. .btn-flickr.active:hover,
  3976. .open > .dropdown-toggle.btn-flickr:hover,
  3977. .btn-flickr:active:focus,
  3978. .btn-flickr.active:focus,
  3979. .open > .dropdown-toggle.btn-flickr:focus,
  3980. .btn-flickr:active.focus,
  3981. .btn-flickr.active.focus,
  3982. .open > .dropdown-toggle.btn-flickr.focus {
  3983. color: #fff;
  3984. background-color: #a80057;
  3985. border-color: rgba(0, 0, 0, 0.2);
  3986. }
  3987. .btn-flickr:active,
  3988. .btn-flickr.active,
  3989. .open > .dropdown-toggle.btn-flickr {
  3990. background-image: none;
  3991. }
  3992. .btn-flickr.disabled,
  3993. .btn-flickr[disabled],
  3994. fieldset[disabled] .btn-flickr,
  3995. .btn-flickr.disabled:hover,
  3996. .btn-flickr[disabled]:hover,
  3997. fieldset[disabled] .btn-flickr:hover,
  3998. .btn-flickr.disabled:focus,
  3999. .btn-flickr[disabled]:focus,
  4000. fieldset[disabled] .btn-flickr:focus,
  4001. .btn-flickr.disabled.focus,
  4002. .btn-flickr[disabled].focus,
  4003. fieldset[disabled] .btn-flickr.focus,
  4004. .btn-flickr.disabled:active,
  4005. .btn-flickr[disabled]:active,
  4006. fieldset[disabled] .btn-flickr:active,
  4007. .btn-flickr.disabled.active,
  4008. .btn-flickr[disabled].active,
  4009. fieldset[disabled] .btn-flickr.active {
  4010. background-color: #ff0084;
  4011. border-color: rgba(0, 0, 0, 0.2);
  4012. }
  4013. .btn-flickr .badge {
  4014. color: #ff0084;
  4015. background-color: #fff;
  4016. }
  4017. .btn-foursquare {
  4018. color: #fff;
  4019. background-color: #f94877;
  4020. border-color: rgba(0, 0, 0, 0.2);
  4021. }
  4022. .btn-foursquare:focus,
  4023. .btn-foursquare.focus {
  4024. color: #fff;
  4025. background-color: #f71752;
  4026. border-color: rgba(0, 0, 0, 0.2);
  4027. }
  4028. .btn-foursquare:hover {
  4029. color: #fff;
  4030. background-color: #f71752;
  4031. border-color: rgba(0, 0, 0, 0.2);
  4032. }
  4033. .btn-foursquare:active,
  4034. .btn-foursquare.active,
  4035. .open > .dropdown-toggle.btn-foursquare {
  4036. color: #fff;
  4037. background-color: #f71752;
  4038. border-color: rgba(0, 0, 0, 0.2);
  4039. }
  4040. .btn-foursquare:active:hover,
  4041. .btn-foursquare.active:hover,
  4042. .open > .dropdown-toggle.btn-foursquare:hover,
  4043. .btn-foursquare:active:focus,
  4044. .btn-foursquare.active:focus,
  4045. .open > .dropdown-toggle.btn-foursquare:focus,
  4046. .btn-foursquare:active.focus,
  4047. .btn-foursquare.active.focus,
  4048. .open > .dropdown-toggle.btn-foursquare.focus {
  4049. color: #fff;
  4050. background-color: #e30742;
  4051. border-color: rgba(0, 0, 0, 0.2);
  4052. }
  4053. .btn-foursquare:active,
  4054. .btn-foursquare.active,
  4055. .open > .dropdown-toggle.btn-foursquare {
  4056. background-image: none;
  4057. }
  4058. .btn-foursquare.disabled,
  4059. .btn-foursquare[disabled],
  4060. fieldset[disabled] .btn-foursquare,
  4061. .btn-foursquare.disabled:hover,
  4062. .btn-foursquare[disabled]:hover,
  4063. fieldset[disabled] .btn-foursquare:hover,
  4064. .btn-foursquare.disabled:focus,
  4065. .btn-foursquare[disabled]:focus,
  4066. fieldset[disabled] .btn-foursquare:focus,
  4067. .btn-foursquare.disabled.focus,
  4068. .btn-foursquare[disabled].focus,
  4069. fieldset[disabled] .btn-foursquare.focus,
  4070. .btn-foursquare.disabled:active,
  4071. .btn-foursquare[disabled]:active,
  4072. fieldset[disabled] .btn-foursquare:active,
  4073. .btn-foursquare.disabled.active,
  4074. .btn-foursquare[disabled].active,
  4075. fieldset[disabled] .btn-foursquare.active {
  4076. background-color: #f94877;
  4077. border-color: rgba(0, 0, 0, 0.2);
  4078. }
  4079. .btn-foursquare .badge {
  4080. color: #f94877;
  4081. background-color: #fff;
  4082. }
  4083. .btn-github {
  4084. color: #fff;
  4085. background-color: #444444;
  4086. border-color: rgba(0, 0, 0, 0.2);
  4087. }
  4088. .btn-github:focus,
  4089. .btn-github.focus {
  4090. color: #fff;
  4091. background-color: #2b2b2b;
  4092. border-color: rgba(0, 0, 0, 0.2);
  4093. }
  4094. .btn-github:hover {
  4095. color: #fff;
  4096. background-color: #2b2b2b;
  4097. border-color: rgba(0, 0, 0, 0.2);
  4098. }
  4099. .btn-github:active,
  4100. .btn-github.active,
  4101. .open > .dropdown-toggle.btn-github {
  4102. color: #fff;
  4103. background-color: #2b2b2b;
  4104. border-color: rgba(0, 0, 0, 0.2);
  4105. }
  4106. .btn-github:active:hover,
  4107. .btn-github.active:hover,
  4108. .open > .dropdown-toggle.btn-github:hover,
  4109. .btn-github:active:focus,
  4110. .btn-github.active:focus,
  4111. .open > .dropdown-toggle.btn-github:focus,
  4112. .btn-github:active.focus,
  4113. .btn-github.active.focus,
  4114. .open > .dropdown-toggle.btn-github.focus {
  4115. color: #fff;
  4116. background-color: #191919;
  4117. border-color: rgba(0, 0, 0, 0.2);
  4118. }
  4119. .btn-github:active,
  4120. .btn-github.active,
  4121. .open > .dropdown-toggle.btn-github {
  4122. background-image: none;
  4123. }
  4124. .btn-github.disabled,
  4125. .btn-github[disabled],
  4126. fieldset[disabled] .btn-github,
  4127. .btn-github.disabled:hover,
  4128. .btn-github[disabled]:hover,
  4129. fieldset[disabled] .btn-github:hover,
  4130. .btn-github.disabled:focus,
  4131. .btn-github[disabled]:focus,
  4132. fieldset[disabled] .btn-github:focus,
  4133. .btn-github.disabled.focus,
  4134. .btn-github[disabled].focus,
  4135. fieldset[disabled] .btn-github.focus,
  4136. .btn-github.disabled:active,
  4137. .btn-github[disabled]:active,
  4138. fieldset[disabled] .btn-github:active,
  4139. .btn-github.disabled.active,
  4140. .btn-github[disabled].active,
  4141. fieldset[disabled] .btn-github.active {
  4142. background-color: #444444;
  4143. border-color: rgba(0, 0, 0, 0.2);
  4144. }
  4145. .btn-github .badge {
  4146. color: #444444;
  4147. background-color: #fff;
  4148. }
  4149. .btn-google {
  4150. color: #fff;
  4151. background-color: #dd4b39;
  4152. border-color: rgba(0, 0, 0, 0.2);
  4153. }
  4154. .btn-google:focus,
  4155. .btn-google.focus {
  4156. color: #fff;
  4157. background-color: #c23321;
  4158. border-color: rgba(0, 0, 0, 0.2);
  4159. }
  4160. .btn-google:hover {
  4161. color: #fff;
  4162. background-color: #c23321;
  4163. border-color: rgba(0, 0, 0, 0.2);
  4164. }
  4165. .btn-google:active,
  4166. .btn-google.active,
  4167. .open > .dropdown-toggle.btn-google {
  4168. color: #fff;
  4169. background-color: #c23321;
  4170. border-color: rgba(0, 0, 0, 0.2);
  4171. }
  4172. .btn-google:active:hover,
  4173. .btn-google.active:hover,
  4174. .open > .dropdown-toggle.btn-google:hover,
  4175. .btn-google:active:focus,
  4176. .btn-google.active:focus,
  4177. .open > .dropdown-toggle.btn-google:focus,
  4178. .btn-google:active.focus,
  4179. .btn-google.active.focus,
  4180. .open > .dropdown-toggle.btn-google.focus {
  4181. color: #fff;
  4182. background-color: #a32b1c;
  4183. border-color: rgba(0, 0, 0, 0.2);
  4184. }
  4185. .btn-google:active,
  4186. .btn-google.active,
  4187. .open > .dropdown-toggle.btn-google {
  4188. background-image: none;
  4189. }
  4190. .btn-google.disabled,
  4191. .btn-google[disabled],
  4192. fieldset[disabled] .btn-google,
  4193. .btn-google.disabled:hover,
  4194. .btn-google[disabled]:hover,
  4195. fieldset[disabled] .btn-google:hover,
  4196. .btn-google.disabled:focus,
  4197. .btn-google[disabled]:focus,
  4198. fieldset[disabled] .btn-google:focus,
  4199. .btn-google.disabled.focus,
  4200. .btn-google[disabled].focus,
  4201. fieldset[disabled] .btn-google.focus,
  4202. .btn-google.disabled:active,
  4203. .btn-google[disabled]:active,
  4204. fieldset[disabled] .btn-google:active,
  4205. .btn-google.disabled.active,
  4206. .btn-google[disabled].active,
  4207. fieldset[disabled] .btn-google.active {
  4208. background-color: #dd4b39;
  4209. border-color: rgba(0, 0, 0, 0.2);
  4210. }
  4211. .btn-google .badge {
  4212. color: #dd4b39;
  4213. background-color: #fff;
  4214. }
  4215. .btn-instagram {
  4216. color: #fff;
  4217. background-color: #3f729b;
  4218. border-color: rgba(0, 0, 0, 0.2);
  4219. }
  4220. .btn-instagram:focus,
  4221. .btn-instagram.focus {
  4222. color: #fff;
  4223. background-color: #305777;
  4224. border-color: rgba(0, 0, 0, 0.2);
  4225. }
  4226. .btn-instagram:hover {
  4227. color: #fff;
  4228. background-color: #305777;
  4229. border-color: rgba(0, 0, 0, 0.2);
  4230. }
  4231. .btn-instagram:active,
  4232. .btn-instagram.active,
  4233. .open > .dropdown-toggle.btn-instagram {
  4234. color: #fff;
  4235. background-color: #305777;
  4236. border-color: rgba(0, 0, 0, 0.2);
  4237. }
  4238. .btn-instagram:active:hover,
  4239. .btn-instagram.active:hover,
  4240. .open > .dropdown-toggle.btn-instagram:hover,
  4241. .btn-instagram:active:focus,
  4242. .btn-instagram.active:focus,
  4243. .open > .dropdown-toggle.btn-instagram:focus,
  4244. .btn-instagram:active.focus,
  4245. .btn-instagram.active.focus,
  4246. .open > .dropdown-toggle.btn-instagram.focus {
  4247. color: #fff;
  4248. background-color: #26455d;
  4249. border-color: rgba(0, 0, 0, 0.2);
  4250. }
  4251. .btn-instagram:active,
  4252. .btn-instagram.active,
  4253. .open > .dropdown-toggle.btn-instagram {
  4254. background-image: none;
  4255. }
  4256. .btn-instagram.disabled,
  4257. .btn-instagram[disabled],
  4258. fieldset[disabled] .btn-instagram,
  4259. .btn-instagram.disabled:hover,
  4260. .btn-instagram[disabled]:hover,
  4261. fieldset[disabled] .btn-instagram:hover,
  4262. .btn-instagram.disabled:focus,
  4263. .btn-instagram[disabled]:focus,
  4264. fieldset[disabled] .btn-instagram:focus,
  4265. .btn-instagram.disabled.focus,
  4266. .btn-instagram[disabled].focus,
  4267. fieldset[disabled] .btn-instagram.focus,
  4268. .btn-instagram.disabled:active,
  4269. .btn-instagram[disabled]:active,
  4270. fieldset[disabled] .btn-instagram:active,
  4271. .btn-instagram.disabled.active,
  4272. .btn-instagram[disabled].active,
  4273. fieldset[disabled] .btn-instagram.active {
  4274. background-color: #3f729b;
  4275. border-color: rgba(0, 0, 0, 0.2);
  4276. }
  4277. .btn-instagram .badge {
  4278. color: #3f729b;
  4279. background-color: #fff;
  4280. }
  4281. .btn-linkedin {
  4282. color: #fff;
  4283. background-color: #007bb6;
  4284. border-color: rgba(0, 0, 0, 0.2);
  4285. }
  4286. .btn-linkedin:focus,
  4287. .btn-linkedin.focus {
  4288. color: #fff;
  4289. background-color: #005983;
  4290. border-color: rgba(0, 0, 0, 0.2);
  4291. }
  4292. .btn-linkedin:hover {
  4293. color: #fff;
  4294. background-color: #005983;
  4295. border-color: rgba(0, 0, 0, 0.2);
  4296. }
  4297. .btn-linkedin:active,
  4298. .btn-linkedin.active,
  4299. .open > .dropdown-toggle.btn-linkedin {
  4300. color: #fff;
  4301. background-color: #005983;
  4302. border-color: rgba(0, 0, 0, 0.2);
  4303. }
  4304. .btn-linkedin:active:hover,
  4305. .btn-linkedin.active:hover,
  4306. .open > .dropdown-toggle.btn-linkedin:hover,
  4307. .btn-linkedin:active:focus,
  4308. .btn-linkedin.active:focus,
  4309. .open > .dropdown-toggle.btn-linkedin:focus,
  4310. .btn-linkedin:active.focus,
  4311. .btn-linkedin.active.focus,
  4312. .open > .dropdown-toggle.btn-linkedin.focus {
  4313. color: #fff;
  4314. background-color: #00405f;
  4315. border-color: rgba(0, 0, 0, 0.2);
  4316. }
  4317. .btn-linkedin:active,
  4318. .btn-linkedin.active,
  4319. .open > .dropdown-toggle.btn-linkedin {
  4320. background-image: none;
  4321. }
  4322. .btn-linkedin.disabled,
  4323. .btn-linkedin[disabled],
  4324. fieldset[disabled] .btn-linkedin,
  4325. .btn-linkedin.disabled:hover,
  4326. .btn-linkedin[disabled]:hover,
  4327. fieldset[disabled] .btn-linkedin:hover,
  4328. .btn-linkedin.disabled:focus,
  4329. .btn-linkedin[disabled]:focus,
  4330. fieldset[disabled] .btn-linkedin:focus,
  4331. .btn-linkedin.disabled.focus,
  4332. .btn-linkedin[disabled].focus,
  4333. fieldset[disabled] .btn-linkedin.focus,
  4334. .btn-linkedin.disabled:active,
  4335. .btn-linkedin[disabled]:active,
  4336. fieldset[disabled] .btn-linkedin:active,
  4337. .btn-linkedin.disabled.active,
  4338. .btn-linkedin[disabled].active,
  4339. fieldset[disabled] .btn-linkedin.active {
  4340. background-color: #007bb6;
  4341. border-color: rgba(0, 0, 0, 0.2);
  4342. }
  4343. .btn-linkedin .badge {
  4344. color: #007bb6;
  4345. background-color: #fff;
  4346. }
  4347. .btn-microsoft {
  4348. color: #fff;
  4349. background-color: #2672ec;
  4350. border-color: rgba(0, 0, 0, 0.2);
  4351. }
  4352. .btn-microsoft:focus,
  4353. .btn-microsoft.focus {
  4354. color: #fff;
  4355. background-color: #125acd;
  4356. border-color: rgba(0, 0, 0, 0.2);
  4357. }
  4358. .btn-microsoft:hover {
  4359. color: #fff;
  4360. background-color: #125acd;
  4361. border-color: rgba(0, 0, 0, 0.2);
  4362. }
  4363. .btn-microsoft:active,
  4364. .btn-microsoft.active,
  4365. .open > .dropdown-toggle.btn-microsoft {
  4366. color: #fff;
  4367. background-color: #125acd;
  4368. border-color: rgba(0, 0, 0, 0.2);
  4369. }
  4370. .btn-microsoft:active:hover,
  4371. .btn-microsoft.active:hover,
  4372. .open > .dropdown-toggle.btn-microsoft:hover,
  4373. .btn-microsoft:active:focus,
  4374. .btn-microsoft.active:focus,
  4375. .open > .dropdown-toggle.btn-microsoft:focus,
  4376. .btn-microsoft:active.focus,
  4377. .btn-microsoft.active.focus,
  4378. .open > .dropdown-toggle.btn-microsoft.focus {
  4379. color: #fff;
  4380. background-color: #0f4bac;
  4381. border-color: rgba(0, 0, 0, 0.2);
  4382. }
  4383. .btn-microsoft:active,
  4384. .btn-microsoft.active,
  4385. .open > .dropdown-toggle.btn-microsoft {
  4386. background-image: none;
  4387. }
  4388. .btn-microsoft.disabled,
  4389. .btn-microsoft[disabled],
  4390. fieldset[disabled] .btn-microsoft,
  4391. .btn-microsoft.disabled:hover,
  4392. .btn-microsoft[disabled]:hover,
  4393. fieldset[disabled] .btn-microsoft:hover,
  4394. .btn-microsoft.disabled:focus,
  4395. .btn-microsoft[disabled]:focus,
  4396. fieldset[disabled] .btn-microsoft:focus,
  4397. .btn-microsoft.disabled.focus,
  4398. .btn-microsoft[disabled].focus,
  4399. fieldset[disabled] .btn-microsoft.focus,
  4400. .btn-microsoft.disabled:active,
  4401. .btn-microsoft[disabled]:active,
  4402. fieldset[disabled] .btn-microsoft:active,
  4403. .btn-microsoft.disabled.active,
  4404. .btn-microsoft[disabled].active,
  4405. fieldset[disabled] .btn-microsoft.active {
  4406. background-color: #2672ec;
  4407. border-color: rgba(0, 0, 0, 0.2);
  4408. }
  4409. .btn-microsoft .badge {
  4410. color: #2672ec;
  4411. background-color: #fff;
  4412. }
  4413. .btn-openid {
  4414. color: #fff;
  4415. background-color: #f7931e;
  4416. border-color: rgba(0, 0, 0, 0.2);
  4417. }
  4418. .btn-openid:focus,
  4419. .btn-openid.focus {
  4420. color: #fff;
  4421. background-color: #da7908;
  4422. border-color: rgba(0, 0, 0, 0.2);
  4423. }
  4424. .btn-openid:hover {
  4425. color: #fff;
  4426. background-color: #da7908;
  4427. border-color: rgba(0, 0, 0, 0.2);
  4428. }
  4429. .btn-openid:active,
  4430. .btn-openid.active,
  4431. .open > .dropdown-toggle.btn-openid {
  4432. color: #fff;
  4433. background-color: #da7908;
  4434. border-color: rgba(0, 0, 0, 0.2);
  4435. }
  4436. .btn-openid:active:hover,
  4437. .btn-openid.active:hover,
  4438. .open > .dropdown-toggle.btn-openid:hover,
  4439. .btn-openid:active:focus,
  4440. .btn-openid.active:focus,
  4441. .open > .dropdown-toggle.btn-openid:focus,
  4442. .btn-openid:active.focus,
  4443. .btn-openid.active.focus,
  4444. .open > .dropdown-toggle.btn-openid.focus {
  4445. color: #fff;
  4446. background-color: #b86607;
  4447. border-color: rgba(0, 0, 0, 0.2);
  4448. }
  4449. .btn-openid:active,
  4450. .btn-openid.active,
  4451. .open > .dropdown-toggle.btn-openid {
  4452. background-image: none;
  4453. }
  4454. .btn-openid.disabled,
  4455. .btn-openid[disabled],
  4456. fieldset[disabled] .btn-openid,
  4457. .btn-openid.disabled:hover,
  4458. .btn-openid[disabled]:hover,
  4459. fieldset[disabled] .btn-openid:hover,
  4460. .btn-openid.disabled:focus,
  4461. .btn-openid[disabled]:focus,
  4462. fieldset[disabled] .btn-openid:focus,
  4463. .btn-openid.disabled.focus,
  4464. .btn-openid[disabled].focus,
  4465. fieldset[disabled] .btn-openid.focus,
  4466. .btn-openid.disabled:active,
  4467. .btn-openid[disabled]:active,
  4468. fieldset[disabled] .btn-openid:active,
  4469. .btn-openid.disabled.active,
  4470. .btn-openid[disabled].active,
  4471. fieldset[disabled] .btn-openid.active {
  4472. background-color: #f7931e;
  4473. border-color: rgba(0, 0, 0, 0.2);
  4474. }
  4475. .btn-openid .badge {
  4476. color: #f7931e;
  4477. background-color: #fff;
  4478. }
  4479. .btn-pinterest {
  4480. color: #fff;
  4481. background-color: #cb2027;
  4482. border-color: rgba(0, 0, 0, 0.2);
  4483. }
  4484. .btn-pinterest:focus,
  4485. .btn-pinterest.focus {
  4486. color: #fff;
  4487. background-color: #9f191f;
  4488. border-color: rgba(0, 0, 0, 0.2);
  4489. }
  4490. .btn-pinterest:hover {
  4491. color: #fff;
  4492. background-color: #9f191f;
  4493. border-color: rgba(0, 0, 0, 0.2);
  4494. }
  4495. .btn-pinterest:active,
  4496. .btn-pinterest.active,
  4497. .open > .dropdown-toggle.btn-pinterest {
  4498. color: #fff;
  4499. background-color: #9f191f;
  4500. border-color: rgba(0, 0, 0, 0.2);
  4501. }
  4502. .btn-pinterest:active:hover,
  4503. .btn-pinterest.active:hover,
  4504. .open > .dropdown-toggle.btn-pinterest:hover,
  4505. .btn-pinterest:active:focus,
  4506. .btn-pinterest.active:focus,
  4507. .open > .dropdown-toggle.btn-pinterest:focus,
  4508. .btn-pinterest:active.focus,
  4509. .btn-pinterest.active.focus,
  4510. .open > .dropdown-toggle.btn-pinterest.focus {
  4511. color: #fff;
  4512. background-color: #801419;
  4513. border-color: rgba(0, 0, 0, 0.2);
  4514. }
  4515. .btn-pinterest:active,
  4516. .btn-pinterest.active,
  4517. .open > .dropdown-toggle.btn-pinterest {
  4518. background-image: none;
  4519. }
  4520. .btn-pinterest.disabled,
  4521. .btn-pinterest[disabled],
  4522. fieldset[disabled] .btn-pinterest,
  4523. .btn-pinterest.disabled:hover,
  4524. .btn-pinterest[disabled]:hover,
  4525. fieldset[disabled] .btn-pinterest:hover,
  4526. .btn-pinterest.disabled:focus,
  4527. .btn-pinterest[disabled]:focus,
  4528. fieldset[disabled] .btn-pinterest:focus,
  4529. .btn-pinterest.disabled.focus,
  4530. .btn-pinterest[disabled].focus,
  4531. fieldset[disabled] .btn-pinterest.focus,
  4532. .btn-pinterest.disabled:active,
  4533. .btn-pinterest[disabled]:active,
  4534. fieldset[disabled] .btn-pinterest:active,
  4535. .btn-pinterest.disabled.active,
  4536. .btn-pinterest[disabled].active,
  4537. fieldset[disabled] .btn-pinterest.active {
  4538. background-color: #cb2027;
  4539. border-color: rgba(0, 0, 0, 0.2);
  4540. }
  4541. .btn-pinterest .badge {
  4542. color: #cb2027;
  4543. background-color: #fff;
  4544. }
  4545. .btn-reddit {
  4546. color: #000;
  4547. background-color: #eff7ff;
  4548. border-color: rgba(0, 0, 0, 0.2);
  4549. }
  4550. .btn-reddit:focus,
  4551. .btn-reddit.focus {
  4552. color: #000;
  4553. background-color: #bcddff;
  4554. border-color: rgba(0, 0, 0, 0.2);
  4555. }
  4556. .btn-reddit:hover {
  4557. color: #000;
  4558. background-color: #bcddff;
  4559. border-color: rgba(0, 0, 0, 0.2);
  4560. }
  4561. .btn-reddit:active,
  4562. .btn-reddit.active,
  4563. .open > .dropdown-toggle.btn-reddit {
  4564. color: #000;
  4565. background-color: #bcddff;
  4566. border-color: rgba(0, 0, 0, 0.2);
  4567. }
  4568. .btn-reddit:active:hover,
  4569. .btn-reddit.active:hover,
  4570. .open > .dropdown-toggle.btn-reddit:hover,
  4571. .btn-reddit:active:focus,
  4572. .btn-reddit.active:focus,
  4573. .open > .dropdown-toggle.btn-reddit:focus,
  4574. .btn-reddit:active.focus,
  4575. .btn-reddit.active.focus,
  4576. .open > .dropdown-toggle.btn-reddit.focus {
  4577. color: #000;
  4578. background-color: #98ccff;
  4579. border-color: rgba(0, 0, 0, 0.2);
  4580. }
  4581. .btn-reddit:active,
  4582. .btn-reddit.active,
  4583. .open > .dropdown-toggle.btn-reddit {
  4584. background-image: none;
  4585. }
  4586. .btn-reddit.disabled,
  4587. .btn-reddit[disabled],
  4588. fieldset[disabled] .btn-reddit,
  4589. .btn-reddit.disabled:hover,
  4590. .btn-reddit[disabled]:hover,
  4591. fieldset[disabled] .btn-reddit:hover,
  4592. .btn-reddit.disabled:focus,
  4593. .btn-reddit[disabled]:focus,
  4594. fieldset[disabled] .btn-reddit:focus,
  4595. .btn-reddit.disabled.focus,
  4596. .btn-reddit[disabled].focus,
  4597. fieldset[disabled] .btn-reddit.focus,
  4598. .btn-reddit.disabled:active,
  4599. .btn-reddit[disabled]:active,
  4600. fieldset[disabled] .btn-reddit:active,
  4601. .btn-reddit.disabled.active,
  4602. .btn-reddit[disabled].active,
  4603. fieldset[disabled] .btn-reddit.active {
  4604. background-color: #eff7ff;
  4605. border-color: rgba(0, 0, 0, 0.2);
  4606. }
  4607. .btn-reddit .badge {
  4608. color: #eff7ff;
  4609. background-color: #000;
  4610. }
  4611. .btn-soundcloud {
  4612. color: #fff;
  4613. background-color: #ff5500;
  4614. border-color: rgba(0, 0, 0, 0.2);
  4615. }
  4616. .btn-soundcloud:focus,
  4617. .btn-soundcloud.focus {
  4618. color: #fff;
  4619. background-color: #cc4400;
  4620. border-color: rgba(0, 0, 0, 0.2);
  4621. }
  4622. .btn-soundcloud:hover {
  4623. color: #fff;
  4624. background-color: #cc4400;
  4625. border-color: rgba(0, 0, 0, 0.2);
  4626. }
  4627. .btn-soundcloud:active,
  4628. .btn-soundcloud.active,
  4629. .open > .dropdown-toggle.btn-soundcloud {
  4630. color: #fff;
  4631. background-color: #cc4400;
  4632. border-color: rgba(0, 0, 0, 0.2);
  4633. }
  4634. .btn-soundcloud:active:hover,
  4635. .btn-soundcloud.active:hover,
  4636. .open > .dropdown-toggle.btn-soundcloud:hover,
  4637. .btn-soundcloud:active:focus,
  4638. .btn-soundcloud.active:focus,
  4639. .open > .dropdown-toggle.btn-soundcloud:focus,
  4640. .btn-soundcloud:active.focus,
  4641. .btn-soundcloud.active.focus,
  4642. .open > .dropdown-toggle.btn-soundcloud.focus {
  4643. color: #fff;
  4644. background-color: #a83800;
  4645. border-color: rgba(0, 0, 0, 0.2);
  4646. }
  4647. .btn-soundcloud:active,
  4648. .btn-soundcloud.active,
  4649. .open > .dropdown-toggle.btn-soundcloud {
  4650. background-image: none;
  4651. }
  4652. .btn-soundcloud.disabled,
  4653. .btn-soundcloud[disabled],
  4654. fieldset[disabled] .btn-soundcloud,
  4655. .btn-soundcloud.disabled:hover,
  4656. .btn-soundcloud[disabled]:hover,
  4657. fieldset[disabled] .btn-soundcloud:hover,
  4658. .btn-soundcloud.disabled:focus,
  4659. .btn-soundcloud[disabled]:focus,
  4660. fieldset[disabled] .btn-soundcloud:focus,
  4661. .btn-soundcloud.disabled.focus,
  4662. .btn-soundcloud[disabled].focus,
  4663. fieldset[disabled] .btn-soundcloud.focus,
  4664. .btn-soundcloud.disabled:active,
  4665. .btn-soundcloud[disabled]:active,
  4666. fieldset[disabled] .btn-soundcloud:active,
  4667. .btn-soundcloud.disabled.active,
  4668. .btn-soundcloud[disabled].active,
  4669. fieldset[disabled] .btn-soundcloud.active {
  4670. background-color: #ff5500;
  4671. border-color: rgba(0, 0, 0, 0.2);
  4672. }
  4673. .btn-soundcloud .badge {
  4674. color: #ff5500;
  4675. background-color: #fff;
  4676. }
  4677. .btn-tumblr {
  4678. color: #fff;
  4679. background-color: #2c4762;
  4680. border-color: rgba(0, 0, 0, 0.2);
  4681. }
  4682. .btn-tumblr:focus,
  4683. .btn-tumblr.focus {
  4684. color: #fff;
  4685. background-color: #1c2d3f;
  4686. border-color: rgba(0, 0, 0, 0.2);
  4687. }
  4688. .btn-tumblr:hover {
  4689. color: #fff;
  4690. background-color: #1c2d3f;
  4691. border-color: rgba(0, 0, 0, 0.2);
  4692. }
  4693. .btn-tumblr:active,
  4694. .btn-tumblr.active,
  4695. .open > .dropdown-toggle.btn-tumblr {
  4696. color: #fff;
  4697. background-color: #1c2d3f;
  4698. border-color: rgba(0, 0, 0, 0.2);
  4699. }
  4700. .btn-tumblr:active:hover,
  4701. .btn-tumblr.active:hover,
  4702. .open > .dropdown-toggle.btn-tumblr:hover,
  4703. .btn-tumblr:active:focus,
  4704. .btn-tumblr.active:focus,
  4705. .open > .dropdown-toggle.btn-tumblr:focus,
  4706. .btn-tumblr:active.focus,
  4707. .btn-tumblr.active.focus,
  4708. .open > .dropdown-toggle.btn-tumblr.focus {
  4709. color: #fff;
  4710. background-color: #111c26;
  4711. border-color: rgba(0, 0, 0, 0.2);
  4712. }
  4713. .btn-tumblr:active,
  4714. .btn-tumblr.active,
  4715. .open > .dropdown-toggle.btn-tumblr {
  4716. background-image: none;
  4717. }
  4718. .btn-tumblr.disabled,
  4719. .btn-tumblr[disabled],
  4720. fieldset[disabled] .btn-tumblr,
  4721. .btn-tumblr.disabled:hover,
  4722. .btn-tumblr[disabled]:hover,
  4723. fieldset[disabled] .btn-tumblr:hover,
  4724. .btn-tumblr.disabled:focus,
  4725. .btn-tumblr[disabled]:focus,
  4726. fieldset[disabled] .btn-tumblr:focus,
  4727. .btn-tumblr.disabled.focus,
  4728. .btn-tumblr[disabled].focus,
  4729. fieldset[disabled] .btn-tumblr.focus,
  4730. .btn-tumblr.disabled:active,
  4731. .btn-tumblr[disabled]:active,
  4732. fieldset[disabled] .btn-tumblr:active,
  4733. .btn-tumblr.disabled.active,
  4734. .btn-tumblr[disabled].active,
  4735. fieldset[disabled] .btn-tumblr.active {
  4736. background-color: #2c4762;
  4737. border-color: rgba(0, 0, 0, 0.2);
  4738. }
  4739. .btn-tumblr .badge {
  4740. color: #2c4762;
  4741. background-color: #fff;
  4742. }
  4743. .btn-twitter {
  4744. color: #fff;
  4745. background-color: #55acee;
  4746. border-color: rgba(0, 0, 0, 0.2);
  4747. }
  4748. .btn-twitter:focus,
  4749. .btn-twitter.focus {
  4750. color: #fff;
  4751. background-color: #2795e9;
  4752. border-color: rgba(0, 0, 0, 0.2);
  4753. }
  4754. .btn-twitter:hover {
  4755. color: #fff;
  4756. background-color: #2795e9;
  4757. border-color: rgba(0, 0, 0, 0.2);
  4758. }
  4759. .btn-twitter:active,
  4760. .btn-twitter.active,
  4761. .open > .dropdown-toggle.btn-twitter {
  4762. color: #fff;
  4763. background-color: #2795e9;
  4764. border-color: rgba(0, 0, 0, 0.2);
  4765. }
  4766. .btn-twitter:active:hover,
  4767. .btn-twitter.active:hover,
  4768. .open > .dropdown-toggle.btn-twitter:hover,
  4769. .btn-twitter:active:focus,
  4770. .btn-twitter.active:focus,
  4771. .open > .dropdown-toggle.btn-twitter:focus,
  4772. .btn-twitter:active.focus,
  4773. .btn-twitter.active.focus,
  4774. .open > .dropdown-toggle.btn-twitter.focus {
  4775. color: #fff;
  4776. background-color: #1583d7;
  4777. border-color: rgba(0, 0, 0, 0.2);
  4778. }
  4779. .btn-twitter:active,
  4780. .btn-twitter.active,
  4781. .open > .dropdown-toggle.btn-twitter {
  4782. background-image: none;
  4783. }
  4784. .btn-twitter.disabled,
  4785. .btn-twitter[disabled],
  4786. fieldset[disabled] .btn-twitter,
  4787. .btn-twitter.disabled:hover,
  4788. .btn-twitter[disabled]:hover,
  4789. fieldset[disabled] .btn-twitter:hover,
  4790. .btn-twitter.disabled:focus,
  4791. .btn-twitter[disabled]:focus,
  4792. fieldset[disabled] .btn-twitter:focus,
  4793. .btn-twitter.disabled.focus,
  4794. .btn-twitter[disabled].focus,
  4795. fieldset[disabled] .btn-twitter.focus,
  4796. .btn-twitter.disabled:active,
  4797. .btn-twitter[disabled]:active,
  4798. fieldset[disabled] .btn-twitter:active,
  4799. .btn-twitter.disabled.active,
  4800. .btn-twitter[disabled].active,
  4801. fieldset[disabled] .btn-twitter.active {
  4802. background-color: #55acee;
  4803. border-color: rgba(0, 0, 0, 0.2);
  4804. }
  4805. .btn-twitter .badge {
  4806. color: #55acee;
  4807. background-color: #fff;
  4808. }
  4809. .btn-vimeo {
  4810. color: #fff;
  4811. background-color: #1ab7ea;
  4812. border-color: rgba(0, 0, 0, 0.2);
  4813. }
  4814. .btn-vimeo:focus,
  4815. .btn-vimeo.focus {
  4816. color: #fff;
  4817. background-color: #1295bf;
  4818. border-color: rgba(0, 0, 0, 0.2);
  4819. }
  4820. .btn-vimeo:hover {
  4821. color: #fff;
  4822. background-color: #1295bf;
  4823. border-color: rgba(0, 0, 0, 0.2);
  4824. }
  4825. .btn-vimeo:active,
  4826. .btn-vimeo.active,
  4827. .open > .dropdown-toggle.btn-vimeo {
  4828. color: #fff;
  4829. background-color: #1295bf;
  4830. border-color: rgba(0, 0, 0, 0.2);
  4831. }
  4832. .btn-vimeo:active:hover,
  4833. .btn-vimeo.active:hover,
  4834. .open > .dropdown-toggle.btn-vimeo:hover,
  4835. .btn-vimeo:active:focus,
  4836. .btn-vimeo.active:focus,
  4837. .open > .dropdown-toggle.btn-vimeo:focus,
  4838. .btn-vimeo:active.focus,
  4839. .btn-vimeo.active.focus,
  4840. .open > .dropdown-toggle.btn-vimeo.focus {
  4841. color: #fff;
  4842. background-color: #0f7b9f;
  4843. border-color: rgba(0, 0, 0, 0.2);
  4844. }
  4845. .btn-vimeo:active,
  4846. .btn-vimeo.active,
  4847. .open > .dropdown-toggle.btn-vimeo {
  4848. background-image: none;
  4849. }
  4850. .btn-vimeo.disabled,
  4851. .btn-vimeo[disabled],
  4852. fieldset[disabled] .btn-vimeo,
  4853. .btn-vimeo.disabled:hover,
  4854. .btn-vimeo[disabled]:hover,
  4855. fieldset[disabled] .btn-vimeo:hover,
  4856. .btn-vimeo.disabled:focus,
  4857. .btn-vimeo[disabled]:focus,
  4858. fieldset[disabled] .btn-vimeo:focus,
  4859. .btn-vimeo.disabled.focus,
  4860. .btn-vimeo[disabled].focus,
  4861. fieldset[disabled] .btn-vimeo.focus,
  4862. .btn-vimeo.disabled:active,
  4863. .btn-vimeo[disabled]:active,
  4864. fieldset[disabled] .btn-vimeo:active,
  4865. .btn-vimeo.disabled.active,
  4866. .btn-vimeo[disabled].active,
  4867. fieldset[disabled] .btn-vimeo.active {
  4868. background-color: #1ab7ea;
  4869. border-color: rgba(0, 0, 0, 0.2);
  4870. }
  4871. .btn-vimeo .badge {
  4872. color: #1ab7ea;
  4873. background-color: #fff;
  4874. }
  4875. .btn-vk {
  4876. color: #fff;
  4877. background-color: #587ea3;
  4878. border-color: rgba(0, 0, 0, 0.2);
  4879. }
  4880. .btn-vk:focus,
  4881. .btn-vk.focus {
  4882. color: #fff;
  4883. background-color: #466482;
  4884. border-color: rgba(0, 0, 0, 0.2);
  4885. }
  4886. .btn-vk:hover {
  4887. color: #fff;
  4888. background-color: #466482;
  4889. border-color: rgba(0, 0, 0, 0.2);
  4890. }
  4891. .btn-vk:active,
  4892. .btn-vk.active,
  4893. .open > .dropdown-toggle.btn-vk {
  4894. color: #fff;
  4895. background-color: #466482;
  4896. border-color: rgba(0, 0, 0, 0.2);
  4897. }
  4898. .btn-vk:active:hover,
  4899. .btn-vk.active:hover,
  4900. .open > .dropdown-toggle.btn-vk:hover,
  4901. .btn-vk:active:focus,
  4902. .btn-vk.active:focus,
  4903. .open > .dropdown-toggle.btn-vk:focus,
  4904. .btn-vk:active.focus,
  4905. .btn-vk.active.focus,
  4906. .open > .dropdown-toggle.btn-vk.focus {
  4907. color: #fff;
  4908. background-color: #3a526b;
  4909. border-color: rgba(0, 0, 0, 0.2);
  4910. }
  4911. .btn-vk:active,
  4912. .btn-vk.active,
  4913. .open > .dropdown-toggle.btn-vk {
  4914. background-image: none;
  4915. }
  4916. .btn-vk.disabled,
  4917. .btn-vk[disabled],
  4918. fieldset[disabled] .btn-vk,
  4919. .btn-vk.disabled:hover,
  4920. .btn-vk[disabled]:hover,
  4921. fieldset[disabled] .btn-vk:hover,
  4922. .btn-vk.disabled:focus,
  4923. .btn-vk[disabled]:focus,
  4924. fieldset[disabled] .btn-vk:focus,
  4925. .btn-vk.disabled.focus,
  4926. .btn-vk[disabled].focus,
  4927. fieldset[disabled] .btn-vk.focus,
  4928. .btn-vk.disabled:active,
  4929. .btn-vk[disabled]:active,
  4930. fieldset[disabled] .btn-vk:active,
  4931. .btn-vk.disabled.active,
  4932. .btn-vk[disabled].active,
  4933. fieldset[disabled] .btn-vk.active {
  4934. background-color: #587ea3;
  4935. border-color: rgba(0, 0, 0, 0.2);
  4936. }
  4937. .btn-vk .badge {
  4938. color: #587ea3;
  4939. background-color: #fff;
  4940. }
  4941. .btn-yahoo {
  4942. color: #fff;
  4943. background-color: #720e9e;
  4944. border-color: rgba(0, 0, 0, 0.2);
  4945. }
  4946. .btn-yahoo:focus,
  4947. .btn-yahoo.focus {
  4948. color: #fff;
  4949. background-color: #500a6f;
  4950. border-color: rgba(0, 0, 0, 0.2);
  4951. }
  4952. .btn-yahoo:hover {
  4953. color: #fff;
  4954. background-color: #500a6f;
  4955. border-color: rgba(0, 0, 0, 0.2);
  4956. }
  4957. .btn-yahoo:active,
  4958. .btn-yahoo.active,
  4959. .open > .dropdown-toggle.btn-yahoo {
  4960. color: #fff;
  4961. background-color: #500a6f;
  4962. border-color: rgba(0, 0, 0, 0.2);
  4963. }
  4964. .btn-yahoo:active:hover,
  4965. .btn-yahoo.active:hover,
  4966. .open > .dropdown-toggle.btn-yahoo:hover,
  4967. .btn-yahoo:active:focus,
  4968. .btn-yahoo.active:focus,
  4969. .open > .dropdown-toggle.btn-yahoo:focus,
  4970. .btn-yahoo:active.focus,
  4971. .btn-yahoo.active.focus,
  4972. .open > .dropdown-toggle.btn-yahoo.focus {
  4973. color: #fff;
  4974. background-color: #39074e;
  4975. border-color: rgba(0, 0, 0, 0.2);
  4976. }
  4977. .btn-yahoo:active,
  4978. .btn-yahoo.active,
  4979. .open > .dropdown-toggle.btn-yahoo {
  4980. background-image: none;
  4981. }
  4982. .btn-yahoo.disabled,
  4983. .btn-yahoo[disabled],
  4984. fieldset[disabled] .btn-yahoo,
  4985. .btn-yahoo.disabled:hover,
  4986. .btn-yahoo[disabled]:hover,
  4987. fieldset[disabled] .btn-yahoo:hover,
  4988. .btn-yahoo.disabled:focus,
  4989. .btn-yahoo[disabled]:focus,
  4990. fieldset[disabled] .btn-yahoo:focus,
  4991. .btn-yahoo.disabled.focus,
  4992. .btn-yahoo[disabled].focus,
  4993. fieldset[disabled] .btn-yahoo.focus,
  4994. .btn-yahoo.disabled:active,
  4995. .btn-yahoo[disabled]:active,
  4996. fieldset[disabled] .btn-yahoo:active,
  4997. .btn-yahoo.disabled.active,
  4998. .btn-yahoo[disabled].active,
  4999. fieldset[disabled] .btn-yahoo.active {
  5000. background-color: #720e9e;
  5001. border-color: rgba(0, 0, 0, 0.2);
  5002. }
  5003. .btn-yahoo .badge {
  5004. color: #720e9e;
  5005. background-color: #fff;
  5006. }
  5007. /*
  5008. * Plugin: Full Calendar
  5009. * ---------------------
  5010. */
  5011. .fc-button {
  5012. background: #f4f4f4;
  5013. background-image: none;
  5014. color: #444;
  5015. border-color: #ddd;
  5016. border-bottom-color: #ddd;
  5017. }
  5018. .fc-button:hover,
  5019. .fc-button:active,
  5020. .fc-button.hover {
  5021. background-color: #e9e9e9;
  5022. }
  5023. .fc-header-title h2 {
  5024. font-size: 15px;
  5025. line-height: 1.6em;
  5026. color: #666;
  5027. margin-left: 10px;
  5028. }
  5029. .fc-header-right {
  5030. padding-right: 10px;
  5031. }
  5032. .fc-header-left {
  5033. padding-left: 10px;
  5034. }
  5035. .fc-widget-header {
  5036. background: #fafafa;
  5037. }
  5038. .fc-grid {
  5039. width: 100%;
  5040. border: 0;
  5041. }
  5042. .fc-widget-header:first-of-type,
  5043. .fc-widget-content:first-of-type {
  5044. border-left: 0;
  5045. border-right: 0;
  5046. }
  5047. .fc-widget-header:last-of-type,
  5048. .fc-widget-content:last-of-type {
  5049. border-right: 0;
  5050. }
  5051. .fc-toolbar {
  5052. padding: 10px;
  5053. margin: 0;
  5054. }
  5055. .fc-day-number {
  5056. font-size: 20px;
  5057. font-weight: 300;
  5058. padding-right: 10px;
  5059. }
  5060. .fc-color-picker {
  5061. list-style: none;
  5062. margin: 0;
  5063. padding: 0;
  5064. }
  5065. .fc-color-picker > li {
  5066. float: left;
  5067. font-size: 30px;
  5068. margin-right: 5px;
  5069. line-height: 30px;
  5070. }
  5071. .fc-color-picker > li .fa {
  5072. -webkit-transition: -webkit-transform linear 0.3s;
  5073. -moz-transition: -moz-transform linear 0.3s;
  5074. -o-transition: -o-transform linear 0.3s;
  5075. transition: transform linear 0.3s;
  5076. }
  5077. .fc-color-picker > li .fa:hover {
  5078. -webkit-transform: rotate(30deg);
  5079. -ms-transform: rotate(30deg);
  5080. -o-transform: rotate(30deg);
  5081. transform: rotate(30deg);
  5082. }
  5083. #add-new-event {
  5084. -webkit-transition: all linear 0.3s;
  5085. -o-transition: all linear 0.3s;
  5086. transition: all linear 0.3s;
  5087. }
  5088. .external-event {
  5089. padding: 5px 10px;
  5090. font-weight: bold;
  5091. margin-bottom: 4px;
  5092. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  5093. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  5094. border-radius: 3px;
  5095. cursor: move;
  5096. }
  5097. .external-event:hover {
  5098. box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
  5099. }
  5100. /*
  5101. * Plugin: Select2
  5102. * ---------------
  5103. */
  5104. .select2-container--default.select2-container--focus,
  5105. .select2-selection.select2-container--focus,
  5106. .select2-container--default:focus,
  5107. .select2-selection:focus,
  5108. .select2-container--default:active,
  5109. .select2-selection:active {
  5110. outline: none;
  5111. }
  5112. .select2-container--default .select2-selection--single,
  5113. .select2-selection .select2-selection--single {
  5114. border: 1px solid #d2d6de;
  5115. border-radius: 0;
  5116. padding: 6px 12px;
  5117. height: 34px;
  5118. }
  5119. .select2-container--default.select2-container--open {
  5120. border-color: #3c8dbc;
  5121. }
  5122. .select2-dropdown {
  5123. border: 1px solid #d2d6de;
  5124. border-radius: 0;
  5125. }
  5126. .select2-container--default .select2-results__option--highlighted[aria-selected] {
  5127. background-color: #3c8dbc;
  5128. color: white;
  5129. }
  5130. .select2-results__option {
  5131. padding: 6px 12px;
  5132. user-select: none;
  5133. -webkit-user-select: none;
  5134. }
  5135. .select2-container .select2-selection--single .select2-selection__rendered {
  5136. padding-left: 0;
  5137. padding-right: 0;
  5138. height: auto;
  5139. margin-top: -4px;
  5140. }
  5141. .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  5142. padding-right: 6px;
  5143. padding-left: 20px;
  5144. }
  5145. .select2-container--default .select2-selection--single .select2-selection__arrow {
  5146. height: 28px;
  5147. right: 3px;
  5148. }
  5149. .select2-container--default .select2-selection--single .select2-selection__arrow b {
  5150. margin-top: 0;
  5151. }
  5152. .select2-dropdown .select2-search__field,
  5153. .select2-search--inline .select2-search__field {
  5154. border: 1px solid #d2d6de;
  5155. }
  5156. .select2-dropdown .select2-search__field:focus,
  5157. .select2-search--inline .select2-search__field:focus {
  5158. outline: none;
  5159. border: 1px solid #3c8dbc;
  5160. }
  5161. .select2-container--default .select2-results__option[aria-disabled=true] {
  5162. color: #999;
  5163. }
  5164. .select2-container--default .select2-results__option[aria-selected=true] {
  5165. background-color: #ddd;
  5166. }
  5167. .select2-container--default .select2-results__option[aria-selected=true],
  5168. .select2-container--default .select2-results__option[aria-selected=true]:hover {
  5169. color: #444;
  5170. }
  5171. .select2-container--default .select2-selection--multiple {
  5172. border: 1px solid #d2d6de;
  5173. border-radius: 0;
  5174. }
  5175. .select2-container--default .select2-selection--multiple:focus {
  5176. border-color: #3c8dbc;
  5177. }
  5178. .select2-container--default.select2-container--focus .select2-selection--multiple {
  5179. border-color: #d2d6de;
  5180. }
  5181. .select2-container--default .select2-selection--multiple .select2-selection__choice {
  5182. background-color: #3c8dbc;
  5183. border-color: #367fa9;
  5184. padding: 1px 10px;
  5185. color: #fff;
  5186. }
  5187. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  5188. margin-right: 5px;
  5189. color: rgba(255, 255, 255, 0.7);
  5190. }
  5191. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  5192. color: #fff;
  5193. }
  5194. .select2-container .select2-selection--single .select2-selection__rendered {
  5195. padding-right: 10px;
  5196. }
  5197. /*
  5198. * General: Miscellaneous
  5199. * ----------------------
  5200. */
  5201. .pad {
  5202. padding: 10px;
  5203. }
  5204. .margin {
  5205. margin: 10px;
  5206. }
  5207. .margin-bottom {
  5208. margin-bottom: 20px;
  5209. }
  5210. .margin-bottom-none {
  5211. margin-bottom: 0;
  5212. }
  5213. .margin-r-5 {
  5214. margin-right: 5px;
  5215. }
  5216. .inline {
  5217. display: inline;
  5218. }
  5219. .description-block {
  5220. display: block;
  5221. margin: 10px 0;
  5222. text-align: center;
  5223. }
  5224. .description-block.margin-bottom {
  5225. margin-bottom: 25px;
  5226. }
  5227. .description-block > .description-header {
  5228. margin: 0;
  5229. padding: 0;
  5230. font-weight: 600;
  5231. font-size: 16px;
  5232. }
  5233. .description-block > .description-text {
  5234. text-transform: uppercase;
  5235. }
  5236. .bg-red,
  5237. .bg-yellow,
  5238. .bg-aqua,
  5239. .bg-blue,
  5240. .bg-light-blue,
  5241. .bg-green,
  5242. .bg-navy,
  5243. .bg-teal,
  5244. .bg-olive,
  5245. .bg-lime,
  5246. .bg-orange,
  5247. .bg-fuchsia,
  5248. .bg-purple,
  5249. .bg-maroon,
  5250. .bg-black,
  5251. .bg-red-active,
  5252. .bg-yellow-active,
  5253. .bg-aqua-active,
  5254. .bg-blue-active,
  5255. .bg-light-blue-active,
  5256. .bg-green-active,
  5257. .bg-navy-active,
  5258. .bg-teal-active,
  5259. .bg-olive-active,
  5260. .bg-lime-active,
  5261. .bg-orange-active,
  5262. .bg-fuchsia-active,
  5263. .bg-purple-active,
  5264. .bg-maroon-active,
  5265. .bg-black-active,
  5266. .callout.callout-danger,
  5267. .callout.callout-warning,
  5268. .callout.callout-info,
  5269. .callout.callout-success,
  5270. .alert-success,
  5271. .alert-danger,
  5272. .alert-error,
  5273. .alert-warning,
  5274. .alert-info,
  5275. .modal-primary .modal-body,
  5276. .modal-primary .modal-header,
  5277. .modal-primary .modal-footer,
  5278. .modal-warning .modal-body,
  5279. .modal-warning .modal-header,
  5280. .modal-warning .modal-footer,
  5281. .modal-info .modal-body,
  5282. .modal-info .modal-header,
  5283. .modal-info .modal-footer,
  5284. .modal-success .modal-body,
  5285. .modal-success .modal-header,
  5286. .modal-success .modal-footer,
  5287. .modal-danger .modal-body,
  5288. .modal-danger .modal-header,
  5289. .modal-danger .modal-footer {
  5290. color: #fff !important;
  5291. }
  5292. .bg-gray {
  5293. color: #000;
  5294. background-color: #d2d6de !important;
  5295. }
  5296. .bg-gray-light {
  5297. background-color: #f7f7f7;
  5298. }
  5299. .bg-black {
  5300. background-color: #111 !important;
  5301. }
  5302. .bg-red,
  5303. .callout.callout-danger,
  5304. .alert-danger,
  5305. .alert-error,
  5306. .modal-danger .modal-body {
  5307. background-color: #e74c3c !important;
  5308. }
  5309. .bg-yellow,
  5310. .callout.callout-warning,
  5311. .alert-warning,
  5312. .modal-warning .modal-body {
  5313. background-color: #f39c12 !important;
  5314. }
  5315. .bg-aqua,
  5316. .callout.callout-info,
  5317. .alert-info,
  5318. .modal-info .modal-body {
  5319. background-color: #3498db !important;
  5320. }
  5321. .bg-blue {
  5322. background-color: #0073b7 !important;
  5323. }
  5324. .bg-light-blue,
  5325. .modal-primary .modal-body {
  5326. background-color: #3c8dbc !important;
  5327. }
  5328. .bg-green,
  5329. .callout.callout-success,
  5330. .alert-success,
  5331. .modal-success .modal-body {
  5332. background-color: #18bc9c !important;
  5333. }
  5334. .bg-navy {
  5335. background-color: #001F3F !important;
  5336. }
  5337. .bg-teal {
  5338. background-color: #39CCCC !important;
  5339. }
  5340. .bg-olive {
  5341. background-color: #3D9970 !important;
  5342. }
  5343. .bg-lime {
  5344. background-color: #01FF70 !important;
  5345. }
  5346. .bg-orange {
  5347. background-color: #FF851B !important;
  5348. }
  5349. .bg-fuchsia {
  5350. background-color: #F012BE !important;
  5351. }
  5352. .bg-purple {
  5353. background-color: #605ca8 !important;
  5354. }
  5355. .bg-maroon {
  5356. background-color: #D81B60 !important;
  5357. }
  5358. .bg-gray-active {
  5359. color: #000;
  5360. background-color: #b5bbc8 !important;
  5361. }
  5362. .bg-black-active {
  5363. background-color: #000000 !important;
  5364. }
  5365. .bg-red-active,
  5366. .modal-danger .modal-header,
  5367. .modal-danger .modal-footer {
  5368. background-color: #e43321 !important;
  5369. }
  5370. .bg-yellow-active,
  5371. .modal-warning .modal-header,
  5372. .modal-warning .modal-footer {
  5373. background-color: #db8b0b !important;
  5374. }
  5375. .bg-aqua-active,
  5376. .modal-info .modal-header,
  5377. .modal-info .modal-footer {
  5378. background-color: #2489cc !important;
  5379. }
  5380. .bg-blue-active {
  5381. background-color: #005384 !important;
  5382. }
  5383. .bg-light-blue-active,
  5384. .modal-primary .modal-header,
  5385. .modal-primary .modal-footer {
  5386. background-color: #357ca5 !important;
  5387. }
  5388. .bg-green-active,
  5389. .modal-success .modal-header,
  5390. .modal-success .modal-footer {
  5391. background-color: #15a589 !important;
  5392. }
  5393. .bg-navy-active {
  5394. background-color: #001a35 !important;
  5395. }
  5396. .bg-teal-active {
  5397. background-color: #30bbbb !important;
  5398. }
  5399. .bg-olive-active {
  5400. background-color: #368763 !important;
  5401. }
  5402. .bg-lime-active {
  5403. background-color: #00e765 !important;
  5404. }
  5405. .bg-orange-active {
  5406. background-color: #ff7701 !important;
  5407. }
  5408. .bg-fuchsia-active {
  5409. background-color: #db0ead !important;
  5410. }
  5411. .bg-purple-active {
  5412. background-color: #555299 !important;
  5413. }
  5414. .bg-maroon-active {
  5415. background-color: #ca195a !important;
  5416. }
  5417. [class^="bg-"].disabled {
  5418. opacity: 0.65;
  5419. filter: alpha(opacity=65);
  5420. }
  5421. .text-red {
  5422. color: #e74c3c !important;
  5423. }
  5424. .text-yellow {
  5425. color: #f39c12 !important;
  5426. }
  5427. .text-aqua {
  5428. color: #3498db !important;
  5429. }
  5430. .text-blue {
  5431. color: #0073b7 !important;
  5432. }
  5433. .text-black {
  5434. color: #111 !important;
  5435. }
  5436. .text-light-blue {
  5437. color: #3c8dbc !important;
  5438. }
  5439. .text-green {
  5440. color: #18bc9c !important;
  5441. }
  5442. .text-gray {
  5443. color: #d2d6de !important;
  5444. }
  5445. .text-navy {
  5446. color: #001F3F !important;
  5447. }
  5448. .text-teal {
  5449. color: #39CCCC !important;
  5450. }
  5451. .text-olive {
  5452. color: #3D9970 !important;
  5453. }
  5454. .text-lime {
  5455. color: #01FF70 !important;
  5456. }
  5457. .text-orange {
  5458. color: #FF851B !important;
  5459. }
  5460. .text-fuchsia {
  5461. color: #F012BE !important;
  5462. }
  5463. .text-purple {
  5464. color: #605ca8 !important;
  5465. }
  5466. .text-maroon {
  5467. color: #D81B60 !important;
  5468. }
  5469. .link-muted {
  5470. color: #7a869d;
  5471. }
  5472. .link-muted:hover,
  5473. .link-muted:focus {
  5474. color: #606c84;
  5475. }
  5476. .link-black {
  5477. color: #666;
  5478. }
  5479. .link-black:hover,
  5480. .link-black:focus {
  5481. color: #999;
  5482. }
  5483. .hide {
  5484. display: none !important;
  5485. }
  5486. .no-border {
  5487. border: 0 !important;
  5488. }
  5489. .no-padding {
  5490. padding: 0 !important;
  5491. }
  5492. .no-margin {
  5493. margin: 0 !important;
  5494. }
  5495. .no-shadow {
  5496. box-shadow: none !important;
  5497. }
  5498. .list-unstyled,
  5499. .chart-legend,
  5500. .contacts-list,
  5501. .users-list,
  5502. .mailbox-attachments {
  5503. list-style: none;
  5504. margin: 0;
  5505. padding: 0;
  5506. }
  5507. .list-group-unbordered > .list-group-item {
  5508. border-left: 0;
  5509. border-right: 0;
  5510. border-radius: 0;
  5511. padding-left: 0;
  5512. padding-right: 0;
  5513. }
  5514. .flat {
  5515. border-radius: 0 !important;
  5516. }
  5517. .text-bold,
  5518. .text-bold.table td,
  5519. .text-bold.table th {
  5520. font-weight: 700;
  5521. }
  5522. .text-sm {
  5523. font-size: 12px;
  5524. }
  5525. .jqstooltip {
  5526. padding: 5px !important;
  5527. width: auto !important;
  5528. height: auto !important;
  5529. }
  5530. .bg-teal-gradient {
  5531. background: #39CCCC !important;
  5532. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39CCCC), color-stop(1, #7adddd)) !important;
  5533. background: -ms-linear-gradient(bottom, #39CCCC, #7adddd) !important;
  5534. background: -moz-linear-gradient(center bottom, #39CCCC 0%, #7adddd 100%) !important;
  5535. background: -o-linear-gradient(#7adddd, #39CCCC) !important;
  5536. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39CCCC', GradientType=0) !important;
  5537. color: #fff;
  5538. }
  5539. .bg-light-blue-gradient {
  5540. background: #3c8dbc !important;
  5541. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
  5542. background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  5543. background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
  5544. background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  5545. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  5546. color: #fff;
  5547. }
  5548. .bg-blue-gradient {
  5549. background: #0073b7 !important;
  5550. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  5551. background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  5552. background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  5553. background: -o-linear-gradient(#0089db, #0073b7) !important;
  5554. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  5555. color: #fff;
  5556. }
  5557. .bg-aqua-gradient {
  5558. background: #3498db !important;
  5559. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3498db), color-stop(1, #52a7e0)) !important;
  5560. background: -ms-linear-gradient(bottom, #3498db, #52a7e0) !important;
  5561. background: -moz-linear-gradient(center bottom, #3498db 0%, #52a7e0 100%) !important;
  5562. background: -o-linear-gradient(#52a7e0, #3498db) !important;
  5563. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#52a7e0', endColorstr='#3498db', GradientType=0) !important;
  5564. color: #fff;
  5565. }
  5566. .bg-yellow-gradient {
  5567. background: #f39c12 !important;
  5568. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  5569. background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  5570. background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  5571. background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  5572. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  5573. color: #fff;
  5574. }
  5575. .bg-purple-gradient {
  5576. background: #605ca8 !important;
  5577. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
  5578. background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
  5579. background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important;
  5580. background: -o-linear-gradient(#9491c4, #605ca8) !important;
  5581. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
  5582. color: #fff;
  5583. }
  5584. .bg-green-gradient {
  5585. background: #18bc9c !important;
  5586. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #18bc9c), color-stop(1, #1cdcb6)) !important;
  5587. background: -ms-linear-gradient(bottom, #18bc9c, #1cdcb6) !important;
  5588. background: -moz-linear-gradient(center bottom, #18bc9c 0%, #1cdcb6 100%) !important;
  5589. background: -o-linear-gradient(#1cdcb6, #18bc9c) !important;
  5590. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1cdcb6', endColorstr='#18bc9c', GradientType=0) !important;
  5591. color: #fff;
  5592. }
  5593. .bg-red-gradient {
  5594. background: #e74c3c !important;
  5595. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e74c3c), color-stop(1, #ed7669)) !important;
  5596. background: -ms-linear-gradient(bottom, #e74c3c, #ed7669) !important;
  5597. background: -moz-linear-gradient(center bottom, #e74c3c 0%, #ed7669 100%) !important;
  5598. background: -o-linear-gradient(#ed7669, #e74c3c) !important;
  5599. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed7669', endColorstr='#e74c3c', GradientType=0) !important;
  5600. color: #fff;
  5601. }
  5602. .bg-black-gradient {
  5603. background: #111 !important;
  5604. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111), color-stop(1, #2b2b2b)) !important;
  5605. background: -ms-linear-gradient(bottom, #111, #2b2b2b) !important;
  5606. background: -moz-linear-gradient(center bottom, #111 0%, #2b2b2b 100%) !important;
  5607. background: -o-linear-gradient(#2b2b2b, #111) !important;
  5608. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2b2b2b', endColorstr='#111', GradientType=0) !important;
  5609. color: #fff;
  5610. }
  5611. .bg-maroon-gradient {
  5612. background: #D81B60 !important;
  5613. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #D81B60), color-stop(1, #e73f7c)) !important;
  5614. background: -ms-linear-gradient(bottom, #D81B60, #e73f7c) !important;
  5615. background: -moz-linear-gradient(center bottom, #D81B60 0%, #e73f7c 100%) !important;
  5616. background: -o-linear-gradient(#e73f7c, #D81B60) !important;
  5617. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#D81B60', GradientType=0) !important;
  5618. color: #fff;
  5619. }
  5620. .description-block .description-icon {
  5621. font-size: 16px;
  5622. }
  5623. .no-pad-top {
  5624. padding-top: 0;
  5625. }
  5626. .position-static {
  5627. position: static !important;
  5628. }
  5629. .list-header {
  5630. font-size: 15px;
  5631. padding: 10px 4px;
  5632. font-weight: bold;
  5633. color: #666;
  5634. }
  5635. .list-seperator {
  5636. height: 1px;
  5637. background: #f4f4f4;
  5638. margin: 15px 0 9px 0;
  5639. }
  5640. .list-link > a {
  5641. padding: 4px;
  5642. color: #777;
  5643. }
  5644. .list-link > a:hover {
  5645. color: #222;
  5646. }
  5647. .font-light {
  5648. font-weight: 300;
  5649. }
  5650. .user-block:before,
  5651. .user-block:after {
  5652. content: " ";
  5653. display: table;
  5654. }
  5655. .user-block:after {
  5656. clear: both;
  5657. }
  5658. .user-block:before,
  5659. .user-block:after {
  5660. content: " ";
  5661. display: table;
  5662. }
  5663. .user-block:after {
  5664. clear: both;
  5665. }
  5666. .user-block img {
  5667. width: 40px;
  5668. height: 40px;
  5669. float: left;
  5670. }
  5671. .user-block .username,
  5672. .user-block .description,
  5673. .user-block .comment {
  5674. display: block;
  5675. margin-left: 50px;
  5676. }
  5677. .user-block .username {
  5678. font-size: 16px;
  5679. font-weight: 600;
  5680. }
  5681. .user-block .description {
  5682. color: #999;
  5683. font-size: 13px;
  5684. }
  5685. .user-block.user-block-sm .username,
  5686. .user-block.user-block-sm .description,
  5687. .user-block.user-block-sm .comment {
  5688. margin-left: 40px;
  5689. }
  5690. .user-block.user-block-sm .username {
  5691. font-size: 14px;
  5692. }
  5693. .img-sm,
  5694. .img-md,
  5695. .img-lg,
  5696. .box-comments .box-comment img,
  5697. .user-block.user-block-sm img {
  5698. float: left;
  5699. }
  5700. .img-sm,
  5701. .box-comments .box-comment img,
  5702. .user-block.user-block-sm img {
  5703. width: 30px !important;
  5704. height: 30px !important;
  5705. }
  5706. .img-sm + .img-push {
  5707. margin-left: 40px;
  5708. }
  5709. .img-md {
  5710. width: 60px;
  5711. height: 60px;
  5712. }
  5713. .img-md + .img-push {
  5714. margin-left: 70px;
  5715. }
  5716. .img-lg {
  5717. width: 100px;
  5718. height: 100px;
  5719. }
  5720. .img-lg + .img-push {
  5721. margin-left: 110px;
  5722. }
  5723. .img-bordered {
  5724. border: 3px solid #d2d6de;
  5725. padding: 3px;
  5726. }
  5727. .img-bordered-sm {
  5728. border: 2px solid #d2d6de;
  5729. padding: 2px;
  5730. }
  5731. .attachment-block {
  5732. border: 1px solid #f4f4f4;
  5733. padding: 5px;
  5734. margin-bottom: 10px;
  5735. background: #f7f7f7;
  5736. }
  5737. .attachment-block .attachment-img {
  5738. max-width: 100px;
  5739. max-height: 100px;
  5740. height: auto;
  5741. float: left;
  5742. }
  5743. .attachment-block .attachment-pushed {
  5744. margin-left: 110px;
  5745. }
  5746. .attachment-block .attachment-heading {
  5747. margin: 0;
  5748. }
  5749. .attachment-block .attachment-text {
  5750. color: #555;
  5751. }
  5752. .connectedSortable {
  5753. min-height: 100px;
  5754. }
  5755. .ui-helper-hidden-accessible {
  5756. border: 0;
  5757. clip: rect(0 0 0 0);
  5758. height: 1px;
  5759. margin: -1px;
  5760. overflow: hidden;
  5761. padding: 0;
  5762. position: absolute;
  5763. width: 1px;
  5764. }
  5765. .sort-highlight {
  5766. background: #f4f4f4;
  5767. border: 1px dashed #ddd;
  5768. margin-bottom: 10px;
  5769. }
  5770. .full-opacity-hover {
  5771. opacity: 0.65;
  5772. filter: alpha(opacity=65);
  5773. }
  5774. .full-opacity-hover:hover {
  5775. opacity: 1;
  5776. filter: alpha(opacity=100);
  5777. }
  5778. .chart {
  5779. position: relative;
  5780. overflow: hidden;
  5781. width: 100%;
  5782. }
  5783. .chart svg,
  5784. .chart canvas {
  5785. width: 100% !important;
  5786. }
  5787. /*
  5788. * Misc: print
  5789. * -----------
  5790. */
  5791. @media print {
  5792. .no-print,
  5793. .main-sidebar,
  5794. .left-side,
  5795. .main-header,
  5796. .content-header {
  5797. display: none !important;
  5798. }
  5799. .content-wrapper,
  5800. .right-side,
  5801. .main-footer {
  5802. margin-left: 0 !important;
  5803. min-height: 0 !important;
  5804. -webkit-transform: translate(0, 0) !important;
  5805. -ms-transform: translate(0, 0) !important;
  5806. -o-transform: translate(0, 0) !important;
  5807. transform: translate(0, 0) !important;
  5808. }
  5809. .fixed .content-wrapper,
  5810. .fixed .right-side {
  5811. padding-top: 0 !important;
  5812. }
  5813. .invoice {
  5814. width: 100%;
  5815. border: 0;
  5816. margin: 0;
  5817. padding: 0;
  5818. }
  5819. .invoice-col {
  5820. float: left;
  5821. width: 33.3333333%;
  5822. }
  5823. .table-responsive {
  5824. overflow: auto;
  5825. }
  5826. .table-responsive > .table tr th,
  5827. .table-responsive > .table tr td {
  5828. white-space: normal !important;
  5829. }
  5830. }
  5831. /*# sourceMappingURL=fastadmin.css.map */