bootstrap.css 179 KB

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