bootstrap.css 169 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981
  1. /*!
  2. * Bootstrap v4.1.1 (https://getbootstrap.com/)
  3. * Copyright 2011-2018 The Bootstrap Authors
  4. * Copyright 2011-2018 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  6. */
  7. :root {
  8. --blue: #007bff;
  9. --indigo: #6610f2;
  10. --purple: #6f42c1;
  11. --pink: #e83e8c;
  12. --red: #dc3545;
  13. --orange: #fd7e14;
  14. --yellow: #ffc107;
  15. --green: #28a745;
  16. --teal: #20c997;
  17. --cyan: #17a2b8;
  18. --white: #fff;
  19. --gray: #6c757d;
  20. --gray-dark: #343a40;
  21. --primary: #007bff;
  22. --secondary: #6c757d;
  23. --success: #28a745;
  24. --info: #17a2b8;
  25. --warning: #ffc107;
  26. --danger: #dc3545;
  27. --light: #f8f9fa;
  28. --dark: #343a40;
  29. --breakpoint-xs: 0;
  30. --breakpoint-sm: 576px;
  31. --breakpoint-md: 768px;
  32. --breakpoint-lg: 992px;
  33. --breakpoint-xl: 1200px;
  34. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  35. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  36. }
  37. *,
  38. *::before,
  39. *::after {
  40. box-sizing: border-box;
  41. }
  42. html {
  43. font-family: sans-serif;
  44. line-height: 1.15;
  45. -webkit-text-size-adjust: 100%;
  46. -ms-text-size-adjust: 100%;
  47. -ms-overflow-style: scrollbar;
  48. -webkit-tap-highlight-color: transparent;
  49. }
  50. @-ms-viewport {
  51. width: device-width;
  52. }
  53. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  54. display: block;
  55. }
  56. body {
  57. margin: 0;
  58. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  59. font-size: 1rem;
  60. font-weight: 400;
  61. line-height: 1.5;
  62. color: #212529;
  63. text-align: left;
  64. background-color: #fff;
  65. }
  66. [tabindex="-1"]:focus {
  67. outline: 0 !important;
  68. }
  69. hr {
  70. box-sizing: content-box;
  71. height: 0;
  72. overflow: visible;
  73. }
  74. h1, h2, h3, h4, h5, h6 {
  75. margin-top: 0;
  76. margin-bottom: 0.5rem;
  77. }
  78. p {
  79. margin-top: 0;
  80. margin-bottom: 1rem;
  81. }
  82. abbr[title],
  83. abbr[data-original-title] {
  84. text-decoration: underline;
  85. -webkit-text-decoration: underline dotted;
  86. text-decoration: underline dotted;
  87. cursor: help;
  88. border-bottom: 0;
  89. }
  90. address {
  91. margin-bottom: 1rem;
  92. font-style: normal;
  93. line-height: inherit;
  94. }
  95. ol,
  96. ul,
  97. dl {
  98. margin-top: 0;
  99. margin-bottom: 1rem;
  100. }
  101. ol ol,
  102. ul ul,
  103. ol ul,
  104. ul ol {
  105. margin-bottom: 0;
  106. }
  107. dt {
  108. font-weight: 700;
  109. }
  110. dd {
  111. margin-bottom: .5rem;
  112. margin-left: 0;
  113. }
  114. blockquote {
  115. margin: 0 0 1rem;
  116. }
  117. dfn {
  118. font-style: italic;
  119. }
  120. b,
  121. strong {
  122. font-weight: bolder;
  123. }
  124. small {
  125. font-size: 80%;
  126. }
  127. sub,
  128. sup {
  129. position: relative;
  130. font-size: 75%;
  131. line-height: 0;
  132. vertical-align: baseline;
  133. }
  134. sub {
  135. bottom: -.25em;
  136. }
  137. sup {
  138. top: -.5em;
  139. }
  140. a {
  141. color: #007bff;
  142. text-decoration: none;
  143. background-color: transparent;
  144. -webkit-text-decoration-skip: objects;
  145. }
  146. a:hover {
  147. color: #0056b3;
  148. text-decoration: underline;
  149. }
  150. a:not([href]):not([tabindex]) {
  151. color: inherit;
  152. text-decoration: none;
  153. }
  154. a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  155. color: inherit;
  156. text-decoration: none;
  157. }
  158. a:not([href]):not([tabindex]):focus {
  159. outline: 0;
  160. }
  161. pre,
  162. code,
  163. kbd,
  164. samp {
  165. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  166. font-size: 1em;
  167. }
  168. pre {
  169. margin-top: 0;
  170. margin-bottom: 1rem;
  171. overflow: auto;
  172. -ms-overflow-style: scrollbar;
  173. }
  174. figure {
  175. margin: 0 0 1rem;
  176. }
  177. img {
  178. vertical-align: middle;
  179. border-style: none;
  180. }
  181. svg:not(:root) {
  182. overflow: hidden;
  183. }
  184. table {
  185. border-collapse: collapse;
  186. }
  187. caption {
  188. padding-top: 0.75rem;
  189. padding-bottom: 0.75rem;
  190. color: #6c757d;
  191. text-align: left;
  192. caption-side: bottom;
  193. }
  194. th {
  195. text-align: inherit;
  196. }
  197. label {
  198. display: inline-block;
  199. margin-bottom: 0.5rem;
  200. }
  201. button {
  202. border-radius: 0;
  203. }
  204. button:focus {
  205. outline: 1px dotted;
  206. outline: 5px auto -webkit-focus-ring-color;
  207. }
  208. input,
  209. button,
  210. select,
  211. optgroup,
  212. textarea {
  213. margin: 0;
  214. font-family: inherit;
  215. font-size: inherit;
  216. line-height: inherit;
  217. }
  218. button,
  219. input {
  220. overflow: visible;
  221. }
  222. button,
  223. select {
  224. text-transform: none;
  225. }
  226. button,
  227. html [type="button"],
  228. [type="reset"],
  229. [type="submit"] {
  230. -webkit-appearance: button;
  231. }
  232. button::-moz-focus-inner,
  233. [type="button"]::-moz-focus-inner,
  234. [type="reset"]::-moz-focus-inner,
  235. [type="submit"]::-moz-focus-inner {
  236. padding: 0;
  237. border-style: none;
  238. }
  239. input[type="radio"],
  240. input[type="checkbox"] {
  241. box-sizing: border-box;
  242. padding: 0;
  243. }
  244. input[type="date"],
  245. input[type="time"],
  246. input[type="datetime-local"],
  247. input[type="month"] {
  248. -webkit-appearance: listbox;
  249. }
  250. textarea {
  251. overflow: auto;
  252. resize: vertical;
  253. }
  254. fieldset {
  255. min-width: 0;
  256. padding: 0;
  257. margin: 0;
  258. border: 0;
  259. }
  260. legend {
  261. display: block;
  262. width: 100%;
  263. max-width: 100%;
  264. padding: 0;
  265. margin-bottom: .5rem;
  266. font-size: 1.5rem;
  267. line-height: inherit;
  268. color: inherit;
  269. white-space: normal;
  270. }
  271. progress {
  272. vertical-align: baseline;
  273. }
  274. [type="number"]::-webkit-inner-spin-button,
  275. [type="number"]::-webkit-outer-spin-button {
  276. height: auto;
  277. }
  278. [type="search"] {
  279. outline-offset: -2px;
  280. -webkit-appearance: none;
  281. }
  282. [type="search"]::-webkit-search-cancel-button,
  283. [type="search"]::-webkit-search-decoration {
  284. -webkit-appearance: none;
  285. }
  286. ::-webkit-file-upload-button {
  287. font: inherit;
  288. -webkit-appearance: button;
  289. }
  290. output {
  291. display: inline-block;
  292. }
  293. summary {
  294. display: list-item;
  295. cursor: pointer;
  296. }
  297. template {
  298. display: none;
  299. }
  300. [hidden] {
  301. display: none !important;
  302. }
  303. h1, h2, h3, h4, h5, h6,
  304. .h1, .h2, .h3, .h4, .h5, .h6 {
  305. margin-bottom: 0.5rem;
  306. font-family: inherit;
  307. font-weight: 500;
  308. line-height: 1.2;
  309. color: inherit;
  310. }
  311. h1, .h1 {
  312. font-size: 2.5rem;
  313. }
  314. h2, .h2 {
  315. font-size: 2rem;
  316. }
  317. h3, .h3 {
  318. font-size: 1.75rem;
  319. }
  320. h4, .h4 {
  321. font-size: 1.5rem;
  322. }
  323. h5, .h5 {
  324. font-size: 1.25rem;
  325. }
  326. h6, .h6 {
  327. font-size: 1rem;
  328. }
  329. .lead {
  330. font-size: 1.25rem;
  331. font-weight: 300;
  332. }
  333. .display-1 {
  334. font-size: 6rem;
  335. font-weight: 300;
  336. line-height: 1.2;
  337. }
  338. .display-2 {
  339. font-size: 5.5rem;
  340. font-weight: 300;
  341. line-height: 1.2;
  342. }
  343. .display-3 {
  344. font-size: 4.5rem;
  345. font-weight: 300;
  346. line-height: 1.2;
  347. }
  348. .display-4 {
  349. font-size: 3.5rem;
  350. font-weight: 300;
  351. line-height: 1.2;
  352. }
  353. hr {
  354. margin-top: 1rem;
  355. margin-bottom: 1rem;
  356. border: 0;
  357. border-top: 1px solid rgba(0, 0, 0, 0.1);
  358. }
  359. small,
  360. .small {
  361. font-size: 80%;
  362. font-weight: 400;
  363. }
  364. mark,
  365. .mark {
  366. padding: 0.2em;
  367. background-color: #fcf8e3;
  368. }
  369. .list-unstyled {
  370. padding-left: 0;
  371. list-style: none;
  372. }
  373. .list-inline {
  374. padding-left: 0;
  375. list-style: none;
  376. }
  377. .list-inline-item {
  378. display: inline-block;
  379. }
  380. .list-inline-item:not(:last-child) {
  381. margin-right: 0.5rem;
  382. }
  383. .initialism {
  384. font-size: 90%;
  385. text-transform: uppercase;
  386. }
  387. .blockquote {
  388. margin-bottom: 1rem;
  389. font-size: 1.25rem;
  390. }
  391. .blockquote-footer {
  392. display: block;
  393. font-size: 80%;
  394. color: #6c757d;
  395. }
  396. .blockquote-footer::before {
  397. content: "\2014 \00A0";
  398. }
  399. .img-fluid {
  400. max-width: 100%;
  401. height: auto;
  402. }
  403. .img-thumbnail {
  404. padding: 0.25rem;
  405. background-color: #fff;
  406. border: 1px solid #dee2e6;
  407. border-radius: 0.25rem;
  408. max-width: 100%;
  409. height: auto;
  410. }
  411. .figure {
  412. display: inline-block;
  413. }
  414. .figure-img {
  415. margin-bottom: 0.5rem;
  416. line-height: 1;
  417. }
  418. .figure-caption {
  419. font-size: 90%;
  420. color: #6c757d;
  421. }
  422. code {
  423. font-size: 87.5%;
  424. color: #e83e8c;
  425. word-break: break-word;
  426. }
  427. a > code {
  428. color: inherit;
  429. }
  430. kbd {
  431. padding: 0.2rem 0.4rem;
  432. font-size: 87.5%;
  433. color: #fff;
  434. background-color: #212529;
  435. border-radius: 0.2rem;
  436. }
  437. kbd kbd {
  438. padding: 0;
  439. font-size: 100%;
  440. font-weight: 700;
  441. }
  442. pre {
  443. display: block;
  444. font-size: 87.5%;
  445. color: #212529;
  446. }
  447. pre code {
  448. font-size: inherit;
  449. color: inherit;
  450. word-break: normal;
  451. }
  452. .pre-scrollable {
  453. max-height: 340px;
  454. overflow-y: scroll;
  455. }
  456. .container {
  457. width: 100%;
  458. padding-right: 15px;
  459. padding-left: 15px;
  460. margin-right: auto;
  461. margin-left: auto;
  462. }
  463. @media (min-width: 576px) {
  464. .container {
  465. max-width: 540px;
  466. }
  467. }
  468. @media (min-width: 768px) {
  469. .container {
  470. max-width: 720px;
  471. }
  472. }
  473. @media (min-width: 992px) {
  474. .container {
  475. max-width: 960px;
  476. }
  477. }
  478. @media (min-width: 1200px) {
  479. .container {
  480. max-width: 1140px;
  481. }
  482. }
  483. .container-fluid {
  484. width: 100%;
  485. padding-right: 15px;
  486. padding-left: 15px;
  487. margin-right: auto;
  488. margin-left: auto;
  489. }
  490. .row {
  491. display: -ms-flexbox;
  492. display: flex;
  493. -ms-flex-wrap: wrap;
  494. flex-wrap: wrap;
  495. margin-right: -15px;
  496. margin-left: -15px;
  497. }
  498. .no-gutters {
  499. margin-right: 0;
  500. margin-left: 0;
  501. }
  502. .no-gutters > .col,
  503. .no-gutters > [class*="col-"] {
  504. padding-right: 0;
  505. padding-left: 0;
  506. }
  507. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  508. .col-auto, .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, .col-sm,
  509. .col-sm-auto, .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, .col-md,
  510. .col-md-auto, .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, .col-lg,
  511. .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  512. .col-xl-auto {
  513. position: relative;
  514. width: 100%;
  515. min-height: 1px;
  516. padding-right: 15px;
  517. padding-left: 15px;
  518. }
  519. .col {
  520. -ms-flex-preferred-size: 0;
  521. flex-basis: 0;
  522. -ms-flex-positive: 1;
  523. flex-grow: 1;
  524. max-width: 100%;
  525. }
  526. .col-auto {
  527. -ms-flex: 0 0 auto;
  528. flex: 0 0 auto;
  529. width: auto;
  530. max-width: none;
  531. }
  532. .col-1 {
  533. -ms-flex: 0 0 8.333333%;
  534. flex: 0 0 8.333333%;
  535. max-width: 8.333333%;
  536. }
  537. .col-2 {
  538. -ms-flex: 0 0 16.666667%;
  539. flex: 0 0 16.666667%;
  540. max-width: 16.666667%;
  541. }
  542. .col-3 {
  543. -ms-flex: 0 0 25%;
  544. flex: 0 0 25%;
  545. max-width: 25%;
  546. }
  547. .col-4 {
  548. -ms-flex: 0 0 33.333333%;
  549. flex: 0 0 33.333333%;
  550. max-width: 33.333333%;
  551. }
  552. .col-5 {
  553. -ms-flex: 0 0 41.666667%;
  554. flex: 0 0 41.666667%;
  555. max-width: 41.666667%;
  556. }
  557. .col-6 {
  558. -ms-flex: 0 0 50%;
  559. flex: 0 0 50%;
  560. max-width: 50%;
  561. }
  562. .col-7 {
  563. -ms-flex: 0 0 58.333333%;
  564. flex: 0 0 58.333333%;
  565. max-width: 58.333333%;
  566. }
  567. .col-8 {
  568. -ms-flex: 0 0 66.666667%;
  569. flex: 0 0 66.666667%;
  570. max-width: 66.666667%;
  571. }
  572. .col-9 {
  573. -ms-flex: 0 0 75%;
  574. flex: 0 0 75%;
  575. max-width: 75%;
  576. }
  577. .col-10 {
  578. -ms-flex: 0 0 83.333333%;
  579. flex: 0 0 83.333333%;
  580. max-width: 83.333333%;
  581. }
  582. .col-11 {
  583. -ms-flex: 0 0 91.666667%;
  584. flex: 0 0 91.666667%;
  585. max-width: 91.666667%;
  586. }
  587. .col-12 {
  588. -ms-flex: 0 0 100%;
  589. flex: 0 0 100%;
  590. max-width: 100%;
  591. }
  592. .order-first {
  593. -ms-flex-order: -1;
  594. order: -1;
  595. }
  596. .order-last {
  597. -ms-flex-order: 13;
  598. order: 13;
  599. }
  600. .order-0 {
  601. -ms-flex-order: 0;
  602. order: 0;
  603. }
  604. .order-1 {
  605. -ms-flex-order: 1;
  606. order: 1;
  607. }
  608. .order-2 {
  609. -ms-flex-order: 2;
  610. order: 2;
  611. }
  612. .order-3 {
  613. -ms-flex-order: 3;
  614. order: 3;
  615. }
  616. .order-4 {
  617. -ms-flex-order: 4;
  618. order: 4;
  619. }
  620. .order-5 {
  621. -ms-flex-order: 5;
  622. order: 5;
  623. }
  624. .order-6 {
  625. -ms-flex-order: 6;
  626. order: 6;
  627. }
  628. .order-7 {
  629. -ms-flex-order: 7;
  630. order: 7;
  631. }
  632. .order-8 {
  633. -ms-flex-order: 8;
  634. order: 8;
  635. }
  636. .order-9 {
  637. -ms-flex-order: 9;
  638. order: 9;
  639. }
  640. .order-10 {
  641. -ms-flex-order: 10;
  642. order: 10;
  643. }
  644. .order-11 {
  645. -ms-flex-order: 11;
  646. order: 11;
  647. }
  648. .order-12 {
  649. -ms-flex-order: 12;
  650. order: 12;
  651. }
  652. .offset-1 {
  653. margin-left: 8.333333%;
  654. }
  655. .offset-2 {
  656. margin-left: 16.666667%;
  657. }
  658. .offset-3 {
  659. margin-left: 25%;
  660. }
  661. .offset-4 {
  662. margin-left: 33.333333%;
  663. }
  664. .offset-5 {
  665. margin-left: 41.666667%;
  666. }
  667. .offset-6 {
  668. margin-left: 50%;
  669. }
  670. .offset-7 {
  671. margin-left: 58.333333%;
  672. }
  673. .offset-8 {
  674. margin-left: 66.666667%;
  675. }
  676. .offset-9 {
  677. margin-left: 75%;
  678. }
  679. .offset-10 {
  680. margin-left: 83.333333%;
  681. }
  682. .offset-11 {
  683. margin-left: 91.666667%;
  684. }
  685. @media (min-width: 576px) {
  686. .col-sm {
  687. -ms-flex-preferred-size: 0;
  688. flex-basis: 0;
  689. -ms-flex-positive: 1;
  690. flex-grow: 1;
  691. max-width: 100%;
  692. }
  693. .col-sm-auto {
  694. -ms-flex: 0 0 auto;
  695. flex: 0 0 auto;
  696. width: auto;
  697. max-width: none;
  698. }
  699. .col-sm-1 {
  700. -ms-flex: 0 0 8.333333%;
  701. flex: 0 0 8.333333%;
  702. max-width: 8.333333%;
  703. }
  704. .col-sm-2 {
  705. -ms-flex: 0 0 16.666667%;
  706. flex: 0 0 16.666667%;
  707. max-width: 16.666667%;
  708. }
  709. .col-sm-3 {
  710. -ms-flex: 0 0 25%;
  711. flex: 0 0 25%;
  712. max-width: 25%;
  713. }
  714. .col-sm-4 {
  715. -ms-flex: 0 0 33.333333%;
  716. flex: 0 0 33.333333%;
  717. max-width: 33.333333%;
  718. }
  719. .col-sm-5 {
  720. -ms-flex: 0 0 41.666667%;
  721. flex: 0 0 41.666667%;
  722. max-width: 41.666667%;
  723. }
  724. .col-sm-6 {
  725. -ms-flex: 0 0 50%;
  726. flex: 0 0 50%;
  727. max-width: 50%;
  728. }
  729. .col-sm-7 {
  730. -ms-flex: 0 0 58.333333%;
  731. flex: 0 0 58.333333%;
  732. max-width: 58.333333%;
  733. }
  734. .col-sm-8 {
  735. -ms-flex: 0 0 66.666667%;
  736. flex: 0 0 66.666667%;
  737. max-width: 66.666667%;
  738. }
  739. .col-sm-9 {
  740. -ms-flex: 0 0 75%;
  741. flex: 0 0 75%;
  742. max-width: 75%;
  743. }
  744. .col-sm-10 {
  745. -ms-flex: 0 0 83.333333%;
  746. flex: 0 0 83.333333%;
  747. max-width: 83.333333%;
  748. }
  749. .col-sm-11 {
  750. -ms-flex: 0 0 91.666667%;
  751. flex: 0 0 91.666667%;
  752. max-width: 91.666667%;
  753. }
  754. .col-sm-12 {
  755. -ms-flex: 0 0 100%;
  756. flex: 0 0 100%;
  757. max-width: 100%;
  758. }
  759. .order-sm-first {
  760. -ms-flex-order: -1;
  761. order: -1;
  762. }
  763. .order-sm-last {
  764. -ms-flex-order: 13;
  765. order: 13;
  766. }
  767. .order-sm-0 {
  768. -ms-flex-order: 0;
  769. order: 0;
  770. }
  771. .order-sm-1 {
  772. -ms-flex-order: 1;
  773. order: 1;
  774. }
  775. .order-sm-2 {
  776. -ms-flex-order: 2;
  777. order: 2;
  778. }
  779. .order-sm-3 {
  780. -ms-flex-order: 3;
  781. order: 3;
  782. }
  783. .order-sm-4 {
  784. -ms-flex-order: 4;
  785. order: 4;
  786. }
  787. .order-sm-5 {
  788. -ms-flex-order: 5;
  789. order: 5;
  790. }
  791. .order-sm-6 {
  792. -ms-flex-order: 6;
  793. order: 6;
  794. }
  795. .order-sm-7 {
  796. -ms-flex-order: 7;
  797. order: 7;
  798. }
  799. .order-sm-8 {
  800. -ms-flex-order: 8;
  801. order: 8;
  802. }
  803. .order-sm-9 {
  804. -ms-flex-order: 9;
  805. order: 9;
  806. }
  807. .order-sm-10 {
  808. -ms-flex-order: 10;
  809. order: 10;
  810. }
  811. .order-sm-11 {
  812. -ms-flex-order: 11;
  813. order: 11;
  814. }
  815. .order-sm-12 {
  816. -ms-flex-order: 12;
  817. order: 12;
  818. }
  819. .offset-sm-0 {
  820. margin-left: 0;
  821. }
  822. .offset-sm-1 {
  823. margin-left: 8.333333%;
  824. }
  825. .offset-sm-2 {
  826. margin-left: 16.666667%;
  827. }
  828. .offset-sm-3 {
  829. margin-left: 25%;
  830. }
  831. .offset-sm-4 {
  832. margin-left: 33.333333%;
  833. }
  834. .offset-sm-5 {
  835. margin-left: 41.666667%;
  836. }
  837. .offset-sm-6 {
  838. margin-left: 50%;
  839. }
  840. .offset-sm-7 {
  841. margin-left: 58.333333%;
  842. }
  843. .offset-sm-8 {
  844. margin-left: 66.666667%;
  845. }
  846. .offset-sm-9 {
  847. margin-left: 75%;
  848. }
  849. .offset-sm-10 {
  850. margin-left: 83.333333%;
  851. }
  852. .offset-sm-11 {
  853. margin-left: 91.666667%;
  854. }
  855. }
  856. @media (min-width: 768px) {
  857. .col-md {
  858. -ms-flex-preferred-size: 0;
  859. flex-basis: 0;
  860. -ms-flex-positive: 1;
  861. flex-grow: 1;
  862. max-width: 100%;
  863. }
  864. .col-md-auto {
  865. -ms-flex: 0 0 auto;
  866. flex: 0 0 auto;
  867. width: auto;
  868. max-width: none;
  869. }
  870. .col-md-1 {
  871. -ms-flex: 0 0 8.333333%;
  872. flex: 0 0 8.333333%;
  873. max-width: 8.333333%;
  874. }
  875. .col-md-2 {
  876. -ms-flex: 0 0 16.666667%;
  877. flex: 0 0 16.666667%;
  878. max-width: 16.666667%;
  879. }
  880. .col-md-3 {
  881. -ms-flex: 0 0 25%;
  882. flex: 0 0 25%;
  883. max-width: 25%;
  884. }
  885. .col-md-4 {
  886. -ms-flex: 0 0 33.333333%;
  887. flex: 0 0 33.333333%;
  888. max-width: 33.333333%;
  889. }
  890. .col-md-5 {
  891. -ms-flex: 0 0 41.666667%;
  892. flex: 0 0 41.666667%;
  893. max-width: 41.666667%;
  894. }
  895. .col-md-6 {
  896. -ms-flex: 0 0 50%;
  897. flex: 0 0 50%;
  898. max-width: 50%;
  899. }
  900. .col-md-7 {
  901. -ms-flex: 0 0 58.333333%;
  902. flex: 0 0 58.333333%;
  903. max-width: 58.333333%;
  904. }
  905. .col-md-8 {
  906. -ms-flex: 0 0 66.666667%;
  907. flex: 0 0 66.666667%;
  908. max-width: 66.666667%;
  909. }
  910. .col-md-9 {
  911. -ms-flex: 0 0 75%;
  912. flex: 0 0 75%;
  913. max-width: 75%;
  914. }
  915. .col-md-10 {
  916. -ms-flex: 0 0 83.333333%;
  917. flex: 0 0 83.333333%;
  918. max-width: 83.333333%;
  919. }
  920. .col-md-11 {
  921. -ms-flex: 0 0 91.666667%;
  922. flex: 0 0 91.666667%;
  923. max-width: 91.666667%;
  924. }
  925. .col-md-12 {
  926. -ms-flex: 0 0 100%;
  927. flex: 0 0 100%;
  928. max-width: 100%;
  929. }
  930. .order-md-first {
  931. -ms-flex-order: -1;
  932. order: -1;
  933. }
  934. .order-md-last {
  935. -ms-flex-order: 13;
  936. order: 13;
  937. }
  938. .order-md-0 {
  939. -ms-flex-order: 0;
  940. order: 0;
  941. }
  942. .order-md-1 {
  943. -ms-flex-order: 1;
  944. order: 1;
  945. }
  946. .order-md-2 {
  947. -ms-flex-order: 2;
  948. order: 2;
  949. }
  950. .order-md-3 {
  951. -ms-flex-order: 3;
  952. order: 3;
  953. }
  954. .order-md-4 {
  955. -ms-flex-order: 4;
  956. order: 4;
  957. }
  958. .order-md-5 {
  959. -ms-flex-order: 5;
  960. order: 5;
  961. }
  962. .order-md-6 {
  963. -ms-flex-order: 6;
  964. order: 6;
  965. }
  966. .order-md-7 {
  967. -ms-flex-order: 7;
  968. order: 7;
  969. }
  970. .order-md-8 {
  971. -ms-flex-order: 8;
  972. order: 8;
  973. }
  974. .order-md-9 {
  975. -ms-flex-order: 9;
  976. order: 9;
  977. }
  978. .order-md-10 {
  979. -ms-flex-order: 10;
  980. order: 10;
  981. }
  982. .order-md-11 {
  983. -ms-flex-order: 11;
  984. order: 11;
  985. }
  986. .order-md-12 {
  987. -ms-flex-order: 12;
  988. order: 12;
  989. }
  990. .offset-md-0 {
  991. margin-left: 0;
  992. }
  993. .offset-md-1 {
  994. margin-left: 8.333333%;
  995. }
  996. .offset-md-2 {
  997. margin-left: 16.666667%;
  998. }
  999. .offset-md-3 {
  1000. margin-left: 25%;
  1001. }
  1002. .offset-md-4 {
  1003. margin-left: 33.333333%;
  1004. }
  1005. .offset-md-5 {
  1006. margin-left: 41.666667%;
  1007. }
  1008. .offset-md-6 {
  1009. margin-left: 50%;
  1010. }
  1011. .offset-md-7 {
  1012. margin-left: 58.333333%;
  1013. }
  1014. .offset-md-8 {
  1015. margin-left: 66.666667%;
  1016. }
  1017. .offset-md-9 {
  1018. margin-left: 75%;
  1019. }
  1020. .offset-md-10 {
  1021. margin-left: 83.333333%;
  1022. }
  1023. .offset-md-11 {
  1024. margin-left: 91.666667%;
  1025. }
  1026. }
  1027. @media (min-width: 992px) {
  1028. .col-lg {
  1029. -ms-flex-preferred-size: 0;
  1030. flex-basis: 0;
  1031. -ms-flex-positive: 1;
  1032. flex-grow: 1;
  1033. max-width: 100%;
  1034. }
  1035. .col-lg-auto {
  1036. -ms-flex: 0 0 auto;
  1037. flex: 0 0 auto;
  1038. width: auto;
  1039. max-width: none;
  1040. }
  1041. .col-lg-1 {
  1042. -ms-flex: 0 0 8.333333%;
  1043. flex: 0 0 8.333333%;
  1044. max-width: 8.333333%;
  1045. }
  1046. .col-lg-2 {
  1047. -ms-flex: 0 0 16.666667%;
  1048. flex: 0 0 16.666667%;
  1049. max-width: 16.666667%;
  1050. }
  1051. .col-lg-3 {
  1052. -ms-flex: 0 0 25%;
  1053. flex: 0 0 25%;
  1054. max-width: 25%;
  1055. }
  1056. .col-lg-4 {
  1057. -ms-flex: 0 0 33.333333%;
  1058. flex: 0 0 33.333333%;
  1059. max-width: 33.333333%;
  1060. }
  1061. .col-lg-5 {
  1062. -ms-flex: 0 0 41.666667%;
  1063. flex: 0 0 41.666667%;
  1064. max-width: 41.666667%;
  1065. }
  1066. .col-lg-6 {
  1067. -ms-flex: 0 0 50%;
  1068. flex: 0 0 50%;
  1069. max-width: 50%;
  1070. }
  1071. .col-lg-7 {
  1072. -ms-flex: 0 0 58.333333%;
  1073. flex: 0 0 58.333333%;
  1074. max-width: 58.333333%;
  1075. }
  1076. .col-lg-8 {
  1077. -ms-flex: 0 0 66.666667%;
  1078. flex: 0 0 66.666667%;
  1079. max-width: 66.666667%;
  1080. }
  1081. .col-lg-9 {
  1082. -ms-flex: 0 0 75%;
  1083. flex: 0 0 75%;
  1084. max-width: 75%;
  1085. }
  1086. .col-lg-10 {
  1087. -ms-flex: 0 0 83.333333%;
  1088. flex: 0 0 83.333333%;
  1089. max-width: 83.333333%;
  1090. }
  1091. .col-lg-11 {
  1092. -ms-flex: 0 0 91.666667%;
  1093. flex: 0 0 91.666667%;
  1094. max-width: 91.666667%;
  1095. }
  1096. .col-lg-12 {
  1097. -ms-flex: 0 0 100%;
  1098. flex: 0 0 100%;
  1099. max-width: 100%;
  1100. }
  1101. .order-lg-first {
  1102. -ms-flex-order: -1;
  1103. order: -1;
  1104. }
  1105. .order-lg-last {
  1106. -ms-flex-order: 13;
  1107. order: 13;
  1108. }
  1109. .order-lg-0 {
  1110. -ms-flex-order: 0;
  1111. order: 0;
  1112. }
  1113. .order-lg-1 {
  1114. -ms-flex-order: 1;
  1115. order: 1;
  1116. }
  1117. .order-lg-2 {
  1118. -ms-flex-order: 2;
  1119. order: 2;
  1120. }
  1121. .order-lg-3 {
  1122. -ms-flex-order: 3;
  1123. order: 3;
  1124. }
  1125. .order-lg-4 {
  1126. -ms-flex-order: 4;
  1127. order: 4;
  1128. }
  1129. .order-lg-5 {
  1130. -ms-flex-order: 5;
  1131. order: 5;
  1132. }
  1133. .order-lg-6 {
  1134. -ms-flex-order: 6;
  1135. order: 6;
  1136. }
  1137. .order-lg-7 {
  1138. -ms-flex-order: 7;
  1139. order: 7;
  1140. }
  1141. .order-lg-8 {
  1142. -ms-flex-order: 8;
  1143. order: 8;
  1144. }
  1145. .order-lg-9 {
  1146. -ms-flex-order: 9;
  1147. order: 9;
  1148. }
  1149. .order-lg-10 {
  1150. -ms-flex-order: 10;
  1151. order: 10;
  1152. }
  1153. .order-lg-11 {
  1154. -ms-flex-order: 11;
  1155. order: 11;
  1156. }
  1157. .order-lg-12 {
  1158. -ms-flex-order: 12;
  1159. order: 12;
  1160. }
  1161. .offset-lg-0 {
  1162. margin-left: 0;
  1163. }
  1164. .offset-lg-1 {
  1165. margin-left: 8.333333%;
  1166. }
  1167. .offset-lg-2 {
  1168. margin-left: 16.666667%;
  1169. }
  1170. .offset-lg-3 {
  1171. margin-left: 25%;
  1172. }
  1173. .offset-lg-4 {
  1174. margin-left: 33.333333%;
  1175. }
  1176. .offset-lg-5 {
  1177. margin-left: 41.666667%;
  1178. }
  1179. .offset-lg-6 {
  1180. margin-left: 50%;
  1181. }
  1182. .offset-lg-7 {
  1183. margin-left: 58.333333%;
  1184. }
  1185. .offset-lg-8 {
  1186. margin-left: 66.666667%;
  1187. }
  1188. .offset-lg-9 {
  1189. margin-left: 75%;
  1190. }
  1191. .offset-lg-10 {
  1192. margin-left: 83.333333%;
  1193. }
  1194. .offset-lg-11 {
  1195. margin-left: 91.666667%;
  1196. }
  1197. }
  1198. @media (min-width: 1200px) {
  1199. .col-xl {
  1200. -ms-flex-preferred-size: 0;
  1201. flex-basis: 0;
  1202. -ms-flex-positive: 1;
  1203. flex-grow: 1;
  1204. max-width: 100%;
  1205. }
  1206. .col-xl-auto {
  1207. -ms-flex: 0 0 auto;
  1208. flex: 0 0 auto;
  1209. width: auto;
  1210. max-width: none;
  1211. }
  1212. .col-xl-1 {
  1213. -ms-flex: 0 0 8.333333%;
  1214. flex: 0 0 8.333333%;
  1215. max-width: 8.333333%;
  1216. }
  1217. .col-xl-2 {
  1218. -ms-flex: 0 0 16.666667%;
  1219. flex: 0 0 16.666667%;
  1220. max-width: 16.666667%;
  1221. }
  1222. .col-xl-3 {
  1223. -ms-flex: 0 0 25%;
  1224. flex: 0 0 25%;
  1225. max-width: 25%;
  1226. }
  1227. .col-xl-4 {
  1228. -ms-flex: 0 0 33.333333%;
  1229. flex: 0 0 33.333333%;
  1230. max-width: 33.333333%;
  1231. }
  1232. .col-xl-5 {
  1233. -ms-flex: 0 0 41.666667%;
  1234. flex: 0 0 41.666667%;
  1235. max-width: 41.666667%;
  1236. }
  1237. .col-xl-6 {
  1238. -ms-flex: 0 0 50%;
  1239. flex: 0 0 50%;
  1240. max-width: 50%;
  1241. }
  1242. .col-xl-7 {
  1243. -ms-flex: 0 0 58.333333%;
  1244. flex: 0 0 58.333333%;
  1245. max-width: 58.333333%;
  1246. }
  1247. .col-xl-8 {
  1248. -ms-flex: 0 0 66.666667%;
  1249. flex: 0 0 66.666667%;
  1250. max-width: 66.666667%;
  1251. }
  1252. .col-xl-9 {
  1253. -ms-flex: 0 0 75%;
  1254. flex: 0 0 75%;
  1255. max-width: 75%;
  1256. }
  1257. .col-xl-10 {
  1258. -ms-flex: 0 0 83.333333%;
  1259. flex: 0 0 83.333333%;
  1260. max-width: 83.333333%;
  1261. }
  1262. .col-xl-11 {
  1263. -ms-flex: 0 0 91.666667%;
  1264. flex: 0 0 91.666667%;
  1265. max-width: 91.666667%;
  1266. }
  1267. .col-xl-12 {
  1268. -ms-flex: 0 0 100%;
  1269. flex: 0 0 100%;
  1270. max-width: 100%;
  1271. }
  1272. .order-xl-first {
  1273. -ms-flex-order: -1;
  1274. order: -1;
  1275. }
  1276. .order-xl-last {
  1277. -ms-flex-order: 13;
  1278. order: 13;
  1279. }
  1280. .order-xl-0 {
  1281. -ms-flex-order: 0;
  1282. order: 0;
  1283. }
  1284. .order-xl-1 {
  1285. -ms-flex-order: 1;
  1286. order: 1;
  1287. }
  1288. .order-xl-2 {
  1289. -ms-flex-order: 2;
  1290. order: 2;
  1291. }
  1292. .order-xl-3 {
  1293. -ms-flex-order: 3;
  1294. order: 3;
  1295. }
  1296. .order-xl-4 {
  1297. -ms-flex-order: 4;
  1298. order: 4;
  1299. }
  1300. .order-xl-5 {
  1301. -ms-flex-order: 5;
  1302. order: 5;
  1303. }
  1304. .order-xl-6 {
  1305. -ms-flex-order: 6;
  1306. order: 6;
  1307. }
  1308. .order-xl-7 {
  1309. -ms-flex-order: 7;
  1310. order: 7;
  1311. }
  1312. .order-xl-8 {
  1313. -ms-flex-order: 8;
  1314. order: 8;
  1315. }
  1316. .order-xl-9 {
  1317. -ms-flex-order: 9;
  1318. order: 9;
  1319. }
  1320. .order-xl-10 {
  1321. -ms-flex-order: 10;
  1322. order: 10;
  1323. }
  1324. .order-xl-11 {
  1325. -ms-flex-order: 11;
  1326. order: 11;
  1327. }
  1328. .order-xl-12 {
  1329. -ms-flex-order: 12;
  1330. order: 12;
  1331. }
  1332. .offset-xl-0 {
  1333. margin-left: 0;
  1334. }
  1335. .offset-xl-1 {
  1336. margin-left: 8.333333%;
  1337. }
  1338. .offset-xl-2 {
  1339. margin-left: 16.666667%;
  1340. }
  1341. .offset-xl-3 {
  1342. margin-left: 25%;
  1343. }
  1344. .offset-xl-4 {
  1345. margin-left: 33.333333%;
  1346. }
  1347. .offset-xl-5 {
  1348. margin-left: 41.666667%;
  1349. }
  1350. .offset-xl-6 {
  1351. margin-left: 50%;
  1352. }
  1353. .offset-xl-7 {
  1354. margin-left: 58.333333%;
  1355. }
  1356. .offset-xl-8 {
  1357. margin-left: 66.666667%;
  1358. }
  1359. .offset-xl-9 {
  1360. margin-left: 75%;
  1361. }
  1362. .offset-xl-10 {
  1363. margin-left: 83.333333%;
  1364. }
  1365. .offset-xl-11 {
  1366. margin-left: 91.666667%;
  1367. }
  1368. }
  1369. .table {
  1370. width: 100%;
  1371. max-width: 100%;
  1372. margin-bottom: 1rem;
  1373. background-color: transparent;
  1374. }
  1375. .table th,
  1376. .table td {
  1377. padding: 0.75rem;
  1378. vertical-align: top;
  1379. border-top: 1px solid #dee2e6;
  1380. }
  1381. .table thead th {
  1382. vertical-align: bottom;
  1383. border-bottom: 2px solid #dee2e6;
  1384. }
  1385. .table tbody + tbody {
  1386. border-top: 2px solid #dee2e6;
  1387. }
  1388. .table .table {
  1389. background-color: #fff;
  1390. }
  1391. .table-sm th,
  1392. .table-sm td {
  1393. padding: 0.3rem;
  1394. }
  1395. .table-bordered {
  1396. border: 1px solid #dee2e6;
  1397. }
  1398. .table-bordered th,
  1399. .table-bordered td {
  1400. border: 1px solid #dee2e6;
  1401. }
  1402. .table-bordered thead th,
  1403. .table-bordered thead td {
  1404. border-bottom-width: 2px;
  1405. }
  1406. .table-borderless th,
  1407. .table-borderless td,
  1408. .table-borderless thead th,
  1409. .table-borderless tbody + tbody {
  1410. border: 0;
  1411. }
  1412. .table-striped tbody tr:nth-of-type(odd) {
  1413. background-color: rgba(0, 0, 0, 0.05);
  1414. }
  1415. .table-hover tbody tr:hover {
  1416. background-color: rgba(0, 0, 0, 0.075);
  1417. }
  1418. .table-primary,
  1419. .table-primary > th,
  1420. .table-primary > td {
  1421. background-color: #b8daff;
  1422. }
  1423. .table-hover .table-primary:hover {
  1424. background-color: #9fcdff;
  1425. }
  1426. .table-hover .table-primary:hover > td,
  1427. .table-hover .table-primary:hover > th {
  1428. background-color: #9fcdff;
  1429. }
  1430. .table-secondary,
  1431. .table-secondary > th,
  1432. .table-secondary > td {
  1433. background-color: #d6d8db;
  1434. }
  1435. .table-hover .table-secondary:hover {
  1436. background-color: #c8cbcf;
  1437. }
  1438. .table-hover .table-secondary:hover > td,
  1439. .table-hover .table-secondary:hover > th {
  1440. background-color: #c8cbcf;
  1441. }
  1442. .table-success,
  1443. .table-success > th,
  1444. .table-success > td {
  1445. background-color: #c3e6cb;
  1446. }
  1447. .table-hover .table-success:hover {
  1448. background-color: #b1dfbb;
  1449. }
  1450. .table-hover .table-success:hover > td,
  1451. .table-hover .table-success:hover > th {
  1452. background-color: #b1dfbb;
  1453. }
  1454. .table-info,
  1455. .table-info > th,
  1456. .table-info > td {
  1457. background-color: #bee5eb;
  1458. }
  1459. .table-hover .table-info:hover {
  1460. background-color: #abdde5;
  1461. }
  1462. .table-hover .table-info:hover > td,
  1463. .table-hover .table-info:hover > th {
  1464. background-color: #abdde5;
  1465. }
  1466. .table-warning,
  1467. .table-warning > th,
  1468. .table-warning > td {
  1469. background-color: #ffeeba;
  1470. }
  1471. .table-hover .table-warning:hover {
  1472. background-color: #ffe8a1;
  1473. }
  1474. .table-hover .table-warning:hover > td,
  1475. .table-hover .table-warning:hover > th {
  1476. background-color: #ffe8a1;
  1477. }
  1478. .table-danger,
  1479. .table-danger > th,
  1480. .table-danger > td {
  1481. background-color: #f5c6cb;
  1482. }
  1483. .table-hover .table-danger:hover {
  1484. background-color: #f1b0b7;
  1485. }
  1486. .table-hover .table-danger:hover > td,
  1487. .table-hover .table-danger:hover > th {
  1488. background-color: #f1b0b7;
  1489. }
  1490. .table-light,
  1491. .table-light > th,
  1492. .table-light > td {
  1493. background-color: #fdfdfe;
  1494. }
  1495. .table-hover .table-light:hover {
  1496. background-color: #ececf6;
  1497. }
  1498. .table-hover .table-light:hover > td,
  1499. .table-hover .table-light:hover > th {
  1500. background-color: #ececf6;
  1501. }
  1502. .table-dark,
  1503. .table-dark > th,
  1504. .table-dark > td {
  1505. background-color: #c6c8ca;
  1506. }
  1507. .table-hover .table-dark:hover {
  1508. background-color: #b9bbbe;
  1509. }
  1510. .table-hover .table-dark:hover > td,
  1511. .table-hover .table-dark:hover > th {
  1512. background-color: #b9bbbe;
  1513. }
  1514. .table-active,
  1515. .table-active > th,
  1516. .table-active > td {
  1517. background-color: rgba(0, 0, 0, 0.075);
  1518. }
  1519. .table-hover .table-active:hover {
  1520. background-color: rgba(0, 0, 0, 0.075);
  1521. }
  1522. .table-hover .table-active:hover > td,
  1523. .table-hover .table-active:hover > th {
  1524. background-color: rgba(0, 0, 0, 0.075);
  1525. }
  1526. .table .thead-dark th {
  1527. color: #fff;
  1528. background-color: #212529;
  1529. border-color: #32383e;
  1530. }
  1531. .table .thead-light th {
  1532. color: #495057;
  1533. background-color: #e9ecef;
  1534. border-color: #dee2e6;
  1535. }
  1536. .table-dark {
  1537. color: #fff;
  1538. background-color: #212529;
  1539. }
  1540. .table-dark th,
  1541. .table-dark td,
  1542. .table-dark thead th {
  1543. border-color: #32383e;
  1544. }
  1545. .table-dark.table-bordered {
  1546. border: 0;
  1547. }
  1548. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1549. background-color: rgba(255, 255, 255, 0.05);
  1550. }
  1551. .table-dark.table-hover tbody tr:hover {
  1552. background-color: rgba(255, 255, 255, 0.075);
  1553. }
  1554. @media (max-width: 575.98px) {
  1555. .table-responsive-sm {
  1556. display: block;
  1557. width: 100%;
  1558. overflow-x: auto;
  1559. -webkit-overflow-scrolling: touch;
  1560. -ms-overflow-style: -ms-autohiding-scrollbar;
  1561. }
  1562. .table-responsive-sm > .table-bordered {
  1563. border: 0;
  1564. }
  1565. }
  1566. @media (max-width: 767.98px) {
  1567. .table-responsive-md {
  1568. display: block;
  1569. width: 100%;
  1570. overflow-x: auto;
  1571. -webkit-overflow-scrolling: touch;
  1572. -ms-overflow-style: -ms-autohiding-scrollbar;
  1573. }
  1574. .table-responsive-md > .table-bordered {
  1575. border: 0;
  1576. }
  1577. }
  1578. @media (max-width: 991.98px) {
  1579. .table-responsive-lg {
  1580. display: block;
  1581. width: 100%;
  1582. overflow-x: auto;
  1583. -webkit-overflow-scrolling: touch;
  1584. -ms-overflow-style: -ms-autohiding-scrollbar;
  1585. }
  1586. .table-responsive-lg > .table-bordered {
  1587. border: 0;
  1588. }
  1589. }
  1590. @media (max-width: 1199.98px) {
  1591. .table-responsive-xl {
  1592. display: block;
  1593. width: 100%;
  1594. overflow-x: auto;
  1595. -webkit-overflow-scrolling: touch;
  1596. -ms-overflow-style: -ms-autohiding-scrollbar;
  1597. }
  1598. .table-responsive-xl > .table-bordered {
  1599. border: 0;
  1600. }
  1601. }
  1602. .table-responsive {
  1603. display: block;
  1604. width: 100%;
  1605. overflow-x: auto;
  1606. -webkit-overflow-scrolling: touch;
  1607. -ms-overflow-style: -ms-autohiding-scrollbar;
  1608. }
  1609. .table-responsive > .table-bordered {
  1610. border: 0;
  1611. }
  1612. .form-control {
  1613. display: block;
  1614. width: 100%;
  1615. padding: 0.375rem 0.75rem;
  1616. font-size: 1rem;
  1617. line-height: 1.5;
  1618. color: #495057;
  1619. background-color: #fff;
  1620. background-clip: padding-box;
  1621. border: 1px solid #ced4da;
  1622. border-radius: 0.25rem;
  1623. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1624. }
  1625. @media screen and (prefers-reduced-motion: reduce) {
  1626. .form-control {
  1627. transition: none;
  1628. }
  1629. }
  1630. .form-control::-ms-expand {
  1631. background-color: transparent;
  1632. border: 0;
  1633. }
  1634. .form-control:focus {
  1635. color: #495057;
  1636. background-color: #fff;
  1637. border-color: #80bdff;
  1638. outline: 0;
  1639. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  1640. }
  1641. .form-control::-webkit-input-placeholder {
  1642. color: #6c757d;
  1643. opacity: 1;
  1644. }
  1645. .form-control::-moz-placeholder {
  1646. color: #6c757d;
  1647. opacity: 1;
  1648. }
  1649. .form-control:-ms-input-placeholder {
  1650. color: #6c757d;
  1651. opacity: 1;
  1652. }
  1653. .form-control::-ms-input-placeholder {
  1654. color: #6c757d;
  1655. opacity: 1;
  1656. }
  1657. .form-control::placeholder {
  1658. color: #6c757d;
  1659. opacity: 1;
  1660. }
  1661. .form-control:disabled, .form-control[readonly] {
  1662. background-color: #e9ecef;
  1663. opacity: 1;
  1664. }
  1665. select.form-control:not([size]):not([multiple]) {
  1666. height: calc(2.25rem + 2px);
  1667. }
  1668. select.form-control:focus::-ms-value {
  1669. color: #495057;
  1670. background-color: #fff;
  1671. }
  1672. .form-control-file,
  1673. .form-control-range {
  1674. display: block;
  1675. width: 100%;
  1676. }
  1677. .col-form-label {
  1678. padding-top: calc(0.375rem + 1px);
  1679. padding-bottom: calc(0.375rem + 1px);
  1680. margin-bottom: 0;
  1681. font-size: inherit;
  1682. line-height: 1.5;
  1683. }
  1684. .col-form-label-lg {
  1685. padding-top: calc(0.5rem + 1px);
  1686. padding-bottom: calc(0.5rem + 1px);
  1687. font-size: 1.25rem;
  1688. line-height: 1.5;
  1689. }
  1690. .col-form-label-sm {
  1691. padding-top: calc(0.25rem + 1px);
  1692. padding-bottom: calc(0.25rem + 1px);
  1693. font-size: 0.875rem;
  1694. line-height: 1.5;
  1695. }
  1696. .form-control-plaintext {
  1697. display: block;
  1698. width: 100%;
  1699. padding-top: 0.375rem;
  1700. padding-bottom: 0.375rem;
  1701. margin-bottom: 0;
  1702. line-height: 1.5;
  1703. color: #212529;
  1704. background-color: transparent;
  1705. border: solid transparent;
  1706. border-width: 1px 0;
  1707. }
  1708. .form-control-plaintext.form-control-sm, .input-group-sm > .form-control-plaintext.form-control,
  1709. .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
  1710. .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
  1711. .input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
  1712. .input-group-sm > .input-group-append > .form-control-plaintext.btn, .form-control-plaintext.form-control-lg, .input-group-lg > .form-control-plaintext.form-control,
  1713. .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
  1714. .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
  1715. .input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
  1716. .input-group-lg > .input-group-append > .form-control-plaintext.btn {
  1717. padding-right: 0;
  1718. padding-left: 0;
  1719. }
  1720. .form-control-sm, .input-group-sm > .form-control,
  1721. .input-group-sm > .input-group-prepend > .input-group-text,
  1722. .input-group-sm > .input-group-append > .input-group-text,
  1723. .input-group-sm > .input-group-prepend > .btn,
  1724. .input-group-sm > .input-group-append > .btn {
  1725. padding: 0.25rem 0.5rem;
  1726. font-size: 0.875rem;
  1727. line-height: 1.5;
  1728. border-radius: 0.2rem;
  1729. }
  1730. select.form-control-sm:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]),
  1731. .input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
  1732. .input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
  1733. .input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
  1734. .input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]) {
  1735. height: calc(1.8125rem + 2px);
  1736. }
  1737. .form-control-lg, .input-group-lg > .form-control,
  1738. .input-group-lg > .input-group-prepend > .input-group-text,
  1739. .input-group-lg > .input-group-append > .input-group-text,
  1740. .input-group-lg > .input-group-prepend > .btn,
  1741. .input-group-lg > .input-group-append > .btn {
  1742. padding: 0.5rem 1rem;
  1743. font-size: 1.25rem;
  1744. line-height: 1.5;
  1745. border-radius: 0.3rem;
  1746. }
  1747. select.form-control-lg:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]),
  1748. .input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
  1749. .input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
  1750. .input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
  1751. .input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]) {
  1752. height: calc(2.875rem + 2px);
  1753. }
  1754. .form-group {
  1755. margin-bottom: 1rem;
  1756. }
  1757. .form-text {
  1758. display: block;
  1759. margin-top: 0.25rem;
  1760. }
  1761. .form-row {
  1762. display: -ms-flexbox;
  1763. display: flex;
  1764. -ms-flex-wrap: wrap;
  1765. flex-wrap: wrap;
  1766. margin-right: -5px;
  1767. margin-left: -5px;
  1768. }
  1769. .form-row > .col,
  1770. .form-row > [class*="col-"] {
  1771. padding-right: 5px;
  1772. padding-left: 5px;
  1773. }
  1774. .form-check {
  1775. position: relative;
  1776. display: block;
  1777. padding-left: 1.25rem;
  1778. }
  1779. .form-check-input {
  1780. position: absolute;
  1781. margin-top: 0.3rem;
  1782. margin-left: -1.25rem;
  1783. }
  1784. .form-check-input:disabled ~ .form-check-label {
  1785. color: #6c757d;
  1786. }
  1787. .form-check-label {
  1788. margin-bottom: 0;
  1789. }
  1790. .form-check-inline {
  1791. display: -ms-inline-flexbox;
  1792. display: inline-flex;
  1793. -ms-flex-align: center;
  1794. align-items: center;
  1795. padding-left: 0;
  1796. margin-right: 0.75rem;
  1797. }
  1798. .form-check-inline .form-check-input {
  1799. position: static;
  1800. margin-top: 0;
  1801. margin-right: 0.3125rem;
  1802. margin-left: 0;
  1803. }
  1804. .valid-feedback {
  1805. display: none;
  1806. width: 100%;
  1807. margin-top: 0.25rem;
  1808. font-size: 80%;
  1809. color: #28a745;
  1810. }
  1811. .valid-tooltip {
  1812. position: absolute;
  1813. top: 100%;
  1814. z-index: 5;
  1815. display: none;
  1816. max-width: 100%;
  1817. padding: .5rem;
  1818. margin-top: .1rem;
  1819. font-size: .875rem;
  1820. line-height: 1;
  1821. color: #fff;
  1822. background-color: rgba(40, 167, 69, 0.8);
  1823. border-radius: .2rem;
  1824. }
  1825. .was-validated .form-control:valid, .form-control.is-valid, .was-validated
  1826. .custom-select:valid,
  1827. .custom-select.is-valid {
  1828. border-color: #28a745;
  1829. }
  1830. .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated
  1831. .custom-select:valid:focus,
  1832. .custom-select.is-valid:focus {
  1833. border-color: #28a745;
  1834. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  1835. }
  1836. .was-validated .form-control:valid ~ .valid-feedback,
  1837. .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
  1838. .form-control.is-valid ~ .valid-tooltip, .was-validated
  1839. .custom-select:valid ~ .valid-feedback,
  1840. .was-validated
  1841. .custom-select:valid ~ .valid-tooltip,
  1842. .custom-select.is-valid ~ .valid-feedback,
  1843. .custom-select.is-valid ~ .valid-tooltip {
  1844. display: block;
  1845. }
  1846. .was-validated .form-control-file:valid ~ .valid-feedback,
  1847. .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
  1848. .form-control-file.is-valid ~ .valid-tooltip {
  1849. display: block;
  1850. }
  1851. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  1852. color: #28a745;
  1853. }
  1854. .was-validated .form-check-input:valid ~ .valid-feedback,
  1855. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  1856. .form-check-input.is-valid ~ .valid-tooltip {
  1857. display: block;
  1858. }
  1859. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  1860. color: #28a745;
  1861. }
  1862. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  1863. background-color: #71dd8a;
  1864. }
  1865. .was-validated .custom-control-input:valid ~ .valid-feedback,
  1866. .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
  1867. .custom-control-input.is-valid ~ .valid-tooltip {
  1868. display: block;
  1869. }
  1870. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  1871. background-color: #34ce57;
  1872. }
  1873. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  1874. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  1875. }
  1876. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  1877. border-color: #28a745;
  1878. }
  1879. .was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
  1880. border-color: inherit;
  1881. }
  1882. .was-validated .custom-file-input:valid ~ .valid-feedback,
  1883. .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
  1884. .custom-file-input.is-valid ~ .valid-tooltip {
  1885. display: block;
  1886. }
  1887. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  1888. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  1889. }
  1890. .invalid-feedback {
  1891. display: none;
  1892. width: 100%;
  1893. margin-top: 0.25rem;
  1894. font-size: 80%;
  1895. color: #dc3545;
  1896. }
  1897. .invalid-tooltip {
  1898. position: absolute;
  1899. top: 100%;
  1900. z-index: 5;
  1901. display: none;
  1902. max-width: 100%;
  1903. padding: .5rem;
  1904. margin-top: .1rem;
  1905. font-size: .875rem;
  1906. line-height: 1;
  1907. color: #fff;
  1908. background-color: rgba(220, 53, 69, 0.8);
  1909. border-radius: .2rem;
  1910. }
  1911. .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
  1912. .custom-select:invalid,
  1913. .custom-select.is-invalid {
  1914. border-color: #dc3545;
  1915. }
  1916. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
  1917. .custom-select:invalid:focus,
  1918. .custom-select.is-invalid:focus {
  1919. border-color: #dc3545;
  1920. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  1921. }
  1922. .was-validated .form-control:invalid ~ .invalid-feedback,
  1923. .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
  1924. .form-control.is-invalid ~ .invalid-tooltip, .was-validated
  1925. .custom-select:invalid ~ .invalid-feedback,
  1926. .was-validated
  1927. .custom-select:invalid ~ .invalid-tooltip,
  1928. .custom-select.is-invalid ~ .invalid-feedback,
  1929. .custom-select.is-invalid ~ .invalid-tooltip {
  1930. display: block;
  1931. }
  1932. .was-validated .form-control-file:invalid ~ .invalid-feedback,
  1933. .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
  1934. .form-control-file.is-invalid ~ .invalid-tooltip {
  1935. display: block;
  1936. }
  1937. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  1938. color: #dc3545;
  1939. }
  1940. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  1941. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  1942. .form-check-input.is-invalid ~ .invalid-tooltip {
  1943. display: block;
  1944. }
  1945. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  1946. color: #dc3545;
  1947. }
  1948. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  1949. background-color: #efa2a9;
  1950. }
  1951. .was-validated .custom-control-input:invalid ~ .invalid-feedback,
  1952. .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
  1953. .custom-control-input.is-invalid ~ .invalid-tooltip {
  1954. display: block;
  1955. }
  1956. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  1957. background-color: #e4606d;
  1958. }
  1959. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  1960. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  1961. }
  1962. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  1963. border-color: #dc3545;
  1964. }
  1965. .was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
  1966. border-color: inherit;
  1967. }
  1968. .was-validated .custom-file-input:invalid ~ .invalid-feedback,
  1969. .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
  1970. .custom-file-input.is-invalid ~ .invalid-tooltip {
  1971. display: block;
  1972. }
  1973. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  1974. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  1975. }
  1976. .form-inline {
  1977. display: -ms-flexbox;
  1978. display: flex;
  1979. -ms-flex-flow: row wrap;
  1980. flex-flow: row wrap;
  1981. -ms-flex-align: center;
  1982. align-items: center;
  1983. }
  1984. .form-inline .form-check {
  1985. width: 100%;
  1986. }
  1987. @media (min-width: 576px) {
  1988. .form-inline label {
  1989. display: -ms-flexbox;
  1990. display: flex;
  1991. -ms-flex-align: center;
  1992. align-items: center;
  1993. -ms-flex-pack: center;
  1994. justify-content: center;
  1995. margin-bottom: 0;
  1996. }
  1997. .form-inline .form-group {
  1998. display: -ms-flexbox;
  1999. display: flex;
  2000. -ms-flex: 0 0 auto;
  2001. flex: 0 0 auto;
  2002. -ms-flex-flow: row wrap;
  2003. flex-flow: row wrap;
  2004. -ms-flex-align: center;
  2005. align-items: center;
  2006. margin-bottom: 0;
  2007. }
  2008. .form-inline .form-control {
  2009. display: inline-block;
  2010. width: auto;
  2011. vertical-align: middle;
  2012. }
  2013. .form-inline .form-control-plaintext {
  2014. display: inline-block;
  2015. }
  2016. .form-inline .input-group,
  2017. .form-inline .custom-select {
  2018. width: auto;
  2019. }
  2020. .form-inline .form-check {
  2021. display: -ms-flexbox;
  2022. display: flex;
  2023. -ms-flex-align: center;
  2024. align-items: center;
  2025. -ms-flex-pack: center;
  2026. justify-content: center;
  2027. width: auto;
  2028. padding-left: 0;
  2029. }
  2030. .form-inline .form-check-input {
  2031. position: relative;
  2032. margin-top: 0;
  2033. margin-right: 0.25rem;
  2034. margin-left: 0;
  2035. }
  2036. .form-inline .custom-control {
  2037. -ms-flex-align: center;
  2038. align-items: center;
  2039. -ms-flex-pack: center;
  2040. justify-content: center;
  2041. }
  2042. .form-inline .custom-control-label {
  2043. margin-bottom: 0;
  2044. }
  2045. }
  2046. .btn {
  2047. display: inline-block;
  2048. font-weight: 400;
  2049. text-align: center;
  2050. white-space: nowrap;
  2051. vertical-align: middle;
  2052. -webkit-user-select: none;
  2053. -moz-user-select: none;
  2054. -ms-user-select: none;
  2055. user-select: none;
  2056. border: 1px solid transparent;
  2057. padding: 0.375rem 0.75rem;
  2058. font-size: 1rem;
  2059. line-height: 1.5;
  2060. border-radius: 0.25rem;
  2061. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2062. }
  2063. @media screen and (prefers-reduced-motion: reduce) {
  2064. .btn {
  2065. transition: none;
  2066. }
  2067. }
  2068. .btn:hover, .btn:focus {
  2069. text-decoration: none;
  2070. }
  2071. .btn:focus, .btn.focus {
  2072. outline: 0;
  2073. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  2074. }
  2075. .btn.disabled, .btn:disabled {
  2076. opacity: 0.65;
  2077. }
  2078. .btn:not(:disabled):not(.disabled) {
  2079. cursor: pointer;
  2080. }
  2081. .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
  2082. background-image: none;
  2083. }
  2084. a.btn.disabled,
  2085. fieldset:disabled a.btn {
  2086. pointer-events: none;
  2087. }
  2088. .btn-primary {
  2089. color: #fff;
  2090. background-color: #007bff;
  2091. border-color: #007bff;
  2092. }
  2093. .btn-primary:hover {
  2094. color: #fff;
  2095. background-color: #0069d9;
  2096. border-color: #0062cc;
  2097. }
  2098. .btn-primary:focus, .btn-primary.focus {
  2099. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2100. }
  2101. .btn-primary.disabled, .btn-primary:disabled {
  2102. color: #fff;
  2103. background-color: #007bff;
  2104. border-color: #007bff;
  2105. }
  2106. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  2107. .show > .btn-primary.dropdown-toggle {
  2108. color: #fff;
  2109. background-color: #0062cc;
  2110. border-color: #005cbf;
  2111. }
  2112. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  2113. .show > .btn-primary.dropdown-toggle:focus {
  2114. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2115. }
  2116. .btn-secondary {
  2117. color: #fff;
  2118. background-color: #6c757d;
  2119. border-color: #6c757d;
  2120. }
  2121. .btn-secondary:hover {
  2122. color: #fff;
  2123. background-color: #5a6268;
  2124. border-color: #545b62;
  2125. }
  2126. .btn-secondary:focus, .btn-secondary.focus {
  2127. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2128. }
  2129. .btn-secondary.disabled, .btn-secondary:disabled {
  2130. color: #fff;
  2131. background-color: #6c757d;
  2132. border-color: #6c757d;
  2133. }
  2134. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  2135. .show > .btn-secondary.dropdown-toggle {
  2136. color: #fff;
  2137. background-color: #545b62;
  2138. border-color: #4e555b;
  2139. }
  2140. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2141. .show > .btn-secondary.dropdown-toggle:focus {
  2142. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2143. }
  2144. .btn-success {
  2145. color: #fff;
  2146. background-color: #28a745;
  2147. border-color: #28a745;
  2148. }
  2149. .btn-success:hover {
  2150. color: #fff;
  2151. background-color: #218838;
  2152. border-color: #1e7e34;
  2153. }
  2154. .btn-success:focus, .btn-success.focus {
  2155. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2156. }
  2157. .btn-success.disabled, .btn-success:disabled {
  2158. color: #fff;
  2159. background-color: #28a745;
  2160. border-color: #28a745;
  2161. }
  2162. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  2163. .show > .btn-success.dropdown-toggle {
  2164. color: #fff;
  2165. background-color: #1e7e34;
  2166. border-color: #1c7430;
  2167. }
  2168. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  2169. .show > .btn-success.dropdown-toggle:focus {
  2170. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2171. }
  2172. .btn-info {
  2173. color: #fff;
  2174. background-color: #17a2b8;
  2175. border-color: #17a2b8;
  2176. }
  2177. .btn-info:hover {
  2178. color: #fff;
  2179. background-color: #138496;
  2180. border-color: #117a8b;
  2181. }
  2182. .btn-info:focus, .btn-info.focus {
  2183. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2184. }
  2185. .btn-info.disabled, .btn-info:disabled {
  2186. color: #fff;
  2187. background-color: #17a2b8;
  2188. border-color: #17a2b8;
  2189. }
  2190. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  2191. .show > .btn-info.dropdown-toggle {
  2192. color: #fff;
  2193. background-color: #117a8b;
  2194. border-color: #10707f;
  2195. }
  2196. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  2197. .show > .btn-info.dropdown-toggle:focus {
  2198. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2199. }
  2200. .btn-warning {
  2201. color: #212529;
  2202. background-color: #ffc107;
  2203. border-color: #ffc107;
  2204. }
  2205. .btn-warning:hover {
  2206. color: #212529;
  2207. background-color: #e0a800;
  2208. border-color: #d39e00;
  2209. }
  2210. .btn-warning:focus, .btn-warning.focus {
  2211. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2212. }
  2213. .btn-warning.disabled, .btn-warning:disabled {
  2214. color: #212529;
  2215. background-color: #ffc107;
  2216. border-color: #ffc107;
  2217. }
  2218. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  2219. .show > .btn-warning.dropdown-toggle {
  2220. color: #212529;
  2221. background-color: #d39e00;
  2222. border-color: #c69500;
  2223. }
  2224. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  2225. .show > .btn-warning.dropdown-toggle:focus {
  2226. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2227. }
  2228. .btn-danger {
  2229. color: #fff;
  2230. background-color: #dc3545;
  2231. border-color: #dc3545;
  2232. }
  2233. .btn-danger:hover {
  2234. color: #fff;
  2235. background-color: #c82333;
  2236. border-color: #bd2130;
  2237. }
  2238. .btn-danger:focus, .btn-danger.focus {
  2239. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2240. }
  2241. .btn-danger.disabled, .btn-danger:disabled {
  2242. color: #fff;
  2243. background-color: #dc3545;
  2244. border-color: #dc3545;
  2245. }
  2246. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  2247. .show > .btn-danger.dropdown-toggle {
  2248. color: #fff;
  2249. background-color: #bd2130;
  2250. border-color: #b21f2d;
  2251. }
  2252. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  2253. .show > .btn-danger.dropdown-toggle:focus {
  2254. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2255. }
  2256. .btn-light {
  2257. color: #212529;
  2258. background-color: #f8f9fa;
  2259. border-color: #f8f9fa;
  2260. }
  2261. .btn-light:hover {
  2262. color: #212529;
  2263. background-color: #e2e6ea;
  2264. border-color: #dae0e5;
  2265. }
  2266. .btn-light:focus, .btn-light.focus {
  2267. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2268. }
  2269. .btn-light.disabled, .btn-light:disabled {
  2270. color: #212529;
  2271. background-color: #f8f9fa;
  2272. border-color: #f8f9fa;
  2273. }
  2274. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  2275. .show > .btn-light.dropdown-toggle {
  2276. color: #212529;
  2277. background-color: #dae0e5;
  2278. border-color: #d3d9df;
  2279. }
  2280. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  2281. .show > .btn-light.dropdown-toggle:focus {
  2282. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2283. }
  2284. .btn-dark {
  2285. color: #fff;
  2286. background-color: #343a40;
  2287. border-color: #343a40;
  2288. }
  2289. .btn-dark:hover {
  2290. color: #fff;
  2291. background-color: #23272b;
  2292. border-color: #1d2124;
  2293. }
  2294. .btn-dark:focus, .btn-dark.focus {
  2295. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2296. }
  2297. .btn-dark.disabled, .btn-dark:disabled {
  2298. color: #fff;
  2299. background-color: #343a40;
  2300. border-color: #343a40;
  2301. }
  2302. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  2303. .show > .btn-dark.dropdown-toggle {
  2304. color: #fff;
  2305. background-color: #1d2124;
  2306. border-color: #171a1d;
  2307. }
  2308. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  2309. .show > .btn-dark.dropdown-toggle:focus {
  2310. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2311. }
  2312. .btn-outline-primary {
  2313. color: #007bff;
  2314. background-color: transparent;
  2315. background-image: none;
  2316. border-color: #007bff;
  2317. }
  2318. .btn-outline-primary:hover {
  2319. color: #fff;
  2320. background-color: #007bff;
  2321. border-color: #007bff;
  2322. }
  2323. .btn-outline-primary:focus, .btn-outline-primary.focus {
  2324. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2325. }
  2326. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  2327. color: #007bff;
  2328. background-color: transparent;
  2329. }
  2330. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  2331. .show > .btn-outline-primary.dropdown-toggle {
  2332. color: #fff;
  2333. background-color: #007bff;
  2334. border-color: #007bff;
  2335. }
  2336. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2337. .show > .btn-outline-primary.dropdown-toggle:focus {
  2338. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2339. }
  2340. .btn-outline-secondary {
  2341. color: #6c757d;
  2342. background-color: transparent;
  2343. background-image: none;
  2344. border-color: #6c757d;
  2345. }
  2346. .btn-outline-secondary:hover {
  2347. color: #fff;
  2348. background-color: #6c757d;
  2349. border-color: #6c757d;
  2350. }
  2351. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  2352. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2353. }
  2354. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  2355. color: #6c757d;
  2356. background-color: transparent;
  2357. }
  2358. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2359. .show > .btn-outline-secondary.dropdown-toggle {
  2360. color: #fff;
  2361. background-color: #6c757d;
  2362. border-color: #6c757d;
  2363. }
  2364. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2365. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2366. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2367. }
  2368. .btn-outline-success {
  2369. color: #28a745;
  2370. background-color: transparent;
  2371. background-image: none;
  2372. border-color: #28a745;
  2373. }
  2374. .btn-outline-success:hover {
  2375. color: #fff;
  2376. background-color: #28a745;
  2377. border-color: #28a745;
  2378. }
  2379. .btn-outline-success:focus, .btn-outline-success.focus {
  2380. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2381. }
  2382. .btn-outline-success.disabled, .btn-outline-success:disabled {
  2383. color: #28a745;
  2384. background-color: transparent;
  2385. }
  2386. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  2387. .show > .btn-outline-success.dropdown-toggle {
  2388. color: #fff;
  2389. background-color: #28a745;
  2390. border-color: #28a745;
  2391. }
  2392. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2393. .show > .btn-outline-success.dropdown-toggle:focus {
  2394. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2395. }
  2396. .btn-outline-info {
  2397. color: #17a2b8;
  2398. background-color: transparent;
  2399. background-image: none;
  2400. border-color: #17a2b8;
  2401. }
  2402. .btn-outline-info:hover {
  2403. color: #fff;
  2404. background-color: #17a2b8;
  2405. border-color: #17a2b8;
  2406. }
  2407. .btn-outline-info:focus, .btn-outline-info.focus {
  2408. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2409. }
  2410. .btn-outline-info.disabled, .btn-outline-info:disabled {
  2411. color: #17a2b8;
  2412. background-color: transparent;
  2413. }
  2414. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  2415. .show > .btn-outline-info.dropdown-toggle {
  2416. color: #fff;
  2417. background-color: #17a2b8;
  2418. border-color: #17a2b8;
  2419. }
  2420. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2421. .show > .btn-outline-info.dropdown-toggle:focus {
  2422. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2423. }
  2424. .btn-outline-warning {
  2425. color: #ffc107;
  2426. background-color: transparent;
  2427. background-image: none;
  2428. border-color: #ffc107;
  2429. }
  2430. .btn-outline-warning:hover {
  2431. color: #212529;
  2432. background-color: #ffc107;
  2433. border-color: #ffc107;
  2434. }
  2435. .btn-outline-warning:focus, .btn-outline-warning.focus {
  2436. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2437. }
  2438. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  2439. color: #ffc107;
  2440. background-color: transparent;
  2441. }
  2442. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  2443. .show > .btn-outline-warning.dropdown-toggle {
  2444. color: #212529;
  2445. background-color: #ffc107;
  2446. border-color: #ffc107;
  2447. }
  2448. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2449. .show > .btn-outline-warning.dropdown-toggle:focus {
  2450. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2451. }
  2452. .btn-outline-danger {
  2453. color: #dc3545;
  2454. background-color: transparent;
  2455. background-image: none;
  2456. border-color: #dc3545;
  2457. }
  2458. .btn-outline-danger:hover {
  2459. color: #fff;
  2460. background-color: #dc3545;
  2461. border-color: #dc3545;
  2462. }
  2463. .btn-outline-danger:focus, .btn-outline-danger.focus {
  2464. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2465. }
  2466. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  2467. color: #dc3545;
  2468. background-color: transparent;
  2469. }
  2470. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  2471. .show > .btn-outline-danger.dropdown-toggle {
  2472. color: #fff;
  2473. background-color: #dc3545;
  2474. border-color: #dc3545;
  2475. }
  2476. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2477. .show > .btn-outline-danger.dropdown-toggle:focus {
  2478. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2479. }
  2480. .btn-outline-light {
  2481. color: #f8f9fa;
  2482. background-color: transparent;
  2483. background-image: none;
  2484. border-color: #f8f9fa;
  2485. }
  2486. .btn-outline-light:hover {
  2487. color: #212529;
  2488. background-color: #f8f9fa;
  2489. border-color: #f8f9fa;
  2490. }
  2491. .btn-outline-light:focus, .btn-outline-light.focus {
  2492. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2493. }
  2494. .btn-outline-light.disabled, .btn-outline-light:disabled {
  2495. color: #f8f9fa;
  2496. background-color: transparent;
  2497. }
  2498. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  2499. .show > .btn-outline-light.dropdown-toggle {
  2500. color: #212529;
  2501. background-color: #f8f9fa;
  2502. border-color: #f8f9fa;
  2503. }
  2504. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2505. .show > .btn-outline-light.dropdown-toggle:focus {
  2506. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2507. }
  2508. .btn-outline-dark {
  2509. color: #343a40;
  2510. background-color: transparent;
  2511. background-image: none;
  2512. border-color: #343a40;
  2513. }
  2514. .btn-outline-dark:hover {
  2515. color: #fff;
  2516. background-color: #343a40;
  2517. border-color: #343a40;
  2518. }
  2519. .btn-outline-dark:focus, .btn-outline-dark.focus {
  2520. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2521. }
  2522. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  2523. color: #343a40;
  2524. background-color: transparent;
  2525. }
  2526. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  2527. .show > .btn-outline-dark.dropdown-toggle {
  2528. color: #fff;
  2529. background-color: #343a40;
  2530. border-color: #343a40;
  2531. }
  2532. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2533. .show > .btn-outline-dark.dropdown-toggle:focus {
  2534. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2535. }
  2536. .btn-link {
  2537. font-weight: 400;
  2538. color: #007bff;
  2539. background-color: transparent;
  2540. }
  2541. .btn-link:hover {
  2542. color: #0056b3;
  2543. text-decoration: underline;
  2544. background-color: transparent;
  2545. border-color: transparent;
  2546. }
  2547. .btn-link:focus, .btn-link.focus {
  2548. text-decoration: underline;
  2549. border-color: transparent;
  2550. box-shadow: none;
  2551. }
  2552. .btn-link:disabled, .btn-link.disabled {
  2553. color: #6c757d;
  2554. pointer-events: none;
  2555. }
  2556. .btn-lg, .btn-group-lg > .btn {
  2557. padding: 0.5rem 1rem;
  2558. font-size: 1.25rem;
  2559. line-height: 1.5;
  2560. border-radius: 0.3rem;
  2561. }
  2562. .btn-sm, .btn-group-sm > .btn {
  2563. padding: 0.25rem 0.5rem;
  2564. font-size: 0.875rem;
  2565. line-height: 1.5;
  2566. border-radius: 0.2rem;
  2567. }
  2568. .btn-block {
  2569. display: block;
  2570. width: 100%;
  2571. }
  2572. .btn-block + .btn-block {
  2573. margin-top: 0.5rem;
  2574. }
  2575. input[type="submit"].btn-block,
  2576. input[type="reset"].btn-block,
  2577. input[type="button"].btn-block {
  2578. width: 100%;
  2579. }
  2580. .fade {
  2581. transition: opacity 0.15s linear;
  2582. }
  2583. @media screen and (prefers-reduced-motion: reduce) {
  2584. .fade {
  2585. transition: none;
  2586. }
  2587. }
  2588. .fade:not(.show) {
  2589. opacity: 0;
  2590. }
  2591. .collapse:not(.show) {
  2592. display: none;
  2593. }
  2594. .collapsing {
  2595. position: relative;
  2596. height: 0;
  2597. overflow: hidden;
  2598. transition: height 0.35s ease;
  2599. }
  2600. @media screen and (prefers-reduced-motion: reduce) {
  2601. .collapsing {
  2602. transition: none;
  2603. }
  2604. }
  2605. .dropup,
  2606. .dropright,
  2607. .dropdown,
  2608. .dropleft {
  2609. position: relative;
  2610. }
  2611. .dropdown-toggle::after {
  2612. display: inline-block;
  2613. width: 0;
  2614. height: 0;
  2615. margin-left: 0.255em;
  2616. vertical-align: 0.255em;
  2617. content: "";
  2618. border-top: 0.3em solid;
  2619. border-right: 0.3em solid transparent;
  2620. border-bottom: 0;
  2621. border-left: 0.3em solid transparent;
  2622. }
  2623. .dropdown-toggle:empty::after {
  2624. margin-left: 0;
  2625. }
  2626. .dropdown-menu {
  2627. position: absolute;
  2628. top: 100%;
  2629. left: 0;
  2630. z-index: 1000;
  2631. display: none;
  2632. float: left;
  2633. min-width: 10rem;
  2634. padding: 0.5rem 0;
  2635. margin: 0.125rem 0 0;
  2636. font-size: 1rem;
  2637. color: #212529;
  2638. text-align: left;
  2639. list-style: none;
  2640. background-color: #fff;
  2641. background-clip: padding-box;
  2642. border: 1px solid rgba(0, 0, 0, 0.15);
  2643. border-radius: 0.25rem;
  2644. }
  2645. .dropdown-menu-right {
  2646. right: 0;
  2647. left: auto;
  2648. }
  2649. .dropup .dropdown-menu {
  2650. top: auto;
  2651. bottom: 100%;
  2652. margin-top: 0;
  2653. margin-bottom: 0.125rem;
  2654. }
  2655. .dropup .dropdown-toggle::after {
  2656. display: inline-block;
  2657. width: 0;
  2658. height: 0;
  2659. margin-left: 0.255em;
  2660. vertical-align: 0.255em;
  2661. content: "";
  2662. border-top: 0;
  2663. border-right: 0.3em solid transparent;
  2664. border-bottom: 0.3em solid;
  2665. border-left: 0.3em solid transparent;
  2666. }
  2667. .dropup .dropdown-toggle:empty::after {
  2668. margin-left: 0;
  2669. }
  2670. .dropright .dropdown-menu {
  2671. top: 0;
  2672. right: auto;
  2673. left: 100%;
  2674. margin-top: 0;
  2675. margin-left: 0.125rem;
  2676. }
  2677. .dropright .dropdown-toggle::after {
  2678. display: inline-block;
  2679. width: 0;
  2680. height: 0;
  2681. margin-left: 0.255em;
  2682. vertical-align: 0.255em;
  2683. content: "";
  2684. border-top: 0.3em solid transparent;
  2685. border-right: 0;
  2686. border-bottom: 0.3em solid transparent;
  2687. border-left: 0.3em solid;
  2688. }
  2689. .dropright .dropdown-toggle:empty::after {
  2690. margin-left: 0;
  2691. }
  2692. .dropright .dropdown-toggle::after {
  2693. vertical-align: 0;
  2694. }
  2695. .dropleft .dropdown-menu {
  2696. top: 0;
  2697. right: 100%;
  2698. left: auto;
  2699. margin-top: 0;
  2700. margin-right: 0.125rem;
  2701. }
  2702. .dropleft .dropdown-toggle::after {
  2703. display: inline-block;
  2704. width: 0;
  2705. height: 0;
  2706. margin-left: 0.255em;
  2707. vertical-align: 0.255em;
  2708. content: "";
  2709. }
  2710. .dropleft .dropdown-toggle::after {
  2711. display: none;
  2712. }
  2713. .dropleft .dropdown-toggle::before {
  2714. display: inline-block;
  2715. width: 0;
  2716. height: 0;
  2717. margin-right: 0.255em;
  2718. vertical-align: 0.255em;
  2719. content: "";
  2720. border-top: 0.3em solid transparent;
  2721. border-right: 0.3em solid;
  2722. border-bottom: 0.3em solid transparent;
  2723. }
  2724. .dropleft .dropdown-toggle:empty::after {
  2725. margin-left: 0;
  2726. }
  2727. .dropleft .dropdown-toggle::before {
  2728. vertical-align: 0;
  2729. }
  2730. .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  2731. right: auto;
  2732. bottom: auto;
  2733. }
  2734. .dropdown-divider {
  2735. height: 0;
  2736. margin: 0.5rem 0;
  2737. overflow: hidden;
  2738. border-top: 1px solid #e9ecef;
  2739. }
  2740. .dropdown-item {
  2741. display: block;
  2742. width: 100%;
  2743. padding: 0.25rem 1.5rem;
  2744. clear: both;
  2745. font-weight: 400;
  2746. color: #212529;
  2747. text-align: inherit;
  2748. white-space: nowrap;
  2749. background-color: transparent;
  2750. border: 0;
  2751. }
  2752. .dropdown-item:hover, .dropdown-item:focus {
  2753. color: #16181b;
  2754. text-decoration: none;
  2755. background-color: #f8f9fa;
  2756. }
  2757. .dropdown-item.active, .dropdown-item:active {
  2758. color: #fff;
  2759. text-decoration: none;
  2760. background-color: #007bff;
  2761. }
  2762. .dropdown-item.disabled, .dropdown-item:disabled {
  2763. color: #6c757d;
  2764. background-color: transparent;
  2765. }
  2766. .dropdown-menu.show {
  2767. display: block;
  2768. }
  2769. .dropdown-header {
  2770. display: block;
  2771. padding: 0.5rem 1.5rem;
  2772. margin-bottom: 0;
  2773. font-size: 0.875rem;
  2774. color: #6c757d;
  2775. white-space: nowrap;
  2776. }
  2777. .dropdown-item-text {
  2778. display: block;
  2779. padding: 0.25rem 1.5rem;
  2780. color: #212529;
  2781. }
  2782. .btn-group,
  2783. .btn-group-vertical {
  2784. position: relative;
  2785. display: -ms-inline-flexbox;
  2786. display: inline-flex;
  2787. vertical-align: middle;
  2788. }
  2789. .btn-group > .btn,
  2790. .btn-group-vertical > .btn {
  2791. position: relative;
  2792. -ms-flex: 0 1 auto;
  2793. flex: 0 1 auto;
  2794. }
  2795. .btn-group > .btn:hover,
  2796. .btn-group-vertical > .btn:hover {
  2797. z-index: 1;
  2798. }
  2799. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  2800. .btn-group-vertical > .btn:focus,
  2801. .btn-group-vertical > .btn:active,
  2802. .btn-group-vertical > .btn.active {
  2803. z-index: 1;
  2804. }
  2805. .btn-group .btn + .btn,
  2806. .btn-group .btn + .btn-group,
  2807. .btn-group .btn-group + .btn,
  2808. .btn-group .btn-group + .btn-group,
  2809. .btn-group-vertical .btn + .btn,
  2810. .btn-group-vertical .btn + .btn-group,
  2811. .btn-group-vertical .btn-group + .btn,
  2812. .btn-group-vertical .btn-group + .btn-group {
  2813. margin-left: -1px;
  2814. }
  2815. .btn-toolbar {
  2816. display: -ms-flexbox;
  2817. display: flex;
  2818. -ms-flex-wrap: wrap;
  2819. flex-wrap: wrap;
  2820. -ms-flex-pack: start;
  2821. justify-content: flex-start;
  2822. }
  2823. .btn-toolbar .input-group {
  2824. width: auto;
  2825. }
  2826. .btn-group > .btn:first-child {
  2827. margin-left: 0;
  2828. }
  2829. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  2830. .btn-group > .btn-group:not(:last-child) > .btn {
  2831. border-top-right-radius: 0;
  2832. border-bottom-right-radius: 0;
  2833. }
  2834. .btn-group > .btn:not(:first-child),
  2835. .btn-group > .btn-group:not(:first-child) > .btn {
  2836. border-top-left-radius: 0;
  2837. border-bottom-left-radius: 0;
  2838. }
  2839. .dropdown-toggle-split {
  2840. padding-right: 0.5625rem;
  2841. padding-left: 0.5625rem;
  2842. }
  2843. .dropdown-toggle-split::after,
  2844. .dropup .dropdown-toggle-split::after,
  2845. .dropright .dropdown-toggle-split::after {
  2846. margin-left: 0;
  2847. }
  2848. .dropleft .dropdown-toggle-split::before {
  2849. margin-right: 0;
  2850. }
  2851. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  2852. padding-right: 0.375rem;
  2853. padding-left: 0.375rem;
  2854. }
  2855. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  2856. padding-right: 0.75rem;
  2857. padding-left: 0.75rem;
  2858. }
  2859. .btn-group-vertical {
  2860. -ms-flex-direction: column;
  2861. flex-direction: column;
  2862. -ms-flex-align: start;
  2863. align-items: flex-start;
  2864. -ms-flex-pack: center;
  2865. justify-content: center;
  2866. }
  2867. .btn-group-vertical .btn,
  2868. .btn-group-vertical .btn-group {
  2869. width: 100%;
  2870. }
  2871. .btn-group-vertical > .btn + .btn,
  2872. .btn-group-vertical > .btn + .btn-group,
  2873. .btn-group-vertical > .btn-group + .btn,
  2874. .btn-group-vertical > .btn-group + .btn-group {
  2875. margin-top: -1px;
  2876. margin-left: 0;
  2877. }
  2878. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  2879. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  2880. border-bottom-right-radius: 0;
  2881. border-bottom-left-radius: 0;
  2882. }
  2883. .btn-group-vertical > .btn:not(:first-child),
  2884. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  2885. border-top-left-radius: 0;
  2886. border-top-right-radius: 0;
  2887. }
  2888. .btn-group-toggle > .btn,
  2889. .btn-group-toggle > .btn-group > .btn {
  2890. margin-bottom: 0;
  2891. }
  2892. .btn-group-toggle > .btn input[type="radio"],
  2893. .btn-group-toggle > .btn input[type="checkbox"],
  2894. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  2895. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  2896. position: absolute;
  2897. clip: rect(0, 0, 0, 0);
  2898. pointer-events: none;
  2899. }
  2900. .input-group {
  2901. position: relative;
  2902. display: -ms-flexbox;
  2903. display: flex;
  2904. -ms-flex-wrap: wrap;
  2905. flex-wrap: wrap;
  2906. -ms-flex-align: stretch;
  2907. align-items: stretch;
  2908. width: 100%;
  2909. }
  2910. .input-group > .form-control,
  2911. .input-group > .custom-select,
  2912. .input-group > .custom-file {
  2913. position: relative;
  2914. -ms-flex: 1 1 auto;
  2915. flex: 1 1 auto;
  2916. width: 1%;
  2917. margin-bottom: 0;
  2918. }
  2919. .input-group > .form-control:focus,
  2920. .input-group > .custom-select:focus,
  2921. .input-group > .custom-file:focus {
  2922. z-index: 3;
  2923. }
  2924. .input-group > .form-control + .form-control,
  2925. .input-group > .form-control + .custom-select,
  2926. .input-group > .form-control + .custom-file,
  2927. .input-group > .custom-select + .form-control,
  2928. .input-group > .custom-select + .custom-select,
  2929. .input-group > .custom-select + .custom-file,
  2930. .input-group > .custom-file + .form-control,
  2931. .input-group > .custom-file + .custom-select,
  2932. .input-group > .custom-file + .custom-file {
  2933. margin-left: -1px;
  2934. }
  2935. .input-group > .form-control:not(:last-child),
  2936. .input-group > .custom-select:not(:last-child) {
  2937. border-top-right-radius: 0;
  2938. border-bottom-right-radius: 0;
  2939. }
  2940. .input-group > .form-control:not(:first-child),
  2941. .input-group > .custom-select:not(:first-child) {
  2942. border-top-left-radius: 0;
  2943. border-bottom-left-radius: 0;
  2944. }
  2945. .input-group > .custom-file {
  2946. display: -ms-flexbox;
  2947. display: flex;
  2948. -ms-flex-align: center;
  2949. align-items: center;
  2950. }
  2951. .input-group > .custom-file:not(:last-child) .custom-file-label,
  2952. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  2953. border-top-right-radius: 0;
  2954. border-bottom-right-radius: 0;
  2955. }
  2956. .input-group > .custom-file:not(:first-child) .custom-file-label {
  2957. border-top-left-radius: 0;
  2958. border-bottom-left-radius: 0;
  2959. }
  2960. .input-group-prepend,
  2961. .input-group-append {
  2962. display: -ms-flexbox;
  2963. display: flex;
  2964. }
  2965. .input-group-prepend .btn,
  2966. .input-group-append .btn {
  2967. position: relative;
  2968. z-index: 2;
  2969. }
  2970. .input-group-prepend .btn + .btn,
  2971. .input-group-prepend .btn + .input-group-text,
  2972. .input-group-prepend .input-group-text + .input-group-text,
  2973. .input-group-prepend .input-group-text + .btn,
  2974. .input-group-append .btn + .btn,
  2975. .input-group-append .btn + .input-group-text,
  2976. .input-group-append .input-group-text + .input-group-text,
  2977. .input-group-append .input-group-text + .btn {
  2978. margin-left: -1px;
  2979. }
  2980. .input-group-prepend {
  2981. margin-right: -1px;
  2982. }
  2983. .input-group-append {
  2984. margin-left: -1px;
  2985. }
  2986. .input-group-text {
  2987. display: -ms-flexbox;
  2988. display: flex;
  2989. -ms-flex-align: center;
  2990. align-items: center;
  2991. padding: 0.375rem 0.75rem;
  2992. margin-bottom: 0;
  2993. font-size: 1rem;
  2994. font-weight: 400;
  2995. line-height: 1.5;
  2996. color: #495057;
  2997. text-align: center;
  2998. white-space: nowrap;
  2999. background-color: #e9ecef;
  3000. border: 1px solid #ced4da;
  3001. border-radius: 0.25rem;
  3002. }
  3003. .input-group-text input[type="radio"],
  3004. .input-group-text input[type="checkbox"] {
  3005. margin-top: 0;
  3006. }
  3007. .input-group > .input-group-prepend > .btn,
  3008. .input-group > .input-group-prepend > .input-group-text,
  3009. .input-group > .input-group-append:not(:last-child) > .btn,
  3010. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3011. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3012. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3013. border-top-right-radius: 0;
  3014. border-bottom-right-radius: 0;
  3015. }
  3016. .input-group > .input-group-append > .btn,
  3017. .input-group > .input-group-append > .input-group-text,
  3018. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3019. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3020. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3021. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3022. border-top-left-radius: 0;
  3023. border-bottom-left-radius: 0;
  3024. }
  3025. .custom-control {
  3026. position: relative;
  3027. display: block;
  3028. min-height: 1.5rem;
  3029. padding-left: 1.5rem;
  3030. }
  3031. .custom-control-inline {
  3032. display: -ms-inline-flexbox;
  3033. display: inline-flex;
  3034. margin-right: 1rem;
  3035. }
  3036. .custom-control-input {
  3037. position: absolute;
  3038. z-index: -1;
  3039. opacity: 0;
  3040. }
  3041. .custom-control-input:checked ~ .custom-control-label::before {
  3042. color: #fff;
  3043. background-color: #007bff;
  3044. }
  3045. .custom-control-input:focus ~ .custom-control-label::before {
  3046. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3047. }
  3048. .custom-control-input:active ~ .custom-control-label::before {
  3049. color: #fff;
  3050. background-color: #b3d7ff;
  3051. }
  3052. .custom-control-input:disabled ~ .custom-control-label {
  3053. color: #6c757d;
  3054. }
  3055. .custom-control-input:disabled ~ .custom-control-label::before {
  3056. background-color: #e9ecef;
  3057. }
  3058. .custom-control-label {
  3059. position: relative;
  3060. margin-bottom: 0;
  3061. }
  3062. .custom-control-label::before {
  3063. position: absolute;
  3064. top: 0.25rem;
  3065. left: -1.5rem;
  3066. display: block;
  3067. width: 1rem;
  3068. height: 1rem;
  3069. pointer-events: none;
  3070. content: "";
  3071. -webkit-user-select: none;
  3072. -moz-user-select: none;
  3073. -ms-user-select: none;
  3074. user-select: none;
  3075. background-color: #dee2e6;
  3076. }
  3077. .custom-control-label::after {
  3078. position: absolute;
  3079. top: 0.25rem;
  3080. left: -1.5rem;
  3081. display: block;
  3082. width: 1rem;
  3083. height: 1rem;
  3084. content: "";
  3085. background-repeat: no-repeat;
  3086. background-position: center center;
  3087. background-size: 50% 50%;
  3088. }
  3089. .custom-checkbox .custom-control-label::before {
  3090. border-radius: 0.25rem;
  3091. }
  3092. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  3093. background-color: #007bff;
  3094. }
  3095. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3096. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
  3097. }
  3098. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3099. background-color: #007bff;
  3100. }
  3101. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3102. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
  3103. }
  3104. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3105. background-color: rgba(0, 123, 255, 0.5);
  3106. }
  3107. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3108. background-color: rgba(0, 123, 255, 0.5);
  3109. }
  3110. .custom-radio .custom-control-label::before {
  3111. border-radius: 50%;
  3112. }
  3113. .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  3114. background-color: #007bff;
  3115. }
  3116. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3117. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
  3118. }
  3119. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3120. background-color: rgba(0, 123, 255, 0.5);
  3121. }
  3122. .custom-select {
  3123. display: inline-block;
  3124. width: 100%;
  3125. height: calc(2.25rem + 2px);
  3126. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3127. line-height: 1.5;
  3128. color: #495057;
  3129. vertical-align: middle;
  3130. background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  3131. background-size: 8px 10px;
  3132. border: 1px solid #ced4da;
  3133. border-radius: 0.25rem;
  3134. -webkit-appearance: none;
  3135. -moz-appearance: none;
  3136. appearance: none;
  3137. }
  3138. .custom-select:focus {
  3139. border-color: #80bdff;
  3140. outline: 0;
  3141. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(128, 189, 255, 0.5);
  3142. }
  3143. .custom-select:focus::-ms-value {
  3144. color: #495057;
  3145. background-color: #fff;
  3146. }
  3147. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  3148. height: auto;
  3149. padding-right: 0.75rem;
  3150. background-image: none;
  3151. }
  3152. .custom-select:disabled {
  3153. color: #6c757d;
  3154. background-color: #e9ecef;
  3155. }
  3156. .custom-select::-ms-expand {
  3157. opacity: 0;
  3158. }
  3159. .custom-select-sm {
  3160. height: calc(1.8125rem + 2px);
  3161. padding-top: 0.375rem;
  3162. padding-bottom: 0.375rem;
  3163. font-size: 75%;
  3164. }
  3165. .custom-select-lg {
  3166. height: calc(2.875rem + 2px);
  3167. padding-top: 0.375rem;
  3168. padding-bottom: 0.375rem;
  3169. font-size: 125%;
  3170. }
  3171. .custom-file {
  3172. position: relative;
  3173. display: inline-block;
  3174. width: 100%;
  3175. height: calc(2.25rem + 2px);
  3176. margin-bottom: 0;
  3177. }
  3178. .custom-file-input {
  3179. position: relative;
  3180. z-index: 2;
  3181. width: 100%;
  3182. height: calc(2.25rem + 2px);
  3183. margin: 0;
  3184. opacity: 0;
  3185. }
  3186. .custom-file-input:focus ~ .custom-file-label {
  3187. border-color: #80bdff;
  3188. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3189. }
  3190. .custom-file-input:focus ~ .custom-file-label::after {
  3191. border-color: #80bdff;
  3192. }
  3193. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3194. content: "Browse";
  3195. }
  3196. .custom-file-label {
  3197. position: absolute;
  3198. top: 0;
  3199. right: 0;
  3200. left: 0;
  3201. z-index: 1;
  3202. height: calc(2.25rem + 2px);
  3203. padding: 0.375rem 0.75rem;
  3204. line-height: 1.5;
  3205. color: #495057;
  3206. background-color: #fff;
  3207. border: 1px solid #ced4da;
  3208. border-radius: 0.25rem;
  3209. }
  3210. .custom-file-label::after {
  3211. position: absolute;
  3212. top: 0;
  3213. right: 0;
  3214. bottom: 0;
  3215. z-index: 3;
  3216. display: block;
  3217. height: 2.25rem;
  3218. padding: 0.375rem 0.75rem;
  3219. line-height: 1.5;
  3220. color: #495057;
  3221. content: "Browse";
  3222. background-color: #e9ecef;
  3223. border-left: 1px solid #ced4da;
  3224. border-radius: 0 0.25rem 0.25rem 0;
  3225. }
  3226. .custom-range {
  3227. width: 100%;
  3228. padding-left: 0;
  3229. background-color: transparent;
  3230. -webkit-appearance: none;
  3231. -moz-appearance: none;
  3232. appearance: none;
  3233. }
  3234. .custom-range:focus {
  3235. outline: none;
  3236. }
  3237. .custom-range::-moz-focus-outer {
  3238. border: 0;
  3239. }
  3240. .custom-range::-webkit-slider-thumb {
  3241. width: 1rem;
  3242. height: 1rem;
  3243. margin-top: -0.25rem;
  3244. background-color: #007bff;
  3245. border: 0;
  3246. border-radius: 1rem;
  3247. -webkit-appearance: none;
  3248. appearance: none;
  3249. }
  3250. .custom-range::-webkit-slider-thumb:focus {
  3251. outline: none;
  3252. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3253. }
  3254. .custom-range::-webkit-slider-thumb:active {
  3255. background-color: #b3d7ff;
  3256. }
  3257. .custom-range::-webkit-slider-runnable-track {
  3258. width: 100%;
  3259. height: 0.5rem;
  3260. color: transparent;
  3261. cursor: pointer;
  3262. background-color: #dee2e6;
  3263. border-color: transparent;
  3264. border-radius: 1rem;
  3265. }
  3266. .custom-range::-moz-range-thumb {
  3267. width: 1rem;
  3268. height: 1rem;
  3269. background-color: #007bff;
  3270. border: 0;
  3271. border-radius: 1rem;
  3272. -moz-appearance: none;
  3273. appearance: none;
  3274. }
  3275. .custom-range::-moz-range-thumb:focus {
  3276. outline: none;
  3277. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3278. }
  3279. .custom-range::-moz-range-thumb:active {
  3280. background-color: #b3d7ff;
  3281. }
  3282. .custom-range::-moz-range-track {
  3283. width: 100%;
  3284. height: 0.5rem;
  3285. color: transparent;
  3286. cursor: pointer;
  3287. background-color: #dee2e6;
  3288. border-color: transparent;
  3289. border-radius: 1rem;
  3290. }
  3291. .custom-range::-ms-thumb {
  3292. width: 1rem;
  3293. height: 1rem;
  3294. background-color: #007bff;
  3295. border: 0;
  3296. border-radius: 1rem;
  3297. appearance: none;
  3298. }
  3299. .custom-range::-ms-thumb:focus {
  3300. outline: none;
  3301. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3302. }
  3303. .custom-range::-ms-thumb:active {
  3304. background-color: #b3d7ff;
  3305. }
  3306. .custom-range::-ms-track {
  3307. width: 100%;
  3308. height: 0.5rem;
  3309. color: transparent;
  3310. cursor: pointer;
  3311. background-color: transparent;
  3312. border-color: transparent;
  3313. border-width: 0.5rem;
  3314. }
  3315. .custom-range::-ms-fill-lower {
  3316. background-color: #dee2e6;
  3317. border-radius: 1rem;
  3318. }
  3319. .custom-range::-ms-fill-upper {
  3320. margin-right: 15px;
  3321. background-color: #dee2e6;
  3322. border-radius: 1rem;
  3323. }
  3324. .nav {
  3325. display: -ms-flexbox;
  3326. display: flex;
  3327. -ms-flex-wrap: wrap;
  3328. flex-wrap: wrap;
  3329. padding-left: 0;
  3330. margin-bottom: 0;
  3331. list-style: none;
  3332. }
  3333. .nav-link {
  3334. display: block;
  3335. padding: 0.5rem 1rem;
  3336. }
  3337. .nav-link:hover, .nav-link:focus {
  3338. text-decoration: none;
  3339. }
  3340. .nav-link.disabled {
  3341. color: #6c757d;
  3342. }
  3343. .nav-tabs {
  3344. border-bottom: 1px solid #dee2e6;
  3345. }
  3346. .nav-tabs .nav-item {
  3347. margin-bottom: -1px;
  3348. }
  3349. .nav-tabs .nav-link {
  3350. border: 1px solid transparent;
  3351. border-top-left-radius: 0.25rem;
  3352. border-top-right-radius: 0.25rem;
  3353. }
  3354. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3355. border-color: #e9ecef #e9ecef #dee2e6;
  3356. }
  3357. .nav-tabs .nav-link.disabled {
  3358. color: #6c757d;
  3359. background-color: transparent;
  3360. border-color: transparent;
  3361. }
  3362. .nav-tabs .nav-link.active,
  3363. .nav-tabs .nav-item.show .nav-link {
  3364. color: #495057;
  3365. background-color: #fff;
  3366. border-color: #dee2e6 #dee2e6 #fff;
  3367. }
  3368. .nav-tabs .dropdown-menu {
  3369. margin-top: -1px;
  3370. border-top-left-radius: 0;
  3371. border-top-right-radius: 0;
  3372. }
  3373. .nav-pills .nav-link {
  3374. border-radius: 0.25rem;
  3375. }
  3376. .nav-pills .nav-link.active,
  3377. .nav-pills .show > .nav-link {
  3378. color: #fff;
  3379. background-color: #007bff;
  3380. }
  3381. .nav-fill .nav-item {
  3382. -ms-flex: 1 1 auto;
  3383. flex: 1 1 auto;
  3384. text-align: center;
  3385. }
  3386. .nav-justified .nav-item {
  3387. -ms-flex-preferred-size: 0;
  3388. flex-basis: 0;
  3389. -ms-flex-positive: 1;
  3390. flex-grow: 1;
  3391. text-align: center;
  3392. }
  3393. .tab-content > .tab-pane {
  3394. display: none;
  3395. }
  3396. .tab-content > .active {
  3397. display: block;
  3398. }
  3399. .navbar {
  3400. position: relative;
  3401. display: -ms-flexbox;
  3402. display: flex;
  3403. -ms-flex-wrap: wrap;
  3404. flex-wrap: wrap;
  3405. -ms-flex-align: center;
  3406. align-items: center;
  3407. -ms-flex-pack: justify;
  3408. justify-content: space-between;
  3409. padding: 0.5rem 1rem;
  3410. }
  3411. .navbar > .container,
  3412. .navbar > .container-fluid {
  3413. display: -ms-flexbox;
  3414. display: flex;
  3415. -ms-flex-wrap: wrap;
  3416. flex-wrap: wrap;
  3417. -ms-flex-align: center;
  3418. align-items: center;
  3419. -ms-flex-pack: justify;
  3420. justify-content: space-between;
  3421. }
  3422. .navbar-brand {
  3423. display: inline-block;
  3424. padding-top: 0.3125rem;
  3425. padding-bottom: 0.3125rem;
  3426. margin-right: 1rem;
  3427. font-size: 1.25rem;
  3428. line-height: inherit;
  3429. white-space: nowrap;
  3430. }
  3431. .navbar-brand:hover, .navbar-brand:focus {
  3432. text-decoration: none;
  3433. }
  3434. .navbar-nav {
  3435. display: -ms-flexbox;
  3436. display: flex;
  3437. -ms-flex-direction: column;
  3438. flex-direction: column;
  3439. padding-left: 0;
  3440. margin-bottom: 0;
  3441. list-style: none;
  3442. }
  3443. .navbar-nav .nav-link {
  3444. padding-right: 0;
  3445. padding-left: 0;
  3446. }
  3447. .navbar-nav .dropdown-menu {
  3448. position: static;
  3449. float: none;
  3450. }
  3451. .navbar-text {
  3452. display: inline-block;
  3453. padding-top: 0.5rem;
  3454. padding-bottom: 0.5rem;
  3455. }
  3456. .navbar-collapse {
  3457. -ms-flex-preferred-size: 100%;
  3458. flex-basis: 100%;
  3459. -ms-flex-positive: 1;
  3460. flex-grow: 1;
  3461. -ms-flex-align: center;
  3462. align-items: center;
  3463. }
  3464. .navbar-toggler {
  3465. padding: 0.25rem 0.75rem;
  3466. font-size: 1.25rem;
  3467. line-height: 1;
  3468. background-color: transparent;
  3469. border: 1px solid transparent;
  3470. border-radius: 0.25rem;
  3471. }
  3472. .navbar-toggler:hover, .navbar-toggler:focus {
  3473. text-decoration: none;
  3474. }
  3475. .navbar-toggler:not(:disabled):not(.disabled) {
  3476. cursor: pointer;
  3477. }
  3478. .navbar-toggler-icon {
  3479. display: inline-block;
  3480. width: 1.5em;
  3481. height: 1.5em;
  3482. vertical-align: middle;
  3483. content: "";
  3484. background: no-repeat center center;
  3485. background-size: 100% 100%;
  3486. }
  3487. @media (max-width: 575.98px) {
  3488. .navbar-expand-sm > .container,
  3489. .navbar-expand-sm > .container-fluid {
  3490. padding-right: 0;
  3491. padding-left: 0;
  3492. }
  3493. }
  3494. @media (min-width: 576px) {
  3495. .navbar-expand-sm {
  3496. -ms-flex-flow: row nowrap;
  3497. flex-flow: row nowrap;
  3498. -ms-flex-pack: start;
  3499. justify-content: flex-start;
  3500. }
  3501. .navbar-expand-sm .navbar-nav {
  3502. -ms-flex-direction: row;
  3503. flex-direction: row;
  3504. }
  3505. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3506. position: absolute;
  3507. }
  3508. .navbar-expand-sm .navbar-nav .nav-link {
  3509. padding-right: 0.5rem;
  3510. padding-left: 0.5rem;
  3511. }
  3512. .navbar-expand-sm > .container,
  3513. .navbar-expand-sm > .container-fluid {
  3514. -ms-flex-wrap: nowrap;
  3515. flex-wrap: nowrap;
  3516. }
  3517. .navbar-expand-sm .navbar-collapse {
  3518. display: -ms-flexbox !important;
  3519. display: flex !important;
  3520. -ms-flex-preferred-size: auto;
  3521. flex-basis: auto;
  3522. }
  3523. .navbar-expand-sm .navbar-toggler {
  3524. display: none;
  3525. }
  3526. }
  3527. @media (max-width: 767.98px) {
  3528. .navbar-expand-md > .container,
  3529. .navbar-expand-md > .container-fluid {
  3530. padding-right: 0;
  3531. padding-left: 0;
  3532. }
  3533. }
  3534. @media (min-width: 768px) {
  3535. .navbar-expand-md {
  3536. -ms-flex-flow: row nowrap;
  3537. flex-flow: row nowrap;
  3538. -ms-flex-pack: start;
  3539. justify-content: flex-start;
  3540. }
  3541. .navbar-expand-md .navbar-nav {
  3542. -ms-flex-direction: row;
  3543. flex-direction: row;
  3544. }
  3545. .navbar-expand-md .navbar-nav .dropdown-menu {
  3546. position: absolute;
  3547. }
  3548. .navbar-expand-md .navbar-nav .nav-link {
  3549. padding-right: 0.5rem;
  3550. padding-left: 0.5rem;
  3551. }
  3552. .navbar-expand-md > .container,
  3553. .navbar-expand-md > .container-fluid {
  3554. -ms-flex-wrap: nowrap;
  3555. flex-wrap: nowrap;
  3556. }
  3557. .navbar-expand-md .navbar-collapse {
  3558. display: -ms-flexbox !important;
  3559. display: flex !important;
  3560. -ms-flex-preferred-size: auto;
  3561. flex-basis: auto;
  3562. }
  3563. .navbar-expand-md .navbar-toggler {
  3564. display: none;
  3565. }
  3566. }
  3567. @media (max-width: 991.98px) {
  3568. .navbar-expand-lg > .container,
  3569. .navbar-expand-lg > .container-fluid {
  3570. padding-right: 0;
  3571. padding-left: 0;
  3572. }
  3573. }
  3574. @media (min-width: 992px) {
  3575. .navbar-expand-lg {
  3576. -ms-flex-flow: row nowrap;
  3577. flex-flow: row nowrap;
  3578. -ms-flex-pack: start;
  3579. justify-content: flex-start;
  3580. }
  3581. .navbar-expand-lg .navbar-nav {
  3582. -ms-flex-direction: row;
  3583. flex-direction: row;
  3584. }
  3585. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3586. position: absolute;
  3587. }
  3588. .navbar-expand-lg .navbar-nav .nav-link {
  3589. padding-right: 0.5rem;
  3590. padding-left: 0.5rem;
  3591. }
  3592. .navbar-expand-lg > .container,
  3593. .navbar-expand-lg > .container-fluid {
  3594. -ms-flex-wrap: nowrap;
  3595. flex-wrap: nowrap;
  3596. }
  3597. .navbar-expand-lg .navbar-collapse {
  3598. display: -ms-flexbox !important;
  3599. display: flex !important;
  3600. -ms-flex-preferred-size: auto;
  3601. flex-basis: auto;
  3602. }
  3603. .navbar-expand-lg .navbar-toggler {
  3604. display: none;
  3605. }
  3606. }
  3607. @media (max-width: 1199.98px) {
  3608. .navbar-expand-xl > .container,
  3609. .navbar-expand-xl > .container-fluid {
  3610. padding-right: 0;
  3611. padding-left: 0;
  3612. }
  3613. }
  3614. @media (min-width: 1200px) {
  3615. .navbar-expand-xl {
  3616. -ms-flex-flow: row nowrap;
  3617. flex-flow: row nowrap;
  3618. -ms-flex-pack: start;
  3619. justify-content: flex-start;
  3620. }
  3621. .navbar-expand-xl .navbar-nav {
  3622. -ms-flex-direction: row;
  3623. flex-direction: row;
  3624. }
  3625. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3626. position: absolute;
  3627. }
  3628. .navbar-expand-xl .navbar-nav .nav-link {
  3629. padding-right: 0.5rem;
  3630. padding-left: 0.5rem;
  3631. }
  3632. .navbar-expand-xl > .container,
  3633. .navbar-expand-xl > .container-fluid {
  3634. -ms-flex-wrap: nowrap;
  3635. flex-wrap: nowrap;
  3636. }
  3637. .navbar-expand-xl .navbar-collapse {
  3638. display: -ms-flexbox !important;
  3639. display: flex !important;
  3640. -ms-flex-preferred-size: auto;
  3641. flex-basis: auto;
  3642. }
  3643. .navbar-expand-xl .navbar-toggler {
  3644. display: none;
  3645. }
  3646. }
  3647. .navbar-expand {
  3648. -ms-flex-flow: row nowrap;
  3649. flex-flow: row nowrap;
  3650. -ms-flex-pack: start;
  3651. justify-content: flex-start;
  3652. }
  3653. .navbar-expand > .container,
  3654. .navbar-expand > .container-fluid {
  3655. padding-right: 0;
  3656. padding-left: 0;
  3657. }
  3658. .navbar-expand .navbar-nav {
  3659. -ms-flex-direction: row;
  3660. flex-direction: row;
  3661. }
  3662. .navbar-expand .navbar-nav .dropdown-menu {
  3663. position: absolute;
  3664. }
  3665. .navbar-expand .navbar-nav .nav-link {
  3666. padding-right: 0.5rem;
  3667. padding-left: 0.5rem;
  3668. }
  3669. .navbar-expand > .container,
  3670. .navbar-expand > .container-fluid {
  3671. -ms-flex-wrap: nowrap;
  3672. flex-wrap: nowrap;
  3673. }
  3674. .navbar-expand .navbar-collapse {
  3675. display: -ms-flexbox !important;
  3676. display: flex !important;
  3677. -ms-flex-preferred-size: auto;
  3678. flex-basis: auto;
  3679. }
  3680. .navbar-expand .navbar-toggler {
  3681. display: none;
  3682. }
  3683. .navbar-light .navbar-brand {
  3684. color: rgba(0, 0, 0, 0.9);
  3685. }
  3686. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  3687. color: rgba(0, 0, 0, 0.9);
  3688. }
  3689. .navbar-light .navbar-nav .nav-link {
  3690. color: rgba(0, 0, 0, 0.5);
  3691. }
  3692. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  3693. color: rgba(0, 0, 0, 0.7);
  3694. }
  3695. .navbar-light .navbar-nav .nav-link.disabled {
  3696. color: rgba(0, 0, 0, 0.3);
  3697. }
  3698. .navbar-light .navbar-nav .show > .nav-link,
  3699. .navbar-light .navbar-nav .active > .nav-link,
  3700. .navbar-light .navbar-nav .nav-link.show,
  3701. .navbar-light .navbar-nav .nav-link.active {
  3702. color: rgba(0, 0, 0, 0.9);
  3703. }
  3704. .navbar-light .navbar-toggler {
  3705. color: rgba(0, 0, 0, 0.5);
  3706. border-color: rgba(0, 0, 0, 0.1);
  3707. }
  3708. .navbar-light .navbar-toggler-icon {
  3709. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  3710. }
  3711. .navbar-light .navbar-text {
  3712. color: rgba(0, 0, 0, 0.5);
  3713. }
  3714. .navbar-light .navbar-text a {
  3715. color: rgba(0, 0, 0, 0.9);
  3716. }
  3717. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  3718. color: rgba(0, 0, 0, 0.9);
  3719. }
  3720. .navbar-dark .navbar-brand {
  3721. color: #fff;
  3722. }
  3723. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  3724. color: #fff;
  3725. }
  3726. .navbar-dark .navbar-nav .nav-link {
  3727. color: rgba(255, 255, 255, 0.5);
  3728. }
  3729. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  3730. color: rgba(255, 255, 255, 0.75);
  3731. }
  3732. .navbar-dark .navbar-nav .nav-link.disabled {
  3733. color: rgba(255, 255, 255, 0.25);
  3734. }
  3735. .navbar-dark .navbar-nav .show > .nav-link,
  3736. .navbar-dark .navbar-nav .active > .nav-link,
  3737. .navbar-dark .navbar-nav .nav-link.show,
  3738. .navbar-dark .navbar-nav .nav-link.active {
  3739. color: #fff;
  3740. }
  3741. .navbar-dark .navbar-toggler {
  3742. color: rgba(255, 255, 255, 0.5);
  3743. border-color: rgba(255, 255, 255, 0.1);
  3744. }
  3745. .navbar-dark .navbar-toggler-icon {
  3746. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  3747. }
  3748. .navbar-dark .navbar-text {
  3749. color: rgba(255, 255, 255, 0.5);
  3750. }
  3751. .navbar-dark .navbar-text a {
  3752. color: #fff;
  3753. }
  3754. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  3755. color: #fff;
  3756. }
  3757. .card {
  3758. position: relative;
  3759. display: -ms-flexbox;
  3760. display: flex;
  3761. -ms-flex-direction: column;
  3762. flex-direction: column;
  3763. min-width: 0;
  3764. word-wrap: break-word;
  3765. background-color: #fff;
  3766. background-clip: border-box;
  3767. border: 1px solid rgba(0, 0, 0, 0.125);
  3768. border-radius: 0.25rem;
  3769. }
  3770. .card > hr {
  3771. margin-right: 0;
  3772. margin-left: 0;
  3773. }
  3774. .card > .list-group:first-child .list-group-item:first-child {
  3775. border-top-left-radius: 0.25rem;
  3776. border-top-right-radius: 0.25rem;
  3777. }
  3778. .card > .list-group:last-child .list-group-item:last-child {
  3779. border-bottom-right-radius: 0.25rem;
  3780. border-bottom-left-radius: 0.25rem;
  3781. }
  3782. .card-body {
  3783. -ms-flex: 1 1 auto;
  3784. flex: 1 1 auto;
  3785. padding: 1.25rem;
  3786. }
  3787. .card-title {
  3788. margin-bottom: 0.75rem;
  3789. }
  3790. .card-subtitle {
  3791. margin-top: -0.375rem;
  3792. margin-bottom: 0;
  3793. }
  3794. .card-text:last-child {
  3795. margin-bottom: 0;
  3796. }
  3797. .card-link:hover {
  3798. text-decoration: none;
  3799. }
  3800. .card-link + .card-link {
  3801. margin-left: 1.25rem;
  3802. }
  3803. .card-header {
  3804. padding: 0.75rem 1.25rem;
  3805. margin-bottom: 0;
  3806. background-color: rgba(0, 0, 0, 0.03);
  3807. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  3808. }
  3809. .card-header:first-child {
  3810. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  3811. }
  3812. .card-header + .list-group .list-group-item:first-child {
  3813. border-top: 0;
  3814. }
  3815. .card-footer {
  3816. padding: 0.75rem 1.25rem;
  3817. background-color: rgba(0, 0, 0, 0.03);
  3818. border-top: 1px solid rgba(0, 0, 0, 0.125);
  3819. }
  3820. .card-footer:last-child {
  3821. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  3822. }
  3823. .card-header-tabs {
  3824. margin-right: -0.625rem;
  3825. margin-bottom: -0.75rem;
  3826. margin-left: -0.625rem;
  3827. border-bottom: 0;
  3828. }
  3829. .card-header-pills {
  3830. margin-right: -0.625rem;
  3831. margin-left: -0.625rem;
  3832. }
  3833. .card-img-overlay {
  3834. position: absolute;
  3835. top: 0;
  3836. right: 0;
  3837. bottom: 0;
  3838. left: 0;
  3839. padding: 1.25rem;
  3840. }
  3841. .card-img {
  3842. width: 100%;
  3843. border-radius: calc(0.25rem - 1px);
  3844. }
  3845. .card-img-top {
  3846. width: 100%;
  3847. border-top-left-radius: calc(0.25rem - 1px);
  3848. border-top-right-radius: calc(0.25rem - 1px);
  3849. }
  3850. .card-img-bottom {
  3851. width: 100%;
  3852. border-bottom-right-radius: calc(0.25rem - 1px);
  3853. border-bottom-left-radius: calc(0.25rem - 1px);
  3854. }
  3855. .card-deck {
  3856. display: -ms-flexbox;
  3857. display: flex;
  3858. -ms-flex-direction: column;
  3859. flex-direction: column;
  3860. }
  3861. .card-deck .card {
  3862. margin-bottom: 15px;
  3863. }
  3864. @media (min-width: 576px) {
  3865. .card-deck {
  3866. -ms-flex-flow: row wrap;
  3867. flex-flow: row wrap;
  3868. margin-right: -15px;
  3869. margin-left: -15px;
  3870. }
  3871. .card-deck .card {
  3872. display: -ms-flexbox;
  3873. display: flex;
  3874. -ms-flex: 1 0 0%;
  3875. flex: 1 0 0%;
  3876. -ms-flex-direction: column;
  3877. flex-direction: column;
  3878. margin-right: 15px;
  3879. margin-bottom: 0;
  3880. margin-left: 15px;
  3881. }
  3882. }
  3883. .card-group {
  3884. display: -ms-flexbox;
  3885. display: flex;
  3886. -ms-flex-direction: column;
  3887. flex-direction: column;
  3888. }
  3889. .card-group > .card {
  3890. margin-bottom: 15px;
  3891. }
  3892. @media (min-width: 576px) {
  3893. .card-group {
  3894. -ms-flex-flow: row wrap;
  3895. flex-flow: row wrap;
  3896. }
  3897. .card-group > .card {
  3898. -ms-flex: 1 0 0%;
  3899. flex: 1 0 0%;
  3900. margin-bottom: 0;
  3901. }
  3902. .card-group > .card + .card {
  3903. margin-left: 0;
  3904. border-left: 0;
  3905. }
  3906. .card-group > .card:first-child {
  3907. border-top-right-radius: 0;
  3908. border-bottom-right-radius: 0;
  3909. }
  3910. .card-group > .card:first-child .card-img-top,
  3911. .card-group > .card:first-child .card-header {
  3912. border-top-right-radius: 0;
  3913. }
  3914. .card-group > .card:first-child .card-img-bottom,
  3915. .card-group > .card:first-child .card-footer {
  3916. border-bottom-right-radius: 0;
  3917. }
  3918. .card-group > .card:last-child {
  3919. border-top-left-radius: 0;
  3920. border-bottom-left-radius: 0;
  3921. }
  3922. .card-group > .card:last-child .card-img-top,
  3923. .card-group > .card:last-child .card-header {
  3924. border-top-left-radius: 0;
  3925. }
  3926. .card-group > .card:last-child .card-img-bottom,
  3927. .card-group > .card:last-child .card-footer {
  3928. border-bottom-left-radius: 0;
  3929. }
  3930. .card-group > .card:only-child {
  3931. border-radius: 0.25rem;
  3932. }
  3933. .card-group > .card:only-child .card-img-top,
  3934. .card-group > .card:only-child .card-header {
  3935. border-top-left-radius: 0.25rem;
  3936. border-top-right-radius: 0.25rem;
  3937. }
  3938. .card-group > .card:only-child .card-img-bottom,
  3939. .card-group > .card:only-child .card-footer {
  3940. border-bottom-right-radius: 0.25rem;
  3941. border-bottom-left-radius: 0.25rem;
  3942. }
  3943. .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
  3944. border-radius: 0;
  3945. }
  3946. .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  3947. .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  3948. .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  3949. .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
  3950. border-radius: 0;
  3951. }
  3952. }
  3953. .card-columns .card {
  3954. margin-bottom: 0.75rem;
  3955. }
  3956. @media (min-width: 576px) {
  3957. .card-columns {
  3958. -webkit-column-count: 3;
  3959. -moz-column-count: 3;
  3960. column-count: 3;
  3961. -webkit-column-gap: 1.25rem;
  3962. -moz-column-gap: 1.25rem;
  3963. column-gap: 1.25rem;
  3964. orphans: 1;
  3965. widows: 1;
  3966. }
  3967. .card-columns .card {
  3968. display: inline-block;
  3969. width: 100%;
  3970. }
  3971. }
  3972. .accordion .card:not(:first-of-type):not(:last-of-type) {
  3973. border-bottom: 0;
  3974. border-radius: 0;
  3975. }
  3976. .accordion .card:not(:first-of-type) .card-header:first-child {
  3977. border-radius: 0;
  3978. }
  3979. .accordion .card:first-of-type {
  3980. border-bottom: 0;
  3981. border-bottom-right-radius: 0;
  3982. border-bottom-left-radius: 0;
  3983. }
  3984. .accordion .card:last-of-type {
  3985. border-top-left-radius: 0;
  3986. border-top-right-radius: 0;
  3987. }
  3988. .breadcrumb {
  3989. display: -ms-flexbox;
  3990. display: flex;
  3991. -ms-flex-wrap: wrap;
  3992. flex-wrap: wrap;
  3993. padding: 0.75rem 1rem;
  3994. margin-bottom: 1rem;
  3995. list-style: none;
  3996. background-color: #e9ecef;
  3997. border-radius: 0.25rem;
  3998. }
  3999. .breadcrumb-item + .breadcrumb-item {
  4000. padding-left: 0.5rem;
  4001. }
  4002. .breadcrumb-item + .breadcrumb-item::before {
  4003. display: inline-block;
  4004. padding-right: 0.5rem;
  4005. color: #6c757d;
  4006. content: "/";
  4007. }
  4008. .breadcrumb-item + .breadcrumb-item:hover::before {
  4009. text-decoration: underline;
  4010. }
  4011. .breadcrumb-item + .breadcrumb-item:hover::before {
  4012. text-decoration: none;
  4013. }
  4014. .breadcrumb-item.active {
  4015. color: #6c757d;
  4016. }
  4017. .pagination {
  4018. display: -ms-flexbox;
  4019. display: flex;
  4020. padding-left: 0;
  4021. list-style: none;
  4022. border-radius: 0.25rem;
  4023. }
  4024. .page-link {
  4025. position: relative;
  4026. display: block;
  4027. padding: 0.5rem 0.75rem;
  4028. margin-left: -1px;
  4029. line-height: 1.25;
  4030. color: #007bff;
  4031. background-color: #fff;
  4032. border: 1px solid #dee2e6;
  4033. }
  4034. .page-link:hover {
  4035. z-index: 2;
  4036. color: #0056b3;
  4037. text-decoration: none;
  4038. background-color: #e9ecef;
  4039. border-color: #dee2e6;
  4040. }
  4041. .page-link:focus {
  4042. z-index: 2;
  4043. outline: 0;
  4044. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  4045. }
  4046. .page-link:not(:disabled):not(.disabled) {
  4047. cursor: pointer;
  4048. }
  4049. .page-item:first-child .page-link {
  4050. margin-left: 0;
  4051. border-top-left-radius: 0.25rem;
  4052. border-bottom-left-radius: 0.25rem;
  4053. }
  4054. .page-item:last-child .page-link {
  4055. border-top-right-radius: 0.25rem;
  4056. border-bottom-right-radius: 0.25rem;
  4057. }
  4058. .page-item.active .page-link {
  4059. z-index: 1;
  4060. color: #fff;
  4061. background-color: #007bff;
  4062. border-color: #007bff;
  4063. }
  4064. .page-item.disabled .page-link {
  4065. color: #6c757d;
  4066. pointer-events: none;
  4067. cursor: auto;
  4068. background-color: #fff;
  4069. border-color: #dee2e6;
  4070. }
  4071. .pagination-lg .page-link {
  4072. padding: 0.75rem 1.5rem;
  4073. font-size: 1.25rem;
  4074. line-height: 1.5;
  4075. }
  4076. .pagination-lg .page-item:first-child .page-link {
  4077. border-top-left-radius: 0.3rem;
  4078. border-bottom-left-radius: 0.3rem;
  4079. }
  4080. .pagination-lg .page-item:last-child .page-link {
  4081. border-top-right-radius: 0.3rem;
  4082. border-bottom-right-radius: 0.3rem;
  4083. }
  4084. .pagination-sm .page-link {
  4085. padding: 0.25rem 0.5rem;
  4086. font-size: 0.875rem;
  4087. line-height: 1.5;
  4088. }
  4089. .pagination-sm .page-item:first-child .page-link {
  4090. border-top-left-radius: 0.2rem;
  4091. border-bottom-left-radius: 0.2rem;
  4092. }
  4093. .pagination-sm .page-item:last-child .page-link {
  4094. border-top-right-radius: 0.2rem;
  4095. border-bottom-right-radius: 0.2rem;
  4096. }
  4097. .badge {
  4098. display: inline-block;
  4099. padding: 0.25em 0.4em;
  4100. font-size: 75%;
  4101. font-weight: 700;
  4102. line-height: 1;
  4103. text-align: center;
  4104. white-space: nowrap;
  4105. vertical-align: baseline;
  4106. border-radius: 0.25rem;
  4107. }
  4108. .badge:empty {
  4109. display: none;
  4110. }
  4111. .btn .badge {
  4112. position: relative;
  4113. top: -1px;
  4114. }
  4115. .badge-pill {
  4116. padding-right: 0.6em;
  4117. padding-left: 0.6em;
  4118. border-radius: 10rem;
  4119. }
  4120. .badge-primary {
  4121. color: #fff;
  4122. background-color: #007bff;
  4123. }
  4124. .badge-primary[href]:hover, .badge-primary[href]:focus {
  4125. color: #fff;
  4126. text-decoration: none;
  4127. background-color: #0062cc;
  4128. }
  4129. .badge-secondary {
  4130. color: #fff;
  4131. background-color: #6c757d;
  4132. }
  4133. .badge-secondary[href]:hover, .badge-secondary[href]:focus {
  4134. color: #fff;
  4135. text-decoration: none;
  4136. background-color: #545b62;
  4137. }
  4138. .badge-success {
  4139. color: #fff;
  4140. background-color: #28a745;
  4141. }
  4142. .badge-success[href]:hover, .badge-success[href]:focus {
  4143. color: #fff;
  4144. text-decoration: none;
  4145. background-color: #1e7e34;
  4146. }
  4147. .badge-info {
  4148. color: #fff;
  4149. background-color: #17a2b8;
  4150. }
  4151. .badge-info[href]:hover, .badge-info[href]:focus {
  4152. color: #fff;
  4153. text-decoration: none;
  4154. background-color: #117a8b;
  4155. }
  4156. .badge-warning {
  4157. color: #212529;
  4158. background-color: #ffc107;
  4159. }
  4160. .badge-warning[href]:hover, .badge-warning[href]:focus {
  4161. color: #212529;
  4162. text-decoration: none;
  4163. background-color: #d39e00;
  4164. }
  4165. .badge-danger {
  4166. color: #fff;
  4167. background-color: #dc3545;
  4168. }
  4169. .badge-danger[href]:hover, .badge-danger[href]:focus {
  4170. color: #fff;
  4171. text-decoration: none;
  4172. background-color: #bd2130;
  4173. }
  4174. .badge-light {
  4175. color: #212529;
  4176. background-color: #f8f9fa;
  4177. }
  4178. .badge-light[href]:hover, .badge-light[href]:focus {
  4179. color: #212529;
  4180. text-decoration: none;
  4181. background-color: #dae0e5;
  4182. }
  4183. .badge-dark {
  4184. color: #fff;
  4185. background-color: #343a40;
  4186. }
  4187. .badge-dark[href]:hover, .badge-dark[href]:focus {
  4188. color: #fff;
  4189. text-decoration: none;
  4190. background-color: #1d2124;
  4191. }
  4192. .jumbotron {
  4193. padding: 2rem 1rem;
  4194. margin-bottom: 2rem;
  4195. background-color: #e9ecef;
  4196. border-radius: 0.3rem;
  4197. }
  4198. @media (min-width: 576px) {
  4199. .jumbotron {
  4200. padding: 4rem 2rem;
  4201. }
  4202. }
  4203. .jumbotron-fluid {
  4204. padding-right: 0;
  4205. padding-left: 0;
  4206. border-radius: 0;
  4207. }
  4208. .alert {
  4209. position: relative;
  4210. padding: 0.75rem 1.25rem;
  4211. margin-bottom: 1rem;
  4212. border: 1px solid transparent;
  4213. border-radius: 0.25rem;
  4214. }
  4215. .alert-heading {
  4216. color: inherit;
  4217. }
  4218. .alert-link {
  4219. font-weight: 700;
  4220. }
  4221. .alert-dismissible {
  4222. padding-right: 4rem;
  4223. }
  4224. .alert-dismissible .close {
  4225. position: absolute;
  4226. top: 0;
  4227. right: 0;
  4228. padding: 0.75rem 1.25rem;
  4229. color: inherit;
  4230. }
  4231. .alert-primary {
  4232. color: #004085;
  4233. background-color: #cce5ff;
  4234. border-color: #b8daff;
  4235. }
  4236. .alert-primary hr {
  4237. border-top-color: #9fcdff;
  4238. }
  4239. .alert-primary .alert-link {
  4240. color: #002752;
  4241. }
  4242. .alert-secondary {
  4243. color: #383d41;
  4244. background-color: #e2e3e5;
  4245. border-color: #d6d8db;
  4246. }
  4247. .alert-secondary hr {
  4248. border-top-color: #c8cbcf;
  4249. }
  4250. .alert-secondary .alert-link {
  4251. color: #202326;
  4252. }
  4253. .alert-success {
  4254. color: #155724;
  4255. background-color: #d4edda;
  4256. border-color: #c3e6cb;
  4257. }
  4258. .alert-success hr {
  4259. border-top-color: #b1dfbb;
  4260. }
  4261. .alert-success .alert-link {
  4262. color: #0b2e13;
  4263. }
  4264. .alert-info {
  4265. color: #0c5460;
  4266. background-color: #d1ecf1;
  4267. border-color: #bee5eb;
  4268. }
  4269. .alert-info hr {
  4270. border-top-color: #abdde5;
  4271. }
  4272. .alert-info .alert-link {
  4273. color: #062c33;
  4274. }
  4275. .alert-warning {
  4276. color: #856404;
  4277. background-color: #fff3cd;
  4278. border-color: #ffeeba;
  4279. }
  4280. .alert-warning hr {
  4281. border-top-color: #ffe8a1;
  4282. }
  4283. .alert-warning .alert-link {
  4284. color: #533f03;
  4285. }
  4286. .alert-danger {
  4287. color: #721c24;
  4288. background-color: #f8d7da;
  4289. border-color: #f5c6cb;
  4290. }
  4291. .alert-danger hr {
  4292. border-top-color: #f1b0b7;
  4293. }
  4294. .alert-danger .alert-link {
  4295. color: #491217;
  4296. }
  4297. .alert-light {
  4298. color: #818182;
  4299. background-color: #fefefe;
  4300. border-color: #fdfdfe;
  4301. }
  4302. .alert-light hr {
  4303. border-top-color: #ececf6;
  4304. }
  4305. .alert-light .alert-link {
  4306. color: #686868;
  4307. }
  4308. .alert-dark {
  4309. color: #1b1e21;
  4310. background-color: #d6d8d9;
  4311. border-color: #c6c8ca;
  4312. }
  4313. .alert-dark hr {
  4314. border-top-color: #b9bbbe;
  4315. }
  4316. .alert-dark .alert-link {
  4317. color: #040505;
  4318. }
  4319. @-webkit-keyframes progress-bar-stripes {
  4320. from {
  4321. background-position: 1rem 0;
  4322. }
  4323. to {
  4324. background-position: 0 0;
  4325. }
  4326. }
  4327. @keyframes progress-bar-stripes {
  4328. from {
  4329. background-position: 1rem 0;
  4330. }
  4331. to {
  4332. background-position: 0 0;
  4333. }
  4334. }
  4335. .progress {
  4336. display: -ms-flexbox;
  4337. display: flex;
  4338. height: 1rem;
  4339. overflow: hidden;
  4340. font-size: 0.75rem;
  4341. background-color: #e9ecef;
  4342. border-radius: 0.25rem;
  4343. }
  4344. .progress-bar {
  4345. display: -ms-flexbox;
  4346. display: flex;
  4347. -ms-flex-direction: column;
  4348. flex-direction: column;
  4349. -ms-flex-pack: center;
  4350. justify-content: center;
  4351. color: #fff;
  4352. text-align: center;
  4353. white-space: nowrap;
  4354. background-color: #007bff;
  4355. transition: width 0.6s ease;
  4356. }
  4357. @media screen and (prefers-reduced-motion: reduce) {
  4358. .progress-bar {
  4359. transition: none;
  4360. }
  4361. }
  4362. .progress-bar-striped {
  4363. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4364. background-size: 1rem 1rem;
  4365. }
  4366. .progress-bar-animated {
  4367. -webkit-animation: progress-bar-stripes 1s linear infinite;
  4368. animation: progress-bar-stripes 1s linear infinite;
  4369. }
  4370. .media {
  4371. display: -ms-flexbox;
  4372. display: flex;
  4373. -ms-flex-align: start;
  4374. align-items: flex-start;
  4375. }
  4376. .media-body {
  4377. -ms-flex: 1;
  4378. flex: 1;
  4379. }
  4380. .list-group {
  4381. display: -ms-flexbox;
  4382. display: flex;
  4383. -ms-flex-direction: column;
  4384. flex-direction: column;
  4385. padding-left: 0;
  4386. margin-bottom: 0;
  4387. }
  4388. .list-group-item-action {
  4389. width: 100%;
  4390. color: #495057;
  4391. text-align: inherit;
  4392. }
  4393. .list-group-item-action:hover, .list-group-item-action:focus {
  4394. color: #495057;
  4395. text-decoration: none;
  4396. background-color: #f8f9fa;
  4397. }
  4398. .list-group-item-action:active {
  4399. color: #212529;
  4400. background-color: #e9ecef;
  4401. }
  4402. .list-group-item {
  4403. position: relative;
  4404. display: block;
  4405. padding: 0.75rem 1.25rem;
  4406. margin-bottom: -1px;
  4407. background-color: #fff;
  4408. border: 1px solid rgba(0, 0, 0, 0.125);
  4409. }
  4410. .list-group-item:first-child {
  4411. border-top-left-radius: 0.25rem;
  4412. border-top-right-radius: 0.25rem;
  4413. }
  4414. .list-group-item:last-child {
  4415. margin-bottom: 0;
  4416. border-bottom-right-radius: 0.25rem;
  4417. border-bottom-left-radius: 0.25rem;
  4418. }
  4419. .list-group-item:hover, .list-group-item:focus {
  4420. z-index: 1;
  4421. text-decoration: none;
  4422. }
  4423. .list-group-item.disabled, .list-group-item:disabled {
  4424. color: #6c757d;
  4425. background-color: #fff;
  4426. }
  4427. .list-group-item.active {
  4428. z-index: 2;
  4429. color: #fff;
  4430. background-color: #007bff;
  4431. border-color: #007bff;
  4432. }
  4433. .list-group-flush .list-group-item {
  4434. border-right: 0;
  4435. border-left: 0;
  4436. border-radius: 0;
  4437. }
  4438. .list-group-flush:first-child .list-group-item:first-child {
  4439. border-top: 0;
  4440. }
  4441. .list-group-flush:last-child .list-group-item:last-child {
  4442. border-bottom: 0;
  4443. }
  4444. .list-group-item-primary {
  4445. color: #004085;
  4446. background-color: #b8daff;
  4447. }
  4448. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4449. color: #004085;
  4450. background-color: #9fcdff;
  4451. }
  4452. .list-group-item-primary.list-group-item-action.active {
  4453. color: #fff;
  4454. background-color: #004085;
  4455. border-color: #004085;
  4456. }
  4457. .list-group-item-secondary {
  4458. color: #383d41;
  4459. background-color: #d6d8db;
  4460. }
  4461. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4462. color: #383d41;
  4463. background-color: #c8cbcf;
  4464. }
  4465. .list-group-item-secondary.list-group-item-action.active {
  4466. color: #fff;
  4467. background-color: #383d41;
  4468. border-color: #383d41;
  4469. }
  4470. .list-group-item-success {
  4471. color: #155724;
  4472. background-color: #c3e6cb;
  4473. }
  4474. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4475. color: #155724;
  4476. background-color: #b1dfbb;
  4477. }
  4478. .list-group-item-success.list-group-item-action.active {
  4479. color: #fff;
  4480. background-color: #155724;
  4481. border-color: #155724;
  4482. }
  4483. .list-group-item-info {
  4484. color: #0c5460;
  4485. background-color: #bee5eb;
  4486. }
  4487. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4488. color: #0c5460;
  4489. background-color: #abdde5;
  4490. }
  4491. .list-group-item-info.list-group-item-action.active {
  4492. color: #fff;
  4493. background-color: #0c5460;
  4494. border-color: #0c5460;
  4495. }
  4496. .list-group-item-warning {
  4497. color: #856404;
  4498. background-color: #ffeeba;
  4499. }
  4500. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4501. color: #856404;
  4502. background-color: #ffe8a1;
  4503. }
  4504. .list-group-item-warning.list-group-item-action.active {
  4505. color: #fff;
  4506. background-color: #856404;
  4507. border-color: #856404;
  4508. }
  4509. .list-group-item-danger {
  4510. color: #721c24;
  4511. background-color: #f5c6cb;
  4512. }
  4513. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4514. color: #721c24;
  4515. background-color: #f1b0b7;
  4516. }
  4517. .list-group-item-danger.list-group-item-action.active {
  4518. color: #fff;
  4519. background-color: #721c24;
  4520. border-color: #721c24;
  4521. }
  4522. .list-group-item-light {
  4523. color: #818182;
  4524. background-color: #fdfdfe;
  4525. }
  4526. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4527. color: #818182;
  4528. background-color: #ececf6;
  4529. }
  4530. .list-group-item-light.list-group-item-action.active {
  4531. color: #fff;
  4532. background-color: #818182;
  4533. border-color: #818182;
  4534. }
  4535. .list-group-item-dark {
  4536. color: #1b1e21;
  4537. background-color: #c6c8ca;
  4538. }
  4539. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4540. color: #1b1e21;
  4541. background-color: #b9bbbe;
  4542. }
  4543. .list-group-item-dark.list-group-item-action.active {
  4544. color: #fff;
  4545. background-color: #1b1e21;
  4546. border-color: #1b1e21;
  4547. }
  4548. .close {
  4549. float: right;
  4550. font-size: 1.5rem;
  4551. font-weight: 700;
  4552. line-height: 1;
  4553. color: #000;
  4554. text-shadow: 0 1px 0 #fff;
  4555. opacity: .5;
  4556. }
  4557. .close:hover, .close:focus {
  4558. color: #000;
  4559. text-decoration: none;
  4560. opacity: .75;
  4561. }
  4562. .close:not(:disabled):not(.disabled) {
  4563. cursor: pointer;
  4564. }
  4565. button.close {
  4566. padding: 0;
  4567. background-color: transparent;
  4568. border: 0;
  4569. -webkit-appearance: none;
  4570. }
  4571. .modal-open {
  4572. overflow: hidden;
  4573. }
  4574. .modal {
  4575. position: fixed;
  4576. top: 0;
  4577. right: 0;
  4578. bottom: 0;
  4579. left: 0;
  4580. z-index: 1050;
  4581. display: none;
  4582. overflow: hidden;
  4583. outline: 0;
  4584. }
  4585. .modal-open .modal {
  4586. overflow-x: hidden;
  4587. overflow-y: auto;
  4588. }
  4589. .modal-dialog {
  4590. position: relative;
  4591. width: auto;
  4592. margin: 0.5rem;
  4593. pointer-events: none;
  4594. }
  4595. .modal.fade .modal-dialog {
  4596. transition: -webkit-transform 0.3s ease-out;
  4597. transition: transform 0.3s ease-out;
  4598. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  4599. -webkit-transform: translate(0, -25%);
  4600. transform: translate(0, -25%);
  4601. }
  4602. @media screen and (prefers-reduced-motion: reduce) {
  4603. .modal.fade .modal-dialog {
  4604. transition: none;
  4605. }
  4606. }
  4607. .modal.show .modal-dialog {
  4608. -webkit-transform: translate(0, 0);
  4609. transform: translate(0, 0);
  4610. }
  4611. .modal-dialog-centered {
  4612. display: -ms-flexbox;
  4613. display: flex;
  4614. -ms-flex-align: center;
  4615. align-items: center;
  4616. min-height: calc(100% - (0.5rem * 2));
  4617. }
  4618. .modal-content {
  4619. position: relative;
  4620. display: -ms-flexbox;
  4621. display: flex;
  4622. -ms-flex-direction: column;
  4623. flex-direction: column;
  4624. width: 100%;
  4625. pointer-events: auto;
  4626. background-color: #fff;
  4627. background-clip: padding-box;
  4628. border: 1px solid rgba(0, 0, 0, 0.2);
  4629. border-radius: 0.3rem;
  4630. outline: 0;
  4631. }
  4632. .modal-backdrop {
  4633. position: fixed;
  4634. top: 0;
  4635. right: 0;
  4636. bottom: 0;
  4637. left: 0;
  4638. z-index: 1040;
  4639. background-color: #000;
  4640. }
  4641. .modal-backdrop.fade {
  4642. opacity: 0;
  4643. }
  4644. .modal-backdrop.show {
  4645. opacity: 0.5;
  4646. }
  4647. .modal-header {
  4648. display: -ms-flexbox;
  4649. display: flex;
  4650. -ms-flex-align: start;
  4651. align-items: flex-start;
  4652. -ms-flex-pack: justify;
  4653. justify-content: space-between;
  4654. padding: 1rem;
  4655. border-bottom: 1px solid #e9ecef;
  4656. border-top-left-radius: 0.3rem;
  4657. border-top-right-radius: 0.3rem;
  4658. }
  4659. .modal-header .close {
  4660. padding: 1rem;
  4661. margin: -1rem -1rem -1rem auto;
  4662. }
  4663. .modal-title {
  4664. margin-bottom: 0;
  4665. line-height: 1.5;
  4666. }
  4667. .modal-body {
  4668. position: relative;
  4669. -ms-flex: 1 1 auto;
  4670. flex: 1 1 auto;
  4671. padding: 1rem;
  4672. }
  4673. .modal-footer {
  4674. display: -ms-flexbox;
  4675. display: flex;
  4676. -ms-flex-align: center;
  4677. align-items: center;
  4678. -ms-flex-pack: end;
  4679. justify-content: flex-end;
  4680. padding: 1rem;
  4681. border-top: 1px solid #e9ecef;
  4682. }
  4683. .modal-footer > :not(:first-child) {
  4684. margin-left: .25rem;
  4685. }
  4686. .modal-footer > :not(:last-child) {
  4687. margin-right: .25rem;
  4688. }
  4689. .modal-scrollbar-measure {
  4690. position: absolute;
  4691. top: -9999px;
  4692. width: 50px;
  4693. height: 50px;
  4694. overflow: scroll;
  4695. }
  4696. @media (min-width: 576px) {
  4697. .modal-dialog {
  4698. max-width: 500px;
  4699. margin: 1.75rem auto;
  4700. }
  4701. .modal-dialog-centered {
  4702. min-height: calc(100% - (1.75rem * 2));
  4703. }
  4704. .modal-sm {
  4705. max-width: 300px;
  4706. }
  4707. }
  4708. @media (min-width: 992px) {
  4709. .modal-lg {
  4710. max-width: 800px;
  4711. }
  4712. }
  4713. .tooltip {
  4714. position: absolute;
  4715. z-index: 1070;
  4716. display: block;
  4717. margin: 0;
  4718. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  4719. font-style: normal;
  4720. font-weight: 400;
  4721. line-height: 1.5;
  4722. text-align: left;
  4723. text-align: start;
  4724. text-decoration: none;
  4725. text-shadow: none;
  4726. text-transform: none;
  4727. letter-spacing: normal;
  4728. word-break: normal;
  4729. word-spacing: normal;
  4730. white-space: normal;
  4731. line-break: auto;
  4732. font-size: 0.875rem;
  4733. word-wrap: break-word;
  4734. opacity: 0;
  4735. }
  4736. .tooltip.show {
  4737. opacity: 0.9;
  4738. }
  4739. .tooltip .arrow {
  4740. position: absolute;
  4741. display: block;
  4742. width: 0.8rem;
  4743. height: 0.4rem;
  4744. }
  4745. .tooltip .arrow::before {
  4746. position: absolute;
  4747. content: "";
  4748. border-color: transparent;
  4749. border-style: solid;
  4750. }
  4751. .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  4752. padding: 0.4rem 0;
  4753. }
  4754. .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  4755. bottom: 0;
  4756. }
  4757. .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  4758. top: 0;
  4759. border-width: 0.4rem 0.4rem 0;
  4760. border-top-color: #000;
  4761. }
  4762. .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  4763. padding: 0 0.4rem;
  4764. }
  4765. .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  4766. left: 0;
  4767. width: 0.4rem;
  4768. height: 0.8rem;
  4769. }
  4770. .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  4771. right: 0;
  4772. border-width: 0.4rem 0.4rem 0.4rem 0;
  4773. border-right-color: #000;
  4774. }
  4775. .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  4776. padding: 0.4rem 0;
  4777. }
  4778. .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  4779. top: 0;
  4780. }
  4781. .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  4782. bottom: 0;
  4783. border-width: 0 0.4rem 0.4rem;
  4784. border-bottom-color: #000;
  4785. }
  4786. .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  4787. padding: 0 0.4rem;
  4788. }
  4789. .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  4790. right: 0;
  4791. width: 0.4rem;
  4792. height: 0.8rem;
  4793. }
  4794. .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  4795. left: 0;
  4796. border-width: 0.4rem 0 0.4rem 0.4rem;
  4797. border-left-color: #000;
  4798. }
  4799. .tooltip-inner {
  4800. max-width: 200px;
  4801. padding: 0.25rem 0.5rem;
  4802. color: #fff;
  4803. text-align: center;
  4804. background-color: #000;
  4805. border-radius: 0.25rem;
  4806. }
  4807. .popover {
  4808. position: absolute;
  4809. top: 0;
  4810. left: 0;
  4811. z-index: 1060;
  4812. display: block;
  4813. max-width: 276px;
  4814. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  4815. font-style: normal;
  4816. font-weight: 400;
  4817. line-height: 1.5;
  4818. text-align: left;
  4819. text-align: start;
  4820. text-decoration: none;
  4821. text-shadow: none;
  4822. text-transform: none;
  4823. letter-spacing: normal;
  4824. word-break: normal;
  4825. word-spacing: normal;
  4826. white-space: normal;
  4827. line-break: auto;
  4828. font-size: 0.875rem;
  4829. word-wrap: break-word;
  4830. background-color: #fff;
  4831. background-clip: padding-box;
  4832. border: 1px solid rgba(0, 0, 0, 0.2);
  4833. border-radius: 0.3rem;
  4834. }
  4835. .popover .arrow {
  4836. position: absolute;
  4837. display: block;
  4838. width: 1rem;
  4839. height: 0.5rem;
  4840. margin: 0 0.3rem;
  4841. }
  4842. .popover .arrow::before, .popover .arrow::after {
  4843. position: absolute;
  4844. display: block;
  4845. content: "";
  4846. border-color: transparent;
  4847. border-style: solid;
  4848. }
  4849. .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  4850. margin-bottom: 0.5rem;
  4851. }
  4852. .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
  4853. bottom: calc((0.5rem + 1px) * -1);
  4854. }
  4855. .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
  4856. .bs-popover-top .arrow::after,
  4857. .bs-popover-auto[x-placement^="top"] .arrow::after {
  4858. border-width: 0.5rem 0.5rem 0;
  4859. }
  4860. .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
  4861. bottom: 0;
  4862. border-top-color: rgba(0, 0, 0, 0.25);
  4863. }
  4864. .bs-popover-top .arrow::after,
  4865. .bs-popover-auto[x-placement^="top"] .arrow::after {
  4866. bottom: 1px;
  4867. border-top-color: #fff;
  4868. }
  4869. .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  4870. margin-left: 0.5rem;
  4871. }
  4872. .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
  4873. left: calc((0.5rem + 1px) * -1);
  4874. width: 0.5rem;
  4875. height: 1rem;
  4876. margin: 0.3rem 0;
  4877. }
  4878. .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
  4879. .bs-popover-right .arrow::after,
  4880. .bs-popover-auto[x-placement^="right"] .arrow::after {
  4881. border-width: 0.5rem 0.5rem 0.5rem 0;
  4882. }
  4883. .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
  4884. left: 0;
  4885. border-right-color: rgba(0, 0, 0, 0.25);
  4886. }
  4887. .bs-popover-right .arrow::after,
  4888. .bs-popover-auto[x-placement^="right"] .arrow::after {
  4889. left: 1px;
  4890. border-right-color: #fff;
  4891. }
  4892. .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  4893. margin-top: 0.5rem;
  4894. }
  4895. .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
  4896. top: calc((0.5rem + 1px) * -1);
  4897. }
  4898. .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
  4899. .bs-popover-bottom .arrow::after,
  4900. .bs-popover-auto[x-placement^="bottom"] .arrow::after {
  4901. border-width: 0 0.5rem 0.5rem 0.5rem;
  4902. }
  4903. .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
  4904. top: 0;
  4905. border-bottom-color: rgba(0, 0, 0, 0.25);
  4906. }
  4907. .bs-popover-bottom .arrow::after,
  4908. .bs-popover-auto[x-placement^="bottom"] .arrow::after {
  4909. top: 1px;
  4910. border-bottom-color: #fff;
  4911. }
  4912. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  4913. position: absolute;
  4914. top: 0;
  4915. left: 50%;
  4916. display: block;
  4917. width: 1rem;
  4918. margin-left: -0.5rem;
  4919. content: "";
  4920. border-bottom: 1px solid #f7f7f7;
  4921. }
  4922. .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  4923. margin-right: 0.5rem;
  4924. }
  4925. .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
  4926. right: calc((0.5rem + 1px) * -1);
  4927. width: 0.5rem;
  4928. height: 1rem;
  4929. margin: 0.3rem 0;
  4930. }
  4931. .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
  4932. .bs-popover-left .arrow::after,
  4933. .bs-popover-auto[x-placement^="left"] .arrow::after {
  4934. border-width: 0.5rem 0 0.5rem 0.5rem;
  4935. }
  4936. .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
  4937. right: 0;
  4938. border-left-color: rgba(0, 0, 0, 0.25);
  4939. }
  4940. .bs-popover-left .arrow::after,
  4941. .bs-popover-auto[x-placement^="left"] .arrow::after {
  4942. right: 1px;
  4943. border-left-color: #fff;
  4944. }
  4945. .popover-header {
  4946. padding: 0.5rem 0.75rem;
  4947. margin-bottom: 0;
  4948. font-size: 1rem;
  4949. color: inherit;
  4950. background-color: #f7f7f7;
  4951. border-bottom: 1px solid #ebebeb;
  4952. border-top-left-radius: calc(0.3rem - 1px);
  4953. border-top-right-radius: calc(0.3rem - 1px);
  4954. }
  4955. .popover-header:empty {
  4956. display: none;
  4957. }
  4958. .popover-body {
  4959. padding: 0.5rem 0.75rem;
  4960. color: #212529;
  4961. }
  4962. .carousel {
  4963. position: relative;
  4964. }
  4965. .carousel-inner {
  4966. position: relative;
  4967. width: 100%;
  4968. overflow: hidden;
  4969. }
  4970. .carousel-item {
  4971. position: relative;
  4972. display: none;
  4973. -ms-flex-align: center;
  4974. align-items: center;
  4975. width: 100%;
  4976. transition: -webkit-transform 0.6s ease;
  4977. transition: transform 0.6s ease;
  4978. transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  4979. -webkit-backface-visibility: hidden;
  4980. backface-visibility: hidden;
  4981. -webkit-perspective: 1000px;
  4982. perspective: 1000px;
  4983. }
  4984. @media screen and (prefers-reduced-motion: reduce) {
  4985. .carousel-item {
  4986. transition: none;
  4987. }
  4988. }
  4989. .carousel-item.active,
  4990. .carousel-item-next,
  4991. .carousel-item-prev {
  4992. display: block;
  4993. }
  4994. .carousel-item-next,
  4995. .carousel-item-prev {
  4996. position: absolute;
  4997. top: 0;
  4998. }
  4999. .carousel-item-next.carousel-item-left,
  5000. .carousel-item-prev.carousel-item-right {
  5001. -webkit-transform: translateX(0);
  5002. transform: translateX(0);
  5003. }
  5004. @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  5005. .carousel-item-next.carousel-item-left,
  5006. .carousel-item-prev.carousel-item-right {
  5007. -webkit-transform: translate3d(0, 0, 0);
  5008. transform: translate3d(0, 0, 0);
  5009. }
  5010. }
  5011. .carousel-item-next,
  5012. .active.carousel-item-right {
  5013. -webkit-transform: translateX(100%);
  5014. transform: translateX(100%);
  5015. }
  5016. @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  5017. .carousel-item-next,
  5018. .active.carousel-item-right {
  5019. -webkit-transform: translate3d(100%, 0, 0);
  5020. transform: translate3d(100%, 0, 0);
  5021. }
  5022. }
  5023. .carousel-item-prev,
  5024. .active.carousel-item-left {
  5025. -webkit-transform: translateX(-100%);
  5026. transform: translateX(-100%);
  5027. }
  5028. @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  5029. .carousel-item-prev,
  5030. .active.carousel-item-left {
  5031. -webkit-transform: translate3d(-100%, 0, 0);
  5032. transform: translate3d(-100%, 0, 0);
  5033. }
  5034. }
  5035. .carousel-fade .carousel-item {
  5036. opacity: 0;
  5037. transition-duration: .6s;
  5038. transition-property: opacity;
  5039. }
  5040. .carousel-fade .carousel-item.active,
  5041. .carousel-fade .carousel-item-next.carousel-item-left,
  5042. .carousel-fade .carousel-item-prev.carousel-item-right {
  5043. opacity: 1;
  5044. }
  5045. .carousel-fade .active.carousel-item-left,
  5046. .carousel-fade .active.carousel-item-right {
  5047. opacity: 0;
  5048. }
  5049. .carousel-fade .carousel-item-next,
  5050. .carousel-fade .carousel-item-prev,
  5051. .carousel-fade .carousel-item.active,
  5052. .carousel-fade .active.carousel-item-left,
  5053. .carousel-fade .active.carousel-item-prev {
  5054. -webkit-transform: translateX(0);
  5055. transform: translateX(0);
  5056. }
  5057. @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  5058. .carousel-fade .carousel-item-next,
  5059. .carousel-fade .carousel-item-prev,
  5060. .carousel-fade .carousel-item.active,
  5061. .carousel-fade .active.carousel-item-left,
  5062. .carousel-fade .active.carousel-item-prev {
  5063. -webkit-transform: translate3d(0, 0, 0);
  5064. transform: translate3d(0, 0, 0);
  5065. }
  5066. }
  5067. .carousel-control-prev,
  5068. .carousel-control-next {
  5069. position: absolute;
  5070. top: 0;
  5071. bottom: 0;
  5072. display: -ms-flexbox;
  5073. display: flex;
  5074. -ms-flex-align: center;
  5075. align-items: center;
  5076. -ms-flex-pack: center;
  5077. justify-content: center;
  5078. width: 15%;
  5079. color: #fff;
  5080. text-align: center;
  5081. opacity: 0.5;
  5082. }
  5083. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5084. .carousel-control-next:hover,
  5085. .carousel-control-next:focus {
  5086. color: #fff;
  5087. text-decoration: none;
  5088. outline: 0;
  5089. opacity: .9;
  5090. }
  5091. .carousel-control-prev {
  5092. left: 0;
  5093. }
  5094. .carousel-control-next {
  5095. right: 0;
  5096. }
  5097. .carousel-control-prev-icon,
  5098. .carousel-control-next-icon {
  5099. display: inline-block;
  5100. width: 20px;
  5101. height: 20px;
  5102. background: transparent no-repeat center center;
  5103. background-size: 100% 100%;
  5104. }
  5105. .carousel-control-prev-icon {
  5106. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
  5107. }
  5108. .carousel-control-next-icon {
  5109. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
  5110. }
  5111. .carousel-indicators {
  5112. position: absolute;
  5113. right: 0;
  5114. bottom: 10px;
  5115. left: 0;
  5116. z-index: 15;
  5117. display: -ms-flexbox;
  5118. display: flex;
  5119. -ms-flex-pack: center;
  5120. justify-content: center;
  5121. padding-left: 0;
  5122. margin-right: 15%;
  5123. margin-left: 15%;
  5124. list-style: none;
  5125. }
  5126. .carousel-indicators li {
  5127. position: relative;
  5128. -ms-flex: 0 1 auto;
  5129. flex: 0 1 auto;
  5130. width: 30px;
  5131. height: 3px;
  5132. margin-right: 3px;
  5133. margin-left: 3px;
  5134. text-indent: -999px;
  5135. cursor: pointer;
  5136. background-color: rgba(255, 255, 255, 0.5);
  5137. }
  5138. .carousel-indicators li::before {
  5139. position: absolute;
  5140. top: -10px;
  5141. left: 0;
  5142. display: inline-block;
  5143. width: 100%;
  5144. height: 10px;
  5145. content: "";
  5146. }
  5147. .carousel-indicators li::after {
  5148. position: absolute;
  5149. bottom: -10px;
  5150. left: 0;
  5151. display: inline-block;
  5152. width: 100%;
  5153. height: 10px;
  5154. content: "";
  5155. }
  5156. .carousel-indicators .active {
  5157. background-color: #fff;
  5158. }
  5159. .carousel-caption {
  5160. position: absolute;
  5161. right: 15%;
  5162. bottom: 20px;
  5163. left: 15%;
  5164. z-index: 10;
  5165. padding-top: 20px;
  5166. padding-bottom: 20px;
  5167. color: #fff;
  5168. text-align: center;
  5169. }
  5170. .align-baseline {
  5171. vertical-align: baseline !important;
  5172. }
  5173. .align-top {
  5174. vertical-align: top !important;
  5175. }
  5176. .align-middle {
  5177. vertical-align: middle !important;
  5178. }
  5179. .align-bottom {
  5180. vertical-align: bottom !important;
  5181. }
  5182. .align-text-bottom {
  5183. vertical-align: text-bottom !important;
  5184. }
  5185. .align-text-top {
  5186. vertical-align: text-top !important;
  5187. }
  5188. .bg-primary {
  5189. background-color: #007bff !important;
  5190. }
  5191. a.bg-primary:hover, a.bg-primary:focus,
  5192. button.bg-primary:hover,
  5193. button.bg-primary:focus {
  5194. background-color: #0062cc !important;
  5195. }
  5196. .bg-secondary {
  5197. background-color: #6c757d !important;
  5198. }
  5199. a.bg-secondary:hover, a.bg-secondary:focus,
  5200. button.bg-secondary:hover,
  5201. button.bg-secondary:focus {
  5202. background-color: #545b62 !important;
  5203. }
  5204. .bg-success {
  5205. background-color: #28a745 !important;
  5206. }
  5207. a.bg-success:hover, a.bg-success:focus,
  5208. button.bg-success:hover,
  5209. button.bg-success:focus {
  5210. background-color: #1e7e34 !important;
  5211. }
  5212. .bg-info {
  5213. background-color: #17a2b8 !important;
  5214. }
  5215. a.bg-info:hover, a.bg-info:focus,
  5216. button.bg-info:hover,
  5217. button.bg-info:focus {
  5218. background-color: #117a8b !important;
  5219. }
  5220. .bg-warning {
  5221. background-color: #ffc107 !important;
  5222. }
  5223. a.bg-warning:hover, a.bg-warning:focus,
  5224. button.bg-warning:hover,
  5225. button.bg-warning:focus {
  5226. background-color: #d39e00 !important;
  5227. }
  5228. .bg-danger {
  5229. background-color: #dc3545 !important;
  5230. }
  5231. a.bg-danger:hover, a.bg-danger:focus,
  5232. button.bg-danger:hover,
  5233. button.bg-danger:focus {
  5234. background-color: #bd2130 !important;
  5235. }
  5236. .bg-light {
  5237. background-color: #f8f9fa !important;
  5238. }
  5239. a.bg-light:hover, a.bg-light:focus,
  5240. button.bg-light:hover,
  5241. button.bg-light:focus {
  5242. background-color: #dae0e5 !important;
  5243. }
  5244. .bg-dark {
  5245. background-color: #343a40 !important;
  5246. }
  5247. a.bg-dark:hover, a.bg-dark:focus,
  5248. button.bg-dark:hover,
  5249. button.bg-dark:focus {
  5250. background-color: #1d2124 !important;
  5251. }
  5252. .bg-white {
  5253. background-color: #fff !important;
  5254. }
  5255. .bg-transparent {
  5256. background-color: transparent !important;
  5257. }
  5258. .border {
  5259. border: 1px solid #dee2e6 !important;
  5260. }
  5261. .border-top {
  5262. border-top: 1px solid #dee2e6 !important;
  5263. }
  5264. .border-right {
  5265. border-right: 1px solid #dee2e6 !important;
  5266. }
  5267. .border-bottom {
  5268. border-bottom: 1px solid #dee2e6 !important;
  5269. }
  5270. .border-left {
  5271. border-left: 1px solid #dee2e6 !important;
  5272. }
  5273. .border-0 {
  5274. border: 0 !important;
  5275. }
  5276. .border-top-0 {
  5277. border-top: 0 !important;
  5278. }
  5279. .border-right-0 {
  5280. border-right: 0 !important;
  5281. }
  5282. .border-bottom-0 {
  5283. border-bottom: 0 !important;
  5284. }
  5285. .border-left-0 {
  5286. border-left: 0 !important;
  5287. }
  5288. .border-primary {
  5289. border-color: #007bff !important;
  5290. }
  5291. .border-secondary {
  5292. border-color: #6c757d !important;
  5293. }
  5294. .border-success {
  5295. border-color: #28a745 !important;
  5296. }
  5297. .border-info {
  5298. border-color: #17a2b8 !important;
  5299. }
  5300. .border-warning {
  5301. border-color: #ffc107 !important;
  5302. }
  5303. .border-danger {
  5304. border-color: #dc3545 !important;
  5305. }
  5306. .border-light {
  5307. border-color: #f8f9fa !important;
  5308. }
  5309. .border-dark {
  5310. border-color: #343a40 !important;
  5311. }
  5312. .border-white {
  5313. border-color: #fff !important;
  5314. }
  5315. .rounded {
  5316. border-radius: 0.25rem !important;
  5317. }
  5318. .rounded-top {
  5319. border-top-left-radius: 0.25rem !important;
  5320. border-top-right-radius: 0.25rem !important;
  5321. }
  5322. .rounded-right {
  5323. border-top-right-radius: 0.25rem !important;
  5324. border-bottom-right-radius: 0.25rem !important;
  5325. }
  5326. .rounded-bottom {
  5327. border-bottom-right-radius: 0.25rem !important;
  5328. border-bottom-left-radius: 0.25rem !important;
  5329. }
  5330. .rounded-left {
  5331. border-top-left-radius: 0.25rem !important;
  5332. border-bottom-left-radius: 0.25rem !important;
  5333. }
  5334. .rounded-circle {
  5335. border-radius: 50% !important;
  5336. }
  5337. .rounded-0 {
  5338. border-radius: 0 !important;
  5339. }
  5340. .clearfix::after {
  5341. display: block;
  5342. clear: both;
  5343. content: "";
  5344. }
  5345. .d-none {
  5346. display: none !important;
  5347. }
  5348. .d-inline {
  5349. display: inline !important;
  5350. }
  5351. .d-inline-block {
  5352. display: inline-block !important;
  5353. }
  5354. .d-block {
  5355. display: block !important;
  5356. }
  5357. .d-table {
  5358. display: table !important;
  5359. }
  5360. .d-table-row {
  5361. display: table-row !important;
  5362. }
  5363. .d-table-cell {
  5364. display: table-cell !important;
  5365. }
  5366. .d-flex {
  5367. display: -ms-flexbox !important;
  5368. display: flex !important;
  5369. }
  5370. .d-inline-flex {
  5371. display: -ms-inline-flexbox !important;
  5372. display: inline-flex !important;
  5373. }
  5374. @media (min-width: 576px) {
  5375. .d-sm-none {
  5376. display: none !important;
  5377. }
  5378. .d-sm-inline {
  5379. display: inline !important;
  5380. }
  5381. .d-sm-inline-block {
  5382. display: inline-block !important;
  5383. }
  5384. .d-sm-block {
  5385. display: block !important;
  5386. }
  5387. .d-sm-table {
  5388. display: table !important;
  5389. }
  5390. .d-sm-table-row {
  5391. display: table-row !important;
  5392. }
  5393. .d-sm-table-cell {
  5394. display: table-cell !important;
  5395. }
  5396. .d-sm-flex {
  5397. display: -ms-flexbox !important;
  5398. display: flex !important;
  5399. }
  5400. .d-sm-inline-flex {
  5401. display: -ms-inline-flexbox !important;
  5402. display: inline-flex !important;
  5403. }
  5404. }
  5405. @media (min-width: 768px) {
  5406. .d-md-none {
  5407. display: none !important;
  5408. }
  5409. .d-md-inline {
  5410. display: inline !important;
  5411. }
  5412. .d-md-inline-block {
  5413. display: inline-block !important;
  5414. }
  5415. .d-md-block {
  5416. display: block !important;
  5417. }
  5418. .d-md-table {
  5419. display: table !important;
  5420. }
  5421. .d-md-table-row {
  5422. display: table-row !important;
  5423. }
  5424. .d-md-table-cell {
  5425. display: table-cell !important;
  5426. }
  5427. .d-md-flex {
  5428. display: -ms-flexbox !important;
  5429. display: flex !important;
  5430. }
  5431. .d-md-inline-flex {
  5432. display: -ms-inline-flexbox !important;
  5433. display: inline-flex !important;
  5434. }
  5435. }
  5436. @media (min-width: 992px) {
  5437. .d-lg-none {
  5438. display: none !important;
  5439. }
  5440. .d-lg-inline {
  5441. display: inline !important;
  5442. }
  5443. .d-lg-inline-block {
  5444. display: inline-block !important;
  5445. }
  5446. .d-lg-block {
  5447. display: block !important;
  5448. }
  5449. .d-lg-table {
  5450. display: table !important;
  5451. }
  5452. .d-lg-table-row {
  5453. display: table-row !important;
  5454. }
  5455. .d-lg-table-cell {
  5456. display: table-cell !important;
  5457. }
  5458. .d-lg-flex {
  5459. display: -ms-flexbox !important;
  5460. display: flex !important;
  5461. }
  5462. .d-lg-inline-flex {
  5463. display: -ms-inline-flexbox !important;
  5464. display: inline-flex !important;
  5465. }
  5466. }
  5467. @media (min-width: 1200px) {
  5468. .d-xl-none {
  5469. display: none !important;
  5470. }
  5471. .d-xl-inline {
  5472. display: inline !important;
  5473. }
  5474. .d-xl-inline-block {
  5475. display: inline-block !important;
  5476. }
  5477. .d-xl-block {
  5478. display: block !important;
  5479. }
  5480. .d-xl-table {
  5481. display: table !important;
  5482. }
  5483. .d-xl-table-row {
  5484. display: table-row !important;
  5485. }
  5486. .d-xl-table-cell {
  5487. display: table-cell !important;
  5488. }
  5489. .d-xl-flex {
  5490. display: -ms-flexbox !important;
  5491. display: flex !important;
  5492. }
  5493. .d-xl-inline-flex {
  5494. display: -ms-inline-flexbox !important;
  5495. display: inline-flex !important;
  5496. }
  5497. }
  5498. @media print {
  5499. .d-print-none {
  5500. display: none !important;
  5501. }
  5502. .d-print-inline {
  5503. display: inline !important;
  5504. }
  5505. .d-print-inline-block {
  5506. display: inline-block !important;
  5507. }
  5508. .d-print-block {
  5509. display: block !important;
  5510. }
  5511. .d-print-table {
  5512. display: table !important;
  5513. }
  5514. .d-print-table-row {
  5515. display: table-row !important;
  5516. }
  5517. .d-print-table-cell {
  5518. display: table-cell !important;
  5519. }
  5520. .d-print-flex {
  5521. display: -ms-flexbox !important;
  5522. display: flex !important;
  5523. }
  5524. .d-print-inline-flex {
  5525. display: -ms-inline-flexbox !important;
  5526. display: inline-flex !important;
  5527. }
  5528. }
  5529. .embed-responsive {
  5530. position: relative;
  5531. display: block;
  5532. width: 100%;
  5533. padding: 0;
  5534. overflow: hidden;
  5535. }
  5536. .embed-responsive::before {
  5537. display: block;
  5538. content: "";
  5539. }
  5540. .embed-responsive .embed-responsive-item,
  5541. .embed-responsive iframe,
  5542. .embed-responsive embed,
  5543. .embed-responsive object,
  5544. .embed-responsive video {
  5545. position: absolute;
  5546. top: 0;
  5547. bottom: 0;
  5548. left: 0;
  5549. width: 100%;
  5550. height: 100%;
  5551. border: 0;
  5552. }
  5553. .embed-responsive-21by9::before {
  5554. padding-top: 42.857143%;
  5555. }
  5556. .embed-responsive-16by9::before {
  5557. padding-top: 56.25%;
  5558. }
  5559. .embed-responsive-4by3::before {
  5560. padding-top: 75%;
  5561. }
  5562. .embed-responsive-1by1::before {
  5563. padding-top: 100%;
  5564. }
  5565. .flex-row {
  5566. -ms-flex-direction: row !important;
  5567. flex-direction: row !important;
  5568. }
  5569. .flex-column {
  5570. -ms-flex-direction: column !important;
  5571. flex-direction: column !important;
  5572. }
  5573. .flex-row-reverse {
  5574. -ms-flex-direction: row-reverse !important;
  5575. flex-direction: row-reverse !important;
  5576. }
  5577. .flex-column-reverse {
  5578. -ms-flex-direction: column-reverse !important;
  5579. flex-direction: column-reverse !important;
  5580. }
  5581. .flex-wrap {
  5582. -ms-flex-wrap: wrap !important;
  5583. flex-wrap: wrap !important;
  5584. }
  5585. .flex-nowrap {
  5586. -ms-flex-wrap: nowrap !important;
  5587. flex-wrap: nowrap !important;
  5588. }
  5589. .flex-wrap-reverse {
  5590. -ms-flex-wrap: wrap-reverse !important;
  5591. flex-wrap: wrap-reverse !important;
  5592. }
  5593. .flex-fill {
  5594. -ms-flex: 1 1 auto !important;
  5595. flex: 1 1 auto !important;
  5596. }
  5597. .flex-grow-0 {
  5598. -ms-flex-positive: 0 !important;
  5599. flex-grow: 0 !important;
  5600. }
  5601. .flex-grow-1 {
  5602. -ms-flex-positive: 1 !important;
  5603. flex-grow: 1 !important;
  5604. }
  5605. .flex-shrink-0 {
  5606. -ms-flex-negative: 0 !important;
  5607. flex-shrink: 0 !important;
  5608. }
  5609. .flex-shrink-1 {
  5610. -ms-flex-negative: 1 !important;
  5611. flex-shrink: 1 !important;
  5612. }
  5613. .justify-content-start {
  5614. -ms-flex-pack: start !important;
  5615. justify-content: flex-start !important;
  5616. }
  5617. .justify-content-end {
  5618. -ms-flex-pack: end !important;
  5619. justify-content: flex-end !important;
  5620. }
  5621. .justify-content-center {
  5622. -ms-flex-pack: center !important;
  5623. justify-content: center !important;
  5624. }
  5625. .justify-content-between {
  5626. -ms-flex-pack: justify !important;
  5627. justify-content: space-between !important;
  5628. }
  5629. .justify-content-around {
  5630. -ms-flex-pack: distribute !important;
  5631. justify-content: space-around !important;
  5632. }
  5633. .align-items-start {
  5634. -ms-flex-align: start !important;
  5635. align-items: flex-start !important;
  5636. }
  5637. .align-items-end {
  5638. -ms-flex-align: end !important;
  5639. align-items: flex-end !important;
  5640. }
  5641. .align-items-center {
  5642. -ms-flex-align: center !important;
  5643. align-items: center !important;
  5644. }
  5645. .align-items-baseline {
  5646. -ms-flex-align: baseline !important;
  5647. align-items: baseline !important;
  5648. }
  5649. .align-items-stretch {
  5650. -ms-flex-align: stretch !important;
  5651. align-items: stretch !important;
  5652. }
  5653. .align-content-start {
  5654. -ms-flex-line-pack: start !important;
  5655. align-content: flex-start !important;
  5656. }
  5657. .align-content-end {
  5658. -ms-flex-line-pack: end !important;
  5659. align-content: flex-end !important;
  5660. }
  5661. .align-content-center {
  5662. -ms-flex-line-pack: center !important;
  5663. align-content: center !important;
  5664. }
  5665. .align-content-between {
  5666. -ms-flex-line-pack: justify !important;
  5667. align-content: space-between !important;
  5668. }
  5669. .align-content-around {
  5670. -ms-flex-line-pack: distribute !important;
  5671. align-content: space-around !important;
  5672. }
  5673. .align-content-stretch {
  5674. -ms-flex-line-pack: stretch !important;
  5675. align-content: stretch !important;
  5676. }
  5677. .align-self-auto {
  5678. -ms-flex-item-align: auto !important;
  5679. align-self: auto !important;
  5680. }
  5681. .align-self-start {
  5682. -ms-flex-item-align: start !important;
  5683. align-self: flex-start !important;
  5684. }
  5685. .align-self-end {
  5686. -ms-flex-item-align: end !important;
  5687. align-self: flex-end !important;
  5688. }
  5689. .align-self-center {
  5690. -ms-flex-item-align: center !important;
  5691. align-self: center !important;
  5692. }
  5693. .align-self-baseline {
  5694. -ms-flex-item-align: baseline !important;
  5695. align-self: baseline !important;
  5696. }
  5697. .align-self-stretch {
  5698. -ms-flex-item-align: stretch !important;
  5699. align-self: stretch !important;
  5700. }
  5701. @media (min-width: 576px) {
  5702. .flex-sm-row {
  5703. -ms-flex-direction: row !important;
  5704. flex-direction: row !important;
  5705. }
  5706. .flex-sm-column {
  5707. -ms-flex-direction: column !important;
  5708. flex-direction: column !important;
  5709. }
  5710. .flex-sm-row-reverse {
  5711. -ms-flex-direction: row-reverse !important;
  5712. flex-direction: row-reverse !important;
  5713. }
  5714. .flex-sm-column-reverse {
  5715. -ms-flex-direction: column-reverse !important;
  5716. flex-direction: column-reverse !important;
  5717. }
  5718. .flex-sm-wrap {
  5719. -ms-flex-wrap: wrap !important;
  5720. flex-wrap: wrap !important;
  5721. }
  5722. .flex-sm-nowrap {
  5723. -ms-flex-wrap: nowrap !important;
  5724. flex-wrap: nowrap !important;
  5725. }
  5726. .flex-sm-wrap-reverse {
  5727. -ms-flex-wrap: wrap-reverse !important;
  5728. flex-wrap: wrap-reverse !important;
  5729. }
  5730. .flex-sm-fill {
  5731. -ms-flex: 1 1 auto !important;
  5732. flex: 1 1 auto !important;
  5733. }
  5734. .flex-sm-grow-0 {
  5735. -ms-flex-positive: 0 !important;
  5736. flex-grow: 0 !important;
  5737. }
  5738. .flex-sm-grow-1 {
  5739. -ms-flex-positive: 1 !important;
  5740. flex-grow: 1 !important;
  5741. }
  5742. .flex-sm-shrink-0 {
  5743. -ms-flex-negative: 0 !important;
  5744. flex-shrink: 0 !important;
  5745. }
  5746. .flex-sm-shrink-1 {
  5747. -ms-flex-negative: 1 !important;
  5748. flex-shrink: 1 !important;
  5749. }
  5750. .justify-content-sm-start {
  5751. -ms-flex-pack: start !important;
  5752. justify-content: flex-start !important;
  5753. }
  5754. .justify-content-sm-end {
  5755. -ms-flex-pack: end !important;
  5756. justify-content: flex-end !important;
  5757. }
  5758. .justify-content-sm-center {
  5759. -ms-flex-pack: center !important;
  5760. justify-content: center !important;
  5761. }
  5762. .justify-content-sm-between {
  5763. -ms-flex-pack: justify !important;
  5764. justify-content: space-between !important;
  5765. }
  5766. .justify-content-sm-around {
  5767. -ms-flex-pack: distribute !important;
  5768. justify-content: space-around !important;
  5769. }
  5770. .align-items-sm-start {
  5771. -ms-flex-align: start !important;
  5772. align-items: flex-start !important;
  5773. }
  5774. .align-items-sm-end {
  5775. -ms-flex-align: end !important;
  5776. align-items: flex-end !important;
  5777. }
  5778. .align-items-sm-center {
  5779. -ms-flex-align: center !important;
  5780. align-items: center !important;
  5781. }
  5782. .align-items-sm-baseline {
  5783. -ms-flex-align: baseline !important;
  5784. align-items: baseline !important;
  5785. }
  5786. .align-items-sm-stretch {
  5787. -ms-flex-align: stretch !important;
  5788. align-items: stretch !important;
  5789. }
  5790. .align-content-sm-start {
  5791. -ms-flex-line-pack: start !important;
  5792. align-content: flex-start !important;
  5793. }
  5794. .align-content-sm-end {
  5795. -ms-flex-line-pack: end !important;
  5796. align-content: flex-end !important;
  5797. }
  5798. .align-content-sm-center {
  5799. -ms-flex-line-pack: center !important;
  5800. align-content: center !important;
  5801. }
  5802. .align-content-sm-between {
  5803. -ms-flex-line-pack: justify !important;
  5804. align-content: space-between !important;
  5805. }
  5806. .align-content-sm-around {
  5807. -ms-flex-line-pack: distribute !important;
  5808. align-content: space-around !important;
  5809. }
  5810. .align-content-sm-stretch {
  5811. -ms-flex-line-pack: stretch !important;
  5812. align-content: stretch !important;
  5813. }
  5814. .align-self-sm-auto {
  5815. -ms-flex-item-align: auto !important;
  5816. align-self: auto !important;
  5817. }
  5818. .align-self-sm-start {
  5819. -ms-flex-item-align: start !important;
  5820. align-self: flex-start !important;
  5821. }
  5822. .align-self-sm-end {
  5823. -ms-flex-item-align: end !important;
  5824. align-self: flex-end !important;
  5825. }
  5826. .align-self-sm-center {
  5827. -ms-flex-item-align: center !important;
  5828. align-self: center !important;
  5829. }
  5830. .align-self-sm-baseline {
  5831. -ms-flex-item-align: baseline !important;
  5832. align-self: baseline !important;
  5833. }
  5834. .align-self-sm-stretch {
  5835. -ms-flex-item-align: stretch !important;
  5836. align-self: stretch !important;
  5837. }
  5838. }
  5839. @media (min-width: 768px) {
  5840. .flex-md-row {
  5841. -ms-flex-direction: row !important;
  5842. flex-direction: row !important;
  5843. }
  5844. .flex-md-column {
  5845. -ms-flex-direction: column !important;
  5846. flex-direction: column !important;
  5847. }
  5848. .flex-md-row-reverse {
  5849. -ms-flex-direction: row-reverse !important;
  5850. flex-direction: row-reverse !important;
  5851. }
  5852. .flex-md-column-reverse {
  5853. -ms-flex-direction: column-reverse !important;
  5854. flex-direction: column-reverse !important;
  5855. }
  5856. .flex-md-wrap {
  5857. -ms-flex-wrap: wrap !important;
  5858. flex-wrap: wrap !important;
  5859. }
  5860. .flex-md-nowrap {
  5861. -ms-flex-wrap: nowrap !important;
  5862. flex-wrap: nowrap !important;
  5863. }
  5864. .flex-md-wrap-reverse {
  5865. -ms-flex-wrap: wrap-reverse !important;
  5866. flex-wrap: wrap-reverse !important;
  5867. }
  5868. .flex-md-fill {
  5869. -ms-flex: 1 1 auto !important;
  5870. flex: 1 1 auto !important;
  5871. }
  5872. .flex-md-grow-0 {
  5873. -ms-flex-positive: 0 !important;
  5874. flex-grow: 0 !important;
  5875. }
  5876. .flex-md-grow-1 {
  5877. -ms-flex-positive: 1 !important;
  5878. flex-grow: 1 !important;
  5879. }
  5880. .flex-md-shrink-0 {
  5881. -ms-flex-negative: 0 !important;
  5882. flex-shrink: 0 !important;
  5883. }
  5884. .flex-md-shrink-1 {
  5885. -ms-flex-negative: 1 !important;
  5886. flex-shrink: 1 !important;
  5887. }
  5888. .justify-content-md-start {
  5889. -ms-flex-pack: start !important;
  5890. justify-content: flex-start !important;
  5891. }
  5892. .justify-content-md-end {
  5893. -ms-flex-pack: end !important;
  5894. justify-content: flex-end !important;
  5895. }
  5896. .justify-content-md-center {
  5897. -ms-flex-pack: center !important;
  5898. justify-content: center !important;
  5899. }
  5900. .justify-content-md-between {
  5901. -ms-flex-pack: justify !important;
  5902. justify-content: space-between !important;
  5903. }
  5904. .justify-content-md-around {
  5905. -ms-flex-pack: distribute !important;
  5906. justify-content: space-around !important;
  5907. }
  5908. .align-items-md-start {
  5909. -ms-flex-align: start !important;
  5910. align-items: flex-start !important;
  5911. }
  5912. .align-items-md-end {
  5913. -ms-flex-align: end !important;
  5914. align-items: flex-end !important;
  5915. }
  5916. .align-items-md-center {
  5917. -ms-flex-align: center !important;
  5918. align-items: center !important;
  5919. }
  5920. .align-items-md-baseline {
  5921. -ms-flex-align: baseline !important;
  5922. align-items: baseline !important;
  5923. }
  5924. .align-items-md-stretch {
  5925. -ms-flex-align: stretch !important;
  5926. align-items: stretch !important;
  5927. }
  5928. .align-content-md-start {
  5929. -ms-flex-line-pack: start !important;
  5930. align-content: flex-start !important;
  5931. }
  5932. .align-content-md-end {
  5933. -ms-flex-line-pack: end !important;
  5934. align-content: flex-end !important;
  5935. }
  5936. .align-content-md-center {
  5937. -ms-flex-line-pack: center !important;
  5938. align-content: center !important;
  5939. }
  5940. .align-content-md-between {
  5941. -ms-flex-line-pack: justify !important;
  5942. align-content: space-between !important;
  5943. }
  5944. .align-content-md-around {
  5945. -ms-flex-line-pack: distribute !important;
  5946. align-content: space-around !important;
  5947. }
  5948. .align-content-md-stretch {
  5949. -ms-flex-line-pack: stretch !important;
  5950. align-content: stretch !important;
  5951. }
  5952. .align-self-md-auto {
  5953. -ms-flex-item-align: auto !important;
  5954. align-self: auto !important;
  5955. }
  5956. .align-self-md-start {
  5957. -ms-flex-item-align: start !important;
  5958. align-self: flex-start !important;
  5959. }
  5960. .align-self-md-end {
  5961. -ms-flex-item-align: end !important;
  5962. align-self: flex-end !important;
  5963. }
  5964. .align-self-md-center {
  5965. -ms-flex-item-align: center !important;
  5966. align-self: center !important;
  5967. }
  5968. .align-self-md-baseline {
  5969. -ms-flex-item-align: baseline !important;
  5970. align-self: baseline !important;
  5971. }
  5972. .align-self-md-stretch {
  5973. -ms-flex-item-align: stretch !important;
  5974. align-self: stretch !important;
  5975. }
  5976. }
  5977. @media (min-width: 992px) {
  5978. .flex-lg-row {
  5979. -ms-flex-direction: row !important;
  5980. flex-direction: row !important;
  5981. }
  5982. .flex-lg-column {
  5983. -ms-flex-direction: column !important;
  5984. flex-direction: column !important;
  5985. }
  5986. .flex-lg-row-reverse {
  5987. -ms-flex-direction: row-reverse !important;
  5988. flex-direction: row-reverse !important;
  5989. }
  5990. .flex-lg-column-reverse {
  5991. -ms-flex-direction: column-reverse !important;
  5992. flex-direction: column-reverse !important;
  5993. }
  5994. .flex-lg-wrap {
  5995. -ms-flex-wrap: wrap !important;
  5996. flex-wrap: wrap !important;
  5997. }
  5998. .flex-lg-nowrap {
  5999. -ms-flex-wrap: nowrap !important;
  6000. flex-wrap: nowrap !important;
  6001. }
  6002. .flex-lg-wrap-reverse {
  6003. -ms-flex-wrap: wrap-reverse !important;
  6004. flex-wrap: wrap-reverse !important;
  6005. }
  6006. .flex-lg-fill {
  6007. -ms-flex: 1 1 auto !important;
  6008. flex: 1 1 auto !important;
  6009. }
  6010. .flex-lg-grow-0 {
  6011. -ms-flex-positive: 0 !important;
  6012. flex-grow: 0 !important;
  6013. }
  6014. .flex-lg-grow-1 {
  6015. -ms-flex-positive: 1 !important;
  6016. flex-grow: 1 !important;
  6017. }
  6018. .flex-lg-shrink-0 {
  6019. -ms-flex-negative: 0 !important;
  6020. flex-shrink: 0 !important;
  6021. }
  6022. .flex-lg-shrink-1 {
  6023. -ms-flex-negative: 1 !important;
  6024. flex-shrink: 1 !important;
  6025. }
  6026. .justify-content-lg-start {
  6027. -ms-flex-pack: start !important;
  6028. justify-content: flex-start !important;
  6029. }
  6030. .justify-content-lg-end {
  6031. -ms-flex-pack: end !important;
  6032. justify-content: flex-end !important;
  6033. }
  6034. .justify-content-lg-center {
  6035. -ms-flex-pack: center !important;
  6036. justify-content: center !important;
  6037. }
  6038. .justify-content-lg-between {
  6039. -ms-flex-pack: justify !important;
  6040. justify-content: space-between !important;
  6041. }
  6042. .justify-content-lg-around {
  6043. -ms-flex-pack: distribute !important;
  6044. justify-content: space-around !important;
  6045. }
  6046. .align-items-lg-start {
  6047. -ms-flex-align: start !important;
  6048. align-items: flex-start !important;
  6049. }
  6050. .align-items-lg-end {
  6051. -ms-flex-align: end !important;
  6052. align-items: flex-end !important;
  6053. }
  6054. .align-items-lg-center {
  6055. -ms-flex-align: center !important;
  6056. align-items: center !important;
  6057. }
  6058. .align-items-lg-baseline {
  6059. -ms-flex-align: baseline !important;
  6060. align-items: baseline !important;
  6061. }
  6062. .align-items-lg-stretch {
  6063. -ms-flex-align: stretch !important;
  6064. align-items: stretch !important;
  6065. }
  6066. .align-content-lg-start {
  6067. -ms-flex-line-pack: start !important;
  6068. align-content: flex-start !important;
  6069. }
  6070. .align-content-lg-end {
  6071. -ms-flex-line-pack: end !important;
  6072. align-content: flex-end !important;
  6073. }
  6074. .align-content-lg-center {
  6075. -ms-flex-line-pack: center !important;
  6076. align-content: center !important;
  6077. }
  6078. .align-content-lg-between {
  6079. -ms-flex-line-pack: justify !important;
  6080. align-content: space-between !important;
  6081. }
  6082. .align-content-lg-around {
  6083. -ms-flex-line-pack: distribute !important;
  6084. align-content: space-around !important;
  6085. }
  6086. .align-content-lg-stretch {
  6087. -ms-flex-line-pack: stretch !important;
  6088. align-content: stretch !important;
  6089. }
  6090. .align-self-lg-auto {
  6091. -ms-flex-item-align: auto !important;
  6092. align-self: auto !important;
  6093. }
  6094. .align-self-lg-start {
  6095. -ms-flex-item-align: start !important;
  6096. align-self: flex-start !important;
  6097. }
  6098. .align-self-lg-end {
  6099. -ms-flex-item-align: end !important;
  6100. align-self: flex-end !important;
  6101. }
  6102. .align-self-lg-center {
  6103. -ms-flex-item-align: center !important;
  6104. align-self: center !important;
  6105. }
  6106. .align-self-lg-baseline {
  6107. -ms-flex-item-align: baseline !important;
  6108. align-self: baseline !important;
  6109. }
  6110. .align-self-lg-stretch {
  6111. -ms-flex-item-align: stretch !important;
  6112. align-self: stretch !important;
  6113. }
  6114. }
  6115. @media (min-width: 1200px) {
  6116. .flex-xl-row {
  6117. -ms-flex-direction: row !important;
  6118. flex-direction: row !important;
  6119. }
  6120. .flex-xl-column {
  6121. -ms-flex-direction: column !important;
  6122. flex-direction: column !important;
  6123. }
  6124. .flex-xl-row-reverse {
  6125. -ms-flex-direction: row-reverse !important;
  6126. flex-direction: row-reverse !important;
  6127. }
  6128. .flex-xl-column-reverse {
  6129. -ms-flex-direction: column-reverse !important;
  6130. flex-direction: column-reverse !important;
  6131. }
  6132. .flex-xl-wrap {
  6133. -ms-flex-wrap: wrap !important;
  6134. flex-wrap: wrap !important;
  6135. }
  6136. .flex-xl-nowrap {
  6137. -ms-flex-wrap: nowrap !important;
  6138. flex-wrap: nowrap !important;
  6139. }
  6140. .flex-xl-wrap-reverse {
  6141. -ms-flex-wrap: wrap-reverse !important;
  6142. flex-wrap: wrap-reverse !important;
  6143. }
  6144. .flex-xl-fill {
  6145. -ms-flex: 1 1 auto !important;
  6146. flex: 1 1 auto !important;
  6147. }
  6148. .flex-xl-grow-0 {
  6149. -ms-flex-positive: 0 !important;
  6150. flex-grow: 0 !important;
  6151. }
  6152. .flex-xl-grow-1 {
  6153. -ms-flex-positive: 1 !important;
  6154. flex-grow: 1 !important;
  6155. }
  6156. .flex-xl-shrink-0 {
  6157. -ms-flex-negative: 0 !important;
  6158. flex-shrink: 0 !important;
  6159. }
  6160. .flex-xl-shrink-1 {
  6161. -ms-flex-negative: 1 !important;
  6162. flex-shrink: 1 !important;
  6163. }
  6164. .justify-content-xl-start {
  6165. -ms-flex-pack: start !important;
  6166. justify-content: flex-start !important;
  6167. }
  6168. .justify-content-xl-end {
  6169. -ms-flex-pack: end !important;
  6170. justify-content: flex-end !important;
  6171. }
  6172. .justify-content-xl-center {
  6173. -ms-flex-pack: center !important;
  6174. justify-content: center !important;
  6175. }
  6176. .justify-content-xl-between {
  6177. -ms-flex-pack: justify !important;
  6178. justify-content: space-between !important;
  6179. }
  6180. .justify-content-xl-around {
  6181. -ms-flex-pack: distribute !important;
  6182. justify-content: space-around !important;
  6183. }
  6184. .align-items-xl-start {
  6185. -ms-flex-align: start !important;
  6186. align-items: flex-start !important;
  6187. }
  6188. .align-items-xl-end {
  6189. -ms-flex-align: end !important;
  6190. align-items: flex-end !important;
  6191. }
  6192. .align-items-xl-center {
  6193. -ms-flex-align: center !important;
  6194. align-items: center !important;
  6195. }
  6196. .align-items-xl-baseline {
  6197. -ms-flex-align: baseline !important;
  6198. align-items: baseline !important;
  6199. }
  6200. .align-items-xl-stretch {
  6201. -ms-flex-align: stretch !important;
  6202. align-items: stretch !important;
  6203. }
  6204. .align-content-xl-start {
  6205. -ms-flex-line-pack: start !important;
  6206. align-content: flex-start !important;
  6207. }
  6208. .align-content-xl-end {
  6209. -ms-flex-line-pack: end !important;
  6210. align-content: flex-end !important;
  6211. }
  6212. .align-content-xl-center {
  6213. -ms-flex-line-pack: center !important;
  6214. align-content: center !important;
  6215. }
  6216. .align-content-xl-between {
  6217. -ms-flex-line-pack: justify !important;
  6218. align-content: space-between !important;
  6219. }
  6220. .align-content-xl-around {
  6221. -ms-flex-line-pack: distribute !important;
  6222. align-content: space-around !important;
  6223. }
  6224. .align-content-xl-stretch {
  6225. -ms-flex-line-pack: stretch !important;
  6226. align-content: stretch !important;
  6227. }
  6228. .align-self-xl-auto {
  6229. -ms-flex-item-align: auto !important;
  6230. align-self: auto !important;
  6231. }
  6232. .align-self-xl-start {
  6233. -ms-flex-item-align: start !important;
  6234. align-self: flex-start !important;
  6235. }
  6236. .align-self-xl-end {
  6237. -ms-flex-item-align: end !important;
  6238. align-self: flex-end !important;
  6239. }
  6240. .align-self-xl-center {
  6241. -ms-flex-item-align: center !important;
  6242. align-self: center !important;
  6243. }
  6244. .align-self-xl-baseline {
  6245. -ms-flex-item-align: baseline !important;
  6246. align-self: baseline !important;
  6247. }
  6248. .align-self-xl-stretch {
  6249. -ms-flex-item-align: stretch !important;
  6250. align-self: stretch !important;
  6251. }
  6252. }
  6253. .float-left {
  6254. float: left !important;
  6255. }
  6256. .float-right {
  6257. float: right !important;
  6258. }
  6259. .float-none {
  6260. float: none !important;
  6261. }
  6262. @media (min-width: 576px) {
  6263. .float-sm-left {
  6264. float: left !important;
  6265. }
  6266. .float-sm-right {
  6267. float: right !important;
  6268. }
  6269. .float-sm-none {
  6270. float: none !important;
  6271. }
  6272. }
  6273. @media (min-width: 768px) {
  6274. .float-md-left {
  6275. float: left !important;
  6276. }
  6277. .float-md-right {
  6278. float: right !important;
  6279. }
  6280. .float-md-none {
  6281. float: none !important;
  6282. }
  6283. }
  6284. @media (min-width: 992px) {
  6285. .float-lg-left {
  6286. float: left !important;
  6287. }
  6288. .float-lg-right {
  6289. float: right !important;
  6290. }
  6291. .float-lg-none {
  6292. float: none !important;
  6293. }
  6294. }
  6295. @media (min-width: 1200px) {
  6296. .float-xl-left {
  6297. float: left !important;
  6298. }
  6299. .float-xl-right {
  6300. float: right !important;
  6301. }
  6302. .float-xl-none {
  6303. float: none !important;
  6304. }
  6305. }
  6306. .position-static {
  6307. position: static !important;
  6308. }
  6309. .position-relative {
  6310. position: relative !important;
  6311. }
  6312. .position-absolute {
  6313. position: absolute !important;
  6314. }
  6315. .position-fixed {
  6316. position: fixed !important;
  6317. }
  6318. .position-sticky {
  6319. position: -webkit-sticky !important;
  6320. position: sticky !important;
  6321. }
  6322. .fixed-top {
  6323. position: fixed;
  6324. top: 0;
  6325. right: 0;
  6326. left: 0;
  6327. z-index: 1030;
  6328. }
  6329. .fixed-bottom {
  6330. position: fixed;
  6331. right: 0;
  6332. bottom: 0;
  6333. left: 0;
  6334. z-index: 1030;
  6335. }
  6336. @supports ((position: -webkit-sticky) or (position: sticky)) {
  6337. .sticky-top {
  6338. position: -webkit-sticky;
  6339. position: sticky;
  6340. top: 0;
  6341. z-index: 1020;
  6342. }
  6343. }
  6344. .sr-only {
  6345. position: absolute;
  6346. width: 1px;
  6347. height: 1px;
  6348. padding: 0;
  6349. overflow: hidden;
  6350. clip: rect(0, 0, 0, 0);
  6351. white-space: nowrap;
  6352. border: 0;
  6353. }
  6354. .sr-only-focusable:active, .sr-only-focusable:focus {
  6355. position: static;
  6356. width: auto;
  6357. height: auto;
  6358. overflow: visible;
  6359. clip: auto;
  6360. white-space: normal;
  6361. }
  6362. .shadow-sm {
  6363. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6364. }
  6365. .shadow {
  6366. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6367. }
  6368. .shadow-lg {
  6369. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6370. }
  6371. .shadow-none {
  6372. box-shadow: none !important;
  6373. }
  6374. .w-25 {
  6375. width: 25% !important;
  6376. }
  6377. .w-50 {
  6378. width: 50% !important;
  6379. }
  6380. .w-75 {
  6381. width: 75% !important;
  6382. }
  6383. .w-100 {
  6384. width: 100% !important;
  6385. }
  6386. .w-auto {
  6387. width: auto !important;
  6388. }
  6389. .h-25 {
  6390. height: 25% !important;
  6391. }
  6392. .h-50 {
  6393. height: 50% !important;
  6394. }
  6395. .h-75 {
  6396. height: 75% !important;
  6397. }
  6398. .h-100 {
  6399. height: 100% !important;
  6400. }
  6401. .h-auto {
  6402. height: auto !important;
  6403. }
  6404. .mw-100 {
  6405. max-width: 100% !important;
  6406. }
  6407. .mh-100 {
  6408. max-height: 100% !important;
  6409. }
  6410. .m-0 {
  6411. margin: 0 !important;
  6412. }
  6413. .mt-0,
  6414. .my-0 {
  6415. margin-top: 0 !important;
  6416. }
  6417. .mr-0,
  6418. .mx-0 {
  6419. margin-right: 0 !important;
  6420. }
  6421. .mb-0,
  6422. .my-0 {
  6423. margin-bottom: 0 !important;
  6424. }
  6425. .ml-0,
  6426. .mx-0 {
  6427. margin-left: 0 !important;
  6428. }
  6429. .m-1 {
  6430. margin: 0.25rem !important;
  6431. }
  6432. .mt-1,
  6433. .my-1 {
  6434. margin-top: 0.25rem !important;
  6435. }
  6436. .mr-1,
  6437. .mx-1 {
  6438. margin-right: 0.25rem !important;
  6439. }
  6440. .mb-1,
  6441. .my-1 {
  6442. margin-bottom: 0.25rem !important;
  6443. }
  6444. .ml-1,
  6445. .mx-1 {
  6446. margin-left: 0.25rem !important;
  6447. }
  6448. .m-2 {
  6449. margin: 0.5rem !important;
  6450. }
  6451. .mt-2,
  6452. .my-2 {
  6453. margin-top: 0.5rem !important;
  6454. }
  6455. .mr-2,
  6456. .mx-2 {
  6457. margin-right: 0.5rem !important;
  6458. }
  6459. .mb-2,
  6460. .my-2 {
  6461. margin-bottom: 0.5rem !important;
  6462. }
  6463. .ml-2,
  6464. .mx-2 {
  6465. margin-left: 0.5rem !important;
  6466. }
  6467. .m-3 {
  6468. margin: 1rem !important;
  6469. }
  6470. .mt-3,
  6471. .my-3 {
  6472. margin-top: 1rem !important;
  6473. }
  6474. .mr-3,
  6475. .mx-3 {
  6476. margin-right: 1rem !important;
  6477. }
  6478. .mb-3,
  6479. .my-3 {
  6480. margin-bottom: 1rem !important;
  6481. }
  6482. .ml-3,
  6483. .mx-3 {
  6484. margin-left: 1rem !important;
  6485. }
  6486. .m-4 {
  6487. margin: 1.5rem !important;
  6488. }
  6489. .mt-4,
  6490. .my-4 {
  6491. margin-top: 1.5rem !important;
  6492. }
  6493. .mr-4,
  6494. .mx-4 {
  6495. margin-right: 1.5rem !important;
  6496. }
  6497. .mb-4,
  6498. .my-4 {
  6499. margin-bottom: 1.5rem !important;
  6500. }
  6501. .ml-4,
  6502. .mx-4 {
  6503. margin-left: 1.5rem !important;
  6504. }
  6505. .m-5 {
  6506. margin: 3rem !important;
  6507. }
  6508. .mt-5,
  6509. .my-5 {
  6510. margin-top: 3rem !important;
  6511. }
  6512. .mr-5,
  6513. .mx-5 {
  6514. margin-right: 3rem !important;
  6515. }
  6516. .mb-5,
  6517. .my-5 {
  6518. margin-bottom: 3rem !important;
  6519. }
  6520. .ml-5,
  6521. .mx-5 {
  6522. margin-left: 3rem !important;
  6523. }
  6524. .p-0 {
  6525. padding: 0 !important;
  6526. }
  6527. .pt-0,
  6528. .py-0 {
  6529. padding-top: 0 !important;
  6530. }
  6531. .pr-0,
  6532. .px-0 {
  6533. padding-right: 0 !important;
  6534. }
  6535. .pb-0,
  6536. .py-0 {
  6537. padding-bottom: 0 !important;
  6538. }
  6539. .pl-0,
  6540. .px-0 {
  6541. padding-left: 0 !important;
  6542. }
  6543. .p-1 {
  6544. padding: 0.25rem !important;
  6545. }
  6546. .pt-1,
  6547. .py-1 {
  6548. padding-top: 0.25rem !important;
  6549. }
  6550. .pr-1,
  6551. .px-1 {
  6552. padding-right: 0.25rem !important;
  6553. }
  6554. .pb-1,
  6555. .py-1 {
  6556. padding-bottom: 0.25rem !important;
  6557. }
  6558. .pl-1,
  6559. .px-1 {
  6560. padding-left: 0.25rem !important;
  6561. }
  6562. .p-2 {
  6563. padding: 0.5rem !important;
  6564. }
  6565. .pt-2,
  6566. .py-2 {
  6567. padding-top: 0.5rem !important;
  6568. }
  6569. .pr-2,
  6570. .px-2 {
  6571. padding-right: 0.5rem !important;
  6572. }
  6573. .pb-2,
  6574. .py-2 {
  6575. padding-bottom: 0.5rem !important;
  6576. }
  6577. .pl-2,
  6578. .px-2 {
  6579. padding-left: 0.5rem !important;
  6580. }
  6581. .p-3 {
  6582. padding: 1rem !important;
  6583. }
  6584. .pt-3,
  6585. .py-3 {
  6586. padding-top: 1rem !important;
  6587. }
  6588. .pr-3,
  6589. .px-3 {
  6590. padding-right: 1rem !important;
  6591. }
  6592. .pb-3,
  6593. .py-3 {
  6594. padding-bottom: 1rem !important;
  6595. }
  6596. .pl-3,
  6597. .px-3 {
  6598. padding-left: 1rem !important;
  6599. }
  6600. .p-4 {
  6601. padding: 1.5rem !important;
  6602. }
  6603. .pt-4,
  6604. .py-4 {
  6605. padding-top: 1.5rem !important;
  6606. }
  6607. .pr-4,
  6608. .px-4 {
  6609. padding-right: 1.5rem !important;
  6610. }
  6611. .pb-4,
  6612. .py-4 {
  6613. padding-bottom: 1.5rem !important;
  6614. }
  6615. .pl-4,
  6616. .px-4 {
  6617. padding-left: 1.5rem !important;
  6618. }
  6619. .p-5 {
  6620. padding: 3rem !important;
  6621. }
  6622. .pt-5,
  6623. .py-5 {
  6624. padding-top: 3rem !important;
  6625. }
  6626. .pr-5,
  6627. .px-5 {
  6628. padding-right: 3rem !important;
  6629. }
  6630. .pb-5,
  6631. .py-5 {
  6632. padding-bottom: 3rem !important;
  6633. }
  6634. .pl-5,
  6635. .px-5 {
  6636. padding-left: 3rem !important;
  6637. }
  6638. .m-auto {
  6639. margin: auto !important;
  6640. }
  6641. .mt-auto,
  6642. .my-auto {
  6643. margin-top: auto !important;
  6644. }
  6645. .mr-auto,
  6646. .mx-auto {
  6647. margin-right: auto !important;
  6648. }
  6649. .mb-auto,
  6650. .my-auto {
  6651. margin-bottom: auto !important;
  6652. }
  6653. .ml-auto,
  6654. .mx-auto {
  6655. margin-left: auto !important;
  6656. }
  6657. @media (min-width: 576px) {
  6658. .m-sm-0 {
  6659. margin: 0 !important;
  6660. }
  6661. .mt-sm-0,
  6662. .my-sm-0 {
  6663. margin-top: 0 !important;
  6664. }
  6665. .mr-sm-0,
  6666. .mx-sm-0 {
  6667. margin-right: 0 !important;
  6668. }
  6669. .mb-sm-0,
  6670. .my-sm-0 {
  6671. margin-bottom: 0 !important;
  6672. }
  6673. .ml-sm-0,
  6674. .mx-sm-0 {
  6675. margin-left: 0 !important;
  6676. }
  6677. .m-sm-1 {
  6678. margin: 0.25rem !important;
  6679. }
  6680. .mt-sm-1,
  6681. .my-sm-1 {
  6682. margin-top: 0.25rem !important;
  6683. }
  6684. .mr-sm-1,
  6685. .mx-sm-1 {
  6686. margin-right: 0.25rem !important;
  6687. }
  6688. .mb-sm-1,
  6689. .my-sm-1 {
  6690. margin-bottom: 0.25rem !important;
  6691. }
  6692. .ml-sm-1,
  6693. .mx-sm-1 {
  6694. margin-left: 0.25rem !important;
  6695. }
  6696. .m-sm-2 {
  6697. margin: 0.5rem !important;
  6698. }
  6699. .mt-sm-2,
  6700. .my-sm-2 {
  6701. margin-top: 0.5rem !important;
  6702. }
  6703. .mr-sm-2,
  6704. .mx-sm-2 {
  6705. margin-right: 0.5rem !important;
  6706. }
  6707. .mb-sm-2,
  6708. .my-sm-2 {
  6709. margin-bottom: 0.5rem !important;
  6710. }
  6711. .ml-sm-2,
  6712. .mx-sm-2 {
  6713. margin-left: 0.5rem !important;
  6714. }
  6715. .m-sm-3 {
  6716. margin: 1rem !important;
  6717. }
  6718. .mt-sm-3,
  6719. .my-sm-3 {
  6720. margin-top: 1rem !important;
  6721. }
  6722. .mr-sm-3,
  6723. .mx-sm-3 {
  6724. margin-right: 1rem !important;
  6725. }
  6726. .mb-sm-3,
  6727. .my-sm-3 {
  6728. margin-bottom: 1rem !important;
  6729. }
  6730. .ml-sm-3,
  6731. .mx-sm-3 {
  6732. margin-left: 1rem !important;
  6733. }
  6734. .m-sm-4 {
  6735. margin: 1.5rem !important;
  6736. }
  6737. .mt-sm-4,
  6738. .my-sm-4 {
  6739. margin-top: 1.5rem !important;
  6740. }
  6741. .mr-sm-4,
  6742. .mx-sm-4 {
  6743. margin-right: 1.5rem !important;
  6744. }
  6745. .mb-sm-4,
  6746. .my-sm-4 {
  6747. margin-bottom: 1.5rem !important;
  6748. }
  6749. .ml-sm-4,
  6750. .mx-sm-4 {
  6751. margin-left: 1.5rem !important;
  6752. }
  6753. .m-sm-5 {
  6754. margin: 3rem !important;
  6755. }
  6756. .mt-sm-5,
  6757. .my-sm-5 {
  6758. margin-top: 3rem !important;
  6759. }
  6760. .mr-sm-5,
  6761. .mx-sm-5 {
  6762. margin-right: 3rem !important;
  6763. }
  6764. .mb-sm-5,
  6765. .my-sm-5 {
  6766. margin-bottom: 3rem !important;
  6767. }
  6768. .ml-sm-5,
  6769. .mx-sm-5 {
  6770. margin-left: 3rem !important;
  6771. }
  6772. .p-sm-0 {
  6773. padding: 0 !important;
  6774. }
  6775. .pt-sm-0,
  6776. .py-sm-0 {
  6777. padding-top: 0 !important;
  6778. }
  6779. .pr-sm-0,
  6780. .px-sm-0 {
  6781. padding-right: 0 !important;
  6782. }
  6783. .pb-sm-0,
  6784. .py-sm-0 {
  6785. padding-bottom: 0 !important;
  6786. }
  6787. .pl-sm-0,
  6788. .px-sm-0 {
  6789. padding-left: 0 !important;
  6790. }
  6791. .p-sm-1 {
  6792. padding: 0.25rem !important;
  6793. }
  6794. .pt-sm-1,
  6795. .py-sm-1 {
  6796. padding-top: 0.25rem !important;
  6797. }
  6798. .pr-sm-1,
  6799. .px-sm-1 {
  6800. padding-right: 0.25rem !important;
  6801. }
  6802. .pb-sm-1,
  6803. .py-sm-1 {
  6804. padding-bottom: 0.25rem !important;
  6805. }
  6806. .pl-sm-1,
  6807. .px-sm-1 {
  6808. padding-left: 0.25rem !important;
  6809. }
  6810. .p-sm-2 {
  6811. padding: 0.5rem !important;
  6812. }
  6813. .pt-sm-2,
  6814. .py-sm-2 {
  6815. padding-top: 0.5rem !important;
  6816. }
  6817. .pr-sm-2,
  6818. .px-sm-2 {
  6819. padding-right: 0.5rem !important;
  6820. }
  6821. .pb-sm-2,
  6822. .py-sm-2 {
  6823. padding-bottom: 0.5rem !important;
  6824. }
  6825. .pl-sm-2,
  6826. .px-sm-2 {
  6827. padding-left: 0.5rem !important;
  6828. }
  6829. .p-sm-3 {
  6830. padding: 1rem !important;
  6831. }
  6832. .pt-sm-3,
  6833. .py-sm-3 {
  6834. padding-top: 1rem !important;
  6835. }
  6836. .pr-sm-3,
  6837. .px-sm-3 {
  6838. padding-right: 1rem !important;
  6839. }
  6840. .pb-sm-3,
  6841. .py-sm-3 {
  6842. padding-bottom: 1rem !important;
  6843. }
  6844. .pl-sm-3,
  6845. .px-sm-3 {
  6846. padding-left: 1rem !important;
  6847. }
  6848. .p-sm-4 {
  6849. padding: 1.5rem !important;
  6850. }
  6851. .pt-sm-4,
  6852. .py-sm-4 {
  6853. padding-top: 1.5rem !important;
  6854. }
  6855. .pr-sm-4,
  6856. .px-sm-4 {
  6857. padding-right: 1.5rem !important;
  6858. }
  6859. .pb-sm-4,
  6860. .py-sm-4 {
  6861. padding-bottom: 1.5rem !important;
  6862. }
  6863. .pl-sm-4,
  6864. .px-sm-4 {
  6865. padding-left: 1.5rem !important;
  6866. }
  6867. .p-sm-5 {
  6868. padding: 3rem !important;
  6869. }
  6870. .pt-sm-5,
  6871. .py-sm-5 {
  6872. padding-top: 3rem !important;
  6873. }
  6874. .pr-sm-5,
  6875. .px-sm-5 {
  6876. padding-right: 3rem !important;
  6877. }
  6878. .pb-sm-5,
  6879. .py-sm-5 {
  6880. padding-bottom: 3rem !important;
  6881. }
  6882. .pl-sm-5,
  6883. .px-sm-5 {
  6884. padding-left: 3rem !important;
  6885. }
  6886. .m-sm-auto {
  6887. margin: auto !important;
  6888. }
  6889. .mt-sm-auto,
  6890. .my-sm-auto {
  6891. margin-top: auto !important;
  6892. }
  6893. .mr-sm-auto,
  6894. .mx-sm-auto {
  6895. margin-right: auto !important;
  6896. }
  6897. .mb-sm-auto,
  6898. .my-sm-auto {
  6899. margin-bottom: auto !important;
  6900. }
  6901. .ml-sm-auto,
  6902. .mx-sm-auto {
  6903. margin-left: auto !important;
  6904. }
  6905. }
  6906. @media (min-width: 768px) {
  6907. .m-md-0 {
  6908. margin: 0 !important;
  6909. }
  6910. .mt-md-0,
  6911. .my-md-0 {
  6912. margin-top: 0 !important;
  6913. }
  6914. .mr-md-0,
  6915. .mx-md-0 {
  6916. margin-right: 0 !important;
  6917. }
  6918. .mb-md-0,
  6919. .my-md-0 {
  6920. margin-bottom: 0 !important;
  6921. }
  6922. .ml-md-0,
  6923. .mx-md-0 {
  6924. margin-left: 0 !important;
  6925. }
  6926. .m-md-1 {
  6927. margin: 0.25rem !important;
  6928. }
  6929. .mt-md-1,
  6930. .my-md-1 {
  6931. margin-top: 0.25rem !important;
  6932. }
  6933. .mr-md-1,
  6934. .mx-md-1 {
  6935. margin-right: 0.25rem !important;
  6936. }
  6937. .mb-md-1,
  6938. .my-md-1 {
  6939. margin-bottom: 0.25rem !important;
  6940. }
  6941. .ml-md-1,
  6942. .mx-md-1 {
  6943. margin-left: 0.25rem !important;
  6944. }
  6945. .m-md-2 {
  6946. margin: 0.5rem !important;
  6947. }
  6948. .mt-md-2,
  6949. .my-md-2 {
  6950. margin-top: 0.5rem !important;
  6951. }
  6952. .mr-md-2,
  6953. .mx-md-2 {
  6954. margin-right: 0.5rem !important;
  6955. }
  6956. .mb-md-2,
  6957. .my-md-2 {
  6958. margin-bottom: 0.5rem !important;
  6959. }
  6960. .ml-md-2,
  6961. .mx-md-2 {
  6962. margin-left: 0.5rem !important;
  6963. }
  6964. .m-md-3 {
  6965. margin: 1rem !important;
  6966. }
  6967. .mt-md-3,
  6968. .my-md-3 {
  6969. margin-top: 1rem !important;
  6970. }
  6971. .mr-md-3,
  6972. .mx-md-3 {
  6973. margin-right: 1rem !important;
  6974. }
  6975. .mb-md-3,
  6976. .my-md-3 {
  6977. margin-bottom: 1rem !important;
  6978. }
  6979. .ml-md-3,
  6980. .mx-md-3 {
  6981. margin-left: 1rem !important;
  6982. }
  6983. .m-md-4 {
  6984. margin: 1.5rem !important;
  6985. }
  6986. .mt-md-4,
  6987. .my-md-4 {
  6988. margin-top: 1.5rem !important;
  6989. }
  6990. .mr-md-4,
  6991. .mx-md-4 {
  6992. margin-right: 1.5rem !important;
  6993. }
  6994. .mb-md-4,
  6995. .my-md-4 {
  6996. margin-bottom: 1.5rem !important;
  6997. }
  6998. .ml-md-4,
  6999. .mx-md-4 {
  7000. margin-left: 1.5rem !important;
  7001. }
  7002. .m-md-5 {
  7003. margin: 3rem !important;
  7004. }
  7005. .mt-md-5,
  7006. .my-md-5 {
  7007. margin-top: 3rem !important;
  7008. }
  7009. .mr-md-5,
  7010. .mx-md-5 {
  7011. margin-right: 3rem !important;
  7012. }
  7013. .mb-md-5,
  7014. .my-md-5 {
  7015. margin-bottom: 3rem !important;
  7016. }
  7017. .ml-md-5,
  7018. .mx-md-5 {
  7019. margin-left: 3rem !important;
  7020. }
  7021. .p-md-0 {
  7022. padding: 0 !important;
  7023. }
  7024. .pt-md-0,
  7025. .py-md-0 {
  7026. padding-top: 0 !important;
  7027. }
  7028. .pr-md-0,
  7029. .px-md-0 {
  7030. padding-right: 0 !important;
  7031. }
  7032. .pb-md-0,
  7033. .py-md-0 {
  7034. padding-bottom: 0 !important;
  7035. }
  7036. .pl-md-0,
  7037. .px-md-0 {
  7038. padding-left: 0 !important;
  7039. }
  7040. .p-md-1 {
  7041. padding: 0.25rem !important;
  7042. }
  7043. .pt-md-1,
  7044. .py-md-1 {
  7045. padding-top: 0.25rem !important;
  7046. }
  7047. .pr-md-1,
  7048. .px-md-1 {
  7049. padding-right: 0.25rem !important;
  7050. }
  7051. .pb-md-1,
  7052. .py-md-1 {
  7053. padding-bottom: 0.25rem !important;
  7054. }
  7055. .pl-md-1,
  7056. .px-md-1 {
  7057. padding-left: 0.25rem !important;
  7058. }
  7059. .p-md-2 {
  7060. padding: 0.5rem !important;
  7061. }
  7062. .pt-md-2,
  7063. .py-md-2 {
  7064. padding-top: 0.5rem !important;
  7065. }
  7066. .pr-md-2,
  7067. .px-md-2 {
  7068. padding-right: 0.5rem !important;
  7069. }
  7070. .pb-md-2,
  7071. .py-md-2 {
  7072. padding-bottom: 0.5rem !important;
  7073. }
  7074. .pl-md-2,
  7075. .px-md-2 {
  7076. padding-left: 0.5rem !important;
  7077. }
  7078. .p-md-3 {
  7079. padding: 1rem !important;
  7080. }
  7081. .pt-md-3,
  7082. .py-md-3 {
  7083. padding-top: 1rem !important;
  7084. }
  7085. .pr-md-3,
  7086. .px-md-3 {
  7087. padding-right: 1rem !important;
  7088. }
  7089. .pb-md-3,
  7090. .py-md-3 {
  7091. padding-bottom: 1rem !important;
  7092. }
  7093. .pl-md-3,
  7094. .px-md-3 {
  7095. padding-left: 1rem !important;
  7096. }
  7097. .p-md-4 {
  7098. padding: 1.5rem !important;
  7099. }
  7100. .pt-md-4,
  7101. .py-md-4 {
  7102. padding-top: 1.5rem !important;
  7103. }
  7104. .pr-md-4,
  7105. .px-md-4 {
  7106. padding-right: 1.5rem !important;
  7107. }
  7108. .pb-md-4,
  7109. .py-md-4 {
  7110. padding-bottom: 1.5rem !important;
  7111. }
  7112. .pl-md-4,
  7113. .px-md-4 {
  7114. padding-left: 1.5rem !important;
  7115. }
  7116. .p-md-5 {
  7117. padding: 3rem !important;
  7118. }
  7119. .pt-md-5,
  7120. .py-md-5 {
  7121. padding-top: 3rem !important;
  7122. }
  7123. .pr-md-5,
  7124. .px-md-5 {
  7125. padding-right: 3rem !important;
  7126. }
  7127. .pb-md-5,
  7128. .py-md-5 {
  7129. padding-bottom: 3rem !important;
  7130. }
  7131. .pl-md-5,
  7132. .px-md-5 {
  7133. padding-left: 3rem !important;
  7134. }
  7135. .m-md-auto {
  7136. margin: auto !important;
  7137. }
  7138. .mt-md-auto,
  7139. .my-md-auto {
  7140. margin-top: auto !important;
  7141. }
  7142. .mr-md-auto,
  7143. .mx-md-auto {
  7144. margin-right: auto !important;
  7145. }
  7146. .mb-md-auto,
  7147. .my-md-auto {
  7148. margin-bottom: auto !important;
  7149. }
  7150. .ml-md-auto,
  7151. .mx-md-auto {
  7152. margin-left: auto !important;
  7153. }
  7154. }
  7155. @media (min-width: 992px) {
  7156. .m-lg-0 {
  7157. margin: 0 !important;
  7158. }
  7159. .mt-lg-0,
  7160. .my-lg-0 {
  7161. margin-top: 0 !important;
  7162. }
  7163. .mr-lg-0,
  7164. .mx-lg-0 {
  7165. margin-right: 0 !important;
  7166. }
  7167. .mb-lg-0,
  7168. .my-lg-0 {
  7169. margin-bottom: 0 !important;
  7170. }
  7171. .ml-lg-0,
  7172. .mx-lg-0 {
  7173. margin-left: 0 !important;
  7174. }
  7175. .m-lg-1 {
  7176. margin: 0.25rem !important;
  7177. }
  7178. .mt-lg-1,
  7179. .my-lg-1 {
  7180. margin-top: 0.25rem !important;
  7181. }
  7182. .mr-lg-1,
  7183. .mx-lg-1 {
  7184. margin-right: 0.25rem !important;
  7185. }
  7186. .mb-lg-1,
  7187. .my-lg-1 {
  7188. margin-bottom: 0.25rem !important;
  7189. }
  7190. .ml-lg-1,
  7191. .mx-lg-1 {
  7192. margin-left: 0.25rem !important;
  7193. }
  7194. .m-lg-2 {
  7195. margin: 0.5rem !important;
  7196. }
  7197. .mt-lg-2,
  7198. .my-lg-2 {
  7199. margin-top: 0.5rem !important;
  7200. }
  7201. .mr-lg-2,
  7202. .mx-lg-2 {
  7203. margin-right: 0.5rem !important;
  7204. }
  7205. .mb-lg-2,
  7206. .my-lg-2 {
  7207. margin-bottom: 0.5rem !important;
  7208. }
  7209. .ml-lg-2,
  7210. .mx-lg-2 {
  7211. margin-left: 0.5rem !important;
  7212. }
  7213. .m-lg-3 {
  7214. margin: 1rem !important;
  7215. }
  7216. .mt-lg-3,
  7217. .my-lg-3 {
  7218. margin-top: 1rem !important;
  7219. }
  7220. .mr-lg-3,
  7221. .mx-lg-3 {
  7222. margin-right: 1rem !important;
  7223. }
  7224. .mb-lg-3,
  7225. .my-lg-3 {
  7226. margin-bottom: 1rem !important;
  7227. }
  7228. .ml-lg-3,
  7229. .mx-lg-3 {
  7230. margin-left: 1rem !important;
  7231. }
  7232. .m-lg-4 {
  7233. margin: 1.5rem !important;
  7234. }
  7235. .mt-lg-4,
  7236. .my-lg-4 {
  7237. margin-top: 1.5rem !important;
  7238. }
  7239. .mr-lg-4,
  7240. .mx-lg-4 {
  7241. margin-right: 1.5rem !important;
  7242. }
  7243. .mb-lg-4,
  7244. .my-lg-4 {
  7245. margin-bottom: 1.5rem !important;
  7246. }
  7247. .ml-lg-4,
  7248. .mx-lg-4 {
  7249. margin-left: 1.5rem !important;
  7250. }
  7251. .m-lg-5 {
  7252. margin: 3rem !important;
  7253. }
  7254. .mt-lg-5,
  7255. .my-lg-5 {
  7256. margin-top: 3rem !important;
  7257. }
  7258. .mr-lg-5,
  7259. .mx-lg-5 {
  7260. margin-right: 3rem !important;
  7261. }
  7262. .mb-lg-5,
  7263. .my-lg-5 {
  7264. margin-bottom: 3rem !important;
  7265. }
  7266. .ml-lg-5,
  7267. .mx-lg-5 {
  7268. margin-left: 3rem !important;
  7269. }
  7270. .p-lg-0 {
  7271. padding: 0 !important;
  7272. }
  7273. .pt-lg-0,
  7274. .py-lg-0 {
  7275. padding-top: 0 !important;
  7276. }
  7277. .pr-lg-0,
  7278. .px-lg-0 {
  7279. padding-right: 0 !important;
  7280. }
  7281. .pb-lg-0,
  7282. .py-lg-0 {
  7283. padding-bottom: 0 !important;
  7284. }
  7285. .pl-lg-0,
  7286. .px-lg-0 {
  7287. padding-left: 0 !important;
  7288. }
  7289. .p-lg-1 {
  7290. padding: 0.25rem !important;
  7291. }
  7292. .pt-lg-1,
  7293. .py-lg-1 {
  7294. padding-top: 0.25rem !important;
  7295. }
  7296. .pr-lg-1,
  7297. .px-lg-1 {
  7298. padding-right: 0.25rem !important;
  7299. }
  7300. .pb-lg-1,
  7301. .py-lg-1 {
  7302. padding-bottom: 0.25rem !important;
  7303. }
  7304. .pl-lg-1,
  7305. .px-lg-1 {
  7306. padding-left: 0.25rem !important;
  7307. }
  7308. .p-lg-2 {
  7309. padding: 0.5rem !important;
  7310. }
  7311. .pt-lg-2,
  7312. .py-lg-2 {
  7313. padding-top: 0.5rem !important;
  7314. }
  7315. .pr-lg-2,
  7316. .px-lg-2 {
  7317. padding-right: 0.5rem !important;
  7318. }
  7319. .pb-lg-2,
  7320. .py-lg-2 {
  7321. padding-bottom: 0.5rem !important;
  7322. }
  7323. .pl-lg-2,
  7324. .px-lg-2 {
  7325. padding-left: 0.5rem !important;
  7326. }
  7327. .p-lg-3 {
  7328. padding: 1rem !important;
  7329. }
  7330. .pt-lg-3,
  7331. .py-lg-3 {
  7332. padding-top: 1rem !important;
  7333. }
  7334. .pr-lg-3,
  7335. .px-lg-3 {
  7336. padding-right: 1rem !important;
  7337. }
  7338. .pb-lg-3,
  7339. .py-lg-3 {
  7340. padding-bottom: 1rem !important;
  7341. }
  7342. .pl-lg-3,
  7343. .px-lg-3 {
  7344. padding-left: 1rem !important;
  7345. }
  7346. .p-lg-4 {
  7347. padding: 1.5rem !important;
  7348. }
  7349. .pt-lg-4,
  7350. .py-lg-4 {
  7351. padding-top: 1.5rem !important;
  7352. }
  7353. .pr-lg-4,
  7354. .px-lg-4 {
  7355. padding-right: 1.5rem !important;
  7356. }
  7357. .pb-lg-4,
  7358. .py-lg-4 {
  7359. padding-bottom: 1.5rem !important;
  7360. }
  7361. .pl-lg-4,
  7362. .px-lg-4 {
  7363. padding-left: 1.5rem !important;
  7364. }
  7365. .p-lg-5 {
  7366. padding: 3rem !important;
  7367. }
  7368. .pt-lg-5,
  7369. .py-lg-5 {
  7370. padding-top: 3rem !important;
  7371. }
  7372. .pr-lg-5,
  7373. .px-lg-5 {
  7374. padding-right: 3rem !important;
  7375. }
  7376. .pb-lg-5,
  7377. .py-lg-5 {
  7378. padding-bottom: 3rem !important;
  7379. }
  7380. .pl-lg-5,
  7381. .px-lg-5 {
  7382. padding-left: 3rem !important;
  7383. }
  7384. .m-lg-auto {
  7385. margin: auto !important;
  7386. }
  7387. .mt-lg-auto,
  7388. .my-lg-auto {
  7389. margin-top: auto !important;
  7390. }
  7391. .mr-lg-auto,
  7392. .mx-lg-auto {
  7393. margin-right: auto !important;
  7394. }
  7395. .mb-lg-auto,
  7396. .my-lg-auto {
  7397. margin-bottom: auto !important;
  7398. }
  7399. .ml-lg-auto,
  7400. .mx-lg-auto {
  7401. margin-left: auto !important;
  7402. }
  7403. }
  7404. @media (min-width: 1200px) {
  7405. .m-xl-0 {
  7406. margin: 0 !important;
  7407. }
  7408. .mt-xl-0,
  7409. .my-xl-0 {
  7410. margin-top: 0 !important;
  7411. }
  7412. .mr-xl-0,
  7413. .mx-xl-0 {
  7414. margin-right: 0 !important;
  7415. }
  7416. .mb-xl-0,
  7417. .my-xl-0 {
  7418. margin-bottom: 0 !important;
  7419. }
  7420. .ml-xl-0,
  7421. .mx-xl-0 {
  7422. margin-left: 0 !important;
  7423. }
  7424. .m-xl-1 {
  7425. margin: 0.25rem !important;
  7426. }
  7427. .mt-xl-1,
  7428. .my-xl-1 {
  7429. margin-top: 0.25rem !important;
  7430. }
  7431. .mr-xl-1,
  7432. .mx-xl-1 {
  7433. margin-right: 0.25rem !important;
  7434. }
  7435. .mb-xl-1,
  7436. .my-xl-1 {
  7437. margin-bottom: 0.25rem !important;
  7438. }
  7439. .ml-xl-1,
  7440. .mx-xl-1 {
  7441. margin-left: 0.25rem !important;
  7442. }
  7443. .m-xl-2 {
  7444. margin: 0.5rem !important;
  7445. }
  7446. .mt-xl-2,
  7447. .my-xl-2 {
  7448. margin-top: 0.5rem !important;
  7449. }
  7450. .mr-xl-2,
  7451. .mx-xl-2 {
  7452. margin-right: 0.5rem !important;
  7453. }
  7454. .mb-xl-2,
  7455. .my-xl-2 {
  7456. margin-bottom: 0.5rem !important;
  7457. }
  7458. .ml-xl-2,
  7459. .mx-xl-2 {
  7460. margin-left: 0.5rem !important;
  7461. }
  7462. .m-xl-3 {
  7463. margin: 1rem !important;
  7464. }
  7465. .mt-xl-3,
  7466. .my-xl-3 {
  7467. margin-top: 1rem !important;
  7468. }
  7469. .mr-xl-3,
  7470. .mx-xl-3 {
  7471. margin-right: 1rem !important;
  7472. }
  7473. .mb-xl-3,
  7474. .my-xl-3 {
  7475. margin-bottom: 1rem !important;
  7476. }
  7477. .ml-xl-3,
  7478. .mx-xl-3 {
  7479. margin-left: 1rem !important;
  7480. }
  7481. .m-xl-4 {
  7482. margin: 1.5rem !important;
  7483. }
  7484. .mt-xl-4,
  7485. .my-xl-4 {
  7486. margin-top: 1.5rem !important;
  7487. }
  7488. .mr-xl-4,
  7489. .mx-xl-4 {
  7490. margin-right: 1.5rem !important;
  7491. }
  7492. .mb-xl-4,
  7493. .my-xl-4 {
  7494. margin-bottom: 1.5rem !important;
  7495. }
  7496. .ml-xl-4,
  7497. .mx-xl-4 {
  7498. margin-left: 1.5rem !important;
  7499. }
  7500. .m-xl-5 {
  7501. margin: 3rem !important;
  7502. }
  7503. .mt-xl-5,
  7504. .my-xl-5 {
  7505. margin-top: 3rem !important;
  7506. }
  7507. .mr-xl-5,
  7508. .mx-xl-5 {
  7509. margin-right: 3rem !important;
  7510. }
  7511. .mb-xl-5,
  7512. .my-xl-5 {
  7513. margin-bottom: 3rem !important;
  7514. }
  7515. .ml-xl-5,
  7516. .mx-xl-5 {
  7517. margin-left: 3rem !important;
  7518. }
  7519. .p-xl-0 {
  7520. padding: 0 !important;
  7521. }
  7522. .pt-xl-0,
  7523. .py-xl-0 {
  7524. padding-top: 0 !important;
  7525. }
  7526. .pr-xl-0,
  7527. .px-xl-0 {
  7528. padding-right: 0 !important;
  7529. }
  7530. .pb-xl-0,
  7531. .py-xl-0 {
  7532. padding-bottom: 0 !important;
  7533. }
  7534. .pl-xl-0,
  7535. .px-xl-0 {
  7536. padding-left: 0 !important;
  7537. }
  7538. .p-xl-1 {
  7539. padding: 0.25rem !important;
  7540. }
  7541. .pt-xl-1,
  7542. .py-xl-1 {
  7543. padding-top: 0.25rem !important;
  7544. }
  7545. .pr-xl-1,
  7546. .px-xl-1 {
  7547. padding-right: 0.25rem !important;
  7548. }
  7549. .pb-xl-1,
  7550. .py-xl-1 {
  7551. padding-bottom: 0.25rem !important;
  7552. }
  7553. .pl-xl-1,
  7554. .px-xl-1 {
  7555. padding-left: 0.25rem !important;
  7556. }
  7557. .p-xl-2 {
  7558. padding: 0.5rem !important;
  7559. }
  7560. .pt-xl-2,
  7561. .py-xl-2 {
  7562. padding-top: 0.5rem !important;
  7563. }
  7564. .pr-xl-2,
  7565. .px-xl-2 {
  7566. padding-right: 0.5rem !important;
  7567. }
  7568. .pb-xl-2,
  7569. .py-xl-2 {
  7570. padding-bottom: 0.5rem !important;
  7571. }
  7572. .pl-xl-2,
  7573. .px-xl-2 {
  7574. padding-left: 0.5rem !important;
  7575. }
  7576. .p-xl-3 {
  7577. padding: 1rem !important;
  7578. }
  7579. .pt-xl-3,
  7580. .py-xl-3 {
  7581. padding-top: 1rem !important;
  7582. }
  7583. .pr-xl-3,
  7584. .px-xl-3 {
  7585. padding-right: 1rem !important;
  7586. }
  7587. .pb-xl-3,
  7588. .py-xl-3 {
  7589. padding-bottom: 1rem !important;
  7590. }
  7591. .pl-xl-3,
  7592. .px-xl-3 {
  7593. padding-left: 1rem !important;
  7594. }
  7595. .p-xl-4 {
  7596. padding: 1.5rem !important;
  7597. }
  7598. .pt-xl-4,
  7599. .py-xl-4 {
  7600. padding-top: 1.5rem !important;
  7601. }
  7602. .pr-xl-4,
  7603. .px-xl-4 {
  7604. padding-right: 1.5rem !important;
  7605. }
  7606. .pb-xl-4,
  7607. .py-xl-4 {
  7608. padding-bottom: 1.5rem !important;
  7609. }
  7610. .pl-xl-4,
  7611. .px-xl-4 {
  7612. padding-left: 1.5rem !important;
  7613. }
  7614. .p-xl-5 {
  7615. padding: 3rem !important;
  7616. }
  7617. .pt-xl-5,
  7618. .py-xl-5 {
  7619. padding-top: 3rem !important;
  7620. }
  7621. .pr-xl-5,
  7622. .px-xl-5 {
  7623. padding-right: 3rem !important;
  7624. }
  7625. .pb-xl-5,
  7626. .py-xl-5 {
  7627. padding-bottom: 3rem !important;
  7628. }
  7629. .pl-xl-5,
  7630. .px-xl-5 {
  7631. padding-left: 3rem !important;
  7632. }
  7633. .m-xl-auto {
  7634. margin: auto !important;
  7635. }
  7636. .mt-xl-auto,
  7637. .my-xl-auto {
  7638. margin-top: auto !important;
  7639. }
  7640. .mr-xl-auto,
  7641. .mx-xl-auto {
  7642. margin-right: auto !important;
  7643. }
  7644. .mb-xl-auto,
  7645. .my-xl-auto {
  7646. margin-bottom: auto !important;
  7647. }
  7648. .ml-xl-auto,
  7649. .mx-xl-auto {
  7650. margin-left: auto !important;
  7651. }
  7652. }
  7653. .text-monospace {
  7654. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  7655. }
  7656. .text-justify {
  7657. text-align: justify !important;
  7658. }
  7659. .text-nowrap {
  7660. white-space: nowrap !important;
  7661. }
  7662. .text-truncate {
  7663. overflow: hidden;
  7664. text-overflow: ellipsis;
  7665. white-space: nowrap;
  7666. }
  7667. .text-left {
  7668. text-align: left !important;
  7669. }
  7670. .text-right {
  7671. text-align: right !important;
  7672. }
  7673. .text-center {
  7674. text-align: center !important;
  7675. }
  7676. @media (min-width: 576px) {
  7677. .text-sm-left {
  7678. text-align: left !important;
  7679. }
  7680. .text-sm-right {
  7681. text-align: right !important;
  7682. }
  7683. .text-sm-center {
  7684. text-align: center !important;
  7685. }
  7686. }
  7687. @media (min-width: 768px) {
  7688. .text-md-left {
  7689. text-align: left !important;
  7690. }
  7691. .text-md-right {
  7692. text-align: right !important;
  7693. }
  7694. .text-md-center {
  7695. text-align: center !important;
  7696. }
  7697. }
  7698. @media (min-width: 992px) {
  7699. .text-lg-left {
  7700. text-align: left !important;
  7701. }
  7702. .text-lg-right {
  7703. text-align: right !important;
  7704. }
  7705. .text-lg-center {
  7706. text-align: center !important;
  7707. }
  7708. }
  7709. @media (min-width: 1200px) {
  7710. .text-xl-left {
  7711. text-align: left !important;
  7712. }
  7713. .text-xl-right {
  7714. text-align: right !important;
  7715. }
  7716. .text-xl-center {
  7717. text-align: center !important;
  7718. }
  7719. }
  7720. .text-lowercase {
  7721. text-transform: lowercase !important;
  7722. }
  7723. .text-uppercase {
  7724. text-transform: uppercase !important;
  7725. }
  7726. .text-capitalize {
  7727. text-transform: capitalize !important;
  7728. }
  7729. .font-weight-light {
  7730. font-weight: 300 !important;
  7731. }
  7732. .font-weight-normal {
  7733. font-weight: 400 !important;
  7734. }
  7735. .font-weight-bold {
  7736. font-weight: 700 !important;
  7737. }
  7738. .font-italic {
  7739. font-style: italic !important;
  7740. }
  7741. .text-white {
  7742. color: #fff !important;
  7743. }
  7744. .text-primary {
  7745. color: #007bff !important;
  7746. }
  7747. a.text-primary:hover, a.text-primary:focus {
  7748. color: #0062cc !important;
  7749. }
  7750. .text-secondary {
  7751. color: #6c757d !important;
  7752. }
  7753. a.text-secondary:hover, a.text-secondary:focus {
  7754. color: #545b62 !important;
  7755. }
  7756. .text-success {
  7757. color: #28a745 !important;
  7758. }
  7759. a.text-success:hover, a.text-success:focus {
  7760. color: #1e7e34 !important;
  7761. }
  7762. .text-info {
  7763. color: #17a2b8 !important;
  7764. }
  7765. a.text-info:hover, a.text-info:focus {
  7766. color: #117a8b !important;
  7767. }
  7768. .text-warning {
  7769. color: #ffc107 !important;
  7770. }
  7771. a.text-warning:hover, a.text-warning:focus {
  7772. color: #d39e00 !important;
  7773. }
  7774. .text-danger {
  7775. color: #dc3545 !important;
  7776. }
  7777. a.text-danger:hover, a.text-danger:focus {
  7778. color: #bd2130 !important;
  7779. }
  7780. .text-light {
  7781. color: #f8f9fa !important;
  7782. }
  7783. a.text-light:hover, a.text-light:focus {
  7784. color: #dae0e5 !important;
  7785. }
  7786. .text-dark {
  7787. color: #343a40 !important;
  7788. }
  7789. a.text-dark:hover, a.text-dark:focus {
  7790. color: #1d2124 !important;
  7791. }
  7792. .text-body {
  7793. color: #212529 !important;
  7794. }
  7795. .text-muted {
  7796. color: #6c757d !important;
  7797. }
  7798. .text-black-50 {
  7799. color: rgba(0, 0, 0, 0.5) !important;
  7800. }
  7801. .text-white-50 {
  7802. color: rgba(255, 255, 255, 0.5) !important;
  7803. }
  7804. .text-hide {
  7805. font: 0/0 a;
  7806. color: transparent;
  7807. text-shadow: none;
  7808. background-color: transparent;
  7809. border: 0;
  7810. }
  7811. .visible {
  7812. visibility: visible !important;
  7813. }
  7814. .invisible {
  7815. visibility: hidden !important;
  7816. }
  7817. @media print {
  7818. *,
  7819. *::before,
  7820. *::after {
  7821. text-shadow: none !important;
  7822. box-shadow: none !important;
  7823. }
  7824. a:not(.btn) {
  7825. text-decoration: underline;
  7826. }
  7827. abbr[title]::after {
  7828. content: " (" attr(title) ")";
  7829. }
  7830. pre {
  7831. white-space: pre-wrap !important;
  7832. }
  7833. pre,
  7834. blockquote {
  7835. border: 1px solid #adb5bd;
  7836. page-break-inside: avoid;
  7837. }
  7838. thead {
  7839. display: table-header-group;
  7840. }
  7841. tr,
  7842. img {
  7843. page-break-inside: avoid;
  7844. }
  7845. p,
  7846. h2,
  7847. h3 {
  7848. orphans: 3;
  7849. widows: 3;
  7850. }
  7851. h2,
  7852. h3 {
  7853. page-break-after: avoid;
  7854. }
  7855. @page {
  7856. size: a3;
  7857. }
  7858. body {
  7859. min-width: 992px !important;
  7860. }
  7861. .container {
  7862. min-width: 992px !important;
  7863. }
  7864. .navbar {
  7865. display: none;
  7866. }
  7867. .badge {
  7868. border: 1px solid #000;
  7869. }
  7870. .table {
  7871. border-collapse: collapse !important;
  7872. }
  7873. .table td,
  7874. .table th {
  7875. background-color: #fff !important;
  7876. }
  7877. .table-bordered th,
  7878. .table-bordered td {
  7879. border: 1px solid #dee2e6 !important;
  7880. }
  7881. .table-dark {
  7882. color: inherit;
  7883. }
  7884. .table-dark th,
  7885. .table-dark td,
  7886. .table-dark thead th,
  7887. .table-dark tbody + tbody {
  7888. border-color: #dee2e6;
  7889. }
  7890. .table .thead-dark th {
  7891. color: inherit;
  7892. border-color: #dee2e6;
  7893. }
  7894. }
  7895. /*# sourceMappingURL=bootstrap.css.map */