misago.css 141 KB

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