bootstrap.css 192 KB

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