bootstrap-theme-combodo.scss 137 KB

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