app.css 179 KB

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