bootstrap-theme-combodo.scss 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012
  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. form fieldset {
  1545. background-color: #f9f9f9;
  1546. }
  1547. legend {
  1548. display: block;
  1549. width: inherit;
  1550. padding: 0px 7px;
  1551. margin: 0px;
  1552. font-size: 1em;
  1553. font-weight: bold;
  1554. line-height: inherit;
  1555. color: $gray;
  1556. border: none;
  1557. }
  1558. label {
  1559. display: inline-block;
  1560. max-width: 100%;
  1561. margin-bottom: 5px;
  1562. font-weight: bold
  1563. }
  1564. input[type="search"] {
  1565. -webkit-box-sizing: border-box;
  1566. -moz-box-sizing: border-box;
  1567. box-sizing: border-box
  1568. }
  1569. input[type="radio"],
  1570. input[type="checkbox"] {
  1571. margin: 4px 0 0;
  1572. margin-top: 1px \9;
  1573. line-height: normal
  1574. }
  1575. input[type="file"] {
  1576. display: block
  1577. }
  1578. input[type="range"] {
  1579. display: block;
  1580. width: 100%
  1581. }
  1582. select[multiple],
  1583. select[size] {
  1584. height: auto
  1585. }
  1586. input[type="file"]:focus,
  1587. input[type="radio"]:focus,
  1588. input[type="checkbox"]:focus {
  1589. outline: thin dotted;
  1590. outline: 5px auto -webkit-focus-ring-color;
  1591. outline-offset: -2px
  1592. }
  1593. output {
  1594. display: block;
  1595. padding-top: 9px;
  1596. font-size: $font-size-base;
  1597. line-height: $line-height-base;
  1598. color: $gray
  1599. }
  1600. .form-control {
  1601. display: block;
  1602. width: 100%;
  1603. height: 36px;
  1604. padding: $padding-base-vertical $padding-base-horizontal;
  1605. font-size: $font-size-base;
  1606. line-height: $line-height-base;
  1607. color: $gray;
  1608. background-color: $white;
  1609. background-image: none;
  1610. border: 1px solid #dddddd;
  1611. border-radius: $border-radius-base;
  1612. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1613. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1614. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  1615. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  1616. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
  1617. }
  1618. .form-control:focus {
  1619. border-color: $brand-primary;
  1620. outline: 0;
  1621. -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 */
  1622. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(234, 125, 30, 0.6)
  1623. }
  1624. .form-control::-moz-placeholder {
  1625. color: #dddddd;
  1626. opacity: 1
  1627. }
  1628. .form-control:-ms-input-placeholder {
  1629. color: #dddddd
  1630. }
  1631. .form-control::-webkit-input-placeholder {
  1632. color: #dddddd
  1633. }
  1634. .form-control[disabled],
  1635. .form-control[readonly],
  1636. fieldset[disabled] .form-control {
  1637. background-color: #dddddd;
  1638. opacity: 1
  1639. }
  1640. .form-control[disabled],
  1641. fieldset[disabled] .form-control {
  1642. cursor: not-allowed
  1643. }
  1644. textarea.form-control {
  1645. height: 160px;
  1646. }
  1647. input[type="search"] {
  1648. -webkit-appearance: none
  1649. }
  1650. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  1651. input[type="date"].form-control,
  1652. input[type="time"].form-control,
  1653. input[type="datetime-local"].form-control,
  1654. input[type="month"].form-control {
  1655. line-height: 36px
  1656. }
  1657. input[type="date"].input-sm,
  1658. input[type="time"].input-sm,
  1659. input[type="datetime-local"].input-sm,
  1660. input[type="month"].input-sm,
  1661. .input-group-sm input[type="date"],
  1662. .input-group-sm input[type="time"],
  1663. .input-group-sm input[type="datetime-local"],
  1664. .input-group-sm input[type="month"] {
  1665. line-height: 30px
  1666. }
  1667. input[type="date"].input-lg,
  1668. input[type="time"].input-lg,
  1669. input[type="datetime-local"].input-lg,
  1670. input[type="month"].input-lg,
  1671. .input-group-lg input[type="date"],
  1672. .input-group-lg input[type="time"],
  1673. .input-group-lg input[type="datetime-local"],
  1674. .input-group-lg input[type="month"] {
  1675. line-height: 53px
  1676. }
  1677. }
  1678. .form-group {
  1679. margin-bottom: 15px
  1680. }
  1681. .radio,
  1682. .checkbox {
  1683. position: relative;
  1684. display: block;
  1685. margin-top: 10px;
  1686. margin-bottom: 10px
  1687. }
  1688. .radio label,
  1689. .checkbox label {
  1690. min-height: 18px;
  1691. padding-left: 20px;
  1692. margin-bottom: 0;
  1693. font-weight: normal;
  1694. cursor: pointer
  1695. }
  1696. .radio input[type="radio"],
  1697. .radio-inline input[type="radio"],
  1698. .checkbox input[type="checkbox"],
  1699. .checkbox-inline input[type="checkbox"] {
  1700. position: absolute;
  1701. margin-left: -20px;
  1702. margin-top: 4px \9
  1703. }
  1704. .radio+.radio,
  1705. .checkbox+.checkbox {
  1706. margin-top: -5px
  1707. }
  1708. .radio-inline,
  1709. .checkbox-inline {
  1710. position: relative;
  1711. display: inline-block;
  1712. padding-left: 20px;
  1713. margin-bottom: 0;
  1714. vertical-align: middle;
  1715. font-weight: normal;
  1716. cursor: pointer
  1717. }
  1718. .radio-inline+.radio-inline,
  1719. .checkbox-inline+.checkbox-inline {
  1720. margin-top: 0;
  1721. margin-left: 10px
  1722. }
  1723. input[type="radio"][disabled],
  1724. input[type="checkbox"][disabled],
  1725. input[type="radio"].disabled,
  1726. input[type="checkbox"].disabled,
  1727. fieldset[disabled] input[type="radio"],
  1728. fieldset[disabled] input[type="checkbox"] {
  1729. cursor: not-allowed
  1730. }
  1731. .radio-inline.disabled,
  1732. .checkbox-inline.disabled,
  1733. fieldset[disabled] .radio-inline,
  1734. fieldset[disabled] .checkbox-inline {
  1735. cursor: not-allowed
  1736. }
  1737. .radio.disabled label,
  1738. .checkbox.disabled label,
  1739. fieldset[disabled] .radio label,
  1740. fieldset[disabled] .checkbox label {
  1741. cursor: not-allowed
  1742. }
  1743. .form-control-static {
  1744. padding-top: 9px;
  1745. padding-bottom: 9px;
  1746. margin-bottom: 0;
  1747. min-height: 31px
  1748. }
  1749. .form-control-static.input-lg,
  1750. .form-control-static.input-sm {
  1751. padding-left: 0;
  1752. padding-right: 0
  1753. }
  1754. .input-sm {
  1755. height: 30px;
  1756. padding: $padding-small-vertical $padding-small-horizontal;
  1757. font-size: $font-size-small;
  1758. line-height: 1.5;
  1759. border-radius: $border-radius-small
  1760. }
  1761. select.input-sm {
  1762. height: 30px;
  1763. line-height: 30px
  1764. }
  1765. textarea.input-sm,
  1766. select[multiple].input-sm {
  1767. height: auto
  1768. }
  1769. .form-group-sm .form-control {
  1770. height: 30px;
  1771. padding: $padding-small-vertical $padding-small-horizontal;
  1772. font-size: $font-size-small;
  1773. line-height: 1.5;
  1774. border-radius: $border-radius-small
  1775. }
  1776. .form-group-sm select.form-control {
  1777. height: 30px;
  1778. line-height: 30px
  1779. }
  1780. .form-group-sm textarea.form-control,
  1781. .form-group-sm select[multiple].form-control {
  1782. height: auto
  1783. }
  1784. .form-group-sm .form-control-static {
  1785. height: 30px;
  1786. min-height: 30px;
  1787. padding: $padding-small-vertical $padding-small-horizontal;
  1788. font-size: $font-size-small;
  1789. line-height: 1.5
  1790. }
  1791. .input-lg {
  1792. height: 53px;
  1793. padding: $padding-large-vertical $padding-large-horizontal;
  1794. font-size: $font-size-large;
  1795. line-height: 1.3333333;
  1796. border-radius: $border-radius-large
  1797. }
  1798. select.input-lg {
  1799. height: 53px;
  1800. line-height: 53px
  1801. }
  1802. textarea.input-lg,
  1803. select[multiple].input-lg {
  1804. height: auto
  1805. }
  1806. .form-group-lg .form-control {
  1807. height: 53px;
  1808. padding: $padding-large-vertical $padding-large-horizontal;
  1809. font-size: $font-size-large;
  1810. line-height: 1.3333333;
  1811. border-radius: $border-radius-large
  1812. }
  1813. .form-group-lg select.form-control {
  1814. height: 53px;
  1815. line-height: 53px
  1816. }
  1817. .form-group-lg textarea.form-control,
  1818. .form-group-lg select[multiple].form-control {
  1819. height: auto
  1820. }
  1821. .form-group-lg .form-control-static {
  1822. height: 53px;
  1823. min-height: 35px;
  1824. padding: $padding-large-vertical $padding-large-horizontal;
  1825. font-size: $font-size-large;
  1826. line-height: 1.3333333
  1827. }
  1828. .has-feedback {
  1829. position: relative
  1830. }
  1831. .has-feedback .form-control {
  1832. padding-right: 45px
  1833. }
  1834. .form-control-feedback {
  1835. position: absolute;
  1836. top: 0;
  1837. right: 0;
  1838. z-index: 2;
  1839. display: block;
  1840. width: 36px;
  1841. height: 36px;
  1842. line-height: 36px;
  1843. text-align: center;
  1844. pointer-events: none
  1845. }
  1846. .input-lg+.form-control-feedback,
  1847. .input-group-lg+.form-control-feedback,
  1848. .form-group-lg .form-control+.form-control-feedback {
  1849. width: 53px;
  1850. height: 53px;
  1851. line-height: 53px
  1852. }
  1853. .input-sm+.form-control-feedback,
  1854. .input-group-sm+.form-control-feedback,
  1855. .form-group-sm .form-control+.form-control-feedback {
  1856. width: 30px;
  1857. height: 30px;
  1858. line-height: 30px
  1859. }
  1860. .has-success .help-block,
  1861. .has-success .control-label,
  1862. .has-success .radio,
  1863. .has-success .checkbox,
  1864. .has-success .radio-inline,
  1865. .has-success .checkbox-inline,
  1866. .has-success.radio label,
  1867. .has-success.checkbox label,
  1868. .has-success.radio-inline label,
  1869. .has-success.checkbox-inline label {
  1870. color: $state-success-text
  1871. }
  1872. .has-success .form-control {
  1873. border-color: $state-success-text;
  1874. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1875. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
  1876. }
  1877. .has-success .form-control:focus {
  1878. border-color: $state-success-border;
  1879. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  1880. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b
  1881. }
  1882. .has-success .input-group-addon {
  1883. color: $state-success-text;
  1884. border-color: $state-success-text;
  1885. background-color: $state-success-bg
  1886. }
  1887. .has-success .form-control-feedback {
  1888. color: $state-success-text
  1889. }
  1890. .has-warning .help-block,
  1891. .has-warning .control-label,
  1892. .has-warning .radio,
  1893. .has-warning .checkbox,
  1894. .has-warning .radio-inline,
  1895. .has-warning .checkbox-inline,
  1896. .has-warning.radio label,
  1897. .has-warning.checkbox label,
  1898. .has-warning.radio-inline label,
  1899. .has-warning.checkbox-inline label {
  1900. color: $state-warning-text
  1901. }
  1902. .has-warning .form-control {
  1903. border-color: $state-warning-text;
  1904. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1905. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
  1906. }
  1907. .has-warning .form-control:focus {
  1908. border-color: #a47e3c;
  1909. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  1910. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e
  1911. }
  1912. .has-warning .input-group-addon {
  1913. color: $state-warning-text;
  1914. border-color: $state-warning-text;
  1915. background-color: $state-warning-bg
  1916. }
  1917. .has-warning .form-control-feedback {
  1918. color: $state-warning-text
  1919. }
  1920. .has-error .help-block,
  1921. .has-error .control-label,
  1922. .has-error .radio,
  1923. .has-error .checkbox,
  1924. .has-error .radio-inline,
  1925. .has-error .checkbox-inline,
  1926. .has-error.radio label,
  1927. .has-error.checkbox label,
  1928. .has-error.radio-inline label,
  1929. .has-error.checkbox-inline label {
  1930. color: $state-danger-text
  1931. }
  1932. .has-error .form-control {
  1933. border-color: $state-danger-text;
  1934. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1935. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075)
  1936. }
  1937. .has-error .form-control:focus {
  1938. border-color: #953b39;
  1939. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  1940. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392
  1941. }
  1942. .has-error .input-group-addon {
  1943. color: $state-danger-text;
  1944. border-color: $state-danger-text;
  1945. background-color: $state-danger-bg
  1946. }
  1947. .has-error .form-control-feedback {
  1948. color: $state-danger-text
  1949. }
  1950. .has-feedback label~.form-control-feedback {
  1951. top: 23px
  1952. }
  1953. .has-feedback label.sr-only~.form-control-feedback {
  1954. top: 0
  1955. }
  1956. .help-block {
  1957. display: block;
  1958. margin-top: 5px;
  1959. margin-bottom: 10px;
  1960. color: #b7b7b7
  1961. }
  1962. @media (min-width: 768px) {
  1963. .form-inline .form-group {
  1964. display: inline-block;
  1965. margin-bottom: 0;
  1966. vertical-align: middle
  1967. }
  1968. .form-inline .form-control {
  1969. display: inline-block;
  1970. width: auto;
  1971. vertical-align: middle
  1972. }
  1973. .form-inline .form-control-static {
  1974. display: inline-block
  1975. }
  1976. .form-inline .input-group {
  1977. display: inline-table;
  1978. vertical-align: middle
  1979. }
  1980. .form-inline .input-group .input-group-addon,
  1981. .form-inline .input-group .input-group-btn,
  1982. .form-inline .input-group .form-control {
  1983. width: auto
  1984. }
  1985. .form-inline .input-group>.form-control {
  1986. width: 100%
  1987. }
  1988. .form-inline .control-label {
  1989. margin-bottom: 0;
  1990. vertical-align: middle
  1991. }
  1992. .form-inline .radio,
  1993. .form-inline .checkbox {
  1994. display: inline-block;
  1995. margin-top: 0;
  1996. margin-bottom: 0;
  1997. vertical-align: middle
  1998. }
  1999. .form-inline .radio label,
  2000. .form-inline .checkbox label {
  2001. padding-left: 0
  2002. }
  2003. .form-inline .radio input[type="radio"],
  2004. .form-inline .checkbox input[type="checkbox"] {
  2005. position: relative;
  2006. margin-left: 0
  2007. }
  2008. .form-inline .has-feedback .form-control-feedback {
  2009. top: 0
  2010. }
  2011. }
  2012. .form-horizontal .radio,
  2013. .form-horizontal .checkbox,
  2014. .form-horizontal .radio-inline,
  2015. .form-horizontal .checkbox-inline {
  2016. margin-top: 0;
  2017. margin-bottom: 0;
  2018. padding-top: 9px
  2019. }
  2020. .form-horizontal .radio,
  2021. .form-horizontal .checkbox {
  2022. min-height: 27px
  2023. }
  2024. .form-horizontal .form-group {
  2025. margin-left: -15px;
  2026. margin-right: -15px
  2027. }
  2028. @media (min-width: 768px) {
  2029. .form-horizontal .control-label {
  2030. text-align: right;
  2031. margin-bottom: 0;
  2032. padding-top: 9px
  2033. }
  2034. }
  2035. .form-horizontal .has-feedback .form-control-feedback {
  2036. right: 15px
  2037. }
  2038. @media (min-width: 768px) {
  2039. .form-horizontal .form-group-lg .control-label {
  2040. padding-top: 19.6666662px;
  2041. font-size: $font-size-large
  2042. }
  2043. }
  2044. @media (min-width: 768px) {
  2045. .form-horizontal .form-group-sm .control-label {
  2046. padding-top: 6px;
  2047. font-size: $font-size-small
  2048. }
  2049. }
  2050. .btn {
  2051. display: inline-block;
  2052. margin-bottom: 0;
  2053. font-weight: normal;
  2054. text-align: center;
  2055. vertical-align: middle;
  2056. -ms-touch-action: manipulation;
  2057. touch-action: manipulation;
  2058. cursor: pointer;
  2059. background-image: none;
  2060. border: 1px solid transparent;
  2061. white-space: nowrap;
  2062. padding: $padding-base-vertical $padding-base-horizontal;
  2063. font-size: $font-size-base;
  2064. line-height: $line-height-base;
  2065. border-radius: $border-radius-base;
  2066. -webkit-user-select: none;
  2067. -moz-user-select: none;
  2068. -ms-user-select: none;
  2069. user-select: none
  2070. }
  2071. .btn:focus,
  2072. .btn:active:focus,
  2073. .btn.active:focus,
  2074. .btn.focus,
  2075. .btn:active.focus,
  2076. .btn.active.focus {
  2077. outline: thin dotted;
  2078. outline: 5px auto -webkit-focus-ring-color;
  2079. outline-offset: -2px
  2080. }
  2081. .btn:hover,
  2082. .btn:focus,
  2083. .btn.focus {
  2084. color: $btn-color;
  2085. text-decoration: none
  2086. }
  2087. .btn:active,
  2088. .btn.active {
  2089. outline: 0;
  2090. background-image: none;
  2091. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2092. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
  2093. }
  2094. .btn.disabled,
  2095. .btn[disabled],
  2096. fieldset[disabled] .btn {
  2097. cursor: not-allowed;
  2098. opacity: 0.65;
  2099. filter: alpha(opacity=65);
  2100. -webkit-box-shadow: none;
  2101. box-shadow: none;
  2102. }
  2103. a.btn.disabled,
  2104. fieldset[disabled] a.btn {
  2105. pointer-events: none;
  2106. }
  2107. .btn-default {
  2108. color: $btn-default-color;
  2109. background-color: $btn-default-bg;
  2110. border: $btn-default-border;
  2111. }
  2112. .btn-default:focus,
  2113. .btn-default.focus {
  2114. color: $btn-default-color;
  2115. background-color: $btn-default-bg-hover;
  2116. border: $btn-default-border;
  2117. }
  2118. .btn-default:hover {
  2119. background-color: $btn-default-bg-hover;
  2120. border: $btn-default-border;
  2121. }
  2122. .btn-default:active,
  2123. .btn-default.active,
  2124. .open>.dropdown-toggle.btn-default {
  2125. background-color: $btn-default-bg-hover;
  2126. border: $btn-default-border;
  2127. }
  2128. .btn-default:active:hover,
  2129. .btn-default.active:hover,
  2130. .open>.dropdown-toggle.btn-default:hover,
  2131. .btn-default:active:focus,
  2132. .btn-default.active:focus,
  2133. .open>.dropdown-toggle.btn-default:focus,
  2134. .btn-default:active.focus,
  2135. .btn-default.active.focus,
  2136. .open>.dropdown-toggle.btn-default.focus {
  2137. background-color: $btn-default-bg-hover;
  2138. border: $btn-default-border;
  2139. }
  2140. .btn-default:active,
  2141. .btn-default.active,
  2142. .open>.dropdown-toggle.btn-default {
  2143. background-color: $btn-default-bg-hover;
  2144. border: $btn-default-border;
  2145. }
  2146. .btn-default.disabled,
  2147. .btn-default[disabled],
  2148. fieldset[disabled] .btn-default,
  2149. .btn-default.disabled:hover,
  2150. .btn-default[disabled]:hover,
  2151. fieldset[disabled] .btn-default:hover,
  2152. .btn-default.disabled:focus,
  2153. .btn-default[disabled]:focus,
  2154. fieldset[disabled] .btn-default:focus,
  2155. .btn-default.disabled.focus,
  2156. .btn-default[disabled].focus,
  2157. fieldset[disabled] .btn-default.focus,
  2158. .btn-default.disabled:active,
  2159. .btn-default[disabled]:active,
  2160. fieldset[disabled] .btn-default:active,
  2161. .btn-default.disabled.active,
  2162. .btn-default[disabled].active,
  2163. fieldset[disabled] .btn-default.active {
  2164. background-color: #BBBBBB;
  2165. border-color: $gray-light;
  2166. }
  2167. .btn-default .badge {
  2168. color: #474949;
  2169. background-color: #ffffff
  2170. }
  2171. .btn-primary {
  2172. color: $btn-primary-color;
  2173. background-color: $btn-primary-bg;
  2174. border: $btn-primary-border;
  2175. }
  2176. .btn-primary:focus,
  2177. .btn-primary.focus {
  2178. background-color: $btn-primary-bg-hover;
  2179. border: $btn-primary-border;
  2180. }
  2181. .btn-primary:hover {
  2182. background-color: $btn-primary-bg-hover;
  2183. border: $btn-primary-border;
  2184. }
  2185. .btn-primary:active,
  2186. .btn-primary.active,
  2187. .open>.dropdown-toggle.btn-primary {
  2188. background-color: $btn-primary-bg-hover;
  2189. border: $btn-primary-border;
  2190. }
  2191. .btn-primary:active:hover,
  2192. .btn-primary.active:hover,
  2193. .open>.dropdown-toggle.btn-primary:hover,
  2194. .btn-primary:active:focus,
  2195. .btn-primary.active:focus,
  2196. .open>.dropdown-toggle.btn-primary:focus,
  2197. .btn-primary:active.focus,
  2198. .btn-primary.active.focus,
  2199. .open>.dropdown-toggle.btn-primary.focus {
  2200. background-color: $btn-primary-bg-hover;
  2201. border: $btn-primary-border;
  2202. }
  2203. .btn-primary:active,
  2204. .btn-primary.active,
  2205. .open>.dropdown-toggle.btn-primary {
  2206. background-color: $btn-primary-bg-hover;
  2207. border: $btn-primary-border;
  2208. }
  2209. .btn-primary.disabled,
  2210. .btn-primary[disabled],
  2211. fieldset[disabled] .btn-primary,
  2212. .btn-primary.disabled:hover,
  2213. .btn-primary[disabled]:hover,
  2214. fieldset[disabled] .btn-primary:hover,
  2215. .btn-primary.disabled:focus,
  2216. .btn-primary[disabled]:focus,
  2217. fieldset[disabled] .btn-primary:focus,
  2218. .btn-primary.disabled.focus,
  2219. .btn-primary[disabled].focus,
  2220. fieldset[disabled] .btn-primary.focus,
  2221. .btn-primary.disabled:active,
  2222. .btn-primary[disabled]:active,
  2223. fieldset[disabled] .btn-primary:active,
  2224. .btn-primary.disabled.active,
  2225. .btn-primary[disabled].active,
  2226. fieldset[disabled] .btn-primary.active {
  2227. background-color: $brand-primary;
  2228. border-color: $brand-primary
  2229. }
  2230. .btn-primary .badge {
  2231. color: $brand-primary;
  2232. background-color: #ffffff
  2233. }
  2234. .btn-success {
  2235. color: $btn-success-color;
  2236. background-color: $btn-success-bg;
  2237. border: $btn-success-border
  2238. }
  2239. .btn-success:focus,
  2240. .btn-success.focus {
  2241. background-color: $btn-success-bg-hover;
  2242. border: $btn-success-border
  2243. }
  2244. .btn-success:hover {
  2245. background-color: $btn-success-bg-hover;
  2246. border: $btn-success-border
  2247. }
  2248. .btn-success:active,
  2249. .btn-success.active,
  2250. .open>.dropdown-toggle.btn-success {
  2251. background-color: $btn-success-bg-hover;
  2252. border: $btn-success-border
  2253. }
  2254. .btn-success:active:hover,
  2255. .btn-success.active:hover,
  2256. .open>.dropdown-toggle.btn-success:hover,
  2257. .btn-success:active:focus,
  2258. .btn-success.active:focus,
  2259. .open>.dropdown-toggle.btn-success:focus,
  2260. .btn-success:active.focus,
  2261. .btn-success.active.focus,
  2262. .open>.dropdown-toggle.btn-success.focus {
  2263. background-color: $btn-success-bg-hover;
  2264. border: $btn-success-border
  2265. }
  2266. .btn-success:active,
  2267. .btn-success.active,
  2268. .open>.dropdown-toggle.btn-success {
  2269. background-color: $btn-success-bg-hover;
  2270. border: $btn-success-border
  2271. }
  2272. .btn-success.disabled,
  2273. .btn-success[disabled],
  2274. fieldset[disabled] .btn-success,
  2275. .btn-success.disabled:hover,
  2276. .btn-success[disabled]:hover,
  2277. fieldset[disabled] .btn-success:hover,
  2278. .btn-success.disabled:focus,
  2279. .btn-success[disabled]:focus,
  2280. fieldset[disabled] .btn-success:focus,
  2281. .btn-success.disabled.focus,
  2282. .btn-success[disabled].focus,
  2283. fieldset[disabled] .btn-success.focus,
  2284. .btn-success.disabled:active,
  2285. .btn-success[disabled]:active,
  2286. fieldset[disabled] .btn-success:active,
  2287. .btn-success.disabled.active,
  2288. .btn-success[disabled].active,
  2289. fieldset[disabled] .btn-success.active {
  2290. background-color: #469408;
  2291. border-color: #469408
  2292. }
  2293. .btn-success .badge {
  2294. color: $btn-success-color;
  2295. background-color: $btn-success-bg;
  2296. }
  2297. .btn-info {
  2298. color: $btn-info-color;
  2299. background-color: $btn-info-bg;
  2300. border: $btn-info-border
  2301. }
  2302. .btn-info:focus,
  2303. .btn-info.focus {
  2304. background-color: $btn-info-bg-hover;
  2305. border: $btn-info-border
  2306. }
  2307. .btn-info:hover {
  2308. background-color: $btn-info-bg-hover;
  2309. border: $btn-info-border
  2310. }
  2311. .btn-info:active,
  2312. .btn-info.active,
  2313. .open>.dropdown-toggle.btn-info {
  2314. background-color: $btn-info-bg-hover;
  2315. border: $btn-info-border
  2316. }
  2317. .btn-info:active:hover,
  2318. .btn-info.active:hover,
  2319. .open>.dropdown-toggle.btn-info:hover,
  2320. .btn-info:active:focus,
  2321. .btn-info.active:focus,
  2322. .open>.dropdown-toggle.btn-info:focus,
  2323. .btn-info:active.focus,
  2324. .btn-info.active.focus,
  2325. .open>.dropdown-toggle.btn-info.focus {
  2326. background-color: $btn-info-bg-hover;
  2327. border: $btn-info-border
  2328. }
  2329. .btn-info:active,
  2330. .btn-info.active,
  2331. .open>.dropdown-toggle.btn-info {
  2332. background-color: $btn-info-bg-hover;
  2333. border: $btn-info-border
  2334. }
  2335. .btn-info.disabled,
  2336. .btn-info[disabled],
  2337. fieldset[disabled] .btn-info,
  2338. .btn-info.disabled:hover,
  2339. .btn-info[disabled]:hover,
  2340. fieldset[disabled] .btn-info:hover,
  2341. .btn-info.disabled:focus,
  2342. .btn-info[disabled]:focus,
  2343. fieldset[disabled] .btn-info:focus,
  2344. .btn-info.disabled.focus,
  2345. .btn-info[disabled].focus,
  2346. fieldset[disabled] .btn-info.focus,
  2347. .btn-info.disabled:active,
  2348. .btn-info[disabled]:active,
  2349. fieldset[disabled] .btn-info:active,
  2350. .btn-info.disabled.active,
  2351. .btn-info[disabled].active,
  2352. fieldset[disabled] .btn-info.active {
  2353. background-color: #029acf;
  2354. border-color: #029acf
  2355. }
  2356. .btn-info .badge {
  2357. color: $btn-info-color;
  2358. background-color: $btn-info-bg;
  2359. }
  2360. .btn-warning {
  2361. color: $btn-warning-color;
  2362. background-color: $btn-warning-bg;
  2363. border: $btn-warning-border
  2364. }
  2365. .btn-warning:focus,
  2366. .btn-warning.focus {
  2367. background-color: $btn-warning-bg-hover;
  2368. border: $btn-warning-border;
  2369. }
  2370. .btn-warning:hover {
  2371. background-color: $btn-warning-bg-hover;
  2372. border: $btn-warning-border;
  2373. }
  2374. .btn-warning:active,
  2375. .btn-warning.active,
  2376. .open>.dropdown-toggle.btn-warning {
  2377. background-color: $btn-warning-bg-hover;
  2378. border: $btn-warning-border;
  2379. }
  2380. .btn-warning:active:hover,
  2381. .btn-warning.active:hover,
  2382. .open>.dropdown-toggle.btn-warning:hover,
  2383. .btn-warning:active:focus,
  2384. .btn-warning.active:focus,
  2385. .open>.dropdown-toggle.btn-warning:focus,
  2386. .btn-warning:active.focus,
  2387. .btn-warning.active.focus,
  2388. .open>.dropdown-toggle.btn-warning.focus {
  2389. background-color: $btn-warning-bg-hover;
  2390. border: $btn-warning-border;
  2391. }
  2392. .btn-warning:active,
  2393. .btn-warning.active,
  2394. .open>.dropdown-toggle.btn-warning {
  2395. background-color: $btn-warning-bg-hover;
  2396. border: $btn-warning-border;
  2397. }
  2398. .btn-warning.disabled,
  2399. .btn-warning[disabled],
  2400. fieldset[disabled] .btn-warning,
  2401. .btn-warning.disabled:hover,
  2402. .btn-warning[disabled]:hover,
  2403. fieldset[disabled] .btn-warning:hover,
  2404. .btn-warning.disabled:focus,
  2405. .btn-warning[disabled]:focus,
  2406. fieldset[disabled] .btn-warning:focus,
  2407. .btn-warning.disabled.focus,
  2408. .btn-warning[disabled].focus,
  2409. fieldset[disabled] .btn-warning.focus,
  2410. .btn-warning.disabled:active,
  2411. .btn-warning[disabled]:active,
  2412. fieldset[disabled] .btn-warning:active,
  2413. .btn-warning.disabled.active,
  2414. .btn-warning[disabled].active,
  2415. fieldset[disabled] .btn-warning.active {
  2416. background-color: #9b479f;
  2417. border-color: #9b479f
  2418. }
  2419. .btn-warning .badge {
  2420. color: $btn-warning-color;
  2421. background-color: $btn-warning-bg;
  2422. }
  2423. .btn-danger {
  2424. color: $btn-danger-color;
  2425. background-color: $btn-danger-bg;
  2426. border: $btn-danger-border;
  2427. }
  2428. .btn-danger:focus,
  2429. .btn-danger.focus {
  2430. background-color: $btn-danger-bg-hover;
  2431. border: $btn-danger-border;
  2432. }
  2433. .btn-danger:hover {
  2434. background-color: $btn-danger-bg-hover;
  2435. border: $btn-danger-border;
  2436. }
  2437. .btn-danger:active,
  2438. .btn-danger.active,
  2439. .open>.dropdown-toggle.btn-danger {
  2440. background-color: $btn-danger-bg-hover;
  2441. border: $btn-danger-border;
  2442. }
  2443. .btn-danger:active:hover,
  2444. .btn-danger.active:hover,
  2445. .open>.dropdown-toggle.btn-danger:hover,
  2446. .btn-danger:active:focus,
  2447. .btn-danger.active:focus,
  2448. .open>.dropdown-toggle.btn-danger:focus,
  2449. .btn-danger:active.focus,
  2450. .btn-danger.active.focus,
  2451. .open>.dropdown-toggle.btn-danger.focus {
  2452. background-color: $btn-danger-bg-hover;
  2453. border: $btn-danger-border;
  2454. }
  2455. .btn-danger:active,
  2456. .btn-danger.active,
  2457. .open>.dropdown-toggle.btn-danger {
  2458. background-color: $btn-danger-bg-hover;
  2459. border: $btn-danger-border;
  2460. }
  2461. .btn-danger.disabled,
  2462. .btn-danger[disabled],
  2463. fieldset[disabled] .btn-danger,
  2464. .btn-danger.disabled:hover,
  2465. .btn-danger[disabled]:hover,
  2466. fieldset[disabled] .btn-danger:hover,
  2467. .btn-danger.disabled:focus,
  2468. .btn-danger[disabled]:focus,
  2469. fieldset[disabled] .btn-danger:focus,
  2470. .btn-danger.disabled.focus,
  2471. .btn-danger[disabled].focus,
  2472. fieldset[disabled] .btn-danger.focus,
  2473. .btn-danger.disabled:active,
  2474. .btn-danger[disabled]:active,
  2475. fieldset[disabled] .btn-danger:active,
  2476. .btn-danger.disabled.active,
  2477. .btn-danger[disabled].active,
  2478. fieldset[disabled] .btn-danger.active {
  2479. background-color: #d9831f;
  2480. border-color: #d9831f
  2481. }
  2482. .btn-danger .badge {
  2483. color: $btn-danger-color;
  2484. background-color: $btn-danger-bg;
  2485. }
  2486. .btn-link {
  2487. color: $brand-primary;
  2488. font-weight: normal;
  2489. border-radius: 0
  2490. }
  2491. .btn-link,
  2492. .btn-link:active,
  2493. .btn-link.active,
  2494. .btn-link[disabled],
  2495. fieldset[disabled] .btn-link {
  2496. background-color: transparent;
  2497. -webkit-box-shadow: none;
  2498. box-shadow: none
  2499. }
  2500. .btn-link,
  2501. .btn-link:hover,
  2502. .btn-link:focus,
  2503. .btn-link:active {
  2504. border-color: transparent
  2505. }
  2506. .btn-link:hover,
  2507. .btn-link:focus {
  2508. color: #91170a;
  2509. text-decoration: underline;
  2510. background-color: transparent
  2511. }
  2512. .btn-link[disabled]:hover,
  2513. fieldset[disabled] .btn-link:hover,
  2514. .btn-link[disabled]:focus,
  2515. fieldset[disabled] .btn-link:focus {
  2516. color: #808080;
  2517. text-decoration: none
  2518. }
  2519. .btn-lg,
  2520. .btn-group-lg>.btn {
  2521. padding: $padding-large-vertical $padding-large-horizontal;
  2522. font-size: $font-size-large;
  2523. line-height: 1.3333333;
  2524. border-radius: $border-radius-large
  2525. }
  2526. .btn-sm,
  2527. .btn-group-sm>.btn {
  2528. padding: $padding-small-vertical $padding-small-horizontal;
  2529. font-size: $font-size-small;
  2530. line-height: 1.5;
  2531. border-radius: $border-radius-small
  2532. }
  2533. .btn-xs,
  2534. .btn-group-xs>.btn {
  2535. padding: $padding-xs-vertical $padding-xs-horizontal;
  2536. font-size: $font-size-small;
  2537. line-height: 1.5;
  2538. border-radius: $border-radius-small
  2539. }
  2540. .btn-block {
  2541. display: block;
  2542. width: 100%
  2543. }
  2544. .btn-block+.btn-block {
  2545. margin-top: 5px
  2546. }
  2547. input[type="submit"].btn-block,
  2548. input[type="reset"].btn-block,
  2549. input[type="button"].btn-block {
  2550. width: 100%
  2551. }
  2552. .fade {
  2553. opacity: 0;
  2554. -webkit-transition: opacity 0.15s linear;
  2555. -o-transition: opacity 0.15s linear;
  2556. transition: opacity 0.15s linear
  2557. }
  2558. .fade.in {
  2559. opacity: 1
  2560. }
  2561. .collapse {
  2562. display: none
  2563. }
  2564. .collapse.in {
  2565. display: block
  2566. }
  2567. tr.collapse.in {
  2568. display: table-row
  2569. }
  2570. tbody.collapse.in {
  2571. display: table-row-group
  2572. }
  2573. .collapsing {
  2574. position: relative;
  2575. height: 0;
  2576. overflow: hidden;
  2577. -webkit-transition-property: height, visibility;
  2578. -o-transition-property: height, visibility;
  2579. transition-property: height, visibility;
  2580. -webkit-transition-duration: 0.35s;
  2581. -o-transition-duration: 0.35s;
  2582. transition-duration: 0.35s;
  2583. -webkit-transition-timing-function: ease;
  2584. -o-transition-timing-function: ease;
  2585. transition-timing-function: ease
  2586. }
  2587. .caret {
  2588. display: inline-block;
  2589. width: 0;
  2590. height: 0;
  2591. margin-left: 2px;
  2592. vertical-align: middle;
  2593. border-top: 4px dashed;
  2594. border-top: 4px solid \9;
  2595. border-right: 4px solid transparent;
  2596. border-left: 4px solid transparent
  2597. }
  2598. .divider{
  2599. height: 1px;
  2600. margin: 8px 15px;
  2601. overflow: hidden;
  2602. background-color: $combodo-dark-gray-dark;
  2603. opacity: 0.6;
  2604. }
  2605. .dropup,
  2606. .dropdown {
  2607. position: relative
  2608. }
  2609. .dropdown-toggle:focus {
  2610. outline: 0
  2611. }
  2612. .dropdown-menu {
  2613. position: absolute;
  2614. top: 100%;
  2615. left: 0;
  2616. z-index: 1000;
  2617. display: none;
  2618. float: left;
  2619. min-width: 160px;
  2620. padding: 5px 0;
  2621. margin: 2px 0 0;
  2622. list-style: none;
  2623. font-size: $font-size-base;
  2624. text-align: left;
  2625. background-color: #ffffff;
  2626. border: 1px solid #cccccc;
  2627. border: 1px solid rgba(0, 0, 0, 0.15);
  2628. border-radius: $border-radius-base;
  2629. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2630. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  2631. -webkit-background-clip: padding-box;
  2632. background-clip: padding-box
  2633. }
  2634. .dropdown-menu.pull-right {
  2635. right: 0;
  2636. left: auto
  2637. }
  2638. .dropdown-menu .divider {
  2639. height: 1px;
  2640. margin: 8px 15px;
  2641. overflow: hidden;
  2642. background-color: #e5e5e5;
  2643. opacity: 0.6;
  2644. }
  2645. .dropdown-menu>li>a {
  2646. display: block;
  2647. padding: 3px 20px;
  2648. clear: both;
  2649. font-weight: normal;
  2650. line-height: $line-height-base;
  2651. color: #444444;
  2652. white-space: nowrap;
  2653. overflow-x: hidden;
  2654. text-overflow: ellipsis;
  2655. }
  2656. .dropdown-menu>li>a:hover,
  2657. .dropdown-menu>li>a:focus {
  2658. text-decoration: none;
  2659. color: #ffffff;
  2660. background-color: $brand-primary
  2661. }
  2662. .dropdown-menu>.active>a,
  2663. .dropdown-menu>.active>a:hover,
  2664. .dropdown-menu>.active>a:focus {
  2665. color: #ffffff;
  2666. text-decoration: none;
  2667. outline: 0;
  2668. background-color: $brand-primary
  2669. }
  2670. .dropdown-menu>.disabled>a,
  2671. .dropdown-menu>.disabled>a:hover,
  2672. .dropdown-menu>.disabled>a:focus {
  2673. color: #808080
  2674. }
  2675. .dropdown-menu>.disabled>a:hover,
  2676. .dropdown-menu>.disabled>a:focus {
  2677. text-decoration: none;
  2678. background-color: transparent;
  2679. background-image: none;
  2680. filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
  2681. cursor: not-allowed
  2682. }
  2683. .open>.dropdown-menu {
  2684. display: block
  2685. }
  2686. .open>a {
  2687. outline: 0
  2688. }
  2689. .dropdown-menu-right {
  2690. left: auto;
  2691. right: 0
  2692. }
  2693. .dropdown-menu-left {
  2694. left: 0;
  2695. right: auto
  2696. }
  2697. .dropdown-header {
  2698. display: block;
  2699. padding: 3px 20px;
  2700. font-size: $font-size-small;
  2701. line-height: $line-height-base;
  2702. color: #808080;
  2703. white-space: nowrap
  2704. }
  2705. .dropdown-backdrop {
  2706. position: fixed;
  2707. left: 0;
  2708. right: 0;
  2709. bottom: 0;
  2710. top: 0;
  2711. z-index: 990
  2712. }
  2713. .pull-right>.dropdown-menu {
  2714. right: 0;
  2715. left: auto
  2716. }
  2717. .dropup .caret,
  2718. .navbar-fixed-bottom .dropdown .caret {
  2719. border-top: 0;
  2720. border-bottom: 4px dashed;
  2721. border-bottom: 4px solid \9;
  2722. content: ""
  2723. }
  2724. .dropup .dropdown-menu,
  2725. .navbar-fixed-bottom .dropdown .dropdown-menu {
  2726. top: auto;
  2727. bottom: 100%;
  2728. margin-bottom: 2px
  2729. }
  2730. @media (min-width: 768px) {
  2731. .navbar-right .dropdown-menu {
  2732. left: auto;
  2733. right: 0
  2734. }
  2735. .navbar-right .dropdown-menu-left {
  2736. left: 0;
  2737. right: auto
  2738. }
  2739. }
  2740. .btn-group,
  2741. .btn-group-vertical {
  2742. position: relative;
  2743. display: inline-block;
  2744. vertical-align: middle
  2745. }
  2746. .btn-group>.btn,
  2747. .btn-group-vertical>.btn {
  2748. position: relative;
  2749. float: left
  2750. }
  2751. .btn-group>.btn:hover,
  2752. .btn-group-vertical>.btn:hover,
  2753. .btn-group>.btn:focus,
  2754. .btn-group-vertical>.btn:focus,
  2755. .btn-group>.btn:active,
  2756. .btn-group-vertical>.btn:active,
  2757. .btn-group>.btn.active,
  2758. .btn-group-vertical>.btn.active {
  2759. z-index: 2
  2760. }
  2761. .btn-group .btn+.btn,
  2762. .btn-group .btn+.btn-group,
  2763. .btn-group .btn-group+.btn,
  2764. .btn-group .btn-group+.btn-group {
  2765. margin-left: -1px
  2766. }
  2767. .btn-toolbar {
  2768. margin-left: -5px
  2769. }
  2770. .btn-toolbar .btn,
  2771. .btn-toolbar .btn-group,
  2772. .btn-toolbar .input-group {
  2773. float: left
  2774. }
  2775. .btn-toolbar>.btn,
  2776. .btn-toolbar>.btn-group,
  2777. .btn-toolbar>.input-group {
  2778. margin-left: 5px
  2779. }
  2780. .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  2781. border-radius: 0
  2782. }
  2783. .btn-group>.btn:first-child {
  2784. margin-left: 0
  2785. }
  2786. .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  2787. border-bottom-right-radius: 0;
  2788. border-top-right-radius: 0
  2789. }
  2790. .btn-group>.btn:last-child:not(:first-child),
  2791. .btn-group>.dropdown-toggle:not(:first-child) {
  2792. border-bottom-left-radius: 0;
  2793. border-top-left-radius: 0
  2794. }
  2795. .btn-group>.btn-group {
  2796. float: left
  2797. }
  2798. .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
  2799. border-radius: 0
  2800. }
  2801. .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
  2802. .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
  2803. border-bottom-right-radius: 0;
  2804. border-top-right-radius: 0
  2805. }
  2806. .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
  2807. border-bottom-left-radius: 0;
  2808. border-top-left-radius: 0
  2809. }
  2810. .btn-group .dropdown-toggle:active,
  2811. .btn-group.open .dropdown-toggle {
  2812. outline: 0
  2813. }
  2814. .btn-group>.btn+.dropdown-toggle {
  2815. padding-left: 8px;
  2816. padding-right: 8px
  2817. }
  2818. .btn-group>.btn-lg+.dropdown-toggle {
  2819. padding-left: 12px;
  2820. padding-right: 12px
  2821. }
  2822. .btn-group.open .dropdown-toggle {
  2823. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2824. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125)
  2825. }
  2826. .btn-group.open .dropdown-toggle.btn-link {
  2827. -webkit-box-shadow: none;
  2828. box-shadow: none
  2829. }
  2830. .btn .caret {
  2831. margin-left: 0
  2832. }
  2833. .btn-lg .caret {
  2834. border-width: 5px 5px 0;
  2835. border-bottom-width: 0
  2836. }
  2837. .dropup .btn-lg .caret {
  2838. border-width: 0 5px 5px
  2839. }
  2840. .btn-group-vertical>.btn,
  2841. .btn-group-vertical>.btn-group,
  2842. .btn-group-vertical>.btn-group>.btn {
  2843. display: block;
  2844. float: none;
  2845. width: 100%;
  2846. max-width: 100%
  2847. }
  2848. .btn-group-vertical>.btn-group>.btn {
  2849. float: none
  2850. }
  2851. .btn-group-vertical>.btn+.btn,
  2852. .btn-group-vertical>.btn+.btn-group,
  2853. .btn-group-vertical>.btn-group+.btn,
  2854. .btn-group-vertical>.btn-group+.btn-group {
  2855. margin-top: -1px;
  2856. margin-left: 0
  2857. }
  2858. .btn-group-vertical>.btn:not(:first-child):not(:last-child) {
  2859. border-radius: 0
  2860. }
  2861. .btn-group-vertical>.btn:first-child:not(:last-child) {
  2862. border-top-right-radius: 4px;
  2863. border-bottom-right-radius: 0;
  2864. border-bottom-left-radius: 0
  2865. }
  2866. .btn-group-vertical>.btn:last-child:not(:first-child) {
  2867. border-bottom-left-radius: 4px;
  2868. border-top-right-radius: 0;
  2869. border-top-left-radius: 0
  2870. }
  2871. .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
  2872. border-radius: 0
  2873. }
  2874. .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
  2875. .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
  2876. border-bottom-right-radius: 0;
  2877. border-bottom-left-radius: 0
  2878. }
  2879. .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
  2880. border-top-right-radius: 0;
  2881. border-top-left-radius: 0
  2882. }
  2883. .btn-group-justified {
  2884. display: table;
  2885. width: 100%;
  2886. table-layout: fixed;
  2887. border-collapse: separate
  2888. }
  2889. .btn-group-justified>.btn,
  2890. .btn-group-justified>.btn-group {
  2891. float: none;
  2892. display: table-cell;
  2893. width: 1%
  2894. }
  2895. .btn-group-justified>.btn-group .btn {
  2896. width: 100%
  2897. }
  2898. .btn-group-justified>.btn-group .dropdown-menu {
  2899. left: auto
  2900. }
  2901. [data-toggle="buttons"]>.btn input[type="radio"],
  2902. [data-toggle="buttons"]>.btn-group>.btn input[type="radio"],
  2903. [data-toggle="buttons"]>.btn input[type="checkbox"],
  2904. [data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"] {
  2905. position: absolute;
  2906. clip: rect(0, 0, 0, 0);
  2907. pointer-events: none
  2908. }
  2909. .input-group {
  2910. position: relative;
  2911. display: table;
  2912. border-collapse: separate
  2913. }
  2914. .input-group[class*="col-"] {
  2915. float: none;
  2916. padding-left: 0;
  2917. padding-right: 0
  2918. }
  2919. .input-group .form-control {
  2920. position: relative;
  2921. z-index: 2;
  2922. float: left;
  2923. width: 100%;
  2924. margin-bottom: 0
  2925. }
  2926. .input-group-lg>.form-control,
  2927. .input-group-lg>.input-group-addon,
  2928. .input-group-lg>.input-group-btn>.btn {
  2929. height: 53px;
  2930. padding: $padding-large-vertical $padding-large-horizontal;
  2931. font-size: $font-size-large;
  2932. line-height: 1.3333333;
  2933. border-radius: $border-radius-large
  2934. }
  2935. select.input-group-lg>.form-control,
  2936. select.input-group-lg>.input-group-addon,
  2937. select.input-group-lg>.input-group-btn>.btn {
  2938. height: 53px;
  2939. line-height: 53px
  2940. }
  2941. textarea.input-group-lg>.form-control,
  2942. textarea.input-group-lg>.input-group-addon,
  2943. textarea.input-group-lg>.input-group-btn>.btn,
  2944. select[multiple].input-group-lg>.form-control,
  2945. select[multiple].input-group-lg>.input-group-addon,
  2946. select[multiple].input-group-lg>.input-group-btn>.btn {
  2947. height: auto
  2948. }
  2949. .input-group-sm>.form-control,
  2950. .input-group-sm>.input-group-addon,
  2951. .input-group-sm>.input-group-btn>.btn {
  2952. height: 30px;
  2953. padding: $padding-small-vertical $padding-small-horizontal;
  2954. font-size: $font-size-small;
  2955. line-height: 1.5;
  2956. border-radius: $border-radius-small
  2957. }
  2958. select.input-group-sm>.form-control,
  2959. select.input-group-sm>.input-group-addon,
  2960. select.input-group-sm>.input-group-btn>.btn {
  2961. height: 30px;
  2962. line-height: 30px
  2963. }
  2964. textarea.input-group-sm>.form-control,
  2965. textarea.input-group-sm>.input-group-addon,
  2966. textarea.input-group-sm>.input-group-btn>.btn,
  2967. select[multiple].input-group-sm>.form-control,
  2968. select[multiple].input-group-sm>.input-group-addon,
  2969. select[multiple].input-group-sm>.input-group-btn>.btn {
  2970. height: auto
  2971. }
  2972. .input-group-addon,
  2973. .input-group-btn,
  2974. .input-group .form-control {
  2975. display: table-cell
  2976. }
  2977. .input-group-addon:not(:first-child):not(:last-child),
  2978. .input-group-btn:not(:first-child):not(:last-child),
  2979. .input-group .form-control:not(:first-child):not(:last-child) {
  2980. border-radius: 0
  2981. }
  2982. .input-group-addon,
  2983. .input-group-btn {
  2984. width: 1%;
  2985. white-space: nowrap;
  2986. vertical-align: middle
  2987. }
  2988. .input-group-addon {
  2989. padding: $padding-base-vertical $padding-base-horizontal;
  2990. font-size: $font-size-base;
  2991. font-weight: normal;
  2992. line-height: 1;
  2993. color: $gray;
  2994. text-align: center;
  2995. background-color: #dddddd;
  2996. border: 1px solid #dddddd;
  2997. border-radius: $border-radius-base
  2998. }
  2999. .input-group-addon.input-sm {
  3000. padding: $padding-small-vertical $padding-small-horizontal;
  3001. font-size: $font-size-small;
  3002. border-radius: $border-radius-small
  3003. }
  3004. .input-group-addon.input-lg {
  3005. padding: $padding-large-vertical $padding-large-horizontal;
  3006. font-size: $font-size-large;
  3007. border-radius: $border-radius-large
  3008. }
  3009. .input-group-addon input[type="radio"],
  3010. .input-group-addon input[type="checkbox"] {
  3011. margin-top: 0
  3012. }
  3013. .input-group .form-control:first-child,
  3014. .input-group-addon:first-child,
  3015. .input-group-btn:first-child>.btn,
  3016. .input-group-btn:first-child>.btn-group>.btn,
  3017. .input-group-btn:first-child>.dropdown-toggle,
  3018. .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),
  3019. .input-group-btn:last-child>.btn-group:not(:last-child)>.btn {
  3020. border-bottom-right-radius: 0;
  3021. border-top-right-radius: 0
  3022. }
  3023. .input-group-addon:first-child {
  3024. border-right: 0
  3025. }
  3026. .input-group .form-control:last-child,
  3027. .input-group-addon:last-child,
  3028. .input-group-btn:last-child>.btn,
  3029. .input-group-btn:last-child>.btn-group>.btn,
  3030. .input-group-btn:last-child>.dropdown-toggle,
  3031. .input-group-btn:first-child>.btn:not(:first-child),
  3032. .input-group-btn:first-child>.btn-group:not(:first-child)>.btn {
  3033. border-bottom-left-radius: 0;
  3034. border-top-left-radius: 0
  3035. }
  3036. .input-group-addon:last-child {
  3037. border-left: 0
  3038. }
  3039. .input-group-btn {
  3040. position: relative;
  3041. font-size: 0;
  3042. white-space: nowrap
  3043. }
  3044. .input-group-btn>.btn {
  3045. position: relative
  3046. }
  3047. .input-group-btn>.btn+.btn {
  3048. margin-left: -1px
  3049. }
  3050. .input-group-btn>.btn:hover,
  3051. .input-group-btn>.btn:focus,
  3052. .input-group-btn>.btn:active {
  3053. z-index: 2
  3054. }
  3055. .input-group-btn:first-child>.btn,
  3056. .input-group-btn:first-child>.btn-group {
  3057. margin-right: -1px
  3058. }
  3059. .input-group-btn:last-child>.btn,
  3060. .input-group-btn:last-child>.btn-group {
  3061. z-index: 2;
  3062. margin-left: -1px
  3063. }
  3064. .nav {
  3065. margin-bottom: 0;
  3066. padding-left: 0;
  3067. list-style: none
  3068. }
  3069. .nav>li {
  3070. position: relative;
  3071. display: block
  3072. }
  3073. .nav>li>a {
  3074. position: relative;
  3075. display: block;
  3076. padding: 10px 15px
  3077. }
  3078. .nav>li>a:hover,
  3079. .nav>li>a:focus {
  3080. text-decoration: none;
  3081. background-color: #dddddd
  3082. }
  3083. .nav>li.disabled>a {
  3084. color: #808080
  3085. }
  3086. .nav>li.disabled>a:hover,
  3087. .nav>li.disabled>a:focus {
  3088. color: #808080;
  3089. text-decoration: none;
  3090. background-color: transparent;
  3091. cursor: not-allowed
  3092. }
  3093. .nav .open>a,
  3094. .nav .open>a:hover,
  3095. .nav .open>a:focus {
  3096. background-color: #dddddd;
  3097. border-color: $brand-primary
  3098. }
  3099. .nav .nav-divider {
  3100. height: 1px;
  3101. margin: 8px 15px;
  3102. overflow: hidden;
  3103. background-color: #e5e5e5;
  3104. opacity: 0.6;
  3105. }
  3106. .nav>li>a>img {
  3107. max-width: none
  3108. }
  3109. .nav-tabs {
  3110. border-bottom: 1px solid #dddddd
  3111. }
  3112. .nav-tabs>li {
  3113. float: left;
  3114. margin-bottom: -1px
  3115. }
  3116. .nav-tabs>li>a {
  3117. margin-right: 2px;
  3118. line-height: $line-height-base;
  3119. border: 1px solid transparent;
  3120. border-radius: $border-radius-base $border-radius-base 0 0
  3121. }
  3122. .nav-tabs>li>a:hover {
  3123. border-color: #dddddd #dddddd #dddddd
  3124. }
  3125. .nav-tabs>li.active>a,
  3126. .nav-tabs>li.active>a:hover,
  3127. .nav-tabs>li.active>a:focus {
  3128. color: $gray;
  3129. background-color: #fcfcfc;
  3130. border: 1px solid #dddddd;
  3131. border-bottom-color: transparent;
  3132. cursor: default
  3133. }
  3134. .nav-tabs.nav-justified {
  3135. width: 100%;
  3136. border-bottom: 0
  3137. }
  3138. .nav-tabs.nav-justified>li {
  3139. float: none
  3140. }
  3141. .nav-tabs.nav-justified>li>a {
  3142. text-align: center;
  3143. margin-bottom: 5px
  3144. }
  3145. .nav-tabs.nav-justified>.dropdown .dropdown-menu {
  3146. top: auto;
  3147. left: auto
  3148. }
  3149. @media (min-width: 768px) {
  3150. .nav-tabs.nav-justified>li {
  3151. display: table-cell;
  3152. width: 1%
  3153. }
  3154. .nav-tabs.nav-justified>li>a {
  3155. margin-bottom: 0
  3156. }
  3157. }
  3158. .nav-tabs.nav-justified>li>a {
  3159. margin-right: 0;
  3160. border-radius: $border-radius-base
  3161. }
  3162. .nav-tabs.nav-justified>.active>a,
  3163. .nav-tabs.nav-justified>.active>a:hover,
  3164. .nav-tabs.nav-justified>.active>a:focus {
  3165. border: 1px solid #dddddd
  3166. }
  3167. @media (min-width: 768px) {
  3168. .nav-tabs.nav-justified>li>a {
  3169. border-bottom: 1px solid #dddddd;
  3170. border-radius: $border-radius-base $border-radius-base 0 0
  3171. }
  3172. .nav-tabs.nav-justified>.active>a,
  3173. .nav-tabs.nav-justified>.active>a:hover,
  3174. .nav-tabs.nav-justified>.active>a:focus {
  3175. border-bottom-color: #fcfcfc
  3176. }
  3177. }
  3178. .nav-pills>li {
  3179. float: left
  3180. }
  3181. .nav-pills>li>a {
  3182. border-radius: $border-radius-base
  3183. }
  3184. .nav-pills>li+li {
  3185. margin-left: 2px
  3186. }
  3187. .nav-pills>li.active>a,
  3188. .nav-pills>li.active>a:hover,
  3189. .nav-pills>li.active>a:focus {
  3190. color: #ffffff;
  3191. background-color: $brand-primary
  3192. }
  3193. .nav-stacked>li {
  3194. float: none
  3195. }
  3196. .nav-stacked>li+li {
  3197. margin-top: 2px;
  3198. margin-left: 0
  3199. }
  3200. .nav-justified {
  3201. width: 100%
  3202. }
  3203. .nav-justified>li {
  3204. float: none
  3205. }
  3206. .nav-justified>li>a {
  3207. text-align: center;
  3208. margin-bottom: 5px
  3209. }
  3210. .nav-justified>.dropdown .dropdown-menu {
  3211. top: auto;
  3212. left: auto
  3213. }
  3214. @media (min-width: 768px) {
  3215. .nav-justified>li {
  3216. display: table-cell;
  3217. width: 1%
  3218. }
  3219. .nav-justified>li>a {
  3220. margin-bottom: 0
  3221. }
  3222. }
  3223. .nav-tabs-justified {
  3224. border-bottom: 0
  3225. }
  3226. .nav-tabs-justified>li>a {
  3227. margin-right: 0;
  3228. border-radius: $border-radius-base
  3229. }
  3230. .nav-tabs-justified>.active>a,
  3231. .nav-tabs-justified>.active>a:hover,
  3232. .nav-tabs-justified>.active>a:focus {
  3233. border: 1px solid #dddddd
  3234. }
  3235. @media (min-width: 768px) {
  3236. .nav-tabs-justified>li>a {
  3237. border-bottom: 1px solid #dddddd;
  3238. border-radius: $border-radius-base $border-radius-base 0 0
  3239. }
  3240. .nav-tabs-justified>.active>a,
  3241. .nav-tabs-justified>.active>a:hover,
  3242. .nav-tabs-justified>.active>a:focus {
  3243. border-bottom-color: #fcfcfc
  3244. }
  3245. }
  3246. .tab-content>.tab-pane {
  3247. display: none
  3248. }
  3249. .tab-content>.active {
  3250. display: block
  3251. }
  3252. .nav-tabs .dropdown-menu {
  3253. margin-top: -1px;
  3254. border-top-right-radius: 0;
  3255. border-top-left-radius: 0
  3256. }
  3257. .navbar {
  3258. position: relative;
  3259. min-height: 40px;
  3260. margin-bottom: 18px;
  3261. border: 1px solid transparent
  3262. }
  3263. @media (min-width: 768px) {
  3264. .navbar {
  3265. border-radius: $border-radius-base
  3266. }
  3267. }
  3268. @media (min-width: 768px) {
  3269. .navbar-header {
  3270. float: left
  3271. }
  3272. }
  3273. .navbar-collapse {
  3274. overflow-x: visible;
  3275. padding-right: 15px;
  3276. padding-left: 15px;
  3277. border-top: 1px solid transparent;
  3278. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  3279. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  3280. -webkit-overflow-scrolling: touch
  3281. }
  3282. .navbar-collapse.in {
  3283. overflow-y: auto
  3284. }
  3285. @media (min-width: 768px) {
  3286. .navbar-collapse {
  3287. width: auto;
  3288. border-top: 0;
  3289. -webkit-box-shadow: none;
  3290. box-shadow: none
  3291. }
  3292. .navbar-collapse.collapse {
  3293. display: block !important;
  3294. height: auto !important;
  3295. padding-bottom: 0;
  3296. overflow: visible !important
  3297. }
  3298. .navbar-collapse.in {
  3299. overflow-y: visible
  3300. }
  3301. .navbar-fixed-top .navbar-collapse,
  3302. .navbar-static-top .navbar-collapse,
  3303. .navbar-fixed-bottom .navbar-collapse {
  3304. padding-left: 0;
  3305. padding-right: 0
  3306. }
  3307. }
  3308. .navbar-fixed-top .navbar-collapse,
  3309. .navbar-fixed-bottom .navbar-collapse {
  3310. max-height: 400px
  3311. }
  3312. @media (max-device-width: 480px) and (orientation: landscape) {
  3313. .navbar-fixed-top .navbar-collapse,
  3314. .navbar-fixed-bottom .navbar-collapse {
  3315. max-height: 200px
  3316. }
  3317. }
  3318. .container>.navbar-header,
  3319. .container-fluid>.navbar-header,
  3320. .container>.navbar-collapse,
  3321. .container-fluid>.navbar-collapse {
  3322. margin-right: -15px;
  3323. margin-left: -15px
  3324. }
  3325. @media (min-width: 768px) {
  3326. .container>.navbar-header,
  3327. .container-fluid>.navbar-header,
  3328. .container>.navbar-collapse,
  3329. .container-fluid>.navbar-collapse {
  3330. margin-right: 0;
  3331. margin-left: 0
  3332. }
  3333. }
  3334. .navbar-static-top {
  3335. z-index: 1000;
  3336. border-width: 0 0 1px
  3337. }
  3338. @media (min-width: 768px) {
  3339. .navbar-static-top {
  3340. border-radius: 0
  3341. }
  3342. }
  3343. .navbar-fixed-top,
  3344. .navbar-fixed-bottom {
  3345. position: fixed;
  3346. right: 0;
  3347. left: 0;
  3348. z-index: 1030
  3349. }
  3350. @media (min-width: 768px) {
  3351. .navbar-fixed-top,
  3352. .navbar-fixed-bottom {
  3353. border-radius: 0
  3354. }
  3355. }
  3356. .navbar-fixed-top {
  3357. top: 0;
  3358. border-width: 0 0 1px
  3359. }
  3360. .navbar-fixed-bottom {
  3361. bottom: 0;
  3362. margin-bottom: 0;
  3363. border-width: 1px 0 0
  3364. }
  3365. .navbar-fixed-top .navbar-header{
  3366. box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
  3367. }
  3368. .navbar-brand {
  3369. float: left;
  3370. padding: 5px 15px;
  3371. font-size: $font-size-large;
  3372. line-height: $line-height-computed;
  3373. height: 40px
  3374. }
  3375. .navbar-brand:hover,
  3376. .navbar-brand:focus {
  3377. text-decoration: none
  3378. }
  3379. .navbar-brand>img {
  3380. display: block
  3381. }
  3382. @media (min-width: 768px) {
  3383. .navbar>.container .navbar-brand,
  3384. .navbar>.container-fluid .navbar-brand {
  3385. margin-left: -15px
  3386. }
  3387. }
  3388. .navbar-toggle {
  3389. position: relative;
  3390. float: right;
  3391. margin-right: 15px;
  3392. padding: 9px 10px;
  3393. margin-top: 3px;
  3394. margin-bottom: 3px;
  3395. background-color: transparent;
  3396. background-image: none;
  3397. border: 1px solid transparent;
  3398. border-radius: $border-radius-base
  3399. }
  3400. .navbar-toggle:focus {
  3401. outline: 0
  3402. }
  3403. .navbar-toggle .icon-bar {
  3404. display: block;
  3405. width: 22px;
  3406. height: 2px;
  3407. border-radius: 1px
  3408. }
  3409. .navbar-toggle .icon-bar+.icon-bar {
  3410. margin-top: 4px
  3411. }
  3412. @media (min-width: 768px) {
  3413. .navbar-toggle {
  3414. display: none
  3415. }
  3416. }
  3417. .navbar-nav {
  3418. margin: 5.5px -15px
  3419. }
  3420. .navbar-nav>li>a {
  3421. padding-top: 10px;
  3422. padding-bottom: 10px;
  3423. line-height: $line-height-computed
  3424. }
  3425. @media (max-width: 767px) {
  3426. .navbar-nav .open .dropdown-menu {
  3427. position: static;
  3428. float: none;
  3429. width: auto;
  3430. margin-top: 0;
  3431. background-color: transparent;
  3432. border: 0;
  3433. -webkit-box-shadow: none;
  3434. box-shadow: none
  3435. }
  3436. .navbar-nav .open .dropdown-menu>li>a,
  3437. .navbar-nav .open .dropdown-menu .dropdown-header {
  3438. padding: 5px 15px 5px 25px
  3439. }
  3440. .navbar-nav .open .dropdown-menu>li>a {
  3441. line-height: $line-height-computed
  3442. }
  3443. .navbar-nav .open .dropdown-menu>li>a:hover,
  3444. .navbar-nav .open .dropdown-menu>li>a:focus {
  3445. background-image: none
  3446. }
  3447. }
  3448. @media (min-width: 768px) {
  3449. .navbar-nav {
  3450. float: left;
  3451. margin: 0
  3452. }
  3453. .navbar-nav>li {
  3454. float: left;
  3455. }
  3456. .navbar-nav>li:after{
  3457. content: "";
  3458. display: block;
  3459. position: relative;
  3460. color: $white;
  3461. border-bottom: 1px solid #7D7D7D;
  3462. }
  3463. .navbar-nav>li.active:after{
  3464. content: " ";
  3465. position: absolute;
  3466. right: 0px;
  3467. top: 0px;
  3468. border: 30px solid transparent;
  3469. border-right-width: 20px;
  3470. border-right-color: $body-bg;
  3471. }
  3472. .navbar-nav>li.active>a{
  3473. margin-top: -1px; /* To mask border from previous li item */
  3474. box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8) inset;
  3475. }
  3476. .navbar-nav>li>a {
  3477. padding-top: 11px;
  3478. padding-bottom: 11px;
  3479. padding-left: 10%;
  3480. overflow-x: hidden;
  3481. text-overflow: ellipsis;
  3482. white-space: nowrap;
  3483. line-height: 3em;
  3484. }
  3485. .navbar-nav>li>a:hover{
  3486. padding-left: 5%;
  3487. transition: padding-left 0.2s ease-in-out;
  3488. }
  3489. }
  3490. .navbar-form {
  3491. margin-left: -15px;
  3492. margin-right: -15px;
  3493. padding: 10px 15px;
  3494. border-top: 1px solid transparent;
  3495. border-bottom: 1px solid transparent;
  3496. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3497. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  3498. margin-top: 2px;
  3499. margin-bottom: 2px
  3500. }
  3501. @media (min-width: 768px) {
  3502. .navbar-form .form-group {
  3503. display: inline-block;
  3504. margin-bottom: 0;
  3505. vertical-align: middle
  3506. }
  3507. .navbar-form .form-control {
  3508. display: inline-block;
  3509. width: auto;
  3510. vertical-align: middle
  3511. }
  3512. .navbar-form .form-control-static {
  3513. display: inline-block
  3514. }
  3515. .navbar-form .input-group {
  3516. display: inline-table;
  3517. vertical-align: middle
  3518. }
  3519. .navbar-form .input-group .input-group-addon,
  3520. .navbar-form .input-group .input-group-btn,
  3521. .navbar-form .input-group .form-control {
  3522. width: auto
  3523. }
  3524. .navbar-form .input-group>.form-control {
  3525. width: 100%
  3526. }
  3527. .navbar-form .control-label {
  3528. margin-bottom: 0;
  3529. vertical-align: middle
  3530. }
  3531. .navbar-form .radio,
  3532. .navbar-form .checkbox {
  3533. display: inline-block;
  3534. margin-top: 0;
  3535. margin-bottom: 0;
  3536. vertical-align: middle
  3537. }
  3538. .navbar-form .radio label,
  3539. .navbar-form .checkbox label {
  3540. padding-left: 0
  3541. }
  3542. .navbar-form .radio input[type="radio"],
  3543. .navbar-form .checkbox input[type="checkbox"] {
  3544. position: relative;
  3545. margin-left: 0
  3546. }
  3547. .navbar-form .has-feedback .form-control-feedback {
  3548. top: 0
  3549. }
  3550. }
  3551. @media (max-width: 767px) {
  3552. .navbar-form .form-group {
  3553. margin-bottom: 5px
  3554. }
  3555. .navbar-form .form-group:last-child {
  3556. margin-bottom: 0
  3557. }
  3558. }
  3559. @media (min-width: 768px) {
  3560. .navbar-form {
  3561. width: auto;
  3562. border: 0;
  3563. margin-left: 0;
  3564. margin-right: 0;
  3565. padding-top: 0;
  3566. padding-bottom: 0;
  3567. -webkit-box-shadow: none;
  3568. box-shadow: none
  3569. }
  3570. }
  3571. .navbar-nav>li>.dropdown-menu {
  3572. margin-top: 0;
  3573. border-top-right-radius: 0;
  3574. border-top-left-radius: 0
  3575. }
  3576. .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
  3577. margin-bottom: 0;
  3578. border-top-right-radius: 4px;
  3579. border-top-left-radius: 4px;
  3580. border-bottom-right-radius: 0;
  3581. border-bottom-left-radius: 0
  3582. }
  3583. .navbar-btn {
  3584. margin-top: 2px;
  3585. margin-bottom: 2px
  3586. }
  3587. .navbar-btn.btn-sm {
  3588. margin-top: 5px;
  3589. margin-bottom: 5px
  3590. }
  3591. .navbar-btn.btn-xs {
  3592. margin-top: 9px;
  3593. margin-bottom: 9px
  3594. }
  3595. .navbar-text {
  3596. margin-top: 11px;
  3597. margin-bottom: 11px
  3598. }
  3599. @media (min-width: 768px) {
  3600. .navbar-text {
  3601. float: left;
  3602. margin-left: 15px;
  3603. margin-right: 15px
  3604. }
  3605. }
  3606. @media (min-width: 768px) {
  3607. .navbar-left {
  3608. float: left !important
  3609. }
  3610. .navbar-right {
  3611. float: right !important;
  3612. margin-right: -15px
  3613. }
  3614. .navbar-right~.navbar-right {
  3615. margin-right: 0
  3616. }
  3617. }
  3618. @media (min-width: 768px){
  3619. .user_card{
  3620. background-color: $combodo-orange;
  3621. background-image: url('../img/backgrounds/geometric-orange.svg');
  3622. background-size: 170%;
  3623. background-position: 60% 60%;
  3624. box-shadow: -3px 2px 3px rgba(0, 0, 0, 0.4);
  3625. }
  3626. }
  3627. .navbar-default {
  3628. background-color: $combodo-dark-gray;
  3629. border-color: none;
  3630. }
  3631. .navbar-default .navbar-brand {
  3632. color: $gray;
  3633. }
  3634. .navbar-default .navbar-brand:hover,
  3635. .navbar-default .navbar-brand:focus {
  3636. color: $brand-primary;
  3637. background-color: transparent
  3638. }
  3639. .navbar-default .navbar-text {
  3640. color: $gray;
  3641. }
  3642. .navbar-default .navbar-nav>li>a {
  3643. color: white;
  3644. }
  3645. .navbar-default .navbar-nav>.active>a {
  3646. color: white;
  3647. background-color: $combodo-dark-gray-darker;
  3648. font-weight: 600
  3649. }
  3650. .navbar-default .navbar-nav>li>a:hover,
  3651. .navbar-default .navbar-nav>li>a:focus,
  3652. .navbar-default .navbar-nav>.active>a:hover,
  3653. .navbar-default .navbar-nav>.active>a:focus {
  3654. color: $combodo-orange;
  3655. background-color: $white
  3656. }
  3657. .navbar-default .navbar-nav>.disabled>a,
  3658. .navbar-default .navbar-nav>.disabled>a:hover,
  3659. .navbar-default .navbar-nav>.disabled>a:focus {
  3660. color: $gray-dark;
  3661. background-color: transparent
  3662. }
  3663. .navbar-default .navbar-toggle {
  3664. border-color: $gray-lighter;
  3665. border-top: none;
  3666. border-right: none;
  3667. border-bottom: none;
  3668. border-radius: 0px;
  3669. margin-right: 0px;
  3670. }
  3671. .navbar-default .navbar-toggle:hover,
  3672. .navbar-default .navbar-toggle:focus {
  3673. background-color: inherit;
  3674. }
  3675. .navbar-default .navbar-toggle .icon-bar {
  3676. height: 3px;
  3677. background-color: $gray;
  3678. }
  3679. .navbar-default .navbar-collapse,
  3680. .navbar-default .navbar-form {
  3681. border: none;
  3682. }
  3683. .navbar-default .navbar-nav>.open>a,
  3684. .navbar-default .navbar-nav>.open>a:hover,
  3685. .navbar-default .navbar-nav>.open>a:focus {
  3686. background-color: transparent;
  3687. color: $brand-primary
  3688. }
  3689. @media (max-width: 767px) {
  3690. .navbar-default .navbar-nav .open .dropdown-menu>.dropdown-header {
  3691. border-color: $combodo-dark-gray-dark
  3692. }
  3693. .navbar-default .navbar-nav .divider,
  3694. .navbar-default .navbar-nav .open .dropdown-menu .divider {
  3695. background-color: $combodo-dark-gray-dark;
  3696. }
  3697. .navbar-default .navbar-nav .open .dropdown-menu>li>a {
  3698. color: $white;
  3699. background-color: inherit;
  3700. }
  3701. .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,
  3702. .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus {
  3703. color: $brand-primary;
  3704. background-color: transparent
  3705. }
  3706. .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
  3707. .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
  3708. .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus {
  3709. color: $brand-primary;
  3710. background-color: transparent
  3711. }
  3712. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
  3713. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,
  3714. .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus {
  3715. color: $gray-dark;
  3716. background-color: transparent
  3717. }
  3718. }
  3719. @media (min-width: 768px) {
  3720. .navbar-default .navbar-nav>li:after{
  3721. border-bottom-color: #7D7D7D;
  3722. }
  3723. .navbar-default .navbar-nav>li.active:after{
  3724. border-bottom-color: transparent;
  3725. }
  3726. }
  3727. .navbar-default .navbar-link {
  3728. color: $white
  3729. }
  3730. .navbar-default .navbar-link:hover {
  3731. color: $brand-primary
  3732. }
  3733. .navbar-default .btn-link {
  3734. color: $white
  3735. }
  3736. .navbar-default .btn-link:hover,
  3737. .navbar-default .btn-link:focus {
  3738. color: $brand-primary
  3739. }
  3740. .navbar-default .btn-link[disabled]:hover,
  3741. fieldset[disabled] .navbar-default .btn-link:hover,
  3742. .navbar-default .btn-link[disabled]:focus,
  3743. fieldset[disabled] .navbar-default .btn-link:focus {
  3744. color: $gray-dark
  3745. }
  3746. .navbar-inverse {
  3747. background-color: $brand-primary;
  3748. border-color: $brand-primary-dark;
  3749. }
  3750. .navbar-inverse .navbar-brand {
  3751. color: $white
  3752. }
  3753. .navbar-inverse .navbar-brand:hover,
  3754. .navbar-inverse .navbar-brand:focus {
  3755. color: $brand-primary;
  3756. background-color: transparent
  3757. }
  3758. .navbar-inverse .navbar-text {
  3759. color: $white;
  3760. }
  3761. .navbar-inverse .navbar-nav>li>a {
  3762. color: $white
  3763. }
  3764. .navbar-inverse .navbar-nav>.active>a {
  3765. color: $white;
  3766. background-color: $combodo-orange-darker;
  3767. font-weight: 600
  3768. }
  3769. .navbar-inverse .navbar-nav>li>a:hover,
  3770. .navbar-inverse .navbar-nav>li>a:focus,
  3771. .navbar-inverse .navbar-nav>.active>a:hover,
  3772. .navbar-inverse .navbar-nav>.active>a:focus {
  3773. color: $combodo-orange;
  3774. background-color: $white
  3775. }
  3776. .navbar-inverse .navbar-nav>.disabled>a,
  3777. .navbar-inverse .navbar-nav>.disabled>a:hover,
  3778. .navbar-inverse .navbar-nav>.disabled>a:focus {
  3779. color: $gray-dark;
  3780. background-color: transparent
  3781. }
  3782. .navbar-inverse .navbar-toggle {
  3783. border-color: $white;
  3784. border-top: none;
  3785. border-right: none;
  3786. border-bottom: none;
  3787. border-radius: 0px;
  3788. margin-right: 0px;
  3789. }
  3790. .navbar-inverse .navbar-toggle:hover,
  3791. .navbar-inverse .navbar-toggle:focus {
  3792. background-color: inherit;
  3793. }
  3794. .navbar-inverse .navbar-toggle .icon-bar {
  3795. height: 3px;
  3796. background-color: $white;
  3797. }
  3798. .navbar-inverse .navbar-collapse,
  3799. .navbar-inverse .navbar-form {
  3800. border: none;
  3801. }
  3802. .navbar-inverse .navbar-nav>.open>a,
  3803. .navbar-inverse .navbar-nav>.open>a:hover,
  3804. .navbar-inverse .navbar-nav>.open>a:focus {
  3805. background-color: transparent;
  3806. color: $brand-primary
  3807. }
  3808. @media (max-width: 767px) {
  3809. .navbar-inverse .navbar-nav .divider,
  3810. .navbar-inverse .navbar-nav .open .dropdown-menu .divider{
  3811. background-color: $combodo-orange-darker;
  3812. }
  3813. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
  3814. color: $white;
  3815. background-color: inherit;
  3816. }
  3817. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,
  3818. .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus {
  3819. color: $brand-primary;
  3820. background-color: transparent
  3821. }
  3822. .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
  3823. .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
  3824. .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus {
  3825. color: $brand-primary;
  3826. background-color: transparent
  3827. }
  3828. .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
  3829. .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,
  3830. .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus {
  3831. color: #444444;
  3832. background-color: transparent
  3833. }
  3834. }
  3835. @media (min-width: 768px) {
  3836. .navbar-inverse .navbar-nav>li:after{
  3837. border-bottom-color: #D06F1A;
  3838. }
  3839. .navbar-inverse .navbar-nav>li.active:after{
  3840. border-bottom-color: transparent;
  3841. }
  3842. }
  3843. .navbar-inverse .navbar-link {
  3844. color: $white
  3845. }
  3846. .navbar-inverse .navbar-link:hover {
  3847. color: $brand-primary
  3848. }
  3849. .navbar-inverse .btn-link {
  3850. color: $white
  3851. }
  3852. .navbar-inverse .btn-link:hover,
  3853. .navbar-inverse .btn-link:focus {
  3854. color: $brand-primary
  3855. }
  3856. .navbar-inverse .btn-link[disabled]:hover,
  3857. fieldset[disabled] .navbar-inverse .btn-link:hover,
  3858. .navbar-inverse .btn-link[disabled]:focus,
  3859. fieldset[disabled] .navbar-inverse .btn-link:focus {
  3860. color: #444444
  3861. }
  3862. .breadcrumb {
  3863. padding: 8px 15px;
  3864. margin-bottom: 18px;
  3865. list-style: none;
  3866. background-color: transparent;
  3867. border-radius: $border-radius-base
  3868. }
  3869. .breadcrumb>li {
  3870. display: inline-block
  3871. }
  3872. .breadcrumb>li+li:before {
  3873. content: "/\00a0";
  3874. padding: 0 5px;
  3875. color: #cccccc
  3876. }
  3877. .breadcrumb>.active {
  3878. color: #808080
  3879. }
  3880. .pagination {
  3881. display: inline-block;
  3882. padding-left: 0;
  3883. margin: 14px 0;
  3884. border-radius: $border-radius-base
  3885. }
  3886. .pagination>li {
  3887. display: inline
  3888. }
  3889. .pagination>li>a,
  3890. .pagination>li>span {
  3891. position: relative;
  3892. float: left;
  3893. padding: $padding-base-vertical $padding-base-horizontal;
  3894. line-height: $line-height-base;
  3895. text-decoration: none;
  3896. color: #444444;
  3897. background-color: #ffffff;
  3898. border: 1px solid #dddddd;
  3899. margin-left: -1px
  3900. }
  3901. .pagination>li:first-child>a,
  3902. .pagination>li:first-child>span {
  3903. margin-left: 0;
  3904. border-bottom-left-radius: 4px;
  3905. border-top-left-radius: 4px
  3906. }
  3907. .pagination>li:last-child>a,
  3908. .pagination>li:last-child>span {
  3909. border-bottom-right-radius: 4px;
  3910. border-top-right-radius: 4px
  3911. }
  3912. .pagination>li>a:hover,
  3913. .pagination>li>span:hover,
  3914. .pagination>li>a:focus,
  3915. .pagination>li>span:focus {
  3916. z-index: 3;
  3917. color: #ffffff;
  3918. background-color: $brand-primary;
  3919. border-color: $brand-primary
  3920. }
  3921. .pagination>.active>a,
  3922. .pagination>.active>span,
  3923. .pagination>.active>a:hover,
  3924. .pagination>.active>span:hover,
  3925. .pagination>.active>a:focus,
  3926. .pagination>.active>span:focus {
  3927. z-index: 2;
  3928. color: #ffffff;
  3929. background-color: $brand-primary;
  3930. border-color: $brand-primary;
  3931. cursor: default
  3932. }
  3933. .pagination>.disabled>span,
  3934. .pagination>.disabled>span:hover,
  3935. .pagination>.disabled>span:focus,
  3936. .pagination>.disabled>a,
  3937. .pagination>.disabled>a:hover,
  3938. .pagination>.disabled>a:focus {
  3939. color: #dddddd;
  3940. background-color: #ffffff;
  3941. border-color: #dddddd;
  3942. cursor: not-allowed
  3943. }
  3944. .pagination-lg>li>a,
  3945. .pagination-lg>li>span {
  3946. padding: $padding-large-vertical $padding-large-horizontal;
  3947. font-size: $font-size-large;
  3948. line-height: 1.3333333
  3949. }
  3950. .pagination-lg>li:first-child>a,
  3951. .pagination-lg>li:first-child>span {
  3952. border-bottom-left-radius: 6px;
  3953. border-top-left-radius: 6px
  3954. }
  3955. .pagination-lg>li:last-child>a,
  3956. .pagination-lg>li:last-child>span {
  3957. border-bottom-right-radius: 6px;
  3958. border-top-right-radius: 6px
  3959. }
  3960. .pagination-sm>li>a,
  3961. .pagination-sm>li>span {
  3962. padding: $padding-small-vertical $padding-small-horizontal;
  3963. font-size: $font-size-small;
  3964. line-height: 1.5
  3965. }
  3966. .pagination-sm>li:first-child>a,
  3967. .pagination-sm>li:first-child>span {
  3968. border-bottom-left-radius: 3px;
  3969. border-top-left-radius: 3px
  3970. }
  3971. .pagination-sm>li:last-child>a,
  3972. .pagination-sm>li:last-child>span {
  3973. border-bottom-right-radius: 3px;
  3974. border-top-right-radius: 3px
  3975. }
  3976. .pager {
  3977. padding-left: 0;
  3978. margin: 18px 0;
  3979. list-style: none;
  3980. text-align: center
  3981. }
  3982. .pager li {
  3983. display: inline
  3984. }
  3985. .pager li>a,
  3986. .pager li>span {
  3987. display: inline-block;
  3988. padding: 5px 14px;
  3989. background-color: #ffffff;
  3990. border: 1px solid #dddddd;
  3991. border-radius: 15px
  3992. }
  3993. .pager li>a:hover,
  3994. .pager li>a:focus {
  3995. text-decoration: none;
  3996. background-color: $brand-primary
  3997. }
  3998. .pager .next>a,
  3999. .pager .next>span {
  4000. float: right
  4001. }
  4002. .pager .previous>a,
  4003. .pager .previous>span {
  4004. float: left
  4005. }
  4006. .pager .disabled>a,
  4007. .pager .disabled>a:hover,
  4008. .pager .disabled>a:focus,
  4009. .pager .disabled>span {
  4010. color: #dddddd;
  4011. background-color: #ffffff;
  4012. cursor: not-allowed
  4013. }
  4014. .label {
  4015. display: inline;
  4016. padding: .2em .6em .3em;
  4017. font-size: 75%;
  4018. font-weight: bold;
  4019. line-height: 1;
  4020. color: #ffffff;
  4021. text-align: center;
  4022. white-space: nowrap;
  4023. vertical-align: baseline;
  4024. border-radius: .25em
  4025. }
  4026. a.label:hover,
  4027. a.label:focus {
  4028. color: #ffffff;
  4029. text-decoration: none;
  4030. cursor: pointer
  4031. }
  4032. .label:empty {
  4033. display: none
  4034. }
  4035. .btn .label {
  4036. position: relative;
  4037. top: -1px
  4038. }
  4039. .label-default {
  4040. background-color: #474949
  4041. }
  4042. .label-default[href]:hover,
  4043. .label-default[href]:focus {
  4044. background-color: #2e2f2f
  4045. }
  4046. .label-primary {
  4047. background-color: $brand-primary
  4048. }
  4049. .label-primary[href]:hover,
  4050. .label-primary[href]:focus {
  4051. background-color: $brand-primary-dark
  4052. }
  4053. .label-success {
  4054. background-color: #469408
  4055. }
  4056. .label-success[href]:hover,
  4057. .label-success[href]:focus {
  4058. background-color: #2f6405
  4059. }
  4060. .label-info {
  4061. background-color: #029acf
  4062. }
  4063. .label-info[href]:hover,
  4064. .label-info[href]:focus {
  4065. background-color: #02749c
  4066. }
  4067. .label-warning {
  4068. background-color: #9b479f
  4069. }
  4070. .label-warning[href]:hover,
  4071. .label-warning[href]:focus {
  4072. background-color: #79377c
  4073. }
  4074. .label-danger {
  4075. background-color: #d9831f
  4076. }
  4077. .label-danger[href]:hover,
  4078. .label-danger[href]:focus {
  4079. background-color: #ac6819
  4080. }
  4081. .badge {
  4082. display: inline-block;
  4083. min-width: 10px;
  4084. padding: 3px 7px;
  4085. font-size: $font-size-small;
  4086. font-weight: bold;
  4087. color: #ffffff;
  4088. line-height: 1;
  4089. vertical-align: middle;
  4090. white-space: nowrap;
  4091. text-align: center;
  4092. background-color: $brand-primary;
  4093. border-radius: 10px
  4094. }
  4095. .badge:empty {
  4096. display: none
  4097. }
  4098. .btn .badge {
  4099. position: relative;
  4100. top: -1px
  4101. }
  4102. .btn-xs .badge,
  4103. .btn-group-xs>.btn .badge {
  4104. top: 0;
  4105. padding: 1px 5px
  4106. }
  4107. a.badge:hover,
  4108. a.badge:focus {
  4109. color: #ffffff;
  4110. text-decoration: none;
  4111. cursor: pointer
  4112. }
  4113. .list-group .list-group-item:hover{
  4114. background-color: rgba(254, 223, 167, 0.1);
  4115. }
  4116. .list-group-item.active>.badge,
  4117. .nav-pills>.active>a>.badge {
  4118. color: $brand-primary;
  4119. background-color: #ffffff
  4120. }
  4121. .list-group-item>.badge {
  4122. float: right
  4123. }
  4124. .list-group-item>.badge+.badge {
  4125. margin-right: 5px
  4126. }
  4127. .nav-pills>li>a>.badge {
  4128. margin-left: 3px
  4129. }
  4130. .jumbotron {
  4131. padding-top: 30px;
  4132. padding-bottom: 30px;
  4133. margin-bottom: 30px;
  4134. color: inherit;
  4135. background-color: #f4f4f4
  4136. }
  4137. .jumbotron h1,
  4138. .jumbotron .h1 {
  4139. color: inherit
  4140. }
  4141. .jumbotron p {
  4142. margin-bottom: 15px;
  4143. font-size: 20px;
  4144. font-weight: 200
  4145. }
  4146. .jumbotron>hr {
  4147. border-top-color: #dbdbdb
  4148. }
  4149. .container .jumbotron,
  4150. .container-fluid .jumbotron {
  4151. border-radius: $border-radius-large
  4152. }
  4153. .jumbotron .container {
  4154. max-width: 100%
  4155. }
  4156. @media screen and (min-width: 768px) {
  4157. .jumbotron {
  4158. padding-top: 48px;
  4159. padding-bottom: 48px
  4160. }
  4161. .container .jumbotron,
  4162. .container-fluid .jumbotron {
  4163. padding-left: 60px;
  4164. padding-right: 60px
  4165. }
  4166. .jumbotron h1,
  4167. .jumbotron .h1 {
  4168. font-size: 59px
  4169. }
  4170. }
  4171. .thumbnail {
  4172. display: block;
  4173. padding: 4px;
  4174. margin-bottom: 18px;
  4175. line-height: $line-height-base;
  4176. background-color: #fcfcfc;
  4177. border: 1px solid #dddddd;
  4178. border-radius: $border-radius-base;
  4179. -webkit-transition: border .2s ease-in-out;
  4180. -o-transition: border .2s ease-in-out;
  4181. transition: border .2s ease-in-out
  4182. }
  4183. .thumbnail>img,
  4184. .thumbnail a>img {
  4185. margin-left: auto;
  4186. margin-right: auto
  4187. }
  4188. a.thumbnail:hover,
  4189. a.thumbnail:focus,
  4190. a.thumbnail.active {
  4191. border-color: $brand-primary
  4192. }
  4193. .thumbnail .caption {
  4194. padding: 9px;
  4195. color: $gray
  4196. }
  4197. .alert {
  4198. padding: 15px;
  4199. margin-bottom: 18px;
  4200. border: 1px solid transparent;
  4201. border-radius: $border-radius-base
  4202. }
  4203. .alert h4 {
  4204. margin-top: 0;
  4205. color: inherit
  4206. }
  4207. .alert .alert-link {
  4208. font-weight: bold
  4209. }
  4210. .alert>p,
  4211. .alert>ul {
  4212. margin-bottom: 0
  4213. }
  4214. .alert>p+p {
  4215. margin-top: 5px
  4216. }
  4217. .alert-dismissable,
  4218. .alert-dismissible {
  4219. padding-right: 35px
  4220. }
  4221. .alert-dismissable .close,
  4222. .alert-dismissible .close {
  4223. position: relative;
  4224. top: -2px;
  4225. right: -21px;
  4226. color: inherit
  4227. }
  4228. .alert-success {
  4229. background-color: $state-success-bg;
  4230. border-color: #d6e9c6;
  4231. color: $state-success-text
  4232. }
  4233. .alert-success hr {
  4234. border-top-color: #c9e2b3
  4235. }
  4236. .alert-success .alert-link {
  4237. color: #356635
  4238. }
  4239. .alert-info {
  4240. background-color: $state-info-bg;
  4241. border-color: $state-info-border;
  4242. color: $state-info-text
  4243. }
  4244. .alert-info hr {
  4245. border-top-color: #a6e1ec
  4246. }
  4247. .alert-info .alert-link {
  4248. color: #2d6987
  4249. }
  4250. .alert-warning {
  4251. background-color: $state-warning-bg;
  4252. border-color: $state-warning-border;
  4253. color: $state-warning-text
  4254. }
  4255. .alert-warning hr {
  4256. border-top-color: #f8e5be
  4257. }
  4258. .alert-warning .alert-link {
  4259. color: #a47e3c
  4260. }
  4261. .alert-danger {
  4262. background-color: $state-danger-bg;
  4263. border-color: $state-danger-border;
  4264. color: $state-danger-text
  4265. }
  4266. .alert-danger hr {
  4267. border-top-color: #e6c1c7
  4268. }
  4269. .alert-danger .alert-link {
  4270. color: #953b39
  4271. }
  4272. @-webkit-keyframes progress-bar-stripes {
  4273. from {
  4274. background-position: 40px 0
  4275. }
  4276. to {
  4277. background-position: 0 0
  4278. }
  4279. }
  4280. @-o-keyframes progress-bar-stripes {
  4281. from {
  4282. background-position: 40px 0
  4283. }
  4284. to {
  4285. background-position: 0 0
  4286. }
  4287. }
  4288. @keyframes progress-bar-stripes {
  4289. from {
  4290. background-position: 40px 0
  4291. }
  4292. to {
  4293. background-position: 0 0
  4294. }
  4295. }
  4296. .progress {
  4297. overflow: hidden;
  4298. height: 18px;
  4299. margin-bottom: 18px;
  4300. background-color: #f5f5f5;
  4301. border-radius: $border-radius-base;
  4302. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  4303. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1)
  4304. }
  4305. .progress-bar {
  4306. float: left;
  4307. width: 0%;
  4308. height: 100%;
  4309. font-size: $font-size-small;
  4310. line-height: $line-height-computed;
  4311. color: #ffffff;
  4312. text-align: center;
  4313. background-color: $brand-primary;
  4314. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4315. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  4316. -webkit-transition: width 0.6s ease;
  4317. -o-transition: width 0.6s ease;
  4318. transition: width 0.6s ease
  4319. }
  4320. .progress-striped .progress-bar,
  4321. .progress-bar-striped {
  4322. 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);
  4323. 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);
  4324. 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);
  4325. -webkit-background-size: 40px 40px;
  4326. background-size: 40px 40px
  4327. }
  4328. .progress.active .progress-bar,
  4329. .progress-bar.active {
  4330. -webkit-animation: progress-bar-stripes 2s linear infinite;
  4331. -o-animation: progress-bar-stripes 2s linear infinite;
  4332. animation: progress-bar-stripes 2s linear infinite
  4333. }
  4334. .progress-bar-success {
  4335. background-color: #469408
  4336. }
  4337. .progress-striped .progress-bar-success {
  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-info {
  4343. background-color: #029acf
  4344. }
  4345. .progress-striped .progress-bar-info {
  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-warning {
  4351. background-color: #9b479f
  4352. }
  4353. .progress-striped .progress-bar-warning {
  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. .progress-bar-danger {
  4359. background-color: #d9831f
  4360. }
  4361. .progress-striped .progress-bar-danger {
  4362. 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);
  4363. 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);
  4364. 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)
  4365. }
  4366. .media {
  4367. margin-top: 15px
  4368. }
  4369. .media:first-child {
  4370. margin-top: 0
  4371. }
  4372. .media,
  4373. .media-body {
  4374. zoom: 1;
  4375. overflow: hidden
  4376. }
  4377. .media-body {
  4378. width: 10000px
  4379. }
  4380. .media-object {
  4381. display: block
  4382. }
  4383. .media-object.img-thumbnail {
  4384. max-width: none
  4385. }
  4386. .media-right,
  4387. .media>.pull-right {
  4388. padding-left: 10px
  4389. }
  4390. .media-left,
  4391. .media>.pull-left {
  4392. padding-right: 10px
  4393. }
  4394. .media-left,
  4395. .media-right,
  4396. .media-body {
  4397. display: table-cell;
  4398. vertical-align: top
  4399. }
  4400. .media-middle {
  4401. vertical-align: middle
  4402. }
  4403. .media-bottom {
  4404. vertical-align: bottom
  4405. }
  4406. .media-heading {
  4407. margin-top: 0;
  4408. margin-bottom: 5px
  4409. }
  4410. .media-list {
  4411. padding-left: 0;
  4412. list-style: none
  4413. }
  4414. .list-group {
  4415. margin-bottom: 20px;
  4416. padding-left: 0
  4417. }
  4418. .list-group-item {
  4419. position: relative;
  4420. display: block;
  4421. padding: 10px 15px;
  4422. margin-bottom: -1px;
  4423. background-color: #ffffff;
  4424. border: 1px solid #dddddd
  4425. }
  4426. .list-group-item:first-child {
  4427. border-top-right-radius: 4px;
  4428. border-top-left-radius: 4px
  4429. }
  4430. .list-group-item:last-child {
  4431. margin-bottom: 0;
  4432. border-bottom-right-radius: 4px;
  4433. border-bottom-left-radius: 4px
  4434. }
  4435. a.list-group-item,
  4436. button.list-group-item {
  4437. color: #555555
  4438. }
  4439. a.list-group-item .list-group-item-heading,
  4440. button.list-group-item .list-group-item-heading {
  4441. color: #333333
  4442. }
  4443. a.list-group-item:hover,
  4444. button.list-group-item:hover,
  4445. a.list-group-item:focus,
  4446. button.list-group-item:focus {
  4447. text-decoration: none;
  4448. color: #555555;
  4449. background-color: #f5f5f5
  4450. }
  4451. button.list-group-item {
  4452. width: 100%;
  4453. text-align: left
  4454. }
  4455. .list-group-item .list-group-item-text{
  4456. margin-left: 5px;
  4457. font-size: 1em;
  4458. line-height: 1em;
  4459. }
  4460. .list-group-item.disabled,
  4461. .list-group-item.disabled:hover,
  4462. .list-group-item.disabled:focus {
  4463. background-color: #dddddd;
  4464. color: #808080;
  4465. cursor: not-allowed
  4466. }
  4467. .list-group-item.disabled .list-group-item-heading,
  4468. .list-group-item.disabled:hover .list-group-item-heading,
  4469. .list-group-item.disabled:focus .list-group-item-heading {
  4470. color: inherit
  4471. }
  4472. .list-group-item.disabled .list-group-item-text,
  4473. .list-group-item.disabled:hover .list-group-item-text,
  4474. .list-group-item.disabled:focus .list-group-item-text {
  4475. color: #808080
  4476. }
  4477. .list-group-item.active,
  4478. .list-group-item.active:hover,
  4479. .list-group-item.active:focus {
  4480. z-index: 2;
  4481. color: #ffffff;
  4482. background-color: $brand-primary;
  4483. border-color: $brand-primary
  4484. }
  4485. .list-group-item.active .list-group-item-heading,
  4486. .list-group-item.active:hover .list-group-item-heading,
  4487. .list-group-item.active:focus .list-group-item-heading,
  4488. .list-group-item.active .list-group-item-heading>small,
  4489. .list-group-item.active:hover .list-group-item-heading>small,
  4490. .list-group-item.active:focus .list-group-item-heading>small,
  4491. .list-group-item.active .list-group-item-heading>.small,
  4492. .list-group-item.active:hover .list-group-item-heading>.small,
  4493. .list-group-item.active:focus .list-group-item-heading>.small {
  4494. color: inherit
  4495. }
  4496. .list-group-item.active .list-group-item-text,
  4497. .list-group-item.active:hover .list-group-item-text,
  4498. .list-group-item.active:focus .list-group-item-text {
  4499. color: #fac0ba
  4500. }
  4501. .list-group-item-success {
  4502. color: $state-success-text;
  4503. background-color: $state-success-bg
  4504. }
  4505. a.list-group-item-success,
  4506. button.list-group-item-success {
  4507. color: $state-success-text
  4508. }
  4509. a.list-group-item-success .list-group-item-heading,
  4510. button.list-group-item-success .list-group-item-heading {
  4511. color: inherit
  4512. }
  4513. a.list-group-item-success:hover,
  4514. button.list-group-item-success:hover,
  4515. a.list-group-item-success:focus,
  4516. button.list-group-item-success:focus {
  4517. color: $state-success-text;
  4518. background-color: #d0e9c6
  4519. }
  4520. a.list-group-item-success.active,
  4521. button.list-group-item-success.active,
  4522. a.list-group-item-success.active:hover,
  4523. button.list-group-item-success.active:hover,
  4524. a.list-group-item-success.active:focus,
  4525. button.list-group-item-success.active:focus {
  4526. color: #fff;
  4527. background-color: $state-success-text;
  4528. border-color: $state-success-text
  4529. }
  4530. .list-group-item-info {
  4531. color: $state-info-text;
  4532. background-color: $state-info-bg
  4533. }
  4534. a.list-group-item-info,
  4535. button.list-group-item-info {
  4536. color: $state-info-text
  4537. }
  4538. a.list-group-item-info .list-group-item-heading,
  4539. button.list-group-item-info .list-group-item-heading {
  4540. color: inherit
  4541. }
  4542. a.list-group-item-info:hover,
  4543. button.list-group-item-info:hover,
  4544. a.list-group-item-info:focus,
  4545. button.list-group-item-info:focus {
  4546. color: $state-info-text;
  4547. background-color: $state-info-border
  4548. }
  4549. a.list-group-item-info.active,
  4550. button.list-group-item-info.active,
  4551. a.list-group-item-info.active:hover,
  4552. button.list-group-item-info.active:hover,
  4553. a.list-group-item-info.active:focus,
  4554. button.list-group-item-info.active:focus {
  4555. color: #fff;
  4556. background-color: $state-info-text;
  4557. border-color: $state-info-text
  4558. }
  4559. .list-group-item-warning {
  4560. color: $state-warning-text;
  4561. background-color: $state-warning-bg
  4562. }
  4563. a.list-group-item-warning,
  4564. button.list-group-item-warning {
  4565. color: $state-warning-text
  4566. }
  4567. a.list-group-item-warning .list-group-item-heading,
  4568. button.list-group-item-warning .list-group-item-heading {
  4569. color: inherit
  4570. }
  4571. a.list-group-item-warning:hover,
  4572. button.list-group-item-warning:hover,
  4573. a.list-group-item-warning:focus,
  4574. button.list-group-item-warning:focus {
  4575. color: $state-warning-text;
  4576. background-color: $state-warning-border
  4577. }
  4578. a.list-group-item-warning.active,
  4579. button.list-group-item-warning.active,
  4580. a.list-group-item-warning.active:hover,
  4581. button.list-group-item-warning.active:hover,
  4582. a.list-group-item-warning.active:focus,
  4583. button.list-group-item-warning.active:focus {
  4584. color: #fff;
  4585. background-color: $state-warning-text;
  4586. border-color: $state-warning-text
  4587. }
  4588. .list-group-item-danger {
  4589. color: $state-danger-text;
  4590. background-color: $state-danger-bg
  4591. }
  4592. a.list-group-item-danger,
  4593. button.list-group-item-danger {
  4594. color: $state-danger-text
  4595. }
  4596. a.list-group-item-danger .list-group-item-heading,
  4597. button.list-group-item-danger .list-group-item-heading {
  4598. color: inherit
  4599. }
  4600. a.list-group-item-danger:hover,
  4601. button.list-group-item-danger:hover,
  4602. a.list-group-item-danger:focus,
  4603. button.list-group-item-danger:focus {
  4604. color: $state-danger-text;
  4605. background-color: $state-danger-border
  4606. }
  4607. a.list-group-item-danger.active,
  4608. button.list-group-item-danger.active,
  4609. a.list-group-item-danger.active:hover,
  4610. button.list-group-item-danger.active:hover,
  4611. a.list-group-item-danger.active:focus,
  4612. button.list-group-item-danger.active:focus {
  4613. color: #fff;
  4614. background-color: $state-danger-text;
  4615. border-color: $state-danger-text
  4616. }
  4617. .list-group-item-heading {
  4618. margin-top: 0;
  4619. margin-bottom: 5px
  4620. }
  4621. .list-group-item-text {
  4622. margin-bottom: 0;
  4623. line-height: 1.3
  4624. }
  4625. .panel {
  4626. margin-bottom: 18px;
  4627. background-color: #ffffff;
  4628. border: none;
  4629. border-radius: $border-radius-base;
  4630. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4631. 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);
  4632. }
  4633. .panel-body {
  4634. padding: 15px
  4635. }
  4636. .panel-heading {
  4637. padding: 10px 15px;
  4638. border-bottom: 1px solid transparent;
  4639. border-top-right-radius: $border-radius-base;
  4640. border-top-left-radius: $border-radius-base;
  4641. }
  4642. .panel-heading>.dropdown .dropdown-toggle {
  4643. color: inherit
  4644. }
  4645. .panel-title {
  4646. margin-top: 0;
  4647. margin-bottom: 0;
  4648. font-size: 15px;
  4649. color: inherit
  4650. }
  4651. .panel-title>a,
  4652. .panel-title>small,
  4653. .panel-title>.small,
  4654. .panel-title>small>a,
  4655. .panel-title>.small>a {
  4656. color: inherit
  4657. }
  4658. .panel-footer {
  4659. padding: 10px 15px;
  4660. background-color: #fcfcfc;
  4661. border-top: 1px solid #dddddd;
  4662. border-bottom-right-radius: $border-radius-base;
  4663. border-bottom-left-radius: $border-radius-base;
  4664. }
  4665. .panel>.list-group,
  4666. .panel>.panel-collapse>.list-group {
  4667. margin-bottom: 0
  4668. }
  4669. .panel>.list-group .list-group-item,
  4670. .panel>.panel-collapse>.list-group .list-group-item {
  4671. border-width: 1px 0;
  4672. border-radius: 0
  4673. }
  4674. .panel>.list-group:first-child .list-group-item:first-child,
  4675. .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
  4676. border-top: 0;
  4677. border-top-right-radius: $border-radius-base;
  4678. border-top-left-radius: $border-radius-base
  4679. }
  4680. .panel>.list-group:last-child .list-group-item:last-child,
  4681. .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
  4682. margin-bottom: 1px;
  4683. border-bottom: 0;
  4684. border-bottom-right-radius: $border-radius-base;
  4685. border-bottom-left-radius: $border-radius-base
  4686. }
  4687. .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
  4688. border-top-right-radius: 0;
  4689. border-top-left-radius: 0
  4690. }
  4691. .panel-heading+.list-group .list-group-item:first-child {
  4692. border-top-width: 0
  4693. }
  4694. .list-group+.panel-footer {
  4695. border-top-width: 0
  4696. }
  4697. .panel>.table,
  4698. .panel>.table-responsive>.table,
  4699. .panel>.panel-collapse>.table {
  4700. margin-bottom: 0
  4701. }
  4702. .panel>.table caption,
  4703. .panel>.table-responsive>.table caption,
  4704. .panel>.panel-collapse>.table caption {
  4705. padding-left: 15px;
  4706. padding-right: 15px
  4707. }
  4708. .panel>.table:first-child,
  4709. .panel>.table-responsive:first-child>.table:first-child {
  4710. border-top-right-radius: $border-radius-base;
  4711. border-top-left-radius: $border-radius-base
  4712. }
  4713. .panel>.table:first-child>thead:first-child>tr:first-child,
  4714. .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
  4715. .panel>.table:first-child>tbody:first-child>tr:first-child,
  4716. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child {
  4717. border-top-left-radius: $border-radius-base;
  4718. border-top-right-radius: $border-radius-base
  4719. }
  4720. .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
  4721. .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
  4722. .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
  4723. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
  4724. .panel>.table:first-child>thead:first-child>tr:first-child th:first-child,
  4725. .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
  4726. .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
  4727. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child {
  4728. border-top-left-radius: $border-radius-base
  4729. }
  4730. .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
  4731. .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
  4732. .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
  4733. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
  4734. .panel>.table:first-child>thead:first-child>tr:first-child th:last-child,
  4735. .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
  4736. .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
  4737. .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child {
  4738. border-top-right-radius: $border-radius-base
  4739. }
  4740. .panel>.table:last-child,
  4741. .panel>.table-responsive:last-child>.table:last-child {
  4742. border-bottom-right-radius: $border-radius-base;
  4743. border-bottom-left-radius: $border-radius-base
  4744. }
  4745. .panel>.table:last-child>tbody:last-child>tr:last-child,
  4746. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
  4747. .panel>.table:last-child>tfoot:last-child>tr:last-child,
  4748. .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child {
  4749. border-bottom-left-radius: $border-radius-base;
  4750. border-bottom-right-radius: $border-radius-base
  4751. }
  4752. .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
  4753. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
  4754. .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
  4755. .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
  4756. .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
  4757. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
  4758. .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
  4759. .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
  4760. border-bottom-left-radius: $border-radius-base
  4761. }
  4762. .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
  4763. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
  4764. .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
  4765. .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
  4766. .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
  4767. .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
  4768. .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
  4769. .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
  4770. border-bottom-right-radius: $border-radius-base
  4771. }
  4772. .panel>.panel-body+.table,
  4773. .panel>.panel-body+.table-responsive,
  4774. .panel>.table+.panel-body,
  4775. .panel>.table-responsive+.panel-body {
  4776. border-top: 1px solid #dddddd
  4777. }
  4778. .panel>.table>tbody:first-child>tr:first-child th,
  4779. .panel>.table>tbody:first-child>tr:first-child td {
  4780. border-top: 0
  4781. }
  4782. .panel>.table-bordered,
  4783. .panel>.table-responsive>.table-bordered {
  4784. border: 0
  4785. }
  4786. .panel>.table-bordered>thead>tr>th:first-child,
  4787. .panel>.table-responsive>.table-bordered>thead>tr>th:first-child,
  4788. .panel>.table-bordered>tbody>tr>th:first-child,
  4789. .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
  4790. .panel>.table-bordered>tfoot>tr>th:first-child,
  4791. .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
  4792. .panel>.table-bordered>thead>tr>td:first-child,
  4793. .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
  4794. .panel>.table-bordered>tbody>tr>td:first-child,
  4795. .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
  4796. .panel>.table-bordered>tfoot>tr>td:first-child,
  4797. .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child {
  4798. border-left: 0
  4799. }
  4800. .panel>.table-bordered>thead>tr>th:last-child,
  4801. .panel>.table-responsive>.table-bordered>thead>tr>th:last-child,
  4802. .panel>.table-bordered>tbody>tr>th:last-child,
  4803. .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
  4804. .panel>.table-bordered>tfoot>tr>th:last-child,
  4805. .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
  4806. .panel>.table-bordered>thead>tr>td:last-child,
  4807. .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
  4808. .panel>.table-bordered>tbody>tr>td:last-child,
  4809. .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
  4810. .panel>.table-bordered>tfoot>tr>td:last-child,
  4811. .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child {
  4812. border-right: 0
  4813. }
  4814. .panel>.table-bordered>thead>tr:first-child>td,
  4815. .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
  4816. .panel>.table-bordered>tbody>tr:first-child>td,
  4817. .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
  4818. .panel>.table-bordered>thead>tr:first-child>th,
  4819. .panel>.table-responsive>.table-bordered>thead>tr:first-child>th,
  4820. .panel>.table-bordered>tbody>tr:first-child>th,
  4821. .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th {
  4822. border-bottom: 0
  4823. }
  4824. .panel>.table-bordered>tbody>tr:last-child>td,
  4825. .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
  4826. .panel>.table-bordered>tfoot>tr:last-child>td,
  4827. .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
  4828. .panel>.table-bordered>tbody>tr:last-child>th,
  4829. .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
  4830. .panel>.table-bordered>tfoot>tr:last-child>th,
  4831. .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
  4832. border-bottom: 0
  4833. }
  4834. .panel>.table-responsive {
  4835. border: 0;
  4836. margin-bottom: 0
  4837. }
  4838. .panel-group {
  4839. margin-bottom: 18px
  4840. }
  4841. .panel-group .panel {
  4842. margin-bottom: 0;
  4843. border-radius: $border-radius-base
  4844. }
  4845. .panel-group .panel+.panel {
  4846. margin-top: 5px
  4847. }
  4848. .panel-group .panel-heading {
  4849. border-bottom: 0
  4850. }
  4851. .panel-group .panel-heading+.panel-collapse>.panel-body,
  4852. .panel-group .panel-heading+.panel-collapse>.list-group {
  4853. border-top: 1px solid #dddddd
  4854. }
  4855. .panel-group .panel-footer {
  4856. border-top: 0
  4857. }
  4858. .panel-group .panel-footer+.panel-collapse .panel-body {
  4859. border-bottom: 1px solid #dddddd
  4860. }
  4861. .panel-default {
  4862. border-color: #dddddd
  4863. }
  4864. .panel-default>.panel-heading {
  4865. color: #444444;
  4866. background-color: #fcfcfc;
  4867. border-color: #dddddd
  4868. }
  4869. .panel-default>.panel-heading+.panel-collapse>.panel-body {
  4870. border-top-color: #dddddd
  4871. }
  4872. .panel-default>.panel-heading .badge {
  4873. color: #fcfcfc;
  4874. background-color: #444444
  4875. }
  4876. .panel-default>.panel-footer+.panel-collapse>.panel-body {
  4877. border-bottom-color: #dddddd
  4878. }
  4879. .panel-primary {
  4880. border-color: $brand-primary
  4881. }
  4882. .panel-primary>.panel-heading {
  4883. color: #ffffff;
  4884. background-color: $brand-primary;
  4885. border-color: $brand-primary
  4886. }
  4887. .panel-primary>.panel-heading+.panel-collapse>.panel-body {
  4888. border-top-color: $brand-primary
  4889. }
  4890. .panel-primary>.panel-heading .badge {
  4891. color: $brand-primary;
  4892. background-color: #ffffff
  4893. }
  4894. .panel-primary>.panel-footer+.panel-collapse>.panel-body {
  4895. border-bottom-color: $brand-primary
  4896. }
  4897. .panel-success {
  4898. border-color: #469408
  4899. }
  4900. .panel-success>.panel-heading {
  4901. color: #ffffff;
  4902. background-color: #469408;
  4903. border-color: #469408
  4904. }
  4905. .panel-success>.panel-heading+.panel-collapse>.panel-body {
  4906. border-top-color: #469408
  4907. }
  4908. .panel-success>.panel-heading .badge {
  4909. color: #469408;
  4910. background-color: #ffffff
  4911. }
  4912. .panel-success>.panel-footer+.panel-collapse>.panel-body {
  4913. border-bottom-color: #469408
  4914. }
  4915. .panel-info {
  4916. border-color: #029acf
  4917. }
  4918. .panel-info>.panel-heading {
  4919. color: #ffffff;
  4920. background-color: #029acf;
  4921. border-color: #029acf
  4922. }
  4923. .panel-info>.panel-heading+.panel-collapse>.panel-body {
  4924. border-top-color: #029acf
  4925. }
  4926. .panel-info>.panel-heading .badge {
  4927. color: #029acf;
  4928. background-color: #ffffff
  4929. }
  4930. .panel-info>.panel-footer+.panel-collapse>.panel-body {
  4931. border-bottom-color: #029acf
  4932. }
  4933. .panel-warning {
  4934. border-color: #9b479f
  4935. }
  4936. .panel-warning>.panel-heading {
  4937. color: #ffffff;
  4938. background-color: #9b479f;
  4939. border-color: #9b479f
  4940. }
  4941. .panel-warning>.panel-heading+.panel-collapse>.panel-body {
  4942. border-top-color: #9b479f
  4943. }
  4944. .panel-warning>.panel-heading .badge {
  4945. color: #9b479f;
  4946. background-color: #ffffff
  4947. }
  4948. .panel-warning>.panel-footer+.panel-collapse>.panel-body {
  4949. border-bottom-color: #9b479f
  4950. }
  4951. .panel-danger {
  4952. border-color: #d9831f
  4953. }
  4954. .panel-danger>.panel-heading {
  4955. color: #ffffff;
  4956. background-color: #d9831f;
  4957. border-color: #d9831f
  4958. }
  4959. .panel-danger>.panel-heading+.panel-collapse>.panel-body {
  4960. border-top-color: #d9831f
  4961. }
  4962. .panel-danger>.panel-heading .badge {
  4963. color: #d9831f;
  4964. background-color: #ffffff
  4965. }
  4966. .panel-danger>.panel-footer+.panel-collapse>.panel-body {
  4967. border-bottom-color: #d9831f
  4968. }
  4969. .embed-responsive {
  4970. position: relative;
  4971. display: block;
  4972. height: 0;
  4973. padding: 0;
  4974. overflow: hidden
  4975. }
  4976. .embed-responsive .embed-responsive-item,
  4977. .embed-responsive iframe,
  4978. .embed-responsive embed,
  4979. .embed-responsive object,
  4980. .embed-responsive video {
  4981. position: absolute;
  4982. top: 0;
  4983. left: 0;
  4984. bottom: 0;
  4985. height: 100%;
  4986. width: 100%;
  4987. border: 0
  4988. }
  4989. .embed-responsive-16by9 {
  4990. padding-bottom: 56.25%
  4991. }
  4992. .embed-responsive-4by3 {
  4993. padding-bottom: 75%
  4994. }
  4995. .well {
  4996. min-height: 20px;
  4997. padding: 19px;
  4998. margin-bottom: 20px;
  4999. background-color: #f4f4f4;
  5000. border: 1px solid #e3e3e3;
  5001. border-radius: $border-radius-base;
  5002. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5003. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05)
  5004. }
  5005. .well blockquote {
  5006. border-color: #ddd;
  5007. border-color: rgba(0, 0, 0, 0.15)
  5008. }
  5009. .well-lg {
  5010. padding: 24px;
  5011. border-radius: $border-radius-large
  5012. }
  5013. .well-sm {
  5014. padding: 9px;
  5015. border-radius: $border-radius-small
  5016. }
  5017. .close {
  5018. float: right;
  5019. font-size: 19.5px;
  5020. font-weight: bold;
  5021. line-height: 1;
  5022. color: #000000;
  5023. text-shadow: 0 1px 0 #ffffff;
  5024. opacity: 0.2;
  5025. filter: alpha(opacity=20)
  5026. }
  5027. .close:hover,
  5028. .close:focus {
  5029. color: #000000;
  5030. text-decoration: none;
  5031. cursor: pointer;
  5032. opacity: 0.5;
  5033. filter: alpha(opacity=50)
  5034. }
  5035. button.close {
  5036. padding: 0;
  5037. cursor: pointer;
  5038. background: transparent;
  5039. border: 0;
  5040. -webkit-appearance: none
  5041. }
  5042. .modal-open {
  5043. overflow: hidden
  5044. }
  5045. .modal {
  5046. display: none;
  5047. overflow: hidden;
  5048. position: fixed;
  5049. top: 0;
  5050. right: 0;
  5051. bottom: 0;
  5052. left: 0;
  5053. z-index: 1050;
  5054. -webkit-overflow-scrolling: touch;
  5055. outline: 0
  5056. }
  5057. .modal.fade .modal-dialog {
  5058. -webkit-transform: translate(0, -25%);
  5059. -ms-transform: translate(0, -25%);
  5060. -o-transform: translate(0, -25%);
  5061. transform: translate(0, -25%);
  5062. -webkit-transition: -webkit-transform .3s ease-out;
  5063. -o-transition: -o-transform .3s ease-out;
  5064. transition: transform .3s ease-out
  5065. }
  5066. .modal.in .modal-dialog {
  5067. -webkit-transform: translate(0, 0);
  5068. -ms-transform: translate(0, 0);
  5069. -o-transform: translate(0, 0);
  5070. transform: translate(0, 0)
  5071. }
  5072. .modal-open .modal {
  5073. overflow-x: hidden;
  5074. overflow-y: auto
  5075. }
  5076. .modal-dialog {
  5077. position: relative;
  5078. width: auto;
  5079. margin: 10px
  5080. }
  5081. .modal-content {
  5082. position: relative;
  5083. background-color: #ffffff;
  5084. border: 1px solid #999999;
  5085. border: 1px solid rgba(0, 0, 0, 0.2);
  5086. border-radius: $border-radius-base;
  5087. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5088. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5089. -webkit-background-clip: padding-box;
  5090. background-clip: padding-box;
  5091. outline: 0
  5092. }
  5093. .modal-backdrop {
  5094. position: fixed;
  5095. top: 0;
  5096. right: 0;
  5097. bottom: 0;
  5098. left: 0;
  5099. z-index: 1040;
  5100. background-color: #000000
  5101. }
  5102. .modal-backdrop.fade {
  5103. opacity: 0;
  5104. filter: alpha(opacity=0)
  5105. }
  5106. .modal-backdrop.in {
  5107. opacity: 0.5;
  5108. filter: alpha(opacity=50)
  5109. }
  5110. .modal-header {
  5111. padding: 15px;
  5112. background-color: $modal-header-bg;
  5113. border-bottom: 1px solid $modal-header-border-color;
  5114. min-height: 16.42857143px
  5115. }
  5116. .modal-header .close {
  5117. margin-top: -2px;
  5118. color: $modal-close-color;
  5119. opacity: 0.6;
  5120. }
  5121. .modal-title {
  5122. margin: 0;
  5123. line-height: $line-height-base;
  5124. color: $modal-title-color
  5125. }
  5126. .modal-body {
  5127. position: relative;
  5128. padding: 20px
  5129. }
  5130. .modal-footer {
  5131. padding: 20px;
  5132. text-align: right;
  5133. border-top: 1px solid #e5e5e5
  5134. }
  5135. .modal-footer .btn+.btn {
  5136. margin-left: 5px;
  5137. margin-bottom: 0
  5138. }
  5139. .modal-footer .btn-group .btn+.btn {
  5140. margin-left: -1px
  5141. }
  5142. .modal-footer .btn-block+.btn-block {
  5143. margin-left: 0
  5144. }
  5145. .modal-scrollbar-measure {
  5146. position: absolute;
  5147. top: -9999px;
  5148. width: 50px;
  5149. height: 50px;
  5150. overflow: scroll
  5151. }
  5152. @media (min-width: 768px) {
  5153. .modal-dialog {
  5154. width: 600px;
  5155. margin: 30px auto
  5156. }
  5157. .modal-content {
  5158. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5159. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5)
  5160. }
  5161. .modal-sm {
  5162. width: 300px
  5163. }
  5164. }
  5165. @media (min-width: 992px) {
  5166. .modal-lg {
  5167. width: 80%;
  5168. max-width: 1200px;
  5169. }
  5170. }
  5171. .tooltip {
  5172. position: absolute;
  5173. z-index: 1070;
  5174. display: block;
  5175. font-family: $font-family-sans-serif;
  5176. font-style: normal;
  5177. font-weight: normal;
  5178. letter-spacing: normal;
  5179. line-break: auto;
  5180. line-height: $line-height-base;
  5181. text-align: left;
  5182. text-align: start;
  5183. text-decoration: none;
  5184. text-shadow: none;
  5185. text-transform: none;
  5186. white-space: normal;
  5187. word-break: normal;
  5188. word-spacing: normal;
  5189. word-wrap: normal;
  5190. font-size: $font-size-small;
  5191. opacity: 0;
  5192. filter: alpha(opacity=0)
  5193. }
  5194. .tooltip.in {
  5195. opacity: 0.9;
  5196. filter: alpha(opacity=90)
  5197. }
  5198. .tooltip.top {
  5199. margin-top: -3px;
  5200. padding: 5px 0
  5201. }
  5202. .tooltip.right {
  5203. margin-left: 3px;
  5204. padding: 0 5px
  5205. }
  5206. .tooltip.bottom {
  5207. margin-top: 3px;
  5208. padding: 5px 0
  5209. }
  5210. .tooltip.left {
  5211. margin-left: -3px;
  5212. padding: 0 5px
  5213. }
  5214. .tooltip-inner {
  5215. max-width: 400px;
  5216. padding: 15px;
  5217. color: #ffffff;
  5218. text-align: center;
  5219. background-color: #000000;
  5220. border-radius: $border-radius-base
  5221. }
  5222. .tooltip-arrow {
  5223. position: absolute;
  5224. width: 0;
  5225. height: 0;
  5226. border-color: transparent;
  5227. border-style: solid
  5228. }
  5229. .tooltip.top .tooltip-arrow {
  5230. bottom: 0;
  5231. left: 50%;
  5232. margin-left: -5px;
  5233. border-width: 5px 5px 0;
  5234. border-top-color: #000000
  5235. }
  5236. .tooltip.top-left .tooltip-arrow {
  5237. bottom: 0;
  5238. right: 5px;
  5239. margin-bottom: -5px;
  5240. border-width: 5px 5px 0;
  5241. border-top-color: #000000
  5242. }
  5243. .tooltip.top-right .tooltip-arrow {
  5244. bottom: 0;
  5245. left: 5px;
  5246. margin-bottom: -5px;
  5247. border-width: 5px 5px 0;
  5248. border-top-color: #000000
  5249. }
  5250. .tooltip.right .tooltip-arrow {
  5251. top: 50%;
  5252. left: 0;
  5253. margin-top: -5px;
  5254. border-width: 5px 5px 5px 0;
  5255. border-right-color: #000000
  5256. }
  5257. .tooltip.left .tooltip-arrow {
  5258. top: 50%;
  5259. right: 0;
  5260. margin-top: -5px;
  5261. border-width: 5px 0 5px 5px;
  5262. border-left-color: #000000
  5263. }
  5264. .tooltip.bottom .tooltip-arrow {
  5265. top: 0;
  5266. left: 50%;
  5267. margin-left: -5px;
  5268. border-width: 0 5px 5px;
  5269. border-bottom-color: #000000
  5270. }
  5271. .tooltip.bottom-left .tooltip-arrow {
  5272. top: 0;
  5273. right: 5px;
  5274. margin-top: -5px;
  5275. border-width: 0 5px 5px;
  5276. border-bottom-color: #000000
  5277. }
  5278. .tooltip.bottom-right .tooltip-arrow {
  5279. top: 0;
  5280. left: 5px;
  5281. margin-top: -5px;
  5282. border-width: 0 5px 5px;
  5283. border-bottom-color: #000000
  5284. }
  5285. .popover {
  5286. position: absolute;
  5287. top: 0;
  5288. left: 0;
  5289. z-index: 1060;
  5290. display: none;
  5291. max-width: 276px;
  5292. padding: 1px;
  5293. font-family: $font-family-sans-serif;
  5294. font-style: normal;
  5295. font-weight: normal;
  5296. letter-spacing: normal;
  5297. line-break: auto;
  5298. line-height: $line-height-base;
  5299. text-align: left;
  5300. text-align: start;
  5301. text-decoration: none;
  5302. text-shadow: none;
  5303. text-transform: none;
  5304. white-space: normal;
  5305. word-break: normal;
  5306. word-spacing: normal;
  5307. word-wrap: normal;
  5308. font-size: $font-size-base;
  5309. background-color: #ffffff;
  5310. -webkit-background-clip: padding-box;
  5311. background-clip: padding-box;
  5312. border: 1px solid #cccccc;
  5313. border: 1px solid rgba(0, 0, 0, 0.2);
  5314. border-radius: $border-radius-large;
  5315. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5316. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2)
  5317. }
  5318. .popover.top {
  5319. margin-top: -10px
  5320. }
  5321. .popover.right {
  5322. margin-left: 10px
  5323. }
  5324. .popover.bottom {
  5325. margin-top: 10px
  5326. }
  5327. .popover.left {
  5328. margin-left: -10px
  5329. }
  5330. .popover-title {
  5331. margin: 0;
  5332. padding: 8px 14px;
  5333. font-size: $font-size-base;
  5334. background-color: #f7f7f7;
  5335. border-bottom: 1px solid #ebebeb;
  5336. border-radius: 5px 5px 0 0
  5337. }
  5338. .popover-content {
  5339. padding: 9px 14px
  5340. }
  5341. .popover>.arrow,
  5342. .popover>.arrow:after {
  5343. position: absolute;
  5344. display: block;
  5345. width: 0;
  5346. height: 0;
  5347. border-color: transparent;
  5348. border-style: solid
  5349. }
  5350. .popover>.arrow {
  5351. border-width: 11px
  5352. }
  5353. .popover>.arrow:after {
  5354. border-width: 10px;
  5355. content: ""
  5356. }
  5357. .popover.top>.arrow {
  5358. left: 50%;
  5359. margin-left: -11px;
  5360. border-bottom-width: 0;
  5361. border-top-color: #999999;
  5362. border-top-color: rgba(0, 0, 0, 0.25);
  5363. bottom: -11px
  5364. }
  5365. .popover.top>.arrow:after {
  5366. content: " ";
  5367. bottom: 1px;
  5368. margin-left: -10px;
  5369. border-bottom-width: 0;
  5370. border-top-color: #ffffff
  5371. }
  5372. .popover.right>.arrow {
  5373. top: 50%;
  5374. left: -11px;
  5375. margin-top: -11px;
  5376. border-left-width: 0;
  5377. border-right-color: #999999;
  5378. border-right-color: rgba(0, 0, 0, 0.25)
  5379. }
  5380. .popover.right>.arrow:after {
  5381. content: " ";
  5382. left: 1px;
  5383. bottom: -10px;
  5384. border-left-width: 0;
  5385. border-right-color: #ffffff
  5386. }
  5387. .popover.bottom>.arrow {
  5388. left: 50%;
  5389. margin-left: -11px;
  5390. border-top-width: 0;
  5391. border-bottom-color: #999999;
  5392. border-bottom-color: rgba(0, 0, 0, 0.25);
  5393. top: -11px
  5394. }
  5395. .popover.bottom>.arrow:after {
  5396. content: " ";
  5397. top: 1px;
  5398. margin-left: -10px;
  5399. border-top-width: 0;
  5400. border-bottom-color: #ffffff
  5401. }
  5402. .popover.left>.arrow {
  5403. top: 50%;
  5404. right: -11px;
  5405. margin-top: -11px;
  5406. border-right-width: 0;
  5407. border-left-color: #999999;
  5408. border-left-color: rgba(0, 0, 0, 0.25)
  5409. }
  5410. .popover.left>.arrow:after {
  5411. content: " ";
  5412. right: 1px;
  5413. border-right-width: 0;
  5414. border-left-color: #ffffff;
  5415. bottom: -10px
  5416. }
  5417. .carousel {
  5418. position: relative
  5419. }
  5420. .carousel-inner {
  5421. position: relative;
  5422. overflow: hidden;
  5423. width: 100%
  5424. }
  5425. .carousel-inner>.item {
  5426. display: none;
  5427. position: relative;
  5428. -webkit-transition: .6s ease-in-out left;
  5429. -o-transition: .6s ease-in-out left;
  5430. transition: .6s ease-in-out left
  5431. }
  5432. .carousel-inner>.item>img,
  5433. .carousel-inner>.item>a>img {
  5434. line-height: 1
  5435. }
  5436. @media all and (transform-3d),
  5437. (-webkit-transform-3d) {
  5438. .carousel-inner>.item {
  5439. -webkit-transition: -webkit-transform .6s ease-in-out;
  5440. -o-transition: -o-transform .6s ease-in-out;
  5441. transition: transform .6s ease-in-out;
  5442. -webkit-backface-visibility: hidden;
  5443. backface-visibility: hidden;
  5444. -webkit-perspective: 1000px;
  5445. perspective: 1000px
  5446. }
  5447. .carousel-inner>.item.next,
  5448. .carousel-inner>.item.active.right {
  5449. -webkit-transform: translate3d(100%, 0, 0);
  5450. transform: translate3d(100%, 0, 0);
  5451. left: 0
  5452. }
  5453. .carousel-inner>.item.prev,
  5454. .carousel-inner>.item.active.left {
  5455. -webkit-transform: translate3d(-100%, 0, 0);
  5456. transform: translate3d(-100%, 0, 0);
  5457. left: 0
  5458. }
  5459. .carousel-inner>.item.next.left,
  5460. .carousel-inner>.item.prev.right,
  5461. .carousel-inner>.item.active {
  5462. -webkit-transform: translate3d(0, 0, 0);
  5463. transform: translate3d(0, 0, 0);
  5464. left: 0
  5465. }
  5466. }
  5467. .carousel-inner>.active,
  5468. .carousel-inner>.next,
  5469. .carousel-inner>.prev {
  5470. display: block
  5471. }
  5472. .carousel-inner>.active {
  5473. left: 0
  5474. }
  5475. .carousel-inner>.next,
  5476. .carousel-inner>.prev {
  5477. position: absolute;
  5478. top: 0;
  5479. width: 100%
  5480. }
  5481. .carousel-inner>.next {
  5482. left: 100%
  5483. }
  5484. .carousel-inner>.prev {
  5485. left: -100%
  5486. }
  5487. .carousel-inner>.next.left,
  5488. .carousel-inner>.prev.right {
  5489. left: 0
  5490. }
  5491. .carousel-inner>.active.left {
  5492. left: -100%
  5493. }
  5494. .carousel-inner>.active.right {
  5495. left: 100%
  5496. }
  5497. .carousel-control {
  5498. position: absolute;
  5499. top: 0;
  5500. left: 0;
  5501. bottom: 0;
  5502. width: 15%;
  5503. opacity: 0.5;
  5504. filter: alpha(opacity=50);
  5505. font-size: 20px;
  5506. color: #ffffff;
  5507. text-align: center;
  5508. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
  5509. }
  5510. .carousel-control.left {
  5511. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  5512. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  5513. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  5514. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  5515. background-repeat: repeat-x;
  5516. filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
  5517. }
  5518. .carousel-control.right {
  5519. left: auto;
  5520. right: 0;
  5521. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  5522. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  5523. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  5524. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  5525. background-repeat: repeat-x;
  5526. filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
  5527. }
  5528. .carousel-control:hover,
  5529. .carousel-control:focus {
  5530. outline: 0;
  5531. color: #ffffff;
  5532. text-decoration: none;
  5533. opacity: 0.9;
  5534. filter: alpha(opacity=90)
  5535. }
  5536. .carousel-control .icon-prev,
  5537. .carousel-control .icon-next,
  5538. .carousel-control .glyphicon-chevron-left,
  5539. .carousel-control .glyphicon-chevron-right {
  5540. position: absolute;
  5541. top: 50%;
  5542. margin-top: -10px;
  5543. z-index: 5;
  5544. display: inline-block
  5545. }
  5546. .carousel-control .icon-prev,
  5547. .carousel-control .glyphicon-chevron-left {
  5548. left: 50%;
  5549. margin-left: -10px
  5550. }
  5551. .carousel-control .icon-next,
  5552. .carousel-control .glyphicon-chevron-right {
  5553. right: 50%;
  5554. margin-right: -10px
  5555. }
  5556. .carousel-control .icon-prev,
  5557. .carousel-control .icon-next {
  5558. width: 20px;
  5559. height: 20px;
  5560. line-height: 1;
  5561. font-family: serif
  5562. }
  5563. .carousel-control .icon-prev:before {
  5564. content: '\2039'
  5565. }
  5566. .carousel-control .icon-next:before {
  5567. content: '\203a'
  5568. }
  5569. .carousel-indicators {
  5570. position: absolute;
  5571. bottom: 10px;
  5572. left: 50%;
  5573. z-index: 15;
  5574. width: 60%;
  5575. margin-left: -30%;
  5576. padding-left: 0;
  5577. list-style: none;
  5578. text-align: center
  5579. }
  5580. .carousel-indicators li {
  5581. display: inline-block;
  5582. width: 10px;
  5583. height: 10px;
  5584. margin: 1px;
  5585. text-indent: -999px;
  5586. border: 1px solid #ffffff;
  5587. border-radius: 10px;
  5588. cursor: pointer;
  5589. background-color: #000 \9;
  5590. background-color: rgba(0, 0, 0, 0)
  5591. }
  5592. .carousel-indicators .active {
  5593. margin: 0;
  5594. width: 12px;
  5595. height: 12px;
  5596. background-color: #ffffff
  5597. }
  5598. .carousel-caption {
  5599. position: absolute;
  5600. left: 15%;
  5601. right: 15%;
  5602. bottom: 20px;
  5603. z-index: 10;
  5604. padding-top: 20px;
  5605. padding-bottom: 20px;
  5606. color: #ffffff;
  5607. text-align: center;
  5608. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6)
  5609. }
  5610. .carousel-caption .btn {
  5611. text-shadow: none
  5612. }
  5613. @media screen and (min-width: 768px) {
  5614. .carousel-control .glyphicon-chevron-left,
  5615. .carousel-control .glyphicon-chevron-right,
  5616. .carousel-control .icon-prev,
  5617. .carousel-control .icon-next {
  5618. width: 30px;
  5619. height: 30px;
  5620. margin-top: -15px;
  5621. font-size: 30px
  5622. }
  5623. .carousel-control .glyphicon-chevron-left,
  5624. .carousel-control .icon-prev {
  5625. margin-left: -15px
  5626. }
  5627. .carousel-control .glyphicon-chevron-right,
  5628. .carousel-control .icon-next {
  5629. margin-right: -15px
  5630. }
  5631. .carousel-caption {
  5632. left: 20%;
  5633. right: 20%;
  5634. padding-bottom: 30px
  5635. }
  5636. .carousel-indicators {
  5637. bottom: 20px
  5638. }
  5639. }
  5640. .clearfix:before,
  5641. .clearfix:after,
  5642. .dl-horizontal dd:before,
  5643. .dl-horizontal dd:after,
  5644. .container:before,
  5645. .container:after,
  5646. .container-fluid:before,
  5647. .container-fluid:after,
  5648. .row:before,
  5649. .row:after,
  5650. .form-horizontal .form-group:before,
  5651. .form-horizontal .form-group:after,
  5652. .btn-toolbar:before,
  5653. .btn-toolbar:after,
  5654. .btn-group-vertical>.btn-group:before,
  5655. .btn-group-vertical>.btn-group:after,
  5656. .nav:before,
  5657. .nav:after,
  5658. .navbar:before,
  5659. .navbar:after,
  5660. .navbar-header:before,
  5661. .navbar-header:after,
  5662. .navbar-collapse:before,
  5663. .navbar-collapse:after,
  5664. .pager:before,
  5665. .pager:after,
  5666. .panel-body:before,
  5667. .panel-body:after,
  5668. .modal-footer:before,
  5669. .modal-footer:after {
  5670. content: " ";
  5671. display: table
  5672. }
  5673. .clearfix:after,
  5674. .dl-horizontal dd:after,
  5675. .container:after,
  5676. .container-fluid:after,
  5677. .row:after,
  5678. .form-horizontal .form-group:after,
  5679. .btn-toolbar:after,
  5680. .btn-group-vertical>.btn-group:after,
  5681. .nav:after,
  5682. .navbar:after,
  5683. .navbar-header:after,
  5684. .navbar-collapse:after,
  5685. .pager:after,
  5686. .panel-body:after,
  5687. .modal-footer:after {
  5688. clear: both
  5689. }
  5690. .center-block {
  5691. display: block;
  5692. margin-left: auto;
  5693. margin-right: auto
  5694. }
  5695. .pull-right {
  5696. float: right !important
  5697. }
  5698. .pull-left {
  5699. float: left !important
  5700. }
  5701. .hide {
  5702. display: none !important
  5703. }
  5704. .show {
  5705. display: block !important
  5706. }
  5707. .invisible {
  5708. visibility: hidden
  5709. }
  5710. .text-hide {
  5711. font: 0/0 a;
  5712. color: transparent;
  5713. text-shadow: none;
  5714. background-color: transparent;
  5715. border: 0
  5716. }
  5717. .hidden {
  5718. display: none !important
  5719. }
  5720. .affix {
  5721. position: fixed
  5722. }
  5723. @-ms-viewport {
  5724. width: device-width
  5725. }
  5726. .visible-xs,
  5727. .visible-sm,
  5728. .visible-md,
  5729. .visible-lg {
  5730. display: none !important
  5731. }
  5732. .visible-xs-block,
  5733. .visible-xs-inline,
  5734. .visible-xs-inline-block,
  5735. .visible-sm-block,
  5736. .visible-sm-inline,
  5737. .visible-sm-inline-block,
  5738. .visible-md-block,
  5739. .visible-md-inline,
  5740. .visible-md-inline-block,
  5741. .visible-lg-block,
  5742. .visible-lg-inline,
  5743. .visible-lg-inline-block {
  5744. display: none !important
  5745. }
  5746. @media (max-width: 767px) {
  5747. .visible-xs {
  5748. display: block !important
  5749. }
  5750. table.visible-xs {
  5751. display: table !important
  5752. }
  5753. tr.visible-xs {
  5754. display: table-row !important
  5755. }
  5756. th.visible-xs,
  5757. td.visible-xs {
  5758. display: table-cell !important
  5759. }
  5760. }
  5761. @media (max-width: 767px) {
  5762. .visible-xs-block {
  5763. display: block !important
  5764. }
  5765. }
  5766. @media (max-width: 767px) {
  5767. .visible-xs-inline {
  5768. display: inline !important
  5769. }
  5770. }
  5771. @media (max-width: 767px) {
  5772. .visible-xs-inline-block {
  5773. display: inline-block !important
  5774. }
  5775. }
  5776. @media (min-width: 768px) and (max-width: 991px) {
  5777. .visible-sm {
  5778. display: block !important
  5779. }
  5780. table.visible-sm {
  5781. display: table !important
  5782. }
  5783. tr.visible-sm {
  5784. display: table-row !important
  5785. }
  5786. th.visible-sm,
  5787. td.visible-sm {
  5788. display: table-cell !important
  5789. }
  5790. }
  5791. @media (min-width: 768px) and (max-width: 991px) {
  5792. .visible-sm-block {
  5793. display: block !important
  5794. }
  5795. }
  5796. @media (min-width: 768px) and (max-width: 991px) {
  5797. .visible-sm-inline {
  5798. display: inline !important
  5799. }
  5800. }
  5801. @media (min-width: 768px) and (max-width: 991px) {
  5802. .visible-sm-inline-block {
  5803. display: inline-block !important
  5804. }
  5805. }
  5806. @media (min-width: 992px) and (max-width: 1199px) {
  5807. .visible-md {
  5808. display: block !important
  5809. }
  5810. table.visible-md {
  5811. display: table !important
  5812. }
  5813. tr.visible-md {
  5814. display: table-row !important
  5815. }
  5816. th.visible-md,
  5817. td.visible-md {
  5818. display: table-cell !important
  5819. }
  5820. }
  5821. @media (min-width: 992px) and (max-width: 1199px) {
  5822. .visible-md-block {
  5823. display: block !important
  5824. }
  5825. }
  5826. @media (min-width: 992px) and (max-width: 1199px) {
  5827. .visible-md-inline {
  5828. display: inline !important
  5829. }
  5830. }
  5831. @media (min-width: 992px) and (max-width: 1199px) {
  5832. .visible-md-inline-block {
  5833. display: inline-block !important
  5834. }
  5835. }
  5836. @media (min-width: 1200px) {
  5837. .visible-lg {
  5838. display: block !important
  5839. }
  5840. table.visible-lg {
  5841. display: table !important
  5842. }
  5843. tr.visible-lg {
  5844. display: table-row !important
  5845. }
  5846. th.visible-lg,
  5847. td.visible-lg {
  5848. display: table-cell !important
  5849. }
  5850. }
  5851. @media (min-width: 1200px) {
  5852. .visible-lg-block {
  5853. display: block !important
  5854. }
  5855. }
  5856. @media (min-width: 1200px) {
  5857. .visible-lg-inline {
  5858. display: inline !important
  5859. }
  5860. }
  5861. @media (min-width: 1200px) {
  5862. .visible-lg-inline-block {
  5863. display: inline-block !important
  5864. }
  5865. }
  5866. @media (max-width: 767px) {
  5867. .hidden-xs {
  5868. display: none !important
  5869. }
  5870. }
  5871. @media (min-width: 768px) and (max-width: 991px) {
  5872. .hidden-sm {
  5873. display: none !important
  5874. }
  5875. }
  5876. @media (min-width: 992px) and (max-width: 1199px) {
  5877. .hidden-md {
  5878. display: none !important
  5879. }
  5880. }
  5881. @media (min-width: 1200px) {
  5882. .hidden-lg {
  5883. display: none !important
  5884. }
  5885. }
  5886. .visible-print {
  5887. display: none !important
  5888. }
  5889. @media print {
  5890. .visible-print {
  5891. display: block !important
  5892. }
  5893. table.visible-print {
  5894. display: table !important
  5895. }
  5896. tr.visible-print {
  5897. display: table-row !important
  5898. }
  5899. th.visible-print,
  5900. td.visible-print {
  5901. display: table-cell !important
  5902. }
  5903. }
  5904. .visible-print-block {
  5905. display: none !important
  5906. }
  5907. @media print {
  5908. .visible-print-block {
  5909. display: block !important
  5910. }
  5911. }
  5912. .visible-print-inline {
  5913. display: none !important
  5914. }
  5915. @media print {
  5916. .visible-print-inline {
  5917. display: inline !important
  5918. }
  5919. }
  5920. .visible-print-inline-block {
  5921. display: none !important
  5922. }
  5923. @media print {
  5924. .visible-print-inline-block {
  5925. display: inline-block !important
  5926. }
  5927. }
  5928. @media print {
  5929. .hidden-print {
  5930. display: none !important
  5931. }
  5932. }
  5933. .navbar-inverse .badge {
  5934. background-color: #fff;
  5935. color: $brand-primary
  5936. }
  5937. .btn {
  5938. font-family: $font-family-sans-serif
  5939. }
  5940. .btn-default,
  5941. .btn-default:hover {
  5942. color: $btn-default-color;
  5943. border: $btn-default-border
  5944. }
  5945. .btn-primary,
  5946. .btn-primary:hover {
  5947. border: 1px solid $brand-primary-dark
  5948. }
  5949. .btn-success,
  5950. .btn-success:hover {
  5951. border: 1px solid #2f6405
  5952. }
  5953. .btn-info,
  5954. .btn-info:hover {
  5955. border: 1px solid #02749c
  5956. }
  5957. .btn-warning,
  5958. .btn-warning:hover {
  5959. border: 1px solid #79377c
  5960. }
  5961. .btn-danger,
  5962. .btn-danger:hover {
  5963. border: 1px solid #ac6819
  5964. }
  5965. body {
  5966. font-weight: 200
  5967. }
  5968. th {
  5969. color: #444444
  5970. }
  5971. legend {
  5972. color: #444444
  5973. }
  5974. label {
  5975. font-weight: bold
  5976. }
  5977. .pager a {
  5978. color: #444444
  5979. }
  5980. .pager a:hover,
  5981. .pager .active>a {
  5982. border-color: $brand-primary;
  5983. color: #fff
  5984. }
  5985. .pager .disabled>a {
  5986. border-color: #dddddd
  5987. }
  5988. /*
  5989. * Specific to the combodo theme. Not standard BS classes
  5990. */
  5991. .btn-group.btn_group_explicit{
  5992. padding: 7px;
  5993. background-color: $combodo-dark-gray-darker;
  5994. border: 1px solid #EBEAEA;
  5995. border-radius: 30px;
  5996. box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4) inset;
  5997. }
  5998. .btn-group.btn_group_explicit .btn{
  5999. color: $white;
  6000. background-color: transparent;
  6001. border: none;
  6002. }
  6003. .btn-group.btn_group_explicit .btn.active{
  6004. color: #6B6965;
  6005. background-color: $body-bg;
  6006. border-radius: 37px !important;
  6007. box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.4);
  6008. }