bootstrap-theme-combodo.scss 139 KB

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