bootstrap.css 207 KB

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