bootstrap.css 171 KB

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