bootstrap.css 195 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297
  1. /*!
  2. * Bootstrap v4.6.0 (https://getbootstrap.com/)
  3. * Copyright 2011-2021 The Bootstrap Authors
  4. * Copyright 2011-2021 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  6. */
  7. :root {
  8. --blue: #007bff;
  9. --indigo: #6610f2;
  10. --purple: #6f42c1;
  11. --pink: #e83e8c;
  12. --red: #dc3545;
  13. --orange: #fd7e14;
  14. --yellow: #ffc107;
  15. --green: #28a745;
  16. --teal: #20c997;
  17. --cyan: #17a2b8;
  18. --white: #fff;
  19. --gray: #6c757d;
  20. --gray-dark: #343a40;
  21. --primary: #007bff;
  22. --secondary: #6c757d;
  23. --success: #28a745;
  24. --info: #17a2b8;
  25. --warning: #ffc107;
  26. --danger: #dc3545;
  27. --light: #f8f9fa;
  28. --dark: #343a40;
  29. --breakpoint-xs: 0;
  30. --breakpoint-sm: 576px;
  31. --breakpoint-md: 768px;
  32. --breakpoint-lg: 992px;
  33. --breakpoint-xl: 1200px;
  34. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  35. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  36. }
  37. *,
  38. *::before,
  39. *::after {
  40. 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:-moz-focusring {
  1819. color: transparent;
  1820. text-shadow: 0 0 0 #495057;
  1821. }
  1822. .form-control:focus {
  1823. color: #495057;
  1824. background-color: #fff;
  1825. border-color: #80bdff;
  1826. outline: 0;
  1827. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  1828. }
  1829. .form-control::-webkit-input-placeholder {
  1830. color: #6c757d;
  1831. opacity: 1;
  1832. }
  1833. .form-control::-moz-placeholder {
  1834. color: #6c757d;
  1835. opacity: 1;
  1836. }
  1837. .form-control:-ms-input-placeholder {
  1838. color: #6c757d;
  1839. opacity: 1;
  1840. }
  1841. .form-control::-ms-input-placeholder {
  1842. color: #6c757d;
  1843. opacity: 1;
  1844. }
  1845. .form-control::placeholder {
  1846. color: #6c757d;
  1847. opacity: 1;
  1848. }
  1849. .form-control:disabled, .form-control[readonly] {
  1850. background-color: #e9ecef;
  1851. opacity: 1;
  1852. }
  1853. input[type="date"].form-control,
  1854. input[type="time"].form-control,
  1855. input[type="datetime-local"].form-control,
  1856. input[type="month"].form-control {
  1857. -webkit-appearance: none;
  1858. -moz-appearance: none;
  1859. appearance: none;
  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);
  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 textarea.form-control:valid, textarea.form-control.is-valid {
  2021. padding-right: calc(1.5em + 0.75rem);
  2022. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2023. }
  2024. .was-validated .custom-select:valid, .custom-select.is-valid {
  2025. border-color: #28a745;
  2026. padding-right: calc(0.75em + 2.3125rem);
  2027. 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;
  2028. }
  2029. .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  2030. border-color: #28a745;
  2031. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2032. }
  2033. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2034. color: #28a745;
  2035. }
  2036. .was-validated .form-check-input:valid ~ .valid-feedback,
  2037. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  2038. .form-check-input.is-valid ~ .valid-tooltip {
  2039. display: block;
  2040. }
  2041. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  2042. color: #28a745;
  2043. }
  2044. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  2045. border-color: #28a745;
  2046. }
  2047. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  2048. border-color: #34ce57;
  2049. background-color: #34ce57;
  2050. }
  2051. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  2052. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2053. }
  2054. .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 {
  2055. border-color: #28a745;
  2056. }
  2057. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  2058. border-color: #28a745;
  2059. }
  2060. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  2061. border-color: #28a745;
  2062. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  2063. }
  2064. .invalid-feedback {
  2065. display: none;
  2066. width: 100%;
  2067. margin-top: 0.25rem;
  2068. font-size: 80%;
  2069. color: #dc3545;
  2070. }
  2071. .invalid-tooltip {
  2072. position: absolute;
  2073. top: 100%;
  2074. left: 0;
  2075. z-index: 5;
  2076. display: none;
  2077. max-width: 100%;
  2078. padding: 0.25rem 0.5rem;
  2079. margin-top: .1rem;
  2080. font-size: 0.875rem;
  2081. line-height: 1.5;
  2082. color: #fff;
  2083. background-color: rgba(220, 53, 69, 0.9);
  2084. border-radius: 0.25rem;
  2085. }
  2086. .form-row > .col > .invalid-tooltip,
  2087. .form-row > [class*="col-"] > .invalid-tooltip {
  2088. left: 5px;
  2089. }
  2090. .was-validated :invalid ~ .invalid-feedback,
  2091. .was-validated :invalid ~ .invalid-tooltip,
  2092. .is-invalid ~ .invalid-feedback,
  2093. .is-invalid ~ .invalid-tooltip {
  2094. display: block;
  2095. }
  2096. .was-validated .form-control:invalid, .form-control.is-invalid {
  2097. border-color: #dc3545;
  2098. padding-right: calc(1.5em + 0.75rem);
  2099. 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");
  2100. background-repeat: no-repeat;
  2101. background-position: right calc(0.375em + 0.1875rem) center;
  2102. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2103. }
  2104. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2105. border-color: #dc3545;
  2106. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2107. }
  2108. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2109. padding-right: calc(1.5em + 0.75rem);
  2110. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2111. }
  2112. .was-validated .custom-select:invalid, .custom-select.is-invalid {
  2113. border-color: #dc3545;
  2114. padding-right: calc(0.75em + 2.3125rem);
  2115. 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;
  2116. }
  2117. .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  2118. border-color: #dc3545;
  2119. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2120. }
  2121. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2122. color: #dc3545;
  2123. }
  2124. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  2125. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  2126. .form-check-input.is-invalid ~ .invalid-tooltip {
  2127. display: block;
  2128. }
  2129. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  2130. color: #dc3545;
  2131. }
  2132. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  2133. border-color: #dc3545;
  2134. }
  2135. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  2136. border-color: #e4606d;
  2137. background-color: #e4606d;
  2138. }
  2139. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2140. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2141. }
  2142. .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 {
  2143. border-color: #dc3545;
  2144. }
  2145. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  2146. border-color: #dc3545;
  2147. }
  2148. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2149. border-color: #dc3545;
  2150. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  2151. }
  2152. .form-inline {
  2153. display: -ms-flexbox;
  2154. display: flex;
  2155. -ms-flex-flow: row wrap;
  2156. flex-flow: row wrap;
  2157. -ms-flex-align: center;
  2158. align-items: center;
  2159. }
  2160. .form-inline .form-check {
  2161. width: 100%;
  2162. }
  2163. @media (min-width: 576px) {
  2164. .form-inline label {
  2165. display: -ms-flexbox;
  2166. display: flex;
  2167. -ms-flex-align: center;
  2168. align-items: center;
  2169. -ms-flex-pack: center;
  2170. justify-content: center;
  2171. margin-bottom: 0;
  2172. }
  2173. .form-inline .form-group {
  2174. display: -ms-flexbox;
  2175. display: flex;
  2176. -ms-flex: 0 0 auto;
  2177. flex: 0 0 auto;
  2178. -ms-flex-flow: row wrap;
  2179. flex-flow: row wrap;
  2180. -ms-flex-align: center;
  2181. align-items: center;
  2182. margin-bottom: 0;
  2183. }
  2184. .form-inline .form-control {
  2185. display: inline-block;
  2186. width: auto;
  2187. vertical-align: middle;
  2188. }
  2189. .form-inline .form-control-plaintext {
  2190. display: inline-block;
  2191. }
  2192. .form-inline .input-group,
  2193. .form-inline .custom-select {
  2194. width: auto;
  2195. }
  2196. .form-inline .form-check {
  2197. display: -ms-flexbox;
  2198. display: flex;
  2199. -ms-flex-align: center;
  2200. align-items: center;
  2201. -ms-flex-pack: center;
  2202. justify-content: center;
  2203. width: auto;
  2204. padding-left: 0;
  2205. }
  2206. .form-inline .form-check-input {
  2207. position: relative;
  2208. -ms-flex-negative: 0;
  2209. flex-shrink: 0;
  2210. margin-top: 0;
  2211. margin-right: 0.25rem;
  2212. margin-left: 0;
  2213. }
  2214. .form-inline .custom-control {
  2215. -ms-flex-align: center;
  2216. align-items: center;
  2217. -ms-flex-pack: center;
  2218. justify-content: center;
  2219. }
  2220. .form-inline .custom-control-label {
  2221. margin-bottom: 0;
  2222. }
  2223. }
  2224. .btn {
  2225. display: inline-block;
  2226. font-weight: 400;
  2227. color: #212529;
  2228. text-align: center;
  2229. vertical-align: middle;
  2230. -webkit-user-select: none;
  2231. -moz-user-select: none;
  2232. -ms-user-select: none;
  2233. user-select: none;
  2234. background-color: transparent;
  2235. border: 1px solid transparent;
  2236. padding: 0.375rem 0.75rem;
  2237. font-size: 1rem;
  2238. line-height: 1.5;
  2239. border-radius: 0.25rem;
  2240. 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;
  2241. }
  2242. @media (prefers-reduced-motion: reduce) {
  2243. .btn {
  2244. transition: none;
  2245. }
  2246. }
  2247. .btn:hover {
  2248. color: #212529;
  2249. text-decoration: none;
  2250. }
  2251. .btn:focus, .btn.focus {
  2252. outline: 0;
  2253. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  2254. }
  2255. .btn.disabled, .btn:disabled {
  2256. opacity: 0.65;
  2257. }
  2258. .btn:not(:disabled):not(.disabled) {
  2259. cursor: pointer;
  2260. }
  2261. a.btn.disabled,
  2262. fieldset:disabled a.btn {
  2263. pointer-events: none;
  2264. }
  2265. .btn-primary {
  2266. color: #fff;
  2267. background-color: #007bff;
  2268. border-color: #007bff;
  2269. }
  2270. .btn-primary:hover {
  2271. color: #fff;
  2272. background-color: #0069d9;
  2273. border-color: #0062cc;
  2274. }
  2275. .btn-primary:focus, .btn-primary.focus {
  2276. color: #fff;
  2277. background-color: #0069d9;
  2278. border-color: #0062cc;
  2279. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  2280. }
  2281. .btn-primary.disabled, .btn-primary:disabled {
  2282. color: #fff;
  2283. background-color: #007bff;
  2284. border-color: #007bff;
  2285. }
  2286. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  2287. .show > .btn-primary.dropdown-toggle {
  2288. color: #fff;
  2289. background-color: #0062cc;
  2290. border-color: #005cbf;
  2291. }
  2292. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  2293. .show > .btn-primary.dropdown-toggle:focus {
  2294. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
  2295. }
  2296. .btn-secondary {
  2297. color: #fff;
  2298. background-color: #6c757d;
  2299. border-color: #6c757d;
  2300. }
  2301. .btn-secondary:hover {
  2302. color: #fff;
  2303. background-color: #5a6268;
  2304. border-color: #545b62;
  2305. }
  2306. .btn-secondary:focus, .btn-secondary.focus {
  2307. color: #fff;
  2308. background-color: #5a6268;
  2309. border-color: #545b62;
  2310. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2311. }
  2312. .btn-secondary.disabled, .btn-secondary:disabled {
  2313. color: #fff;
  2314. background-color: #6c757d;
  2315. border-color: #6c757d;
  2316. }
  2317. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  2318. .show > .btn-secondary.dropdown-toggle {
  2319. color: #fff;
  2320. background-color: #545b62;
  2321. border-color: #4e555b;
  2322. }
  2323. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2324. .show > .btn-secondary.dropdown-toggle:focus {
  2325. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2326. }
  2327. .btn-success {
  2328. color: #fff;
  2329. background-color: #28a745;
  2330. border-color: #28a745;
  2331. }
  2332. .btn-success:hover {
  2333. color: #fff;
  2334. background-color: #218838;
  2335. border-color: #1e7e34;
  2336. }
  2337. .btn-success:focus, .btn-success.focus {
  2338. color: #fff;
  2339. background-color: #218838;
  2340. border-color: #1e7e34;
  2341. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  2342. }
  2343. .btn-success.disabled, .btn-success:disabled {
  2344. color: #fff;
  2345. background-color: #28a745;
  2346. border-color: #28a745;
  2347. }
  2348. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  2349. .show > .btn-success.dropdown-toggle {
  2350. color: #fff;
  2351. background-color: #1e7e34;
  2352. border-color: #1c7430;
  2353. }
  2354. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  2355. .show > .btn-success.dropdown-toggle:focus {
  2356. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  2357. }
  2358. .btn-info {
  2359. color: #fff;
  2360. background-color: #17a2b8;
  2361. border-color: #17a2b8;
  2362. }
  2363. .btn-info:hover {
  2364. color: #fff;
  2365. background-color: #138496;
  2366. border-color: #117a8b;
  2367. }
  2368. .btn-info:focus, .btn-info.focus {
  2369. color: #fff;
  2370. background-color: #138496;
  2371. border-color: #117a8b;
  2372. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  2373. }
  2374. .btn-info.disabled, .btn-info:disabled {
  2375. color: #fff;
  2376. background-color: #17a2b8;
  2377. border-color: #17a2b8;
  2378. }
  2379. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  2380. .show > .btn-info.dropdown-toggle {
  2381. color: #fff;
  2382. background-color: #117a8b;
  2383. border-color: #10707f;
  2384. }
  2385. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  2386. .show > .btn-info.dropdown-toggle:focus {
  2387. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  2388. }
  2389. .btn-warning {
  2390. color: #212529;
  2391. background-color: #ffc107;
  2392. border-color: #ffc107;
  2393. }
  2394. .btn-warning:hover {
  2395. color: #212529;
  2396. background-color: #e0a800;
  2397. border-color: #d39e00;
  2398. }
  2399. .btn-warning:focus, .btn-warning.focus {
  2400. color: #212529;
  2401. background-color: #e0a800;
  2402. border-color: #d39e00;
  2403. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  2404. }
  2405. .btn-warning.disabled, .btn-warning:disabled {
  2406. color: #212529;
  2407. background-color: #ffc107;
  2408. border-color: #ffc107;
  2409. }
  2410. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  2411. .show > .btn-warning.dropdown-toggle {
  2412. color: #212529;
  2413. background-color: #d39e00;
  2414. border-color: #c69500;
  2415. }
  2416. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  2417. .show > .btn-warning.dropdown-toggle:focus {
  2418. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  2419. }
  2420. .btn-danger {
  2421. color: #fff;
  2422. background-color: #dc3545;
  2423. border-color: #dc3545;
  2424. }
  2425. .btn-danger:hover {
  2426. color: #fff;
  2427. background-color: #c82333;
  2428. border-color: #bd2130;
  2429. }
  2430. .btn-danger:focus, .btn-danger.focus {
  2431. color: #fff;
  2432. background-color: #c82333;
  2433. border-color: #bd2130;
  2434. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  2435. }
  2436. .btn-danger.disabled, .btn-danger:disabled {
  2437. color: #fff;
  2438. background-color: #dc3545;
  2439. border-color: #dc3545;
  2440. }
  2441. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  2442. .show > .btn-danger.dropdown-toggle {
  2443. color: #fff;
  2444. background-color: #bd2130;
  2445. border-color: #b21f2d;
  2446. }
  2447. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  2448. .show > .btn-danger.dropdown-toggle:focus {
  2449. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  2450. }
  2451. .btn-light {
  2452. color: #212529;
  2453. background-color: #f8f9fa;
  2454. border-color: #f8f9fa;
  2455. }
  2456. .btn-light:hover {
  2457. color: #212529;
  2458. background-color: #e2e6ea;
  2459. border-color: #dae0e5;
  2460. }
  2461. .btn-light:focus, .btn-light.focus {
  2462. color: #212529;
  2463. background-color: #e2e6ea;
  2464. border-color: #dae0e5;
  2465. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2466. }
  2467. .btn-light.disabled, .btn-light:disabled {
  2468. color: #212529;
  2469. background-color: #f8f9fa;
  2470. border-color: #f8f9fa;
  2471. }
  2472. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  2473. .show > .btn-light.dropdown-toggle {
  2474. color: #212529;
  2475. background-color: #dae0e5;
  2476. border-color: #d3d9df;
  2477. }
  2478. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  2479. .show > .btn-light.dropdown-toggle:focus {
  2480. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2481. }
  2482. .btn-dark {
  2483. color: #fff;
  2484. background-color: #343a40;
  2485. border-color: #343a40;
  2486. }
  2487. .btn-dark:hover {
  2488. color: #fff;
  2489. background-color: #23272b;
  2490. border-color: #1d2124;
  2491. }
  2492. .btn-dark:focus, .btn-dark.focus {
  2493. color: #fff;
  2494. background-color: #23272b;
  2495. border-color: #1d2124;
  2496. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2497. }
  2498. .btn-dark.disabled, .btn-dark:disabled {
  2499. color: #fff;
  2500. background-color: #343a40;
  2501. border-color: #343a40;
  2502. }
  2503. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  2504. .show > .btn-dark.dropdown-toggle {
  2505. color: #fff;
  2506. background-color: #1d2124;
  2507. border-color: #171a1d;
  2508. }
  2509. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  2510. .show > .btn-dark.dropdown-toggle:focus {
  2511. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2512. }
  2513. .btn-outline-primary {
  2514. color: #007bff;
  2515. border-color: #007bff;
  2516. }
  2517. .btn-outline-primary:hover {
  2518. color: #fff;
  2519. background-color: #007bff;
  2520. border-color: #007bff;
  2521. }
  2522. .btn-outline-primary:focus, .btn-outline-primary.focus {
  2523. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2524. }
  2525. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  2526. color: #007bff;
  2527. background-color: transparent;
  2528. }
  2529. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  2530. .show > .btn-outline-primary.dropdown-toggle {
  2531. color: #fff;
  2532. background-color: #007bff;
  2533. border-color: #007bff;
  2534. }
  2535. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2536. .show > .btn-outline-primary.dropdown-toggle:focus {
  2537. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  2538. }
  2539. .btn-outline-secondary {
  2540. color: #6c757d;
  2541. border-color: #6c757d;
  2542. }
  2543. .btn-outline-secondary:hover {
  2544. color: #fff;
  2545. background-color: #6c757d;
  2546. border-color: #6c757d;
  2547. }
  2548. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  2549. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2550. }
  2551. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  2552. color: #6c757d;
  2553. background-color: transparent;
  2554. }
  2555. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2556. .show > .btn-outline-secondary.dropdown-toggle {
  2557. color: #fff;
  2558. background-color: #6c757d;
  2559. border-color: #6c757d;
  2560. }
  2561. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2562. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2563. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2564. }
  2565. .btn-outline-success {
  2566. color: #28a745;
  2567. border-color: #28a745;
  2568. }
  2569. .btn-outline-success:hover {
  2570. color: #fff;
  2571. background-color: #28a745;
  2572. border-color: #28a745;
  2573. }
  2574. .btn-outline-success:focus, .btn-outline-success.focus {
  2575. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2576. }
  2577. .btn-outline-success.disabled, .btn-outline-success:disabled {
  2578. color: #28a745;
  2579. background-color: transparent;
  2580. }
  2581. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  2582. .show > .btn-outline-success.dropdown-toggle {
  2583. color: #fff;
  2584. background-color: #28a745;
  2585. border-color: #28a745;
  2586. }
  2587. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2588. .show > .btn-outline-success.dropdown-toggle:focus {
  2589. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  2590. }
  2591. .btn-outline-info {
  2592. color: #17a2b8;
  2593. border-color: #17a2b8;
  2594. }
  2595. .btn-outline-info:hover {
  2596. color: #fff;
  2597. background-color: #17a2b8;
  2598. border-color: #17a2b8;
  2599. }
  2600. .btn-outline-info:focus, .btn-outline-info.focus {
  2601. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2602. }
  2603. .btn-outline-info.disabled, .btn-outline-info:disabled {
  2604. color: #17a2b8;
  2605. background-color: transparent;
  2606. }
  2607. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  2608. .show > .btn-outline-info.dropdown-toggle {
  2609. color: #fff;
  2610. background-color: #17a2b8;
  2611. border-color: #17a2b8;
  2612. }
  2613. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2614. .show > .btn-outline-info.dropdown-toggle:focus {
  2615. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  2616. }
  2617. .btn-outline-warning {
  2618. color: #ffc107;
  2619. border-color: #ffc107;
  2620. }
  2621. .btn-outline-warning:hover {
  2622. color: #212529;
  2623. background-color: #ffc107;
  2624. border-color: #ffc107;
  2625. }
  2626. .btn-outline-warning:focus, .btn-outline-warning.focus {
  2627. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2628. }
  2629. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  2630. color: #ffc107;
  2631. background-color: transparent;
  2632. }
  2633. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  2634. .show > .btn-outline-warning.dropdown-toggle {
  2635. color: #212529;
  2636. background-color: #ffc107;
  2637. border-color: #ffc107;
  2638. }
  2639. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2640. .show > .btn-outline-warning.dropdown-toggle:focus {
  2641. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  2642. }
  2643. .btn-outline-danger {
  2644. color: #dc3545;
  2645. border-color: #dc3545;
  2646. }
  2647. .btn-outline-danger:hover {
  2648. color: #fff;
  2649. background-color: #dc3545;
  2650. border-color: #dc3545;
  2651. }
  2652. .btn-outline-danger:focus, .btn-outline-danger.focus {
  2653. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2654. }
  2655. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  2656. color: #dc3545;
  2657. background-color: transparent;
  2658. }
  2659. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  2660. .show > .btn-outline-danger.dropdown-toggle {
  2661. color: #fff;
  2662. background-color: #dc3545;
  2663. border-color: #dc3545;
  2664. }
  2665. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2666. .show > .btn-outline-danger.dropdown-toggle:focus {
  2667. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  2668. }
  2669. .btn-outline-light {
  2670. color: #f8f9fa;
  2671. border-color: #f8f9fa;
  2672. }
  2673. .btn-outline-light:hover {
  2674. color: #212529;
  2675. background-color: #f8f9fa;
  2676. border-color: #f8f9fa;
  2677. }
  2678. .btn-outline-light:focus, .btn-outline-light.focus {
  2679. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2680. }
  2681. .btn-outline-light.disabled, .btn-outline-light:disabled {
  2682. color: #f8f9fa;
  2683. background-color: transparent;
  2684. }
  2685. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  2686. .show > .btn-outline-light.dropdown-toggle {
  2687. color: #212529;
  2688. background-color: #f8f9fa;
  2689. border-color: #f8f9fa;
  2690. }
  2691. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2692. .show > .btn-outline-light.dropdown-toggle:focus {
  2693. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2694. }
  2695. .btn-outline-dark {
  2696. color: #343a40;
  2697. border-color: #343a40;
  2698. }
  2699. .btn-outline-dark:hover {
  2700. color: #fff;
  2701. background-color: #343a40;
  2702. border-color: #343a40;
  2703. }
  2704. .btn-outline-dark:focus, .btn-outline-dark.focus {
  2705. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2706. }
  2707. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  2708. color: #343a40;
  2709. background-color: transparent;
  2710. }
  2711. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  2712. .show > .btn-outline-dark.dropdown-toggle {
  2713. color: #fff;
  2714. background-color: #343a40;
  2715. border-color: #343a40;
  2716. }
  2717. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2718. .show > .btn-outline-dark.dropdown-toggle:focus {
  2719. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2720. }
  2721. .btn-link {
  2722. font-weight: 400;
  2723. color: #007bff;
  2724. text-decoration: none;
  2725. }
  2726. .btn-link:hover {
  2727. color: #0056b3;
  2728. text-decoration: underline;
  2729. }
  2730. .btn-link:focus, .btn-link.focus {
  2731. text-decoration: underline;
  2732. }
  2733. .btn-link:disabled, .btn-link.disabled {
  2734. color: #6c757d;
  2735. pointer-events: none;
  2736. }
  2737. .btn-lg, .btn-group-lg > .btn {
  2738. padding: 0.5rem 1rem;
  2739. font-size: 1.25rem;
  2740. line-height: 1.5;
  2741. border-radius: 0.3rem;
  2742. }
  2743. .btn-sm, .btn-group-sm > .btn {
  2744. padding: 0.25rem 0.5rem;
  2745. font-size: 0.875rem;
  2746. line-height: 1.5;
  2747. border-radius: 0.2rem;
  2748. }
  2749. .btn-block {
  2750. display: block;
  2751. width: 100%;
  2752. }
  2753. .btn-block + .btn-block {
  2754. margin-top: 0.5rem;
  2755. }
  2756. input[type="submit"].btn-block,
  2757. input[type="reset"].btn-block,
  2758. input[type="button"].btn-block {
  2759. width: 100%;
  2760. }
  2761. .fade {
  2762. transition: opacity 0.15s linear;
  2763. }
  2764. @media (prefers-reduced-motion: reduce) {
  2765. .fade {
  2766. transition: none;
  2767. }
  2768. }
  2769. .fade:not(.show) {
  2770. opacity: 0;
  2771. }
  2772. .collapse:not(.show) {
  2773. display: none;
  2774. }
  2775. .collapsing {
  2776. position: relative;
  2777. height: 0;
  2778. overflow: hidden;
  2779. transition: height 0.35s ease;
  2780. }
  2781. @media (prefers-reduced-motion: reduce) {
  2782. .collapsing {
  2783. transition: none;
  2784. }
  2785. }
  2786. .dropup,
  2787. .dropright,
  2788. .dropdown,
  2789. .dropleft {
  2790. position: relative;
  2791. }
  2792. .dropdown-toggle {
  2793. white-space: nowrap;
  2794. }
  2795. .dropdown-toggle::after {
  2796. display: inline-block;
  2797. margin-left: 0.255em;
  2798. vertical-align: 0.255em;
  2799. content: "";
  2800. border-top: 0.3em solid;
  2801. border-right: 0.3em solid transparent;
  2802. border-bottom: 0;
  2803. border-left: 0.3em solid transparent;
  2804. }
  2805. .dropdown-toggle:empty::after {
  2806. margin-left: 0;
  2807. }
  2808. .dropdown-menu {
  2809. position: absolute;
  2810. top: 100%;
  2811. left: 0;
  2812. z-index: 1000;
  2813. display: none;
  2814. float: left;
  2815. min-width: 10rem;
  2816. padding: 0.5rem 0;
  2817. margin: 0.125rem 0 0;
  2818. font-size: 1rem;
  2819. color: #212529;
  2820. text-align: left;
  2821. list-style: none;
  2822. background-color: #fff;
  2823. background-clip: padding-box;
  2824. border: 1px solid rgba(0, 0, 0, 0.15);
  2825. border-radius: 0.25rem;
  2826. }
  2827. .dropdown-menu-left {
  2828. right: auto;
  2829. left: 0;
  2830. }
  2831. .dropdown-menu-right {
  2832. right: 0;
  2833. left: auto;
  2834. }
  2835. @media (min-width: 576px) {
  2836. .dropdown-menu-sm-left {
  2837. right: auto;
  2838. left: 0;
  2839. }
  2840. .dropdown-menu-sm-right {
  2841. right: 0;
  2842. left: auto;
  2843. }
  2844. }
  2845. @media (min-width: 768px) {
  2846. .dropdown-menu-md-left {
  2847. right: auto;
  2848. left: 0;
  2849. }
  2850. .dropdown-menu-md-right {
  2851. right: 0;
  2852. left: auto;
  2853. }
  2854. }
  2855. @media (min-width: 992px) {
  2856. .dropdown-menu-lg-left {
  2857. right: auto;
  2858. left: 0;
  2859. }
  2860. .dropdown-menu-lg-right {
  2861. right: 0;
  2862. left: auto;
  2863. }
  2864. }
  2865. @media (min-width: 1200px) {
  2866. .dropdown-menu-xl-left {
  2867. right: auto;
  2868. left: 0;
  2869. }
  2870. .dropdown-menu-xl-right {
  2871. right: 0;
  2872. left: auto;
  2873. }
  2874. }
  2875. .dropup .dropdown-menu {
  2876. top: auto;
  2877. bottom: 100%;
  2878. margin-top: 0;
  2879. margin-bottom: 0.125rem;
  2880. }
  2881. .dropup .dropdown-toggle::after {
  2882. display: inline-block;
  2883. margin-left: 0.255em;
  2884. vertical-align: 0.255em;
  2885. content: "";
  2886. border-top: 0;
  2887. border-right: 0.3em solid transparent;
  2888. border-bottom: 0.3em solid;
  2889. border-left: 0.3em solid transparent;
  2890. }
  2891. .dropup .dropdown-toggle:empty::after {
  2892. margin-left: 0;
  2893. }
  2894. .dropright .dropdown-menu {
  2895. top: 0;
  2896. right: auto;
  2897. left: 100%;
  2898. margin-top: 0;
  2899. margin-left: 0.125rem;
  2900. }
  2901. .dropright .dropdown-toggle::after {
  2902. display: inline-block;
  2903. margin-left: 0.255em;
  2904. vertical-align: 0.255em;
  2905. content: "";
  2906. border-top: 0.3em solid transparent;
  2907. border-right: 0;
  2908. border-bottom: 0.3em solid transparent;
  2909. border-left: 0.3em solid;
  2910. }
  2911. .dropright .dropdown-toggle:empty::after {
  2912. margin-left: 0;
  2913. }
  2914. .dropright .dropdown-toggle::after {
  2915. vertical-align: 0;
  2916. }
  2917. .dropleft .dropdown-menu {
  2918. top: 0;
  2919. right: 100%;
  2920. left: auto;
  2921. margin-top: 0;
  2922. margin-right: 0.125rem;
  2923. }
  2924. .dropleft .dropdown-toggle::after {
  2925. display: inline-block;
  2926. margin-left: 0.255em;
  2927. vertical-align: 0.255em;
  2928. content: "";
  2929. }
  2930. .dropleft .dropdown-toggle::after {
  2931. display: none;
  2932. }
  2933. .dropleft .dropdown-toggle::before {
  2934. display: inline-block;
  2935. margin-right: 0.255em;
  2936. vertical-align: 0.255em;
  2937. content: "";
  2938. border-top: 0.3em solid transparent;
  2939. border-right: 0.3em solid;
  2940. border-bottom: 0.3em solid transparent;
  2941. }
  2942. .dropleft .dropdown-toggle:empty::after {
  2943. margin-left: 0;
  2944. }
  2945. .dropleft .dropdown-toggle::before {
  2946. vertical-align: 0;
  2947. }
  2948. .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  2949. right: auto;
  2950. bottom: auto;
  2951. }
  2952. .dropdown-divider {
  2953. height: 0;
  2954. margin: 0.5rem 0;
  2955. overflow: hidden;
  2956. border-top: 1px solid #e9ecef;
  2957. }
  2958. .dropdown-item {
  2959. display: block;
  2960. width: 100%;
  2961. padding: 0.25rem 1.5rem;
  2962. clear: both;
  2963. font-weight: 400;
  2964. color: #212529;
  2965. text-align: inherit;
  2966. white-space: nowrap;
  2967. background-color: transparent;
  2968. border: 0;
  2969. }
  2970. .dropdown-item:hover, .dropdown-item:focus {
  2971. color: #16181b;
  2972. text-decoration: none;
  2973. background-color: #e9ecef;
  2974. }
  2975. .dropdown-item.active, .dropdown-item:active {
  2976. color: #fff;
  2977. text-decoration: none;
  2978. background-color: #007bff;
  2979. }
  2980. .dropdown-item.disabled, .dropdown-item:disabled {
  2981. color: #adb5bd;
  2982. pointer-events: none;
  2983. background-color: transparent;
  2984. }
  2985. .dropdown-menu.show {
  2986. display: block;
  2987. }
  2988. .dropdown-header {
  2989. display: block;
  2990. padding: 0.5rem 1.5rem;
  2991. margin-bottom: 0;
  2992. font-size: 0.875rem;
  2993. color: #6c757d;
  2994. white-space: nowrap;
  2995. }
  2996. .dropdown-item-text {
  2997. display: block;
  2998. padding: 0.25rem 1.5rem;
  2999. color: #212529;
  3000. }
  3001. .btn-group,
  3002. .btn-group-vertical {
  3003. position: relative;
  3004. display: -ms-inline-flexbox;
  3005. display: inline-flex;
  3006. vertical-align: middle;
  3007. }
  3008. .btn-group > .btn,
  3009. .btn-group-vertical > .btn {
  3010. position: relative;
  3011. -ms-flex: 1 1 auto;
  3012. flex: 1 1 auto;
  3013. }
  3014. .btn-group > .btn:hover,
  3015. .btn-group-vertical > .btn:hover {
  3016. z-index: 1;
  3017. }
  3018. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  3019. .btn-group-vertical > .btn:focus,
  3020. .btn-group-vertical > .btn:active,
  3021. .btn-group-vertical > .btn.active {
  3022. z-index: 1;
  3023. }
  3024. .btn-toolbar {
  3025. display: -ms-flexbox;
  3026. display: flex;
  3027. -ms-flex-wrap: wrap;
  3028. flex-wrap: wrap;
  3029. -ms-flex-pack: start;
  3030. justify-content: flex-start;
  3031. }
  3032. .btn-toolbar .input-group {
  3033. width: auto;
  3034. }
  3035. .btn-group > .btn:not(:first-child),
  3036. .btn-group > .btn-group:not(:first-child) {
  3037. margin-left: -1px;
  3038. }
  3039. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3040. .btn-group > .btn-group:not(:last-child) > .btn {
  3041. border-top-right-radius: 0;
  3042. border-bottom-right-radius: 0;
  3043. }
  3044. .btn-group > .btn:not(:first-child),
  3045. .btn-group > .btn-group:not(:first-child) > .btn {
  3046. border-top-left-radius: 0;
  3047. border-bottom-left-radius: 0;
  3048. }
  3049. .dropdown-toggle-split {
  3050. padding-right: 0.5625rem;
  3051. padding-left: 0.5625rem;
  3052. }
  3053. .dropdown-toggle-split::after,
  3054. .dropup .dropdown-toggle-split::after,
  3055. .dropright .dropdown-toggle-split::after {
  3056. margin-left: 0;
  3057. }
  3058. .dropleft .dropdown-toggle-split::before {
  3059. margin-right: 0;
  3060. }
  3061. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3062. padding-right: 0.375rem;
  3063. padding-left: 0.375rem;
  3064. }
  3065. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3066. padding-right: 0.75rem;
  3067. padding-left: 0.75rem;
  3068. }
  3069. .btn-group-vertical {
  3070. -ms-flex-direction: column;
  3071. flex-direction: column;
  3072. -ms-flex-align: start;
  3073. align-items: flex-start;
  3074. -ms-flex-pack: center;
  3075. justify-content: center;
  3076. }
  3077. .btn-group-vertical > .btn,
  3078. .btn-group-vertical > .btn-group {
  3079. width: 100%;
  3080. }
  3081. .btn-group-vertical > .btn:not(:first-child),
  3082. .btn-group-vertical > .btn-group:not(:first-child) {
  3083. margin-top: -1px;
  3084. }
  3085. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3086. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3087. border-bottom-right-radius: 0;
  3088. border-bottom-left-radius: 0;
  3089. }
  3090. .btn-group-vertical > .btn:not(:first-child),
  3091. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3092. border-top-left-radius: 0;
  3093. border-top-right-radius: 0;
  3094. }
  3095. .btn-group-toggle > .btn,
  3096. .btn-group-toggle > .btn-group > .btn {
  3097. margin-bottom: 0;
  3098. }
  3099. .btn-group-toggle > .btn input[type="radio"],
  3100. .btn-group-toggle > .btn input[type="checkbox"],
  3101. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  3102. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  3103. position: absolute;
  3104. clip: rect(0, 0, 0, 0);
  3105. pointer-events: none;
  3106. }
  3107. .input-group {
  3108. position: relative;
  3109. display: -ms-flexbox;
  3110. display: flex;
  3111. -ms-flex-wrap: wrap;
  3112. flex-wrap: wrap;
  3113. -ms-flex-align: stretch;
  3114. align-items: stretch;
  3115. width: 100%;
  3116. }
  3117. .input-group > .form-control,
  3118. .input-group > .form-control-plaintext,
  3119. .input-group > .custom-select,
  3120. .input-group > .custom-file {
  3121. position: relative;
  3122. -ms-flex: 1 1 auto;
  3123. flex: 1 1 auto;
  3124. width: 1%;
  3125. min-width: 0;
  3126. margin-bottom: 0;
  3127. }
  3128. .input-group > .form-control + .form-control,
  3129. .input-group > .form-control + .custom-select,
  3130. .input-group > .form-control + .custom-file,
  3131. .input-group > .form-control-plaintext + .form-control,
  3132. .input-group > .form-control-plaintext + .custom-select,
  3133. .input-group > .form-control-plaintext + .custom-file,
  3134. .input-group > .custom-select + .form-control,
  3135. .input-group > .custom-select + .custom-select,
  3136. .input-group > .custom-select + .custom-file,
  3137. .input-group > .custom-file + .form-control,
  3138. .input-group > .custom-file + .custom-select,
  3139. .input-group > .custom-file + .custom-file {
  3140. margin-left: -1px;
  3141. }
  3142. .input-group > .form-control:focus,
  3143. .input-group > .custom-select:focus,
  3144. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3145. z-index: 3;
  3146. }
  3147. .input-group > .custom-file .custom-file-input:focus {
  3148. z-index: 4;
  3149. }
  3150. .input-group > .form-control:not(:first-child),
  3151. .input-group > .custom-select:not(:first-child) {
  3152. border-top-left-radius: 0;
  3153. border-bottom-left-radius: 0;
  3154. }
  3155. .input-group > .custom-file {
  3156. display: -ms-flexbox;
  3157. display: flex;
  3158. -ms-flex-align: center;
  3159. align-items: center;
  3160. }
  3161. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3162. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3163. border-top-left-radius: 0;
  3164. border-bottom-left-radius: 0;
  3165. }
  3166. .input-group:not(.has-validation) > .form-control:not(:last-child),
  3167. .input-group:not(.has-validation) > .custom-select:not(:last-child),
  3168. .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  3169. border-top-right-radius: 0;
  3170. border-bottom-right-radius: 0;
  3171. }
  3172. .input-group.has-validation > .form-control:nth-last-child(n + 3),
  3173. .input-group.has-validation > .custom-select:nth-last-child(n + 3),
  3174. .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  3175. border-top-right-radius: 0;
  3176. border-bottom-right-radius: 0;
  3177. }
  3178. .input-group-prepend,
  3179. .input-group-append {
  3180. display: -ms-flexbox;
  3181. display: flex;
  3182. }
  3183. .input-group-prepend .btn,
  3184. .input-group-append .btn {
  3185. position: relative;
  3186. z-index: 2;
  3187. }
  3188. .input-group-prepend .btn:focus,
  3189. .input-group-append .btn:focus {
  3190. z-index: 3;
  3191. }
  3192. .input-group-prepend .btn + .btn,
  3193. .input-group-prepend .btn + .input-group-text,
  3194. .input-group-prepend .input-group-text + .input-group-text,
  3195. .input-group-prepend .input-group-text + .btn,
  3196. .input-group-append .btn + .btn,
  3197. .input-group-append .btn + .input-group-text,
  3198. .input-group-append .input-group-text + .input-group-text,
  3199. .input-group-append .input-group-text + .btn {
  3200. margin-left: -1px;
  3201. }
  3202. .input-group-prepend {
  3203. margin-right: -1px;
  3204. }
  3205. .input-group-append {
  3206. margin-left: -1px;
  3207. }
  3208. .input-group-text {
  3209. display: -ms-flexbox;
  3210. display: flex;
  3211. -ms-flex-align: center;
  3212. align-items: center;
  3213. padding: 0.375rem 0.75rem;
  3214. margin-bottom: 0;
  3215. font-size: 1rem;
  3216. font-weight: 400;
  3217. line-height: 1.5;
  3218. color: #495057;
  3219. text-align: center;
  3220. white-space: nowrap;
  3221. background-color: #e9ecef;
  3222. border: 1px solid #ced4da;
  3223. border-radius: 0.25rem;
  3224. }
  3225. .input-group-text input[type="radio"],
  3226. .input-group-text input[type="checkbox"] {
  3227. margin-top: 0;
  3228. }
  3229. .input-group-lg > .form-control:not(textarea),
  3230. .input-group-lg > .custom-select {
  3231. height: calc(1.5em + 1rem + 2px);
  3232. }
  3233. .input-group-lg > .form-control,
  3234. .input-group-lg > .custom-select,
  3235. .input-group-lg > .input-group-prepend > .input-group-text,
  3236. .input-group-lg > .input-group-append > .input-group-text,
  3237. .input-group-lg > .input-group-prepend > .btn,
  3238. .input-group-lg > .input-group-append > .btn {
  3239. padding: 0.5rem 1rem;
  3240. font-size: 1.25rem;
  3241. line-height: 1.5;
  3242. border-radius: 0.3rem;
  3243. }
  3244. .input-group-sm > .form-control:not(textarea),
  3245. .input-group-sm > .custom-select {
  3246. height: calc(1.5em + 0.5rem + 2px);
  3247. }
  3248. .input-group-sm > .form-control,
  3249. .input-group-sm > .custom-select,
  3250. .input-group-sm > .input-group-prepend > .input-group-text,
  3251. .input-group-sm > .input-group-append > .input-group-text,
  3252. .input-group-sm > .input-group-prepend > .btn,
  3253. .input-group-sm > .input-group-append > .btn {
  3254. padding: 0.25rem 0.5rem;
  3255. font-size: 0.875rem;
  3256. line-height: 1.5;
  3257. border-radius: 0.2rem;
  3258. }
  3259. .input-group-lg > .custom-select,
  3260. .input-group-sm > .custom-select {
  3261. padding-right: 1.75rem;
  3262. }
  3263. .input-group > .input-group-prepend > .btn,
  3264. .input-group > .input-group-prepend > .input-group-text,
  3265. .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
  3266. .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
  3267. .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
  3268. .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
  3269. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3270. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3271. border-top-right-radius: 0;
  3272. border-bottom-right-radius: 0;
  3273. }
  3274. .input-group > .input-group-append > .btn,
  3275. .input-group > .input-group-append > .input-group-text,
  3276. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3277. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3278. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3279. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3280. border-top-left-radius: 0;
  3281. border-bottom-left-radius: 0;
  3282. }
  3283. .custom-control {
  3284. position: relative;
  3285. z-index: 1;
  3286. display: block;
  3287. min-height: 1.5rem;
  3288. padding-left: 1.5rem;
  3289. -webkit-print-color-adjust: exact;
  3290. color-adjust: exact;
  3291. }
  3292. .custom-control-inline {
  3293. display: -ms-inline-flexbox;
  3294. display: inline-flex;
  3295. margin-right: 1rem;
  3296. }
  3297. .custom-control-input {
  3298. position: absolute;
  3299. left: 0;
  3300. z-index: -1;
  3301. width: 1rem;
  3302. height: 1.25rem;
  3303. opacity: 0;
  3304. }
  3305. .custom-control-input:checked ~ .custom-control-label::before {
  3306. color: #fff;
  3307. border-color: #007bff;
  3308. background-color: #007bff;
  3309. }
  3310. .custom-control-input:focus ~ .custom-control-label::before {
  3311. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3312. }
  3313. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3314. border-color: #80bdff;
  3315. }
  3316. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3317. color: #fff;
  3318. background-color: #b3d7ff;
  3319. border-color: #b3d7ff;
  3320. }
  3321. .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  3322. color: #6c757d;
  3323. }
  3324. .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  3325. background-color: #e9ecef;
  3326. }
  3327. .custom-control-label {
  3328. position: relative;
  3329. margin-bottom: 0;
  3330. vertical-align: top;
  3331. }
  3332. .custom-control-label::before {
  3333. position: absolute;
  3334. top: 0.25rem;
  3335. left: -1.5rem;
  3336. display: block;
  3337. width: 1rem;
  3338. height: 1rem;
  3339. pointer-events: none;
  3340. content: "";
  3341. background-color: #fff;
  3342. border: #adb5bd solid 1px;
  3343. }
  3344. .custom-control-label::after {
  3345. position: absolute;
  3346. top: 0.25rem;
  3347. left: -1.5rem;
  3348. display: block;
  3349. width: 1rem;
  3350. height: 1rem;
  3351. content: "";
  3352. background: 50% / 50% 50% no-repeat;
  3353. }
  3354. .custom-checkbox .custom-control-label::before {
  3355. border-radius: 0.25rem;
  3356. }
  3357. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3358. 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");
  3359. }
  3360. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3361. border-color: #007bff;
  3362. background-color: #007bff;
  3363. }
  3364. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3365. 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");
  3366. }
  3367. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3368. background-color: rgba(0, 123, 255, 0.5);
  3369. }
  3370. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3371. background-color: rgba(0, 123, 255, 0.5);
  3372. }
  3373. .custom-radio .custom-control-label::before {
  3374. border-radius: 50%;
  3375. }
  3376. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3377. 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");
  3378. }
  3379. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3380. background-color: rgba(0, 123, 255, 0.5);
  3381. }
  3382. .custom-switch {
  3383. padding-left: 2.25rem;
  3384. }
  3385. .custom-switch .custom-control-label::before {
  3386. left: -2.25rem;
  3387. width: 1.75rem;
  3388. pointer-events: all;
  3389. border-radius: 0.5rem;
  3390. }
  3391. .custom-switch .custom-control-label::after {
  3392. top: calc(0.25rem + 2px);
  3393. left: calc(-2.25rem + 2px);
  3394. width: calc(1rem - 4px);
  3395. height: calc(1rem - 4px);
  3396. background-color: #adb5bd;
  3397. border-radius: 0.5rem;
  3398. 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;
  3399. 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;
  3400. 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;
  3401. }
  3402. @media (prefers-reduced-motion: reduce) {
  3403. .custom-switch .custom-control-label::after {
  3404. transition: none;
  3405. }
  3406. }
  3407. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3408. background-color: #fff;
  3409. -webkit-transform: translateX(0.75rem);
  3410. transform: translateX(0.75rem);
  3411. }
  3412. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3413. background-color: rgba(0, 123, 255, 0.5);
  3414. }
  3415. .custom-select {
  3416. display: inline-block;
  3417. width: 100%;
  3418. height: calc(1.5em + 0.75rem + 2px);
  3419. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3420. font-size: 1rem;
  3421. font-weight: 400;
  3422. line-height: 1.5;
  3423. color: #495057;
  3424. vertical-align: middle;
  3425. 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;
  3426. border: 1px solid #ced4da;
  3427. border-radius: 0.25rem;
  3428. -webkit-appearance: none;
  3429. -moz-appearance: none;
  3430. appearance: none;
  3431. }
  3432. .custom-select:focus {
  3433. border-color: #80bdff;
  3434. outline: 0;
  3435. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3436. }
  3437. .custom-select:focus::-ms-value {
  3438. color: #495057;
  3439. background-color: #fff;
  3440. }
  3441. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  3442. height: auto;
  3443. padding-right: 0.75rem;
  3444. background-image: none;
  3445. }
  3446. .custom-select:disabled {
  3447. color: #6c757d;
  3448. background-color: #e9ecef;
  3449. }
  3450. .custom-select::-ms-expand {
  3451. display: none;
  3452. }
  3453. .custom-select:-moz-focusring {
  3454. color: transparent;
  3455. text-shadow: 0 0 0 #495057;
  3456. }
  3457. .custom-select-sm {
  3458. height: calc(1.5em + 0.5rem + 2px);
  3459. padding-top: 0.25rem;
  3460. padding-bottom: 0.25rem;
  3461. padding-left: 0.5rem;
  3462. font-size: 0.875rem;
  3463. }
  3464. .custom-select-lg {
  3465. height: calc(1.5em + 1rem + 2px);
  3466. padding-top: 0.5rem;
  3467. padding-bottom: 0.5rem;
  3468. padding-left: 1rem;
  3469. font-size: 1.25rem;
  3470. }
  3471. .custom-file {
  3472. position: relative;
  3473. display: inline-block;
  3474. width: 100%;
  3475. height: calc(1.5em + 0.75rem + 2px);
  3476. margin-bottom: 0;
  3477. }
  3478. .custom-file-input {
  3479. position: relative;
  3480. z-index: 2;
  3481. width: 100%;
  3482. height: calc(1.5em + 0.75rem + 2px);
  3483. margin: 0;
  3484. overflow: hidden;
  3485. opacity: 0;
  3486. }
  3487. .custom-file-input:focus ~ .custom-file-label {
  3488. border-color: #80bdff;
  3489. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3490. }
  3491. .custom-file-input[disabled] ~ .custom-file-label,
  3492. .custom-file-input:disabled ~ .custom-file-label {
  3493. background-color: #e9ecef;
  3494. }
  3495. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3496. content: "Browse";
  3497. }
  3498. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3499. content: attr(data-browse);
  3500. }
  3501. .custom-file-label {
  3502. position: absolute;
  3503. top: 0;
  3504. right: 0;
  3505. left: 0;
  3506. z-index: 1;
  3507. height: calc(1.5em + 0.75rem + 2px);
  3508. padding: 0.375rem 0.75rem;
  3509. overflow: hidden;
  3510. font-weight: 400;
  3511. line-height: 1.5;
  3512. color: #495057;
  3513. background-color: #fff;
  3514. border: 1px solid #ced4da;
  3515. border-radius: 0.25rem;
  3516. }
  3517. .custom-file-label::after {
  3518. position: absolute;
  3519. top: 0;
  3520. right: 0;
  3521. bottom: 0;
  3522. z-index: 3;
  3523. display: block;
  3524. height: calc(1.5em + 0.75rem);
  3525. padding: 0.375rem 0.75rem;
  3526. line-height: 1.5;
  3527. color: #495057;
  3528. content: "Browse";
  3529. background-color: #e9ecef;
  3530. border-left: inherit;
  3531. border-radius: 0 0.25rem 0.25rem 0;
  3532. }
  3533. .custom-range {
  3534. width: 100%;
  3535. height: 1.4rem;
  3536. padding: 0;
  3537. background-color: transparent;
  3538. -webkit-appearance: none;
  3539. -moz-appearance: none;
  3540. appearance: none;
  3541. }
  3542. .custom-range:focus {
  3543. outline: 0;
  3544. }
  3545. .custom-range:focus::-webkit-slider-thumb {
  3546. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3547. }
  3548. .custom-range:focus::-moz-range-thumb {
  3549. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3550. }
  3551. .custom-range:focus::-ms-thumb {
  3552. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  3553. }
  3554. .custom-range::-moz-focus-outer {
  3555. border: 0;
  3556. }
  3557. .custom-range::-webkit-slider-thumb {
  3558. width: 1rem;
  3559. height: 1rem;
  3560. margin-top: -0.25rem;
  3561. background-color: #007bff;
  3562. border: 0;
  3563. border-radius: 1rem;
  3564. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3565. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3566. -webkit-appearance: none;
  3567. appearance: none;
  3568. }
  3569. @media (prefers-reduced-motion: reduce) {
  3570. .custom-range::-webkit-slider-thumb {
  3571. -webkit-transition: none;
  3572. transition: none;
  3573. }
  3574. }
  3575. .custom-range::-webkit-slider-thumb:active {
  3576. background-color: #b3d7ff;
  3577. }
  3578. .custom-range::-webkit-slider-runnable-track {
  3579. width: 100%;
  3580. height: 0.5rem;
  3581. color: transparent;
  3582. cursor: pointer;
  3583. background-color: #dee2e6;
  3584. border-color: transparent;
  3585. border-radius: 1rem;
  3586. }
  3587. .custom-range::-moz-range-thumb {
  3588. width: 1rem;
  3589. height: 1rem;
  3590. background-color: #007bff;
  3591. border: 0;
  3592. border-radius: 1rem;
  3593. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3594. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3595. -moz-appearance: none;
  3596. appearance: none;
  3597. }
  3598. @media (prefers-reduced-motion: reduce) {
  3599. .custom-range::-moz-range-thumb {
  3600. -moz-transition: none;
  3601. transition: none;
  3602. }
  3603. }
  3604. .custom-range::-moz-range-thumb:active {
  3605. background-color: #b3d7ff;
  3606. }
  3607. .custom-range::-moz-range-track {
  3608. width: 100%;
  3609. height: 0.5rem;
  3610. color: transparent;
  3611. cursor: pointer;
  3612. background-color: #dee2e6;
  3613. border-color: transparent;
  3614. border-radius: 1rem;
  3615. }
  3616. .custom-range::-ms-thumb {
  3617. width: 1rem;
  3618. height: 1rem;
  3619. margin-top: 0;
  3620. margin-right: 0.2rem;
  3621. margin-left: 0.2rem;
  3622. background-color: #007bff;
  3623. border: 0;
  3624. border-radius: 1rem;
  3625. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3626. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3627. appearance: none;
  3628. }
  3629. @media (prefers-reduced-motion: reduce) {
  3630. .custom-range::-ms-thumb {
  3631. -ms-transition: none;
  3632. transition: none;
  3633. }
  3634. }
  3635. .custom-range::-ms-thumb:active {
  3636. background-color: #b3d7ff;
  3637. }
  3638. .custom-range::-ms-track {
  3639. width: 100%;
  3640. height: 0.5rem;
  3641. color: transparent;
  3642. cursor: pointer;
  3643. background-color: transparent;
  3644. border-color: transparent;
  3645. border-width: 0.5rem;
  3646. }
  3647. .custom-range::-ms-fill-lower {
  3648. background-color: #dee2e6;
  3649. border-radius: 1rem;
  3650. }
  3651. .custom-range::-ms-fill-upper {
  3652. margin-right: 15px;
  3653. background-color: #dee2e6;
  3654. border-radius: 1rem;
  3655. }
  3656. .custom-range:disabled::-webkit-slider-thumb {
  3657. background-color: #adb5bd;
  3658. }
  3659. .custom-range:disabled::-webkit-slider-runnable-track {
  3660. cursor: default;
  3661. }
  3662. .custom-range:disabled::-moz-range-thumb {
  3663. background-color: #adb5bd;
  3664. }
  3665. .custom-range:disabled::-moz-range-track {
  3666. cursor: default;
  3667. }
  3668. .custom-range:disabled::-ms-thumb {
  3669. background-color: #adb5bd;
  3670. }
  3671. .custom-control-label::before,
  3672. .custom-file-label,
  3673. .custom-select {
  3674. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3675. }
  3676. @media (prefers-reduced-motion: reduce) {
  3677. .custom-control-label::before,
  3678. .custom-file-label,
  3679. .custom-select {
  3680. transition: none;
  3681. }
  3682. }
  3683. .nav {
  3684. display: -ms-flexbox;
  3685. display: flex;
  3686. -ms-flex-wrap: wrap;
  3687. flex-wrap: wrap;
  3688. padding-left: 0;
  3689. margin-bottom: 0;
  3690. list-style: none;
  3691. }
  3692. .nav-link {
  3693. display: block;
  3694. padding: 0.5rem 1rem;
  3695. }
  3696. .nav-link:hover, .nav-link:focus {
  3697. text-decoration: none;
  3698. }
  3699. .nav-link.disabled {
  3700. color: #6c757d;
  3701. pointer-events: none;
  3702. cursor: default;
  3703. }
  3704. .nav-tabs {
  3705. border-bottom: 1px solid #dee2e6;
  3706. }
  3707. .nav-tabs .nav-link {
  3708. margin-bottom: -1px;
  3709. border: 1px solid transparent;
  3710. border-top-left-radius: 0.25rem;
  3711. border-top-right-radius: 0.25rem;
  3712. }
  3713. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3714. border-color: #e9ecef #e9ecef #dee2e6;
  3715. }
  3716. .nav-tabs .nav-link.disabled {
  3717. color: #6c757d;
  3718. background-color: transparent;
  3719. border-color: transparent;
  3720. }
  3721. .nav-tabs .nav-link.active,
  3722. .nav-tabs .nav-item.show .nav-link {
  3723. color: #495057;
  3724. background-color: #fff;
  3725. border-color: #dee2e6 #dee2e6 #fff;
  3726. }
  3727. .nav-tabs .dropdown-menu {
  3728. margin-top: -1px;
  3729. border-top-left-radius: 0;
  3730. border-top-right-radius: 0;
  3731. }
  3732. .nav-pills .nav-link {
  3733. border-radius: 0.25rem;
  3734. }
  3735. .nav-pills .nav-link.active,
  3736. .nav-pills .show > .nav-link {
  3737. color: #fff;
  3738. background-color: #007bff;
  3739. }
  3740. .nav-fill > .nav-link,
  3741. .nav-fill .nav-item {
  3742. -ms-flex: 1 1 auto;
  3743. flex: 1 1 auto;
  3744. text-align: center;
  3745. }
  3746. .nav-justified > .nav-link,
  3747. .nav-justified .nav-item {
  3748. -ms-flex-preferred-size: 0;
  3749. flex-basis: 0;
  3750. -ms-flex-positive: 1;
  3751. flex-grow: 1;
  3752. text-align: center;
  3753. }
  3754. .tab-content > .tab-pane {
  3755. display: none;
  3756. }
  3757. .tab-content > .active {
  3758. display: block;
  3759. }
  3760. .navbar {
  3761. position: relative;
  3762. display: -ms-flexbox;
  3763. display: flex;
  3764. -ms-flex-wrap: wrap;
  3765. flex-wrap: wrap;
  3766. -ms-flex-align: center;
  3767. align-items: center;
  3768. -ms-flex-pack: justify;
  3769. justify-content: space-between;
  3770. padding: 0.5rem 1rem;
  3771. }
  3772. .navbar .container,
  3773. .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  3774. display: -ms-flexbox;
  3775. display: flex;
  3776. -ms-flex-wrap: wrap;
  3777. flex-wrap: wrap;
  3778. -ms-flex-align: center;
  3779. align-items: center;
  3780. -ms-flex-pack: justify;
  3781. justify-content: space-between;
  3782. }
  3783. .navbar-brand {
  3784. display: inline-block;
  3785. padding-top: 0.3125rem;
  3786. padding-bottom: 0.3125rem;
  3787. margin-right: 1rem;
  3788. font-size: 1.25rem;
  3789. line-height: inherit;
  3790. white-space: nowrap;
  3791. }
  3792. .navbar-brand:hover, .navbar-brand:focus {
  3793. text-decoration: none;
  3794. }
  3795. .navbar-nav {
  3796. display: -ms-flexbox;
  3797. display: flex;
  3798. -ms-flex-direction: column;
  3799. flex-direction: column;
  3800. padding-left: 0;
  3801. margin-bottom: 0;
  3802. list-style: none;
  3803. }
  3804. .navbar-nav .nav-link {
  3805. padding-right: 0;
  3806. padding-left: 0;
  3807. }
  3808. .navbar-nav .dropdown-menu {
  3809. position: static;
  3810. float: none;
  3811. }
  3812. .navbar-text {
  3813. display: inline-block;
  3814. padding-top: 0.5rem;
  3815. padding-bottom: 0.5rem;
  3816. }
  3817. .navbar-collapse {
  3818. -ms-flex-preferred-size: 100%;
  3819. flex-basis: 100%;
  3820. -ms-flex-positive: 1;
  3821. flex-grow: 1;
  3822. -ms-flex-align: center;
  3823. align-items: center;
  3824. }
  3825. .navbar-toggler {
  3826. padding: 0.25rem 0.75rem;
  3827. font-size: 1.25rem;
  3828. line-height: 1;
  3829. background-color: transparent;
  3830. border: 1px solid transparent;
  3831. border-radius: 0.25rem;
  3832. }
  3833. .navbar-toggler:hover, .navbar-toggler:focus {
  3834. text-decoration: none;
  3835. }
  3836. .navbar-toggler-icon {
  3837. display: inline-block;
  3838. width: 1.5em;
  3839. height: 1.5em;
  3840. vertical-align: middle;
  3841. content: "";
  3842. background: 50% / 100% 100% no-repeat;
  3843. }
  3844. .navbar-nav-scroll {
  3845. max-height: 75vh;
  3846. overflow-y: auto;
  3847. }
  3848. @media (max-width: 575.98px) {
  3849. .navbar-expand-sm > .container,
  3850. .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 {
  3851. padding-right: 0;
  3852. padding-left: 0;
  3853. }
  3854. }
  3855. @media (min-width: 576px) {
  3856. .navbar-expand-sm {
  3857. -ms-flex-flow: row nowrap;
  3858. flex-flow: row nowrap;
  3859. -ms-flex-pack: start;
  3860. justify-content: flex-start;
  3861. }
  3862. .navbar-expand-sm .navbar-nav {
  3863. -ms-flex-direction: row;
  3864. flex-direction: row;
  3865. }
  3866. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3867. position: absolute;
  3868. }
  3869. .navbar-expand-sm .navbar-nav .nav-link {
  3870. padding-right: 0.5rem;
  3871. padding-left: 0.5rem;
  3872. }
  3873. .navbar-expand-sm > .container,
  3874. .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 {
  3875. -ms-flex-wrap: nowrap;
  3876. flex-wrap: nowrap;
  3877. }
  3878. .navbar-expand-sm .navbar-nav-scroll {
  3879. overflow: visible;
  3880. }
  3881. .navbar-expand-sm .navbar-collapse {
  3882. display: -ms-flexbox !important;
  3883. display: flex !important;
  3884. -ms-flex-preferred-size: auto;
  3885. flex-basis: auto;
  3886. }
  3887. .navbar-expand-sm .navbar-toggler {
  3888. display: none;
  3889. }
  3890. }
  3891. @media (max-width: 767.98px) {
  3892. .navbar-expand-md > .container,
  3893. .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 {
  3894. padding-right: 0;
  3895. padding-left: 0;
  3896. }
  3897. }
  3898. @media (min-width: 768px) {
  3899. .navbar-expand-md {
  3900. -ms-flex-flow: row nowrap;
  3901. flex-flow: row nowrap;
  3902. -ms-flex-pack: start;
  3903. justify-content: flex-start;
  3904. }
  3905. .navbar-expand-md .navbar-nav {
  3906. -ms-flex-direction: row;
  3907. flex-direction: row;
  3908. }
  3909. .navbar-expand-md .navbar-nav .dropdown-menu {
  3910. position: absolute;
  3911. }
  3912. .navbar-expand-md .navbar-nav .nav-link {
  3913. padding-right: 0.5rem;
  3914. padding-left: 0.5rem;
  3915. }
  3916. .navbar-expand-md > .container,
  3917. .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 {
  3918. -ms-flex-wrap: nowrap;
  3919. flex-wrap: nowrap;
  3920. }
  3921. .navbar-expand-md .navbar-nav-scroll {
  3922. overflow: visible;
  3923. }
  3924. .navbar-expand-md .navbar-collapse {
  3925. display: -ms-flexbox !important;
  3926. display: flex !important;
  3927. -ms-flex-preferred-size: auto;
  3928. flex-basis: auto;
  3929. }
  3930. .navbar-expand-md .navbar-toggler {
  3931. display: none;
  3932. }
  3933. }
  3934. @media (max-width: 991.98px) {
  3935. .navbar-expand-lg > .container,
  3936. .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 {
  3937. padding-right: 0;
  3938. padding-left: 0;
  3939. }
  3940. }
  3941. @media (min-width: 992px) {
  3942. .navbar-expand-lg {
  3943. -ms-flex-flow: row nowrap;
  3944. flex-flow: row nowrap;
  3945. -ms-flex-pack: start;
  3946. justify-content: flex-start;
  3947. }
  3948. .navbar-expand-lg .navbar-nav {
  3949. -ms-flex-direction: row;
  3950. flex-direction: row;
  3951. }
  3952. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3953. position: absolute;
  3954. }
  3955. .navbar-expand-lg .navbar-nav .nav-link {
  3956. padding-right: 0.5rem;
  3957. padding-left: 0.5rem;
  3958. }
  3959. .navbar-expand-lg > .container,
  3960. .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 {
  3961. -ms-flex-wrap: nowrap;
  3962. flex-wrap: nowrap;
  3963. }
  3964. .navbar-expand-lg .navbar-nav-scroll {
  3965. overflow: visible;
  3966. }
  3967. .navbar-expand-lg .navbar-collapse {
  3968. display: -ms-flexbox !important;
  3969. display: flex !important;
  3970. -ms-flex-preferred-size: auto;
  3971. flex-basis: auto;
  3972. }
  3973. .navbar-expand-lg .navbar-toggler {
  3974. display: none;
  3975. }
  3976. }
  3977. @media (max-width: 1199.98px) {
  3978. .navbar-expand-xl > .container,
  3979. .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 {
  3980. padding-right: 0;
  3981. padding-left: 0;
  3982. }
  3983. }
  3984. @media (min-width: 1200px) {
  3985. .navbar-expand-xl {
  3986. -ms-flex-flow: row nowrap;
  3987. flex-flow: row nowrap;
  3988. -ms-flex-pack: start;
  3989. justify-content: flex-start;
  3990. }
  3991. .navbar-expand-xl .navbar-nav {
  3992. -ms-flex-direction: row;
  3993. flex-direction: row;
  3994. }
  3995. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3996. position: absolute;
  3997. }
  3998. .navbar-expand-xl .navbar-nav .nav-link {
  3999. padding-right: 0.5rem;
  4000. padding-left: 0.5rem;
  4001. }
  4002. .navbar-expand-xl > .container,
  4003. .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 {
  4004. -ms-flex-wrap: nowrap;
  4005. flex-wrap: nowrap;
  4006. }
  4007. .navbar-expand-xl .navbar-nav-scroll {
  4008. overflow: visible;
  4009. }
  4010. .navbar-expand-xl .navbar-collapse {
  4011. display: -ms-flexbox !important;
  4012. display: flex !important;
  4013. -ms-flex-preferred-size: auto;
  4014. flex-basis: auto;
  4015. }
  4016. .navbar-expand-xl .navbar-toggler {
  4017. display: none;
  4018. }
  4019. }
  4020. .navbar-expand {
  4021. -ms-flex-flow: row nowrap;
  4022. flex-flow: row nowrap;
  4023. -ms-flex-pack: start;
  4024. justify-content: flex-start;
  4025. }
  4026. .navbar-expand > .container,
  4027. .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  4028. padding-right: 0;
  4029. padding-left: 0;
  4030. }
  4031. .navbar-expand .navbar-nav {
  4032. -ms-flex-direction: row;
  4033. flex-direction: row;
  4034. }
  4035. .navbar-expand .navbar-nav .dropdown-menu {
  4036. position: absolute;
  4037. }
  4038. .navbar-expand .navbar-nav .nav-link {
  4039. padding-right: 0.5rem;
  4040. padding-left: 0.5rem;
  4041. }
  4042. .navbar-expand > .container,
  4043. .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  4044. -ms-flex-wrap: nowrap;
  4045. flex-wrap: nowrap;
  4046. }
  4047. .navbar-expand .navbar-nav-scroll {
  4048. overflow: visible;
  4049. }
  4050. .navbar-expand .navbar-collapse {
  4051. display: -ms-flexbox !important;
  4052. display: flex !important;
  4053. -ms-flex-preferred-size: auto;
  4054. flex-basis: auto;
  4055. }
  4056. .navbar-expand .navbar-toggler {
  4057. display: none;
  4058. }
  4059. .navbar-light .navbar-brand {
  4060. color: rgba(0, 0, 0, 0.9);
  4061. }
  4062. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  4063. color: rgba(0, 0, 0, 0.9);
  4064. }
  4065. .navbar-light .navbar-nav .nav-link {
  4066. color: rgba(0, 0, 0, 0.5);
  4067. }
  4068. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  4069. color: rgba(0, 0, 0, 0.7);
  4070. }
  4071. .navbar-light .navbar-nav .nav-link.disabled {
  4072. color: rgba(0, 0, 0, 0.3);
  4073. }
  4074. .navbar-light .navbar-nav .show > .nav-link,
  4075. .navbar-light .navbar-nav .active > .nav-link,
  4076. .navbar-light .navbar-nav .nav-link.show,
  4077. .navbar-light .navbar-nav .nav-link.active {
  4078. color: rgba(0, 0, 0, 0.9);
  4079. }
  4080. .navbar-light .navbar-toggler {
  4081. color: rgba(0, 0, 0, 0.5);
  4082. border-color: rgba(0, 0, 0, 0.1);
  4083. }
  4084. .navbar-light .navbar-toggler-icon {
  4085. 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");
  4086. }
  4087. .navbar-light .navbar-text {
  4088. color: rgba(0, 0, 0, 0.5);
  4089. }
  4090. .navbar-light .navbar-text a {
  4091. color: rgba(0, 0, 0, 0.9);
  4092. }
  4093. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  4094. color: rgba(0, 0, 0, 0.9);
  4095. }
  4096. .navbar-dark .navbar-brand {
  4097. color: #fff;
  4098. }
  4099. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  4100. color: #fff;
  4101. }
  4102. .navbar-dark .navbar-nav .nav-link {
  4103. color: rgba(255, 255, 255, 0.5);
  4104. }
  4105. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  4106. color: rgba(255, 255, 255, 0.75);
  4107. }
  4108. .navbar-dark .navbar-nav .nav-link.disabled {
  4109. color: rgba(255, 255, 255, 0.25);
  4110. }
  4111. .navbar-dark .navbar-nav .show > .nav-link,
  4112. .navbar-dark .navbar-nav .active > .nav-link,
  4113. .navbar-dark .navbar-nav .nav-link.show,
  4114. .navbar-dark .navbar-nav .nav-link.active {
  4115. color: #fff;
  4116. }
  4117. .navbar-dark .navbar-toggler {
  4118. color: rgba(255, 255, 255, 0.5);
  4119. border-color: rgba(255, 255, 255, 0.1);
  4120. }
  4121. .navbar-dark .navbar-toggler-icon {
  4122. 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");
  4123. }
  4124. .navbar-dark .navbar-text {
  4125. color: rgba(255, 255, 255, 0.5);
  4126. }
  4127. .navbar-dark .navbar-text a {
  4128. color: #fff;
  4129. }
  4130. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  4131. color: #fff;
  4132. }
  4133. .card {
  4134. position: relative;
  4135. display: -ms-flexbox;
  4136. display: flex;
  4137. -ms-flex-direction: column;
  4138. flex-direction: column;
  4139. min-width: 0;
  4140. word-wrap: break-word;
  4141. background-color: #fff;
  4142. background-clip: border-box;
  4143. border: 1px solid rgba(0, 0, 0, 0.125);
  4144. border-radius: 0.25rem;
  4145. }
  4146. .card > hr {
  4147. margin-right: 0;
  4148. margin-left: 0;
  4149. }
  4150. .card > .list-group {
  4151. border-top: inherit;
  4152. border-bottom: inherit;
  4153. }
  4154. .card > .list-group:first-child {
  4155. border-top-width: 0;
  4156. border-top-left-radius: calc(0.25rem - 1px);
  4157. border-top-right-radius: calc(0.25rem - 1px);
  4158. }
  4159. .card > .list-group:last-child {
  4160. border-bottom-width: 0;
  4161. border-bottom-right-radius: calc(0.25rem - 1px);
  4162. border-bottom-left-radius: calc(0.25rem - 1px);
  4163. }
  4164. .card > .card-header + .list-group,
  4165. .card > .list-group + .card-footer {
  4166. border-top: 0;
  4167. }
  4168. .card-body {
  4169. -ms-flex: 1 1 auto;
  4170. flex: 1 1 auto;
  4171. min-height: 1px;
  4172. padding: 1.25rem;
  4173. }
  4174. .card-title {
  4175. margin-bottom: 0.75rem;
  4176. }
  4177. .card-subtitle {
  4178. margin-top: -0.375rem;
  4179. margin-bottom: 0;
  4180. }
  4181. .card-text:last-child {
  4182. margin-bottom: 0;
  4183. }
  4184. .card-link:hover {
  4185. text-decoration: none;
  4186. }
  4187. .card-link + .card-link {
  4188. margin-left: 1.25rem;
  4189. }
  4190. .card-header {
  4191. padding: 0.75rem 1.25rem;
  4192. margin-bottom: 0;
  4193. background-color: rgba(0, 0, 0, 0.03);
  4194. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  4195. }
  4196. .card-header:first-child {
  4197. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  4198. }
  4199. .card-footer {
  4200. padding: 0.75rem 1.25rem;
  4201. background-color: rgba(0, 0, 0, 0.03);
  4202. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4203. }
  4204. .card-footer:last-child {
  4205. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4206. }
  4207. .card-header-tabs {
  4208. margin-right: -0.625rem;
  4209. margin-bottom: -0.75rem;
  4210. margin-left: -0.625rem;
  4211. border-bottom: 0;
  4212. }
  4213. .card-header-pills {
  4214. margin-right: -0.625rem;
  4215. margin-left: -0.625rem;
  4216. }
  4217. .card-img-overlay {
  4218. position: absolute;
  4219. top: 0;
  4220. right: 0;
  4221. bottom: 0;
  4222. left: 0;
  4223. padding: 1.25rem;
  4224. border-radius: calc(0.25rem - 1px);
  4225. }
  4226. .card-img,
  4227. .card-img-top,
  4228. .card-img-bottom {
  4229. -ms-flex-negative: 0;
  4230. flex-shrink: 0;
  4231. width: 100%;
  4232. }
  4233. .card-img,
  4234. .card-img-top {
  4235. border-top-left-radius: calc(0.25rem - 1px);
  4236. border-top-right-radius: calc(0.25rem - 1px);
  4237. }
  4238. .card-img,
  4239. .card-img-bottom {
  4240. border-bottom-right-radius: calc(0.25rem - 1px);
  4241. border-bottom-left-radius: calc(0.25rem - 1px);
  4242. }
  4243. .card-deck .card {
  4244. margin-bottom: 15px;
  4245. }
  4246. @media (min-width: 576px) {
  4247. .card-deck {
  4248. display: -ms-flexbox;
  4249. display: flex;
  4250. -ms-flex-flow: row wrap;
  4251. flex-flow: row wrap;
  4252. margin-right: -15px;
  4253. margin-left: -15px;
  4254. }
  4255. .card-deck .card {
  4256. -ms-flex: 1 0 0%;
  4257. flex: 1 0 0%;
  4258. margin-right: 15px;
  4259. margin-bottom: 0;
  4260. margin-left: 15px;
  4261. }
  4262. }
  4263. .card-group > .card {
  4264. margin-bottom: 15px;
  4265. }
  4266. @media (min-width: 576px) {
  4267. .card-group {
  4268. display: -ms-flexbox;
  4269. display: flex;
  4270. -ms-flex-flow: row wrap;
  4271. flex-flow: row wrap;
  4272. }
  4273. .card-group > .card {
  4274. -ms-flex: 1 0 0%;
  4275. flex: 1 0 0%;
  4276. margin-bottom: 0;
  4277. }
  4278. .card-group > .card + .card {
  4279. margin-left: 0;
  4280. border-left: 0;
  4281. }
  4282. .card-group > .card:not(:last-child) {
  4283. border-top-right-radius: 0;
  4284. border-bottom-right-radius: 0;
  4285. }
  4286. .card-group > .card:not(:last-child) .card-img-top,
  4287. .card-group > .card:not(:last-child) .card-header {
  4288. border-top-right-radius: 0;
  4289. }
  4290. .card-group > .card:not(:last-child) .card-img-bottom,
  4291. .card-group > .card:not(:last-child) .card-footer {
  4292. border-bottom-right-radius: 0;
  4293. }
  4294. .card-group > .card:not(:first-child) {
  4295. border-top-left-radius: 0;
  4296. border-bottom-left-radius: 0;
  4297. }
  4298. .card-group > .card:not(:first-child) .card-img-top,
  4299. .card-group > .card:not(:first-child) .card-header {
  4300. border-top-left-radius: 0;
  4301. }
  4302. .card-group > .card:not(:first-child) .card-img-bottom,
  4303. .card-group > .card:not(:first-child) .card-footer {
  4304. border-bottom-left-radius: 0;
  4305. }
  4306. }
  4307. .card-columns .card {
  4308. margin-bottom: 0.75rem;
  4309. }
  4310. @media (min-width: 576px) {
  4311. .card-columns {
  4312. -webkit-column-count: 3;
  4313. -moz-column-count: 3;
  4314. column-count: 3;
  4315. -webkit-column-gap: 1.25rem;
  4316. -moz-column-gap: 1.25rem;
  4317. column-gap: 1.25rem;
  4318. orphans: 1;
  4319. widows: 1;
  4320. }
  4321. .card-columns .card {
  4322. display: inline-block;
  4323. width: 100%;
  4324. }
  4325. }
  4326. .accordion {
  4327. overflow-anchor: none;
  4328. }
  4329. .accordion > .card {
  4330. overflow: hidden;
  4331. }
  4332. .accordion > .card:not(:last-of-type) {
  4333. border-bottom: 0;
  4334. border-bottom-right-radius: 0;
  4335. border-bottom-left-radius: 0;
  4336. }
  4337. .accordion > .card:not(:first-of-type) {
  4338. border-top-left-radius: 0;
  4339. border-top-right-radius: 0;
  4340. }
  4341. .accordion > .card > .card-header {
  4342. border-radius: 0;
  4343. margin-bottom: -1px;
  4344. }
  4345. .breadcrumb {
  4346. display: -ms-flexbox;
  4347. display: flex;
  4348. -ms-flex-wrap: wrap;
  4349. flex-wrap: wrap;
  4350. padding: 0.75rem 1rem;
  4351. margin-bottom: 1rem;
  4352. list-style: none;
  4353. background-color: #e9ecef;
  4354. border-radius: 0.25rem;
  4355. }
  4356. .breadcrumb-item + .breadcrumb-item {
  4357. padding-left: 0.5rem;
  4358. }
  4359. .breadcrumb-item + .breadcrumb-item::before {
  4360. float: left;
  4361. padding-right: 0.5rem;
  4362. color: #6c757d;
  4363. content: "/";
  4364. }
  4365. .breadcrumb-item + .breadcrumb-item:hover::before {
  4366. text-decoration: underline;
  4367. }
  4368. .breadcrumb-item + .breadcrumb-item:hover::before {
  4369. text-decoration: none;
  4370. }
  4371. .breadcrumb-item.active {
  4372. color: #6c757d;
  4373. }
  4374. .pagination {
  4375. display: -ms-flexbox;
  4376. display: flex;
  4377. padding-left: 0;
  4378. list-style: none;
  4379. border-radius: 0.25rem;
  4380. }
  4381. .page-link {
  4382. position: relative;
  4383. display: block;
  4384. padding: 0.5rem 0.75rem;
  4385. margin-left: -1px;
  4386. line-height: 1.25;
  4387. color: #007bff;
  4388. background-color: #fff;
  4389. border: 1px solid #dee2e6;
  4390. }
  4391. .page-link:hover {
  4392. z-index: 2;
  4393. color: #0056b3;
  4394. text-decoration: none;
  4395. background-color: #e9ecef;
  4396. border-color: #dee2e6;
  4397. }
  4398. .page-link:focus {
  4399. z-index: 3;
  4400. outline: 0;
  4401. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  4402. }
  4403. .page-item:first-child .page-link {
  4404. margin-left: 0;
  4405. border-top-left-radius: 0.25rem;
  4406. border-bottom-left-radius: 0.25rem;
  4407. }
  4408. .page-item:last-child .page-link {
  4409. border-top-right-radius: 0.25rem;
  4410. border-bottom-right-radius: 0.25rem;
  4411. }
  4412. .page-item.active .page-link {
  4413. z-index: 3;
  4414. color: #fff;
  4415. background-color: #007bff;
  4416. border-color: #007bff;
  4417. }
  4418. .page-item.disabled .page-link {
  4419. color: #6c757d;
  4420. pointer-events: none;
  4421. cursor: auto;
  4422. background-color: #fff;
  4423. border-color: #dee2e6;
  4424. }
  4425. .pagination-lg .page-link {
  4426. padding: 0.75rem 1.5rem;
  4427. font-size: 1.25rem;
  4428. line-height: 1.5;
  4429. }
  4430. .pagination-lg .page-item:first-child .page-link {
  4431. border-top-left-radius: 0.3rem;
  4432. border-bottom-left-radius: 0.3rem;
  4433. }
  4434. .pagination-lg .page-item:last-child .page-link {
  4435. border-top-right-radius: 0.3rem;
  4436. border-bottom-right-radius: 0.3rem;
  4437. }
  4438. .pagination-sm .page-link {
  4439. padding: 0.25rem 0.5rem;
  4440. font-size: 0.875rem;
  4441. line-height: 1.5;
  4442. }
  4443. .pagination-sm .page-item:first-child .page-link {
  4444. border-top-left-radius: 0.2rem;
  4445. border-bottom-left-radius: 0.2rem;
  4446. }
  4447. .pagination-sm .page-item:last-child .page-link {
  4448. border-top-right-radius: 0.2rem;
  4449. border-bottom-right-radius: 0.2rem;
  4450. }
  4451. .badge {
  4452. display: inline-block;
  4453. padding: 0.25em 0.4em;
  4454. font-size: 75%;
  4455. font-weight: 700;
  4456. line-height: 1;
  4457. text-align: center;
  4458. white-space: nowrap;
  4459. vertical-align: baseline;
  4460. border-radius: 0.25rem;
  4461. 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;
  4462. }
  4463. @media (prefers-reduced-motion: reduce) {
  4464. .badge {
  4465. transition: none;
  4466. }
  4467. }
  4468. a.badge:hover, a.badge:focus {
  4469. text-decoration: none;
  4470. }
  4471. .badge:empty {
  4472. display: none;
  4473. }
  4474. .btn .badge {
  4475. position: relative;
  4476. top: -1px;
  4477. }
  4478. .badge-pill {
  4479. padding-right: 0.6em;
  4480. padding-left: 0.6em;
  4481. border-radius: 10rem;
  4482. }
  4483. .badge-primary {
  4484. color: #fff;
  4485. background-color: #007bff;
  4486. }
  4487. a.badge-primary:hover, a.badge-primary:focus {
  4488. color: #fff;
  4489. background-color: #0062cc;
  4490. }
  4491. a.badge-primary:focus, a.badge-primary.focus {
  4492. outline: 0;
  4493. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
  4494. }
  4495. .badge-secondary {
  4496. color: #fff;
  4497. background-color: #6c757d;
  4498. }
  4499. a.badge-secondary:hover, a.badge-secondary:focus {
  4500. color: #fff;
  4501. background-color: #545b62;
  4502. }
  4503. a.badge-secondary:focus, a.badge-secondary.focus {
  4504. outline: 0;
  4505. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4506. }
  4507. .badge-success {
  4508. color: #fff;
  4509. background-color: #28a745;
  4510. }
  4511. a.badge-success:hover, a.badge-success:focus {
  4512. color: #fff;
  4513. background-color: #1e7e34;
  4514. }
  4515. a.badge-success:focus, a.badge-success.focus {
  4516. outline: 0;
  4517. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  4518. }
  4519. .badge-info {
  4520. color: #fff;
  4521. background-color: #17a2b8;
  4522. }
  4523. a.badge-info:hover, a.badge-info:focus {
  4524. color: #fff;
  4525. background-color: #117a8b;
  4526. }
  4527. a.badge-info:focus, a.badge-info.focus {
  4528. outline: 0;
  4529. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  4530. }
  4531. .badge-warning {
  4532. color: #212529;
  4533. background-color: #ffc107;
  4534. }
  4535. a.badge-warning:hover, a.badge-warning:focus {
  4536. color: #212529;
  4537. background-color: #d39e00;
  4538. }
  4539. a.badge-warning:focus, a.badge-warning.focus {
  4540. outline: 0;
  4541. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  4542. }
  4543. .badge-danger {
  4544. color: #fff;
  4545. background-color: #dc3545;
  4546. }
  4547. a.badge-danger:hover, a.badge-danger:focus {
  4548. color: #fff;
  4549. background-color: #bd2130;
  4550. }
  4551. a.badge-danger:focus, a.badge-danger.focus {
  4552. outline: 0;
  4553. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  4554. }
  4555. .badge-light {
  4556. color: #212529;
  4557. background-color: #f8f9fa;
  4558. }
  4559. a.badge-light:hover, a.badge-light:focus {
  4560. color: #212529;
  4561. background-color: #dae0e5;
  4562. }
  4563. a.badge-light:focus, a.badge-light.focus {
  4564. outline: 0;
  4565. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4566. }
  4567. .badge-dark {
  4568. color: #fff;
  4569. background-color: #343a40;
  4570. }
  4571. a.badge-dark:hover, a.badge-dark:focus {
  4572. color: #fff;
  4573. background-color: #1d2124;
  4574. }
  4575. a.badge-dark:focus, a.badge-dark.focus {
  4576. outline: 0;
  4577. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4578. }
  4579. .jumbotron {
  4580. padding: 2rem 1rem;
  4581. margin-bottom: 2rem;
  4582. background-color: #e9ecef;
  4583. border-radius: 0.3rem;
  4584. }
  4585. @media (min-width: 576px) {
  4586. .jumbotron {
  4587. padding: 4rem 2rem;
  4588. }
  4589. }
  4590. .jumbotron-fluid {
  4591. padding-right: 0;
  4592. padding-left: 0;
  4593. border-radius: 0;
  4594. }
  4595. .alert {
  4596. position: relative;
  4597. padding: 0.75rem 1.25rem;
  4598. margin-bottom: 1rem;
  4599. border: 1px solid transparent;
  4600. border-radius: 0.25rem;
  4601. }
  4602. .alert-heading {
  4603. color: inherit;
  4604. }
  4605. .alert-link {
  4606. font-weight: 700;
  4607. }
  4608. .alert-dismissible {
  4609. padding-right: 4rem;
  4610. }
  4611. .alert-dismissible .close {
  4612. position: absolute;
  4613. top: 0;
  4614. right: 0;
  4615. z-index: 2;
  4616. padding: 0.75rem 1.25rem;
  4617. color: inherit;
  4618. }
  4619. .alert-primary {
  4620. color: #004085;
  4621. background-color: #cce5ff;
  4622. border-color: #b8daff;
  4623. }
  4624. .alert-primary hr {
  4625. border-top-color: #9fcdff;
  4626. }
  4627. .alert-primary .alert-link {
  4628. color: #002752;
  4629. }
  4630. .alert-secondary {
  4631. color: #383d41;
  4632. background-color: #e2e3e5;
  4633. border-color: #d6d8db;
  4634. }
  4635. .alert-secondary hr {
  4636. border-top-color: #c8cbcf;
  4637. }
  4638. .alert-secondary .alert-link {
  4639. color: #202326;
  4640. }
  4641. .alert-success {
  4642. color: #155724;
  4643. background-color: #d4edda;
  4644. border-color: #c3e6cb;
  4645. }
  4646. .alert-success hr {
  4647. border-top-color: #b1dfbb;
  4648. }
  4649. .alert-success .alert-link {
  4650. color: #0b2e13;
  4651. }
  4652. .alert-info {
  4653. color: #0c5460;
  4654. background-color: #d1ecf1;
  4655. border-color: #bee5eb;
  4656. }
  4657. .alert-info hr {
  4658. border-top-color: #abdde5;
  4659. }
  4660. .alert-info .alert-link {
  4661. color: #062c33;
  4662. }
  4663. .alert-warning {
  4664. color: #856404;
  4665. background-color: #fff3cd;
  4666. border-color: #ffeeba;
  4667. }
  4668. .alert-warning hr {
  4669. border-top-color: #ffe8a1;
  4670. }
  4671. .alert-warning .alert-link {
  4672. color: #533f03;
  4673. }
  4674. .alert-danger {
  4675. color: #721c24;
  4676. background-color: #f8d7da;
  4677. border-color: #f5c6cb;
  4678. }
  4679. .alert-danger hr {
  4680. border-top-color: #f1b0b7;
  4681. }
  4682. .alert-danger .alert-link {
  4683. color: #491217;
  4684. }
  4685. .alert-light {
  4686. color: #818182;
  4687. background-color: #fefefe;
  4688. border-color: #fdfdfe;
  4689. }
  4690. .alert-light hr {
  4691. border-top-color: #ececf6;
  4692. }
  4693. .alert-light .alert-link {
  4694. color: #686868;
  4695. }
  4696. .alert-dark {
  4697. color: #1b1e21;
  4698. background-color: #d6d8d9;
  4699. border-color: #c6c8ca;
  4700. }
  4701. .alert-dark hr {
  4702. border-top-color: #b9bbbe;
  4703. }
  4704. .alert-dark .alert-link {
  4705. color: #040505;
  4706. }
  4707. @-webkit-keyframes progress-bar-stripes {
  4708. from {
  4709. background-position: 1rem 0;
  4710. }
  4711. to {
  4712. background-position: 0 0;
  4713. }
  4714. }
  4715. @keyframes progress-bar-stripes {
  4716. from {
  4717. background-position: 1rem 0;
  4718. }
  4719. to {
  4720. background-position: 0 0;
  4721. }
  4722. }
  4723. .progress {
  4724. display: -ms-flexbox;
  4725. display: flex;
  4726. height: 1rem;
  4727. overflow: hidden;
  4728. line-height: 0;
  4729. font-size: 0.75rem;
  4730. background-color: #e9ecef;
  4731. border-radius: 0.25rem;
  4732. }
  4733. .progress-bar {
  4734. display: -ms-flexbox;
  4735. display: flex;
  4736. -ms-flex-direction: column;
  4737. flex-direction: column;
  4738. -ms-flex-pack: center;
  4739. justify-content: center;
  4740. overflow: hidden;
  4741. color: #fff;
  4742. text-align: center;
  4743. white-space: nowrap;
  4744. background-color: #007bff;
  4745. transition: width 0.6s ease;
  4746. }
  4747. @media (prefers-reduced-motion: reduce) {
  4748. .progress-bar {
  4749. transition: none;
  4750. }
  4751. }
  4752. .progress-bar-striped {
  4753. 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);
  4754. background-size: 1rem 1rem;
  4755. }
  4756. .progress-bar-animated {
  4757. -webkit-animation: 1s linear infinite progress-bar-stripes;
  4758. animation: 1s linear infinite progress-bar-stripes;
  4759. }
  4760. @media (prefers-reduced-motion: reduce) {
  4761. .progress-bar-animated {
  4762. -webkit-animation: none;
  4763. animation: none;
  4764. }
  4765. }
  4766. .media {
  4767. display: -ms-flexbox;
  4768. display: flex;
  4769. -ms-flex-align: start;
  4770. align-items: flex-start;
  4771. }
  4772. .media-body {
  4773. -ms-flex: 1;
  4774. flex: 1;
  4775. }
  4776. .list-group {
  4777. display: -ms-flexbox;
  4778. display: flex;
  4779. -ms-flex-direction: column;
  4780. flex-direction: column;
  4781. padding-left: 0;
  4782. margin-bottom: 0;
  4783. border-radius: 0.25rem;
  4784. }
  4785. .list-group-item-action {
  4786. width: 100%;
  4787. color: #495057;
  4788. text-align: inherit;
  4789. }
  4790. .list-group-item-action:hover, .list-group-item-action:focus {
  4791. z-index: 1;
  4792. color: #495057;
  4793. text-decoration: none;
  4794. background-color: #f8f9fa;
  4795. }
  4796. .list-group-item-action:active {
  4797. color: #212529;
  4798. background-color: #e9ecef;
  4799. }
  4800. .list-group-item {
  4801. position: relative;
  4802. display: block;
  4803. padding: 0.75rem 1.25rem;
  4804. background-color: #fff;
  4805. border: 1px solid rgba(0, 0, 0, 0.125);
  4806. }
  4807. .list-group-item:first-child {
  4808. border-top-left-radius: inherit;
  4809. border-top-right-radius: inherit;
  4810. }
  4811. .list-group-item:last-child {
  4812. border-bottom-right-radius: inherit;
  4813. border-bottom-left-radius: inherit;
  4814. }
  4815. .list-group-item.disabled, .list-group-item:disabled {
  4816. color: #6c757d;
  4817. pointer-events: none;
  4818. background-color: #fff;
  4819. }
  4820. .list-group-item.active {
  4821. z-index: 2;
  4822. color: #fff;
  4823. background-color: #007bff;
  4824. border-color: #007bff;
  4825. }
  4826. .list-group-item + .list-group-item {
  4827. border-top-width: 0;
  4828. }
  4829. .list-group-item + .list-group-item.active {
  4830. margin-top: -1px;
  4831. border-top-width: 1px;
  4832. }
  4833. .list-group-horizontal {
  4834. -ms-flex-direction: row;
  4835. flex-direction: row;
  4836. }
  4837. .list-group-horizontal > .list-group-item:first-child {
  4838. border-bottom-left-radius: 0.25rem;
  4839. border-top-right-radius: 0;
  4840. }
  4841. .list-group-horizontal > .list-group-item:last-child {
  4842. border-top-right-radius: 0.25rem;
  4843. border-bottom-left-radius: 0;
  4844. }
  4845. .list-group-horizontal > .list-group-item.active {
  4846. margin-top: 0;
  4847. }
  4848. .list-group-horizontal > .list-group-item + .list-group-item {
  4849. border-top-width: 1px;
  4850. border-left-width: 0;
  4851. }
  4852. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4853. margin-left: -1px;
  4854. border-left-width: 1px;
  4855. }
  4856. @media (min-width: 576px) {
  4857. .list-group-horizontal-sm {
  4858. -ms-flex-direction: row;
  4859. flex-direction: row;
  4860. }
  4861. .list-group-horizontal-sm > .list-group-item:first-child {
  4862. border-bottom-left-radius: 0.25rem;
  4863. border-top-right-radius: 0;
  4864. }
  4865. .list-group-horizontal-sm > .list-group-item:last-child {
  4866. border-top-right-radius: 0.25rem;
  4867. border-bottom-left-radius: 0;
  4868. }
  4869. .list-group-horizontal-sm > .list-group-item.active {
  4870. margin-top: 0;
  4871. }
  4872. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4873. border-top-width: 1px;
  4874. border-left-width: 0;
  4875. }
  4876. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4877. margin-left: -1px;
  4878. border-left-width: 1px;
  4879. }
  4880. }
  4881. @media (min-width: 768px) {
  4882. .list-group-horizontal-md {
  4883. -ms-flex-direction: row;
  4884. flex-direction: row;
  4885. }
  4886. .list-group-horizontal-md > .list-group-item:first-child {
  4887. border-bottom-left-radius: 0.25rem;
  4888. border-top-right-radius: 0;
  4889. }
  4890. .list-group-horizontal-md > .list-group-item:last-child {
  4891. border-top-right-radius: 0.25rem;
  4892. border-bottom-left-radius: 0;
  4893. }
  4894. .list-group-horizontal-md > .list-group-item.active {
  4895. margin-top: 0;
  4896. }
  4897. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4898. border-top-width: 1px;
  4899. border-left-width: 0;
  4900. }
  4901. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4902. margin-left: -1px;
  4903. border-left-width: 1px;
  4904. }
  4905. }
  4906. @media (min-width: 992px) {
  4907. .list-group-horizontal-lg {
  4908. -ms-flex-direction: row;
  4909. flex-direction: row;
  4910. }
  4911. .list-group-horizontal-lg > .list-group-item:first-child {
  4912. border-bottom-left-radius: 0.25rem;
  4913. border-top-right-radius: 0;
  4914. }
  4915. .list-group-horizontal-lg > .list-group-item:last-child {
  4916. border-top-right-radius: 0.25rem;
  4917. border-bottom-left-radius: 0;
  4918. }
  4919. .list-group-horizontal-lg > .list-group-item.active {
  4920. margin-top: 0;
  4921. }
  4922. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4923. border-top-width: 1px;
  4924. border-left-width: 0;
  4925. }
  4926. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4927. margin-left: -1px;
  4928. border-left-width: 1px;
  4929. }
  4930. }
  4931. @media (min-width: 1200px) {
  4932. .list-group-horizontal-xl {
  4933. -ms-flex-direction: row;
  4934. flex-direction: row;
  4935. }
  4936. .list-group-horizontal-xl > .list-group-item:first-child {
  4937. border-bottom-left-radius: 0.25rem;
  4938. border-top-right-radius: 0;
  4939. }
  4940. .list-group-horizontal-xl > .list-group-item:last-child {
  4941. border-top-right-radius: 0.25rem;
  4942. border-bottom-left-radius: 0;
  4943. }
  4944. .list-group-horizontal-xl > .list-group-item.active {
  4945. margin-top: 0;
  4946. }
  4947. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4948. border-top-width: 1px;
  4949. border-left-width: 0;
  4950. }
  4951. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4952. margin-left: -1px;
  4953. border-left-width: 1px;
  4954. }
  4955. }
  4956. .list-group-flush {
  4957. border-radius: 0;
  4958. }
  4959. .list-group-flush > .list-group-item {
  4960. border-width: 0 0 1px;
  4961. }
  4962. .list-group-flush > .list-group-item:last-child {
  4963. border-bottom-width: 0;
  4964. }
  4965. .list-group-item-primary {
  4966. color: #004085;
  4967. background-color: #b8daff;
  4968. }
  4969. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4970. color: #004085;
  4971. background-color: #9fcdff;
  4972. }
  4973. .list-group-item-primary.list-group-item-action.active {
  4974. color: #fff;
  4975. background-color: #004085;
  4976. border-color: #004085;
  4977. }
  4978. .list-group-item-secondary {
  4979. color: #383d41;
  4980. background-color: #d6d8db;
  4981. }
  4982. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4983. color: #383d41;
  4984. background-color: #c8cbcf;
  4985. }
  4986. .list-group-item-secondary.list-group-item-action.active {
  4987. color: #fff;
  4988. background-color: #383d41;
  4989. border-color: #383d41;
  4990. }
  4991. .list-group-item-success {
  4992. color: #155724;
  4993. background-color: #c3e6cb;
  4994. }
  4995. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4996. color: #155724;
  4997. background-color: #b1dfbb;
  4998. }
  4999. .list-group-item-success.list-group-item-action.active {
  5000. color: #fff;
  5001. background-color: #155724;
  5002. border-color: #155724;
  5003. }
  5004. .list-group-item-info {
  5005. color: #0c5460;
  5006. background-color: #bee5eb;
  5007. }
  5008. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  5009. color: #0c5460;
  5010. background-color: #abdde5;
  5011. }
  5012. .list-group-item-info.list-group-item-action.active {
  5013. color: #fff;
  5014. background-color: #0c5460;
  5015. border-color: #0c5460;
  5016. }
  5017. .list-group-item-warning {
  5018. color: #856404;
  5019. background-color: #ffeeba;
  5020. }
  5021. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  5022. color: #856404;
  5023. background-color: #ffe8a1;
  5024. }
  5025. .list-group-item-warning.list-group-item-action.active {
  5026. color: #fff;
  5027. background-color: #856404;
  5028. border-color: #856404;
  5029. }
  5030. .list-group-item-danger {
  5031. color: #721c24;
  5032. background-color: #f5c6cb;
  5033. }
  5034. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  5035. color: #721c24;
  5036. background-color: #f1b0b7;
  5037. }
  5038. .list-group-item-danger.list-group-item-action.active {
  5039. color: #fff;
  5040. background-color: #721c24;
  5041. border-color: #721c24;
  5042. }
  5043. .list-group-item-light {
  5044. color: #818182;
  5045. background-color: #fdfdfe;
  5046. }
  5047. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  5048. color: #818182;
  5049. background-color: #ececf6;
  5050. }
  5051. .list-group-item-light.list-group-item-action.active {
  5052. color: #fff;
  5053. background-color: #818182;
  5054. border-color: #818182;
  5055. }
  5056. .list-group-item-dark {
  5057. color: #1b1e21;
  5058. background-color: #c6c8ca;
  5059. }
  5060. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  5061. color: #1b1e21;
  5062. background-color: #b9bbbe;
  5063. }
  5064. .list-group-item-dark.list-group-item-action.active {
  5065. color: #fff;
  5066. background-color: #1b1e21;
  5067. border-color: #1b1e21;
  5068. }
  5069. .close {
  5070. float: right;
  5071. font-size: 1.5rem;
  5072. font-weight: 700;
  5073. line-height: 1;
  5074. color: #000;
  5075. text-shadow: 0 1px 0 #fff;
  5076. opacity: .5;
  5077. }
  5078. .close:hover {
  5079. color: #000;
  5080. text-decoration: none;
  5081. }
  5082. .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  5083. opacity: .75;
  5084. }
  5085. button.close {
  5086. padding: 0;
  5087. background-color: transparent;
  5088. border: 0;
  5089. }
  5090. a.close.disabled {
  5091. pointer-events: none;
  5092. }
  5093. .toast {
  5094. -ms-flex-preferred-size: 350px;
  5095. flex-basis: 350px;
  5096. max-width: 350px;
  5097. font-size: 0.875rem;
  5098. background-color: rgba(255, 255, 255, 0.85);
  5099. background-clip: padding-box;
  5100. border: 1px solid rgba(0, 0, 0, 0.1);
  5101. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  5102. opacity: 0;
  5103. border-radius: 0.25rem;
  5104. }
  5105. .toast:not(:last-child) {
  5106. margin-bottom: 0.75rem;
  5107. }
  5108. .toast.showing {
  5109. opacity: 1;
  5110. }
  5111. .toast.show {
  5112. display: block;
  5113. opacity: 1;
  5114. }
  5115. .toast.hide {
  5116. display: none;
  5117. }
  5118. .toast-header {
  5119. display: -ms-flexbox;
  5120. display: flex;
  5121. -ms-flex-align: center;
  5122. align-items: center;
  5123. padding: 0.25rem 0.75rem;
  5124. color: #6c757d;
  5125. background-color: rgba(255, 255, 255, 0.85);
  5126. background-clip: padding-box;
  5127. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5128. border-top-left-radius: calc(0.25rem - 1px);
  5129. border-top-right-radius: calc(0.25rem - 1px);
  5130. }
  5131. .toast-body {
  5132. padding: 0.75rem;
  5133. }
  5134. .modal-open {
  5135. overflow: hidden;
  5136. }
  5137. .modal-open .modal {
  5138. overflow-x: hidden;
  5139. overflow-y: auto;
  5140. }
  5141. .modal {
  5142. position: fixed;
  5143. top: 0;
  5144. left: 0;
  5145. z-index: 1050;
  5146. display: none;
  5147. width: 100%;
  5148. height: 100%;
  5149. overflow: hidden;
  5150. outline: 0;
  5151. }
  5152. .modal-dialog {
  5153. position: relative;
  5154. width: auto;
  5155. margin: 0.5rem;
  5156. pointer-events: none;
  5157. }
  5158. .modal.fade .modal-dialog {
  5159. transition: -webkit-transform 0.3s ease-out;
  5160. transition: transform 0.3s ease-out;
  5161. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  5162. -webkit-transform: translate(0, -50px);
  5163. transform: translate(0, -50px);
  5164. }
  5165. @media (prefers-reduced-motion: reduce) {
  5166. .modal.fade .modal-dialog {
  5167. transition: none;
  5168. }
  5169. }
  5170. .modal.show .modal-dialog {
  5171. -webkit-transform: none;
  5172. transform: none;
  5173. }
  5174. .modal.modal-static .modal-dialog {
  5175. -webkit-transform: scale(1.02);
  5176. transform: scale(1.02);
  5177. }
  5178. .modal-dialog-scrollable {
  5179. display: -ms-flexbox;
  5180. display: flex;
  5181. max-height: calc(100% - 1rem);
  5182. }
  5183. .modal-dialog-scrollable .modal-content {
  5184. max-height: calc(100vh - 1rem);
  5185. overflow: hidden;
  5186. }
  5187. .modal-dialog-scrollable .modal-header,
  5188. .modal-dialog-scrollable .modal-footer {
  5189. -ms-flex-negative: 0;
  5190. flex-shrink: 0;
  5191. }
  5192. .modal-dialog-scrollable .modal-body {
  5193. overflow-y: auto;
  5194. }
  5195. .modal-dialog-centered {
  5196. display: -ms-flexbox;
  5197. display: flex;
  5198. -ms-flex-align: center;
  5199. align-items: center;
  5200. min-height: calc(100% - 1rem);
  5201. }
  5202. .modal-dialog-centered::before {
  5203. display: block;
  5204. height: calc(100vh - 1rem);
  5205. height: -webkit-min-content;
  5206. height: -moz-min-content;
  5207. height: min-content;
  5208. content: "";
  5209. }
  5210. .modal-dialog-centered.modal-dialog-scrollable {
  5211. -ms-flex-direction: column;
  5212. flex-direction: column;
  5213. -ms-flex-pack: center;
  5214. justify-content: center;
  5215. height: 100%;
  5216. }
  5217. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  5218. max-height: none;
  5219. }
  5220. .modal-dialog-centered.modal-dialog-scrollable::before {
  5221. content: none;
  5222. }
  5223. .modal-content {
  5224. position: relative;
  5225. display: -ms-flexbox;
  5226. display: flex;
  5227. -ms-flex-direction: column;
  5228. flex-direction: column;
  5229. width: 100%;
  5230. pointer-events: auto;
  5231. background-color: #fff;
  5232. background-clip: padding-box;
  5233. border: 1px solid rgba(0, 0, 0, 0.2);
  5234. border-radius: 0.3rem;
  5235. outline: 0;
  5236. }
  5237. .modal-backdrop {
  5238. position: fixed;
  5239. top: 0;
  5240. left: 0;
  5241. z-index: 1040;
  5242. width: 100vw;
  5243. height: 100vh;
  5244. background-color: #000;
  5245. }
  5246. .modal-backdrop.fade {
  5247. opacity: 0;
  5248. }
  5249. .modal-backdrop.show {
  5250. opacity: 0.5;
  5251. }
  5252. .modal-header {
  5253. display: -ms-flexbox;
  5254. display: flex;
  5255. -ms-flex-align: start;
  5256. align-items: flex-start;
  5257. -ms-flex-pack: justify;
  5258. justify-content: space-between;
  5259. padding: 1rem 1rem;
  5260. border-bottom: 1px solid #dee2e6;
  5261. border-top-left-radius: calc(0.3rem - 1px);
  5262. border-top-right-radius: calc(0.3rem - 1px);
  5263. }
  5264. .modal-header .close {
  5265. padding: 1rem 1rem;
  5266. margin: -1rem -1rem -1rem auto;
  5267. }
  5268. .modal-title {
  5269. margin-bottom: 0;
  5270. line-height: 1.5;
  5271. }
  5272. .modal-body {
  5273. position: relative;
  5274. -ms-flex: 1 1 auto;
  5275. flex: 1 1 auto;
  5276. padding: 1rem;
  5277. }
  5278. .modal-footer {
  5279. display: -ms-flexbox;
  5280. display: flex;
  5281. -ms-flex-wrap: wrap;
  5282. flex-wrap: wrap;
  5283. -ms-flex-align: center;
  5284. align-items: center;
  5285. -ms-flex-pack: end;
  5286. justify-content: flex-end;
  5287. padding: 0.75rem;
  5288. border-top: 1px solid #dee2e6;
  5289. border-bottom-right-radius: calc(0.3rem - 1px);
  5290. border-bottom-left-radius: calc(0.3rem - 1px);
  5291. }
  5292. .modal-footer > * {
  5293. margin: 0.25rem;
  5294. }
  5295. .modal-scrollbar-measure {
  5296. position: absolute;
  5297. top: -9999px;
  5298. width: 50px;
  5299. height: 50px;
  5300. overflow: scroll;
  5301. }
  5302. @media (min-width: 576px) {
  5303. .modal-dialog {
  5304. max-width: 500px;
  5305. margin: 1.75rem auto;
  5306. }
  5307. .modal-dialog-scrollable {
  5308. max-height: calc(100% - 3.5rem);
  5309. }
  5310. .modal-dialog-scrollable .modal-content {
  5311. max-height: calc(100vh - 3.5rem);
  5312. }
  5313. .modal-dialog-centered {
  5314. min-height: calc(100% - 3.5rem);
  5315. }
  5316. .modal-dialog-centered::before {
  5317. height: calc(100vh - 3.5rem);
  5318. height: -webkit-min-content;
  5319. height: -moz-min-content;
  5320. height: min-content;
  5321. }
  5322. .modal-sm {
  5323. max-width: 300px;
  5324. }
  5325. }
  5326. @media (min-width: 992px) {
  5327. .modal-lg,
  5328. .modal-xl {
  5329. max-width: 800px;
  5330. }
  5331. }
  5332. @media (min-width: 1200px) {
  5333. .modal-xl {
  5334. max-width: 1140px;
  5335. }
  5336. }
  5337. .tooltip {
  5338. position: absolute;
  5339. z-index: 1070;
  5340. display: block;
  5341. margin: 0;
  5342. 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";
  5343. font-style: normal;
  5344. font-weight: 400;
  5345. line-height: 1.5;
  5346. text-align: left;
  5347. text-align: start;
  5348. text-decoration: none;
  5349. text-shadow: none;
  5350. text-transform: none;
  5351. letter-spacing: normal;
  5352. word-break: normal;
  5353. word-spacing: normal;
  5354. white-space: normal;
  5355. line-break: auto;
  5356. font-size: 0.875rem;
  5357. word-wrap: break-word;
  5358. opacity: 0;
  5359. }
  5360. .tooltip.show {
  5361. opacity: 0.9;
  5362. }
  5363. .tooltip .arrow {
  5364. position: absolute;
  5365. display: block;
  5366. width: 0.8rem;
  5367. height: 0.4rem;
  5368. }
  5369. .tooltip .arrow::before {
  5370. position: absolute;
  5371. content: "";
  5372. border-color: transparent;
  5373. border-style: solid;
  5374. }
  5375. .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  5376. padding: 0.4rem 0;
  5377. }
  5378. .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  5379. bottom: 0;
  5380. }
  5381. .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  5382. top: 0;
  5383. border-width: 0.4rem 0.4rem 0;
  5384. border-top-color: #000;
  5385. }
  5386. .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  5387. padding: 0 0.4rem;
  5388. }
  5389. .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  5390. left: 0;
  5391. width: 0.4rem;
  5392. height: 0.8rem;
  5393. }
  5394. .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  5395. right: 0;
  5396. border-width: 0.4rem 0.4rem 0.4rem 0;
  5397. border-right-color: #000;
  5398. }
  5399. .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  5400. padding: 0.4rem 0;
  5401. }
  5402. .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  5403. top: 0;
  5404. }
  5405. .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  5406. bottom: 0;
  5407. border-width: 0 0.4rem 0.4rem;
  5408. border-bottom-color: #000;
  5409. }
  5410. .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  5411. padding: 0 0.4rem;
  5412. }
  5413. .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  5414. right: 0;
  5415. width: 0.4rem;
  5416. height: 0.8rem;
  5417. }
  5418. .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  5419. left: 0;
  5420. border-width: 0.4rem 0 0.4rem 0.4rem;
  5421. border-left-color: #000;
  5422. }
  5423. .tooltip-inner {
  5424. max-width: 200px;
  5425. padding: 0.25rem 0.5rem;
  5426. color: #fff;
  5427. text-align: center;
  5428. background-color: #000;
  5429. border-radius: 0.25rem;
  5430. }
  5431. .popover {
  5432. position: absolute;
  5433. top: 0;
  5434. left: 0;
  5435. z-index: 1060;
  5436. display: block;
  5437. max-width: 276px;
  5438. 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";
  5439. font-style: normal;
  5440. font-weight: 400;
  5441. line-height: 1.5;
  5442. text-align: left;
  5443. text-align: start;
  5444. text-decoration: none;
  5445. text-shadow: none;
  5446. text-transform: none;
  5447. letter-spacing: normal;
  5448. word-break: normal;
  5449. word-spacing: normal;
  5450. white-space: normal;
  5451. line-break: auto;
  5452. font-size: 0.875rem;
  5453. word-wrap: break-word;
  5454. background-color: #fff;
  5455. background-clip: padding-box;
  5456. border: 1px solid rgba(0, 0, 0, 0.2);
  5457. border-radius: 0.3rem;
  5458. }
  5459. .popover .arrow {
  5460. position: absolute;
  5461. display: block;
  5462. width: 1rem;
  5463. height: 0.5rem;
  5464. margin: 0 0.3rem;
  5465. }
  5466. .popover .arrow::before, .popover .arrow::after {
  5467. position: absolute;
  5468. display: block;
  5469. content: "";
  5470. border-color: transparent;
  5471. border-style: solid;
  5472. }
  5473. .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  5474. margin-bottom: 0.5rem;
  5475. }
  5476. .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  5477. bottom: calc(-0.5rem - 1px);
  5478. }
  5479. .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  5480. bottom: 0;
  5481. border-width: 0.5rem 0.5rem 0;
  5482. border-top-color: rgba(0, 0, 0, 0.25);
  5483. }
  5484. .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  5485. bottom: 1px;
  5486. border-width: 0.5rem 0.5rem 0;
  5487. border-top-color: #fff;
  5488. }
  5489. .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  5490. margin-left: 0.5rem;
  5491. }
  5492. .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  5493. left: calc(-0.5rem - 1px);
  5494. width: 0.5rem;
  5495. height: 1rem;
  5496. margin: 0.3rem 0;
  5497. }
  5498. .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  5499. left: 0;
  5500. border-width: 0.5rem 0.5rem 0.5rem 0;
  5501. border-right-color: rgba(0, 0, 0, 0.25);
  5502. }
  5503. .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  5504. left: 1px;
  5505. border-width: 0.5rem 0.5rem 0.5rem 0;
  5506. border-right-color: #fff;
  5507. }
  5508. .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  5509. margin-top: 0.5rem;
  5510. }
  5511. .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  5512. top: calc(-0.5rem - 1px);
  5513. }
  5514. .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  5515. top: 0;
  5516. border-width: 0 0.5rem 0.5rem 0.5rem;
  5517. border-bottom-color: rgba(0, 0, 0, 0.25);
  5518. }
  5519. .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  5520. top: 1px;
  5521. border-width: 0 0.5rem 0.5rem 0.5rem;
  5522. border-bottom-color: #fff;
  5523. }
  5524. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  5525. position: absolute;
  5526. top: 0;
  5527. left: 50%;
  5528. display: block;
  5529. width: 1rem;
  5530. margin-left: -0.5rem;
  5531. content: "";
  5532. border-bottom: 1px solid #f7f7f7;
  5533. }
  5534. .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  5535. margin-right: 0.5rem;
  5536. }
  5537. .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  5538. right: calc(-0.5rem - 1px);
  5539. width: 0.5rem;
  5540. height: 1rem;
  5541. margin: 0.3rem 0;
  5542. }
  5543. .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  5544. right: 0;
  5545. border-width: 0.5rem 0 0.5rem 0.5rem;
  5546. border-left-color: rgba(0, 0, 0, 0.25);
  5547. }
  5548. .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  5549. right: 1px;
  5550. border-width: 0.5rem 0 0.5rem 0.5rem;
  5551. border-left-color: #fff;
  5552. }
  5553. .popover-header {
  5554. padding: 0.5rem 0.75rem;
  5555. margin-bottom: 0;
  5556. font-size: 1rem;
  5557. background-color: #f7f7f7;
  5558. border-bottom: 1px solid #ebebeb;
  5559. border-top-left-radius: calc(0.3rem - 1px);
  5560. border-top-right-radius: calc(0.3rem - 1px);
  5561. }
  5562. .popover-header:empty {
  5563. display: none;
  5564. }
  5565. .popover-body {
  5566. padding: 0.5rem 0.75rem;
  5567. color: #212529;
  5568. }
  5569. .carousel {
  5570. position: relative;
  5571. }
  5572. .carousel.pointer-event {
  5573. -ms-touch-action: pan-y;
  5574. touch-action: pan-y;
  5575. }
  5576. .carousel-inner {
  5577. position: relative;
  5578. width: 100%;
  5579. overflow: hidden;
  5580. }
  5581. .carousel-inner::after {
  5582. display: block;
  5583. clear: both;
  5584. content: "";
  5585. }
  5586. .carousel-item {
  5587. position: relative;
  5588. display: none;
  5589. float: left;
  5590. width: 100%;
  5591. margin-right: -100%;
  5592. -webkit-backface-visibility: hidden;
  5593. backface-visibility: hidden;
  5594. transition: -webkit-transform 0.6s ease-in-out;
  5595. transition: transform 0.6s ease-in-out;
  5596. transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  5597. }
  5598. @media (prefers-reduced-motion: reduce) {
  5599. .carousel-item {
  5600. transition: none;
  5601. }
  5602. }
  5603. .carousel-item.active,
  5604. .carousel-item-next,
  5605. .carousel-item-prev {
  5606. display: block;
  5607. }
  5608. .carousel-item-next:not(.carousel-item-left),
  5609. .active.carousel-item-right {
  5610. -webkit-transform: translateX(100%);
  5611. transform: translateX(100%);
  5612. }
  5613. .carousel-item-prev:not(.carousel-item-right),
  5614. .active.carousel-item-left {
  5615. -webkit-transform: translateX(-100%);
  5616. transform: translateX(-100%);
  5617. }
  5618. .carousel-fade .carousel-item {
  5619. opacity: 0;
  5620. transition-property: opacity;
  5621. -webkit-transform: none;
  5622. transform: none;
  5623. }
  5624. .carousel-fade .carousel-item.active,
  5625. .carousel-fade .carousel-item-next.carousel-item-left,
  5626. .carousel-fade .carousel-item-prev.carousel-item-right {
  5627. z-index: 1;
  5628. opacity: 1;
  5629. }
  5630. .carousel-fade .active.carousel-item-left,
  5631. .carousel-fade .active.carousel-item-right {
  5632. z-index: 0;
  5633. opacity: 0;
  5634. transition: opacity 0s 0.6s;
  5635. }
  5636. @media (prefers-reduced-motion: reduce) {
  5637. .carousel-fade .active.carousel-item-left,
  5638. .carousel-fade .active.carousel-item-right {
  5639. transition: none;
  5640. }
  5641. }
  5642. .carousel-control-prev,
  5643. .carousel-control-next {
  5644. position: absolute;
  5645. top: 0;
  5646. bottom: 0;
  5647. z-index: 1;
  5648. display: -ms-flexbox;
  5649. display: flex;
  5650. -ms-flex-align: center;
  5651. align-items: center;
  5652. -ms-flex-pack: center;
  5653. justify-content: center;
  5654. width: 15%;
  5655. color: #fff;
  5656. text-align: center;
  5657. opacity: 0.5;
  5658. transition: opacity 0.15s ease;
  5659. }
  5660. @media (prefers-reduced-motion: reduce) {
  5661. .carousel-control-prev,
  5662. .carousel-control-next {
  5663. transition: none;
  5664. }
  5665. }
  5666. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5667. .carousel-control-next:hover,
  5668. .carousel-control-next:focus {
  5669. color: #fff;
  5670. text-decoration: none;
  5671. outline: 0;
  5672. opacity: 0.9;
  5673. }
  5674. .carousel-control-prev {
  5675. left: 0;
  5676. }
  5677. .carousel-control-next {
  5678. right: 0;
  5679. }
  5680. .carousel-control-prev-icon,
  5681. .carousel-control-next-icon {
  5682. display: inline-block;
  5683. width: 20px;
  5684. height: 20px;
  5685. background: 50% / 100% 100% no-repeat;
  5686. }
  5687. .carousel-control-prev-icon {
  5688. 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");
  5689. }
  5690. .carousel-control-next-icon {
  5691. 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");
  5692. }
  5693. .carousel-indicators {
  5694. position: absolute;
  5695. right: 0;
  5696. bottom: 0;
  5697. left: 0;
  5698. z-index: 15;
  5699. display: -ms-flexbox;
  5700. display: flex;
  5701. -ms-flex-pack: center;
  5702. justify-content: center;
  5703. padding-left: 0;
  5704. margin-right: 15%;
  5705. margin-left: 15%;
  5706. list-style: none;
  5707. }
  5708. .carousel-indicators li {
  5709. box-sizing: content-box;
  5710. -ms-flex: 0 1 auto;
  5711. flex: 0 1 auto;
  5712. width: 30px;
  5713. height: 3px;
  5714. margin-right: 3px;
  5715. margin-left: 3px;
  5716. text-indent: -999px;
  5717. cursor: pointer;
  5718. background-color: #fff;
  5719. background-clip: padding-box;
  5720. border-top: 10px solid transparent;
  5721. border-bottom: 10px solid transparent;
  5722. opacity: .5;
  5723. transition: opacity 0.6s ease;
  5724. }
  5725. @media (prefers-reduced-motion: reduce) {
  5726. .carousel-indicators li {
  5727. transition: none;
  5728. }
  5729. }
  5730. .carousel-indicators .active {
  5731. opacity: 1;
  5732. }
  5733. .carousel-caption {
  5734. position: absolute;
  5735. right: 15%;
  5736. bottom: 20px;
  5737. left: 15%;
  5738. z-index: 10;
  5739. padding-top: 20px;
  5740. padding-bottom: 20px;
  5741. color: #fff;
  5742. text-align: center;
  5743. }
  5744. @-webkit-keyframes spinner-border {
  5745. to {
  5746. -webkit-transform: rotate(360deg);
  5747. transform: rotate(360deg);
  5748. }
  5749. }
  5750. @keyframes spinner-border {
  5751. to {
  5752. -webkit-transform: rotate(360deg);
  5753. transform: rotate(360deg);
  5754. }
  5755. }
  5756. .spinner-border {
  5757. display: inline-block;
  5758. width: 2rem;
  5759. height: 2rem;
  5760. vertical-align: text-bottom;
  5761. border: 0.25em solid currentColor;
  5762. border-right-color: transparent;
  5763. border-radius: 50%;
  5764. -webkit-animation: .75s linear infinite spinner-border;
  5765. animation: .75s linear infinite spinner-border;
  5766. }
  5767. .spinner-border-sm {
  5768. width: 1rem;
  5769. height: 1rem;
  5770. border-width: 0.2em;
  5771. }
  5772. @-webkit-keyframes spinner-grow {
  5773. 0% {
  5774. -webkit-transform: scale(0);
  5775. transform: scale(0);
  5776. }
  5777. 50% {
  5778. opacity: 1;
  5779. -webkit-transform: none;
  5780. transform: none;
  5781. }
  5782. }
  5783. @keyframes spinner-grow {
  5784. 0% {
  5785. -webkit-transform: scale(0);
  5786. transform: scale(0);
  5787. }
  5788. 50% {
  5789. opacity: 1;
  5790. -webkit-transform: none;
  5791. transform: none;
  5792. }
  5793. }
  5794. .spinner-grow {
  5795. display: inline-block;
  5796. width: 2rem;
  5797. height: 2rem;
  5798. vertical-align: text-bottom;
  5799. background-color: currentColor;
  5800. border-radius: 50%;
  5801. opacity: 0;
  5802. -webkit-animation: .75s linear infinite spinner-grow;
  5803. animation: .75s linear infinite spinner-grow;
  5804. }
  5805. .spinner-grow-sm {
  5806. width: 1rem;
  5807. height: 1rem;
  5808. }
  5809. @media (prefers-reduced-motion: reduce) {
  5810. .spinner-border,
  5811. .spinner-grow {
  5812. -webkit-animation-duration: 1.5s;
  5813. animation-duration: 1.5s;
  5814. }
  5815. }
  5816. .align-baseline {
  5817. vertical-align: baseline !important;
  5818. }
  5819. .align-top {
  5820. vertical-align: top !important;
  5821. }
  5822. .align-middle {
  5823. vertical-align: middle !important;
  5824. }
  5825. .align-bottom {
  5826. vertical-align: bottom !important;
  5827. }
  5828. .align-text-bottom {
  5829. vertical-align: text-bottom !important;
  5830. }
  5831. .align-text-top {
  5832. vertical-align: text-top !important;
  5833. }
  5834. .bg-primary {
  5835. background-color: #007bff !important;
  5836. }
  5837. a.bg-primary:hover, a.bg-primary:focus,
  5838. button.bg-primary:hover,
  5839. button.bg-primary:focus {
  5840. background-color: #0062cc !important;
  5841. }
  5842. .bg-secondary {
  5843. background-color: #6c757d !important;
  5844. }
  5845. a.bg-secondary:hover, a.bg-secondary:focus,
  5846. button.bg-secondary:hover,
  5847. button.bg-secondary:focus {
  5848. background-color: #545b62 !important;
  5849. }
  5850. .bg-success {
  5851. background-color: #28a745 !important;
  5852. }
  5853. a.bg-success:hover, a.bg-success:focus,
  5854. button.bg-success:hover,
  5855. button.bg-success:focus {
  5856. background-color: #1e7e34 !important;
  5857. }
  5858. .bg-info {
  5859. background-color: #17a2b8 !important;
  5860. }
  5861. a.bg-info:hover, a.bg-info:focus,
  5862. button.bg-info:hover,
  5863. button.bg-info:focus {
  5864. background-color: #117a8b !important;
  5865. }
  5866. .bg-warning {
  5867. background-color: #ffc107 !important;
  5868. }
  5869. a.bg-warning:hover, a.bg-warning:focus,
  5870. button.bg-warning:hover,
  5871. button.bg-warning:focus {
  5872. background-color: #d39e00 !important;
  5873. }
  5874. .bg-danger {
  5875. background-color: #dc3545 !important;
  5876. }
  5877. a.bg-danger:hover, a.bg-danger:focus,
  5878. button.bg-danger:hover,
  5879. button.bg-danger:focus {
  5880. background-color: #bd2130 !important;
  5881. }
  5882. .bg-light {
  5883. background-color: #f8f9fa !important;
  5884. }
  5885. a.bg-light:hover, a.bg-light:focus,
  5886. button.bg-light:hover,
  5887. button.bg-light:focus {
  5888. background-color: #dae0e5 !important;
  5889. }
  5890. .bg-dark {
  5891. background-color: #343a40 !important;
  5892. }
  5893. a.bg-dark:hover, a.bg-dark:focus,
  5894. button.bg-dark:hover,
  5895. button.bg-dark:focus {
  5896. background-color: #1d2124 !important;
  5897. }
  5898. .bg-white {
  5899. background-color: #fff !important;
  5900. }
  5901. .bg-transparent {
  5902. background-color: transparent !important;
  5903. }
  5904. .border {
  5905. border: 1px solid #dee2e6 !important;
  5906. }
  5907. .border-top {
  5908. border-top: 1px solid #dee2e6 !important;
  5909. }
  5910. .border-right {
  5911. border-right: 1px solid #dee2e6 !important;
  5912. }
  5913. .border-bottom {
  5914. border-bottom: 1px solid #dee2e6 !important;
  5915. }
  5916. .border-left {
  5917. border-left: 1px solid #dee2e6 !important;
  5918. }
  5919. .border-0 {
  5920. border: 0 !important;
  5921. }
  5922. .border-top-0 {
  5923. border-top: 0 !important;
  5924. }
  5925. .border-right-0 {
  5926. border-right: 0 !important;
  5927. }
  5928. .border-bottom-0 {
  5929. border-bottom: 0 !important;
  5930. }
  5931. .border-left-0 {
  5932. border-left: 0 !important;
  5933. }
  5934. .border-primary {
  5935. border-color: #007bff !important;
  5936. }
  5937. .border-secondary {
  5938. border-color: #6c757d !important;
  5939. }
  5940. .border-success {
  5941. border-color: #28a745 !important;
  5942. }
  5943. .border-info {
  5944. border-color: #17a2b8 !important;
  5945. }
  5946. .border-warning {
  5947. border-color: #ffc107 !important;
  5948. }
  5949. .border-danger {
  5950. border-color: #dc3545 !important;
  5951. }
  5952. .border-light {
  5953. border-color: #f8f9fa !important;
  5954. }
  5955. .border-dark {
  5956. border-color: #343a40 !important;
  5957. }
  5958. .border-white {
  5959. border-color: #fff !important;
  5960. }
  5961. .rounded-sm {
  5962. border-radius: 0.2rem !important;
  5963. }
  5964. .rounded {
  5965. border-radius: 0.25rem !important;
  5966. }
  5967. .rounded-top {
  5968. border-top-left-radius: 0.25rem !important;
  5969. border-top-right-radius: 0.25rem !important;
  5970. }
  5971. .rounded-right {
  5972. border-top-right-radius: 0.25rem !important;
  5973. border-bottom-right-radius: 0.25rem !important;
  5974. }
  5975. .rounded-bottom {
  5976. border-bottom-right-radius: 0.25rem !important;
  5977. border-bottom-left-radius: 0.25rem !important;
  5978. }
  5979. .rounded-left {
  5980. border-top-left-radius: 0.25rem !important;
  5981. border-bottom-left-radius: 0.25rem !important;
  5982. }
  5983. .rounded-lg {
  5984. border-radius: 0.3rem !important;
  5985. }
  5986. .rounded-circle {
  5987. border-radius: 50% !important;
  5988. }
  5989. .rounded-pill {
  5990. border-radius: 50rem !important;
  5991. }
  5992. .rounded-0 {
  5993. border-radius: 0 !important;
  5994. }
  5995. .clearfix::after {
  5996. display: block;
  5997. clear: both;
  5998. content: "";
  5999. }
  6000. .d-none {
  6001. display: none !important;
  6002. }
  6003. .d-inline {
  6004. display: inline !important;
  6005. }
  6006. .d-inline-block {
  6007. display: inline-block !important;
  6008. }
  6009. .d-block {
  6010. display: block !important;
  6011. }
  6012. .d-table {
  6013. display: table !important;
  6014. }
  6015. .d-table-row {
  6016. display: table-row !important;
  6017. }
  6018. .d-table-cell {
  6019. display: table-cell !important;
  6020. }
  6021. .d-flex {
  6022. display: -ms-flexbox !important;
  6023. display: flex !important;
  6024. }
  6025. .d-inline-flex {
  6026. display: -ms-inline-flexbox !important;
  6027. display: inline-flex !important;
  6028. }
  6029. @media (min-width: 576px) {
  6030. .d-sm-none {
  6031. display: none !important;
  6032. }
  6033. .d-sm-inline {
  6034. display: inline !important;
  6035. }
  6036. .d-sm-inline-block {
  6037. display: inline-block !important;
  6038. }
  6039. .d-sm-block {
  6040. display: block !important;
  6041. }
  6042. .d-sm-table {
  6043. display: table !important;
  6044. }
  6045. .d-sm-table-row {
  6046. display: table-row !important;
  6047. }
  6048. .d-sm-table-cell {
  6049. display: table-cell !important;
  6050. }
  6051. .d-sm-flex {
  6052. display: -ms-flexbox !important;
  6053. display: flex !important;
  6054. }
  6055. .d-sm-inline-flex {
  6056. display: -ms-inline-flexbox !important;
  6057. display: inline-flex !important;
  6058. }
  6059. }
  6060. @media (min-width: 768px) {
  6061. .d-md-none {
  6062. display: none !important;
  6063. }
  6064. .d-md-inline {
  6065. display: inline !important;
  6066. }
  6067. .d-md-inline-block {
  6068. display: inline-block !important;
  6069. }
  6070. .d-md-block {
  6071. display: block !important;
  6072. }
  6073. .d-md-table {
  6074. display: table !important;
  6075. }
  6076. .d-md-table-row {
  6077. display: table-row !important;
  6078. }
  6079. .d-md-table-cell {
  6080. display: table-cell !important;
  6081. }
  6082. .d-md-flex {
  6083. display: -ms-flexbox !important;
  6084. display: flex !important;
  6085. }
  6086. .d-md-inline-flex {
  6087. display: -ms-inline-flexbox !important;
  6088. display: inline-flex !important;
  6089. }
  6090. }
  6091. @media (min-width: 992px) {
  6092. .d-lg-none {
  6093. display: none !important;
  6094. }
  6095. .d-lg-inline {
  6096. display: inline !important;
  6097. }
  6098. .d-lg-inline-block {
  6099. display: inline-block !important;
  6100. }
  6101. .d-lg-block {
  6102. display: block !important;
  6103. }
  6104. .d-lg-table {
  6105. display: table !important;
  6106. }
  6107. .d-lg-table-row {
  6108. display: table-row !important;
  6109. }
  6110. .d-lg-table-cell {
  6111. display: table-cell !important;
  6112. }
  6113. .d-lg-flex {
  6114. display: -ms-flexbox !important;
  6115. display: flex !important;
  6116. }
  6117. .d-lg-inline-flex {
  6118. display: -ms-inline-flexbox !important;
  6119. display: inline-flex !important;
  6120. }
  6121. }
  6122. @media (min-width: 1200px) {
  6123. .d-xl-none {
  6124. display: none !important;
  6125. }
  6126. .d-xl-inline {
  6127. display: inline !important;
  6128. }
  6129. .d-xl-inline-block {
  6130. display: inline-block !important;
  6131. }
  6132. .d-xl-block {
  6133. display: block !important;
  6134. }
  6135. .d-xl-table {
  6136. display: table !important;
  6137. }
  6138. .d-xl-table-row {
  6139. display: table-row !important;
  6140. }
  6141. .d-xl-table-cell {
  6142. display: table-cell !important;
  6143. }
  6144. .d-xl-flex {
  6145. display: -ms-flexbox !important;
  6146. display: flex !important;
  6147. }
  6148. .d-xl-inline-flex {
  6149. display: -ms-inline-flexbox !important;
  6150. display: inline-flex !important;
  6151. }
  6152. }
  6153. @media print {
  6154. .d-print-none {
  6155. display: none !important;
  6156. }
  6157. .d-print-inline {
  6158. display: inline !important;
  6159. }
  6160. .d-print-inline-block {
  6161. display: inline-block !important;
  6162. }
  6163. .d-print-block {
  6164. display: block !important;
  6165. }
  6166. .d-print-table {
  6167. display: table !important;
  6168. }
  6169. .d-print-table-row {
  6170. display: table-row !important;
  6171. }
  6172. .d-print-table-cell {
  6173. display: table-cell !important;
  6174. }
  6175. .d-print-flex {
  6176. display: -ms-flexbox !important;
  6177. display: flex !important;
  6178. }
  6179. .d-print-inline-flex {
  6180. display: -ms-inline-flexbox !important;
  6181. display: inline-flex !important;
  6182. }
  6183. }
  6184. .embed-responsive {
  6185. position: relative;
  6186. display: block;
  6187. width: 100%;
  6188. padding: 0;
  6189. overflow: hidden;
  6190. }
  6191. .embed-responsive::before {
  6192. display: block;
  6193. content: "";
  6194. }
  6195. .embed-responsive .embed-responsive-item,
  6196. .embed-responsive iframe,
  6197. .embed-responsive embed,
  6198. .embed-responsive object,
  6199. .embed-responsive video {
  6200. position: absolute;
  6201. top: 0;
  6202. bottom: 0;
  6203. left: 0;
  6204. width: 100%;
  6205. height: 100%;
  6206. border: 0;
  6207. }
  6208. .embed-responsive-21by9::before {
  6209. padding-top: 42.857143%;
  6210. }
  6211. .embed-responsive-16by9::before {
  6212. padding-top: 56.25%;
  6213. }
  6214. .embed-responsive-4by3::before {
  6215. padding-top: 75%;
  6216. }
  6217. .embed-responsive-1by1::before {
  6218. padding-top: 100%;
  6219. }
  6220. .flex-row {
  6221. -ms-flex-direction: row !important;
  6222. flex-direction: row !important;
  6223. }
  6224. .flex-column {
  6225. -ms-flex-direction: column !important;
  6226. flex-direction: column !important;
  6227. }
  6228. .flex-row-reverse {
  6229. -ms-flex-direction: row-reverse !important;
  6230. flex-direction: row-reverse !important;
  6231. }
  6232. .flex-column-reverse {
  6233. -ms-flex-direction: column-reverse !important;
  6234. flex-direction: column-reverse !important;
  6235. }
  6236. .flex-wrap {
  6237. -ms-flex-wrap: wrap !important;
  6238. flex-wrap: wrap !important;
  6239. }
  6240. .flex-nowrap {
  6241. -ms-flex-wrap: nowrap !important;
  6242. flex-wrap: nowrap !important;
  6243. }
  6244. .flex-wrap-reverse {
  6245. -ms-flex-wrap: wrap-reverse !important;
  6246. flex-wrap: wrap-reverse !important;
  6247. }
  6248. .flex-fill {
  6249. -ms-flex: 1 1 auto !important;
  6250. flex: 1 1 auto !important;
  6251. }
  6252. .flex-grow-0 {
  6253. -ms-flex-positive: 0 !important;
  6254. flex-grow: 0 !important;
  6255. }
  6256. .flex-grow-1 {
  6257. -ms-flex-positive: 1 !important;
  6258. flex-grow: 1 !important;
  6259. }
  6260. .flex-shrink-0 {
  6261. -ms-flex-negative: 0 !important;
  6262. flex-shrink: 0 !important;
  6263. }
  6264. .flex-shrink-1 {
  6265. -ms-flex-negative: 1 !important;
  6266. flex-shrink: 1 !important;
  6267. }
  6268. .justify-content-start {
  6269. -ms-flex-pack: start !important;
  6270. justify-content: flex-start !important;
  6271. }
  6272. .justify-content-end {
  6273. -ms-flex-pack: end !important;
  6274. justify-content: flex-end !important;
  6275. }
  6276. .justify-content-center {
  6277. -ms-flex-pack: center !important;
  6278. justify-content: center !important;
  6279. }
  6280. .justify-content-between {
  6281. -ms-flex-pack: justify !important;
  6282. justify-content: space-between !important;
  6283. }
  6284. .justify-content-around {
  6285. -ms-flex-pack: distribute !important;
  6286. justify-content: space-around !important;
  6287. }
  6288. .align-items-start {
  6289. -ms-flex-align: start !important;
  6290. align-items: flex-start !important;
  6291. }
  6292. .align-items-end {
  6293. -ms-flex-align: end !important;
  6294. align-items: flex-end !important;
  6295. }
  6296. .align-items-center {
  6297. -ms-flex-align: center !important;
  6298. align-items: center !important;
  6299. }
  6300. .align-items-baseline {
  6301. -ms-flex-align: baseline !important;
  6302. align-items: baseline !important;
  6303. }
  6304. .align-items-stretch {
  6305. -ms-flex-align: stretch !important;
  6306. align-items: stretch !important;
  6307. }
  6308. .align-content-start {
  6309. -ms-flex-line-pack: start !important;
  6310. align-content: flex-start !important;
  6311. }
  6312. .align-content-end {
  6313. -ms-flex-line-pack: end !important;
  6314. align-content: flex-end !important;
  6315. }
  6316. .align-content-center {
  6317. -ms-flex-line-pack: center !important;
  6318. align-content: center !important;
  6319. }
  6320. .align-content-between {
  6321. -ms-flex-line-pack: justify !important;
  6322. align-content: space-between !important;
  6323. }
  6324. .align-content-around {
  6325. -ms-flex-line-pack: distribute !important;
  6326. align-content: space-around !important;
  6327. }
  6328. .align-content-stretch {
  6329. -ms-flex-line-pack: stretch !important;
  6330. align-content: stretch !important;
  6331. }
  6332. .align-self-auto {
  6333. -ms-flex-item-align: auto !important;
  6334. align-self: auto !important;
  6335. }
  6336. .align-self-start {
  6337. -ms-flex-item-align: start !important;
  6338. align-self: flex-start !important;
  6339. }
  6340. .align-self-end {
  6341. -ms-flex-item-align: end !important;
  6342. align-self: flex-end !important;
  6343. }
  6344. .align-self-center {
  6345. -ms-flex-item-align: center !important;
  6346. align-self: center !important;
  6347. }
  6348. .align-self-baseline {
  6349. -ms-flex-item-align: baseline !important;
  6350. align-self: baseline !important;
  6351. }
  6352. .align-self-stretch {
  6353. -ms-flex-item-align: stretch !important;
  6354. align-self: stretch !important;
  6355. }
  6356. @media (min-width: 576px) {
  6357. .flex-sm-row {
  6358. -ms-flex-direction: row !important;
  6359. flex-direction: row !important;
  6360. }
  6361. .flex-sm-column {
  6362. -ms-flex-direction: column !important;
  6363. flex-direction: column !important;
  6364. }
  6365. .flex-sm-row-reverse {
  6366. -ms-flex-direction: row-reverse !important;
  6367. flex-direction: row-reverse !important;
  6368. }
  6369. .flex-sm-column-reverse {
  6370. -ms-flex-direction: column-reverse !important;
  6371. flex-direction: column-reverse !important;
  6372. }
  6373. .flex-sm-wrap {
  6374. -ms-flex-wrap: wrap !important;
  6375. flex-wrap: wrap !important;
  6376. }
  6377. .flex-sm-nowrap {
  6378. -ms-flex-wrap: nowrap !important;
  6379. flex-wrap: nowrap !important;
  6380. }
  6381. .flex-sm-wrap-reverse {
  6382. -ms-flex-wrap: wrap-reverse !important;
  6383. flex-wrap: wrap-reverse !important;
  6384. }
  6385. .flex-sm-fill {
  6386. -ms-flex: 1 1 auto !important;
  6387. flex: 1 1 auto !important;
  6388. }
  6389. .flex-sm-grow-0 {
  6390. -ms-flex-positive: 0 !important;
  6391. flex-grow: 0 !important;
  6392. }
  6393. .flex-sm-grow-1 {
  6394. -ms-flex-positive: 1 !important;
  6395. flex-grow: 1 !important;
  6396. }
  6397. .flex-sm-shrink-0 {
  6398. -ms-flex-negative: 0 !important;
  6399. flex-shrink: 0 !important;
  6400. }
  6401. .flex-sm-shrink-1 {
  6402. -ms-flex-negative: 1 !important;
  6403. flex-shrink: 1 !important;
  6404. }
  6405. .justify-content-sm-start {
  6406. -ms-flex-pack: start !important;
  6407. justify-content: flex-start !important;
  6408. }
  6409. .justify-content-sm-end {
  6410. -ms-flex-pack: end !important;
  6411. justify-content: flex-end !important;
  6412. }
  6413. .justify-content-sm-center {
  6414. -ms-flex-pack: center !important;
  6415. justify-content: center !important;
  6416. }
  6417. .justify-content-sm-between {
  6418. -ms-flex-pack: justify !important;
  6419. justify-content: space-between !important;
  6420. }
  6421. .justify-content-sm-around {
  6422. -ms-flex-pack: distribute !important;
  6423. justify-content: space-around !important;
  6424. }
  6425. .align-items-sm-start {
  6426. -ms-flex-align: start !important;
  6427. align-items: flex-start !important;
  6428. }
  6429. .align-items-sm-end {
  6430. -ms-flex-align: end !important;
  6431. align-items: flex-end !important;
  6432. }
  6433. .align-items-sm-center {
  6434. -ms-flex-align: center !important;
  6435. align-items: center !important;
  6436. }
  6437. .align-items-sm-baseline {
  6438. -ms-flex-align: baseline !important;
  6439. align-items: baseline !important;
  6440. }
  6441. .align-items-sm-stretch {
  6442. -ms-flex-align: stretch !important;
  6443. align-items: stretch !important;
  6444. }
  6445. .align-content-sm-start {
  6446. -ms-flex-line-pack: start !important;
  6447. align-content: flex-start !important;
  6448. }
  6449. .align-content-sm-end {
  6450. -ms-flex-line-pack: end !important;
  6451. align-content: flex-end !important;
  6452. }
  6453. .align-content-sm-center {
  6454. -ms-flex-line-pack: center !important;
  6455. align-content: center !important;
  6456. }
  6457. .align-content-sm-between {
  6458. -ms-flex-line-pack: justify !important;
  6459. align-content: space-between !important;
  6460. }
  6461. .align-content-sm-around {
  6462. -ms-flex-line-pack: distribute !important;
  6463. align-content: space-around !important;
  6464. }
  6465. .align-content-sm-stretch {
  6466. -ms-flex-line-pack: stretch !important;
  6467. align-content: stretch !important;
  6468. }
  6469. .align-self-sm-auto {
  6470. -ms-flex-item-align: auto !important;
  6471. align-self: auto !important;
  6472. }
  6473. .align-self-sm-start {
  6474. -ms-flex-item-align: start !important;
  6475. align-self: flex-start !important;
  6476. }
  6477. .align-self-sm-end {
  6478. -ms-flex-item-align: end !important;
  6479. align-self: flex-end !important;
  6480. }
  6481. .align-self-sm-center {
  6482. -ms-flex-item-align: center !important;
  6483. align-self: center !important;
  6484. }
  6485. .align-self-sm-baseline {
  6486. -ms-flex-item-align: baseline !important;
  6487. align-self: baseline !important;
  6488. }
  6489. .align-self-sm-stretch {
  6490. -ms-flex-item-align: stretch !important;
  6491. align-self: stretch !important;
  6492. }
  6493. }
  6494. @media (min-width: 768px) {
  6495. .flex-md-row {
  6496. -ms-flex-direction: row !important;
  6497. flex-direction: row !important;
  6498. }
  6499. .flex-md-column {
  6500. -ms-flex-direction: column !important;
  6501. flex-direction: column !important;
  6502. }
  6503. .flex-md-row-reverse {
  6504. -ms-flex-direction: row-reverse !important;
  6505. flex-direction: row-reverse !important;
  6506. }
  6507. .flex-md-column-reverse {
  6508. -ms-flex-direction: column-reverse !important;
  6509. flex-direction: column-reverse !important;
  6510. }
  6511. .flex-md-wrap {
  6512. -ms-flex-wrap: wrap !important;
  6513. flex-wrap: wrap !important;
  6514. }
  6515. .flex-md-nowrap {
  6516. -ms-flex-wrap: nowrap !important;
  6517. flex-wrap: nowrap !important;
  6518. }
  6519. .flex-md-wrap-reverse {
  6520. -ms-flex-wrap: wrap-reverse !important;
  6521. flex-wrap: wrap-reverse !important;
  6522. }
  6523. .flex-md-fill {
  6524. -ms-flex: 1 1 auto !important;
  6525. flex: 1 1 auto !important;
  6526. }
  6527. .flex-md-grow-0 {
  6528. -ms-flex-positive: 0 !important;
  6529. flex-grow: 0 !important;
  6530. }
  6531. .flex-md-grow-1 {
  6532. -ms-flex-positive: 1 !important;
  6533. flex-grow: 1 !important;
  6534. }
  6535. .flex-md-shrink-0 {
  6536. -ms-flex-negative: 0 !important;
  6537. flex-shrink: 0 !important;
  6538. }
  6539. .flex-md-shrink-1 {
  6540. -ms-flex-negative: 1 !important;
  6541. flex-shrink: 1 !important;
  6542. }
  6543. .justify-content-md-start {
  6544. -ms-flex-pack: start !important;
  6545. justify-content: flex-start !important;
  6546. }
  6547. .justify-content-md-end {
  6548. -ms-flex-pack: end !important;
  6549. justify-content: flex-end !important;
  6550. }
  6551. .justify-content-md-center {
  6552. -ms-flex-pack: center !important;
  6553. justify-content: center !important;
  6554. }
  6555. .justify-content-md-between {
  6556. -ms-flex-pack: justify !important;
  6557. justify-content: space-between !important;
  6558. }
  6559. .justify-content-md-around {
  6560. -ms-flex-pack: distribute !important;
  6561. justify-content: space-around !important;
  6562. }
  6563. .align-items-md-start {
  6564. -ms-flex-align: start !important;
  6565. align-items: flex-start !important;
  6566. }
  6567. .align-items-md-end {
  6568. -ms-flex-align: end !important;
  6569. align-items: flex-end !important;
  6570. }
  6571. .align-items-md-center {
  6572. -ms-flex-align: center !important;
  6573. align-items: center !important;
  6574. }
  6575. .align-items-md-baseline {
  6576. -ms-flex-align: baseline !important;
  6577. align-items: baseline !important;
  6578. }
  6579. .align-items-md-stretch {
  6580. -ms-flex-align: stretch !important;
  6581. align-items: stretch !important;
  6582. }
  6583. .align-content-md-start {
  6584. -ms-flex-line-pack: start !important;
  6585. align-content: flex-start !important;
  6586. }
  6587. .align-content-md-end {
  6588. -ms-flex-line-pack: end !important;
  6589. align-content: flex-end !important;
  6590. }
  6591. .align-content-md-center {
  6592. -ms-flex-line-pack: center !important;
  6593. align-content: center !important;
  6594. }
  6595. .align-content-md-between {
  6596. -ms-flex-line-pack: justify !important;
  6597. align-content: space-between !important;
  6598. }
  6599. .align-content-md-around {
  6600. -ms-flex-line-pack: distribute !important;
  6601. align-content: space-around !important;
  6602. }
  6603. .align-content-md-stretch {
  6604. -ms-flex-line-pack: stretch !important;
  6605. align-content: stretch !important;
  6606. }
  6607. .align-self-md-auto {
  6608. -ms-flex-item-align: auto !important;
  6609. align-self: auto !important;
  6610. }
  6611. .align-self-md-start {
  6612. -ms-flex-item-align: start !important;
  6613. align-self: flex-start !important;
  6614. }
  6615. .align-self-md-end {
  6616. -ms-flex-item-align: end !important;
  6617. align-self: flex-end !important;
  6618. }
  6619. .align-self-md-center {
  6620. -ms-flex-item-align: center !important;
  6621. align-self: center !important;
  6622. }
  6623. .align-self-md-baseline {
  6624. -ms-flex-item-align: baseline !important;
  6625. align-self: baseline !important;
  6626. }
  6627. .align-self-md-stretch {
  6628. -ms-flex-item-align: stretch !important;
  6629. align-self: stretch !important;
  6630. }
  6631. }
  6632. @media (min-width: 992px) {
  6633. .flex-lg-row {
  6634. -ms-flex-direction: row !important;
  6635. flex-direction: row !important;
  6636. }
  6637. .flex-lg-column {
  6638. -ms-flex-direction: column !important;
  6639. flex-direction: column !important;
  6640. }
  6641. .flex-lg-row-reverse {
  6642. -ms-flex-direction: row-reverse !important;
  6643. flex-direction: row-reverse !important;
  6644. }
  6645. .flex-lg-column-reverse {
  6646. -ms-flex-direction: column-reverse !important;
  6647. flex-direction: column-reverse !important;
  6648. }
  6649. .flex-lg-wrap {
  6650. -ms-flex-wrap: wrap !important;
  6651. flex-wrap: wrap !important;
  6652. }
  6653. .flex-lg-nowrap {
  6654. -ms-flex-wrap: nowrap !important;
  6655. flex-wrap: nowrap !important;
  6656. }
  6657. .flex-lg-wrap-reverse {
  6658. -ms-flex-wrap: wrap-reverse !important;
  6659. flex-wrap: wrap-reverse !important;
  6660. }
  6661. .flex-lg-fill {
  6662. -ms-flex: 1 1 auto !important;
  6663. flex: 1 1 auto !important;
  6664. }
  6665. .flex-lg-grow-0 {
  6666. -ms-flex-positive: 0 !important;
  6667. flex-grow: 0 !important;
  6668. }
  6669. .flex-lg-grow-1 {
  6670. -ms-flex-positive: 1 !important;
  6671. flex-grow: 1 !important;
  6672. }
  6673. .flex-lg-shrink-0 {
  6674. -ms-flex-negative: 0 !important;
  6675. flex-shrink: 0 !important;
  6676. }
  6677. .flex-lg-shrink-1 {
  6678. -ms-flex-negative: 1 !important;
  6679. flex-shrink: 1 !important;
  6680. }
  6681. .justify-content-lg-start {
  6682. -ms-flex-pack: start !important;
  6683. justify-content: flex-start !important;
  6684. }
  6685. .justify-content-lg-end {
  6686. -ms-flex-pack: end !important;
  6687. justify-content: flex-end !important;
  6688. }
  6689. .justify-content-lg-center {
  6690. -ms-flex-pack: center !important;
  6691. justify-content: center !important;
  6692. }
  6693. .justify-content-lg-between {
  6694. -ms-flex-pack: justify !important;
  6695. justify-content: space-between !important;
  6696. }
  6697. .justify-content-lg-around {
  6698. -ms-flex-pack: distribute !important;
  6699. justify-content: space-around !important;
  6700. }
  6701. .align-items-lg-start {
  6702. -ms-flex-align: start !important;
  6703. align-items: flex-start !important;
  6704. }
  6705. .align-items-lg-end {
  6706. -ms-flex-align: end !important;
  6707. align-items: flex-end !important;
  6708. }
  6709. .align-items-lg-center {
  6710. -ms-flex-align: center !important;
  6711. align-items: center !important;
  6712. }
  6713. .align-items-lg-baseline {
  6714. -ms-flex-align: baseline !important;
  6715. align-items: baseline !important;
  6716. }
  6717. .align-items-lg-stretch {
  6718. -ms-flex-align: stretch !important;
  6719. align-items: stretch !important;
  6720. }
  6721. .align-content-lg-start {
  6722. -ms-flex-line-pack: start !important;
  6723. align-content: flex-start !important;
  6724. }
  6725. .align-content-lg-end {
  6726. -ms-flex-line-pack: end !important;
  6727. align-content: flex-end !important;
  6728. }
  6729. .align-content-lg-center {
  6730. -ms-flex-line-pack: center !important;
  6731. align-content: center !important;
  6732. }
  6733. .align-content-lg-between {
  6734. -ms-flex-line-pack: justify !important;
  6735. align-content: space-between !important;
  6736. }
  6737. .align-content-lg-around {
  6738. -ms-flex-line-pack: distribute !important;
  6739. align-content: space-around !important;
  6740. }
  6741. .align-content-lg-stretch {
  6742. -ms-flex-line-pack: stretch !important;
  6743. align-content: stretch !important;
  6744. }
  6745. .align-self-lg-auto {
  6746. -ms-flex-item-align: auto !important;
  6747. align-self: auto !important;
  6748. }
  6749. .align-self-lg-start {
  6750. -ms-flex-item-align: start !important;
  6751. align-self: flex-start !important;
  6752. }
  6753. .align-self-lg-end {
  6754. -ms-flex-item-align: end !important;
  6755. align-self: flex-end !important;
  6756. }
  6757. .align-self-lg-center {
  6758. -ms-flex-item-align: center !important;
  6759. align-self: center !important;
  6760. }
  6761. .align-self-lg-baseline {
  6762. -ms-flex-item-align: baseline !important;
  6763. align-self: baseline !important;
  6764. }
  6765. .align-self-lg-stretch {
  6766. -ms-flex-item-align: stretch !important;
  6767. align-self: stretch !important;
  6768. }
  6769. }
  6770. @media (min-width: 1200px) {
  6771. .flex-xl-row {
  6772. -ms-flex-direction: row !important;
  6773. flex-direction: row !important;
  6774. }
  6775. .flex-xl-column {
  6776. -ms-flex-direction: column !important;
  6777. flex-direction: column !important;
  6778. }
  6779. .flex-xl-row-reverse {
  6780. -ms-flex-direction: row-reverse !important;
  6781. flex-direction: row-reverse !important;
  6782. }
  6783. .flex-xl-column-reverse {
  6784. -ms-flex-direction: column-reverse !important;
  6785. flex-direction: column-reverse !important;
  6786. }
  6787. .flex-xl-wrap {
  6788. -ms-flex-wrap: wrap !important;
  6789. flex-wrap: wrap !important;
  6790. }
  6791. .flex-xl-nowrap {
  6792. -ms-flex-wrap: nowrap !important;
  6793. flex-wrap: nowrap !important;
  6794. }
  6795. .flex-xl-wrap-reverse {
  6796. -ms-flex-wrap: wrap-reverse !important;
  6797. flex-wrap: wrap-reverse !important;
  6798. }
  6799. .flex-xl-fill {
  6800. -ms-flex: 1 1 auto !important;
  6801. flex: 1 1 auto !important;
  6802. }
  6803. .flex-xl-grow-0 {
  6804. -ms-flex-positive: 0 !important;
  6805. flex-grow: 0 !important;
  6806. }
  6807. .flex-xl-grow-1 {
  6808. -ms-flex-positive: 1 !important;
  6809. flex-grow: 1 !important;
  6810. }
  6811. .flex-xl-shrink-0 {
  6812. -ms-flex-negative: 0 !important;
  6813. flex-shrink: 0 !important;
  6814. }
  6815. .flex-xl-shrink-1 {
  6816. -ms-flex-negative: 1 !important;
  6817. flex-shrink: 1 !important;
  6818. }
  6819. .justify-content-xl-start {
  6820. -ms-flex-pack: start !important;
  6821. justify-content: flex-start !important;
  6822. }
  6823. .justify-content-xl-end {
  6824. -ms-flex-pack: end !important;
  6825. justify-content: flex-end !important;
  6826. }
  6827. .justify-content-xl-center {
  6828. -ms-flex-pack: center !important;
  6829. justify-content: center !important;
  6830. }
  6831. .justify-content-xl-between {
  6832. -ms-flex-pack: justify !important;
  6833. justify-content: space-between !important;
  6834. }
  6835. .justify-content-xl-around {
  6836. -ms-flex-pack: distribute !important;
  6837. justify-content: space-around !important;
  6838. }
  6839. .align-items-xl-start {
  6840. -ms-flex-align: start !important;
  6841. align-items: flex-start !important;
  6842. }
  6843. .align-items-xl-end {
  6844. -ms-flex-align: end !important;
  6845. align-items: flex-end !important;
  6846. }
  6847. .align-items-xl-center {
  6848. -ms-flex-align: center !important;
  6849. align-items: center !important;
  6850. }
  6851. .align-items-xl-baseline {
  6852. -ms-flex-align: baseline !important;
  6853. align-items: baseline !important;
  6854. }
  6855. .align-items-xl-stretch {
  6856. -ms-flex-align: stretch !important;
  6857. align-items: stretch !important;
  6858. }
  6859. .align-content-xl-start {
  6860. -ms-flex-line-pack: start !important;
  6861. align-content: flex-start !important;
  6862. }
  6863. .align-content-xl-end {
  6864. -ms-flex-line-pack: end !important;
  6865. align-content: flex-end !important;
  6866. }
  6867. .align-content-xl-center {
  6868. -ms-flex-line-pack: center !important;
  6869. align-content: center !important;
  6870. }
  6871. .align-content-xl-between {
  6872. -ms-flex-line-pack: justify !important;
  6873. align-content: space-between !important;
  6874. }
  6875. .align-content-xl-around {
  6876. -ms-flex-line-pack: distribute !important;
  6877. align-content: space-around !important;
  6878. }
  6879. .align-content-xl-stretch {
  6880. -ms-flex-line-pack: stretch !important;
  6881. align-content: stretch !important;
  6882. }
  6883. .align-self-xl-auto {
  6884. -ms-flex-item-align: auto !important;
  6885. align-self: auto !important;
  6886. }
  6887. .align-self-xl-start {
  6888. -ms-flex-item-align: start !important;
  6889. align-self: flex-start !important;
  6890. }
  6891. .align-self-xl-end {
  6892. -ms-flex-item-align: end !important;
  6893. align-self: flex-end !important;
  6894. }
  6895. .align-self-xl-center {
  6896. -ms-flex-item-align: center !important;
  6897. align-self: center !important;
  6898. }
  6899. .align-self-xl-baseline {
  6900. -ms-flex-item-align: baseline !important;
  6901. align-self: baseline !important;
  6902. }
  6903. .align-self-xl-stretch {
  6904. -ms-flex-item-align: stretch !important;
  6905. align-self: stretch !important;
  6906. }
  6907. }
  6908. .float-left {
  6909. float: left !important;
  6910. }
  6911. .float-right {
  6912. float: right !important;
  6913. }
  6914. .float-none {
  6915. float: none !important;
  6916. }
  6917. @media (min-width: 576px) {
  6918. .float-sm-left {
  6919. float: left !important;
  6920. }
  6921. .float-sm-right {
  6922. float: right !important;
  6923. }
  6924. .float-sm-none {
  6925. float: none !important;
  6926. }
  6927. }
  6928. @media (min-width: 768px) {
  6929. .float-md-left {
  6930. float: left !important;
  6931. }
  6932. .float-md-right {
  6933. float: right !important;
  6934. }
  6935. .float-md-none {
  6936. float: none !important;
  6937. }
  6938. }
  6939. @media (min-width: 992px) {
  6940. .float-lg-left {
  6941. float: left !important;
  6942. }
  6943. .float-lg-right {
  6944. float: right !important;
  6945. }
  6946. .float-lg-none {
  6947. float: none !important;
  6948. }
  6949. }
  6950. @media (min-width: 1200px) {
  6951. .float-xl-left {
  6952. float: left !important;
  6953. }
  6954. .float-xl-right {
  6955. float: right !important;
  6956. }
  6957. .float-xl-none {
  6958. float: none !important;
  6959. }
  6960. }
  6961. .user-select-all {
  6962. -webkit-user-select: all !important;
  6963. -moz-user-select: all !important;
  6964. user-select: all !important;
  6965. }
  6966. .user-select-auto {
  6967. -webkit-user-select: auto !important;
  6968. -moz-user-select: auto !important;
  6969. -ms-user-select: auto !important;
  6970. user-select: auto !important;
  6971. }
  6972. .user-select-none {
  6973. -webkit-user-select: none !important;
  6974. -moz-user-select: none !important;
  6975. -ms-user-select: none !important;
  6976. user-select: none !important;
  6977. }
  6978. .overflow-auto {
  6979. overflow: auto !important;
  6980. }
  6981. .overflow-hidden {
  6982. overflow: hidden !important;
  6983. }
  6984. .position-static {
  6985. position: static !important;
  6986. }
  6987. .position-relative {
  6988. position: relative !important;
  6989. }
  6990. .position-absolute {
  6991. position: absolute !important;
  6992. }
  6993. .position-fixed {
  6994. position: fixed !important;
  6995. }
  6996. .position-sticky {
  6997. position: -webkit-sticky !important;
  6998. position: sticky !important;
  6999. }
  7000. .fixed-top {
  7001. position: fixed;
  7002. top: 0;
  7003. right: 0;
  7004. left: 0;
  7005. z-index: 1030;
  7006. }
  7007. .fixed-bottom {
  7008. position: fixed;
  7009. right: 0;
  7010. bottom: 0;
  7011. left: 0;
  7012. z-index: 1030;
  7013. }
  7014. @supports ((position: -webkit-sticky) or (position: sticky)) {
  7015. .sticky-top {
  7016. position: -webkit-sticky;
  7017. position: sticky;
  7018. top: 0;
  7019. z-index: 1020;
  7020. }
  7021. }
  7022. .sr-only {
  7023. position: absolute;
  7024. width: 1px;
  7025. height: 1px;
  7026. padding: 0;
  7027. margin: -1px;
  7028. overflow: hidden;
  7029. clip: rect(0, 0, 0, 0);
  7030. white-space: nowrap;
  7031. border: 0;
  7032. }
  7033. .sr-only-focusable:active, .sr-only-focusable:focus {
  7034. position: static;
  7035. width: auto;
  7036. height: auto;
  7037. overflow: visible;
  7038. clip: auto;
  7039. white-space: normal;
  7040. }
  7041. .shadow-sm {
  7042. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7043. }
  7044. .shadow {
  7045. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  7046. }
  7047. .shadow-lg {
  7048. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7049. }
  7050. .shadow-none {
  7051. box-shadow: none !important;
  7052. }
  7053. .w-25 {
  7054. width: 25% !important;
  7055. }
  7056. .w-50 {
  7057. width: 50% !important;
  7058. }
  7059. .w-75 {
  7060. width: 75% !important;
  7061. }
  7062. .w-100 {
  7063. width: 100% !important;
  7064. }
  7065. .w-auto {
  7066. width: auto !important;
  7067. }
  7068. .h-25 {
  7069. height: 25% !important;
  7070. }
  7071. .h-50 {
  7072. height: 50% !important;
  7073. }
  7074. .h-75 {
  7075. height: 75% !important;
  7076. }
  7077. .h-100 {
  7078. height: 100% !important;
  7079. }
  7080. .h-auto {
  7081. height: auto !important;
  7082. }
  7083. .mw-100 {
  7084. max-width: 100% !important;
  7085. }
  7086. .mh-100 {
  7087. max-height: 100% !important;
  7088. }
  7089. .min-vw-100 {
  7090. min-width: 100vw !important;
  7091. }
  7092. .min-vh-100 {
  7093. min-height: 100vh !important;
  7094. }
  7095. .vw-100 {
  7096. width: 100vw !important;
  7097. }
  7098. .vh-100 {
  7099. height: 100vh !important;
  7100. }
  7101. .m-0 {
  7102. margin: 0 !important;
  7103. }
  7104. .mt-0,
  7105. .my-0 {
  7106. margin-top: 0 !important;
  7107. }
  7108. .mr-0,
  7109. .mx-0 {
  7110. margin-right: 0 !important;
  7111. }
  7112. .mb-0,
  7113. .my-0 {
  7114. margin-bottom: 0 !important;
  7115. }
  7116. .ml-0,
  7117. .mx-0 {
  7118. margin-left: 0 !important;
  7119. }
  7120. .m-1 {
  7121. margin: 0.25rem !important;
  7122. }
  7123. .mt-1,
  7124. .my-1 {
  7125. margin-top: 0.25rem !important;
  7126. }
  7127. .mr-1,
  7128. .mx-1 {
  7129. margin-right: 0.25rem !important;
  7130. }
  7131. .mb-1,
  7132. .my-1 {
  7133. margin-bottom: 0.25rem !important;
  7134. }
  7135. .ml-1,
  7136. .mx-1 {
  7137. margin-left: 0.25rem !important;
  7138. }
  7139. .m-2 {
  7140. margin: 0.5rem !important;
  7141. }
  7142. .mt-2,
  7143. .my-2 {
  7144. margin-top: 0.5rem !important;
  7145. }
  7146. .mr-2,
  7147. .mx-2 {
  7148. margin-right: 0.5rem !important;
  7149. }
  7150. .mb-2,
  7151. .my-2 {
  7152. margin-bottom: 0.5rem !important;
  7153. }
  7154. .ml-2,
  7155. .mx-2 {
  7156. margin-left: 0.5rem !important;
  7157. }
  7158. .m-3 {
  7159. margin: 1rem !important;
  7160. }
  7161. .mt-3,
  7162. .my-3 {
  7163. margin-top: 1rem !important;
  7164. }
  7165. .mr-3,
  7166. .mx-3 {
  7167. margin-right: 1rem !important;
  7168. }
  7169. .mb-3,
  7170. .my-3 {
  7171. margin-bottom: 1rem !important;
  7172. }
  7173. .ml-3,
  7174. .mx-3 {
  7175. margin-left: 1rem !important;
  7176. }
  7177. .m-4 {
  7178. margin: 1.5rem !important;
  7179. }
  7180. .mt-4,
  7181. .my-4 {
  7182. margin-top: 1.5rem !important;
  7183. }
  7184. .mr-4,
  7185. .mx-4 {
  7186. margin-right: 1.5rem !important;
  7187. }
  7188. .mb-4,
  7189. .my-4 {
  7190. margin-bottom: 1.5rem !important;
  7191. }
  7192. .ml-4,
  7193. .mx-4 {
  7194. margin-left: 1.5rem !important;
  7195. }
  7196. .m-5 {
  7197. margin: 3rem !important;
  7198. }
  7199. .mt-5,
  7200. .my-5 {
  7201. margin-top: 3rem !important;
  7202. }
  7203. .mr-5,
  7204. .mx-5 {
  7205. margin-right: 3rem !important;
  7206. }
  7207. .mb-5,
  7208. .my-5 {
  7209. margin-bottom: 3rem !important;
  7210. }
  7211. .ml-5,
  7212. .mx-5 {
  7213. margin-left: 3rem !important;
  7214. }
  7215. .p-0 {
  7216. padding: 0 !important;
  7217. }
  7218. .pt-0,
  7219. .py-0 {
  7220. padding-top: 0 !important;
  7221. }
  7222. .pr-0,
  7223. .px-0 {
  7224. padding-right: 0 !important;
  7225. }
  7226. .pb-0,
  7227. .py-0 {
  7228. padding-bottom: 0 !important;
  7229. }
  7230. .pl-0,
  7231. .px-0 {
  7232. padding-left: 0 !important;
  7233. }
  7234. .p-1 {
  7235. padding: 0.25rem !important;
  7236. }
  7237. .pt-1,
  7238. .py-1 {
  7239. padding-top: 0.25rem !important;
  7240. }
  7241. .pr-1,
  7242. .px-1 {
  7243. padding-right: 0.25rem !important;
  7244. }
  7245. .pb-1,
  7246. .py-1 {
  7247. padding-bottom: 0.25rem !important;
  7248. }
  7249. .pl-1,
  7250. .px-1 {
  7251. padding-left: 0.25rem !important;
  7252. }
  7253. .p-2 {
  7254. padding: 0.5rem !important;
  7255. }
  7256. .pt-2,
  7257. .py-2 {
  7258. padding-top: 0.5rem !important;
  7259. }
  7260. .pr-2,
  7261. .px-2 {
  7262. padding-right: 0.5rem !important;
  7263. }
  7264. .pb-2,
  7265. .py-2 {
  7266. padding-bottom: 0.5rem !important;
  7267. }
  7268. .pl-2,
  7269. .px-2 {
  7270. padding-left: 0.5rem !important;
  7271. }
  7272. .p-3 {
  7273. padding: 1rem !important;
  7274. }
  7275. .pt-3,
  7276. .py-3 {
  7277. padding-top: 1rem !important;
  7278. }
  7279. .pr-3,
  7280. .px-3 {
  7281. padding-right: 1rem !important;
  7282. }
  7283. .pb-3,
  7284. .py-3 {
  7285. padding-bottom: 1rem !important;
  7286. }
  7287. .pl-3,
  7288. .px-3 {
  7289. padding-left: 1rem !important;
  7290. }
  7291. .p-4 {
  7292. padding: 1.5rem !important;
  7293. }
  7294. .pt-4,
  7295. .py-4 {
  7296. padding-top: 1.5rem !important;
  7297. }
  7298. .pr-4,
  7299. .px-4 {
  7300. padding-right: 1.5rem !important;
  7301. }
  7302. .pb-4,
  7303. .py-4 {
  7304. padding-bottom: 1.5rem !important;
  7305. }
  7306. .pl-4,
  7307. .px-4 {
  7308. padding-left: 1.5rem !important;
  7309. }
  7310. .p-5 {
  7311. padding: 3rem !important;
  7312. }
  7313. .pt-5,
  7314. .py-5 {
  7315. padding-top: 3rem !important;
  7316. }
  7317. .pr-5,
  7318. .px-5 {
  7319. padding-right: 3rem !important;
  7320. }
  7321. .pb-5,
  7322. .py-5 {
  7323. padding-bottom: 3rem !important;
  7324. }
  7325. .pl-5,
  7326. .px-5 {
  7327. padding-left: 3rem !important;
  7328. }
  7329. .m-n1 {
  7330. margin: -0.25rem !important;
  7331. }
  7332. .mt-n1,
  7333. .my-n1 {
  7334. margin-top: -0.25rem !important;
  7335. }
  7336. .mr-n1,
  7337. .mx-n1 {
  7338. margin-right: -0.25rem !important;
  7339. }
  7340. .mb-n1,
  7341. .my-n1 {
  7342. margin-bottom: -0.25rem !important;
  7343. }
  7344. .ml-n1,
  7345. .mx-n1 {
  7346. margin-left: -0.25rem !important;
  7347. }
  7348. .m-n2 {
  7349. margin: -0.5rem !important;
  7350. }
  7351. .mt-n2,
  7352. .my-n2 {
  7353. margin-top: -0.5rem !important;
  7354. }
  7355. .mr-n2,
  7356. .mx-n2 {
  7357. margin-right: -0.5rem !important;
  7358. }
  7359. .mb-n2,
  7360. .my-n2 {
  7361. margin-bottom: -0.5rem !important;
  7362. }
  7363. .ml-n2,
  7364. .mx-n2 {
  7365. margin-left: -0.5rem !important;
  7366. }
  7367. .m-n3 {
  7368. margin: -1rem !important;
  7369. }
  7370. .mt-n3,
  7371. .my-n3 {
  7372. margin-top: -1rem !important;
  7373. }
  7374. .mr-n3,
  7375. .mx-n3 {
  7376. margin-right: -1rem !important;
  7377. }
  7378. .mb-n3,
  7379. .my-n3 {
  7380. margin-bottom: -1rem !important;
  7381. }
  7382. .ml-n3,
  7383. .mx-n3 {
  7384. margin-left: -1rem !important;
  7385. }
  7386. .m-n4 {
  7387. margin: -1.5rem !important;
  7388. }
  7389. .mt-n4,
  7390. .my-n4 {
  7391. margin-top: -1.5rem !important;
  7392. }
  7393. .mr-n4,
  7394. .mx-n4 {
  7395. margin-right: -1.5rem !important;
  7396. }
  7397. .mb-n4,
  7398. .my-n4 {
  7399. margin-bottom: -1.5rem !important;
  7400. }
  7401. .ml-n4,
  7402. .mx-n4 {
  7403. margin-left: -1.5rem !important;
  7404. }
  7405. .m-n5 {
  7406. margin: -3rem !important;
  7407. }
  7408. .mt-n5,
  7409. .my-n5 {
  7410. margin-top: -3rem !important;
  7411. }
  7412. .mr-n5,
  7413. .mx-n5 {
  7414. margin-right: -3rem !important;
  7415. }
  7416. .mb-n5,
  7417. .my-n5 {
  7418. margin-bottom: -3rem !important;
  7419. }
  7420. .ml-n5,
  7421. .mx-n5 {
  7422. margin-left: -3rem !important;
  7423. }
  7424. .m-auto {
  7425. margin: auto !important;
  7426. }
  7427. .mt-auto,
  7428. .my-auto {
  7429. margin-top: auto !important;
  7430. }
  7431. .mr-auto,
  7432. .mx-auto {
  7433. margin-right: auto !important;
  7434. }
  7435. .mb-auto,
  7436. .my-auto {
  7437. margin-bottom: auto !important;
  7438. }
  7439. .ml-auto,
  7440. .mx-auto {
  7441. margin-left: auto !important;
  7442. }
  7443. @media (min-width: 576px) {
  7444. .m-sm-0 {
  7445. margin: 0 !important;
  7446. }
  7447. .mt-sm-0,
  7448. .my-sm-0 {
  7449. margin-top: 0 !important;
  7450. }
  7451. .mr-sm-0,
  7452. .mx-sm-0 {
  7453. margin-right: 0 !important;
  7454. }
  7455. .mb-sm-0,
  7456. .my-sm-0 {
  7457. margin-bottom: 0 !important;
  7458. }
  7459. .ml-sm-0,
  7460. .mx-sm-0 {
  7461. margin-left: 0 !important;
  7462. }
  7463. .m-sm-1 {
  7464. margin: 0.25rem !important;
  7465. }
  7466. .mt-sm-1,
  7467. .my-sm-1 {
  7468. margin-top: 0.25rem !important;
  7469. }
  7470. .mr-sm-1,
  7471. .mx-sm-1 {
  7472. margin-right: 0.25rem !important;
  7473. }
  7474. .mb-sm-1,
  7475. .my-sm-1 {
  7476. margin-bottom: 0.25rem !important;
  7477. }
  7478. .ml-sm-1,
  7479. .mx-sm-1 {
  7480. margin-left: 0.25rem !important;
  7481. }
  7482. .m-sm-2 {
  7483. margin: 0.5rem !important;
  7484. }
  7485. .mt-sm-2,
  7486. .my-sm-2 {
  7487. margin-top: 0.5rem !important;
  7488. }
  7489. .mr-sm-2,
  7490. .mx-sm-2 {
  7491. margin-right: 0.5rem !important;
  7492. }
  7493. .mb-sm-2,
  7494. .my-sm-2 {
  7495. margin-bottom: 0.5rem !important;
  7496. }
  7497. .ml-sm-2,
  7498. .mx-sm-2 {
  7499. margin-left: 0.5rem !important;
  7500. }
  7501. .m-sm-3 {
  7502. margin: 1rem !important;
  7503. }
  7504. .mt-sm-3,
  7505. .my-sm-3 {
  7506. margin-top: 1rem !important;
  7507. }
  7508. .mr-sm-3,
  7509. .mx-sm-3 {
  7510. margin-right: 1rem !important;
  7511. }
  7512. .mb-sm-3,
  7513. .my-sm-3 {
  7514. margin-bottom: 1rem !important;
  7515. }
  7516. .ml-sm-3,
  7517. .mx-sm-3 {
  7518. margin-left: 1rem !important;
  7519. }
  7520. .m-sm-4 {
  7521. margin: 1.5rem !important;
  7522. }
  7523. .mt-sm-4,
  7524. .my-sm-4 {
  7525. margin-top: 1.5rem !important;
  7526. }
  7527. .mr-sm-4,
  7528. .mx-sm-4 {
  7529. margin-right: 1.5rem !important;
  7530. }
  7531. .mb-sm-4,
  7532. .my-sm-4 {
  7533. margin-bottom: 1.5rem !important;
  7534. }
  7535. .ml-sm-4,
  7536. .mx-sm-4 {
  7537. margin-left: 1.5rem !important;
  7538. }
  7539. .m-sm-5 {
  7540. margin: 3rem !important;
  7541. }
  7542. .mt-sm-5,
  7543. .my-sm-5 {
  7544. margin-top: 3rem !important;
  7545. }
  7546. .mr-sm-5,
  7547. .mx-sm-5 {
  7548. margin-right: 3rem !important;
  7549. }
  7550. .mb-sm-5,
  7551. .my-sm-5 {
  7552. margin-bottom: 3rem !important;
  7553. }
  7554. .ml-sm-5,
  7555. .mx-sm-5 {
  7556. margin-left: 3rem !important;
  7557. }
  7558. .p-sm-0 {
  7559. padding: 0 !important;
  7560. }
  7561. .pt-sm-0,
  7562. .py-sm-0 {
  7563. padding-top: 0 !important;
  7564. }
  7565. .pr-sm-0,
  7566. .px-sm-0 {
  7567. padding-right: 0 !important;
  7568. }
  7569. .pb-sm-0,
  7570. .py-sm-0 {
  7571. padding-bottom: 0 !important;
  7572. }
  7573. .pl-sm-0,
  7574. .px-sm-0 {
  7575. padding-left: 0 !important;
  7576. }
  7577. .p-sm-1 {
  7578. padding: 0.25rem !important;
  7579. }
  7580. .pt-sm-1,
  7581. .py-sm-1 {
  7582. padding-top: 0.25rem !important;
  7583. }
  7584. .pr-sm-1,
  7585. .px-sm-1 {
  7586. padding-right: 0.25rem !important;
  7587. }
  7588. .pb-sm-1,
  7589. .py-sm-1 {
  7590. padding-bottom: 0.25rem !important;
  7591. }
  7592. .pl-sm-1,
  7593. .px-sm-1 {
  7594. padding-left: 0.25rem !important;
  7595. }
  7596. .p-sm-2 {
  7597. padding: 0.5rem !important;
  7598. }
  7599. .pt-sm-2,
  7600. .py-sm-2 {
  7601. padding-top: 0.5rem !important;
  7602. }
  7603. .pr-sm-2,
  7604. .px-sm-2 {
  7605. padding-right: 0.5rem !important;
  7606. }
  7607. .pb-sm-2,
  7608. .py-sm-2 {
  7609. padding-bottom: 0.5rem !important;
  7610. }
  7611. .pl-sm-2,
  7612. .px-sm-2 {
  7613. padding-left: 0.5rem !important;
  7614. }
  7615. .p-sm-3 {
  7616. padding: 1rem !important;
  7617. }
  7618. .pt-sm-3,
  7619. .py-sm-3 {
  7620. padding-top: 1rem !important;
  7621. }
  7622. .pr-sm-3,
  7623. .px-sm-3 {
  7624. padding-right: 1rem !important;
  7625. }
  7626. .pb-sm-3,
  7627. .py-sm-3 {
  7628. padding-bottom: 1rem !important;
  7629. }
  7630. .pl-sm-3,
  7631. .px-sm-3 {
  7632. padding-left: 1rem !important;
  7633. }
  7634. .p-sm-4 {
  7635. padding: 1.5rem !important;
  7636. }
  7637. .pt-sm-4,
  7638. .py-sm-4 {
  7639. padding-top: 1.5rem !important;
  7640. }
  7641. .pr-sm-4,
  7642. .px-sm-4 {
  7643. padding-right: 1.5rem !important;
  7644. }
  7645. .pb-sm-4,
  7646. .py-sm-4 {
  7647. padding-bottom: 1.5rem !important;
  7648. }
  7649. .pl-sm-4,
  7650. .px-sm-4 {
  7651. padding-left: 1.5rem !important;
  7652. }
  7653. .p-sm-5 {
  7654. padding: 3rem !important;
  7655. }
  7656. .pt-sm-5,
  7657. .py-sm-5 {
  7658. padding-top: 3rem !important;
  7659. }
  7660. .pr-sm-5,
  7661. .px-sm-5 {
  7662. padding-right: 3rem !important;
  7663. }
  7664. .pb-sm-5,
  7665. .py-sm-5 {
  7666. padding-bottom: 3rem !important;
  7667. }
  7668. .pl-sm-5,
  7669. .px-sm-5 {
  7670. padding-left: 3rem !important;
  7671. }
  7672. .m-sm-n1 {
  7673. margin: -0.25rem !important;
  7674. }
  7675. .mt-sm-n1,
  7676. .my-sm-n1 {
  7677. margin-top: -0.25rem !important;
  7678. }
  7679. .mr-sm-n1,
  7680. .mx-sm-n1 {
  7681. margin-right: -0.25rem !important;
  7682. }
  7683. .mb-sm-n1,
  7684. .my-sm-n1 {
  7685. margin-bottom: -0.25rem !important;
  7686. }
  7687. .ml-sm-n1,
  7688. .mx-sm-n1 {
  7689. margin-left: -0.25rem !important;
  7690. }
  7691. .m-sm-n2 {
  7692. margin: -0.5rem !important;
  7693. }
  7694. .mt-sm-n2,
  7695. .my-sm-n2 {
  7696. margin-top: -0.5rem !important;
  7697. }
  7698. .mr-sm-n2,
  7699. .mx-sm-n2 {
  7700. margin-right: -0.5rem !important;
  7701. }
  7702. .mb-sm-n2,
  7703. .my-sm-n2 {
  7704. margin-bottom: -0.5rem !important;
  7705. }
  7706. .ml-sm-n2,
  7707. .mx-sm-n2 {
  7708. margin-left: -0.5rem !important;
  7709. }
  7710. .m-sm-n3 {
  7711. margin: -1rem !important;
  7712. }
  7713. .mt-sm-n3,
  7714. .my-sm-n3 {
  7715. margin-top: -1rem !important;
  7716. }
  7717. .mr-sm-n3,
  7718. .mx-sm-n3 {
  7719. margin-right: -1rem !important;
  7720. }
  7721. .mb-sm-n3,
  7722. .my-sm-n3 {
  7723. margin-bottom: -1rem !important;
  7724. }
  7725. .ml-sm-n3,
  7726. .mx-sm-n3 {
  7727. margin-left: -1rem !important;
  7728. }
  7729. .m-sm-n4 {
  7730. margin: -1.5rem !important;
  7731. }
  7732. .mt-sm-n4,
  7733. .my-sm-n4 {
  7734. margin-top: -1.5rem !important;
  7735. }
  7736. .mr-sm-n4,
  7737. .mx-sm-n4 {
  7738. margin-right: -1.5rem !important;
  7739. }
  7740. .mb-sm-n4,
  7741. .my-sm-n4 {
  7742. margin-bottom: -1.5rem !important;
  7743. }
  7744. .ml-sm-n4,
  7745. .mx-sm-n4 {
  7746. margin-left: -1.5rem !important;
  7747. }
  7748. .m-sm-n5 {
  7749. margin: -3rem !important;
  7750. }
  7751. .mt-sm-n5,
  7752. .my-sm-n5 {
  7753. margin-top: -3rem !important;
  7754. }
  7755. .mr-sm-n5,
  7756. .mx-sm-n5 {
  7757. margin-right: -3rem !important;
  7758. }
  7759. .mb-sm-n5,
  7760. .my-sm-n5 {
  7761. margin-bottom: -3rem !important;
  7762. }
  7763. .ml-sm-n5,
  7764. .mx-sm-n5 {
  7765. margin-left: -3rem !important;
  7766. }
  7767. .m-sm-auto {
  7768. margin: auto !important;
  7769. }
  7770. .mt-sm-auto,
  7771. .my-sm-auto {
  7772. margin-top: auto !important;
  7773. }
  7774. .mr-sm-auto,
  7775. .mx-sm-auto {
  7776. margin-right: auto !important;
  7777. }
  7778. .mb-sm-auto,
  7779. .my-sm-auto {
  7780. margin-bottom: auto !important;
  7781. }
  7782. .ml-sm-auto,
  7783. .mx-sm-auto {
  7784. margin-left: auto !important;
  7785. }
  7786. }
  7787. @media (min-width: 768px) {
  7788. .m-md-0 {
  7789. margin: 0 !important;
  7790. }
  7791. .mt-md-0,
  7792. .my-md-0 {
  7793. margin-top: 0 !important;
  7794. }
  7795. .mr-md-0,
  7796. .mx-md-0 {
  7797. margin-right: 0 !important;
  7798. }
  7799. .mb-md-0,
  7800. .my-md-0 {
  7801. margin-bottom: 0 !important;
  7802. }
  7803. .ml-md-0,
  7804. .mx-md-0 {
  7805. margin-left: 0 !important;
  7806. }
  7807. .m-md-1 {
  7808. margin: 0.25rem !important;
  7809. }
  7810. .mt-md-1,
  7811. .my-md-1 {
  7812. margin-top: 0.25rem !important;
  7813. }
  7814. .mr-md-1,
  7815. .mx-md-1 {
  7816. margin-right: 0.25rem !important;
  7817. }
  7818. .mb-md-1,
  7819. .my-md-1 {
  7820. margin-bottom: 0.25rem !important;
  7821. }
  7822. .ml-md-1,
  7823. .mx-md-1 {
  7824. margin-left: 0.25rem !important;
  7825. }
  7826. .m-md-2 {
  7827. margin: 0.5rem !important;
  7828. }
  7829. .mt-md-2,
  7830. .my-md-2 {
  7831. margin-top: 0.5rem !important;
  7832. }
  7833. .mr-md-2,
  7834. .mx-md-2 {
  7835. margin-right: 0.5rem !important;
  7836. }
  7837. .mb-md-2,
  7838. .my-md-2 {
  7839. margin-bottom: 0.5rem !important;
  7840. }
  7841. .ml-md-2,
  7842. .mx-md-2 {
  7843. margin-left: 0.5rem !important;
  7844. }
  7845. .m-md-3 {
  7846. margin: 1rem !important;
  7847. }
  7848. .mt-md-3,
  7849. .my-md-3 {
  7850. margin-top: 1rem !important;
  7851. }
  7852. .mr-md-3,
  7853. .mx-md-3 {
  7854. margin-right: 1rem !important;
  7855. }
  7856. .mb-md-3,
  7857. .my-md-3 {
  7858. margin-bottom: 1rem !important;
  7859. }
  7860. .ml-md-3,
  7861. .mx-md-3 {
  7862. margin-left: 1rem !important;
  7863. }
  7864. .m-md-4 {
  7865. margin: 1.5rem !important;
  7866. }
  7867. .mt-md-4,
  7868. .my-md-4 {
  7869. margin-top: 1.5rem !important;
  7870. }
  7871. .mr-md-4,
  7872. .mx-md-4 {
  7873. margin-right: 1.5rem !important;
  7874. }
  7875. .mb-md-4,
  7876. .my-md-4 {
  7877. margin-bottom: 1.5rem !important;
  7878. }
  7879. .ml-md-4,
  7880. .mx-md-4 {
  7881. margin-left: 1.5rem !important;
  7882. }
  7883. .m-md-5 {
  7884. margin: 3rem !important;
  7885. }
  7886. .mt-md-5,
  7887. .my-md-5 {
  7888. margin-top: 3rem !important;
  7889. }
  7890. .mr-md-5,
  7891. .mx-md-5 {
  7892. margin-right: 3rem !important;
  7893. }
  7894. .mb-md-5,
  7895. .my-md-5 {
  7896. margin-bottom: 3rem !important;
  7897. }
  7898. .ml-md-5,
  7899. .mx-md-5 {
  7900. margin-left: 3rem !important;
  7901. }
  7902. .p-md-0 {
  7903. padding: 0 !important;
  7904. }
  7905. .pt-md-0,
  7906. .py-md-0 {
  7907. padding-top: 0 !important;
  7908. }
  7909. .pr-md-0,
  7910. .px-md-0 {
  7911. padding-right: 0 !important;
  7912. }
  7913. .pb-md-0,
  7914. .py-md-0 {
  7915. padding-bottom: 0 !important;
  7916. }
  7917. .pl-md-0,
  7918. .px-md-0 {
  7919. padding-left: 0 !important;
  7920. }
  7921. .p-md-1 {
  7922. padding: 0.25rem !important;
  7923. }
  7924. .pt-md-1,
  7925. .py-md-1 {
  7926. padding-top: 0.25rem !important;
  7927. }
  7928. .pr-md-1,
  7929. .px-md-1 {
  7930. padding-right: 0.25rem !important;
  7931. }
  7932. .pb-md-1,
  7933. .py-md-1 {
  7934. padding-bottom: 0.25rem !important;
  7935. }
  7936. .pl-md-1,
  7937. .px-md-1 {
  7938. padding-left: 0.25rem !important;
  7939. }
  7940. .p-md-2 {
  7941. padding: 0.5rem !important;
  7942. }
  7943. .pt-md-2,
  7944. .py-md-2 {
  7945. padding-top: 0.5rem !important;
  7946. }
  7947. .pr-md-2,
  7948. .px-md-2 {
  7949. padding-right: 0.5rem !important;
  7950. }
  7951. .pb-md-2,
  7952. .py-md-2 {
  7953. padding-bottom: 0.5rem !important;
  7954. }
  7955. .pl-md-2,
  7956. .px-md-2 {
  7957. padding-left: 0.5rem !important;
  7958. }
  7959. .p-md-3 {
  7960. padding: 1rem !important;
  7961. }
  7962. .pt-md-3,
  7963. .py-md-3 {
  7964. padding-top: 1rem !important;
  7965. }
  7966. .pr-md-3,
  7967. .px-md-3 {
  7968. padding-right: 1rem !important;
  7969. }
  7970. .pb-md-3,
  7971. .py-md-3 {
  7972. padding-bottom: 1rem !important;
  7973. }
  7974. .pl-md-3,
  7975. .px-md-3 {
  7976. padding-left: 1rem !important;
  7977. }
  7978. .p-md-4 {
  7979. padding: 1.5rem !important;
  7980. }
  7981. .pt-md-4,
  7982. .py-md-4 {
  7983. padding-top: 1.5rem !important;
  7984. }
  7985. .pr-md-4,
  7986. .px-md-4 {
  7987. padding-right: 1.5rem !important;
  7988. }
  7989. .pb-md-4,
  7990. .py-md-4 {
  7991. padding-bottom: 1.5rem !important;
  7992. }
  7993. .pl-md-4,
  7994. .px-md-4 {
  7995. padding-left: 1.5rem !important;
  7996. }
  7997. .p-md-5 {
  7998. padding: 3rem !important;
  7999. }
  8000. .pt-md-5,
  8001. .py-md-5 {
  8002. padding-top: 3rem !important;
  8003. }
  8004. .pr-md-5,
  8005. .px-md-5 {
  8006. padding-right: 3rem !important;
  8007. }
  8008. .pb-md-5,
  8009. .py-md-5 {
  8010. padding-bottom: 3rem !important;
  8011. }
  8012. .pl-md-5,
  8013. .px-md-5 {
  8014. padding-left: 3rem !important;
  8015. }
  8016. .m-md-n1 {
  8017. margin: -0.25rem !important;
  8018. }
  8019. .mt-md-n1,
  8020. .my-md-n1 {
  8021. margin-top: -0.25rem !important;
  8022. }
  8023. .mr-md-n1,
  8024. .mx-md-n1 {
  8025. margin-right: -0.25rem !important;
  8026. }
  8027. .mb-md-n1,
  8028. .my-md-n1 {
  8029. margin-bottom: -0.25rem !important;
  8030. }
  8031. .ml-md-n1,
  8032. .mx-md-n1 {
  8033. margin-left: -0.25rem !important;
  8034. }
  8035. .m-md-n2 {
  8036. margin: -0.5rem !important;
  8037. }
  8038. .mt-md-n2,
  8039. .my-md-n2 {
  8040. margin-top: -0.5rem !important;
  8041. }
  8042. .mr-md-n2,
  8043. .mx-md-n2 {
  8044. margin-right: -0.5rem !important;
  8045. }
  8046. .mb-md-n2,
  8047. .my-md-n2 {
  8048. margin-bottom: -0.5rem !important;
  8049. }
  8050. .ml-md-n2,
  8051. .mx-md-n2 {
  8052. margin-left: -0.5rem !important;
  8053. }
  8054. .m-md-n3 {
  8055. margin: -1rem !important;
  8056. }
  8057. .mt-md-n3,
  8058. .my-md-n3 {
  8059. margin-top: -1rem !important;
  8060. }
  8061. .mr-md-n3,
  8062. .mx-md-n3 {
  8063. margin-right: -1rem !important;
  8064. }
  8065. .mb-md-n3,
  8066. .my-md-n3 {
  8067. margin-bottom: -1rem !important;
  8068. }
  8069. .ml-md-n3,
  8070. .mx-md-n3 {
  8071. margin-left: -1rem !important;
  8072. }
  8073. .m-md-n4 {
  8074. margin: -1.5rem !important;
  8075. }
  8076. .mt-md-n4,
  8077. .my-md-n4 {
  8078. margin-top: -1.5rem !important;
  8079. }
  8080. .mr-md-n4,
  8081. .mx-md-n4 {
  8082. margin-right: -1.5rem !important;
  8083. }
  8084. .mb-md-n4,
  8085. .my-md-n4 {
  8086. margin-bottom: -1.5rem !important;
  8087. }
  8088. .ml-md-n4,
  8089. .mx-md-n4 {
  8090. margin-left: -1.5rem !important;
  8091. }
  8092. .m-md-n5 {
  8093. margin: -3rem !important;
  8094. }
  8095. .mt-md-n5,
  8096. .my-md-n5 {
  8097. margin-top: -3rem !important;
  8098. }
  8099. .mr-md-n5,
  8100. .mx-md-n5 {
  8101. margin-right: -3rem !important;
  8102. }
  8103. .mb-md-n5,
  8104. .my-md-n5 {
  8105. margin-bottom: -3rem !important;
  8106. }
  8107. .ml-md-n5,
  8108. .mx-md-n5 {
  8109. margin-left: -3rem !important;
  8110. }
  8111. .m-md-auto {
  8112. margin: auto !important;
  8113. }
  8114. .mt-md-auto,
  8115. .my-md-auto {
  8116. margin-top: auto !important;
  8117. }
  8118. .mr-md-auto,
  8119. .mx-md-auto {
  8120. margin-right: auto !important;
  8121. }
  8122. .mb-md-auto,
  8123. .my-md-auto {
  8124. margin-bottom: auto !important;
  8125. }
  8126. .ml-md-auto,
  8127. .mx-md-auto {
  8128. margin-left: auto !important;
  8129. }
  8130. }
  8131. @media (min-width: 992px) {
  8132. .m-lg-0 {
  8133. margin: 0 !important;
  8134. }
  8135. .mt-lg-0,
  8136. .my-lg-0 {
  8137. margin-top: 0 !important;
  8138. }
  8139. .mr-lg-0,
  8140. .mx-lg-0 {
  8141. margin-right: 0 !important;
  8142. }
  8143. .mb-lg-0,
  8144. .my-lg-0 {
  8145. margin-bottom: 0 !important;
  8146. }
  8147. .ml-lg-0,
  8148. .mx-lg-0 {
  8149. margin-left: 0 !important;
  8150. }
  8151. .m-lg-1 {
  8152. margin: 0.25rem !important;
  8153. }
  8154. .mt-lg-1,
  8155. .my-lg-1 {
  8156. margin-top: 0.25rem !important;
  8157. }
  8158. .mr-lg-1,
  8159. .mx-lg-1 {
  8160. margin-right: 0.25rem !important;
  8161. }
  8162. .mb-lg-1,
  8163. .my-lg-1 {
  8164. margin-bottom: 0.25rem !important;
  8165. }
  8166. .ml-lg-1,
  8167. .mx-lg-1 {
  8168. margin-left: 0.25rem !important;
  8169. }
  8170. .m-lg-2 {
  8171. margin: 0.5rem !important;
  8172. }
  8173. .mt-lg-2,
  8174. .my-lg-2 {
  8175. margin-top: 0.5rem !important;
  8176. }
  8177. .mr-lg-2,
  8178. .mx-lg-2 {
  8179. margin-right: 0.5rem !important;
  8180. }
  8181. .mb-lg-2,
  8182. .my-lg-2 {
  8183. margin-bottom: 0.5rem !important;
  8184. }
  8185. .ml-lg-2,
  8186. .mx-lg-2 {
  8187. margin-left: 0.5rem !important;
  8188. }
  8189. .m-lg-3 {
  8190. margin: 1rem !important;
  8191. }
  8192. .mt-lg-3,
  8193. .my-lg-3 {
  8194. margin-top: 1rem !important;
  8195. }
  8196. .mr-lg-3,
  8197. .mx-lg-3 {
  8198. margin-right: 1rem !important;
  8199. }
  8200. .mb-lg-3,
  8201. .my-lg-3 {
  8202. margin-bottom: 1rem !important;
  8203. }
  8204. .ml-lg-3,
  8205. .mx-lg-3 {
  8206. margin-left: 1rem !important;
  8207. }
  8208. .m-lg-4 {
  8209. margin: 1.5rem !important;
  8210. }
  8211. .mt-lg-4,
  8212. .my-lg-4 {
  8213. margin-top: 1.5rem !important;
  8214. }
  8215. .mr-lg-4,
  8216. .mx-lg-4 {
  8217. margin-right: 1.5rem !important;
  8218. }
  8219. .mb-lg-4,
  8220. .my-lg-4 {
  8221. margin-bottom: 1.5rem !important;
  8222. }
  8223. .ml-lg-4,
  8224. .mx-lg-4 {
  8225. margin-left: 1.5rem !important;
  8226. }
  8227. .m-lg-5 {
  8228. margin: 3rem !important;
  8229. }
  8230. .mt-lg-5,
  8231. .my-lg-5 {
  8232. margin-top: 3rem !important;
  8233. }
  8234. .mr-lg-5,
  8235. .mx-lg-5 {
  8236. margin-right: 3rem !important;
  8237. }
  8238. .mb-lg-5,
  8239. .my-lg-5 {
  8240. margin-bottom: 3rem !important;
  8241. }
  8242. .ml-lg-5,
  8243. .mx-lg-5 {
  8244. margin-left: 3rem !important;
  8245. }
  8246. .p-lg-0 {
  8247. padding: 0 !important;
  8248. }
  8249. .pt-lg-0,
  8250. .py-lg-0 {
  8251. padding-top: 0 !important;
  8252. }
  8253. .pr-lg-0,
  8254. .px-lg-0 {
  8255. padding-right: 0 !important;
  8256. }
  8257. .pb-lg-0,
  8258. .py-lg-0 {
  8259. padding-bottom: 0 !important;
  8260. }
  8261. .pl-lg-0,
  8262. .px-lg-0 {
  8263. padding-left: 0 !important;
  8264. }
  8265. .p-lg-1 {
  8266. padding: 0.25rem !important;
  8267. }
  8268. .pt-lg-1,
  8269. .py-lg-1 {
  8270. padding-top: 0.25rem !important;
  8271. }
  8272. .pr-lg-1,
  8273. .px-lg-1 {
  8274. padding-right: 0.25rem !important;
  8275. }
  8276. .pb-lg-1,
  8277. .py-lg-1 {
  8278. padding-bottom: 0.25rem !important;
  8279. }
  8280. .pl-lg-1,
  8281. .px-lg-1 {
  8282. padding-left: 0.25rem !important;
  8283. }
  8284. .p-lg-2 {
  8285. padding: 0.5rem !important;
  8286. }
  8287. .pt-lg-2,
  8288. .py-lg-2 {
  8289. padding-top: 0.5rem !important;
  8290. }
  8291. .pr-lg-2,
  8292. .px-lg-2 {
  8293. padding-right: 0.5rem !important;
  8294. }
  8295. .pb-lg-2,
  8296. .py-lg-2 {
  8297. padding-bottom: 0.5rem !important;
  8298. }
  8299. .pl-lg-2,
  8300. .px-lg-2 {
  8301. padding-left: 0.5rem !important;
  8302. }
  8303. .p-lg-3 {
  8304. padding: 1rem !important;
  8305. }
  8306. .pt-lg-3,
  8307. .py-lg-3 {
  8308. padding-top: 1rem !important;
  8309. }
  8310. .pr-lg-3,
  8311. .px-lg-3 {
  8312. padding-right: 1rem !important;
  8313. }
  8314. .pb-lg-3,
  8315. .py-lg-3 {
  8316. padding-bottom: 1rem !important;
  8317. }
  8318. .pl-lg-3,
  8319. .px-lg-3 {
  8320. padding-left: 1rem !important;
  8321. }
  8322. .p-lg-4 {
  8323. padding: 1.5rem !important;
  8324. }
  8325. .pt-lg-4,
  8326. .py-lg-4 {
  8327. padding-top: 1.5rem !important;
  8328. }
  8329. .pr-lg-4,
  8330. .px-lg-4 {
  8331. padding-right: 1.5rem !important;
  8332. }
  8333. .pb-lg-4,
  8334. .py-lg-4 {
  8335. padding-bottom: 1.5rem !important;
  8336. }
  8337. .pl-lg-4,
  8338. .px-lg-4 {
  8339. padding-left: 1.5rem !important;
  8340. }
  8341. .p-lg-5 {
  8342. padding: 3rem !important;
  8343. }
  8344. .pt-lg-5,
  8345. .py-lg-5 {
  8346. padding-top: 3rem !important;
  8347. }
  8348. .pr-lg-5,
  8349. .px-lg-5 {
  8350. padding-right: 3rem !important;
  8351. }
  8352. .pb-lg-5,
  8353. .py-lg-5 {
  8354. padding-bottom: 3rem !important;
  8355. }
  8356. .pl-lg-5,
  8357. .px-lg-5 {
  8358. padding-left: 3rem !important;
  8359. }
  8360. .m-lg-n1 {
  8361. margin: -0.25rem !important;
  8362. }
  8363. .mt-lg-n1,
  8364. .my-lg-n1 {
  8365. margin-top: -0.25rem !important;
  8366. }
  8367. .mr-lg-n1,
  8368. .mx-lg-n1 {
  8369. margin-right: -0.25rem !important;
  8370. }
  8371. .mb-lg-n1,
  8372. .my-lg-n1 {
  8373. margin-bottom: -0.25rem !important;
  8374. }
  8375. .ml-lg-n1,
  8376. .mx-lg-n1 {
  8377. margin-left: -0.25rem !important;
  8378. }
  8379. .m-lg-n2 {
  8380. margin: -0.5rem !important;
  8381. }
  8382. .mt-lg-n2,
  8383. .my-lg-n2 {
  8384. margin-top: -0.5rem !important;
  8385. }
  8386. .mr-lg-n2,
  8387. .mx-lg-n2 {
  8388. margin-right: -0.5rem !important;
  8389. }
  8390. .mb-lg-n2,
  8391. .my-lg-n2 {
  8392. margin-bottom: -0.5rem !important;
  8393. }
  8394. .ml-lg-n2,
  8395. .mx-lg-n2 {
  8396. margin-left: -0.5rem !important;
  8397. }
  8398. .m-lg-n3 {
  8399. margin: -1rem !important;
  8400. }
  8401. .mt-lg-n3,
  8402. .my-lg-n3 {
  8403. margin-top: -1rem !important;
  8404. }
  8405. .mr-lg-n3,
  8406. .mx-lg-n3 {
  8407. margin-right: -1rem !important;
  8408. }
  8409. .mb-lg-n3,
  8410. .my-lg-n3 {
  8411. margin-bottom: -1rem !important;
  8412. }
  8413. .ml-lg-n3,
  8414. .mx-lg-n3 {
  8415. margin-left: -1rem !important;
  8416. }
  8417. .m-lg-n4 {
  8418. margin: -1.5rem !important;
  8419. }
  8420. .mt-lg-n4,
  8421. .my-lg-n4 {
  8422. margin-top: -1.5rem !important;
  8423. }
  8424. .mr-lg-n4,
  8425. .mx-lg-n4 {
  8426. margin-right: -1.5rem !important;
  8427. }
  8428. .mb-lg-n4,
  8429. .my-lg-n4 {
  8430. margin-bottom: -1.5rem !important;
  8431. }
  8432. .ml-lg-n4,
  8433. .mx-lg-n4 {
  8434. margin-left: -1.5rem !important;
  8435. }
  8436. .m-lg-n5 {
  8437. margin: -3rem !important;
  8438. }
  8439. .mt-lg-n5,
  8440. .my-lg-n5 {
  8441. margin-top: -3rem !important;
  8442. }
  8443. .mr-lg-n5,
  8444. .mx-lg-n5 {
  8445. margin-right: -3rem !important;
  8446. }
  8447. .mb-lg-n5,
  8448. .my-lg-n5 {
  8449. margin-bottom: -3rem !important;
  8450. }
  8451. .ml-lg-n5,
  8452. .mx-lg-n5 {
  8453. margin-left: -3rem !important;
  8454. }
  8455. .m-lg-auto {
  8456. margin: auto !important;
  8457. }
  8458. .mt-lg-auto,
  8459. .my-lg-auto {
  8460. margin-top: auto !important;
  8461. }
  8462. .mr-lg-auto,
  8463. .mx-lg-auto {
  8464. margin-right: auto !important;
  8465. }
  8466. .mb-lg-auto,
  8467. .my-lg-auto {
  8468. margin-bottom: auto !important;
  8469. }
  8470. .ml-lg-auto,
  8471. .mx-lg-auto {
  8472. margin-left: auto !important;
  8473. }
  8474. }
  8475. @media (min-width: 1200px) {
  8476. .m-xl-0 {
  8477. margin: 0 !important;
  8478. }
  8479. .mt-xl-0,
  8480. .my-xl-0 {
  8481. margin-top: 0 !important;
  8482. }
  8483. .mr-xl-0,
  8484. .mx-xl-0 {
  8485. margin-right: 0 !important;
  8486. }
  8487. .mb-xl-0,
  8488. .my-xl-0 {
  8489. margin-bottom: 0 !important;
  8490. }
  8491. .ml-xl-0,
  8492. .mx-xl-0 {
  8493. margin-left: 0 !important;
  8494. }
  8495. .m-xl-1 {
  8496. margin: 0.25rem !important;
  8497. }
  8498. .mt-xl-1,
  8499. .my-xl-1 {
  8500. margin-top: 0.25rem !important;
  8501. }
  8502. .mr-xl-1,
  8503. .mx-xl-1 {
  8504. margin-right: 0.25rem !important;
  8505. }
  8506. .mb-xl-1,
  8507. .my-xl-1 {
  8508. margin-bottom: 0.25rem !important;
  8509. }
  8510. .ml-xl-1,
  8511. .mx-xl-1 {
  8512. margin-left: 0.25rem !important;
  8513. }
  8514. .m-xl-2 {
  8515. margin: 0.5rem !important;
  8516. }
  8517. .mt-xl-2,
  8518. .my-xl-2 {
  8519. margin-top: 0.5rem !important;
  8520. }
  8521. .mr-xl-2,
  8522. .mx-xl-2 {
  8523. margin-right: 0.5rem !important;
  8524. }
  8525. .mb-xl-2,
  8526. .my-xl-2 {
  8527. margin-bottom: 0.5rem !important;
  8528. }
  8529. .ml-xl-2,
  8530. .mx-xl-2 {
  8531. margin-left: 0.5rem !important;
  8532. }
  8533. .m-xl-3 {
  8534. margin: 1rem !important;
  8535. }
  8536. .mt-xl-3,
  8537. .my-xl-3 {
  8538. margin-top: 1rem !important;
  8539. }
  8540. .mr-xl-3,
  8541. .mx-xl-3 {
  8542. margin-right: 1rem !important;
  8543. }
  8544. .mb-xl-3,
  8545. .my-xl-3 {
  8546. margin-bottom: 1rem !important;
  8547. }
  8548. .ml-xl-3,
  8549. .mx-xl-3 {
  8550. margin-left: 1rem !important;
  8551. }
  8552. .m-xl-4 {
  8553. margin: 1.5rem !important;
  8554. }
  8555. .mt-xl-4,
  8556. .my-xl-4 {
  8557. margin-top: 1.5rem !important;
  8558. }
  8559. .mr-xl-4,
  8560. .mx-xl-4 {
  8561. margin-right: 1.5rem !important;
  8562. }
  8563. .mb-xl-4,
  8564. .my-xl-4 {
  8565. margin-bottom: 1.5rem !important;
  8566. }
  8567. .ml-xl-4,
  8568. .mx-xl-4 {
  8569. margin-left: 1.5rem !important;
  8570. }
  8571. .m-xl-5 {
  8572. margin: 3rem !important;
  8573. }
  8574. .mt-xl-5,
  8575. .my-xl-5 {
  8576. margin-top: 3rem !important;
  8577. }
  8578. .mr-xl-5,
  8579. .mx-xl-5 {
  8580. margin-right: 3rem !important;
  8581. }
  8582. .mb-xl-5,
  8583. .my-xl-5 {
  8584. margin-bottom: 3rem !important;
  8585. }
  8586. .ml-xl-5,
  8587. .mx-xl-5 {
  8588. margin-left: 3rem !important;
  8589. }
  8590. .p-xl-0 {
  8591. padding: 0 !important;
  8592. }
  8593. .pt-xl-0,
  8594. .py-xl-0 {
  8595. padding-top: 0 !important;
  8596. }
  8597. .pr-xl-0,
  8598. .px-xl-0 {
  8599. padding-right: 0 !important;
  8600. }
  8601. .pb-xl-0,
  8602. .py-xl-0 {
  8603. padding-bottom: 0 !important;
  8604. }
  8605. .pl-xl-0,
  8606. .px-xl-0 {
  8607. padding-left: 0 !important;
  8608. }
  8609. .p-xl-1 {
  8610. padding: 0.25rem !important;
  8611. }
  8612. .pt-xl-1,
  8613. .py-xl-1 {
  8614. padding-top: 0.25rem !important;
  8615. }
  8616. .pr-xl-1,
  8617. .px-xl-1 {
  8618. padding-right: 0.25rem !important;
  8619. }
  8620. .pb-xl-1,
  8621. .py-xl-1 {
  8622. padding-bottom: 0.25rem !important;
  8623. }
  8624. .pl-xl-1,
  8625. .px-xl-1 {
  8626. padding-left: 0.25rem !important;
  8627. }
  8628. .p-xl-2 {
  8629. padding: 0.5rem !important;
  8630. }
  8631. .pt-xl-2,
  8632. .py-xl-2 {
  8633. padding-top: 0.5rem !important;
  8634. }
  8635. .pr-xl-2,
  8636. .px-xl-2 {
  8637. padding-right: 0.5rem !important;
  8638. }
  8639. .pb-xl-2,
  8640. .py-xl-2 {
  8641. padding-bottom: 0.5rem !important;
  8642. }
  8643. .pl-xl-2,
  8644. .px-xl-2 {
  8645. padding-left: 0.5rem !important;
  8646. }
  8647. .p-xl-3 {
  8648. padding: 1rem !important;
  8649. }
  8650. .pt-xl-3,
  8651. .py-xl-3 {
  8652. padding-top: 1rem !important;
  8653. }
  8654. .pr-xl-3,
  8655. .px-xl-3 {
  8656. padding-right: 1rem !important;
  8657. }
  8658. .pb-xl-3,
  8659. .py-xl-3 {
  8660. padding-bottom: 1rem !important;
  8661. }
  8662. .pl-xl-3,
  8663. .px-xl-3 {
  8664. padding-left: 1rem !important;
  8665. }
  8666. .p-xl-4 {
  8667. padding: 1.5rem !important;
  8668. }
  8669. .pt-xl-4,
  8670. .py-xl-4 {
  8671. padding-top: 1.5rem !important;
  8672. }
  8673. .pr-xl-4,
  8674. .px-xl-4 {
  8675. padding-right: 1.5rem !important;
  8676. }
  8677. .pb-xl-4,
  8678. .py-xl-4 {
  8679. padding-bottom: 1.5rem !important;
  8680. }
  8681. .pl-xl-4,
  8682. .px-xl-4 {
  8683. padding-left: 1.5rem !important;
  8684. }
  8685. .p-xl-5 {
  8686. padding: 3rem !important;
  8687. }
  8688. .pt-xl-5,
  8689. .py-xl-5 {
  8690. padding-top: 3rem !important;
  8691. }
  8692. .pr-xl-5,
  8693. .px-xl-5 {
  8694. padding-right: 3rem !important;
  8695. }
  8696. .pb-xl-5,
  8697. .py-xl-5 {
  8698. padding-bottom: 3rem !important;
  8699. }
  8700. .pl-xl-5,
  8701. .px-xl-5 {
  8702. padding-left: 3rem !important;
  8703. }
  8704. .m-xl-n1 {
  8705. margin: -0.25rem !important;
  8706. }
  8707. .mt-xl-n1,
  8708. .my-xl-n1 {
  8709. margin-top: -0.25rem !important;
  8710. }
  8711. .mr-xl-n1,
  8712. .mx-xl-n1 {
  8713. margin-right: -0.25rem !important;
  8714. }
  8715. .mb-xl-n1,
  8716. .my-xl-n1 {
  8717. margin-bottom: -0.25rem !important;
  8718. }
  8719. .ml-xl-n1,
  8720. .mx-xl-n1 {
  8721. margin-left: -0.25rem !important;
  8722. }
  8723. .m-xl-n2 {
  8724. margin: -0.5rem !important;
  8725. }
  8726. .mt-xl-n2,
  8727. .my-xl-n2 {
  8728. margin-top: -0.5rem !important;
  8729. }
  8730. .mr-xl-n2,
  8731. .mx-xl-n2 {
  8732. margin-right: -0.5rem !important;
  8733. }
  8734. .mb-xl-n2,
  8735. .my-xl-n2 {
  8736. margin-bottom: -0.5rem !important;
  8737. }
  8738. .ml-xl-n2,
  8739. .mx-xl-n2 {
  8740. margin-left: -0.5rem !important;
  8741. }
  8742. .m-xl-n3 {
  8743. margin: -1rem !important;
  8744. }
  8745. .mt-xl-n3,
  8746. .my-xl-n3 {
  8747. margin-top: -1rem !important;
  8748. }
  8749. .mr-xl-n3,
  8750. .mx-xl-n3 {
  8751. margin-right: -1rem !important;
  8752. }
  8753. .mb-xl-n3,
  8754. .my-xl-n3 {
  8755. margin-bottom: -1rem !important;
  8756. }
  8757. .ml-xl-n3,
  8758. .mx-xl-n3 {
  8759. margin-left: -1rem !important;
  8760. }
  8761. .m-xl-n4 {
  8762. margin: -1.5rem !important;
  8763. }
  8764. .mt-xl-n4,
  8765. .my-xl-n4 {
  8766. margin-top: -1.5rem !important;
  8767. }
  8768. .mr-xl-n4,
  8769. .mx-xl-n4 {
  8770. margin-right: -1.5rem !important;
  8771. }
  8772. .mb-xl-n4,
  8773. .my-xl-n4 {
  8774. margin-bottom: -1.5rem !important;
  8775. }
  8776. .ml-xl-n4,
  8777. .mx-xl-n4 {
  8778. margin-left: -1.5rem !important;
  8779. }
  8780. .m-xl-n5 {
  8781. margin: -3rem !important;
  8782. }
  8783. .mt-xl-n5,
  8784. .my-xl-n5 {
  8785. margin-top: -3rem !important;
  8786. }
  8787. .mr-xl-n5,
  8788. .mx-xl-n5 {
  8789. margin-right: -3rem !important;
  8790. }
  8791. .mb-xl-n5,
  8792. .my-xl-n5 {
  8793. margin-bottom: -3rem !important;
  8794. }
  8795. .ml-xl-n5,
  8796. .mx-xl-n5 {
  8797. margin-left: -3rem !important;
  8798. }
  8799. .m-xl-auto {
  8800. margin: auto !important;
  8801. }
  8802. .mt-xl-auto,
  8803. .my-xl-auto {
  8804. margin-top: auto !important;
  8805. }
  8806. .mr-xl-auto,
  8807. .mx-xl-auto {
  8808. margin-right: auto !important;
  8809. }
  8810. .mb-xl-auto,
  8811. .my-xl-auto {
  8812. margin-bottom: auto !important;
  8813. }
  8814. .ml-xl-auto,
  8815. .mx-xl-auto {
  8816. margin-left: auto !important;
  8817. }
  8818. }
  8819. .stretched-link::after {
  8820. position: absolute;
  8821. top: 0;
  8822. right: 0;
  8823. bottom: 0;
  8824. left: 0;
  8825. z-index: 1;
  8826. pointer-events: auto;
  8827. content: "";
  8828. background-color: rgba(0, 0, 0, 0);
  8829. }
  8830. .text-monospace {
  8831. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8832. }
  8833. .text-justify {
  8834. text-align: justify !important;
  8835. }
  8836. .text-wrap {
  8837. white-space: normal !important;
  8838. }
  8839. .text-nowrap {
  8840. white-space: nowrap !important;
  8841. }
  8842. .text-truncate {
  8843. overflow: hidden;
  8844. text-overflow: ellipsis;
  8845. white-space: nowrap;
  8846. }
  8847. .text-left {
  8848. text-align: left !important;
  8849. }
  8850. .text-right {
  8851. text-align: right !important;
  8852. }
  8853. .text-center {
  8854. text-align: center !important;
  8855. }
  8856. @media (min-width: 576px) {
  8857. .text-sm-left {
  8858. text-align: left !important;
  8859. }
  8860. .text-sm-right {
  8861. text-align: right !important;
  8862. }
  8863. .text-sm-center {
  8864. text-align: center !important;
  8865. }
  8866. }
  8867. @media (min-width: 768px) {
  8868. .text-md-left {
  8869. text-align: left !important;
  8870. }
  8871. .text-md-right {
  8872. text-align: right !important;
  8873. }
  8874. .text-md-center {
  8875. text-align: center !important;
  8876. }
  8877. }
  8878. @media (min-width: 992px) {
  8879. .text-lg-left {
  8880. text-align: left !important;
  8881. }
  8882. .text-lg-right {
  8883. text-align: right !important;
  8884. }
  8885. .text-lg-center {
  8886. text-align: center !important;
  8887. }
  8888. }
  8889. @media (min-width: 1200px) {
  8890. .text-xl-left {
  8891. text-align: left !important;
  8892. }
  8893. .text-xl-right {
  8894. text-align: right !important;
  8895. }
  8896. .text-xl-center {
  8897. text-align: center !important;
  8898. }
  8899. }
  8900. .text-lowercase {
  8901. text-transform: lowercase !important;
  8902. }
  8903. .text-uppercase {
  8904. text-transform: uppercase !important;
  8905. }
  8906. .text-capitalize {
  8907. text-transform: capitalize !important;
  8908. }
  8909. .font-weight-light {
  8910. font-weight: 300 !important;
  8911. }
  8912. .font-weight-lighter {
  8913. font-weight: lighter !important;
  8914. }
  8915. .font-weight-normal {
  8916. font-weight: 400 !important;
  8917. }
  8918. .font-weight-bold {
  8919. font-weight: 700 !important;
  8920. }
  8921. .font-weight-bolder {
  8922. font-weight: bolder !important;
  8923. }
  8924. .font-italic {
  8925. font-style: italic !important;
  8926. }
  8927. .text-white {
  8928. color: #fff !important;
  8929. }
  8930. .text-primary {
  8931. color: #007bff !important;
  8932. }
  8933. a.text-primary:hover, a.text-primary:focus {
  8934. color: #0056b3 !important;
  8935. }
  8936. .text-secondary {
  8937. color: #6c757d !important;
  8938. }
  8939. a.text-secondary:hover, a.text-secondary:focus {
  8940. color: #494f54 !important;
  8941. }
  8942. .text-success {
  8943. color: #28a745 !important;
  8944. }
  8945. a.text-success:hover, a.text-success:focus {
  8946. color: #19692c !important;
  8947. }
  8948. .text-info {
  8949. color: #17a2b8 !important;
  8950. }
  8951. a.text-info:hover, a.text-info:focus {
  8952. color: #0f6674 !important;
  8953. }
  8954. .text-warning {
  8955. color: #ffc107 !important;
  8956. }
  8957. a.text-warning:hover, a.text-warning:focus {
  8958. color: #ba8b00 !important;
  8959. }
  8960. .text-danger {
  8961. color: #dc3545 !important;
  8962. }
  8963. a.text-danger:hover, a.text-danger:focus {
  8964. color: #a71d2a !important;
  8965. }
  8966. .text-light {
  8967. color: #f8f9fa !important;
  8968. }
  8969. a.text-light:hover, a.text-light:focus {
  8970. color: #cbd3da !important;
  8971. }
  8972. .text-dark {
  8973. color: #343a40 !important;
  8974. }
  8975. a.text-dark:hover, a.text-dark:focus {
  8976. color: #121416 !important;
  8977. }
  8978. .text-body {
  8979. color: #212529 !important;
  8980. }
  8981. .text-muted {
  8982. color: #6c757d !important;
  8983. }
  8984. .text-black-50 {
  8985. color: rgba(0, 0, 0, 0.5) !important;
  8986. }
  8987. .text-white-50 {
  8988. color: rgba(255, 255, 255, 0.5) !important;
  8989. }
  8990. .text-hide {
  8991. font: 0/0 a;
  8992. color: transparent;
  8993. text-shadow: none;
  8994. background-color: transparent;
  8995. border: 0;
  8996. }
  8997. .text-decoration-none {
  8998. text-decoration: none !important;
  8999. }
  9000. .text-break {
  9001. word-break: break-word !important;
  9002. word-wrap: break-word !important;
  9003. }
  9004. .text-reset {
  9005. color: inherit !important;
  9006. }
  9007. .visible {
  9008. visibility: visible !important;
  9009. }
  9010. .invisible {
  9011. visibility: hidden !important;
  9012. }
  9013. @media print {
  9014. *,
  9015. *::before,
  9016. *::after {
  9017. text-shadow: none !important;
  9018. box-shadow: none !important;
  9019. }
  9020. a:not(.btn) {
  9021. text-decoration: underline;
  9022. }
  9023. abbr[title]::after {
  9024. content: " (" attr(title) ")";
  9025. }
  9026. pre {
  9027. white-space: pre-wrap !important;
  9028. }
  9029. pre,
  9030. blockquote {
  9031. border: 1px solid #adb5bd;
  9032. page-break-inside: avoid;
  9033. }
  9034. thead {
  9035. display: table-header-group;
  9036. }
  9037. tr,
  9038. img {
  9039. page-break-inside: avoid;
  9040. }
  9041. p,
  9042. h2,
  9043. h3 {
  9044. orphans: 3;
  9045. widows: 3;
  9046. }
  9047. h2,
  9048. h3 {
  9049. page-break-after: avoid;
  9050. }
  9051. @page {
  9052. size: a3;
  9053. }
  9054. body {
  9055. min-width: 992px !important;
  9056. }
  9057. .container {
  9058. min-width: 992px !important;
  9059. }
  9060. .navbar {
  9061. display: none;
  9062. }
  9063. .badge {
  9064. border: 1px solid #000;
  9065. }
  9066. .table {
  9067. border-collapse: collapse !important;
  9068. }
  9069. .table td,
  9070. .table th {
  9071. background-color: #fff !important;
  9072. }
  9073. .table-bordered th,
  9074. .table-bordered td {
  9075. border: 1px solid #dee2e6 !important;
  9076. }
  9077. .table-dark {
  9078. color: inherit;
  9079. }
  9080. .table-dark th,
  9081. .table-dark td,
  9082. .table-dark thead th,
  9083. .table-dark tbody + tbody {
  9084. border-color: #dee2e6;
  9085. }
  9086. .table .thead-dark th {
  9087. color: inherit;
  9088. border-color: #dee2e6;
  9089. }
  9090. }