bootstrap-theme-combodo.scss 140 KB

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