fastadmin.css 134 KB

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