app.css 178 KB

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