custom.css 178 KB

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