bootstrap.css 188 KB

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