bootstrap.css 195 KB

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