app.css 174 KB

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