fastadmin.css 134 KB

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