bootstrap-theme-combodo.scss 137 KB

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