bootstrap.css 188 KB

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