bootstrap.css 185 KB

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