pdf.blade.php 195 KB

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