bootstrap.css 188 KB

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