bootstrap.css 202 KB

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