bootstrap.css 221 KB

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