app.css 196 KB

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