app.css 210 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "Arial Black";
  4. src: url(/fonts/arialblack.ttf?ec8b4d9c0e68604dfbeda73d0213c82e);
  5. }
  6. .del {
  7. -webkit-text-decoration-line: line-through;
  8. text-decoration-line: line-through;
  9. }
  10. .custom-rich-text-content img {
  11. width: 100%;
  12. height: auto;
  13. }
  14. .nav2 {
  15. margin-top: 0;
  16. }
  17. .nav3 .card {
  18. background: #f9f0f0;
  19. }
  20. /*!
  21. * Bootstrap v4.3.1 (https://getbootstrap.com/)
  22. * Copyright 2011-2019 The Bootstrap Authors
  23. * Copyright 2011-2019 Twitter, Inc.
  24. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  25. */
  26. :root {
  27. --blue: #3490dc;
  28. --indigo: #6574cd;
  29. --purple: #9561e2;
  30. --pink: #f66d9b;
  31. --red: #e3342f;
  32. --orange: #f6993f;
  33. --yellow: #ffed4a;
  34. --green: #38c172;
  35. --teal: #4dc0b5;
  36. --cyan: #6cb2eb;
  37. --white: #fff;
  38. --gray: #6c757d;
  39. --gray-dark: #343a40;
  40. --primary: #3490dc;
  41. --secondary: #6c757d;
  42. --success: #38c172;
  43. --info: #6cb2eb;
  44. --warning: #ffed4a;
  45. --danger: #e3342f;
  46. --light: #f8f9fa;
  47. --dark: #343a40;
  48. --breakpoint-xs: 0;
  49. --breakpoint-sm: 576px;
  50. --breakpoint-md: 768px;
  51. --breakpoint-lg: 992px;
  52. --breakpoint-xl: 1200px;
  53. --font-family-sans-serif: "Nunito", sans-serif;
  54. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  55. }
  56. *,
  57. *::before,
  58. *::after {
  59. box-sizing: border-box;
  60. }
  61. html {
  62. font-family: sans-serif;
  63. line-height: 1.15;
  64. -webkit-text-size-adjust: 100%;
  65. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  66. }
  67. article,
  68. aside,
  69. figcaption,
  70. figure,
  71. footer,
  72. header,
  73. hgroup,
  74. main,
  75. nav,
  76. section {
  77. display: block;
  78. }
  79. body {
  80. margin: 0;
  81. font-family: "Nunito", sans-serif;
  82. font-size: 0.9rem;
  83. font-weight: 400;
  84. line-height: 1.6;
  85. color: #212529;
  86. text-align: left;
  87. background-color: #f8fafc;
  88. }
  89. [tabindex="-1"]:focus {
  90. outline: 0 !important;
  91. }
  92. hr {
  93. box-sizing: content-box;
  94. height: 0;
  95. overflow: visible;
  96. }
  97. h1,
  98. h2,
  99. h3,
  100. h4,
  101. h5,
  102. h6 {
  103. margin-top: 0;
  104. margin-bottom: 0.5rem;
  105. }
  106. p {
  107. margin-top: 0;
  108. margin-bottom: 1rem;
  109. }
  110. abbr[title],
  111. abbr[data-original-title] {
  112. text-decoration: underline;
  113. -webkit-text-decoration: underline dotted;
  114. text-decoration: underline dotted;
  115. cursor: help;
  116. border-bottom: 0;
  117. -webkit-text-decoration-skip-ink: none;
  118. text-decoration-skip-ink: none;
  119. }
  120. address {
  121. margin-bottom: 1rem;
  122. font-style: normal;
  123. line-height: inherit;
  124. }
  125. ol,
  126. ul,
  127. dl {
  128. margin-top: 0;
  129. margin-bottom: 1rem;
  130. }
  131. ol ol,
  132. ul ul,
  133. ol ul,
  134. ul ol {
  135. margin-bottom: 0;
  136. }
  137. dt {
  138. font-weight: 700;
  139. }
  140. dd {
  141. margin-bottom: 0.5rem;
  142. margin-left: 0;
  143. }
  144. blockquote {
  145. margin: 0 0 1rem;
  146. }
  147. b,
  148. strong {
  149. font-weight: bolder;
  150. }
  151. small {
  152. font-size: 80%;
  153. }
  154. sub,
  155. sup {
  156. position: relative;
  157. font-size: 75%;
  158. line-height: 0;
  159. vertical-align: baseline;
  160. }
  161. sub {
  162. bottom: -0.25em;
  163. }
  164. sup {
  165. top: -0.5em;
  166. }
  167. a {
  168. color: #3490dc;
  169. text-decoration: none;
  170. background-color: transparent;
  171. }
  172. a:hover {
  173. color: #1d68a7;
  174. text-decoration: underline;
  175. }
  176. a:not([href]):not([tabindex]) {
  177. color: inherit;
  178. text-decoration: none;
  179. }
  180. a:not([href]):not([tabindex]):hover,
  181. a:not([href]):not([tabindex]):focus {
  182. color: inherit;
  183. text-decoration: none;
  184. }
  185. a:not([href]):not([tabindex]):focus {
  186. outline: 0;
  187. }
  188. pre,
  189. code,
  190. kbd,
  191. samp {
  192. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  193. font-size: 1em;
  194. }
  195. pre {
  196. margin-top: 0;
  197. margin-bottom: 1rem;
  198. overflow: auto;
  199. }
  200. figure {
  201. margin: 0 0 1rem;
  202. }
  203. img {
  204. vertical-align: middle;
  205. border-style: none;
  206. }
  207. svg {
  208. overflow: hidden;
  209. vertical-align: middle;
  210. }
  211. table {
  212. border-collapse: collapse;
  213. }
  214. caption {
  215. padding-top: 0.75rem;
  216. padding-bottom: 0.75rem;
  217. color: #6c757d;
  218. text-align: left;
  219. caption-side: bottom;
  220. }
  221. th {
  222. text-align: inherit;
  223. }
  224. label {
  225. display: inline-block;
  226. margin-bottom: 0.5rem;
  227. }
  228. button {
  229. border-radius: 0;
  230. }
  231. button:focus {
  232. outline: 1px dotted;
  233. outline: 5px auto -webkit-focus-ring-color;
  234. }
  235. input,
  236. button,
  237. select,
  238. optgroup,
  239. textarea {
  240. margin: 0;
  241. font-family: inherit;
  242. font-size: inherit;
  243. line-height: inherit;
  244. }
  245. button,
  246. input {
  247. overflow: visible;
  248. }
  249. button,
  250. select {
  251. text-transform: none;
  252. }
  253. select {
  254. word-wrap: normal;
  255. }
  256. button,
  257. [type=button],
  258. [type=reset],
  259. [type=submit] {
  260. -webkit-appearance: button;
  261. }
  262. button:not(:disabled),
  263. [type=button]:not(:disabled),
  264. [type=reset]:not(:disabled),
  265. [type=submit]:not(:disabled) {
  266. cursor: pointer;
  267. }
  268. button::-moz-focus-inner,
  269. [type=button]::-moz-focus-inner,
  270. [type=reset]::-moz-focus-inner,
  271. [type=submit]::-moz-focus-inner {
  272. padding: 0;
  273. border-style: none;
  274. }
  275. input[type=radio],
  276. input[type=checkbox] {
  277. box-sizing: border-box;
  278. padding: 0;
  279. }
  280. input[type=date],
  281. input[type=time],
  282. input[type=datetime-local],
  283. input[type=month] {
  284. -webkit-appearance: listbox;
  285. }
  286. textarea {
  287. overflow: auto;
  288. resize: vertical;
  289. }
  290. fieldset {
  291. min-width: 0;
  292. padding: 0;
  293. margin: 0;
  294. border: 0;
  295. }
  296. legend {
  297. display: block;
  298. width: 100%;
  299. max-width: 100%;
  300. padding: 0;
  301. margin-bottom: 0.5rem;
  302. font-size: 1.5rem;
  303. line-height: inherit;
  304. color: inherit;
  305. white-space: normal;
  306. }
  307. progress {
  308. vertical-align: baseline;
  309. }
  310. [type=number]::-webkit-inner-spin-button,
  311. [type=number]::-webkit-outer-spin-button {
  312. height: auto;
  313. }
  314. [type=search] {
  315. outline-offset: -2px;
  316. -webkit-appearance: none;
  317. }
  318. [type=search]::-webkit-search-decoration {
  319. -webkit-appearance: none;
  320. }
  321. ::-webkit-file-upload-button {
  322. font: inherit;
  323. -webkit-appearance: button;
  324. }
  325. output {
  326. display: inline-block;
  327. }
  328. summary {
  329. display: list-item;
  330. cursor: pointer;
  331. }
  332. template {
  333. display: none;
  334. }
  335. [hidden] {
  336. display: none !important;
  337. }
  338. h1,
  339. h2,
  340. h3,
  341. h4,
  342. h5,
  343. h6,
  344. .h1,
  345. .h2,
  346. .h3,
  347. .h4,
  348. .h5,
  349. .h6 {
  350. margin-bottom: 0.5rem;
  351. font-weight: 500;
  352. line-height: 1.2;
  353. }
  354. h1,
  355. .h1 {
  356. font-size: 2.25rem;
  357. }
  358. h2,
  359. .h2 {
  360. font-size: 1.8rem;
  361. }
  362. h3,
  363. .h3 {
  364. font-size: 1.575rem;
  365. }
  366. h4,
  367. .h4 {
  368. font-size: 1.35rem;
  369. }
  370. h5,
  371. .h5 {
  372. font-size: 1.125rem;
  373. }
  374. h6,
  375. .h6 {
  376. font-size: 0.9rem;
  377. }
  378. .lead {
  379. font-size: 1.125rem;
  380. font-weight: 300;
  381. }
  382. .display-1 {
  383. font-size: 6rem;
  384. font-weight: 300;
  385. line-height: 1.2;
  386. }
  387. .display-2 {
  388. font-size: 5.5rem;
  389. font-weight: 300;
  390. line-height: 1.2;
  391. }
  392. .display-3 {
  393. font-size: 4.5rem;
  394. font-weight: 300;
  395. line-height: 1.2;
  396. }
  397. .display-4 {
  398. font-size: 3.5rem;
  399. font-weight: 300;
  400. line-height: 1.2;
  401. }
  402. hr {
  403. margin-top: 1rem;
  404. margin-bottom: 1rem;
  405. border: 0;
  406. border-top: 1px solid rgba(0, 0, 0, 0.1);
  407. }
  408. small,
  409. .small {
  410. font-size: 80%;
  411. font-weight: 400;
  412. }
  413. mark,
  414. .mark {
  415. padding: 0.2em;
  416. background-color: #fcf8e3;
  417. }
  418. .list-unstyled {
  419. padding-left: 0;
  420. list-style: none;
  421. }
  422. .list-inline {
  423. padding-left: 0;
  424. list-style: none;
  425. }
  426. .list-inline-item {
  427. display: inline-block;
  428. }
  429. .list-inline-item:not(:last-child) {
  430. margin-right: 0.5rem;
  431. }
  432. .initialism {
  433. font-size: 90%;
  434. text-transform: uppercase;
  435. }
  436. .blockquote {
  437. margin-bottom: 1rem;
  438. font-size: 1.125rem;
  439. }
  440. .blockquote-footer {
  441. display: block;
  442. font-size: 80%;
  443. color: #6c757d;
  444. }
  445. .blockquote-footer::before {
  446. content: "\2014\A0";
  447. }
  448. .img-fluid {
  449. max-width: 100%;
  450. height: auto;
  451. }
  452. .img-thumbnail {
  453. padding: 0.25rem;
  454. background-color: #f8fafc;
  455. border: 1px solid #dee2e6;
  456. border-radius: 0.25rem;
  457. max-width: 100%;
  458. height: auto;
  459. }
  460. .figure {
  461. display: inline-block;
  462. }
  463. .figure-img {
  464. margin-bottom: 0.5rem;
  465. line-height: 1;
  466. }
  467. .figure-caption {
  468. font-size: 90%;
  469. color: #6c757d;
  470. }
  471. code {
  472. font-size: 87.5%;
  473. color: #f66d9b;
  474. word-break: break-word;
  475. }
  476. a > code {
  477. color: inherit;
  478. }
  479. kbd {
  480. padding: 0.2rem 0.4rem;
  481. font-size: 87.5%;
  482. color: #fff;
  483. background-color: #212529;
  484. border-radius: 0.2rem;
  485. }
  486. kbd kbd {
  487. padding: 0;
  488. font-size: 100%;
  489. font-weight: 700;
  490. }
  491. pre {
  492. display: block;
  493. font-size: 87.5%;
  494. color: #212529;
  495. }
  496. pre code {
  497. font-size: inherit;
  498. color: inherit;
  499. word-break: normal;
  500. }
  501. .pre-scrollable {
  502. max-height: 340px;
  503. overflow-y: scroll;
  504. }
  505. .container {
  506. width: 100%;
  507. padding-right: 15px;
  508. padding-left: 15px;
  509. margin-right: auto;
  510. margin-left: auto;
  511. }
  512. @media (min-width: 576px) {
  513. .container {
  514. max-width: 540px;
  515. }
  516. }
  517. @media (min-width: 768px) {
  518. .container {
  519. max-width: 720px;
  520. }
  521. }
  522. @media (min-width: 992px) {
  523. .container {
  524. max-width: 960px;
  525. }
  526. }
  527. @media (min-width: 1200px) {
  528. .container {
  529. max-width: 1140px;
  530. }
  531. }
  532. .container-fluid {
  533. width: 100%;
  534. padding-right: 15px;
  535. padding-left: 15px;
  536. margin-right: auto;
  537. margin-left: auto;
  538. }
  539. .row {
  540. display: flex;
  541. flex-wrap: wrap;
  542. margin-right: -15px;
  543. margin-left: -15px;
  544. }
  545. .no-gutters {
  546. margin-right: 0;
  547. margin-left: 0;
  548. }
  549. .no-gutters > .col,
  550. .no-gutters > [class*=col-] {
  551. padding-right: 0;
  552. padding-left: 0;
  553. }
  554. .col-xl,
  555. .col-xl-auto,
  556. .col-xl-12,
  557. .col-xl-11,
  558. .col-xl-10,
  559. .col-xl-9,
  560. .col-xl-8,
  561. .col-xl-7,
  562. .col-xl-6,
  563. .col-xl-5,
  564. .col-xl-4,
  565. .col-xl-3,
  566. .col-xl-2,
  567. .col-xl-1,
  568. .col-lg,
  569. .col-lg-auto,
  570. .col-lg-12,
  571. .col-lg-11,
  572. .col-lg-10,
  573. .col-lg-9,
  574. .col-lg-8,
  575. .col-lg-7,
  576. .col-lg-6,
  577. .col-lg-5,
  578. .col-lg-4,
  579. .col-lg-3,
  580. .col-lg-2,
  581. .col-lg-1,
  582. .col-md,
  583. .col-md-auto,
  584. .col-md-12,
  585. .col-md-11,
  586. .col-md-10,
  587. .col-md-9,
  588. .col-md-8,
  589. .col-md-7,
  590. .col-md-6,
  591. .col-md-5,
  592. .col-md-4,
  593. .col-md-3,
  594. .col-md-2,
  595. .col-md-1,
  596. .col-sm,
  597. .col-sm-auto,
  598. .col-sm-12,
  599. .col-sm-11,
  600. .col-sm-10,
  601. .col-sm-9,
  602. .col-sm-8,
  603. .col-sm-7,
  604. .col-sm-6,
  605. .col-sm-5,
  606. .col-sm-4,
  607. .col-sm-3,
  608. .col-sm-2,
  609. .col-sm-1,
  610. .col,
  611. .col-auto,
  612. .col-12,
  613. .col-11,
  614. .col-10,
  615. .col-9,
  616. .col-8,
  617. .col-7,
  618. .col-6,
  619. .col-5,
  620. .col-4,
  621. .col-3,
  622. .col-2,
  623. .col-1 {
  624. position: relative;
  625. width: 100%;
  626. padding-right: 15px;
  627. padding-left: 15px;
  628. }
  629. .col {
  630. flex-basis: 0;
  631. flex-grow: 1;
  632. max-width: 100%;
  633. }
  634. .col-auto {
  635. flex: 0 0 auto;
  636. width: auto;
  637. max-width: 100%;
  638. }
  639. .col-1 {
  640. flex: 0 0 8.3333333333%;
  641. max-width: 8.3333333333%;
  642. }
  643. .col-2 {
  644. flex: 0 0 16.6666666667%;
  645. max-width: 16.6666666667%;
  646. }
  647. .col-3 {
  648. flex: 0 0 25%;
  649. max-width: 25%;
  650. }
  651. .col-4 {
  652. flex: 0 0 33.3333333333%;
  653. max-width: 33.3333333333%;
  654. }
  655. .col-5 {
  656. flex: 0 0 41.6666666667%;
  657. max-width: 41.6666666667%;
  658. }
  659. .col-6 {
  660. flex: 0 0 50%;
  661. max-width: 50%;
  662. }
  663. .col-7 {
  664. flex: 0 0 58.3333333333%;
  665. max-width: 58.3333333333%;
  666. }
  667. .col-8 {
  668. flex: 0 0 66.6666666667%;
  669. max-width: 66.6666666667%;
  670. }
  671. .col-9 {
  672. flex: 0 0 75%;
  673. max-width: 75%;
  674. }
  675. .col-10 {
  676. flex: 0 0 83.3333333333%;
  677. max-width: 83.3333333333%;
  678. }
  679. .col-11 {
  680. flex: 0 0 91.6666666667%;
  681. max-width: 91.6666666667%;
  682. }
  683. .col-12 {
  684. flex: 0 0 100%;
  685. max-width: 100%;
  686. }
  687. .order-first {
  688. order: -1;
  689. }
  690. .order-last {
  691. order: 13;
  692. }
  693. .order-0 {
  694. order: 0;
  695. }
  696. .order-1 {
  697. order: 1;
  698. }
  699. .order-2 {
  700. order: 2;
  701. }
  702. .order-3 {
  703. order: 3;
  704. }
  705. .order-4 {
  706. order: 4;
  707. }
  708. .order-5 {
  709. order: 5;
  710. }
  711. .order-6 {
  712. order: 6;
  713. }
  714. .order-7 {
  715. order: 7;
  716. }
  717. .order-8 {
  718. order: 8;
  719. }
  720. .order-9 {
  721. order: 9;
  722. }
  723. .order-10 {
  724. order: 10;
  725. }
  726. .order-11 {
  727. order: 11;
  728. }
  729. .order-12 {
  730. order: 12;
  731. }
  732. .offset-1 {
  733. margin-left: 8.3333333333%;
  734. }
  735. .offset-2 {
  736. margin-left: 16.6666666667%;
  737. }
  738. .offset-3 {
  739. margin-left: 25%;
  740. }
  741. .offset-4 {
  742. margin-left: 33.3333333333%;
  743. }
  744. .offset-5 {
  745. margin-left: 41.6666666667%;
  746. }
  747. .offset-6 {
  748. margin-left: 50%;
  749. }
  750. .offset-7 {
  751. margin-left: 58.3333333333%;
  752. }
  753. .offset-8 {
  754. margin-left: 66.6666666667%;
  755. }
  756. .offset-9 {
  757. margin-left: 75%;
  758. }
  759. .offset-10 {
  760. margin-left: 83.3333333333%;
  761. }
  762. .offset-11 {
  763. margin-left: 91.6666666667%;
  764. }
  765. @media (min-width: 576px) {
  766. .col-sm {
  767. flex-basis: 0;
  768. flex-grow: 1;
  769. max-width: 100%;
  770. }
  771. .col-sm-auto {
  772. flex: 0 0 auto;
  773. width: auto;
  774. max-width: 100%;
  775. }
  776. .col-sm-1 {
  777. flex: 0 0 8.3333333333%;
  778. max-width: 8.3333333333%;
  779. }
  780. .col-sm-2 {
  781. flex: 0 0 16.6666666667%;
  782. max-width: 16.6666666667%;
  783. }
  784. .col-sm-3 {
  785. flex: 0 0 25%;
  786. max-width: 25%;
  787. }
  788. .col-sm-4 {
  789. flex: 0 0 33.3333333333%;
  790. max-width: 33.3333333333%;
  791. }
  792. .col-sm-5 {
  793. flex: 0 0 41.6666666667%;
  794. max-width: 41.6666666667%;
  795. }
  796. .col-sm-6 {
  797. flex: 0 0 50%;
  798. max-width: 50%;
  799. }
  800. .col-sm-7 {
  801. flex: 0 0 58.3333333333%;
  802. max-width: 58.3333333333%;
  803. }
  804. .col-sm-8 {
  805. flex: 0 0 66.6666666667%;
  806. max-width: 66.6666666667%;
  807. }
  808. .col-sm-9 {
  809. flex: 0 0 75%;
  810. max-width: 75%;
  811. }
  812. .col-sm-10 {
  813. flex: 0 0 83.3333333333%;
  814. max-width: 83.3333333333%;
  815. }
  816. .col-sm-11 {
  817. flex: 0 0 91.6666666667%;
  818. max-width: 91.6666666667%;
  819. }
  820. .col-sm-12 {
  821. flex: 0 0 100%;
  822. max-width: 100%;
  823. }
  824. .order-sm-first {
  825. order: -1;
  826. }
  827. .order-sm-last {
  828. order: 13;
  829. }
  830. .order-sm-0 {
  831. order: 0;
  832. }
  833. .order-sm-1 {
  834. order: 1;
  835. }
  836. .order-sm-2 {
  837. order: 2;
  838. }
  839. .order-sm-3 {
  840. order: 3;
  841. }
  842. .order-sm-4 {
  843. order: 4;
  844. }
  845. .order-sm-5 {
  846. order: 5;
  847. }
  848. .order-sm-6 {
  849. order: 6;
  850. }
  851. .order-sm-7 {
  852. order: 7;
  853. }
  854. .order-sm-8 {
  855. order: 8;
  856. }
  857. .order-sm-9 {
  858. order: 9;
  859. }
  860. .order-sm-10 {
  861. order: 10;
  862. }
  863. .order-sm-11 {
  864. order: 11;
  865. }
  866. .order-sm-12 {
  867. order: 12;
  868. }
  869. .offset-sm-0 {
  870. margin-left: 0;
  871. }
  872. .offset-sm-1 {
  873. margin-left: 8.3333333333%;
  874. }
  875. .offset-sm-2 {
  876. margin-left: 16.6666666667%;
  877. }
  878. .offset-sm-3 {
  879. margin-left: 25%;
  880. }
  881. .offset-sm-4 {
  882. margin-left: 33.3333333333%;
  883. }
  884. .offset-sm-5 {
  885. margin-left: 41.6666666667%;
  886. }
  887. .offset-sm-6 {
  888. margin-left: 50%;
  889. }
  890. .offset-sm-7 {
  891. margin-left: 58.3333333333%;
  892. }
  893. .offset-sm-8 {
  894. margin-left: 66.6666666667%;
  895. }
  896. .offset-sm-9 {
  897. margin-left: 75%;
  898. }
  899. .offset-sm-10 {
  900. margin-left: 83.3333333333%;
  901. }
  902. .offset-sm-11 {
  903. margin-left: 91.6666666667%;
  904. }
  905. }
  906. @media (min-width: 768px) {
  907. .col-md {
  908. flex-basis: 0;
  909. flex-grow: 1;
  910. max-width: 100%;
  911. }
  912. .col-md-auto {
  913. flex: 0 0 auto;
  914. width: auto;
  915. max-width: 100%;
  916. }
  917. .col-md-1 {
  918. flex: 0 0 8.3333333333%;
  919. max-width: 8.3333333333%;
  920. }
  921. .col-md-2 {
  922. flex: 0 0 16.6666666667%;
  923. max-width: 16.6666666667%;
  924. }
  925. .col-md-3 {
  926. flex: 0 0 25%;
  927. max-width: 25%;
  928. }
  929. .col-md-4 {
  930. flex: 0 0 33.3333333333%;
  931. max-width: 33.3333333333%;
  932. }
  933. .col-md-5 {
  934. flex: 0 0 41.6666666667%;
  935. max-width: 41.6666666667%;
  936. }
  937. .col-md-6 {
  938. flex: 0 0 50%;
  939. max-width: 50%;
  940. }
  941. .col-md-7 {
  942. flex: 0 0 58.3333333333%;
  943. max-width: 58.3333333333%;
  944. }
  945. .col-md-8 {
  946. flex: 0 0 66.6666666667%;
  947. max-width: 66.6666666667%;
  948. }
  949. .col-md-9 {
  950. flex: 0 0 75%;
  951. max-width: 75%;
  952. }
  953. .col-md-10 {
  954. flex: 0 0 83.3333333333%;
  955. max-width: 83.3333333333%;
  956. }
  957. .col-md-11 {
  958. flex: 0 0 91.6666666667%;
  959. max-width: 91.6666666667%;
  960. }
  961. .col-md-12 {
  962. flex: 0 0 100%;
  963. max-width: 100%;
  964. }
  965. .order-md-first {
  966. order: -1;
  967. }
  968. .order-md-last {
  969. order: 13;
  970. }
  971. .order-md-0 {
  972. order: 0;
  973. }
  974. .order-md-1 {
  975. order: 1;
  976. }
  977. .order-md-2 {
  978. order: 2;
  979. }
  980. .order-md-3 {
  981. order: 3;
  982. }
  983. .order-md-4 {
  984. order: 4;
  985. }
  986. .order-md-5 {
  987. order: 5;
  988. }
  989. .order-md-6 {
  990. order: 6;
  991. }
  992. .order-md-7 {
  993. order: 7;
  994. }
  995. .order-md-8 {
  996. order: 8;
  997. }
  998. .order-md-9 {
  999. order: 9;
  1000. }
  1001. .order-md-10 {
  1002. order: 10;
  1003. }
  1004. .order-md-11 {
  1005. order: 11;
  1006. }
  1007. .order-md-12 {
  1008. order: 12;
  1009. }
  1010. .offset-md-0 {
  1011. margin-left: 0;
  1012. }
  1013. .offset-md-1 {
  1014. margin-left: 8.3333333333%;
  1015. }
  1016. .offset-md-2 {
  1017. margin-left: 16.6666666667%;
  1018. }
  1019. .offset-md-3 {
  1020. margin-left: 25%;
  1021. }
  1022. .offset-md-4 {
  1023. margin-left: 33.3333333333%;
  1024. }
  1025. .offset-md-5 {
  1026. margin-left: 41.6666666667%;
  1027. }
  1028. .offset-md-6 {
  1029. margin-left: 50%;
  1030. }
  1031. .offset-md-7 {
  1032. margin-left: 58.3333333333%;
  1033. }
  1034. .offset-md-8 {
  1035. margin-left: 66.6666666667%;
  1036. }
  1037. .offset-md-9 {
  1038. margin-left: 75%;
  1039. }
  1040. .offset-md-10 {
  1041. margin-left: 83.3333333333%;
  1042. }
  1043. .offset-md-11 {
  1044. margin-left: 91.6666666667%;
  1045. }
  1046. }
  1047. @media (min-width: 992px) {
  1048. .col-lg {
  1049. flex-basis: 0;
  1050. flex-grow: 1;
  1051. max-width: 100%;
  1052. }
  1053. .col-lg-auto {
  1054. flex: 0 0 auto;
  1055. width: auto;
  1056. max-width: 100%;
  1057. }
  1058. .col-lg-1 {
  1059. flex: 0 0 8.3333333333%;
  1060. max-width: 8.3333333333%;
  1061. }
  1062. .col-lg-2 {
  1063. flex: 0 0 16.6666666667%;
  1064. max-width: 16.6666666667%;
  1065. }
  1066. .col-lg-3 {
  1067. flex: 0 0 25%;
  1068. max-width: 25%;
  1069. }
  1070. .col-lg-4 {
  1071. flex: 0 0 33.3333333333%;
  1072. max-width: 33.3333333333%;
  1073. }
  1074. .col-lg-5 {
  1075. flex: 0 0 41.6666666667%;
  1076. max-width: 41.6666666667%;
  1077. }
  1078. .col-lg-6 {
  1079. flex: 0 0 50%;
  1080. max-width: 50%;
  1081. }
  1082. .col-lg-7 {
  1083. flex: 0 0 58.3333333333%;
  1084. max-width: 58.3333333333%;
  1085. }
  1086. .col-lg-8 {
  1087. flex: 0 0 66.6666666667%;
  1088. max-width: 66.6666666667%;
  1089. }
  1090. .col-lg-9 {
  1091. flex: 0 0 75%;
  1092. max-width: 75%;
  1093. }
  1094. .col-lg-10 {
  1095. flex: 0 0 83.3333333333%;
  1096. max-width: 83.3333333333%;
  1097. }
  1098. .col-lg-11 {
  1099. flex: 0 0 91.6666666667%;
  1100. max-width: 91.6666666667%;
  1101. }
  1102. .col-lg-12 {
  1103. flex: 0 0 100%;
  1104. max-width: 100%;
  1105. }
  1106. .order-lg-first {
  1107. order: -1;
  1108. }
  1109. .order-lg-last {
  1110. order: 13;
  1111. }
  1112. .order-lg-0 {
  1113. order: 0;
  1114. }
  1115. .order-lg-1 {
  1116. order: 1;
  1117. }
  1118. .order-lg-2 {
  1119. order: 2;
  1120. }
  1121. .order-lg-3 {
  1122. order: 3;
  1123. }
  1124. .order-lg-4 {
  1125. order: 4;
  1126. }
  1127. .order-lg-5 {
  1128. order: 5;
  1129. }
  1130. .order-lg-6 {
  1131. order: 6;
  1132. }
  1133. .order-lg-7 {
  1134. order: 7;
  1135. }
  1136. .order-lg-8 {
  1137. order: 8;
  1138. }
  1139. .order-lg-9 {
  1140. order: 9;
  1141. }
  1142. .order-lg-10 {
  1143. order: 10;
  1144. }
  1145. .order-lg-11 {
  1146. order: 11;
  1147. }
  1148. .order-lg-12 {
  1149. order: 12;
  1150. }
  1151. .offset-lg-0 {
  1152. margin-left: 0;
  1153. }
  1154. .offset-lg-1 {
  1155. margin-left: 8.3333333333%;
  1156. }
  1157. .offset-lg-2 {
  1158. margin-left: 16.6666666667%;
  1159. }
  1160. .offset-lg-3 {
  1161. margin-left: 25%;
  1162. }
  1163. .offset-lg-4 {
  1164. margin-left: 33.3333333333%;
  1165. }
  1166. .offset-lg-5 {
  1167. margin-left: 41.6666666667%;
  1168. }
  1169. .offset-lg-6 {
  1170. margin-left: 50%;
  1171. }
  1172. .offset-lg-7 {
  1173. margin-left: 58.3333333333%;
  1174. }
  1175. .offset-lg-8 {
  1176. margin-left: 66.6666666667%;
  1177. }
  1178. .offset-lg-9 {
  1179. margin-left: 75%;
  1180. }
  1181. .offset-lg-10 {
  1182. margin-left: 83.3333333333%;
  1183. }
  1184. .offset-lg-11 {
  1185. margin-left: 91.6666666667%;
  1186. }
  1187. }
  1188. @media (min-width: 1200px) {
  1189. .col-xl {
  1190. flex-basis: 0;
  1191. flex-grow: 1;
  1192. max-width: 100%;
  1193. }
  1194. .col-xl-auto {
  1195. flex: 0 0 auto;
  1196. width: auto;
  1197. max-width: 100%;
  1198. }
  1199. .col-xl-1 {
  1200. flex: 0 0 8.3333333333%;
  1201. max-width: 8.3333333333%;
  1202. }
  1203. .col-xl-2 {
  1204. flex: 0 0 16.6666666667%;
  1205. max-width: 16.6666666667%;
  1206. }
  1207. .col-xl-3 {
  1208. flex: 0 0 25%;
  1209. max-width: 25%;
  1210. }
  1211. .col-xl-4 {
  1212. flex: 0 0 33.3333333333%;
  1213. max-width: 33.3333333333%;
  1214. }
  1215. .col-xl-5 {
  1216. flex: 0 0 41.6666666667%;
  1217. max-width: 41.6666666667%;
  1218. }
  1219. .col-xl-6 {
  1220. flex: 0 0 50%;
  1221. max-width: 50%;
  1222. }
  1223. .col-xl-7 {
  1224. flex: 0 0 58.3333333333%;
  1225. max-width: 58.3333333333%;
  1226. }
  1227. .col-xl-8 {
  1228. flex: 0 0 66.6666666667%;
  1229. max-width: 66.6666666667%;
  1230. }
  1231. .col-xl-9 {
  1232. flex: 0 0 75%;
  1233. max-width: 75%;
  1234. }
  1235. .col-xl-10 {
  1236. flex: 0 0 83.3333333333%;
  1237. max-width: 83.3333333333%;
  1238. }
  1239. .col-xl-11 {
  1240. flex: 0 0 91.6666666667%;
  1241. max-width: 91.6666666667%;
  1242. }
  1243. .col-xl-12 {
  1244. flex: 0 0 100%;
  1245. max-width: 100%;
  1246. }
  1247. .order-xl-first {
  1248. order: -1;
  1249. }
  1250. .order-xl-last {
  1251. order: 13;
  1252. }
  1253. .order-xl-0 {
  1254. order: 0;
  1255. }
  1256. .order-xl-1 {
  1257. order: 1;
  1258. }
  1259. .order-xl-2 {
  1260. order: 2;
  1261. }
  1262. .order-xl-3 {
  1263. order: 3;
  1264. }
  1265. .order-xl-4 {
  1266. order: 4;
  1267. }
  1268. .order-xl-5 {
  1269. order: 5;
  1270. }
  1271. .order-xl-6 {
  1272. order: 6;
  1273. }
  1274. .order-xl-7 {
  1275. order: 7;
  1276. }
  1277. .order-xl-8 {
  1278. order: 8;
  1279. }
  1280. .order-xl-9 {
  1281. order: 9;
  1282. }
  1283. .order-xl-10 {
  1284. order: 10;
  1285. }
  1286. .order-xl-11 {
  1287. order: 11;
  1288. }
  1289. .order-xl-12 {
  1290. order: 12;
  1291. }
  1292. .offset-xl-0 {
  1293. margin-left: 0;
  1294. }
  1295. .offset-xl-1 {
  1296. margin-left: 8.3333333333%;
  1297. }
  1298. .offset-xl-2 {
  1299. margin-left: 16.6666666667%;
  1300. }
  1301. .offset-xl-3 {
  1302. margin-left: 25%;
  1303. }
  1304. .offset-xl-4 {
  1305. margin-left: 33.3333333333%;
  1306. }
  1307. .offset-xl-5 {
  1308. margin-left: 41.6666666667%;
  1309. }
  1310. .offset-xl-6 {
  1311. margin-left: 50%;
  1312. }
  1313. .offset-xl-7 {
  1314. margin-left: 58.3333333333%;
  1315. }
  1316. .offset-xl-8 {
  1317. margin-left: 66.6666666667%;
  1318. }
  1319. .offset-xl-9 {
  1320. margin-left: 75%;
  1321. }
  1322. .offset-xl-10 {
  1323. margin-left: 83.3333333333%;
  1324. }
  1325. .offset-xl-11 {
  1326. margin-left: 91.6666666667%;
  1327. }
  1328. }
  1329. .table {
  1330. width: 100%;
  1331. margin-bottom: 1rem;
  1332. color: #212529;
  1333. }
  1334. .table th,
  1335. .table td {
  1336. padding: 0.75rem;
  1337. vertical-align: top;
  1338. border-top: 1px solid #dee2e6;
  1339. }
  1340. .table thead th {
  1341. vertical-align: bottom;
  1342. border-bottom: 2px solid #dee2e6;
  1343. }
  1344. .table tbody + tbody {
  1345. border-top: 2px solid #dee2e6;
  1346. }
  1347. .table-sm th,
  1348. .table-sm td {
  1349. padding: 0.3rem;
  1350. }
  1351. .table-bordered {
  1352. border: 1px solid #dee2e6;
  1353. }
  1354. .table-bordered th,
  1355. .table-bordered td {
  1356. border: 1px solid #dee2e6;
  1357. }
  1358. .table-bordered thead th,
  1359. .table-bordered thead td {
  1360. border-bottom-width: 2px;
  1361. }
  1362. .table-borderless th,
  1363. .table-borderless td,
  1364. .table-borderless thead th,
  1365. .table-borderless tbody + tbody {
  1366. border: 0;
  1367. }
  1368. .table-striped tbody tr:nth-of-type(odd) {
  1369. background-color: rgba(0, 0, 0, 0.05);
  1370. }
  1371. .table-hover tbody tr:hover {
  1372. color: #212529;
  1373. background-color: rgba(0, 0, 0, 0.075);
  1374. }
  1375. .table-primary,
  1376. .table-primary > th,
  1377. .table-primary > td {
  1378. background-color: #c6e0f5;
  1379. }
  1380. .table-primary th,
  1381. .table-primary td,
  1382. .table-primary thead th,
  1383. .table-primary tbody + tbody {
  1384. border-color: #95c5ed;
  1385. }
  1386. .table-hover .table-primary:hover {
  1387. background-color: #b0d4f1;
  1388. }
  1389. .table-hover .table-primary:hover > td,
  1390. .table-hover .table-primary:hover > th {
  1391. background-color: #b0d4f1;
  1392. }
  1393. .table-secondary,
  1394. .table-secondary > th,
  1395. .table-secondary > td {
  1396. background-color: #d6d8db;
  1397. }
  1398. .table-secondary th,
  1399. .table-secondary td,
  1400. .table-secondary thead th,
  1401. .table-secondary tbody + tbody {
  1402. border-color: #b3b7bb;
  1403. }
  1404. .table-hover .table-secondary:hover {
  1405. background-color: #c8cbcf;
  1406. }
  1407. .table-hover .table-secondary:hover > td,
  1408. .table-hover .table-secondary:hover > th {
  1409. background-color: #c8cbcf;
  1410. }
  1411. .table-success,
  1412. .table-success > th,
  1413. .table-success > td {
  1414. background-color: #c7eed8;
  1415. }
  1416. .table-success th,
  1417. .table-success td,
  1418. .table-success thead th,
  1419. .table-success tbody + tbody {
  1420. border-color: #98dfb6;
  1421. }
  1422. .table-hover .table-success:hover {
  1423. background-color: #b3e8ca;
  1424. }
  1425. .table-hover .table-success:hover > td,
  1426. .table-hover .table-success:hover > th {
  1427. background-color: #b3e8ca;
  1428. }
  1429. .table-info,
  1430. .table-info > th,
  1431. .table-info > td {
  1432. background-color: #d6e9f9;
  1433. }
  1434. .table-info th,
  1435. .table-info td,
  1436. .table-info thead th,
  1437. .table-info tbody + tbody {
  1438. border-color: #b3d7f5;
  1439. }
  1440. .table-hover .table-info:hover {
  1441. background-color: #c0ddf6;
  1442. }
  1443. .table-hover .table-info:hover > td,
  1444. .table-hover .table-info:hover > th {
  1445. background-color: #c0ddf6;
  1446. }
  1447. .table-warning,
  1448. .table-warning > th,
  1449. .table-warning > td {
  1450. background-color: #fffacc;
  1451. }
  1452. .table-warning th,
  1453. .table-warning td,
  1454. .table-warning thead th,
  1455. .table-warning tbody + tbody {
  1456. border-color: #fff6a1;
  1457. }
  1458. .table-hover .table-warning:hover {
  1459. background-color: #fff8b3;
  1460. }
  1461. .table-hover .table-warning:hover > td,
  1462. .table-hover .table-warning:hover > th {
  1463. background-color: #fff8b3;
  1464. }
  1465. .table-danger,
  1466. .table-danger > th,
  1467. .table-danger > td {
  1468. background-color: #f7c6c5;
  1469. }
  1470. .table-danger th,
  1471. .table-danger td,
  1472. .table-danger thead th,
  1473. .table-danger tbody + tbody {
  1474. border-color: #f09593;
  1475. }
  1476. .table-hover .table-danger:hover {
  1477. background-color: #f4b0af;
  1478. }
  1479. .table-hover .table-danger:hover > td,
  1480. .table-hover .table-danger:hover > th {
  1481. background-color: #f4b0af;
  1482. }
  1483. .table-light,
  1484. .table-light > th,
  1485. .table-light > td {
  1486. background-color: #fdfdfe;
  1487. }
  1488. .table-light th,
  1489. .table-light td,
  1490. .table-light thead th,
  1491. .table-light tbody + tbody {
  1492. border-color: #fbfcfc;
  1493. }
  1494. .table-hover .table-light:hover {
  1495. background-color: #ececf6;
  1496. }
  1497. .table-hover .table-light:hover > td,
  1498. .table-hover .table-light:hover > th {
  1499. background-color: #ececf6;
  1500. }
  1501. .table-dark,
  1502. .table-dark > th,
  1503. .table-dark > td {
  1504. background-color: #c6c8ca;
  1505. }
  1506. .table-dark th,
  1507. .table-dark td,
  1508. .table-dark thead th,
  1509. .table-dark tbody + tbody {
  1510. border-color: #95999c;
  1511. }
  1512. .table-hover .table-dark:hover {
  1513. background-color: #b9bbbe;
  1514. }
  1515. .table-hover .table-dark:hover > td,
  1516. .table-hover .table-dark:hover > th {
  1517. background-color: #b9bbbe;
  1518. }
  1519. .table-active,
  1520. .table-active > th,
  1521. .table-active > td {
  1522. background-color: rgba(0, 0, 0, 0.075);
  1523. }
  1524. .table-hover .table-active:hover {
  1525. background-color: rgba(0, 0, 0, 0.075);
  1526. }
  1527. .table-hover .table-active:hover > td,
  1528. .table-hover .table-active:hover > th {
  1529. background-color: rgba(0, 0, 0, 0.075);
  1530. }
  1531. .table .thead-dark th {
  1532. color: #fff;
  1533. background-color: #343a40;
  1534. border-color: #454d55;
  1535. }
  1536. .table .thead-light th {
  1537. color: #495057;
  1538. background-color: #e9ecef;
  1539. border-color: #dee2e6;
  1540. }
  1541. .table-dark {
  1542. color: #fff;
  1543. background-color: #343a40;
  1544. }
  1545. .table-dark th,
  1546. .table-dark td,
  1547. .table-dark thead th {
  1548. border-color: #454d55;
  1549. }
  1550. .table-dark.table-bordered {
  1551. border: 0;
  1552. }
  1553. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1554. background-color: rgba(255, 255, 255, 0.05);
  1555. }
  1556. .table-dark.table-hover tbody tr:hover {
  1557. color: #fff;
  1558. background-color: rgba(255, 255, 255, 0.075);
  1559. }
  1560. @media (max-width: 575.98px) {
  1561. .table-responsive-sm {
  1562. display: block;
  1563. width: 100%;
  1564. overflow-x: auto;
  1565. -webkit-overflow-scrolling: touch;
  1566. }
  1567. .table-responsive-sm > .table-bordered {
  1568. border: 0;
  1569. }
  1570. }
  1571. @media (max-width: 767.98px) {
  1572. .table-responsive-md {
  1573. display: block;
  1574. width: 100%;
  1575. overflow-x: auto;
  1576. -webkit-overflow-scrolling: touch;
  1577. }
  1578. .table-responsive-md > .table-bordered {
  1579. border: 0;
  1580. }
  1581. }
  1582. @media (max-width: 991.98px) {
  1583. .table-responsive-lg {
  1584. display: block;
  1585. width: 100%;
  1586. overflow-x: auto;
  1587. -webkit-overflow-scrolling: touch;
  1588. }
  1589. .table-responsive-lg > .table-bordered {
  1590. border: 0;
  1591. }
  1592. }
  1593. @media (max-width: 1199.98px) {
  1594. .table-responsive-xl {
  1595. display: block;
  1596. width: 100%;
  1597. overflow-x: auto;
  1598. -webkit-overflow-scrolling: touch;
  1599. }
  1600. .table-responsive-xl > .table-bordered {
  1601. border: 0;
  1602. }
  1603. }
  1604. .table-responsive {
  1605. display: block;
  1606. width: 100%;
  1607. overflow-x: auto;
  1608. -webkit-overflow-scrolling: touch;
  1609. }
  1610. .table-responsive > .table-bordered {
  1611. border: 0;
  1612. }
  1613. .form-control {
  1614. display: block;
  1615. width: 100%;
  1616. height: calc(1.6em + 0.75rem + 2px);
  1617. padding: 0.375rem 0.75rem;
  1618. font-size: 0.9rem;
  1619. font-weight: 400;
  1620. line-height: 1.6;
  1621. color: #495057;
  1622. background-color: #fff;
  1623. background-clip: padding-box;
  1624. border: 1px solid #ced4da;
  1625. border-radius: 0.25rem;
  1626. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1627. }
  1628. @media (prefers-reduced-motion: reduce) {
  1629. .form-control {
  1630. transition: none;
  1631. }
  1632. }
  1633. .form-control::-ms-expand {
  1634. background-color: transparent;
  1635. border: 0;
  1636. }
  1637. .form-control:focus {
  1638. color: #495057;
  1639. background-color: #fff;
  1640. border-color: #a1cbef;
  1641. outline: 0;
  1642. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  1643. }
  1644. .form-control::-webkit-input-placeholder {
  1645. color: #6c757d;
  1646. opacity: 1;
  1647. }
  1648. .form-control::-moz-placeholder {
  1649. color: #6c757d;
  1650. opacity: 1;
  1651. }
  1652. .form-control:-ms-input-placeholder {
  1653. color: #6c757d;
  1654. opacity: 1;
  1655. }
  1656. .form-control::-ms-input-placeholder {
  1657. color: #6c757d;
  1658. opacity: 1;
  1659. }
  1660. .form-control::placeholder {
  1661. color: #6c757d;
  1662. opacity: 1;
  1663. }
  1664. .form-control:disabled,
  1665. .form-control[readonly] {
  1666. background-color: #e9ecef;
  1667. opacity: 1;
  1668. }
  1669. select.form-control:focus::-ms-value {
  1670. color: #495057;
  1671. background-color: #fff;
  1672. }
  1673. .form-control-file,
  1674. .form-control-range {
  1675. display: block;
  1676. width: 100%;
  1677. }
  1678. .col-form-label {
  1679. padding-top: calc(0.375rem + 1px);
  1680. padding-bottom: calc(0.375rem + 1px);
  1681. margin-bottom: 0;
  1682. font-size: inherit;
  1683. line-height: 1.6;
  1684. }
  1685. .col-form-label-lg {
  1686. padding-top: calc(0.5rem + 1px);
  1687. padding-bottom: calc(0.5rem + 1px);
  1688. font-size: 1.125rem;
  1689. line-height: 1.5;
  1690. }
  1691. .col-form-label-sm {
  1692. padding-top: calc(0.25rem + 1px);
  1693. padding-bottom: calc(0.25rem + 1px);
  1694. font-size: 0.7875rem;
  1695. line-height: 1.5;
  1696. }
  1697. .form-control-plaintext {
  1698. display: block;
  1699. width: 100%;
  1700. padding-top: 0.375rem;
  1701. padding-bottom: 0.375rem;
  1702. margin-bottom: 0;
  1703. line-height: 1.6;
  1704. color: #212529;
  1705. background-color: transparent;
  1706. border: solid transparent;
  1707. border-width: 1px 0;
  1708. }
  1709. .form-control-plaintext.form-control-sm,
  1710. .form-control-plaintext.form-control-lg {
  1711. padding-right: 0;
  1712. padding-left: 0;
  1713. }
  1714. .form-control-sm {
  1715. height: calc(1.5em + 0.5rem + 2px);
  1716. padding: 0.25rem 0.5rem;
  1717. font-size: 0.7875rem;
  1718. line-height: 1.5;
  1719. border-radius: 0.2rem;
  1720. }
  1721. .form-control-lg {
  1722. height: calc(1.5em + 1rem + 2px);
  1723. padding: 0.5rem 1rem;
  1724. font-size: 1.125rem;
  1725. line-height: 1.5;
  1726. border-radius: 0.3rem;
  1727. }
  1728. select.form-control[size],
  1729. select.form-control[multiple] {
  1730. height: auto;
  1731. }
  1732. textarea.form-control {
  1733. height: auto;
  1734. }
  1735. .form-group {
  1736. margin-bottom: 1rem;
  1737. }
  1738. .form-text {
  1739. display: block;
  1740. margin-top: 0.25rem;
  1741. }
  1742. .form-row {
  1743. display: flex;
  1744. flex-wrap: wrap;
  1745. margin-right: -5px;
  1746. margin-left: -5px;
  1747. }
  1748. .form-row > .col,
  1749. .form-row > [class*=col-] {
  1750. padding-right: 5px;
  1751. padding-left: 5px;
  1752. }
  1753. .form-check {
  1754. position: relative;
  1755. display: block;
  1756. padding-left: 1.25rem;
  1757. }
  1758. .form-check-input {
  1759. position: absolute;
  1760. margin-top: 0.3rem;
  1761. margin-left: -1.25rem;
  1762. }
  1763. .form-check-input:disabled ~ .form-check-label {
  1764. color: #6c757d;
  1765. }
  1766. .form-check-label {
  1767. margin-bottom: 0;
  1768. }
  1769. .form-check-inline {
  1770. display: inline-flex;
  1771. align-items: center;
  1772. padding-left: 0;
  1773. margin-right: 0.75rem;
  1774. }
  1775. .form-check-inline .form-check-input {
  1776. position: static;
  1777. margin-top: 0;
  1778. margin-right: 0.3125rem;
  1779. margin-left: 0;
  1780. }
  1781. .valid-feedback {
  1782. display: none;
  1783. width: 100%;
  1784. margin-top: 0.25rem;
  1785. font-size: 80%;
  1786. color: #38c172;
  1787. }
  1788. .valid-tooltip {
  1789. position: absolute;
  1790. top: 100%;
  1791. z-index: 5;
  1792. display: none;
  1793. max-width: 100%;
  1794. padding: 0.25rem 0.5rem;
  1795. margin-top: 0.1rem;
  1796. font-size: 0.7875rem;
  1797. line-height: 1.6;
  1798. color: #fff;
  1799. background-color: rgba(56, 193, 114, 0.9);
  1800. border-radius: 0.25rem;
  1801. }
  1802. .was-validated .form-control:valid,
  1803. .form-control.is-valid {
  1804. border-color: #38c172;
  1805. padding-right: calc(1.6em + 0.75rem);
  1806. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  1807. background-repeat: no-repeat;
  1808. background-position: center right calc(0.4em + 0.1875rem);
  1809. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  1810. }
  1811. .was-validated .form-control:valid:focus,
  1812. .form-control.is-valid:focus {
  1813. border-color: #38c172;
  1814. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1815. }
  1816. .was-validated .form-control:valid ~ .valid-feedback,
  1817. .was-validated .form-control:valid ~ .valid-tooltip,
  1818. .form-control.is-valid ~ .valid-feedback,
  1819. .form-control.is-valid ~ .valid-tooltip {
  1820. display: block;
  1821. }
  1822. .was-validated textarea.form-control:valid,
  1823. textarea.form-control.is-valid {
  1824. padding-right: calc(1.6em + 0.75rem);
  1825. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  1826. }
  1827. .was-validated .custom-select:valid,
  1828. .custom-select.is-valid {
  1829. border-color: #38c172;
  1830. padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  1831. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  1832. }
  1833. .was-validated .custom-select:valid:focus,
  1834. .custom-select.is-valid:focus {
  1835. border-color: #38c172;
  1836. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1837. }
  1838. .was-validated .custom-select:valid ~ .valid-feedback,
  1839. .was-validated .custom-select:valid ~ .valid-tooltip,
  1840. .custom-select.is-valid ~ .valid-feedback,
  1841. .custom-select.is-valid ~ .valid-tooltip {
  1842. display: block;
  1843. }
  1844. .was-validated .form-control-file:valid ~ .valid-feedback,
  1845. .was-validated .form-control-file:valid ~ .valid-tooltip,
  1846. .form-control-file.is-valid ~ .valid-feedback,
  1847. .form-control-file.is-valid ~ .valid-tooltip {
  1848. display: block;
  1849. }
  1850. .was-validated .form-check-input:valid ~ .form-check-label,
  1851. .form-check-input.is-valid ~ .form-check-label {
  1852. color: #38c172;
  1853. }
  1854. .was-validated .form-check-input:valid ~ .valid-feedback,
  1855. .was-validated .form-check-input:valid ~ .valid-tooltip,
  1856. .form-check-input.is-valid ~ .valid-feedback,
  1857. .form-check-input.is-valid ~ .valid-tooltip {
  1858. display: block;
  1859. }
  1860. .was-validated .custom-control-input:valid ~ .custom-control-label,
  1861. .custom-control-input.is-valid ~ .custom-control-label {
  1862. color: #38c172;
  1863. }
  1864. .was-validated .custom-control-input:valid ~ .custom-control-label::before,
  1865. .custom-control-input.is-valid ~ .custom-control-label::before {
  1866. border-color: #38c172;
  1867. }
  1868. .was-validated .custom-control-input:valid ~ .valid-feedback,
  1869. .was-validated .custom-control-input:valid ~ .valid-tooltip,
  1870. .custom-control-input.is-valid ~ .valid-feedback,
  1871. .custom-control-input.is-valid ~ .valid-tooltip {
  1872. display: block;
  1873. }
  1874. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
  1875. .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  1876. border-color: #5cd08d;
  1877. background-color: #5cd08d;
  1878. }
  1879. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
  1880. .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  1881. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1882. }
  1883. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
  1884. .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  1885. border-color: #38c172;
  1886. }
  1887. .was-validated .custom-file-input:valid ~ .custom-file-label,
  1888. .custom-file-input.is-valid ~ .custom-file-label {
  1889. border-color: #38c172;
  1890. }
  1891. .was-validated .custom-file-input:valid ~ .valid-feedback,
  1892. .was-validated .custom-file-input:valid ~ .valid-tooltip,
  1893. .custom-file-input.is-valid ~ .valid-feedback,
  1894. .custom-file-input.is-valid ~ .valid-tooltip {
  1895. display: block;
  1896. }
  1897. .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
  1898. .custom-file-input.is-valid:focus ~ .custom-file-label {
  1899. border-color: #38c172;
  1900. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  1901. }
  1902. .invalid-feedback {
  1903. display: none;
  1904. width: 100%;
  1905. margin-top: 0.25rem;
  1906. font-size: 80%;
  1907. color: #e3342f;
  1908. }
  1909. .invalid-tooltip {
  1910. position: absolute;
  1911. top: 100%;
  1912. z-index: 5;
  1913. display: none;
  1914. max-width: 100%;
  1915. padding: 0.25rem 0.5rem;
  1916. margin-top: 0.1rem;
  1917. font-size: 0.7875rem;
  1918. line-height: 1.6;
  1919. color: #fff;
  1920. background-color: rgba(227, 52, 47, 0.9);
  1921. border-radius: 0.25rem;
  1922. }
  1923. .was-validated .form-control:invalid,
  1924. .form-control.is-invalid {
  1925. border-color: #e3342f;
  1926. padding-right: calc(1.6em + 0.75rem);
  1927. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e3342f' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e3342f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  1928. background-repeat: no-repeat;
  1929. background-position: center right calc(0.4em + 0.1875rem);
  1930. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  1931. }
  1932. .was-validated .form-control:invalid:focus,
  1933. .form-control.is-invalid:focus {
  1934. border-color: #e3342f;
  1935. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  1936. }
  1937. .was-validated .form-control:invalid ~ .invalid-feedback,
  1938. .was-validated .form-control:invalid ~ .invalid-tooltip,
  1939. .form-control.is-invalid ~ .invalid-feedback,
  1940. .form-control.is-invalid ~ .invalid-tooltip {
  1941. display: block;
  1942. }
  1943. .was-validated textarea.form-control:invalid,
  1944. textarea.form-control.is-invalid {
  1945. padding-right: calc(1.6em + 0.75rem);
  1946. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  1947. }
  1948. .was-validated .custom-select:invalid,
  1949. .custom-select.is-invalid {
  1950. border-color: #e3342f;
  1951. padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  1952. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23e3342f' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23e3342f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  1953. }
  1954. .was-validated .custom-select:invalid:focus,
  1955. .custom-select.is-invalid:focus {
  1956. border-color: #e3342f;
  1957. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  1958. }
  1959. .was-validated .custom-select:invalid ~ .invalid-feedback,
  1960. .was-validated .custom-select:invalid ~ .invalid-tooltip,
  1961. .custom-select.is-invalid ~ .invalid-feedback,
  1962. .custom-select.is-invalid ~ .invalid-tooltip {
  1963. display: block;
  1964. }
  1965. .was-validated .form-control-file:invalid ~ .invalid-feedback,
  1966. .was-validated .form-control-file:invalid ~ .invalid-tooltip,
  1967. .form-control-file.is-invalid ~ .invalid-feedback,
  1968. .form-control-file.is-invalid ~ .invalid-tooltip {
  1969. display: block;
  1970. }
  1971. .was-validated .form-check-input:invalid ~ .form-check-label,
  1972. .form-check-input.is-invalid ~ .form-check-label {
  1973. color: #e3342f;
  1974. }
  1975. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  1976. .was-validated .form-check-input:invalid ~ .invalid-tooltip,
  1977. .form-check-input.is-invalid ~ .invalid-feedback,
  1978. .form-check-input.is-invalid ~ .invalid-tooltip {
  1979. display: block;
  1980. }
  1981. .was-validated .custom-control-input:invalid ~ .custom-control-label,
  1982. .custom-control-input.is-invalid ~ .custom-control-label {
  1983. color: #e3342f;
  1984. }
  1985. .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
  1986. .custom-control-input.is-invalid ~ .custom-control-label::before {
  1987. border-color: #e3342f;
  1988. }
  1989. .was-validated .custom-control-input:invalid ~ .invalid-feedback,
  1990. .was-validated .custom-control-input:invalid ~ .invalid-tooltip,
  1991. .custom-control-input.is-invalid ~ .invalid-feedback,
  1992. .custom-control-input.is-invalid ~ .invalid-tooltip {
  1993. display: block;
  1994. }
  1995. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
  1996. .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  1997. border-color: #e9605c;
  1998. background-color: #e9605c;
  1999. }
  2000. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
  2001. .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2002. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2003. }
  2004. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
  2005. .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  2006. border-color: #e3342f;
  2007. }
  2008. .was-validated .custom-file-input:invalid ~ .custom-file-label,
  2009. .custom-file-input.is-invalid ~ .custom-file-label {
  2010. border-color: #e3342f;
  2011. }
  2012. .was-validated .custom-file-input:invalid ~ .invalid-feedback,
  2013. .was-validated .custom-file-input:invalid ~ .invalid-tooltip,
  2014. .custom-file-input.is-invalid ~ .invalid-feedback,
  2015. .custom-file-input.is-invalid ~ .invalid-tooltip {
  2016. display: block;
  2017. }
  2018. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
  2019. .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2020. border-color: #e3342f;
  2021. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2022. }
  2023. .form-inline {
  2024. display: flex;
  2025. flex-flow: row wrap;
  2026. align-items: center;
  2027. }
  2028. .form-inline .form-check {
  2029. width: 100%;
  2030. }
  2031. @media (min-width: 576px) {
  2032. .form-inline label {
  2033. display: flex;
  2034. align-items: center;
  2035. justify-content: center;
  2036. margin-bottom: 0;
  2037. }
  2038. .form-inline .form-group {
  2039. display: flex;
  2040. flex: 0 0 auto;
  2041. flex-flow: row wrap;
  2042. align-items: center;
  2043. margin-bottom: 0;
  2044. }
  2045. .form-inline .form-control {
  2046. display: inline-block;
  2047. width: auto;
  2048. vertical-align: middle;
  2049. }
  2050. .form-inline .form-control-plaintext {
  2051. display: inline-block;
  2052. }
  2053. .form-inline .input-group,
  2054. .form-inline .custom-select {
  2055. width: auto;
  2056. }
  2057. .form-inline .form-check {
  2058. display: flex;
  2059. align-items: center;
  2060. justify-content: center;
  2061. width: auto;
  2062. padding-left: 0;
  2063. }
  2064. .form-inline .form-check-input {
  2065. position: relative;
  2066. flex-shrink: 0;
  2067. margin-top: 0;
  2068. margin-right: 0.25rem;
  2069. margin-left: 0;
  2070. }
  2071. .form-inline .custom-control {
  2072. align-items: center;
  2073. justify-content: center;
  2074. }
  2075. .form-inline .custom-control-label {
  2076. margin-bottom: 0;
  2077. }
  2078. }
  2079. .btn {
  2080. display: inline-block;
  2081. font-weight: 400;
  2082. color: #212529;
  2083. text-align: center;
  2084. vertical-align: middle;
  2085. -webkit-user-select: none;
  2086. -moz-user-select: none;
  2087. -ms-user-select: none;
  2088. user-select: none;
  2089. background-color: transparent;
  2090. border: 1px solid transparent;
  2091. padding: 0.375rem 0.75rem;
  2092. font-size: 0.9rem;
  2093. line-height: 1.6;
  2094. border-radius: 0.25rem;
  2095. 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;
  2096. }
  2097. @media (prefers-reduced-motion: reduce) {
  2098. .btn {
  2099. transition: none;
  2100. }
  2101. }
  2102. .btn:hover {
  2103. color: #212529;
  2104. text-decoration: none;
  2105. }
  2106. .btn:focus,
  2107. .btn.focus {
  2108. outline: 0;
  2109. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2110. }
  2111. .btn.disabled,
  2112. .btn:disabled {
  2113. opacity: 0.65;
  2114. }
  2115. a.btn.disabled,
  2116. fieldset:disabled a.btn {
  2117. pointer-events: none;
  2118. }
  2119. .btn-primary {
  2120. color: #fff;
  2121. background-color: #3490dc;
  2122. border-color: #3490dc;
  2123. }
  2124. .btn-primary:hover {
  2125. color: #fff;
  2126. background-color: #227dc7;
  2127. border-color: #2176bd;
  2128. }
  2129. .btn-primary:focus,
  2130. .btn-primary.focus {
  2131. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2132. }
  2133. .btn-primary.disabled,
  2134. .btn-primary:disabled {
  2135. color: #fff;
  2136. background-color: #3490dc;
  2137. border-color: #3490dc;
  2138. }
  2139. .btn-primary:not(:disabled):not(.disabled):active,
  2140. .btn-primary:not(:disabled):not(.disabled).active,
  2141. .show > .btn-primary.dropdown-toggle {
  2142. color: #fff;
  2143. background-color: #2176bd;
  2144. border-color: #1f6fb2;
  2145. }
  2146. .btn-primary:not(:disabled):not(.disabled):active:focus,
  2147. .btn-primary:not(:disabled):not(.disabled).active:focus,
  2148. .show > .btn-primary.dropdown-toggle:focus {
  2149. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2150. }
  2151. .btn-secondary {
  2152. color: #fff;
  2153. background-color: #6c757d;
  2154. border-color: #6c757d;
  2155. }
  2156. .btn-secondary:hover {
  2157. color: #fff;
  2158. background-color: #5a6268;
  2159. border-color: #545b62;
  2160. }
  2161. .btn-secondary:focus,
  2162. .btn-secondary.focus {
  2163. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2164. }
  2165. .btn-secondary.disabled,
  2166. .btn-secondary:disabled {
  2167. color: #fff;
  2168. background-color: #6c757d;
  2169. border-color: #6c757d;
  2170. }
  2171. .btn-secondary:not(:disabled):not(.disabled):active,
  2172. .btn-secondary:not(:disabled):not(.disabled).active,
  2173. .show > .btn-secondary.dropdown-toggle {
  2174. color: #fff;
  2175. background-color: #545b62;
  2176. border-color: #4e555b;
  2177. }
  2178. .btn-secondary:not(:disabled):not(.disabled):active:focus,
  2179. .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2180. .show > .btn-secondary.dropdown-toggle:focus {
  2181. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2182. }
  2183. .btn-success {
  2184. color: #fff;
  2185. background-color: #38c172;
  2186. border-color: #38c172;
  2187. }
  2188. .btn-success:hover {
  2189. color: #fff;
  2190. background-color: #2fa360;
  2191. border-color: #2d995b;
  2192. }
  2193. .btn-success:focus,
  2194. .btn-success.focus {
  2195. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2196. }
  2197. .btn-success.disabled,
  2198. .btn-success:disabled {
  2199. color: #fff;
  2200. background-color: #38c172;
  2201. border-color: #38c172;
  2202. }
  2203. .btn-success:not(:disabled):not(.disabled):active,
  2204. .btn-success:not(:disabled):not(.disabled).active,
  2205. .show > .btn-success.dropdown-toggle {
  2206. color: #fff;
  2207. background-color: #2d995b;
  2208. border-color: #2a9055;
  2209. }
  2210. .btn-success:not(:disabled):not(.disabled):active:focus,
  2211. .btn-success:not(:disabled):not(.disabled).active:focus,
  2212. .show > .btn-success.dropdown-toggle:focus {
  2213. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2214. }
  2215. .btn-info {
  2216. color: #212529;
  2217. background-color: #6cb2eb;
  2218. border-color: #6cb2eb;
  2219. }
  2220. .btn-info:hover {
  2221. color: #fff;
  2222. background-color: #4aa0e6;
  2223. border-color: #3f9ae5;
  2224. }
  2225. .btn-info:focus,
  2226. .btn-info.focus {
  2227. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2228. }
  2229. .btn-info.disabled,
  2230. .btn-info:disabled {
  2231. color: #212529;
  2232. background-color: #6cb2eb;
  2233. border-color: #6cb2eb;
  2234. }
  2235. .btn-info:not(:disabled):not(.disabled):active,
  2236. .btn-info:not(:disabled):not(.disabled).active,
  2237. .show > .btn-info.dropdown-toggle {
  2238. color: #fff;
  2239. background-color: #3f9ae5;
  2240. border-color: #3495e3;
  2241. }
  2242. .btn-info:not(:disabled):not(.disabled):active:focus,
  2243. .btn-info:not(:disabled):not(.disabled).active:focus,
  2244. .show > .btn-info.dropdown-toggle:focus {
  2245. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2246. }
  2247. .btn-warning {
  2248. color: #212529;
  2249. background-color: #ffed4a;
  2250. border-color: #ffed4a;
  2251. }
  2252. .btn-warning:hover {
  2253. color: #212529;
  2254. background-color: #ffe924;
  2255. border-color: #ffe817;
  2256. }
  2257. .btn-warning:focus,
  2258. .btn-warning.focus {
  2259. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2260. }
  2261. .btn-warning.disabled,
  2262. .btn-warning:disabled {
  2263. color: #212529;
  2264. background-color: #ffed4a;
  2265. border-color: #ffed4a;
  2266. }
  2267. .btn-warning:not(:disabled):not(.disabled):active,
  2268. .btn-warning:not(:disabled):not(.disabled).active,
  2269. .show > .btn-warning.dropdown-toggle {
  2270. color: #212529;
  2271. background-color: #ffe817;
  2272. border-color: #ffe70a;
  2273. }
  2274. .btn-warning:not(:disabled):not(.disabled):active:focus,
  2275. .btn-warning:not(:disabled):not(.disabled).active:focus,
  2276. .show > .btn-warning.dropdown-toggle:focus {
  2277. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2278. }
  2279. .btn-danger {
  2280. color: #fff;
  2281. background-color: #e3342f;
  2282. border-color: #e3342f;
  2283. }
  2284. .btn-danger:hover {
  2285. color: #fff;
  2286. background-color: #d0211c;
  2287. border-color: #c51f1a;
  2288. }
  2289. .btn-danger:focus,
  2290. .btn-danger.focus {
  2291. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2292. }
  2293. .btn-danger.disabled,
  2294. .btn-danger:disabled {
  2295. color: #fff;
  2296. background-color: #e3342f;
  2297. border-color: #e3342f;
  2298. }
  2299. .btn-danger:not(:disabled):not(.disabled):active,
  2300. .btn-danger:not(:disabled):not(.disabled).active,
  2301. .show > .btn-danger.dropdown-toggle {
  2302. color: #fff;
  2303. background-color: #c51f1a;
  2304. border-color: #b91d19;
  2305. }
  2306. .btn-danger:not(:disabled):not(.disabled):active:focus,
  2307. .btn-danger:not(:disabled):not(.disabled).active:focus,
  2308. .show > .btn-danger.dropdown-toggle:focus {
  2309. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2310. }
  2311. .btn-light {
  2312. color: #212529;
  2313. background-color: #f8f9fa;
  2314. border-color: #f8f9fa;
  2315. }
  2316. .btn-light:hover {
  2317. color: #212529;
  2318. background-color: #e2e6ea;
  2319. border-color: #dae0e5;
  2320. }
  2321. .btn-light:focus,
  2322. .btn-light.focus {
  2323. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2324. }
  2325. .btn-light.disabled,
  2326. .btn-light:disabled {
  2327. color: #212529;
  2328. background-color: #f8f9fa;
  2329. border-color: #f8f9fa;
  2330. }
  2331. .btn-light:not(:disabled):not(.disabled):active,
  2332. .btn-light:not(:disabled):not(.disabled).active,
  2333. .show > .btn-light.dropdown-toggle {
  2334. color: #212529;
  2335. background-color: #dae0e5;
  2336. border-color: #d3d9df;
  2337. }
  2338. .btn-light:not(:disabled):not(.disabled):active:focus,
  2339. .btn-light:not(:disabled):not(.disabled).active:focus,
  2340. .show > .btn-light.dropdown-toggle:focus {
  2341. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2342. }
  2343. .btn-dark {
  2344. color: #fff;
  2345. background-color: #343a40;
  2346. border-color: #343a40;
  2347. }
  2348. .btn-dark:hover {
  2349. color: #fff;
  2350. background-color: #23272b;
  2351. border-color: #1d2124;
  2352. }
  2353. .btn-dark:focus,
  2354. .btn-dark.focus {
  2355. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2356. }
  2357. .btn-dark.disabled,
  2358. .btn-dark:disabled {
  2359. color: #fff;
  2360. background-color: #343a40;
  2361. border-color: #343a40;
  2362. }
  2363. .btn-dark:not(:disabled):not(.disabled):active,
  2364. .btn-dark:not(:disabled):not(.disabled).active,
  2365. .show > .btn-dark.dropdown-toggle {
  2366. color: #fff;
  2367. background-color: #1d2124;
  2368. border-color: #171a1d;
  2369. }
  2370. .btn-dark:not(:disabled):not(.disabled):active:focus,
  2371. .btn-dark:not(:disabled):not(.disabled).active:focus,
  2372. .show > .btn-dark.dropdown-toggle:focus {
  2373. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2374. }
  2375. .btn-outline-primary {
  2376. color: #3490dc;
  2377. border-color: #3490dc;
  2378. }
  2379. .btn-outline-primary:hover {
  2380. color: #fff;
  2381. background-color: #3490dc;
  2382. border-color: #3490dc;
  2383. }
  2384. .btn-outline-primary:focus,
  2385. .btn-outline-primary.focus {
  2386. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2387. }
  2388. .btn-outline-primary.disabled,
  2389. .btn-outline-primary:disabled {
  2390. color: #3490dc;
  2391. background-color: transparent;
  2392. }
  2393. .btn-outline-primary:not(:disabled):not(.disabled):active,
  2394. .btn-outline-primary:not(:disabled):not(.disabled).active,
  2395. .show > .btn-outline-primary.dropdown-toggle {
  2396. color: #fff;
  2397. background-color: #3490dc;
  2398. border-color: #3490dc;
  2399. }
  2400. .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
  2401. .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2402. .show > .btn-outline-primary.dropdown-toggle:focus {
  2403. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2404. }
  2405. .btn-outline-secondary {
  2406. color: #6c757d;
  2407. border-color: #6c757d;
  2408. }
  2409. .btn-outline-secondary:hover {
  2410. color: #fff;
  2411. background-color: #6c757d;
  2412. border-color: #6c757d;
  2413. }
  2414. .btn-outline-secondary:focus,
  2415. .btn-outline-secondary.focus {
  2416. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2417. }
  2418. .btn-outline-secondary.disabled,
  2419. .btn-outline-secondary:disabled {
  2420. color: #6c757d;
  2421. background-color: transparent;
  2422. }
  2423. .btn-outline-secondary:not(:disabled):not(.disabled):active,
  2424. .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2425. .show > .btn-outline-secondary.dropdown-toggle {
  2426. color: #fff;
  2427. background-color: #6c757d;
  2428. border-color: #6c757d;
  2429. }
  2430. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
  2431. .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2432. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2433. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2434. }
  2435. .btn-outline-success {
  2436. color: #38c172;
  2437. border-color: #38c172;
  2438. }
  2439. .btn-outline-success:hover {
  2440. color: #fff;
  2441. background-color: #38c172;
  2442. border-color: #38c172;
  2443. }
  2444. .btn-outline-success:focus,
  2445. .btn-outline-success.focus {
  2446. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2447. }
  2448. .btn-outline-success.disabled,
  2449. .btn-outline-success:disabled {
  2450. color: #38c172;
  2451. background-color: transparent;
  2452. }
  2453. .btn-outline-success:not(:disabled):not(.disabled):active,
  2454. .btn-outline-success:not(:disabled):not(.disabled).active,
  2455. .show > .btn-outline-success.dropdown-toggle {
  2456. color: #fff;
  2457. background-color: #38c172;
  2458. border-color: #38c172;
  2459. }
  2460. .btn-outline-success:not(:disabled):not(.disabled):active:focus,
  2461. .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2462. .show > .btn-outline-success.dropdown-toggle:focus {
  2463. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2464. }
  2465. .btn-outline-info {
  2466. color: #6cb2eb;
  2467. border-color: #6cb2eb;
  2468. }
  2469. .btn-outline-info:hover {
  2470. color: #212529;
  2471. background-color: #6cb2eb;
  2472. border-color: #6cb2eb;
  2473. }
  2474. .btn-outline-info:focus,
  2475. .btn-outline-info.focus {
  2476. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2477. }
  2478. .btn-outline-info.disabled,
  2479. .btn-outline-info:disabled {
  2480. color: #6cb2eb;
  2481. background-color: transparent;
  2482. }
  2483. .btn-outline-info:not(:disabled):not(.disabled):active,
  2484. .btn-outline-info:not(:disabled):not(.disabled).active,
  2485. .show > .btn-outline-info.dropdown-toggle {
  2486. color: #212529;
  2487. background-color: #6cb2eb;
  2488. border-color: #6cb2eb;
  2489. }
  2490. .btn-outline-info:not(:disabled):not(.disabled):active:focus,
  2491. .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2492. .show > .btn-outline-info.dropdown-toggle:focus {
  2493. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2494. }
  2495. .btn-outline-warning {
  2496. color: #ffed4a;
  2497. border-color: #ffed4a;
  2498. }
  2499. .btn-outline-warning:hover {
  2500. color: #212529;
  2501. background-color: #ffed4a;
  2502. border-color: #ffed4a;
  2503. }
  2504. .btn-outline-warning:focus,
  2505. .btn-outline-warning.focus {
  2506. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2507. }
  2508. .btn-outline-warning.disabled,
  2509. .btn-outline-warning:disabled {
  2510. color: #ffed4a;
  2511. background-color: transparent;
  2512. }
  2513. .btn-outline-warning:not(:disabled):not(.disabled):active,
  2514. .btn-outline-warning:not(:disabled):not(.disabled).active,
  2515. .show > .btn-outline-warning.dropdown-toggle {
  2516. color: #212529;
  2517. background-color: #ffed4a;
  2518. border-color: #ffed4a;
  2519. }
  2520. .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
  2521. .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2522. .show > .btn-outline-warning.dropdown-toggle:focus {
  2523. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2524. }
  2525. .btn-outline-danger {
  2526. color: #e3342f;
  2527. border-color: #e3342f;
  2528. }
  2529. .btn-outline-danger:hover {
  2530. color: #fff;
  2531. background-color: #e3342f;
  2532. border-color: #e3342f;
  2533. }
  2534. .btn-outline-danger:focus,
  2535. .btn-outline-danger.focus {
  2536. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2537. }
  2538. .btn-outline-danger.disabled,
  2539. .btn-outline-danger:disabled {
  2540. color: #e3342f;
  2541. background-color: transparent;
  2542. }
  2543. .btn-outline-danger:not(:disabled):not(.disabled):active,
  2544. .btn-outline-danger:not(:disabled):not(.disabled).active,
  2545. .show > .btn-outline-danger.dropdown-toggle {
  2546. color: #fff;
  2547. background-color: #e3342f;
  2548. border-color: #e3342f;
  2549. }
  2550. .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
  2551. .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2552. .show > .btn-outline-danger.dropdown-toggle:focus {
  2553. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2554. }
  2555. .btn-outline-light {
  2556. color: #f8f9fa;
  2557. border-color: #f8f9fa;
  2558. }
  2559. .btn-outline-light:hover {
  2560. color: #212529;
  2561. background-color: #f8f9fa;
  2562. border-color: #f8f9fa;
  2563. }
  2564. .btn-outline-light:focus,
  2565. .btn-outline-light.focus {
  2566. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2567. }
  2568. .btn-outline-light.disabled,
  2569. .btn-outline-light:disabled {
  2570. color: #f8f9fa;
  2571. background-color: transparent;
  2572. }
  2573. .btn-outline-light:not(:disabled):not(.disabled):active,
  2574. .btn-outline-light:not(:disabled):not(.disabled).active,
  2575. .show > .btn-outline-light.dropdown-toggle {
  2576. color: #212529;
  2577. background-color: #f8f9fa;
  2578. border-color: #f8f9fa;
  2579. }
  2580. .btn-outline-light:not(:disabled):not(.disabled):active:focus,
  2581. .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2582. .show > .btn-outline-light.dropdown-toggle:focus {
  2583. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2584. }
  2585. .btn-outline-dark {
  2586. color: #343a40;
  2587. border-color: #343a40;
  2588. }
  2589. .btn-outline-dark:hover {
  2590. color: #fff;
  2591. background-color: #343a40;
  2592. border-color: #343a40;
  2593. }
  2594. .btn-outline-dark:focus,
  2595. .btn-outline-dark.focus {
  2596. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2597. }
  2598. .btn-outline-dark.disabled,
  2599. .btn-outline-dark:disabled {
  2600. color: #343a40;
  2601. background-color: transparent;
  2602. }
  2603. .btn-outline-dark:not(:disabled):not(.disabled):active,
  2604. .btn-outline-dark:not(:disabled):not(.disabled).active,
  2605. .show > .btn-outline-dark.dropdown-toggle {
  2606. color: #fff;
  2607. background-color: #343a40;
  2608. border-color: #343a40;
  2609. }
  2610. .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
  2611. .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2612. .show > .btn-outline-dark.dropdown-toggle:focus {
  2613. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2614. }
  2615. .btn-link {
  2616. font-weight: 400;
  2617. color: #3490dc;
  2618. text-decoration: none;
  2619. }
  2620. .btn-link:hover {
  2621. color: #1d68a7;
  2622. text-decoration: underline;
  2623. }
  2624. .btn-link:focus,
  2625. .btn-link.focus {
  2626. text-decoration: underline;
  2627. box-shadow: none;
  2628. }
  2629. .btn-link:disabled,
  2630. .btn-link.disabled {
  2631. color: #6c757d;
  2632. pointer-events: none;
  2633. }
  2634. .btn-lg,
  2635. .btn-group-lg > .btn {
  2636. padding: 0.5rem 1rem;
  2637. font-size: 1.125rem;
  2638. line-height: 1.5;
  2639. border-radius: 0.3rem;
  2640. }
  2641. .btn-sm,
  2642. .btn-group-sm > .btn {
  2643. padding: 0.25rem 0.5rem;
  2644. font-size: 0.7875rem;
  2645. line-height: 1.5;
  2646. border-radius: 0.2rem;
  2647. }
  2648. .btn-block {
  2649. display: block;
  2650. width: 100%;
  2651. }
  2652. .btn-block + .btn-block {
  2653. margin-top: 0.5rem;
  2654. }
  2655. input[type=submit].btn-block,
  2656. input[type=reset].btn-block,
  2657. input[type=button].btn-block {
  2658. width: 100%;
  2659. }
  2660. .fade {
  2661. transition: opacity 0.15s linear;
  2662. }
  2663. @media (prefers-reduced-motion: reduce) {
  2664. .fade {
  2665. transition: none;
  2666. }
  2667. }
  2668. .fade:not(.show) {
  2669. opacity: 0;
  2670. }
  2671. .collapse:not(.show) {
  2672. display: none;
  2673. }
  2674. .collapsing {
  2675. position: relative;
  2676. height: 0;
  2677. overflow: hidden;
  2678. transition: height 0.35s ease;
  2679. }
  2680. @media (prefers-reduced-motion: reduce) {
  2681. .collapsing {
  2682. transition: none;
  2683. }
  2684. }
  2685. .dropup,
  2686. .dropright,
  2687. .dropdown,
  2688. .dropleft {
  2689. position: relative;
  2690. }
  2691. .dropdown-toggle {
  2692. white-space: nowrap;
  2693. }
  2694. .dropdown-toggle::after {
  2695. display: inline-block;
  2696. margin-left: 0.255em;
  2697. vertical-align: 0.255em;
  2698. content: "";
  2699. border-top: 0.3em solid;
  2700. border-right: 0.3em solid transparent;
  2701. border-bottom: 0;
  2702. border-left: 0.3em solid transparent;
  2703. }
  2704. .dropdown-toggle:empty::after {
  2705. margin-left: 0;
  2706. }
  2707. .dropdown-menu {
  2708. position: absolute;
  2709. top: 100%;
  2710. left: 0;
  2711. z-index: 1000;
  2712. display: none;
  2713. float: left;
  2714. min-width: 10rem;
  2715. padding: 0.5rem 0;
  2716. margin: 0.125rem 0 0;
  2717. font-size: 0.9rem;
  2718. color: #212529;
  2719. text-align: left;
  2720. list-style: none;
  2721. background-color: #fff;
  2722. background-clip: padding-box;
  2723. border: 1px solid rgba(0, 0, 0, 0.15);
  2724. border-radius: 0.25rem;
  2725. }
  2726. .dropdown-menu-left {
  2727. right: auto;
  2728. left: 0;
  2729. }
  2730. .dropdown-menu-right {
  2731. right: 0;
  2732. left: auto;
  2733. }
  2734. @media (min-width: 576px) {
  2735. .dropdown-menu-sm-left {
  2736. right: auto;
  2737. left: 0;
  2738. }
  2739. .dropdown-menu-sm-right {
  2740. right: 0;
  2741. left: auto;
  2742. }
  2743. }
  2744. @media (min-width: 768px) {
  2745. .dropdown-menu-md-left {
  2746. right: auto;
  2747. left: 0;
  2748. }
  2749. .dropdown-menu-md-right {
  2750. right: 0;
  2751. left: auto;
  2752. }
  2753. }
  2754. @media (min-width: 992px) {
  2755. .dropdown-menu-lg-left {
  2756. right: auto;
  2757. left: 0;
  2758. }
  2759. .dropdown-menu-lg-right {
  2760. right: 0;
  2761. left: auto;
  2762. }
  2763. }
  2764. @media (min-width: 1200px) {
  2765. .dropdown-menu-xl-left {
  2766. right: auto;
  2767. left: 0;
  2768. }
  2769. .dropdown-menu-xl-right {
  2770. right: 0;
  2771. left: auto;
  2772. }
  2773. }
  2774. .dropup .dropdown-menu {
  2775. top: auto;
  2776. bottom: 100%;
  2777. margin-top: 0;
  2778. margin-bottom: 0.125rem;
  2779. }
  2780. .dropup .dropdown-toggle::after {
  2781. display: inline-block;
  2782. margin-left: 0.255em;
  2783. vertical-align: 0.255em;
  2784. content: "";
  2785. border-top: 0;
  2786. border-right: 0.3em solid transparent;
  2787. border-bottom: 0.3em solid;
  2788. border-left: 0.3em solid transparent;
  2789. }
  2790. .dropup .dropdown-toggle:empty::after {
  2791. margin-left: 0;
  2792. }
  2793. .dropright .dropdown-menu {
  2794. top: 0;
  2795. right: auto;
  2796. left: 100%;
  2797. margin-top: 0;
  2798. margin-left: 0.125rem;
  2799. }
  2800. .dropright .dropdown-toggle::after {
  2801. display: inline-block;
  2802. margin-left: 0.255em;
  2803. vertical-align: 0.255em;
  2804. content: "";
  2805. border-top: 0.3em solid transparent;
  2806. border-right: 0;
  2807. border-bottom: 0.3em solid transparent;
  2808. border-left: 0.3em solid;
  2809. }
  2810. .dropright .dropdown-toggle:empty::after {
  2811. margin-left: 0;
  2812. }
  2813. .dropright .dropdown-toggle::after {
  2814. vertical-align: 0;
  2815. }
  2816. .dropleft .dropdown-menu {
  2817. top: 0;
  2818. right: 100%;
  2819. left: auto;
  2820. margin-top: 0;
  2821. margin-right: 0.125rem;
  2822. }
  2823. .dropleft .dropdown-toggle::after {
  2824. display: inline-block;
  2825. margin-left: 0.255em;
  2826. vertical-align: 0.255em;
  2827. content: "";
  2828. }
  2829. .dropleft .dropdown-toggle::after {
  2830. display: none;
  2831. }
  2832. .dropleft .dropdown-toggle::before {
  2833. display: inline-block;
  2834. margin-right: 0.255em;
  2835. vertical-align: 0.255em;
  2836. content: "";
  2837. border-top: 0.3em solid transparent;
  2838. border-right: 0.3em solid;
  2839. border-bottom: 0.3em solid transparent;
  2840. }
  2841. .dropleft .dropdown-toggle:empty::after {
  2842. margin-left: 0;
  2843. }
  2844. .dropleft .dropdown-toggle::before {
  2845. vertical-align: 0;
  2846. }
  2847. .dropdown-menu[x-placement^=top],
  2848. .dropdown-menu[x-placement^=right],
  2849. .dropdown-menu[x-placement^=bottom],
  2850. .dropdown-menu[x-placement^=left] {
  2851. right: auto;
  2852. bottom: auto;
  2853. }
  2854. .dropdown-divider {
  2855. height: 0;
  2856. margin: 0.5rem 0;
  2857. overflow: hidden;
  2858. border-top: 1px solid #e9ecef;
  2859. }
  2860. .dropdown-item {
  2861. display: block;
  2862. width: 100%;
  2863. padding: 0.25rem 1.5rem;
  2864. clear: both;
  2865. font-weight: 400;
  2866. color: #212529;
  2867. text-align: inherit;
  2868. white-space: nowrap;
  2869. background-color: transparent;
  2870. border: 0;
  2871. }
  2872. .dropdown-item:hover,
  2873. .dropdown-item:focus {
  2874. color: #16181b;
  2875. text-decoration: none;
  2876. background-color: #f8f9fa;
  2877. }
  2878. .dropdown-item.active,
  2879. .dropdown-item:active {
  2880. color: #fff;
  2881. text-decoration: none;
  2882. background-color: #3490dc;
  2883. }
  2884. .dropdown-item.disabled,
  2885. .dropdown-item:disabled {
  2886. color: #6c757d;
  2887. pointer-events: none;
  2888. background-color: transparent;
  2889. }
  2890. .dropdown-menu.show {
  2891. display: block;
  2892. }
  2893. .dropdown-header {
  2894. display: block;
  2895. padding: 0.5rem 1.5rem;
  2896. margin-bottom: 0;
  2897. font-size: 0.7875rem;
  2898. color: #6c757d;
  2899. white-space: nowrap;
  2900. }
  2901. .dropdown-item-text {
  2902. display: block;
  2903. padding: 0.25rem 1.5rem;
  2904. color: #212529;
  2905. }
  2906. .btn-group,
  2907. .btn-group-vertical {
  2908. position: relative;
  2909. display: inline-flex;
  2910. vertical-align: middle;
  2911. }
  2912. .btn-group > .btn,
  2913. .btn-group-vertical > .btn {
  2914. position: relative;
  2915. flex: 1 1 auto;
  2916. }
  2917. .btn-group > .btn:hover,
  2918. .btn-group-vertical > .btn:hover {
  2919. z-index: 1;
  2920. }
  2921. .btn-group > .btn:focus,
  2922. .btn-group > .btn:active,
  2923. .btn-group > .btn.active,
  2924. .btn-group-vertical > .btn:focus,
  2925. .btn-group-vertical > .btn:active,
  2926. .btn-group-vertical > .btn.active {
  2927. z-index: 1;
  2928. }
  2929. .btn-toolbar {
  2930. display: flex;
  2931. flex-wrap: wrap;
  2932. justify-content: flex-start;
  2933. }
  2934. .btn-toolbar .input-group {
  2935. width: auto;
  2936. }
  2937. .btn-group > .btn:not(:first-child),
  2938. .btn-group > .btn-group:not(:first-child) {
  2939. margin-left: -1px;
  2940. }
  2941. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  2942. .btn-group > .btn-group:not(:last-child) > .btn {
  2943. border-top-right-radius: 0;
  2944. border-bottom-right-radius: 0;
  2945. }
  2946. .btn-group > .btn:not(:first-child),
  2947. .btn-group > .btn-group:not(:first-child) > .btn {
  2948. border-top-left-radius: 0;
  2949. border-bottom-left-radius: 0;
  2950. }
  2951. .dropdown-toggle-split {
  2952. padding-right: 0.5625rem;
  2953. padding-left: 0.5625rem;
  2954. }
  2955. .dropdown-toggle-split::after,
  2956. .dropup .dropdown-toggle-split::after,
  2957. .dropright .dropdown-toggle-split::after {
  2958. margin-left: 0;
  2959. }
  2960. .dropleft .dropdown-toggle-split::before {
  2961. margin-right: 0;
  2962. }
  2963. .btn-sm + .dropdown-toggle-split,
  2964. .btn-group-sm > .btn + .dropdown-toggle-split {
  2965. padding-right: 0.375rem;
  2966. padding-left: 0.375rem;
  2967. }
  2968. .btn-lg + .dropdown-toggle-split,
  2969. .btn-group-lg > .btn + .dropdown-toggle-split {
  2970. padding-right: 0.75rem;
  2971. padding-left: 0.75rem;
  2972. }
  2973. .btn-group-vertical {
  2974. flex-direction: column;
  2975. align-items: flex-start;
  2976. justify-content: center;
  2977. }
  2978. .btn-group-vertical > .btn,
  2979. .btn-group-vertical > .btn-group {
  2980. width: 100%;
  2981. }
  2982. .btn-group-vertical > .btn:not(:first-child),
  2983. .btn-group-vertical > .btn-group:not(:first-child) {
  2984. margin-top: -1px;
  2985. }
  2986. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  2987. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  2988. border-bottom-right-radius: 0;
  2989. border-bottom-left-radius: 0;
  2990. }
  2991. .btn-group-vertical > .btn:not(:first-child),
  2992. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  2993. border-top-left-radius: 0;
  2994. border-top-right-radius: 0;
  2995. }
  2996. .btn-group-toggle > .btn,
  2997. .btn-group-toggle > .btn-group > .btn {
  2998. margin-bottom: 0;
  2999. }
  3000. .btn-group-toggle > .btn input[type=radio],
  3001. .btn-group-toggle > .btn input[type=checkbox],
  3002. .btn-group-toggle > .btn-group > .btn input[type=radio],
  3003. .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  3004. position: absolute;
  3005. clip: rect(0, 0, 0, 0);
  3006. pointer-events: none;
  3007. }
  3008. .input-group {
  3009. position: relative;
  3010. display: flex;
  3011. flex-wrap: wrap;
  3012. align-items: stretch;
  3013. width: 100%;
  3014. }
  3015. .input-group > .form-control,
  3016. .input-group > .form-control-plaintext,
  3017. .input-group > .custom-select,
  3018. .input-group > .custom-file {
  3019. position: relative;
  3020. flex: 1 1 auto;
  3021. width: 1%;
  3022. margin-bottom: 0;
  3023. }
  3024. .input-group > .form-control + .form-control,
  3025. .input-group > .form-control + .custom-select,
  3026. .input-group > .form-control + .custom-file,
  3027. .input-group > .form-control-plaintext + .form-control,
  3028. .input-group > .form-control-plaintext + .custom-select,
  3029. .input-group > .form-control-plaintext + .custom-file,
  3030. .input-group > .custom-select + .form-control,
  3031. .input-group > .custom-select + .custom-select,
  3032. .input-group > .custom-select + .custom-file,
  3033. .input-group > .custom-file + .form-control,
  3034. .input-group > .custom-file + .custom-select,
  3035. .input-group > .custom-file + .custom-file {
  3036. margin-left: -1px;
  3037. }
  3038. .input-group > .form-control:focus,
  3039. .input-group > .custom-select:focus,
  3040. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3041. z-index: 3;
  3042. }
  3043. .input-group > .custom-file .custom-file-input:focus {
  3044. z-index: 4;
  3045. }
  3046. .input-group > .form-control:not(:last-child),
  3047. .input-group > .custom-select:not(:last-child) {
  3048. border-top-right-radius: 0;
  3049. border-bottom-right-radius: 0;
  3050. }
  3051. .input-group > .form-control:not(:first-child),
  3052. .input-group > .custom-select:not(:first-child) {
  3053. border-top-left-radius: 0;
  3054. border-bottom-left-radius: 0;
  3055. }
  3056. .input-group > .custom-file {
  3057. display: flex;
  3058. align-items: center;
  3059. }
  3060. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3061. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  3062. border-top-right-radius: 0;
  3063. border-bottom-right-radius: 0;
  3064. }
  3065. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3066. border-top-left-radius: 0;
  3067. border-bottom-left-radius: 0;
  3068. }
  3069. .input-group-prepend,
  3070. .input-group-append {
  3071. display: flex;
  3072. }
  3073. .input-group-prepend .btn,
  3074. .input-group-append .btn {
  3075. position: relative;
  3076. z-index: 2;
  3077. }
  3078. .input-group-prepend .btn:focus,
  3079. .input-group-append .btn:focus {
  3080. z-index: 3;
  3081. }
  3082. .input-group-prepend .btn + .btn,
  3083. .input-group-prepend .btn + .input-group-text,
  3084. .input-group-prepend .input-group-text + .input-group-text,
  3085. .input-group-prepend .input-group-text + .btn,
  3086. .input-group-append .btn + .btn,
  3087. .input-group-append .btn + .input-group-text,
  3088. .input-group-append .input-group-text + .input-group-text,
  3089. .input-group-append .input-group-text + .btn {
  3090. margin-left: -1px;
  3091. }
  3092. .input-group-prepend {
  3093. margin-right: -1px;
  3094. }
  3095. .input-group-append {
  3096. margin-left: -1px;
  3097. }
  3098. .input-group-text {
  3099. display: flex;
  3100. align-items: center;
  3101. padding: 0.375rem 0.75rem;
  3102. margin-bottom: 0;
  3103. font-size: 0.9rem;
  3104. font-weight: 400;
  3105. line-height: 1.6;
  3106. color: #495057;
  3107. text-align: center;
  3108. white-space: nowrap;
  3109. background-color: #e9ecef;
  3110. border: 1px solid #ced4da;
  3111. border-radius: 0.25rem;
  3112. }
  3113. .input-group-text input[type=radio],
  3114. .input-group-text input[type=checkbox] {
  3115. margin-top: 0;
  3116. }
  3117. .input-group-lg > .form-control:not(textarea),
  3118. .input-group-lg > .custom-select {
  3119. height: calc(1.5em + 1rem + 2px);
  3120. }
  3121. .input-group-lg > .form-control,
  3122. .input-group-lg > .custom-select,
  3123. .input-group-lg > .input-group-prepend > .input-group-text,
  3124. .input-group-lg > .input-group-append > .input-group-text,
  3125. .input-group-lg > .input-group-prepend > .btn,
  3126. .input-group-lg > .input-group-append > .btn {
  3127. padding: 0.5rem 1rem;
  3128. font-size: 1.125rem;
  3129. line-height: 1.5;
  3130. border-radius: 0.3rem;
  3131. }
  3132. .input-group-sm > .form-control:not(textarea),
  3133. .input-group-sm > .custom-select {
  3134. height: calc(1.5em + 0.5rem + 2px);
  3135. }
  3136. .input-group-sm > .form-control,
  3137. .input-group-sm > .custom-select,
  3138. .input-group-sm > .input-group-prepend > .input-group-text,
  3139. .input-group-sm > .input-group-append > .input-group-text,
  3140. .input-group-sm > .input-group-prepend > .btn,
  3141. .input-group-sm > .input-group-append > .btn {
  3142. padding: 0.25rem 0.5rem;
  3143. font-size: 0.7875rem;
  3144. line-height: 1.5;
  3145. border-radius: 0.2rem;
  3146. }
  3147. .input-group-lg > .custom-select,
  3148. .input-group-sm > .custom-select {
  3149. padding-right: 1.75rem;
  3150. }
  3151. .input-group > .input-group-prepend > .btn,
  3152. .input-group > .input-group-prepend > .input-group-text,
  3153. .input-group > .input-group-append:not(:last-child) > .btn,
  3154. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3155. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3156. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3157. border-top-right-radius: 0;
  3158. border-bottom-right-radius: 0;
  3159. }
  3160. .input-group > .input-group-append > .btn,
  3161. .input-group > .input-group-append > .input-group-text,
  3162. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3163. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3164. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3165. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3166. border-top-left-radius: 0;
  3167. border-bottom-left-radius: 0;
  3168. }
  3169. .custom-control {
  3170. position: relative;
  3171. display: block;
  3172. min-height: 1.44rem;
  3173. padding-left: 1.5rem;
  3174. }
  3175. .custom-control-inline {
  3176. display: inline-flex;
  3177. margin-right: 1rem;
  3178. }
  3179. .custom-control-input {
  3180. position: absolute;
  3181. z-index: -1;
  3182. opacity: 0;
  3183. }
  3184. .custom-control-input:checked ~ .custom-control-label::before {
  3185. color: #fff;
  3186. border-color: #3490dc;
  3187. background-color: #3490dc;
  3188. }
  3189. .custom-control-input:focus ~ .custom-control-label::before {
  3190. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3191. }
  3192. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3193. border-color: #a1cbef;
  3194. }
  3195. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3196. color: #fff;
  3197. background-color: #cce3f6;
  3198. border-color: #cce3f6;
  3199. }
  3200. .custom-control-input:disabled ~ .custom-control-label {
  3201. color: #6c757d;
  3202. }
  3203. .custom-control-input:disabled ~ .custom-control-label::before {
  3204. background-color: #e9ecef;
  3205. }
  3206. .custom-control-label {
  3207. position: relative;
  3208. margin-bottom: 0;
  3209. vertical-align: top;
  3210. }
  3211. .custom-control-label::before {
  3212. position: absolute;
  3213. top: 0.22rem;
  3214. left: -1.5rem;
  3215. display: block;
  3216. width: 1rem;
  3217. height: 1rem;
  3218. pointer-events: none;
  3219. content: "";
  3220. background-color: #fff;
  3221. border: #adb5bd solid 1px;
  3222. }
  3223. .custom-control-label::after {
  3224. position: absolute;
  3225. top: 0.22rem;
  3226. left: -1.5rem;
  3227. display: block;
  3228. width: 1rem;
  3229. height: 1rem;
  3230. content: "";
  3231. background: no-repeat 50%/50% 50%;
  3232. }
  3233. .custom-checkbox .custom-control-label::before {
  3234. border-radius: 0.25rem;
  3235. }
  3236. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3237. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  3238. }
  3239. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3240. border-color: #3490dc;
  3241. background-color: #3490dc;
  3242. }
  3243. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3244. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  3245. }
  3246. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3247. background-color: rgba(52, 144, 220, 0.5);
  3248. }
  3249. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3250. background-color: rgba(52, 144, 220, 0.5);
  3251. }
  3252. .custom-radio .custom-control-label::before {
  3253. border-radius: 50%;
  3254. }
  3255. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3256. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  3257. }
  3258. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3259. background-color: rgba(52, 144, 220, 0.5);
  3260. }
  3261. .custom-switch {
  3262. padding-left: 2.25rem;
  3263. }
  3264. .custom-switch .custom-control-label::before {
  3265. left: -2.25rem;
  3266. width: 1.75rem;
  3267. pointer-events: all;
  3268. border-radius: 0.5rem;
  3269. }
  3270. .custom-switch .custom-control-label::after {
  3271. top: calc(0.22rem + 2px);
  3272. left: calc(-2.25rem + 2px);
  3273. width: calc(1rem - 4px);
  3274. height: calc(1rem - 4px);
  3275. background-color: #adb5bd;
  3276. border-radius: 0.5rem;
  3277. 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;
  3278. }
  3279. @media (prefers-reduced-motion: reduce) {
  3280. .custom-switch .custom-control-label::after {
  3281. transition: none;
  3282. }
  3283. }
  3284. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3285. background-color: #fff;
  3286. transform: translateX(0.75rem);
  3287. }
  3288. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3289. background-color: rgba(52, 144, 220, 0.5);
  3290. }
  3291. .custom-select {
  3292. display: inline-block;
  3293. width: 100%;
  3294. height: calc(1.6em + 0.75rem + 2px);
  3295. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3296. font-size: 0.9rem;
  3297. font-weight: 400;
  3298. line-height: 1.6;
  3299. color: #495057;
  3300. vertical-align: middle;
  3301. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  3302. background-color: #fff;
  3303. border: 1px solid #ced4da;
  3304. border-radius: 0.25rem;
  3305. -webkit-appearance: none;
  3306. -moz-appearance: none;
  3307. appearance: none;
  3308. }
  3309. .custom-select:focus {
  3310. border-color: #a1cbef;
  3311. outline: 0;
  3312. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3313. }
  3314. .custom-select:focus::-ms-value {
  3315. color: #495057;
  3316. background-color: #fff;
  3317. }
  3318. .custom-select[multiple],
  3319. .custom-select[size]:not([size="1"]) {
  3320. height: auto;
  3321. padding-right: 0.75rem;
  3322. background-image: none;
  3323. }
  3324. .custom-select:disabled {
  3325. color: #6c757d;
  3326. background-color: #e9ecef;
  3327. }
  3328. .custom-select::-ms-expand {
  3329. display: none;
  3330. }
  3331. .custom-select-sm {
  3332. height: calc(1.5em + 0.5rem + 2px);
  3333. padding-top: 0.25rem;
  3334. padding-bottom: 0.25rem;
  3335. padding-left: 0.5rem;
  3336. font-size: 0.7875rem;
  3337. }
  3338. .custom-select-lg {
  3339. height: calc(1.5em + 1rem + 2px);
  3340. padding-top: 0.5rem;
  3341. padding-bottom: 0.5rem;
  3342. padding-left: 1rem;
  3343. font-size: 1.125rem;
  3344. }
  3345. .custom-file {
  3346. position: relative;
  3347. display: inline-block;
  3348. width: 100%;
  3349. height: calc(1.6em + 0.75rem + 2px);
  3350. margin-bottom: 0;
  3351. }
  3352. .custom-file-input {
  3353. position: relative;
  3354. z-index: 2;
  3355. width: 100%;
  3356. height: calc(1.6em + 0.75rem + 2px);
  3357. margin: 0;
  3358. opacity: 0;
  3359. }
  3360. .custom-file-input:focus ~ .custom-file-label {
  3361. border-color: #a1cbef;
  3362. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3363. }
  3364. .custom-file-input:disabled ~ .custom-file-label {
  3365. background-color: #e9ecef;
  3366. }
  3367. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3368. content: "Browse";
  3369. }
  3370. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3371. content: attr(data-browse);
  3372. }
  3373. .custom-file-label {
  3374. position: absolute;
  3375. top: 0;
  3376. right: 0;
  3377. left: 0;
  3378. z-index: 1;
  3379. height: calc(1.6em + 0.75rem + 2px);
  3380. padding: 0.375rem 0.75rem;
  3381. font-weight: 400;
  3382. line-height: 1.6;
  3383. color: #495057;
  3384. background-color: #fff;
  3385. border: 1px solid #ced4da;
  3386. border-radius: 0.25rem;
  3387. }
  3388. .custom-file-label::after {
  3389. position: absolute;
  3390. top: 0;
  3391. right: 0;
  3392. bottom: 0;
  3393. z-index: 3;
  3394. display: block;
  3395. height: calc(1.6em + 0.75rem);
  3396. padding: 0.375rem 0.75rem;
  3397. line-height: 1.6;
  3398. color: #495057;
  3399. content: "Browse";
  3400. background-color: #e9ecef;
  3401. border-left: inherit;
  3402. border-radius: 0 0.25rem 0.25rem 0;
  3403. }
  3404. .custom-range {
  3405. width: 100%;
  3406. height: calc(1rem + 0.4rem);
  3407. padding: 0;
  3408. background-color: transparent;
  3409. -webkit-appearance: none;
  3410. -moz-appearance: none;
  3411. appearance: none;
  3412. }
  3413. .custom-range:focus {
  3414. outline: none;
  3415. }
  3416. .custom-range:focus::-webkit-slider-thumb {
  3417. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3418. }
  3419. .custom-range:focus::-moz-range-thumb {
  3420. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3421. }
  3422. .custom-range:focus::-ms-thumb {
  3423. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3424. }
  3425. .custom-range::-moz-focus-outer {
  3426. border: 0;
  3427. }
  3428. .custom-range::-webkit-slider-thumb {
  3429. width: 1rem;
  3430. height: 1rem;
  3431. margin-top: -0.25rem;
  3432. background-color: #3490dc;
  3433. border: 0;
  3434. border-radius: 1rem;
  3435. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3436. -webkit-appearance: none;
  3437. appearance: none;
  3438. }
  3439. @media (prefers-reduced-motion: reduce) {
  3440. .custom-range::-webkit-slider-thumb {
  3441. transition: none;
  3442. }
  3443. }
  3444. .custom-range::-webkit-slider-thumb:active {
  3445. background-color: #cce3f6;
  3446. }
  3447. .custom-range::-webkit-slider-runnable-track {
  3448. width: 100%;
  3449. height: 0.5rem;
  3450. color: transparent;
  3451. cursor: pointer;
  3452. background-color: #dee2e6;
  3453. border-color: transparent;
  3454. border-radius: 1rem;
  3455. }
  3456. .custom-range::-moz-range-thumb {
  3457. width: 1rem;
  3458. height: 1rem;
  3459. background-color: #3490dc;
  3460. border: 0;
  3461. border-radius: 1rem;
  3462. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3463. -moz-appearance: none;
  3464. appearance: none;
  3465. }
  3466. @media (prefers-reduced-motion: reduce) {
  3467. .custom-range::-moz-range-thumb {
  3468. transition: none;
  3469. }
  3470. }
  3471. .custom-range::-moz-range-thumb:active {
  3472. background-color: #cce3f6;
  3473. }
  3474. .custom-range::-moz-range-track {
  3475. width: 100%;
  3476. height: 0.5rem;
  3477. color: transparent;
  3478. cursor: pointer;
  3479. background-color: #dee2e6;
  3480. border-color: transparent;
  3481. border-radius: 1rem;
  3482. }
  3483. .custom-range::-ms-thumb {
  3484. width: 1rem;
  3485. height: 1rem;
  3486. margin-top: 0;
  3487. margin-right: 0.2rem;
  3488. margin-left: 0.2rem;
  3489. background-color: #3490dc;
  3490. border: 0;
  3491. border-radius: 1rem;
  3492. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3493. appearance: none;
  3494. }
  3495. @media (prefers-reduced-motion: reduce) {
  3496. .custom-range::-ms-thumb {
  3497. transition: none;
  3498. }
  3499. }
  3500. .custom-range::-ms-thumb:active {
  3501. background-color: #cce3f6;
  3502. }
  3503. .custom-range::-ms-track {
  3504. width: 100%;
  3505. height: 0.5rem;
  3506. color: transparent;
  3507. cursor: pointer;
  3508. background-color: transparent;
  3509. border-color: transparent;
  3510. border-width: 0.5rem;
  3511. }
  3512. .custom-range::-ms-fill-lower {
  3513. background-color: #dee2e6;
  3514. border-radius: 1rem;
  3515. }
  3516. .custom-range::-ms-fill-upper {
  3517. margin-right: 15px;
  3518. background-color: #dee2e6;
  3519. border-radius: 1rem;
  3520. }
  3521. .custom-range:disabled::-webkit-slider-thumb {
  3522. background-color: #adb5bd;
  3523. }
  3524. .custom-range:disabled::-webkit-slider-runnable-track {
  3525. cursor: default;
  3526. }
  3527. .custom-range:disabled::-moz-range-thumb {
  3528. background-color: #adb5bd;
  3529. }
  3530. .custom-range:disabled::-moz-range-track {
  3531. cursor: default;
  3532. }
  3533. .custom-range:disabled::-ms-thumb {
  3534. background-color: #adb5bd;
  3535. }
  3536. .custom-control-label::before,
  3537. .custom-file-label,
  3538. .custom-select {
  3539. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3540. }
  3541. @media (prefers-reduced-motion: reduce) {
  3542. .custom-control-label::before,
  3543. .custom-file-label,
  3544. .custom-select {
  3545. transition: none;
  3546. }
  3547. }
  3548. .nav {
  3549. display: flex;
  3550. flex-wrap: wrap;
  3551. padding-left: 0;
  3552. margin-bottom: 0;
  3553. list-style: none;
  3554. }
  3555. .nav-link {
  3556. display: block;
  3557. padding: 0.5rem 1rem;
  3558. }
  3559. .nav-link:hover,
  3560. .nav-link:focus {
  3561. text-decoration: none;
  3562. }
  3563. .nav-link.disabled {
  3564. color: #6c757d;
  3565. pointer-events: none;
  3566. cursor: default;
  3567. }
  3568. .nav-tabs {
  3569. border-bottom: 1px solid #dee2e6;
  3570. }
  3571. .nav-tabs .nav-item {
  3572. margin-bottom: -1px;
  3573. }
  3574. .nav-tabs .nav-link {
  3575. border: 1px solid transparent;
  3576. border-top-left-radius: 0.25rem;
  3577. border-top-right-radius: 0.25rem;
  3578. }
  3579. .nav-tabs .nav-link:hover,
  3580. .nav-tabs .nav-link:focus {
  3581. border-color: #e9ecef #e9ecef #dee2e6;
  3582. }
  3583. .nav-tabs .nav-link.disabled {
  3584. color: #6c757d;
  3585. background-color: transparent;
  3586. border-color: transparent;
  3587. }
  3588. .nav-tabs .nav-link.active,
  3589. .nav-tabs .nav-item.show .nav-link {
  3590. color: #495057;
  3591. background-color: #f8fafc;
  3592. border-color: #dee2e6 #dee2e6 #f8fafc;
  3593. }
  3594. .nav-tabs .dropdown-menu {
  3595. margin-top: -1px;
  3596. border-top-left-radius: 0;
  3597. border-top-right-radius: 0;
  3598. }
  3599. .nav-pills .nav-link {
  3600. border-radius: 0.25rem;
  3601. }
  3602. .nav-pills .nav-link.active,
  3603. .nav-pills .show > .nav-link {
  3604. color: #fff;
  3605. background-color: #3490dc;
  3606. }
  3607. .nav-fill .nav-item {
  3608. flex: 1 1 auto;
  3609. text-align: center;
  3610. }
  3611. .nav-justified .nav-item {
  3612. flex-basis: 0;
  3613. flex-grow: 1;
  3614. text-align: center;
  3615. }
  3616. .tab-content > .tab-pane {
  3617. display: none;
  3618. }
  3619. .tab-content > .active {
  3620. display: block;
  3621. }
  3622. .navbar {
  3623. position: relative;
  3624. display: flex;
  3625. flex-wrap: wrap;
  3626. align-items: center;
  3627. justify-content: space-between;
  3628. padding: 0.5rem 1rem;
  3629. }
  3630. .navbar > .container,
  3631. .navbar > .container-fluid {
  3632. display: flex;
  3633. flex-wrap: wrap;
  3634. align-items: center;
  3635. justify-content: space-between;
  3636. }
  3637. .navbar-brand {
  3638. display: inline-block;
  3639. padding-top: 0.32rem;
  3640. padding-bottom: 0.32rem;
  3641. margin-right: 1rem;
  3642. font-size: 1.125rem;
  3643. line-height: inherit;
  3644. white-space: nowrap;
  3645. }
  3646. .navbar-brand:hover,
  3647. .navbar-brand:focus {
  3648. text-decoration: none;
  3649. }
  3650. .navbar-nav {
  3651. display: flex;
  3652. flex-direction: column;
  3653. padding-left: 0;
  3654. margin-bottom: 0;
  3655. list-style: none;
  3656. }
  3657. .navbar-nav .nav-link {
  3658. padding-right: 0;
  3659. padding-left: 0;
  3660. }
  3661. .navbar-nav .dropdown-menu {
  3662. position: static;
  3663. float: none;
  3664. }
  3665. .navbar-text {
  3666. display: inline-block;
  3667. padding-top: 0.5rem;
  3668. padding-bottom: 0.5rem;
  3669. }
  3670. .navbar-collapse {
  3671. flex-basis: 100%;
  3672. flex-grow: 1;
  3673. align-items: center;
  3674. }
  3675. .navbar-toggler {
  3676. padding: 0.25rem 0.75rem;
  3677. font-size: 1.125rem;
  3678. line-height: 1;
  3679. background-color: transparent;
  3680. border: 1px solid transparent;
  3681. border-radius: 0.25rem;
  3682. }
  3683. .navbar-toggler:hover,
  3684. .navbar-toggler:focus {
  3685. text-decoration: none;
  3686. }
  3687. .navbar-toggler-icon {
  3688. display: inline-block;
  3689. width: 1.5em;
  3690. height: 1.5em;
  3691. vertical-align: middle;
  3692. content: "";
  3693. background: no-repeat center center;
  3694. background-size: 100% 100%;
  3695. }
  3696. @media (max-width: 575.98px) {
  3697. .navbar-expand-sm > .container,
  3698. .navbar-expand-sm > .container-fluid {
  3699. padding-right: 0;
  3700. padding-left: 0;
  3701. }
  3702. }
  3703. @media (min-width: 576px) {
  3704. .navbar-expand-sm {
  3705. flex-flow: row nowrap;
  3706. justify-content: flex-start;
  3707. }
  3708. .navbar-expand-sm .navbar-nav {
  3709. flex-direction: row;
  3710. }
  3711. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3712. position: absolute;
  3713. }
  3714. .navbar-expand-sm .navbar-nav .nav-link {
  3715. padding-right: 0.5rem;
  3716. padding-left: 0.5rem;
  3717. }
  3718. .navbar-expand-sm > .container,
  3719. .navbar-expand-sm > .container-fluid {
  3720. flex-wrap: nowrap;
  3721. }
  3722. .navbar-expand-sm .navbar-collapse {
  3723. display: flex !important;
  3724. flex-basis: auto;
  3725. }
  3726. .navbar-expand-sm .navbar-toggler {
  3727. display: none;
  3728. }
  3729. }
  3730. @media (max-width: 767.98px) {
  3731. .navbar-expand-md > .container,
  3732. .navbar-expand-md > .container-fluid {
  3733. padding-right: 0;
  3734. padding-left: 0;
  3735. }
  3736. }
  3737. @media (min-width: 768px) {
  3738. .navbar-expand-md {
  3739. flex-flow: row nowrap;
  3740. justify-content: flex-start;
  3741. }
  3742. .navbar-expand-md .navbar-nav {
  3743. flex-direction: row;
  3744. }
  3745. .navbar-expand-md .navbar-nav .dropdown-menu {
  3746. position: absolute;
  3747. }
  3748. .navbar-expand-md .navbar-nav .nav-link {
  3749. padding-right: 0.5rem;
  3750. padding-left: 0.5rem;
  3751. }
  3752. .navbar-expand-md > .container,
  3753. .navbar-expand-md > .container-fluid {
  3754. flex-wrap: nowrap;
  3755. }
  3756. .navbar-expand-md .navbar-collapse {
  3757. display: flex !important;
  3758. flex-basis: auto;
  3759. }
  3760. .navbar-expand-md .navbar-toggler {
  3761. display: none;
  3762. }
  3763. }
  3764. @media (max-width: 991.98px) {
  3765. .navbar-expand-lg > .container,
  3766. .navbar-expand-lg > .container-fluid {
  3767. padding-right: 0;
  3768. padding-left: 0;
  3769. }
  3770. }
  3771. @media (min-width: 992px) {
  3772. .navbar-expand-lg {
  3773. flex-flow: row nowrap;
  3774. justify-content: flex-start;
  3775. }
  3776. .navbar-expand-lg .navbar-nav {
  3777. flex-direction: row;
  3778. }
  3779. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3780. position: absolute;
  3781. }
  3782. .navbar-expand-lg .navbar-nav .nav-link {
  3783. padding-right: 0.5rem;
  3784. padding-left: 0.5rem;
  3785. }
  3786. .navbar-expand-lg > .container,
  3787. .navbar-expand-lg > .container-fluid {
  3788. flex-wrap: nowrap;
  3789. }
  3790. .navbar-expand-lg .navbar-collapse {
  3791. display: flex !important;
  3792. flex-basis: auto;
  3793. }
  3794. .navbar-expand-lg .navbar-toggler {
  3795. display: none;
  3796. }
  3797. }
  3798. @media (max-width: 1199.98px) {
  3799. .navbar-expand-xl > .container,
  3800. .navbar-expand-xl > .container-fluid {
  3801. padding-right: 0;
  3802. padding-left: 0;
  3803. }
  3804. }
  3805. @media (min-width: 1200px) {
  3806. .navbar-expand-xl {
  3807. flex-flow: row nowrap;
  3808. justify-content: flex-start;
  3809. }
  3810. .navbar-expand-xl .navbar-nav {
  3811. flex-direction: row;
  3812. }
  3813. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3814. position: absolute;
  3815. }
  3816. .navbar-expand-xl .navbar-nav .nav-link {
  3817. padding-right: 0.5rem;
  3818. padding-left: 0.5rem;
  3819. }
  3820. .navbar-expand-xl > .container,
  3821. .navbar-expand-xl > .container-fluid {
  3822. flex-wrap: nowrap;
  3823. }
  3824. .navbar-expand-xl .navbar-collapse {
  3825. display: flex !important;
  3826. flex-basis: auto;
  3827. }
  3828. .navbar-expand-xl .navbar-toggler {
  3829. display: none;
  3830. }
  3831. }
  3832. .navbar-expand {
  3833. flex-flow: row nowrap;
  3834. justify-content: flex-start;
  3835. }
  3836. .navbar-expand > .container,
  3837. .navbar-expand > .container-fluid {
  3838. padding-right: 0;
  3839. padding-left: 0;
  3840. }
  3841. .navbar-expand .navbar-nav {
  3842. flex-direction: row;
  3843. }
  3844. .navbar-expand .navbar-nav .dropdown-menu {
  3845. position: absolute;
  3846. }
  3847. .navbar-expand .navbar-nav .nav-link {
  3848. padding-right: 0.5rem;
  3849. padding-left: 0.5rem;
  3850. }
  3851. .navbar-expand > .container,
  3852. .navbar-expand > .container-fluid {
  3853. flex-wrap: nowrap;
  3854. }
  3855. .navbar-expand .navbar-collapse {
  3856. display: flex !important;
  3857. flex-basis: auto;
  3858. }
  3859. .navbar-expand .navbar-toggler {
  3860. display: none;
  3861. }
  3862. .navbar-light .navbar-brand {
  3863. color: rgba(0, 0, 0, 0.9);
  3864. }
  3865. .navbar-light .navbar-brand:hover,
  3866. .navbar-light .navbar-brand:focus {
  3867. color: rgba(0, 0, 0, 0.9);
  3868. }
  3869. .navbar-light .navbar-nav .nav-link {
  3870. color: rgba(0, 0, 0, 0.5);
  3871. }
  3872. .navbar-light .navbar-nav .nav-link:hover,
  3873. .navbar-light .navbar-nav .nav-link:focus {
  3874. color: rgba(0, 0, 0, 0.7);
  3875. }
  3876. .navbar-light .navbar-nav .nav-link.disabled {
  3877. color: rgba(0, 0, 0, 0.3);
  3878. }
  3879. .navbar-light .navbar-nav .show > .nav-link,
  3880. .navbar-light .navbar-nav .active > .nav-link,
  3881. .navbar-light .navbar-nav .nav-link.show,
  3882. .navbar-light .navbar-nav .nav-link.active {
  3883. color: rgba(0, 0, 0, 0.9);
  3884. }
  3885. .navbar-light .navbar-toggler {
  3886. color: rgba(0, 0, 0, 0.5);
  3887. border-color: rgba(0, 0, 0, 0.1);
  3888. }
  3889. .navbar-light .navbar-toggler-icon {
  3890. background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3891. }
  3892. .navbar-light .navbar-text {
  3893. color: rgba(0, 0, 0, 0.5);
  3894. }
  3895. .navbar-light .navbar-text a {
  3896. color: rgba(0, 0, 0, 0.9);
  3897. }
  3898. .navbar-light .navbar-text a:hover,
  3899. .navbar-light .navbar-text a:focus {
  3900. color: rgba(0, 0, 0, 0.9);
  3901. }
  3902. .navbar-dark .navbar-brand {
  3903. color: #fff;
  3904. }
  3905. .navbar-dark .navbar-brand:hover,
  3906. .navbar-dark .navbar-brand:focus {
  3907. color: #fff;
  3908. }
  3909. .navbar-dark .navbar-nav .nav-link {
  3910. color: rgba(255, 255, 255, 0.5);
  3911. }
  3912. .navbar-dark .navbar-nav .nav-link:hover,
  3913. .navbar-dark .navbar-nav .nav-link:focus {
  3914. color: rgba(255, 255, 255, 0.75);
  3915. }
  3916. .navbar-dark .navbar-nav .nav-link.disabled {
  3917. color: rgba(255, 255, 255, 0.25);
  3918. }
  3919. .navbar-dark .navbar-nav .show > .nav-link,
  3920. .navbar-dark .navbar-nav .active > .nav-link,
  3921. .navbar-dark .navbar-nav .nav-link.show,
  3922. .navbar-dark .navbar-nav .nav-link.active {
  3923. color: #fff;
  3924. }
  3925. .navbar-dark .navbar-toggler {
  3926. color: rgba(255, 255, 255, 0.5);
  3927. border-color: rgba(255, 255, 255, 0.1);
  3928. }
  3929. .navbar-dark .navbar-toggler-icon {
  3930. background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3931. }
  3932. .navbar-dark .navbar-text {
  3933. color: rgba(255, 255, 255, 0.5);
  3934. }
  3935. .navbar-dark .navbar-text a {
  3936. color: #fff;
  3937. }
  3938. .navbar-dark .navbar-text a:hover,
  3939. .navbar-dark .navbar-text a:focus {
  3940. color: #fff;
  3941. }
  3942. .card {
  3943. position: relative;
  3944. display: flex;
  3945. flex-direction: column;
  3946. min-width: 0;
  3947. word-wrap: break-word;
  3948. background-color: #fff;
  3949. background-clip: border-box;
  3950. border: 1px solid rgba(0, 0, 0, 0.125);
  3951. border-radius: 0.25rem;
  3952. }
  3953. .card > hr {
  3954. margin-right: 0;
  3955. margin-left: 0;
  3956. }
  3957. .card > .list-group:first-child .list-group-item:first-child {
  3958. border-top-left-radius: 0.25rem;
  3959. border-top-right-radius: 0.25rem;
  3960. }
  3961. .card > .list-group:last-child .list-group-item:last-child {
  3962. border-bottom-right-radius: 0.25rem;
  3963. border-bottom-left-radius: 0.25rem;
  3964. }
  3965. .card-body {
  3966. flex: 1 1 auto;
  3967. padding: 1.25rem;
  3968. }
  3969. .card-title {
  3970. margin-bottom: 0.75rem;
  3971. }
  3972. .card-subtitle {
  3973. margin-top: -0.375rem;
  3974. margin-bottom: 0;
  3975. }
  3976. .card-text:last-child {
  3977. margin-bottom: 0;
  3978. }
  3979. .card-link:hover {
  3980. text-decoration: none;
  3981. }
  3982. .card-link + .card-link {
  3983. margin-left: 1.25rem;
  3984. }
  3985. .card-header {
  3986. padding: 0.75rem 1.25rem;
  3987. margin-bottom: 0;
  3988. background-color: rgba(0, 0, 0, 0.03);
  3989. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  3990. }
  3991. .card-header:first-child {
  3992. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  3993. }
  3994. .card-header + .list-group .list-group-item:first-child {
  3995. border-top: 0;
  3996. }
  3997. .card-footer {
  3998. padding: 0.75rem 1.25rem;
  3999. background-color: rgba(0, 0, 0, 0.03);
  4000. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4001. }
  4002. .card-footer:last-child {
  4003. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4004. }
  4005. .card-header-tabs {
  4006. margin-right: -0.625rem;
  4007. margin-bottom: -0.75rem;
  4008. margin-left: -0.625rem;
  4009. border-bottom: 0;
  4010. }
  4011. .card-header-pills {
  4012. margin-right: -0.625rem;
  4013. margin-left: -0.625rem;
  4014. }
  4015. .card-img-overlay {
  4016. position: absolute;
  4017. top: 0;
  4018. right: 0;
  4019. bottom: 0;
  4020. left: 0;
  4021. padding: 1.25rem;
  4022. }
  4023. .card-img {
  4024. width: 100%;
  4025. border-radius: calc(0.25rem - 1px);
  4026. }
  4027. .card-img-top {
  4028. width: 100%;
  4029. border-top-left-radius: calc(0.25rem - 1px);
  4030. border-top-right-radius: calc(0.25rem - 1px);
  4031. }
  4032. .card-img-bottom {
  4033. width: 100%;
  4034. border-bottom-right-radius: calc(0.25rem - 1px);
  4035. border-bottom-left-radius: calc(0.25rem - 1px);
  4036. }
  4037. .card-deck {
  4038. display: flex;
  4039. flex-direction: column;
  4040. }
  4041. .card-deck .card {
  4042. margin-bottom: 15px;
  4043. }
  4044. @media (min-width: 576px) {
  4045. .card-deck {
  4046. flex-flow: row wrap;
  4047. margin-right: -15px;
  4048. margin-left: -15px;
  4049. }
  4050. .card-deck .card {
  4051. display: flex;
  4052. flex: 1 0 0%;
  4053. flex-direction: column;
  4054. margin-right: 15px;
  4055. margin-bottom: 0;
  4056. margin-left: 15px;
  4057. }
  4058. }
  4059. .card-group {
  4060. display: flex;
  4061. flex-direction: column;
  4062. }
  4063. .card-group > .card {
  4064. margin-bottom: 15px;
  4065. }
  4066. @media (min-width: 576px) {
  4067. .card-group {
  4068. flex-flow: row wrap;
  4069. }
  4070. .card-group > .card {
  4071. flex: 1 0 0%;
  4072. margin-bottom: 0;
  4073. }
  4074. .card-group > .card + .card {
  4075. margin-left: 0;
  4076. border-left: 0;
  4077. }
  4078. .card-group > .card:not(:last-child) {
  4079. border-top-right-radius: 0;
  4080. border-bottom-right-radius: 0;
  4081. }
  4082. .card-group > .card:not(:last-child) .card-img-top,
  4083. .card-group > .card:not(:last-child) .card-header {
  4084. border-top-right-radius: 0;
  4085. }
  4086. .card-group > .card:not(:last-child) .card-img-bottom,
  4087. .card-group > .card:not(:last-child) .card-footer {
  4088. border-bottom-right-radius: 0;
  4089. }
  4090. .card-group > .card:not(:first-child) {
  4091. border-top-left-radius: 0;
  4092. border-bottom-left-radius: 0;
  4093. }
  4094. .card-group > .card:not(:first-child) .card-img-top,
  4095. .card-group > .card:not(:first-child) .card-header {
  4096. border-top-left-radius: 0;
  4097. }
  4098. .card-group > .card:not(:first-child) .card-img-bottom,
  4099. .card-group > .card:not(:first-child) .card-footer {
  4100. border-bottom-left-radius: 0;
  4101. }
  4102. }
  4103. .card-columns .card {
  4104. margin-bottom: 0.75rem;
  4105. }
  4106. @media (min-width: 576px) {
  4107. .card-columns {
  4108. -moz-column-count: 3;
  4109. column-count: 3;
  4110. -moz-column-gap: 1.25rem;
  4111. column-gap: 1.25rem;
  4112. orphans: 1;
  4113. widows: 1;
  4114. }
  4115. .card-columns .card {
  4116. display: inline-block;
  4117. width: 100%;
  4118. }
  4119. }
  4120. .accordion > .card {
  4121. overflow: hidden;
  4122. }
  4123. .accordion > .card:not(:first-of-type) .card-header:first-child {
  4124. border-radius: 0;
  4125. }
  4126. .accordion > .card:not(:first-of-type):not(:last-of-type) {
  4127. border-bottom: 0;
  4128. border-radius: 0;
  4129. }
  4130. .accordion > .card:first-of-type {
  4131. border-bottom: 0;
  4132. border-bottom-right-radius: 0;
  4133. border-bottom-left-radius: 0;
  4134. }
  4135. .accordion > .card:last-of-type {
  4136. border-top-left-radius: 0;
  4137. border-top-right-radius: 0;
  4138. }
  4139. .accordion > .card .card-header {
  4140. margin-bottom: -1px;
  4141. }
  4142. .breadcrumb {
  4143. display: flex;
  4144. flex-wrap: wrap;
  4145. padding: 0.75rem 1rem;
  4146. margin-bottom: 1rem;
  4147. list-style: none;
  4148. background-color: #e9ecef;
  4149. border-radius: 0.25rem;
  4150. }
  4151. .breadcrumb-item + .breadcrumb-item {
  4152. padding-left: 0.5rem;
  4153. }
  4154. .breadcrumb-item + .breadcrumb-item::before {
  4155. display: inline-block;
  4156. padding-right: 0.5rem;
  4157. color: #6c757d;
  4158. content: "/";
  4159. }
  4160. .breadcrumb-item + .breadcrumb-item:hover::before {
  4161. text-decoration: underline;
  4162. }
  4163. .breadcrumb-item + .breadcrumb-item:hover::before {
  4164. text-decoration: none;
  4165. }
  4166. .breadcrumb-item.active {
  4167. color: #6c757d;
  4168. }
  4169. .pagination {
  4170. display: flex;
  4171. padding-left: 0;
  4172. list-style: none;
  4173. border-radius: 0.25rem;
  4174. }
  4175. .page-link {
  4176. position: relative;
  4177. display: block;
  4178. padding: 0.5rem 0.75rem;
  4179. margin-left: -1px;
  4180. line-height: 1.25;
  4181. color: #3490dc;
  4182. background-color: #fff;
  4183. border: 1px solid #dee2e6;
  4184. }
  4185. .page-link:hover {
  4186. z-index: 2;
  4187. color: #1d68a7;
  4188. text-decoration: none;
  4189. background-color: #e9ecef;
  4190. border-color: #dee2e6;
  4191. }
  4192. .page-link:focus {
  4193. z-index: 2;
  4194. outline: 0;
  4195. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  4196. }
  4197. .page-item:first-child .page-link {
  4198. margin-left: 0;
  4199. border-top-left-radius: 0.25rem;
  4200. border-bottom-left-radius: 0.25rem;
  4201. }
  4202. .page-item:last-child .page-link {
  4203. border-top-right-radius: 0.25rem;
  4204. border-bottom-right-radius: 0.25rem;
  4205. }
  4206. .page-item.active .page-link {
  4207. z-index: 1;
  4208. color: #fff;
  4209. background-color: #3490dc;
  4210. border-color: #3490dc;
  4211. }
  4212. .page-item.disabled .page-link {
  4213. color: #6c757d;
  4214. pointer-events: none;
  4215. cursor: auto;
  4216. background-color: #fff;
  4217. border-color: #dee2e6;
  4218. }
  4219. .pagination-lg .page-link {
  4220. padding: 0.75rem 1.5rem;
  4221. font-size: 1.125rem;
  4222. line-height: 1.5;
  4223. }
  4224. .pagination-lg .page-item:first-child .page-link {
  4225. border-top-left-radius: 0.3rem;
  4226. border-bottom-left-radius: 0.3rem;
  4227. }
  4228. .pagination-lg .page-item:last-child .page-link {
  4229. border-top-right-radius: 0.3rem;
  4230. border-bottom-right-radius: 0.3rem;
  4231. }
  4232. .pagination-sm .page-link {
  4233. padding: 0.25rem 0.5rem;
  4234. font-size: 0.7875rem;
  4235. line-height: 1.5;
  4236. }
  4237. .pagination-sm .page-item:first-child .page-link {
  4238. border-top-left-radius: 0.2rem;
  4239. border-bottom-left-radius: 0.2rem;
  4240. }
  4241. .pagination-sm .page-item:last-child .page-link {
  4242. border-top-right-radius: 0.2rem;
  4243. border-bottom-right-radius: 0.2rem;
  4244. }
  4245. .badge {
  4246. display: inline-block;
  4247. padding: 0.25em 0.4em;
  4248. font-size: 75%;
  4249. font-weight: 700;
  4250. line-height: 1;
  4251. text-align: center;
  4252. white-space: nowrap;
  4253. vertical-align: baseline;
  4254. border-radius: 0.25rem;
  4255. 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;
  4256. }
  4257. @media (prefers-reduced-motion: reduce) {
  4258. .badge {
  4259. transition: none;
  4260. }
  4261. }
  4262. a.badge:hover,
  4263. a.badge:focus {
  4264. text-decoration: none;
  4265. }
  4266. .badge:empty {
  4267. display: none;
  4268. }
  4269. .btn .badge {
  4270. position: relative;
  4271. top: -1px;
  4272. }
  4273. .badge-pill {
  4274. padding-right: 0.6em;
  4275. padding-left: 0.6em;
  4276. border-radius: 10rem;
  4277. }
  4278. .badge-primary {
  4279. color: #fff;
  4280. background-color: #3490dc;
  4281. }
  4282. a.badge-primary:hover,
  4283. a.badge-primary:focus {
  4284. color: #fff;
  4285. background-color: #2176bd;
  4286. }
  4287. a.badge-primary:focus,
  4288. a.badge-primary.focus {
  4289. outline: 0;
  4290. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  4291. }
  4292. .badge-secondary {
  4293. color: #fff;
  4294. background-color: #6c757d;
  4295. }
  4296. a.badge-secondary:hover,
  4297. a.badge-secondary:focus {
  4298. color: #fff;
  4299. background-color: #545b62;
  4300. }
  4301. a.badge-secondary:focus,
  4302. a.badge-secondary.focus {
  4303. outline: 0;
  4304. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4305. }
  4306. .badge-success {
  4307. color: #fff;
  4308. background-color: #38c172;
  4309. }
  4310. a.badge-success:hover,
  4311. a.badge-success:focus {
  4312. color: #fff;
  4313. background-color: #2d995b;
  4314. }
  4315. a.badge-success:focus,
  4316. a.badge-success.focus {
  4317. outline: 0;
  4318. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  4319. }
  4320. .badge-info {
  4321. color: #212529;
  4322. background-color: #6cb2eb;
  4323. }
  4324. a.badge-info:hover,
  4325. a.badge-info:focus {
  4326. color: #212529;
  4327. background-color: #3f9ae5;
  4328. }
  4329. a.badge-info:focus,
  4330. a.badge-info.focus {
  4331. outline: 0;
  4332. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  4333. }
  4334. .badge-warning {
  4335. color: #212529;
  4336. background-color: #ffed4a;
  4337. }
  4338. a.badge-warning:hover,
  4339. a.badge-warning:focus {
  4340. color: #212529;
  4341. background-color: #ffe817;
  4342. }
  4343. a.badge-warning:focus,
  4344. a.badge-warning.focus {
  4345. outline: 0;
  4346. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  4347. }
  4348. .badge-danger {
  4349. color: #fff;
  4350. background-color: #e3342f;
  4351. }
  4352. a.badge-danger:hover,
  4353. a.badge-danger:focus {
  4354. color: #fff;
  4355. background-color: #c51f1a;
  4356. }
  4357. a.badge-danger:focus,
  4358. a.badge-danger.focus {
  4359. outline: 0;
  4360. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  4361. }
  4362. .badge-light {
  4363. color: #212529;
  4364. background-color: #f8f9fa;
  4365. }
  4366. a.badge-light:hover,
  4367. a.badge-light:focus {
  4368. color: #212529;
  4369. background-color: #dae0e5;
  4370. }
  4371. a.badge-light:focus,
  4372. a.badge-light.focus {
  4373. outline: 0;
  4374. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4375. }
  4376. .badge-dark {
  4377. color: #fff;
  4378. background-color: #343a40;
  4379. }
  4380. a.badge-dark:hover,
  4381. a.badge-dark:focus {
  4382. color: #fff;
  4383. background-color: #1d2124;
  4384. }
  4385. a.badge-dark:focus,
  4386. a.badge-dark.focus {
  4387. outline: 0;
  4388. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4389. }
  4390. .jumbotron {
  4391. padding: 2rem 1rem;
  4392. margin-bottom: 2rem;
  4393. background-color: #e9ecef;
  4394. border-radius: 0.3rem;
  4395. }
  4396. @media (min-width: 576px) {
  4397. .jumbotron {
  4398. padding: 4rem 2rem;
  4399. }
  4400. }
  4401. .jumbotron-fluid {
  4402. padding-right: 0;
  4403. padding-left: 0;
  4404. border-radius: 0;
  4405. }
  4406. .alert {
  4407. position: relative;
  4408. padding: 0.75rem 1.25rem;
  4409. margin-bottom: 1rem;
  4410. border: 1px solid transparent;
  4411. border-radius: 0.25rem;
  4412. }
  4413. .alert-heading {
  4414. color: inherit;
  4415. }
  4416. .alert-link {
  4417. font-weight: 700;
  4418. }
  4419. .alert-dismissible {
  4420. padding-right: 3.85rem;
  4421. }
  4422. .alert-dismissible .close {
  4423. position: absolute;
  4424. top: 0;
  4425. right: 0;
  4426. padding: 0.75rem 1.25rem;
  4427. color: inherit;
  4428. }
  4429. .alert-primary {
  4430. color: #1b4b72;
  4431. background-color: #d6e9f8;
  4432. border-color: #c6e0f5;
  4433. }
  4434. .alert-primary hr {
  4435. border-top-color: #b0d4f1;
  4436. }
  4437. .alert-primary .alert-link {
  4438. color: #113049;
  4439. }
  4440. .alert-secondary {
  4441. color: #383d41;
  4442. background-color: #e2e3e5;
  4443. border-color: #d6d8db;
  4444. }
  4445. .alert-secondary hr {
  4446. border-top-color: #c8cbcf;
  4447. }
  4448. .alert-secondary .alert-link {
  4449. color: #202326;
  4450. }
  4451. .alert-success {
  4452. color: #1d643b;
  4453. background-color: #d7f3e3;
  4454. border-color: #c7eed8;
  4455. }
  4456. .alert-success hr {
  4457. border-top-color: #b3e8ca;
  4458. }
  4459. .alert-success .alert-link {
  4460. color: #123c24;
  4461. }
  4462. .alert-info {
  4463. color: #385d7a;
  4464. background-color: #e2f0fb;
  4465. border-color: #d6e9f9;
  4466. }
  4467. .alert-info hr {
  4468. border-top-color: #c0ddf6;
  4469. }
  4470. .alert-info .alert-link {
  4471. color: #284257;
  4472. }
  4473. .alert-warning {
  4474. color: #857b26;
  4475. background-color: #fffbdb;
  4476. border-color: #fffacc;
  4477. }
  4478. .alert-warning hr {
  4479. border-top-color: #fff8b3;
  4480. }
  4481. .alert-warning .alert-link {
  4482. color: #5d561b;
  4483. }
  4484. .alert-danger {
  4485. color: #761b18;
  4486. background-color: #f9d6d5;
  4487. border-color: #f7c6c5;
  4488. }
  4489. .alert-danger hr {
  4490. border-top-color: #f4b0af;
  4491. }
  4492. .alert-danger .alert-link {
  4493. color: #4c110f;
  4494. }
  4495. .alert-light {
  4496. color: #818182;
  4497. background-color: #fefefe;
  4498. border-color: #fdfdfe;
  4499. }
  4500. .alert-light hr {
  4501. border-top-color: #ececf6;
  4502. }
  4503. .alert-light .alert-link {
  4504. color: #686868;
  4505. }
  4506. .alert-dark {
  4507. color: #1b1e21;
  4508. background-color: #d6d8d9;
  4509. border-color: #c6c8ca;
  4510. }
  4511. .alert-dark hr {
  4512. border-top-color: #b9bbbe;
  4513. }
  4514. .alert-dark .alert-link {
  4515. color: #040505;
  4516. }
  4517. @-webkit-keyframes progress-bar-stripes {
  4518. from {
  4519. background-position: 1rem 0;
  4520. }
  4521. to {
  4522. background-position: 0 0;
  4523. }
  4524. }
  4525. @keyframes progress-bar-stripes {
  4526. from {
  4527. background-position: 1rem 0;
  4528. }
  4529. to {
  4530. background-position: 0 0;
  4531. }
  4532. }
  4533. .progress {
  4534. display: flex;
  4535. height: 1rem;
  4536. overflow: hidden;
  4537. font-size: 0.675rem;
  4538. background-color: #e9ecef;
  4539. border-radius: 0.25rem;
  4540. }
  4541. .progress-bar {
  4542. display: flex;
  4543. flex-direction: column;
  4544. justify-content: center;
  4545. color: #fff;
  4546. text-align: center;
  4547. white-space: nowrap;
  4548. background-color: #3490dc;
  4549. transition: width 0.6s ease;
  4550. }
  4551. @media (prefers-reduced-motion: reduce) {
  4552. .progress-bar {
  4553. transition: none;
  4554. }
  4555. }
  4556. .progress-bar-striped {
  4557. 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);
  4558. background-size: 1rem 1rem;
  4559. }
  4560. .progress-bar-animated {
  4561. -webkit-animation: progress-bar-stripes 1s linear infinite;
  4562. animation: progress-bar-stripes 1s linear infinite;
  4563. }
  4564. @media (prefers-reduced-motion: reduce) {
  4565. .progress-bar-animated {
  4566. -webkit-animation: none;
  4567. animation: none;
  4568. }
  4569. }
  4570. .media {
  4571. display: flex;
  4572. align-items: flex-start;
  4573. }
  4574. .media-body {
  4575. flex: 1;
  4576. }
  4577. .list-group {
  4578. display: flex;
  4579. flex-direction: column;
  4580. padding-left: 0;
  4581. margin-bottom: 0;
  4582. }
  4583. .list-group-item-action {
  4584. width: 100%;
  4585. color: #495057;
  4586. text-align: inherit;
  4587. }
  4588. .list-group-item-action:hover,
  4589. .list-group-item-action:focus {
  4590. z-index: 1;
  4591. color: #495057;
  4592. text-decoration: none;
  4593. background-color: #f8f9fa;
  4594. }
  4595. .list-group-item-action:active {
  4596. color: #212529;
  4597. background-color: #e9ecef;
  4598. }
  4599. .list-group-item {
  4600. position: relative;
  4601. display: block;
  4602. padding: 0.75rem 1.25rem;
  4603. margin-bottom: -1px;
  4604. background-color: #fff;
  4605. border: 1px solid rgba(0, 0, 0, 0.125);
  4606. }
  4607. .list-group-item:first-child {
  4608. border-top-left-radius: 0.25rem;
  4609. border-top-right-radius: 0.25rem;
  4610. }
  4611. .list-group-item:last-child {
  4612. margin-bottom: 0;
  4613. border-bottom-right-radius: 0.25rem;
  4614. border-bottom-left-radius: 0.25rem;
  4615. }
  4616. .list-group-item.disabled,
  4617. .list-group-item:disabled {
  4618. color: #6c757d;
  4619. pointer-events: none;
  4620. background-color: #fff;
  4621. }
  4622. .list-group-item.active {
  4623. z-index: 2;
  4624. color: #fff;
  4625. background-color: #3490dc;
  4626. border-color: #3490dc;
  4627. }
  4628. .list-group-horizontal {
  4629. flex-direction: row;
  4630. }
  4631. .list-group-horizontal .list-group-item {
  4632. margin-right: -1px;
  4633. margin-bottom: 0;
  4634. }
  4635. .list-group-horizontal .list-group-item:first-child {
  4636. border-top-left-radius: 0.25rem;
  4637. border-bottom-left-radius: 0.25rem;
  4638. border-top-right-radius: 0;
  4639. }
  4640. .list-group-horizontal .list-group-item:last-child {
  4641. margin-right: 0;
  4642. border-top-right-radius: 0.25rem;
  4643. border-bottom-right-radius: 0.25rem;
  4644. border-bottom-left-radius: 0;
  4645. }
  4646. @media (min-width: 576px) {
  4647. .list-group-horizontal-sm {
  4648. flex-direction: row;
  4649. }
  4650. .list-group-horizontal-sm .list-group-item {
  4651. margin-right: -1px;
  4652. margin-bottom: 0;
  4653. }
  4654. .list-group-horizontal-sm .list-group-item:first-child {
  4655. border-top-left-radius: 0.25rem;
  4656. border-bottom-left-radius: 0.25rem;
  4657. border-top-right-radius: 0;
  4658. }
  4659. .list-group-horizontal-sm .list-group-item:last-child {
  4660. margin-right: 0;
  4661. border-top-right-radius: 0.25rem;
  4662. border-bottom-right-radius: 0.25rem;
  4663. border-bottom-left-radius: 0;
  4664. }
  4665. }
  4666. @media (min-width: 768px) {
  4667. .list-group-horizontal-md {
  4668. flex-direction: row;
  4669. }
  4670. .list-group-horizontal-md .list-group-item {
  4671. margin-right: -1px;
  4672. margin-bottom: 0;
  4673. }
  4674. .list-group-horizontal-md .list-group-item:first-child {
  4675. border-top-left-radius: 0.25rem;
  4676. border-bottom-left-radius: 0.25rem;
  4677. border-top-right-radius: 0;
  4678. }
  4679. .list-group-horizontal-md .list-group-item:last-child {
  4680. margin-right: 0;
  4681. border-top-right-radius: 0.25rem;
  4682. border-bottom-right-radius: 0.25rem;
  4683. border-bottom-left-radius: 0;
  4684. }
  4685. }
  4686. @media (min-width: 992px) {
  4687. .list-group-horizontal-lg {
  4688. flex-direction: row;
  4689. }
  4690. .list-group-horizontal-lg .list-group-item {
  4691. margin-right: -1px;
  4692. margin-bottom: 0;
  4693. }
  4694. .list-group-horizontal-lg .list-group-item:first-child {
  4695. border-top-left-radius: 0.25rem;
  4696. border-bottom-left-radius: 0.25rem;
  4697. border-top-right-radius: 0;
  4698. }
  4699. .list-group-horizontal-lg .list-group-item:last-child {
  4700. margin-right: 0;
  4701. border-top-right-radius: 0.25rem;
  4702. border-bottom-right-radius: 0.25rem;
  4703. border-bottom-left-radius: 0;
  4704. }
  4705. }
  4706. @media (min-width: 1200px) {
  4707. .list-group-horizontal-xl {
  4708. flex-direction: row;
  4709. }
  4710. .list-group-horizontal-xl .list-group-item {
  4711. margin-right: -1px;
  4712. margin-bottom: 0;
  4713. }
  4714. .list-group-horizontal-xl .list-group-item:first-child {
  4715. border-top-left-radius: 0.25rem;
  4716. border-bottom-left-radius: 0.25rem;
  4717. border-top-right-radius: 0;
  4718. }
  4719. .list-group-horizontal-xl .list-group-item:last-child {
  4720. margin-right: 0;
  4721. border-top-right-radius: 0.25rem;
  4722. border-bottom-right-radius: 0.25rem;
  4723. border-bottom-left-radius: 0;
  4724. }
  4725. }
  4726. .list-group-flush .list-group-item {
  4727. border-right: 0;
  4728. border-left: 0;
  4729. border-radius: 0;
  4730. }
  4731. .list-group-flush .list-group-item:last-child {
  4732. margin-bottom: -1px;
  4733. }
  4734. .list-group-flush:first-child .list-group-item:first-child {
  4735. border-top: 0;
  4736. }
  4737. .list-group-flush:last-child .list-group-item:last-child {
  4738. margin-bottom: 0;
  4739. border-bottom: 0;
  4740. }
  4741. .list-group-item-primary {
  4742. color: #1b4b72;
  4743. background-color: #c6e0f5;
  4744. }
  4745. .list-group-item-primary.list-group-item-action:hover,
  4746. .list-group-item-primary.list-group-item-action:focus {
  4747. color: #1b4b72;
  4748. background-color: #b0d4f1;
  4749. }
  4750. .list-group-item-primary.list-group-item-action.active {
  4751. color: #fff;
  4752. background-color: #1b4b72;
  4753. border-color: #1b4b72;
  4754. }
  4755. .list-group-item-secondary {
  4756. color: #383d41;
  4757. background-color: #d6d8db;
  4758. }
  4759. .list-group-item-secondary.list-group-item-action:hover,
  4760. .list-group-item-secondary.list-group-item-action:focus {
  4761. color: #383d41;
  4762. background-color: #c8cbcf;
  4763. }
  4764. .list-group-item-secondary.list-group-item-action.active {
  4765. color: #fff;
  4766. background-color: #383d41;
  4767. border-color: #383d41;
  4768. }
  4769. .list-group-item-success {
  4770. color: #1d643b;
  4771. background-color: #c7eed8;
  4772. }
  4773. .list-group-item-success.list-group-item-action:hover,
  4774. .list-group-item-success.list-group-item-action:focus {
  4775. color: #1d643b;
  4776. background-color: #b3e8ca;
  4777. }
  4778. .list-group-item-success.list-group-item-action.active {
  4779. color: #fff;
  4780. background-color: #1d643b;
  4781. border-color: #1d643b;
  4782. }
  4783. .list-group-item-info {
  4784. color: #385d7a;
  4785. background-color: #d6e9f9;
  4786. }
  4787. .list-group-item-info.list-group-item-action:hover,
  4788. .list-group-item-info.list-group-item-action:focus {
  4789. color: #385d7a;
  4790. background-color: #c0ddf6;
  4791. }
  4792. .list-group-item-info.list-group-item-action.active {
  4793. color: #fff;
  4794. background-color: #385d7a;
  4795. border-color: #385d7a;
  4796. }
  4797. .list-group-item-warning {
  4798. color: #857b26;
  4799. background-color: #fffacc;
  4800. }
  4801. .list-group-item-warning.list-group-item-action:hover,
  4802. .list-group-item-warning.list-group-item-action:focus {
  4803. color: #857b26;
  4804. background-color: #fff8b3;
  4805. }
  4806. .list-group-item-warning.list-group-item-action.active {
  4807. color: #fff;
  4808. background-color: #857b26;
  4809. border-color: #857b26;
  4810. }
  4811. .list-group-item-danger {
  4812. color: #761b18;
  4813. background-color: #f7c6c5;
  4814. }
  4815. .list-group-item-danger.list-group-item-action:hover,
  4816. .list-group-item-danger.list-group-item-action:focus {
  4817. color: #761b18;
  4818. background-color: #f4b0af;
  4819. }
  4820. .list-group-item-danger.list-group-item-action.active {
  4821. color: #fff;
  4822. background-color: #761b18;
  4823. border-color: #761b18;
  4824. }
  4825. .list-group-item-light {
  4826. color: #818182;
  4827. background-color: #fdfdfe;
  4828. }
  4829. .list-group-item-light.list-group-item-action:hover,
  4830. .list-group-item-light.list-group-item-action:focus {
  4831. color: #818182;
  4832. background-color: #ececf6;
  4833. }
  4834. .list-group-item-light.list-group-item-action.active {
  4835. color: #fff;
  4836. background-color: #818182;
  4837. border-color: #818182;
  4838. }
  4839. .list-group-item-dark {
  4840. color: #1b1e21;
  4841. background-color: #c6c8ca;
  4842. }
  4843. .list-group-item-dark.list-group-item-action:hover,
  4844. .list-group-item-dark.list-group-item-action:focus {
  4845. color: #1b1e21;
  4846. background-color: #b9bbbe;
  4847. }
  4848. .list-group-item-dark.list-group-item-action.active {
  4849. color: #fff;
  4850. background-color: #1b1e21;
  4851. border-color: #1b1e21;
  4852. }
  4853. .close {
  4854. float: right;
  4855. font-size: 1.35rem;
  4856. font-weight: 700;
  4857. line-height: 1;
  4858. color: #000;
  4859. text-shadow: 0 1px 0 #fff;
  4860. opacity: 0.5;
  4861. }
  4862. .close:hover {
  4863. color: #000;
  4864. text-decoration: none;
  4865. }
  4866. .close:not(:disabled):not(.disabled):hover,
  4867. .close:not(:disabled):not(.disabled):focus {
  4868. opacity: 0.75;
  4869. }
  4870. button.close {
  4871. padding: 0;
  4872. background-color: transparent;
  4873. border: 0;
  4874. -webkit-appearance: none;
  4875. -moz-appearance: none;
  4876. appearance: none;
  4877. }
  4878. a.close.disabled {
  4879. pointer-events: none;
  4880. }
  4881. .toast {
  4882. max-width: 350px;
  4883. overflow: hidden;
  4884. font-size: 0.875rem;
  4885. background-color: rgba(255, 255, 255, 0.85);
  4886. background-clip: padding-box;
  4887. border: 1px solid rgba(0, 0, 0, 0.1);
  4888. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  4889. -webkit-backdrop-filter: blur(10px);
  4890. backdrop-filter: blur(10px);
  4891. opacity: 0;
  4892. border-radius: 0.25rem;
  4893. }
  4894. .toast:not(:last-child) {
  4895. margin-bottom: 0.75rem;
  4896. }
  4897. .toast.showing {
  4898. opacity: 1;
  4899. }
  4900. .toast.show {
  4901. display: block;
  4902. opacity: 1;
  4903. }
  4904. .toast.hide {
  4905. display: none;
  4906. }
  4907. .toast-header {
  4908. display: flex;
  4909. align-items: center;
  4910. padding: 0.25rem 0.75rem;
  4911. color: #6c757d;
  4912. background-color: rgba(255, 255, 255, 0.85);
  4913. background-clip: padding-box;
  4914. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  4915. }
  4916. .toast-body {
  4917. padding: 0.75rem;
  4918. }
  4919. .modal-open {
  4920. overflow: hidden;
  4921. }
  4922. .modal-open .modal {
  4923. overflow-x: hidden;
  4924. overflow-y: auto;
  4925. }
  4926. .modal {
  4927. position: fixed;
  4928. top: 0;
  4929. left: 0;
  4930. z-index: 1050;
  4931. display: none;
  4932. width: 100%;
  4933. height: 100%;
  4934. overflow: hidden;
  4935. outline: 0;
  4936. }
  4937. .modal-dialog {
  4938. position: relative;
  4939. width: auto;
  4940. margin: 0.5rem;
  4941. pointer-events: none;
  4942. }
  4943. .modal.fade .modal-dialog {
  4944. transition: transform 0.3s ease-out;
  4945. transform: translate(0, -50px);
  4946. }
  4947. @media (prefers-reduced-motion: reduce) {
  4948. .modal.fade .modal-dialog {
  4949. transition: none;
  4950. }
  4951. }
  4952. .modal.show .modal-dialog {
  4953. transform: none;
  4954. }
  4955. .modal-dialog-scrollable {
  4956. display: flex;
  4957. max-height: calc(100% - 1rem);
  4958. }
  4959. .modal-dialog-scrollable .modal-content {
  4960. max-height: calc(100vh - 1rem);
  4961. overflow: hidden;
  4962. }
  4963. .modal-dialog-scrollable .modal-header,
  4964. .modal-dialog-scrollable .modal-footer {
  4965. flex-shrink: 0;
  4966. }
  4967. .modal-dialog-scrollable .modal-body {
  4968. overflow-y: auto;
  4969. }
  4970. .modal-dialog-centered {
  4971. display: flex;
  4972. align-items: center;
  4973. min-height: calc(100% - 1rem);
  4974. }
  4975. .modal-dialog-centered::before {
  4976. display: block;
  4977. height: calc(100vh - 1rem);
  4978. content: "";
  4979. }
  4980. .modal-dialog-centered.modal-dialog-scrollable {
  4981. flex-direction: column;
  4982. justify-content: center;
  4983. height: 100%;
  4984. }
  4985. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  4986. max-height: none;
  4987. }
  4988. .modal-dialog-centered.modal-dialog-scrollable::before {
  4989. content: none;
  4990. }
  4991. .modal-content {
  4992. position: relative;
  4993. display: flex;
  4994. flex-direction: column;
  4995. width: 100%;
  4996. pointer-events: auto;
  4997. background-color: #fff;
  4998. background-clip: padding-box;
  4999. border: 1px solid rgba(0, 0, 0, 0.2);
  5000. border-radius: 0.3rem;
  5001. outline: 0;
  5002. }
  5003. .modal-backdrop {
  5004. position: fixed;
  5005. top: 0;
  5006. left: 0;
  5007. z-index: 1040;
  5008. width: 100vw;
  5009. height: 100vh;
  5010. background-color: #000;
  5011. }
  5012. .modal-backdrop.fade {
  5013. opacity: 0;
  5014. }
  5015. .modal-backdrop.show {
  5016. opacity: 0.5;
  5017. }
  5018. .modal-header {
  5019. display: flex;
  5020. align-items: flex-start;
  5021. justify-content: space-between;
  5022. padding: 1rem 1rem;
  5023. border-bottom: 1px solid #dee2e6;
  5024. border-top-left-radius: 0.3rem;
  5025. border-top-right-radius: 0.3rem;
  5026. }
  5027. .modal-header .close {
  5028. padding: 1rem 1rem;
  5029. margin: -1rem -1rem -1rem auto;
  5030. }
  5031. .modal-title {
  5032. margin-bottom: 0;
  5033. line-height: 1.6;
  5034. }
  5035. .modal-body {
  5036. position: relative;
  5037. flex: 1 1 auto;
  5038. padding: 1rem;
  5039. }
  5040. .modal-footer {
  5041. display: flex;
  5042. align-items: center;
  5043. justify-content: flex-end;
  5044. padding: 1rem;
  5045. border-top: 1px solid #dee2e6;
  5046. border-bottom-right-radius: 0.3rem;
  5047. border-bottom-left-radius: 0.3rem;
  5048. }
  5049. .modal-footer > :not(:first-child) {
  5050. margin-left: 0.25rem;
  5051. }
  5052. .modal-footer > :not(:last-child) {
  5053. margin-right: 0.25rem;
  5054. }
  5055. .modal-scrollbar-measure {
  5056. position: absolute;
  5057. top: -9999px;
  5058. width: 50px;
  5059. height: 50px;
  5060. overflow: scroll;
  5061. }
  5062. @media (min-width: 576px) {
  5063. .modal-dialog {
  5064. max-width: 500px;
  5065. margin: 1.75rem auto;
  5066. }
  5067. .modal-dialog-scrollable {
  5068. max-height: calc(100% - 3.5rem);
  5069. }
  5070. .modal-dialog-scrollable .modal-content {
  5071. max-height: calc(100vh - 3.5rem);
  5072. }
  5073. .modal-dialog-centered {
  5074. min-height: calc(100% - 3.5rem);
  5075. }
  5076. .modal-dialog-centered::before {
  5077. height: calc(100vh - 3.5rem);
  5078. }
  5079. .modal-sm {
  5080. max-width: 300px;
  5081. }
  5082. }
  5083. @media (min-width: 992px) {
  5084. .modal-lg,
  5085. .modal-xl {
  5086. max-width: 800px;
  5087. }
  5088. }
  5089. @media (min-width: 1200px) {
  5090. .modal-xl {
  5091. max-width: 1140px;
  5092. }
  5093. }
  5094. .tooltip {
  5095. position: absolute;
  5096. z-index: 1070;
  5097. display: block;
  5098. margin: 0;
  5099. font-family: "Nunito", sans-serif;
  5100. font-style: normal;
  5101. font-weight: 400;
  5102. line-height: 1.6;
  5103. text-align: left;
  5104. text-align: start;
  5105. text-decoration: none;
  5106. text-shadow: none;
  5107. text-transform: none;
  5108. letter-spacing: normal;
  5109. word-break: normal;
  5110. word-spacing: normal;
  5111. white-space: normal;
  5112. line-break: auto;
  5113. font-size: 0.7875rem;
  5114. word-wrap: break-word;
  5115. opacity: 0;
  5116. }
  5117. .tooltip.show {
  5118. opacity: 0.9;
  5119. }
  5120. .tooltip .arrow {
  5121. position: absolute;
  5122. display: block;
  5123. width: 0.8rem;
  5124. height: 0.4rem;
  5125. }
  5126. .tooltip .arrow::before {
  5127. position: absolute;
  5128. content: "";
  5129. border-color: transparent;
  5130. border-style: solid;
  5131. }
  5132. .bs-tooltip-top,
  5133. .bs-tooltip-auto[x-placement^=top] {
  5134. padding: 0.4rem 0;
  5135. }
  5136. .bs-tooltip-top .arrow,
  5137. .bs-tooltip-auto[x-placement^=top] .arrow {
  5138. bottom: 0;
  5139. }
  5140. .bs-tooltip-top .arrow::before,
  5141. .bs-tooltip-auto[x-placement^=top] .arrow::before {
  5142. top: 0;
  5143. border-width: 0.4rem 0.4rem 0;
  5144. border-top-color: #000;
  5145. }
  5146. .bs-tooltip-right,
  5147. .bs-tooltip-auto[x-placement^=right] {
  5148. padding: 0 0.4rem;
  5149. }
  5150. .bs-tooltip-right .arrow,
  5151. .bs-tooltip-auto[x-placement^=right] .arrow {
  5152. left: 0;
  5153. width: 0.4rem;
  5154. height: 0.8rem;
  5155. }
  5156. .bs-tooltip-right .arrow::before,
  5157. .bs-tooltip-auto[x-placement^=right] .arrow::before {
  5158. right: 0;
  5159. border-width: 0.4rem 0.4rem 0.4rem 0;
  5160. border-right-color: #000;
  5161. }
  5162. .bs-tooltip-bottom,
  5163. .bs-tooltip-auto[x-placement^=bottom] {
  5164. padding: 0.4rem 0;
  5165. }
  5166. .bs-tooltip-bottom .arrow,
  5167. .bs-tooltip-auto[x-placement^=bottom] .arrow {
  5168. top: 0;
  5169. }
  5170. .bs-tooltip-bottom .arrow::before,
  5171. .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  5172. bottom: 0;
  5173. border-width: 0 0.4rem 0.4rem;
  5174. border-bottom-color: #000;
  5175. }
  5176. .bs-tooltip-left,
  5177. .bs-tooltip-auto[x-placement^=left] {
  5178. padding: 0 0.4rem;
  5179. }
  5180. .bs-tooltip-left .arrow,
  5181. .bs-tooltip-auto[x-placement^=left] .arrow {
  5182. right: 0;
  5183. width: 0.4rem;
  5184. height: 0.8rem;
  5185. }
  5186. .bs-tooltip-left .arrow::before,
  5187. .bs-tooltip-auto[x-placement^=left] .arrow::before {
  5188. left: 0;
  5189. border-width: 0.4rem 0 0.4rem 0.4rem;
  5190. border-left-color: #000;
  5191. }
  5192. .tooltip-inner {
  5193. max-width: 200px;
  5194. padding: 0.25rem 0.5rem;
  5195. color: #fff;
  5196. text-align: center;
  5197. background-color: #000;
  5198. border-radius: 0.25rem;
  5199. }
  5200. .popover {
  5201. position: absolute;
  5202. top: 0;
  5203. left: 0;
  5204. z-index: 1060;
  5205. display: block;
  5206. max-width: 276px;
  5207. font-family: "Nunito", sans-serif;
  5208. font-style: normal;
  5209. font-weight: 400;
  5210. line-height: 1.6;
  5211. text-align: left;
  5212. text-align: start;
  5213. text-decoration: none;
  5214. text-shadow: none;
  5215. text-transform: none;
  5216. letter-spacing: normal;
  5217. word-break: normal;
  5218. word-spacing: normal;
  5219. white-space: normal;
  5220. line-break: auto;
  5221. font-size: 0.7875rem;
  5222. word-wrap: break-word;
  5223. background-color: #fff;
  5224. background-clip: padding-box;
  5225. border: 1px solid rgba(0, 0, 0, 0.2);
  5226. border-radius: 0.3rem;
  5227. }
  5228. .popover .arrow {
  5229. position: absolute;
  5230. display: block;
  5231. width: 1rem;
  5232. height: 0.5rem;
  5233. margin: 0 0.3rem;
  5234. }
  5235. .popover .arrow::before,
  5236. .popover .arrow::after {
  5237. position: absolute;
  5238. display: block;
  5239. content: "";
  5240. border-color: transparent;
  5241. border-style: solid;
  5242. }
  5243. .bs-popover-top,
  5244. .bs-popover-auto[x-placement^=top] {
  5245. margin-bottom: 0.5rem;
  5246. }
  5247. .bs-popover-top > .arrow,
  5248. .bs-popover-auto[x-placement^=top] > .arrow {
  5249. bottom: calc((0.5rem + 1px) * -1);
  5250. }
  5251. .bs-popover-top > .arrow::before,
  5252. .bs-popover-auto[x-placement^=top] > .arrow::before {
  5253. bottom: 0;
  5254. border-width: 0.5rem 0.5rem 0;
  5255. border-top-color: rgba(0, 0, 0, 0.25);
  5256. }
  5257. .bs-popover-top > .arrow::after,
  5258. .bs-popover-auto[x-placement^=top] > .arrow::after {
  5259. bottom: 1px;
  5260. border-width: 0.5rem 0.5rem 0;
  5261. border-top-color: #fff;
  5262. }
  5263. .bs-popover-right,
  5264. .bs-popover-auto[x-placement^=right] {
  5265. margin-left: 0.5rem;
  5266. }
  5267. .bs-popover-right > .arrow,
  5268. .bs-popover-auto[x-placement^=right] > .arrow {
  5269. left: calc((0.5rem + 1px) * -1);
  5270. width: 0.5rem;
  5271. height: 1rem;
  5272. margin: 0.3rem 0;
  5273. }
  5274. .bs-popover-right > .arrow::before,
  5275. .bs-popover-auto[x-placement^=right] > .arrow::before {
  5276. left: 0;
  5277. border-width: 0.5rem 0.5rem 0.5rem 0;
  5278. border-right-color: rgba(0, 0, 0, 0.25);
  5279. }
  5280. .bs-popover-right > .arrow::after,
  5281. .bs-popover-auto[x-placement^=right] > .arrow::after {
  5282. left: 1px;
  5283. border-width: 0.5rem 0.5rem 0.5rem 0;
  5284. border-right-color: #fff;
  5285. }
  5286. .bs-popover-bottom,
  5287. .bs-popover-auto[x-placement^=bottom] {
  5288. margin-top: 0.5rem;
  5289. }
  5290. .bs-popover-bottom > .arrow,
  5291. .bs-popover-auto[x-placement^=bottom] > .arrow {
  5292. top: calc((0.5rem + 1px) * -1);
  5293. }
  5294. .bs-popover-bottom > .arrow::before,
  5295. .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  5296. top: 0;
  5297. border-width: 0 0.5rem 0.5rem 0.5rem;
  5298. border-bottom-color: rgba(0, 0, 0, 0.25);
  5299. }
  5300. .bs-popover-bottom > .arrow::after,
  5301. .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  5302. top: 1px;
  5303. border-width: 0 0.5rem 0.5rem 0.5rem;
  5304. border-bottom-color: #fff;
  5305. }
  5306. .bs-popover-bottom .popover-header::before,
  5307. .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  5308. position: absolute;
  5309. top: 0;
  5310. left: 50%;
  5311. display: block;
  5312. width: 1rem;
  5313. margin-left: -0.5rem;
  5314. content: "";
  5315. border-bottom: 1px solid #f7f7f7;
  5316. }
  5317. .bs-popover-left,
  5318. .bs-popover-auto[x-placement^=left] {
  5319. margin-right: 0.5rem;
  5320. }
  5321. .bs-popover-left > .arrow,
  5322. .bs-popover-auto[x-placement^=left] > .arrow {
  5323. right: calc((0.5rem + 1px) * -1);
  5324. width: 0.5rem;
  5325. height: 1rem;
  5326. margin: 0.3rem 0;
  5327. }
  5328. .bs-popover-left > .arrow::before,
  5329. .bs-popover-auto[x-placement^=left] > .arrow::before {
  5330. right: 0;
  5331. border-width: 0.5rem 0 0.5rem 0.5rem;
  5332. border-left-color: rgba(0, 0, 0, 0.25);
  5333. }
  5334. .bs-popover-left > .arrow::after,
  5335. .bs-popover-auto[x-placement^=left] > .arrow::after {
  5336. right: 1px;
  5337. border-width: 0.5rem 0 0.5rem 0.5rem;
  5338. border-left-color: #fff;
  5339. }
  5340. .popover-header {
  5341. padding: 0.5rem 0.75rem;
  5342. margin-bottom: 0;
  5343. font-size: 0.9rem;
  5344. background-color: #f7f7f7;
  5345. border-bottom: 1px solid #ebebeb;
  5346. border-top-left-radius: calc(0.3rem - 1px);
  5347. border-top-right-radius: calc(0.3rem - 1px);
  5348. }
  5349. .popover-header:empty {
  5350. display: none;
  5351. }
  5352. .popover-body {
  5353. padding: 0.5rem 0.75rem;
  5354. color: #212529;
  5355. }
  5356. .carousel {
  5357. position: relative;
  5358. }
  5359. .carousel.pointer-event {
  5360. touch-action: pan-y;
  5361. }
  5362. .carousel-inner {
  5363. position: relative;
  5364. width: 100%;
  5365. overflow: hidden;
  5366. }
  5367. .carousel-inner::after {
  5368. display: block;
  5369. clear: both;
  5370. content: "";
  5371. }
  5372. .carousel-item {
  5373. position: relative;
  5374. display: none;
  5375. float: left;
  5376. width: 100%;
  5377. margin-right: -100%;
  5378. -webkit-backface-visibility: hidden;
  5379. backface-visibility: hidden;
  5380. transition: transform 0.6s ease-in-out;
  5381. }
  5382. @media (prefers-reduced-motion: reduce) {
  5383. .carousel-item {
  5384. transition: none;
  5385. }
  5386. }
  5387. .carousel-item.active,
  5388. .carousel-item-next,
  5389. .carousel-item-prev {
  5390. display: block;
  5391. }
  5392. .carousel-item-next:not(.carousel-item-left),
  5393. .active.carousel-item-right {
  5394. transform: translateX(100%);
  5395. }
  5396. .carousel-item-prev:not(.carousel-item-right),
  5397. .active.carousel-item-left {
  5398. transform: translateX(-100%);
  5399. }
  5400. .carousel-fade .carousel-item {
  5401. opacity: 0;
  5402. transition-property: opacity;
  5403. transform: none;
  5404. }
  5405. .carousel-fade .carousel-item.active,
  5406. .carousel-fade .carousel-item-next.carousel-item-left,
  5407. .carousel-fade .carousel-item-prev.carousel-item-right {
  5408. z-index: 1;
  5409. opacity: 1;
  5410. }
  5411. .carousel-fade .active.carousel-item-left,
  5412. .carousel-fade .active.carousel-item-right {
  5413. z-index: 0;
  5414. opacity: 0;
  5415. transition: 0s 0.6s opacity;
  5416. }
  5417. @media (prefers-reduced-motion: reduce) {
  5418. .carousel-fade .active.carousel-item-left,
  5419. .carousel-fade .active.carousel-item-right {
  5420. transition: none;
  5421. }
  5422. }
  5423. .carousel-control-prev,
  5424. .carousel-control-next {
  5425. position: absolute;
  5426. top: 0;
  5427. bottom: 0;
  5428. z-index: 1;
  5429. display: flex;
  5430. align-items: center;
  5431. justify-content: center;
  5432. width: 15%;
  5433. color: #fff;
  5434. text-align: center;
  5435. opacity: 0.5;
  5436. transition: opacity 0.15s ease;
  5437. }
  5438. @media (prefers-reduced-motion: reduce) {
  5439. .carousel-control-prev,
  5440. .carousel-control-next {
  5441. transition: none;
  5442. }
  5443. }
  5444. .carousel-control-prev:hover,
  5445. .carousel-control-prev:focus,
  5446. .carousel-control-next:hover,
  5447. .carousel-control-next:focus {
  5448. color: #fff;
  5449. text-decoration: none;
  5450. outline: 0;
  5451. opacity: 0.9;
  5452. }
  5453. .carousel-control-prev {
  5454. left: 0;
  5455. }
  5456. .carousel-control-next {
  5457. right: 0;
  5458. }
  5459. .carousel-control-prev-icon,
  5460. .carousel-control-next-icon {
  5461. display: inline-block;
  5462. width: 20px;
  5463. height: 20px;
  5464. background: no-repeat 50%/100% 100%;
  5465. }
  5466. .carousel-control-prev-icon {
  5467. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
  5468. }
  5469. .carousel-control-next-icon {
  5470. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
  5471. }
  5472. .carousel-indicators {
  5473. position: absolute;
  5474. right: 0;
  5475. bottom: 0;
  5476. left: 0;
  5477. z-index: 15;
  5478. display: flex;
  5479. justify-content: center;
  5480. padding-left: 0;
  5481. margin-right: 15%;
  5482. margin-left: 15%;
  5483. list-style: none;
  5484. }
  5485. .carousel-indicators li {
  5486. box-sizing: content-box;
  5487. flex: 0 1 auto;
  5488. width: 30px;
  5489. height: 3px;
  5490. margin-right: 3px;
  5491. margin-left: 3px;
  5492. text-indent: -999px;
  5493. cursor: pointer;
  5494. background-color: #fff;
  5495. background-clip: padding-box;
  5496. border-top: 10px solid transparent;
  5497. border-bottom: 10px solid transparent;
  5498. opacity: 0.5;
  5499. transition: opacity 0.6s ease;
  5500. }
  5501. @media (prefers-reduced-motion: reduce) {
  5502. .carousel-indicators li {
  5503. transition: none;
  5504. }
  5505. }
  5506. .carousel-indicators .active {
  5507. opacity: 1;
  5508. }
  5509. .carousel-caption {
  5510. position: absolute;
  5511. right: 15%;
  5512. bottom: 20px;
  5513. left: 15%;
  5514. z-index: 10;
  5515. padding-top: 20px;
  5516. padding-bottom: 20px;
  5517. color: #fff;
  5518. text-align: center;
  5519. }
  5520. @-webkit-keyframes spinner-border {
  5521. to {
  5522. transform: rotate(360deg);
  5523. }
  5524. }
  5525. @keyframes spinner-border {
  5526. to {
  5527. transform: rotate(360deg);
  5528. }
  5529. }
  5530. .spinner-border {
  5531. display: inline-block;
  5532. width: 2rem;
  5533. height: 2rem;
  5534. vertical-align: text-bottom;
  5535. border: 0.25em solid currentColor;
  5536. border-right-color: transparent;
  5537. border-radius: 50%;
  5538. -webkit-animation: spinner-border 0.75s linear infinite;
  5539. animation: spinner-border 0.75s linear infinite;
  5540. }
  5541. .spinner-border-sm {
  5542. width: 1rem;
  5543. height: 1rem;
  5544. border-width: 0.2em;
  5545. }
  5546. @-webkit-keyframes spinner-grow {
  5547. 0% {
  5548. transform: scale(0);
  5549. }
  5550. 50% {
  5551. opacity: 1;
  5552. }
  5553. }
  5554. @keyframes spinner-grow {
  5555. 0% {
  5556. transform: scale(0);
  5557. }
  5558. 50% {
  5559. opacity: 1;
  5560. }
  5561. }
  5562. .spinner-grow {
  5563. display: inline-block;
  5564. width: 2rem;
  5565. height: 2rem;
  5566. vertical-align: text-bottom;
  5567. background-color: currentColor;
  5568. border-radius: 50%;
  5569. opacity: 0;
  5570. -webkit-animation: spinner-grow 0.75s linear infinite;
  5571. animation: spinner-grow 0.75s linear infinite;
  5572. }
  5573. .spinner-grow-sm {
  5574. width: 1rem;
  5575. height: 1rem;
  5576. }
  5577. .align-baseline {
  5578. vertical-align: baseline !important;
  5579. }
  5580. .align-top {
  5581. vertical-align: top !important;
  5582. }
  5583. .align-middle {
  5584. vertical-align: middle !important;
  5585. }
  5586. .align-bottom {
  5587. vertical-align: bottom !important;
  5588. }
  5589. .align-text-bottom {
  5590. vertical-align: text-bottom !important;
  5591. }
  5592. .align-text-top {
  5593. vertical-align: text-top !important;
  5594. }
  5595. .bg-primary {
  5596. background-color: #3490dc !important;
  5597. }
  5598. a.bg-primary:hover,
  5599. a.bg-primary:focus,
  5600. button.bg-primary:hover,
  5601. button.bg-primary:focus {
  5602. background-color: #2176bd !important;
  5603. }
  5604. .bg-secondary {
  5605. background-color: #6c757d !important;
  5606. }
  5607. a.bg-secondary:hover,
  5608. a.bg-secondary:focus,
  5609. button.bg-secondary:hover,
  5610. button.bg-secondary:focus {
  5611. background-color: #545b62 !important;
  5612. }
  5613. .bg-success {
  5614. background-color: #38c172 !important;
  5615. }
  5616. a.bg-success:hover,
  5617. a.bg-success:focus,
  5618. button.bg-success:hover,
  5619. button.bg-success:focus {
  5620. background-color: #2d995b !important;
  5621. }
  5622. .bg-info {
  5623. background-color: #6cb2eb !important;
  5624. }
  5625. a.bg-info:hover,
  5626. a.bg-info:focus,
  5627. button.bg-info:hover,
  5628. button.bg-info:focus {
  5629. background-color: #3f9ae5 !important;
  5630. }
  5631. .bg-warning {
  5632. background-color: #ffed4a !important;
  5633. }
  5634. a.bg-warning:hover,
  5635. a.bg-warning:focus,
  5636. button.bg-warning:hover,
  5637. button.bg-warning:focus {
  5638. background-color: #ffe817 !important;
  5639. }
  5640. .bg-danger {
  5641. background-color: #e3342f !important;
  5642. }
  5643. a.bg-danger:hover,
  5644. a.bg-danger:focus,
  5645. button.bg-danger:hover,
  5646. button.bg-danger:focus {
  5647. background-color: #c51f1a !important;
  5648. }
  5649. .bg-light {
  5650. background-color: #f8f9fa !important;
  5651. }
  5652. a.bg-light:hover,
  5653. a.bg-light:focus,
  5654. button.bg-light:hover,
  5655. button.bg-light:focus {
  5656. background-color: #dae0e5 !important;
  5657. }
  5658. .bg-dark {
  5659. background-color: #343a40 !important;
  5660. }
  5661. a.bg-dark:hover,
  5662. a.bg-dark:focus,
  5663. button.bg-dark:hover,
  5664. button.bg-dark:focus {
  5665. background-color: #1d2124 !important;
  5666. }
  5667. .bg-white {
  5668. background-color: #fff !important;
  5669. }
  5670. .bg-transparent {
  5671. background-color: transparent !important;
  5672. }
  5673. .border {
  5674. border: 1px solid #dee2e6 !important;
  5675. }
  5676. .border-top {
  5677. border-top: 1px solid #dee2e6 !important;
  5678. }
  5679. .border-right {
  5680. border-right: 1px solid #dee2e6 !important;
  5681. }
  5682. .border-bottom {
  5683. border-bottom: 1px solid #dee2e6 !important;
  5684. }
  5685. .border-left {
  5686. border-left: 1px solid #dee2e6 !important;
  5687. }
  5688. .border-0 {
  5689. border: 0 !important;
  5690. }
  5691. .border-top-0 {
  5692. border-top: 0 !important;
  5693. }
  5694. .border-right-0 {
  5695. border-right: 0 !important;
  5696. }
  5697. .border-bottom-0 {
  5698. border-bottom: 0 !important;
  5699. }
  5700. .border-left-0 {
  5701. border-left: 0 !important;
  5702. }
  5703. .border-primary {
  5704. border-color: #3490dc !important;
  5705. }
  5706. .border-secondary {
  5707. border-color: #6c757d !important;
  5708. }
  5709. .border-success {
  5710. border-color: #38c172 !important;
  5711. }
  5712. .border-info {
  5713. border-color: #6cb2eb !important;
  5714. }
  5715. .border-warning {
  5716. border-color: #ffed4a !important;
  5717. }
  5718. .border-danger {
  5719. border-color: #e3342f !important;
  5720. }
  5721. .border-light {
  5722. border-color: #f8f9fa !important;
  5723. }
  5724. .border-dark {
  5725. border-color: #343a40 !important;
  5726. }
  5727. .border-white {
  5728. border-color: #fff !important;
  5729. }
  5730. .rounded-sm {
  5731. border-radius: 0.2rem !important;
  5732. }
  5733. .rounded {
  5734. border-radius: 0.25rem !important;
  5735. }
  5736. .rounded-top {
  5737. border-top-left-radius: 0.25rem !important;
  5738. border-top-right-radius: 0.25rem !important;
  5739. }
  5740. .rounded-right {
  5741. border-top-right-radius: 0.25rem !important;
  5742. border-bottom-right-radius: 0.25rem !important;
  5743. }
  5744. .rounded-bottom {
  5745. border-bottom-right-radius: 0.25rem !important;
  5746. border-bottom-left-radius: 0.25rem !important;
  5747. }
  5748. .rounded-left {
  5749. border-top-left-radius: 0.25rem !important;
  5750. border-bottom-left-radius: 0.25rem !important;
  5751. }
  5752. .rounded-lg {
  5753. border-radius: 0.3rem !important;
  5754. }
  5755. .rounded-circle {
  5756. border-radius: 50% !important;
  5757. }
  5758. .rounded-pill {
  5759. border-radius: 50rem !important;
  5760. }
  5761. .rounded-0 {
  5762. border-radius: 0 !important;
  5763. }
  5764. .clearfix::after {
  5765. display: block;
  5766. clear: both;
  5767. content: "";
  5768. }
  5769. .d-none {
  5770. display: none !important;
  5771. }
  5772. .d-inline {
  5773. display: inline !important;
  5774. }
  5775. .d-inline-block {
  5776. display: inline-block !important;
  5777. }
  5778. .d-block {
  5779. display: block !important;
  5780. }
  5781. .d-table {
  5782. display: table !important;
  5783. }
  5784. .d-table-row {
  5785. display: table-row !important;
  5786. }
  5787. .d-table-cell {
  5788. display: table-cell !important;
  5789. }
  5790. .d-flex {
  5791. display: flex !important;
  5792. }
  5793. .d-inline-flex {
  5794. display: inline-flex !important;
  5795. }
  5796. @media (min-width: 576px) {
  5797. .d-sm-none {
  5798. display: none !important;
  5799. }
  5800. .d-sm-inline {
  5801. display: inline !important;
  5802. }
  5803. .d-sm-inline-block {
  5804. display: inline-block !important;
  5805. }
  5806. .d-sm-block {
  5807. display: block !important;
  5808. }
  5809. .d-sm-table {
  5810. display: table !important;
  5811. }
  5812. .d-sm-table-row {
  5813. display: table-row !important;
  5814. }
  5815. .d-sm-table-cell {
  5816. display: table-cell !important;
  5817. }
  5818. .d-sm-flex {
  5819. display: flex !important;
  5820. }
  5821. .d-sm-inline-flex {
  5822. display: inline-flex !important;
  5823. }
  5824. }
  5825. @media (min-width: 768px) {
  5826. .d-md-none {
  5827. display: none !important;
  5828. }
  5829. .d-md-inline {
  5830. display: inline !important;
  5831. }
  5832. .d-md-inline-block {
  5833. display: inline-block !important;
  5834. }
  5835. .d-md-block {
  5836. display: block !important;
  5837. }
  5838. .d-md-table {
  5839. display: table !important;
  5840. }
  5841. .d-md-table-row {
  5842. display: table-row !important;
  5843. }
  5844. .d-md-table-cell {
  5845. display: table-cell !important;
  5846. }
  5847. .d-md-flex {
  5848. display: flex !important;
  5849. }
  5850. .d-md-inline-flex {
  5851. display: inline-flex !important;
  5852. }
  5853. }
  5854. @media (min-width: 992px) {
  5855. .d-lg-none {
  5856. display: none !important;
  5857. }
  5858. .d-lg-inline {
  5859. display: inline !important;
  5860. }
  5861. .d-lg-inline-block {
  5862. display: inline-block !important;
  5863. }
  5864. .d-lg-block {
  5865. display: block !important;
  5866. }
  5867. .d-lg-table {
  5868. display: table !important;
  5869. }
  5870. .d-lg-table-row {
  5871. display: table-row !important;
  5872. }
  5873. .d-lg-table-cell {
  5874. display: table-cell !important;
  5875. }
  5876. .d-lg-flex {
  5877. display: flex !important;
  5878. }
  5879. .d-lg-inline-flex {
  5880. display: inline-flex !important;
  5881. }
  5882. }
  5883. @media (min-width: 1200px) {
  5884. .d-xl-none {
  5885. display: none !important;
  5886. }
  5887. .d-xl-inline {
  5888. display: inline !important;
  5889. }
  5890. .d-xl-inline-block {
  5891. display: inline-block !important;
  5892. }
  5893. .d-xl-block {
  5894. display: block !important;
  5895. }
  5896. .d-xl-table {
  5897. display: table !important;
  5898. }
  5899. .d-xl-table-row {
  5900. display: table-row !important;
  5901. }
  5902. .d-xl-table-cell {
  5903. display: table-cell !important;
  5904. }
  5905. .d-xl-flex {
  5906. display: flex !important;
  5907. }
  5908. .d-xl-inline-flex {
  5909. display: inline-flex !important;
  5910. }
  5911. }
  5912. @media print {
  5913. .d-print-none {
  5914. display: none !important;
  5915. }
  5916. .d-print-inline {
  5917. display: inline !important;
  5918. }
  5919. .d-print-inline-block {
  5920. display: inline-block !important;
  5921. }
  5922. .d-print-block {
  5923. display: block !important;
  5924. }
  5925. .d-print-table {
  5926. display: table !important;
  5927. }
  5928. .d-print-table-row {
  5929. display: table-row !important;
  5930. }
  5931. .d-print-table-cell {
  5932. display: table-cell !important;
  5933. }
  5934. .d-print-flex {
  5935. display: flex !important;
  5936. }
  5937. .d-print-inline-flex {
  5938. display: inline-flex !important;
  5939. }
  5940. }
  5941. .embed-responsive {
  5942. position: relative;
  5943. display: block;
  5944. width: 100%;
  5945. padding: 0;
  5946. overflow: hidden;
  5947. }
  5948. .embed-responsive::before {
  5949. display: block;
  5950. content: "";
  5951. }
  5952. .embed-responsive .embed-responsive-item,
  5953. .embed-responsive iframe,
  5954. .embed-responsive embed,
  5955. .embed-responsive object,
  5956. .embed-responsive video {
  5957. position: absolute;
  5958. top: 0;
  5959. bottom: 0;
  5960. left: 0;
  5961. width: 100%;
  5962. height: 100%;
  5963. border: 0;
  5964. }
  5965. .embed-responsive-21by9::before {
  5966. padding-top: 42.8571428571%;
  5967. }
  5968. .embed-responsive-16by9::before {
  5969. padding-top: 56.25%;
  5970. }
  5971. .embed-responsive-4by3::before {
  5972. padding-top: 75%;
  5973. }
  5974. .embed-responsive-1by1::before {
  5975. padding-top: 100%;
  5976. }
  5977. .flex-row {
  5978. flex-direction: row !important;
  5979. }
  5980. .flex-column {
  5981. flex-direction: column !important;
  5982. }
  5983. .flex-row-reverse {
  5984. flex-direction: row-reverse !important;
  5985. }
  5986. .flex-column-reverse {
  5987. flex-direction: column-reverse !important;
  5988. }
  5989. .flex-wrap {
  5990. flex-wrap: wrap !important;
  5991. }
  5992. .flex-nowrap {
  5993. flex-wrap: nowrap !important;
  5994. }
  5995. .flex-wrap-reverse {
  5996. flex-wrap: wrap-reverse !important;
  5997. }
  5998. .flex-fill {
  5999. flex: 1 1 auto !important;
  6000. }
  6001. .flex-grow-0 {
  6002. flex-grow: 0 !important;
  6003. }
  6004. .flex-grow-1 {
  6005. flex-grow: 1 !important;
  6006. }
  6007. .flex-shrink-0 {
  6008. flex-shrink: 0 !important;
  6009. }
  6010. .flex-shrink-1 {
  6011. flex-shrink: 1 !important;
  6012. }
  6013. .justify-content-start {
  6014. justify-content: flex-start !important;
  6015. }
  6016. .justify-content-end {
  6017. justify-content: flex-end !important;
  6018. }
  6019. .justify-content-center {
  6020. justify-content: center !important;
  6021. }
  6022. .justify-content-between {
  6023. justify-content: space-between !important;
  6024. }
  6025. .justify-content-around {
  6026. justify-content: space-around !important;
  6027. }
  6028. .align-items-start {
  6029. align-items: flex-start !important;
  6030. }
  6031. .align-items-end {
  6032. align-items: flex-end !important;
  6033. }
  6034. .align-items-center {
  6035. align-items: center !important;
  6036. }
  6037. .align-items-baseline {
  6038. align-items: baseline !important;
  6039. }
  6040. .align-items-stretch {
  6041. align-items: stretch !important;
  6042. }
  6043. .align-content-start {
  6044. align-content: flex-start !important;
  6045. }
  6046. .align-content-end {
  6047. align-content: flex-end !important;
  6048. }
  6049. .align-content-center {
  6050. align-content: center !important;
  6051. }
  6052. .align-content-between {
  6053. align-content: space-between !important;
  6054. }
  6055. .align-content-around {
  6056. align-content: space-around !important;
  6057. }
  6058. .align-content-stretch {
  6059. align-content: stretch !important;
  6060. }
  6061. .align-self-auto {
  6062. align-self: auto !important;
  6063. }
  6064. .align-self-start {
  6065. align-self: flex-start !important;
  6066. }
  6067. .align-self-end {
  6068. align-self: flex-end !important;
  6069. }
  6070. .align-self-center {
  6071. align-self: center !important;
  6072. }
  6073. .align-self-baseline {
  6074. align-self: baseline !important;
  6075. }
  6076. .align-self-stretch {
  6077. align-self: stretch !important;
  6078. }
  6079. @media (min-width: 576px) {
  6080. .flex-sm-row {
  6081. flex-direction: row !important;
  6082. }
  6083. .flex-sm-column {
  6084. flex-direction: column !important;
  6085. }
  6086. .flex-sm-row-reverse {
  6087. flex-direction: row-reverse !important;
  6088. }
  6089. .flex-sm-column-reverse {
  6090. flex-direction: column-reverse !important;
  6091. }
  6092. .flex-sm-wrap {
  6093. flex-wrap: wrap !important;
  6094. }
  6095. .flex-sm-nowrap {
  6096. flex-wrap: nowrap !important;
  6097. }
  6098. .flex-sm-wrap-reverse {
  6099. flex-wrap: wrap-reverse !important;
  6100. }
  6101. .flex-sm-fill {
  6102. flex: 1 1 auto !important;
  6103. }
  6104. .flex-sm-grow-0 {
  6105. flex-grow: 0 !important;
  6106. }
  6107. .flex-sm-grow-1 {
  6108. flex-grow: 1 !important;
  6109. }
  6110. .flex-sm-shrink-0 {
  6111. flex-shrink: 0 !important;
  6112. }
  6113. .flex-sm-shrink-1 {
  6114. flex-shrink: 1 !important;
  6115. }
  6116. .justify-content-sm-start {
  6117. justify-content: flex-start !important;
  6118. }
  6119. .justify-content-sm-end {
  6120. justify-content: flex-end !important;
  6121. }
  6122. .justify-content-sm-center {
  6123. justify-content: center !important;
  6124. }
  6125. .justify-content-sm-between {
  6126. justify-content: space-between !important;
  6127. }
  6128. .justify-content-sm-around {
  6129. justify-content: space-around !important;
  6130. }
  6131. .align-items-sm-start {
  6132. align-items: flex-start !important;
  6133. }
  6134. .align-items-sm-end {
  6135. align-items: flex-end !important;
  6136. }
  6137. .align-items-sm-center {
  6138. align-items: center !important;
  6139. }
  6140. .align-items-sm-baseline {
  6141. align-items: baseline !important;
  6142. }
  6143. .align-items-sm-stretch {
  6144. align-items: stretch !important;
  6145. }
  6146. .align-content-sm-start {
  6147. align-content: flex-start !important;
  6148. }
  6149. .align-content-sm-end {
  6150. align-content: flex-end !important;
  6151. }
  6152. .align-content-sm-center {
  6153. align-content: center !important;
  6154. }
  6155. .align-content-sm-between {
  6156. align-content: space-between !important;
  6157. }
  6158. .align-content-sm-around {
  6159. align-content: space-around !important;
  6160. }
  6161. .align-content-sm-stretch {
  6162. align-content: stretch !important;
  6163. }
  6164. .align-self-sm-auto {
  6165. align-self: auto !important;
  6166. }
  6167. .align-self-sm-start {
  6168. align-self: flex-start !important;
  6169. }
  6170. .align-self-sm-end {
  6171. align-self: flex-end !important;
  6172. }
  6173. .align-self-sm-center {
  6174. align-self: center !important;
  6175. }
  6176. .align-self-sm-baseline {
  6177. align-self: baseline !important;
  6178. }
  6179. .align-self-sm-stretch {
  6180. align-self: stretch !important;
  6181. }
  6182. }
  6183. @media (min-width: 768px) {
  6184. .flex-md-row {
  6185. flex-direction: row !important;
  6186. }
  6187. .flex-md-column {
  6188. flex-direction: column !important;
  6189. }
  6190. .flex-md-row-reverse {
  6191. flex-direction: row-reverse !important;
  6192. }
  6193. .flex-md-column-reverse {
  6194. flex-direction: column-reverse !important;
  6195. }
  6196. .flex-md-wrap {
  6197. flex-wrap: wrap !important;
  6198. }
  6199. .flex-md-nowrap {
  6200. flex-wrap: nowrap !important;
  6201. }
  6202. .flex-md-wrap-reverse {
  6203. flex-wrap: wrap-reverse !important;
  6204. }
  6205. .flex-md-fill {
  6206. flex: 1 1 auto !important;
  6207. }
  6208. .flex-md-grow-0 {
  6209. flex-grow: 0 !important;
  6210. }
  6211. .flex-md-grow-1 {
  6212. flex-grow: 1 !important;
  6213. }
  6214. .flex-md-shrink-0 {
  6215. flex-shrink: 0 !important;
  6216. }
  6217. .flex-md-shrink-1 {
  6218. flex-shrink: 1 !important;
  6219. }
  6220. .justify-content-md-start {
  6221. justify-content: flex-start !important;
  6222. }
  6223. .justify-content-md-end {
  6224. justify-content: flex-end !important;
  6225. }
  6226. .justify-content-md-center {
  6227. justify-content: center !important;
  6228. }
  6229. .justify-content-md-between {
  6230. justify-content: space-between !important;
  6231. }
  6232. .justify-content-md-around {
  6233. justify-content: space-around !important;
  6234. }
  6235. .align-items-md-start {
  6236. align-items: flex-start !important;
  6237. }
  6238. .align-items-md-end {
  6239. align-items: flex-end !important;
  6240. }
  6241. .align-items-md-center {
  6242. align-items: center !important;
  6243. }
  6244. .align-items-md-baseline {
  6245. align-items: baseline !important;
  6246. }
  6247. .align-items-md-stretch {
  6248. align-items: stretch !important;
  6249. }
  6250. .align-content-md-start {
  6251. align-content: flex-start !important;
  6252. }
  6253. .align-content-md-end {
  6254. align-content: flex-end !important;
  6255. }
  6256. .align-content-md-center {
  6257. align-content: center !important;
  6258. }
  6259. .align-content-md-between {
  6260. align-content: space-between !important;
  6261. }
  6262. .align-content-md-around {
  6263. align-content: space-around !important;
  6264. }
  6265. .align-content-md-stretch {
  6266. align-content: stretch !important;
  6267. }
  6268. .align-self-md-auto {
  6269. align-self: auto !important;
  6270. }
  6271. .align-self-md-start {
  6272. align-self: flex-start !important;
  6273. }
  6274. .align-self-md-end {
  6275. align-self: flex-end !important;
  6276. }
  6277. .align-self-md-center {
  6278. align-self: center !important;
  6279. }
  6280. .align-self-md-baseline {
  6281. align-self: baseline !important;
  6282. }
  6283. .align-self-md-stretch {
  6284. align-self: stretch !important;
  6285. }
  6286. }
  6287. @media (min-width: 992px) {
  6288. .flex-lg-row {
  6289. flex-direction: row !important;
  6290. }
  6291. .flex-lg-column {
  6292. flex-direction: column !important;
  6293. }
  6294. .flex-lg-row-reverse {
  6295. flex-direction: row-reverse !important;
  6296. }
  6297. .flex-lg-column-reverse {
  6298. flex-direction: column-reverse !important;
  6299. }
  6300. .flex-lg-wrap {
  6301. flex-wrap: wrap !important;
  6302. }
  6303. .flex-lg-nowrap {
  6304. flex-wrap: nowrap !important;
  6305. }
  6306. .flex-lg-wrap-reverse {
  6307. flex-wrap: wrap-reverse !important;
  6308. }
  6309. .flex-lg-fill {
  6310. flex: 1 1 auto !important;
  6311. }
  6312. .flex-lg-grow-0 {
  6313. flex-grow: 0 !important;
  6314. }
  6315. .flex-lg-grow-1 {
  6316. flex-grow: 1 !important;
  6317. }
  6318. .flex-lg-shrink-0 {
  6319. flex-shrink: 0 !important;
  6320. }
  6321. .flex-lg-shrink-1 {
  6322. flex-shrink: 1 !important;
  6323. }
  6324. .justify-content-lg-start {
  6325. justify-content: flex-start !important;
  6326. }
  6327. .justify-content-lg-end {
  6328. justify-content: flex-end !important;
  6329. }
  6330. .justify-content-lg-center {
  6331. justify-content: center !important;
  6332. }
  6333. .justify-content-lg-between {
  6334. justify-content: space-between !important;
  6335. }
  6336. .justify-content-lg-around {
  6337. justify-content: space-around !important;
  6338. }
  6339. .align-items-lg-start {
  6340. align-items: flex-start !important;
  6341. }
  6342. .align-items-lg-end {
  6343. align-items: flex-end !important;
  6344. }
  6345. .align-items-lg-center {
  6346. align-items: center !important;
  6347. }
  6348. .align-items-lg-baseline {
  6349. align-items: baseline !important;
  6350. }
  6351. .align-items-lg-stretch {
  6352. align-items: stretch !important;
  6353. }
  6354. .align-content-lg-start {
  6355. align-content: flex-start !important;
  6356. }
  6357. .align-content-lg-end {
  6358. align-content: flex-end !important;
  6359. }
  6360. .align-content-lg-center {
  6361. align-content: center !important;
  6362. }
  6363. .align-content-lg-between {
  6364. align-content: space-between !important;
  6365. }
  6366. .align-content-lg-around {
  6367. align-content: space-around !important;
  6368. }
  6369. .align-content-lg-stretch {
  6370. align-content: stretch !important;
  6371. }
  6372. .align-self-lg-auto {
  6373. align-self: auto !important;
  6374. }
  6375. .align-self-lg-start {
  6376. align-self: flex-start !important;
  6377. }
  6378. .align-self-lg-end {
  6379. align-self: flex-end !important;
  6380. }
  6381. .align-self-lg-center {
  6382. align-self: center !important;
  6383. }
  6384. .align-self-lg-baseline {
  6385. align-self: baseline !important;
  6386. }
  6387. .align-self-lg-stretch {
  6388. align-self: stretch !important;
  6389. }
  6390. }
  6391. @media (min-width: 1200px) {
  6392. .flex-xl-row {
  6393. flex-direction: row !important;
  6394. }
  6395. .flex-xl-column {
  6396. flex-direction: column !important;
  6397. }
  6398. .flex-xl-row-reverse {
  6399. flex-direction: row-reverse !important;
  6400. }
  6401. .flex-xl-column-reverse {
  6402. flex-direction: column-reverse !important;
  6403. }
  6404. .flex-xl-wrap {
  6405. flex-wrap: wrap !important;
  6406. }
  6407. .flex-xl-nowrap {
  6408. flex-wrap: nowrap !important;
  6409. }
  6410. .flex-xl-wrap-reverse {
  6411. flex-wrap: wrap-reverse !important;
  6412. }
  6413. .flex-xl-fill {
  6414. flex: 1 1 auto !important;
  6415. }
  6416. .flex-xl-grow-0 {
  6417. flex-grow: 0 !important;
  6418. }
  6419. .flex-xl-grow-1 {
  6420. flex-grow: 1 !important;
  6421. }
  6422. .flex-xl-shrink-0 {
  6423. flex-shrink: 0 !important;
  6424. }
  6425. .flex-xl-shrink-1 {
  6426. flex-shrink: 1 !important;
  6427. }
  6428. .justify-content-xl-start {
  6429. justify-content: flex-start !important;
  6430. }
  6431. .justify-content-xl-end {
  6432. justify-content: flex-end !important;
  6433. }
  6434. .justify-content-xl-center {
  6435. justify-content: center !important;
  6436. }
  6437. .justify-content-xl-between {
  6438. justify-content: space-between !important;
  6439. }
  6440. .justify-content-xl-around {
  6441. justify-content: space-around !important;
  6442. }
  6443. .align-items-xl-start {
  6444. align-items: flex-start !important;
  6445. }
  6446. .align-items-xl-end {
  6447. align-items: flex-end !important;
  6448. }
  6449. .align-items-xl-center {
  6450. align-items: center !important;
  6451. }
  6452. .align-items-xl-baseline {
  6453. align-items: baseline !important;
  6454. }
  6455. .align-items-xl-stretch {
  6456. align-items: stretch !important;
  6457. }
  6458. .align-content-xl-start {
  6459. align-content: flex-start !important;
  6460. }
  6461. .align-content-xl-end {
  6462. align-content: flex-end !important;
  6463. }
  6464. .align-content-xl-center {
  6465. align-content: center !important;
  6466. }
  6467. .align-content-xl-between {
  6468. align-content: space-between !important;
  6469. }
  6470. .align-content-xl-around {
  6471. align-content: space-around !important;
  6472. }
  6473. .align-content-xl-stretch {
  6474. align-content: stretch !important;
  6475. }
  6476. .align-self-xl-auto {
  6477. align-self: auto !important;
  6478. }
  6479. .align-self-xl-start {
  6480. align-self: flex-start !important;
  6481. }
  6482. .align-self-xl-end {
  6483. align-self: flex-end !important;
  6484. }
  6485. .align-self-xl-center {
  6486. align-self: center !important;
  6487. }
  6488. .align-self-xl-baseline {
  6489. align-self: baseline !important;
  6490. }
  6491. .align-self-xl-stretch {
  6492. align-self: stretch !important;
  6493. }
  6494. }
  6495. .float-left {
  6496. float: left !important;
  6497. }
  6498. .float-right {
  6499. float: right !important;
  6500. }
  6501. .float-none {
  6502. float: none !important;
  6503. }
  6504. @media (min-width: 576px) {
  6505. .float-sm-left {
  6506. float: left !important;
  6507. }
  6508. .float-sm-right {
  6509. float: right !important;
  6510. }
  6511. .float-sm-none {
  6512. float: none !important;
  6513. }
  6514. }
  6515. @media (min-width: 768px) {
  6516. .float-md-left {
  6517. float: left !important;
  6518. }
  6519. .float-md-right {
  6520. float: right !important;
  6521. }
  6522. .float-md-none {
  6523. float: none !important;
  6524. }
  6525. }
  6526. @media (min-width: 992px) {
  6527. .float-lg-left {
  6528. float: left !important;
  6529. }
  6530. .float-lg-right {
  6531. float: right !important;
  6532. }
  6533. .float-lg-none {
  6534. float: none !important;
  6535. }
  6536. }
  6537. @media (min-width: 1200px) {
  6538. .float-xl-left {
  6539. float: left !important;
  6540. }
  6541. .float-xl-right {
  6542. float: right !important;
  6543. }
  6544. .float-xl-none {
  6545. float: none !important;
  6546. }
  6547. }
  6548. .overflow-auto {
  6549. overflow: auto !important;
  6550. }
  6551. .overflow-hidden {
  6552. overflow: hidden !important;
  6553. }
  6554. .position-static {
  6555. position: static !important;
  6556. }
  6557. .position-relative {
  6558. position: relative !important;
  6559. }
  6560. .position-absolute {
  6561. position: absolute !important;
  6562. }
  6563. .position-fixed {
  6564. position: fixed !important;
  6565. }
  6566. .position-sticky {
  6567. position: -webkit-sticky !important;
  6568. position: sticky !important;
  6569. }
  6570. .fixed-top {
  6571. position: fixed;
  6572. top: 0;
  6573. right: 0;
  6574. left: 0;
  6575. z-index: 1030;
  6576. }
  6577. .fixed-bottom {
  6578. position: fixed;
  6579. right: 0;
  6580. bottom: 0;
  6581. left: 0;
  6582. z-index: 1030;
  6583. }
  6584. @supports ((position: -webkit-sticky) or (position: sticky)) {
  6585. .sticky-top {
  6586. position: -webkit-sticky;
  6587. position: sticky;
  6588. top: 0;
  6589. z-index: 1020;
  6590. }
  6591. }
  6592. .sr-only {
  6593. position: absolute;
  6594. width: 1px;
  6595. height: 1px;
  6596. padding: 0;
  6597. overflow: hidden;
  6598. clip: rect(0, 0, 0, 0);
  6599. white-space: nowrap;
  6600. border: 0;
  6601. }
  6602. .sr-only-focusable:active,
  6603. .sr-only-focusable:focus {
  6604. position: static;
  6605. width: auto;
  6606. height: auto;
  6607. overflow: visible;
  6608. clip: auto;
  6609. white-space: normal;
  6610. }
  6611. .shadow-sm {
  6612. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6613. }
  6614. .shadow {
  6615. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6616. }
  6617. .shadow-lg {
  6618. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6619. }
  6620. .shadow-none {
  6621. box-shadow: none !important;
  6622. }
  6623. .w-25 {
  6624. width: 25% !important;
  6625. }
  6626. .w-50 {
  6627. width: 50% !important;
  6628. }
  6629. .w-75 {
  6630. width: 75% !important;
  6631. }
  6632. .w-100 {
  6633. width: 100% !important;
  6634. }
  6635. .w-auto {
  6636. width: auto !important;
  6637. }
  6638. .h-25 {
  6639. height: 25% !important;
  6640. }
  6641. .h-50 {
  6642. height: 50% !important;
  6643. }
  6644. .h-75 {
  6645. height: 75% !important;
  6646. }
  6647. .h-100 {
  6648. height: 100% !important;
  6649. }
  6650. .h-auto {
  6651. height: auto !important;
  6652. }
  6653. .mw-100 {
  6654. max-width: 100% !important;
  6655. }
  6656. .mh-100 {
  6657. max-height: 100% !important;
  6658. }
  6659. .min-vw-100 {
  6660. min-width: 100vw !important;
  6661. }
  6662. .min-vh-100 {
  6663. min-height: 100vh !important;
  6664. }
  6665. .vw-100 {
  6666. width: 100vw !important;
  6667. }
  6668. .vh-100 {
  6669. height: 100vh !important;
  6670. }
  6671. .stretched-link::after {
  6672. position: absolute;
  6673. top: 0;
  6674. right: 0;
  6675. bottom: 0;
  6676. left: 0;
  6677. z-index: 1;
  6678. pointer-events: auto;
  6679. content: "";
  6680. background-color: rgba(0, 0, 0, 0);
  6681. }
  6682. .m-0 {
  6683. margin: 0 !important;
  6684. }
  6685. .mt-0,
  6686. .my-0 {
  6687. margin-top: 0 !important;
  6688. }
  6689. .mr-0,
  6690. .mx-0 {
  6691. margin-right: 0 !important;
  6692. }
  6693. .mb-0,
  6694. .my-0 {
  6695. margin-bottom: 0 !important;
  6696. }
  6697. .ml-0,
  6698. .mx-0 {
  6699. margin-left: 0 !important;
  6700. }
  6701. .m-1 {
  6702. margin: 0.25rem !important;
  6703. }
  6704. .mt-1,
  6705. .my-1 {
  6706. margin-top: 0.25rem !important;
  6707. }
  6708. .mr-1,
  6709. .mx-1 {
  6710. margin-right: 0.25rem !important;
  6711. }
  6712. .mb-1,
  6713. .my-1 {
  6714. margin-bottom: 0.25rem !important;
  6715. }
  6716. .ml-1,
  6717. .mx-1 {
  6718. margin-left: 0.25rem !important;
  6719. }
  6720. .m-2 {
  6721. margin: 0.5rem !important;
  6722. }
  6723. .mt-2,
  6724. .my-2 {
  6725. margin-top: 0.5rem !important;
  6726. }
  6727. .mr-2,
  6728. .mx-2 {
  6729. margin-right: 0.5rem !important;
  6730. }
  6731. .mb-2,
  6732. .my-2 {
  6733. margin-bottom: 0.5rem !important;
  6734. }
  6735. .ml-2,
  6736. .mx-2 {
  6737. margin-left: 0.5rem !important;
  6738. }
  6739. .m-3 {
  6740. margin: 1rem !important;
  6741. }
  6742. .mt-3,
  6743. .my-3 {
  6744. margin-top: 1rem !important;
  6745. }
  6746. .mr-3,
  6747. .mx-3 {
  6748. margin-right: 1rem !important;
  6749. }
  6750. .mb-3,
  6751. .my-3 {
  6752. margin-bottom: 1rem !important;
  6753. }
  6754. .ml-3,
  6755. .mx-3 {
  6756. margin-left: 1rem !important;
  6757. }
  6758. .m-4 {
  6759. margin: 1.5rem !important;
  6760. }
  6761. .mt-4,
  6762. .my-4 {
  6763. margin-top: 1.5rem !important;
  6764. }
  6765. .mr-4,
  6766. .mx-4 {
  6767. margin-right: 1.5rem !important;
  6768. }
  6769. .mb-4,
  6770. .my-4 {
  6771. margin-bottom: 1.5rem !important;
  6772. }
  6773. .ml-4,
  6774. .mx-4 {
  6775. margin-left: 1.5rem !important;
  6776. }
  6777. .m-5 {
  6778. margin: 3rem !important;
  6779. }
  6780. .mt-5,
  6781. .my-5 {
  6782. margin-top: 3rem !important;
  6783. }
  6784. .mr-5,
  6785. .mx-5 {
  6786. margin-right: 3rem !important;
  6787. }
  6788. .mb-5,
  6789. .my-5 {
  6790. margin-bottom: 3rem !important;
  6791. }
  6792. .ml-5,
  6793. .mx-5 {
  6794. margin-left: 3rem !important;
  6795. }
  6796. .p-0 {
  6797. padding: 0 !important;
  6798. }
  6799. .pt-0,
  6800. .py-0 {
  6801. padding-top: 0 !important;
  6802. }
  6803. .pr-0,
  6804. .px-0 {
  6805. padding-right: 0 !important;
  6806. }
  6807. .pb-0,
  6808. .py-0 {
  6809. padding-bottom: 0 !important;
  6810. }
  6811. .pl-0,
  6812. .px-0 {
  6813. padding-left: 0 !important;
  6814. }
  6815. .p-1 {
  6816. padding: 0.25rem !important;
  6817. }
  6818. .pt-1,
  6819. .py-1 {
  6820. padding-top: 0.25rem !important;
  6821. }
  6822. .pr-1,
  6823. .px-1 {
  6824. padding-right: 0.25rem !important;
  6825. }
  6826. .pb-1,
  6827. .py-1 {
  6828. padding-bottom: 0.25rem !important;
  6829. }
  6830. .pl-1,
  6831. .px-1 {
  6832. padding-left: 0.25rem !important;
  6833. }
  6834. .p-2 {
  6835. padding: 0.5rem !important;
  6836. }
  6837. .pt-2,
  6838. .py-2 {
  6839. padding-top: 0.5rem !important;
  6840. }
  6841. .pr-2,
  6842. .px-2 {
  6843. padding-right: 0.5rem !important;
  6844. }
  6845. .pb-2,
  6846. .py-2 {
  6847. padding-bottom: 0.5rem !important;
  6848. }
  6849. .pl-2,
  6850. .px-2 {
  6851. padding-left: 0.5rem !important;
  6852. }
  6853. .p-3 {
  6854. padding: 1rem !important;
  6855. }
  6856. .pt-3,
  6857. .py-3 {
  6858. padding-top: 1rem !important;
  6859. }
  6860. .pr-3,
  6861. .px-3 {
  6862. padding-right: 1rem !important;
  6863. }
  6864. .pb-3,
  6865. .py-3 {
  6866. padding-bottom: 1rem !important;
  6867. }
  6868. .pl-3,
  6869. .px-3 {
  6870. padding-left: 1rem !important;
  6871. }
  6872. .p-4 {
  6873. padding: 1.5rem !important;
  6874. }
  6875. .pt-4,
  6876. .py-4 {
  6877. padding-top: 1.5rem !important;
  6878. }
  6879. .pr-4,
  6880. .px-4 {
  6881. padding-right: 1.5rem !important;
  6882. }
  6883. .pb-4,
  6884. .py-4 {
  6885. padding-bottom: 1.5rem !important;
  6886. }
  6887. .pl-4,
  6888. .px-4 {
  6889. padding-left: 1.5rem !important;
  6890. }
  6891. .p-5 {
  6892. padding: 3rem !important;
  6893. }
  6894. .pt-5,
  6895. .py-5 {
  6896. padding-top: 3rem !important;
  6897. }
  6898. .pr-5,
  6899. .px-5 {
  6900. padding-right: 3rem !important;
  6901. }
  6902. .pb-5,
  6903. .py-5 {
  6904. padding-bottom: 3rem !important;
  6905. }
  6906. .pl-5,
  6907. .px-5 {
  6908. padding-left: 3rem !important;
  6909. }
  6910. .m-n1 {
  6911. margin: -0.25rem !important;
  6912. }
  6913. .mt-n1,
  6914. .my-n1 {
  6915. margin-top: -0.25rem !important;
  6916. }
  6917. .mr-n1,
  6918. .mx-n1 {
  6919. margin-right: -0.25rem !important;
  6920. }
  6921. .mb-n1,
  6922. .my-n1 {
  6923. margin-bottom: -0.25rem !important;
  6924. }
  6925. .ml-n1,
  6926. .mx-n1 {
  6927. margin-left: -0.25rem !important;
  6928. }
  6929. .m-n2 {
  6930. margin: -0.5rem !important;
  6931. }
  6932. .mt-n2,
  6933. .my-n2 {
  6934. margin-top: -0.5rem !important;
  6935. }
  6936. .mr-n2,
  6937. .mx-n2 {
  6938. margin-right: -0.5rem !important;
  6939. }
  6940. .mb-n2,
  6941. .my-n2 {
  6942. margin-bottom: -0.5rem !important;
  6943. }
  6944. .ml-n2,
  6945. .mx-n2 {
  6946. margin-left: -0.5rem !important;
  6947. }
  6948. .m-n3 {
  6949. margin: -1rem !important;
  6950. }
  6951. .mt-n3,
  6952. .my-n3 {
  6953. margin-top: -1rem !important;
  6954. }
  6955. .mr-n3,
  6956. .mx-n3 {
  6957. margin-right: -1rem !important;
  6958. }
  6959. .mb-n3,
  6960. .my-n3 {
  6961. margin-bottom: -1rem !important;
  6962. }
  6963. .ml-n3,
  6964. .mx-n3 {
  6965. margin-left: -1rem !important;
  6966. }
  6967. .m-n4 {
  6968. margin: -1.5rem !important;
  6969. }
  6970. .mt-n4,
  6971. .my-n4 {
  6972. margin-top: -1.5rem !important;
  6973. }
  6974. .mr-n4,
  6975. .mx-n4 {
  6976. margin-right: -1.5rem !important;
  6977. }
  6978. .mb-n4,
  6979. .my-n4 {
  6980. margin-bottom: -1.5rem !important;
  6981. }
  6982. .ml-n4,
  6983. .mx-n4 {
  6984. margin-left: -1.5rem !important;
  6985. }
  6986. .m-n5 {
  6987. margin: -3rem !important;
  6988. }
  6989. .mt-n5,
  6990. .my-n5 {
  6991. margin-top: -3rem !important;
  6992. }
  6993. .mr-n5,
  6994. .mx-n5 {
  6995. margin-right: -3rem !important;
  6996. }
  6997. .mb-n5,
  6998. .my-n5 {
  6999. margin-bottom: -3rem !important;
  7000. }
  7001. .ml-n5,
  7002. .mx-n5 {
  7003. margin-left: -3rem !important;
  7004. }
  7005. .m-auto {
  7006. margin: auto !important;
  7007. }
  7008. .mt-auto,
  7009. .my-auto {
  7010. margin-top: auto !important;
  7011. }
  7012. .mr-auto,
  7013. .mx-auto {
  7014. margin-right: auto !important;
  7015. }
  7016. .mb-auto,
  7017. .my-auto {
  7018. margin-bottom: auto !important;
  7019. }
  7020. .ml-auto,
  7021. .mx-auto {
  7022. margin-left: auto !important;
  7023. }
  7024. @media (min-width: 576px) {
  7025. .m-sm-0 {
  7026. margin: 0 !important;
  7027. }
  7028. .mt-sm-0,
  7029. .my-sm-0 {
  7030. margin-top: 0 !important;
  7031. }
  7032. .mr-sm-0,
  7033. .mx-sm-0 {
  7034. margin-right: 0 !important;
  7035. }
  7036. .mb-sm-0,
  7037. .my-sm-0 {
  7038. margin-bottom: 0 !important;
  7039. }
  7040. .ml-sm-0,
  7041. .mx-sm-0 {
  7042. margin-left: 0 !important;
  7043. }
  7044. .m-sm-1 {
  7045. margin: 0.25rem !important;
  7046. }
  7047. .mt-sm-1,
  7048. .my-sm-1 {
  7049. margin-top: 0.25rem !important;
  7050. }
  7051. .mr-sm-1,
  7052. .mx-sm-1 {
  7053. margin-right: 0.25rem !important;
  7054. }
  7055. .mb-sm-1,
  7056. .my-sm-1 {
  7057. margin-bottom: 0.25rem !important;
  7058. }
  7059. .ml-sm-1,
  7060. .mx-sm-1 {
  7061. margin-left: 0.25rem !important;
  7062. }
  7063. .m-sm-2 {
  7064. margin: 0.5rem !important;
  7065. }
  7066. .mt-sm-2,
  7067. .my-sm-2 {
  7068. margin-top: 0.5rem !important;
  7069. }
  7070. .mr-sm-2,
  7071. .mx-sm-2 {
  7072. margin-right: 0.5rem !important;
  7073. }
  7074. .mb-sm-2,
  7075. .my-sm-2 {
  7076. margin-bottom: 0.5rem !important;
  7077. }
  7078. .ml-sm-2,
  7079. .mx-sm-2 {
  7080. margin-left: 0.5rem !important;
  7081. }
  7082. .m-sm-3 {
  7083. margin: 1rem !important;
  7084. }
  7085. .mt-sm-3,
  7086. .my-sm-3 {
  7087. margin-top: 1rem !important;
  7088. }
  7089. .mr-sm-3,
  7090. .mx-sm-3 {
  7091. margin-right: 1rem !important;
  7092. }
  7093. .mb-sm-3,
  7094. .my-sm-3 {
  7095. margin-bottom: 1rem !important;
  7096. }
  7097. .ml-sm-3,
  7098. .mx-sm-3 {
  7099. margin-left: 1rem !important;
  7100. }
  7101. .m-sm-4 {
  7102. margin: 1.5rem !important;
  7103. }
  7104. .mt-sm-4,
  7105. .my-sm-4 {
  7106. margin-top: 1.5rem !important;
  7107. }
  7108. .mr-sm-4,
  7109. .mx-sm-4 {
  7110. margin-right: 1.5rem !important;
  7111. }
  7112. .mb-sm-4,
  7113. .my-sm-4 {
  7114. margin-bottom: 1.5rem !important;
  7115. }
  7116. .ml-sm-4,
  7117. .mx-sm-4 {
  7118. margin-left: 1.5rem !important;
  7119. }
  7120. .m-sm-5 {
  7121. margin: 3rem !important;
  7122. }
  7123. .mt-sm-5,
  7124. .my-sm-5 {
  7125. margin-top: 3rem !important;
  7126. }
  7127. .mr-sm-5,
  7128. .mx-sm-5 {
  7129. margin-right: 3rem !important;
  7130. }
  7131. .mb-sm-5,
  7132. .my-sm-5 {
  7133. margin-bottom: 3rem !important;
  7134. }
  7135. .ml-sm-5,
  7136. .mx-sm-5 {
  7137. margin-left: 3rem !important;
  7138. }
  7139. .p-sm-0 {
  7140. padding: 0 !important;
  7141. }
  7142. .pt-sm-0,
  7143. .py-sm-0 {
  7144. padding-top: 0 !important;
  7145. }
  7146. .pr-sm-0,
  7147. .px-sm-0 {
  7148. padding-right: 0 !important;
  7149. }
  7150. .pb-sm-0,
  7151. .py-sm-0 {
  7152. padding-bottom: 0 !important;
  7153. }
  7154. .pl-sm-0,
  7155. .px-sm-0 {
  7156. padding-left: 0 !important;
  7157. }
  7158. .p-sm-1 {
  7159. padding: 0.25rem !important;
  7160. }
  7161. .pt-sm-1,
  7162. .py-sm-1 {
  7163. padding-top: 0.25rem !important;
  7164. }
  7165. .pr-sm-1,
  7166. .px-sm-1 {
  7167. padding-right: 0.25rem !important;
  7168. }
  7169. .pb-sm-1,
  7170. .py-sm-1 {
  7171. padding-bottom: 0.25rem !important;
  7172. }
  7173. .pl-sm-1,
  7174. .px-sm-1 {
  7175. padding-left: 0.25rem !important;
  7176. }
  7177. .p-sm-2 {
  7178. padding: 0.5rem !important;
  7179. }
  7180. .pt-sm-2,
  7181. .py-sm-2 {
  7182. padding-top: 0.5rem !important;
  7183. }
  7184. .pr-sm-2,
  7185. .px-sm-2 {
  7186. padding-right: 0.5rem !important;
  7187. }
  7188. .pb-sm-2,
  7189. .py-sm-2 {
  7190. padding-bottom: 0.5rem !important;
  7191. }
  7192. .pl-sm-2,
  7193. .px-sm-2 {
  7194. padding-left: 0.5rem !important;
  7195. }
  7196. .p-sm-3 {
  7197. padding: 1rem !important;
  7198. }
  7199. .pt-sm-3,
  7200. .py-sm-3 {
  7201. padding-top: 1rem !important;
  7202. }
  7203. .pr-sm-3,
  7204. .px-sm-3 {
  7205. padding-right: 1rem !important;
  7206. }
  7207. .pb-sm-3,
  7208. .py-sm-3 {
  7209. padding-bottom: 1rem !important;
  7210. }
  7211. .pl-sm-3,
  7212. .px-sm-3 {
  7213. padding-left: 1rem !important;
  7214. }
  7215. .p-sm-4 {
  7216. padding: 1.5rem !important;
  7217. }
  7218. .pt-sm-4,
  7219. .py-sm-4 {
  7220. padding-top: 1.5rem !important;
  7221. }
  7222. .pr-sm-4,
  7223. .px-sm-4 {
  7224. padding-right: 1.5rem !important;
  7225. }
  7226. .pb-sm-4,
  7227. .py-sm-4 {
  7228. padding-bottom: 1.5rem !important;
  7229. }
  7230. .pl-sm-4,
  7231. .px-sm-4 {
  7232. padding-left: 1.5rem !important;
  7233. }
  7234. .p-sm-5 {
  7235. padding: 3rem !important;
  7236. }
  7237. .pt-sm-5,
  7238. .py-sm-5 {
  7239. padding-top: 3rem !important;
  7240. }
  7241. .pr-sm-5,
  7242. .px-sm-5 {
  7243. padding-right: 3rem !important;
  7244. }
  7245. .pb-sm-5,
  7246. .py-sm-5 {
  7247. padding-bottom: 3rem !important;
  7248. }
  7249. .pl-sm-5,
  7250. .px-sm-5 {
  7251. padding-left: 3rem !important;
  7252. }
  7253. .m-sm-n1 {
  7254. margin: -0.25rem !important;
  7255. }
  7256. .mt-sm-n1,
  7257. .my-sm-n1 {
  7258. margin-top: -0.25rem !important;
  7259. }
  7260. .mr-sm-n1,
  7261. .mx-sm-n1 {
  7262. margin-right: -0.25rem !important;
  7263. }
  7264. .mb-sm-n1,
  7265. .my-sm-n1 {
  7266. margin-bottom: -0.25rem !important;
  7267. }
  7268. .ml-sm-n1,
  7269. .mx-sm-n1 {
  7270. margin-left: -0.25rem !important;
  7271. }
  7272. .m-sm-n2 {
  7273. margin: -0.5rem !important;
  7274. }
  7275. .mt-sm-n2,
  7276. .my-sm-n2 {
  7277. margin-top: -0.5rem !important;
  7278. }
  7279. .mr-sm-n2,
  7280. .mx-sm-n2 {
  7281. margin-right: -0.5rem !important;
  7282. }
  7283. .mb-sm-n2,
  7284. .my-sm-n2 {
  7285. margin-bottom: -0.5rem !important;
  7286. }
  7287. .ml-sm-n2,
  7288. .mx-sm-n2 {
  7289. margin-left: -0.5rem !important;
  7290. }
  7291. .m-sm-n3 {
  7292. margin: -1rem !important;
  7293. }
  7294. .mt-sm-n3,
  7295. .my-sm-n3 {
  7296. margin-top: -1rem !important;
  7297. }
  7298. .mr-sm-n3,
  7299. .mx-sm-n3 {
  7300. margin-right: -1rem !important;
  7301. }
  7302. .mb-sm-n3,
  7303. .my-sm-n3 {
  7304. margin-bottom: -1rem !important;
  7305. }
  7306. .ml-sm-n3,
  7307. .mx-sm-n3 {
  7308. margin-left: -1rem !important;
  7309. }
  7310. .m-sm-n4 {
  7311. margin: -1.5rem !important;
  7312. }
  7313. .mt-sm-n4,
  7314. .my-sm-n4 {
  7315. margin-top: -1.5rem !important;
  7316. }
  7317. .mr-sm-n4,
  7318. .mx-sm-n4 {
  7319. margin-right: -1.5rem !important;
  7320. }
  7321. .mb-sm-n4,
  7322. .my-sm-n4 {
  7323. margin-bottom: -1.5rem !important;
  7324. }
  7325. .ml-sm-n4,
  7326. .mx-sm-n4 {
  7327. margin-left: -1.5rem !important;
  7328. }
  7329. .m-sm-n5 {
  7330. margin: -3rem !important;
  7331. }
  7332. .mt-sm-n5,
  7333. .my-sm-n5 {
  7334. margin-top: -3rem !important;
  7335. }
  7336. .mr-sm-n5,
  7337. .mx-sm-n5 {
  7338. margin-right: -3rem !important;
  7339. }
  7340. .mb-sm-n5,
  7341. .my-sm-n5 {
  7342. margin-bottom: -3rem !important;
  7343. }
  7344. .ml-sm-n5,
  7345. .mx-sm-n5 {
  7346. margin-left: -3rem !important;
  7347. }
  7348. .m-sm-auto {
  7349. margin: auto !important;
  7350. }
  7351. .mt-sm-auto,
  7352. .my-sm-auto {
  7353. margin-top: auto !important;
  7354. }
  7355. .mr-sm-auto,
  7356. .mx-sm-auto {
  7357. margin-right: auto !important;
  7358. }
  7359. .mb-sm-auto,
  7360. .my-sm-auto {
  7361. margin-bottom: auto !important;
  7362. }
  7363. .ml-sm-auto,
  7364. .mx-sm-auto {
  7365. margin-left: auto !important;
  7366. }
  7367. }
  7368. @media (min-width: 768px) {
  7369. .m-md-0 {
  7370. margin: 0 !important;
  7371. }
  7372. .mt-md-0,
  7373. .my-md-0 {
  7374. margin-top: 0 !important;
  7375. }
  7376. .mr-md-0,
  7377. .mx-md-0 {
  7378. margin-right: 0 !important;
  7379. }
  7380. .mb-md-0,
  7381. .my-md-0 {
  7382. margin-bottom: 0 !important;
  7383. }
  7384. .ml-md-0,
  7385. .mx-md-0 {
  7386. margin-left: 0 !important;
  7387. }
  7388. .m-md-1 {
  7389. margin: 0.25rem !important;
  7390. }
  7391. .mt-md-1,
  7392. .my-md-1 {
  7393. margin-top: 0.25rem !important;
  7394. }
  7395. .mr-md-1,
  7396. .mx-md-1 {
  7397. margin-right: 0.25rem !important;
  7398. }
  7399. .mb-md-1,
  7400. .my-md-1 {
  7401. margin-bottom: 0.25rem !important;
  7402. }
  7403. .ml-md-1,
  7404. .mx-md-1 {
  7405. margin-left: 0.25rem !important;
  7406. }
  7407. .m-md-2 {
  7408. margin: 0.5rem !important;
  7409. }
  7410. .mt-md-2,
  7411. .my-md-2 {
  7412. margin-top: 0.5rem !important;
  7413. }
  7414. .mr-md-2,
  7415. .mx-md-2 {
  7416. margin-right: 0.5rem !important;
  7417. }
  7418. .mb-md-2,
  7419. .my-md-2 {
  7420. margin-bottom: 0.5rem !important;
  7421. }
  7422. .ml-md-2,
  7423. .mx-md-2 {
  7424. margin-left: 0.5rem !important;
  7425. }
  7426. .m-md-3 {
  7427. margin: 1rem !important;
  7428. }
  7429. .mt-md-3,
  7430. .my-md-3 {
  7431. margin-top: 1rem !important;
  7432. }
  7433. .mr-md-3,
  7434. .mx-md-3 {
  7435. margin-right: 1rem !important;
  7436. }
  7437. .mb-md-3,
  7438. .my-md-3 {
  7439. margin-bottom: 1rem !important;
  7440. }
  7441. .ml-md-3,
  7442. .mx-md-3 {
  7443. margin-left: 1rem !important;
  7444. }
  7445. .m-md-4 {
  7446. margin: 1.5rem !important;
  7447. }
  7448. .mt-md-4,
  7449. .my-md-4 {
  7450. margin-top: 1.5rem !important;
  7451. }
  7452. .mr-md-4,
  7453. .mx-md-4 {
  7454. margin-right: 1.5rem !important;
  7455. }
  7456. .mb-md-4,
  7457. .my-md-4 {
  7458. margin-bottom: 1.5rem !important;
  7459. }
  7460. .ml-md-4,
  7461. .mx-md-4 {
  7462. margin-left: 1.5rem !important;
  7463. }
  7464. .m-md-5 {
  7465. margin: 3rem !important;
  7466. }
  7467. .mt-md-5,
  7468. .my-md-5 {
  7469. margin-top: 3rem !important;
  7470. }
  7471. .mr-md-5,
  7472. .mx-md-5 {
  7473. margin-right: 3rem !important;
  7474. }
  7475. .mb-md-5,
  7476. .my-md-5 {
  7477. margin-bottom: 3rem !important;
  7478. }
  7479. .ml-md-5,
  7480. .mx-md-5 {
  7481. margin-left: 3rem !important;
  7482. }
  7483. .p-md-0 {
  7484. padding: 0 !important;
  7485. }
  7486. .pt-md-0,
  7487. .py-md-0 {
  7488. padding-top: 0 !important;
  7489. }
  7490. .pr-md-0,
  7491. .px-md-0 {
  7492. padding-right: 0 !important;
  7493. }
  7494. .pb-md-0,
  7495. .py-md-0 {
  7496. padding-bottom: 0 !important;
  7497. }
  7498. .pl-md-0,
  7499. .px-md-0 {
  7500. padding-left: 0 !important;
  7501. }
  7502. .p-md-1 {
  7503. padding: 0.25rem !important;
  7504. }
  7505. .pt-md-1,
  7506. .py-md-1 {
  7507. padding-top: 0.25rem !important;
  7508. }
  7509. .pr-md-1,
  7510. .px-md-1 {
  7511. padding-right: 0.25rem !important;
  7512. }
  7513. .pb-md-1,
  7514. .py-md-1 {
  7515. padding-bottom: 0.25rem !important;
  7516. }
  7517. .pl-md-1,
  7518. .px-md-1 {
  7519. padding-left: 0.25rem !important;
  7520. }
  7521. .p-md-2 {
  7522. padding: 0.5rem !important;
  7523. }
  7524. .pt-md-2,
  7525. .py-md-2 {
  7526. padding-top: 0.5rem !important;
  7527. }
  7528. .pr-md-2,
  7529. .px-md-2 {
  7530. padding-right: 0.5rem !important;
  7531. }
  7532. .pb-md-2,
  7533. .py-md-2 {
  7534. padding-bottom: 0.5rem !important;
  7535. }
  7536. .pl-md-2,
  7537. .px-md-2 {
  7538. padding-left: 0.5rem !important;
  7539. }
  7540. .p-md-3 {
  7541. padding: 1rem !important;
  7542. }
  7543. .pt-md-3,
  7544. .py-md-3 {
  7545. padding-top: 1rem !important;
  7546. }
  7547. .pr-md-3,
  7548. .px-md-3 {
  7549. padding-right: 1rem !important;
  7550. }
  7551. .pb-md-3,
  7552. .py-md-3 {
  7553. padding-bottom: 1rem !important;
  7554. }
  7555. .pl-md-3,
  7556. .px-md-3 {
  7557. padding-left: 1rem !important;
  7558. }
  7559. .p-md-4 {
  7560. padding: 1.5rem !important;
  7561. }
  7562. .pt-md-4,
  7563. .py-md-4 {
  7564. padding-top: 1.5rem !important;
  7565. }
  7566. .pr-md-4,
  7567. .px-md-4 {
  7568. padding-right: 1.5rem !important;
  7569. }
  7570. .pb-md-4,
  7571. .py-md-4 {
  7572. padding-bottom: 1.5rem !important;
  7573. }
  7574. .pl-md-4,
  7575. .px-md-4 {
  7576. padding-left: 1.5rem !important;
  7577. }
  7578. .p-md-5 {
  7579. padding: 3rem !important;
  7580. }
  7581. .pt-md-5,
  7582. .py-md-5 {
  7583. padding-top: 3rem !important;
  7584. }
  7585. .pr-md-5,
  7586. .px-md-5 {
  7587. padding-right: 3rem !important;
  7588. }
  7589. .pb-md-5,
  7590. .py-md-5 {
  7591. padding-bottom: 3rem !important;
  7592. }
  7593. .pl-md-5,
  7594. .px-md-5 {
  7595. padding-left: 3rem !important;
  7596. }
  7597. .m-md-n1 {
  7598. margin: -0.25rem !important;
  7599. }
  7600. .mt-md-n1,
  7601. .my-md-n1 {
  7602. margin-top: -0.25rem !important;
  7603. }
  7604. .mr-md-n1,
  7605. .mx-md-n1 {
  7606. margin-right: -0.25rem !important;
  7607. }
  7608. .mb-md-n1,
  7609. .my-md-n1 {
  7610. margin-bottom: -0.25rem !important;
  7611. }
  7612. .ml-md-n1,
  7613. .mx-md-n1 {
  7614. margin-left: -0.25rem !important;
  7615. }
  7616. .m-md-n2 {
  7617. margin: -0.5rem !important;
  7618. }
  7619. .mt-md-n2,
  7620. .my-md-n2 {
  7621. margin-top: -0.5rem !important;
  7622. }
  7623. .mr-md-n2,
  7624. .mx-md-n2 {
  7625. margin-right: -0.5rem !important;
  7626. }
  7627. .mb-md-n2,
  7628. .my-md-n2 {
  7629. margin-bottom: -0.5rem !important;
  7630. }
  7631. .ml-md-n2,
  7632. .mx-md-n2 {
  7633. margin-left: -0.5rem !important;
  7634. }
  7635. .m-md-n3 {
  7636. margin: -1rem !important;
  7637. }
  7638. .mt-md-n3,
  7639. .my-md-n3 {
  7640. margin-top: -1rem !important;
  7641. }
  7642. .mr-md-n3,
  7643. .mx-md-n3 {
  7644. margin-right: -1rem !important;
  7645. }
  7646. .mb-md-n3,
  7647. .my-md-n3 {
  7648. margin-bottom: -1rem !important;
  7649. }
  7650. .ml-md-n3,
  7651. .mx-md-n3 {
  7652. margin-left: -1rem !important;
  7653. }
  7654. .m-md-n4 {
  7655. margin: -1.5rem !important;
  7656. }
  7657. .mt-md-n4,
  7658. .my-md-n4 {
  7659. margin-top: -1.5rem !important;
  7660. }
  7661. .mr-md-n4,
  7662. .mx-md-n4 {
  7663. margin-right: -1.5rem !important;
  7664. }
  7665. .mb-md-n4,
  7666. .my-md-n4 {
  7667. margin-bottom: -1.5rem !important;
  7668. }
  7669. .ml-md-n4,
  7670. .mx-md-n4 {
  7671. margin-left: -1.5rem !important;
  7672. }
  7673. .m-md-n5 {
  7674. margin: -3rem !important;
  7675. }
  7676. .mt-md-n5,
  7677. .my-md-n5 {
  7678. margin-top: -3rem !important;
  7679. }
  7680. .mr-md-n5,
  7681. .mx-md-n5 {
  7682. margin-right: -3rem !important;
  7683. }
  7684. .mb-md-n5,
  7685. .my-md-n5 {
  7686. margin-bottom: -3rem !important;
  7687. }
  7688. .ml-md-n5,
  7689. .mx-md-n5 {
  7690. margin-left: -3rem !important;
  7691. }
  7692. .m-md-auto {
  7693. margin: auto !important;
  7694. }
  7695. .mt-md-auto,
  7696. .my-md-auto {
  7697. margin-top: auto !important;
  7698. }
  7699. .mr-md-auto,
  7700. .mx-md-auto {
  7701. margin-right: auto !important;
  7702. }
  7703. .mb-md-auto,
  7704. .my-md-auto {
  7705. margin-bottom: auto !important;
  7706. }
  7707. .ml-md-auto,
  7708. .mx-md-auto {
  7709. margin-left: auto !important;
  7710. }
  7711. }
  7712. @media (min-width: 992px) {
  7713. .m-lg-0 {
  7714. margin: 0 !important;
  7715. }
  7716. .mt-lg-0,
  7717. .my-lg-0 {
  7718. margin-top: 0 !important;
  7719. }
  7720. .mr-lg-0,
  7721. .mx-lg-0 {
  7722. margin-right: 0 !important;
  7723. }
  7724. .mb-lg-0,
  7725. .my-lg-0 {
  7726. margin-bottom: 0 !important;
  7727. }
  7728. .ml-lg-0,
  7729. .mx-lg-0 {
  7730. margin-left: 0 !important;
  7731. }
  7732. .m-lg-1 {
  7733. margin: 0.25rem !important;
  7734. }
  7735. .mt-lg-1,
  7736. .my-lg-1 {
  7737. margin-top: 0.25rem !important;
  7738. }
  7739. .mr-lg-1,
  7740. .mx-lg-1 {
  7741. margin-right: 0.25rem !important;
  7742. }
  7743. .mb-lg-1,
  7744. .my-lg-1 {
  7745. margin-bottom: 0.25rem !important;
  7746. }
  7747. .ml-lg-1,
  7748. .mx-lg-1 {
  7749. margin-left: 0.25rem !important;
  7750. }
  7751. .m-lg-2 {
  7752. margin: 0.5rem !important;
  7753. }
  7754. .mt-lg-2,
  7755. .my-lg-2 {
  7756. margin-top: 0.5rem !important;
  7757. }
  7758. .mr-lg-2,
  7759. .mx-lg-2 {
  7760. margin-right: 0.5rem !important;
  7761. }
  7762. .mb-lg-2,
  7763. .my-lg-2 {
  7764. margin-bottom: 0.5rem !important;
  7765. }
  7766. .ml-lg-2,
  7767. .mx-lg-2 {
  7768. margin-left: 0.5rem !important;
  7769. }
  7770. .m-lg-3 {
  7771. margin: 1rem !important;
  7772. }
  7773. .mt-lg-3,
  7774. .my-lg-3 {
  7775. margin-top: 1rem !important;
  7776. }
  7777. .mr-lg-3,
  7778. .mx-lg-3 {
  7779. margin-right: 1rem !important;
  7780. }
  7781. .mb-lg-3,
  7782. .my-lg-3 {
  7783. margin-bottom: 1rem !important;
  7784. }
  7785. .ml-lg-3,
  7786. .mx-lg-3 {
  7787. margin-left: 1rem !important;
  7788. }
  7789. .m-lg-4 {
  7790. margin: 1.5rem !important;
  7791. }
  7792. .mt-lg-4,
  7793. .my-lg-4 {
  7794. margin-top: 1.5rem !important;
  7795. }
  7796. .mr-lg-4,
  7797. .mx-lg-4 {
  7798. margin-right: 1.5rem !important;
  7799. }
  7800. .mb-lg-4,
  7801. .my-lg-4 {
  7802. margin-bottom: 1.5rem !important;
  7803. }
  7804. .ml-lg-4,
  7805. .mx-lg-4 {
  7806. margin-left: 1.5rem !important;
  7807. }
  7808. .m-lg-5 {
  7809. margin: 3rem !important;
  7810. }
  7811. .mt-lg-5,
  7812. .my-lg-5 {
  7813. margin-top: 3rem !important;
  7814. }
  7815. .mr-lg-5,
  7816. .mx-lg-5 {
  7817. margin-right: 3rem !important;
  7818. }
  7819. .mb-lg-5,
  7820. .my-lg-5 {
  7821. margin-bottom: 3rem !important;
  7822. }
  7823. .ml-lg-5,
  7824. .mx-lg-5 {
  7825. margin-left: 3rem !important;
  7826. }
  7827. .p-lg-0 {
  7828. padding: 0 !important;
  7829. }
  7830. .pt-lg-0,
  7831. .py-lg-0 {
  7832. padding-top: 0 !important;
  7833. }
  7834. .pr-lg-0,
  7835. .px-lg-0 {
  7836. padding-right: 0 !important;
  7837. }
  7838. .pb-lg-0,
  7839. .py-lg-0 {
  7840. padding-bottom: 0 !important;
  7841. }
  7842. .pl-lg-0,
  7843. .px-lg-0 {
  7844. padding-left: 0 !important;
  7845. }
  7846. .p-lg-1 {
  7847. padding: 0.25rem !important;
  7848. }
  7849. .pt-lg-1,
  7850. .py-lg-1 {
  7851. padding-top: 0.25rem !important;
  7852. }
  7853. .pr-lg-1,
  7854. .px-lg-1 {
  7855. padding-right: 0.25rem !important;
  7856. }
  7857. .pb-lg-1,
  7858. .py-lg-1 {
  7859. padding-bottom: 0.25rem !important;
  7860. }
  7861. .pl-lg-1,
  7862. .px-lg-1 {
  7863. padding-left: 0.25rem !important;
  7864. }
  7865. .p-lg-2 {
  7866. padding: 0.5rem !important;
  7867. }
  7868. .pt-lg-2,
  7869. .py-lg-2 {
  7870. padding-top: 0.5rem !important;
  7871. }
  7872. .pr-lg-2,
  7873. .px-lg-2 {
  7874. padding-right: 0.5rem !important;
  7875. }
  7876. .pb-lg-2,
  7877. .py-lg-2 {
  7878. padding-bottom: 0.5rem !important;
  7879. }
  7880. .pl-lg-2,
  7881. .px-lg-2 {
  7882. padding-left: 0.5rem !important;
  7883. }
  7884. .p-lg-3 {
  7885. padding: 1rem !important;
  7886. }
  7887. .pt-lg-3,
  7888. .py-lg-3 {
  7889. padding-top: 1rem !important;
  7890. }
  7891. .pr-lg-3,
  7892. .px-lg-3 {
  7893. padding-right: 1rem !important;
  7894. }
  7895. .pb-lg-3,
  7896. .py-lg-3 {
  7897. padding-bottom: 1rem !important;
  7898. }
  7899. .pl-lg-3,
  7900. .px-lg-3 {
  7901. padding-left: 1rem !important;
  7902. }
  7903. .p-lg-4 {
  7904. padding: 1.5rem !important;
  7905. }
  7906. .pt-lg-4,
  7907. .py-lg-4 {
  7908. padding-top: 1.5rem !important;
  7909. }
  7910. .pr-lg-4,
  7911. .px-lg-4 {
  7912. padding-right: 1.5rem !important;
  7913. }
  7914. .pb-lg-4,
  7915. .py-lg-4 {
  7916. padding-bottom: 1.5rem !important;
  7917. }
  7918. .pl-lg-4,
  7919. .px-lg-4 {
  7920. padding-left: 1.5rem !important;
  7921. }
  7922. .p-lg-5 {
  7923. padding: 3rem !important;
  7924. }
  7925. .pt-lg-5,
  7926. .py-lg-5 {
  7927. padding-top: 3rem !important;
  7928. }
  7929. .pr-lg-5,
  7930. .px-lg-5 {
  7931. padding-right: 3rem !important;
  7932. }
  7933. .pb-lg-5,
  7934. .py-lg-5 {
  7935. padding-bottom: 3rem !important;
  7936. }
  7937. .pl-lg-5,
  7938. .px-lg-5 {
  7939. padding-left: 3rem !important;
  7940. }
  7941. .m-lg-n1 {
  7942. margin: -0.25rem !important;
  7943. }
  7944. .mt-lg-n1,
  7945. .my-lg-n1 {
  7946. margin-top: -0.25rem !important;
  7947. }
  7948. .mr-lg-n1,
  7949. .mx-lg-n1 {
  7950. margin-right: -0.25rem !important;
  7951. }
  7952. .mb-lg-n1,
  7953. .my-lg-n1 {
  7954. margin-bottom: -0.25rem !important;
  7955. }
  7956. .ml-lg-n1,
  7957. .mx-lg-n1 {
  7958. margin-left: -0.25rem !important;
  7959. }
  7960. .m-lg-n2 {
  7961. margin: -0.5rem !important;
  7962. }
  7963. .mt-lg-n2,
  7964. .my-lg-n2 {
  7965. margin-top: -0.5rem !important;
  7966. }
  7967. .mr-lg-n2,
  7968. .mx-lg-n2 {
  7969. margin-right: -0.5rem !important;
  7970. }
  7971. .mb-lg-n2,
  7972. .my-lg-n2 {
  7973. margin-bottom: -0.5rem !important;
  7974. }
  7975. .ml-lg-n2,
  7976. .mx-lg-n2 {
  7977. margin-left: -0.5rem !important;
  7978. }
  7979. .m-lg-n3 {
  7980. margin: -1rem !important;
  7981. }
  7982. .mt-lg-n3,
  7983. .my-lg-n3 {
  7984. margin-top: -1rem !important;
  7985. }
  7986. .mr-lg-n3,
  7987. .mx-lg-n3 {
  7988. margin-right: -1rem !important;
  7989. }
  7990. .mb-lg-n3,
  7991. .my-lg-n3 {
  7992. margin-bottom: -1rem !important;
  7993. }
  7994. .ml-lg-n3,
  7995. .mx-lg-n3 {
  7996. margin-left: -1rem !important;
  7997. }
  7998. .m-lg-n4 {
  7999. margin: -1.5rem !important;
  8000. }
  8001. .mt-lg-n4,
  8002. .my-lg-n4 {
  8003. margin-top: -1.5rem !important;
  8004. }
  8005. .mr-lg-n4,
  8006. .mx-lg-n4 {
  8007. margin-right: -1.5rem !important;
  8008. }
  8009. .mb-lg-n4,
  8010. .my-lg-n4 {
  8011. margin-bottom: -1.5rem !important;
  8012. }
  8013. .ml-lg-n4,
  8014. .mx-lg-n4 {
  8015. margin-left: -1.5rem !important;
  8016. }
  8017. .m-lg-n5 {
  8018. margin: -3rem !important;
  8019. }
  8020. .mt-lg-n5,
  8021. .my-lg-n5 {
  8022. margin-top: -3rem !important;
  8023. }
  8024. .mr-lg-n5,
  8025. .mx-lg-n5 {
  8026. margin-right: -3rem !important;
  8027. }
  8028. .mb-lg-n5,
  8029. .my-lg-n5 {
  8030. margin-bottom: -3rem !important;
  8031. }
  8032. .ml-lg-n5,
  8033. .mx-lg-n5 {
  8034. margin-left: -3rem !important;
  8035. }
  8036. .m-lg-auto {
  8037. margin: auto !important;
  8038. }
  8039. .mt-lg-auto,
  8040. .my-lg-auto {
  8041. margin-top: auto !important;
  8042. }
  8043. .mr-lg-auto,
  8044. .mx-lg-auto {
  8045. margin-right: auto !important;
  8046. }
  8047. .mb-lg-auto,
  8048. .my-lg-auto {
  8049. margin-bottom: auto !important;
  8050. }
  8051. .ml-lg-auto,
  8052. .mx-lg-auto {
  8053. margin-left: auto !important;
  8054. }
  8055. }
  8056. @media (min-width: 1200px) {
  8057. .m-xl-0 {
  8058. margin: 0 !important;
  8059. }
  8060. .mt-xl-0,
  8061. .my-xl-0 {
  8062. margin-top: 0 !important;
  8063. }
  8064. .mr-xl-0,
  8065. .mx-xl-0 {
  8066. margin-right: 0 !important;
  8067. }
  8068. .mb-xl-0,
  8069. .my-xl-0 {
  8070. margin-bottom: 0 !important;
  8071. }
  8072. .ml-xl-0,
  8073. .mx-xl-0 {
  8074. margin-left: 0 !important;
  8075. }
  8076. .m-xl-1 {
  8077. margin: 0.25rem !important;
  8078. }
  8079. .mt-xl-1,
  8080. .my-xl-1 {
  8081. margin-top: 0.25rem !important;
  8082. }
  8083. .mr-xl-1,
  8084. .mx-xl-1 {
  8085. margin-right: 0.25rem !important;
  8086. }
  8087. .mb-xl-1,
  8088. .my-xl-1 {
  8089. margin-bottom: 0.25rem !important;
  8090. }
  8091. .ml-xl-1,
  8092. .mx-xl-1 {
  8093. margin-left: 0.25rem !important;
  8094. }
  8095. .m-xl-2 {
  8096. margin: 0.5rem !important;
  8097. }
  8098. .mt-xl-2,
  8099. .my-xl-2 {
  8100. margin-top: 0.5rem !important;
  8101. }
  8102. .mr-xl-2,
  8103. .mx-xl-2 {
  8104. margin-right: 0.5rem !important;
  8105. }
  8106. .mb-xl-2,
  8107. .my-xl-2 {
  8108. margin-bottom: 0.5rem !important;
  8109. }
  8110. .ml-xl-2,
  8111. .mx-xl-2 {
  8112. margin-left: 0.5rem !important;
  8113. }
  8114. .m-xl-3 {
  8115. margin: 1rem !important;
  8116. }
  8117. .mt-xl-3,
  8118. .my-xl-3 {
  8119. margin-top: 1rem !important;
  8120. }
  8121. .mr-xl-3,
  8122. .mx-xl-3 {
  8123. margin-right: 1rem !important;
  8124. }
  8125. .mb-xl-3,
  8126. .my-xl-3 {
  8127. margin-bottom: 1rem !important;
  8128. }
  8129. .ml-xl-3,
  8130. .mx-xl-3 {
  8131. margin-left: 1rem !important;
  8132. }
  8133. .m-xl-4 {
  8134. margin: 1.5rem !important;
  8135. }
  8136. .mt-xl-4,
  8137. .my-xl-4 {
  8138. margin-top: 1.5rem !important;
  8139. }
  8140. .mr-xl-4,
  8141. .mx-xl-4 {
  8142. margin-right: 1.5rem !important;
  8143. }
  8144. .mb-xl-4,
  8145. .my-xl-4 {
  8146. margin-bottom: 1.5rem !important;
  8147. }
  8148. .ml-xl-4,
  8149. .mx-xl-4 {
  8150. margin-left: 1.5rem !important;
  8151. }
  8152. .m-xl-5 {
  8153. margin: 3rem !important;
  8154. }
  8155. .mt-xl-5,
  8156. .my-xl-5 {
  8157. margin-top: 3rem !important;
  8158. }
  8159. .mr-xl-5,
  8160. .mx-xl-5 {
  8161. margin-right: 3rem !important;
  8162. }
  8163. .mb-xl-5,
  8164. .my-xl-5 {
  8165. margin-bottom: 3rem !important;
  8166. }
  8167. .ml-xl-5,
  8168. .mx-xl-5 {
  8169. margin-left: 3rem !important;
  8170. }
  8171. .p-xl-0 {
  8172. padding: 0 !important;
  8173. }
  8174. .pt-xl-0,
  8175. .py-xl-0 {
  8176. padding-top: 0 !important;
  8177. }
  8178. .pr-xl-0,
  8179. .px-xl-0 {
  8180. padding-right: 0 !important;
  8181. }
  8182. .pb-xl-0,
  8183. .py-xl-0 {
  8184. padding-bottom: 0 !important;
  8185. }
  8186. .pl-xl-0,
  8187. .px-xl-0 {
  8188. padding-left: 0 !important;
  8189. }
  8190. .p-xl-1 {
  8191. padding: 0.25rem !important;
  8192. }
  8193. .pt-xl-1,
  8194. .py-xl-1 {
  8195. padding-top: 0.25rem !important;
  8196. }
  8197. .pr-xl-1,
  8198. .px-xl-1 {
  8199. padding-right: 0.25rem !important;
  8200. }
  8201. .pb-xl-1,
  8202. .py-xl-1 {
  8203. padding-bottom: 0.25rem !important;
  8204. }
  8205. .pl-xl-1,
  8206. .px-xl-1 {
  8207. padding-left: 0.25rem !important;
  8208. }
  8209. .p-xl-2 {
  8210. padding: 0.5rem !important;
  8211. }
  8212. .pt-xl-2,
  8213. .py-xl-2 {
  8214. padding-top: 0.5rem !important;
  8215. }
  8216. .pr-xl-2,
  8217. .px-xl-2 {
  8218. padding-right: 0.5rem !important;
  8219. }
  8220. .pb-xl-2,
  8221. .py-xl-2 {
  8222. padding-bottom: 0.5rem !important;
  8223. }
  8224. .pl-xl-2,
  8225. .px-xl-2 {
  8226. padding-left: 0.5rem !important;
  8227. }
  8228. .p-xl-3 {
  8229. padding: 1rem !important;
  8230. }
  8231. .pt-xl-3,
  8232. .py-xl-3 {
  8233. padding-top: 1rem !important;
  8234. }
  8235. .pr-xl-3,
  8236. .px-xl-3 {
  8237. padding-right: 1rem !important;
  8238. }
  8239. .pb-xl-3,
  8240. .py-xl-3 {
  8241. padding-bottom: 1rem !important;
  8242. }
  8243. .pl-xl-3,
  8244. .px-xl-3 {
  8245. padding-left: 1rem !important;
  8246. }
  8247. .p-xl-4 {
  8248. padding: 1.5rem !important;
  8249. }
  8250. .pt-xl-4,
  8251. .py-xl-4 {
  8252. padding-top: 1.5rem !important;
  8253. }
  8254. .pr-xl-4,
  8255. .px-xl-4 {
  8256. padding-right: 1.5rem !important;
  8257. }
  8258. .pb-xl-4,
  8259. .py-xl-4 {
  8260. padding-bottom: 1.5rem !important;
  8261. }
  8262. .pl-xl-4,
  8263. .px-xl-4 {
  8264. padding-left: 1.5rem !important;
  8265. }
  8266. .p-xl-5 {
  8267. padding: 3rem !important;
  8268. }
  8269. .pt-xl-5,
  8270. .py-xl-5 {
  8271. padding-top: 3rem !important;
  8272. }
  8273. .pr-xl-5,
  8274. .px-xl-5 {
  8275. padding-right: 3rem !important;
  8276. }
  8277. .pb-xl-5,
  8278. .py-xl-5 {
  8279. padding-bottom: 3rem !important;
  8280. }
  8281. .pl-xl-5,
  8282. .px-xl-5 {
  8283. padding-left: 3rem !important;
  8284. }
  8285. .m-xl-n1 {
  8286. margin: -0.25rem !important;
  8287. }
  8288. .mt-xl-n1,
  8289. .my-xl-n1 {
  8290. margin-top: -0.25rem !important;
  8291. }
  8292. .mr-xl-n1,
  8293. .mx-xl-n1 {
  8294. margin-right: -0.25rem !important;
  8295. }
  8296. .mb-xl-n1,
  8297. .my-xl-n1 {
  8298. margin-bottom: -0.25rem !important;
  8299. }
  8300. .ml-xl-n1,
  8301. .mx-xl-n1 {
  8302. margin-left: -0.25rem !important;
  8303. }
  8304. .m-xl-n2 {
  8305. margin: -0.5rem !important;
  8306. }
  8307. .mt-xl-n2,
  8308. .my-xl-n2 {
  8309. margin-top: -0.5rem !important;
  8310. }
  8311. .mr-xl-n2,
  8312. .mx-xl-n2 {
  8313. margin-right: -0.5rem !important;
  8314. }
  8315. .mb-xl-n2,
  8316. .my-xl-n2 {
  8317. margin-bottom: -0.5rem !important;
  8318. }
  8319. .ml-xl-n2,
  8320. .mx-xl-n2 {
  8321. margin-left: -0.5rem !important;
  8322. }
  8323. .m-xl-n3 {
  8324. margin: -1rem !important;
  8325. }
  8326. .mt-xl-n3,
  8327. .my-xl-n3 {
  8328. margin-top: -1rem !important;
  8329. }
  8330. .mr-xl-n3,
  8331. .mx-xl-n3 {
  8332. margin-right: -1rem !important;
  8333. }
  8334. .mb-xl-n3,
  8335. .my-xl-n3 {
  8336. margin-bottom: -1rem !important;
  8337. }
  8338. .ml-xl-n3,
  8339. .mx-xl-n3 {
  8340. margin-left: -1rem !important;
  8341. }
  8342. .m-xl-n4 {
  8343. margin: -1.5rem !important;
  8344. }
  8345. .mt-xl-n4,
  8346. .my-xl-n4 {
  8347. margin-top: -1.5rem !important;
  8348. }
  8349. .mr-xl-n4,
  8350. .mx-xl-n4 {
  8351. margin-right: -1.5rem !important;
  8352. }
  8353. .mb-xl-n4,
  8354. .my-xl-n4 {
  8355. margin-bottom: -1.5rem !important;
  8356. }
  8357. .ml-xl-n4,
  8358. .mx-xl-n4 {
  8359. margin-left: -1.5rem !important;
  8360. }
  8361. .m-xl-n5 {
  8362. margin: -3rem !important;
  8363. }
  8364. .mt-xl-n5,
  8365. .my-xl-n5 {
  8366. margin-top: -3rem !important;
  8367. }
  8368. .mr-xl-n5,
  8369. .mx-xl-n5 {
  8370. margin-right: -3rem !important;
  8371. }
  8372. .mb-xl-n5,
  8373. .my-xl-n5 {
  8374. margin-bottom: -3rem !important;
  8375. }
  8376. .ml-xl-n5,
  8377. .mx-xl-n5 {
  8378. margin-left: -3rem !important;
  8379. }
  8380. .m-xl-auto {
  8381. margin: auto !important;
  8382. }
  8383. .mt-xl-auto,
  8384. .my-xl-auto {
  8385. margin-top: auto !important;
  8386. }
  8387. .mr-xl-auto,
  8388. .mx-xl-auto {
  8389. margin-right: auto !important;
  8390. }
  8391. .mb-xl-auto,
  8392. .my-xl-auto {
  8393. margin-bottom: auto !important;
  8394. }
  8395. .ml-xl-auto,
  8396. .mx-xl-auto {
  8397. margin-left: auto !important;
  8398. }
  8399. }
  8400. .text-monospace {
  8401. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8402. }
  8403. .text-justify {
  8404. text-align: justify !important;
  8405. }
  8406. .text-wrap {
  8407. white-space: normal !important;
  8408. }
  8409. .text-nowrap {
  8410. white-space: nowrap !important;
  8411. }
  8412. .text-truncate {
  8413. overflow: hidden;
  8414. text-overflow: ellipsis;
  8415. white-space: nowrap;
  8416. }
  8417. .text-left {
  8418. text-align: left !important;
  8419. }
  8420. .text-right {
  8421. text-align: right !important;
  8422. }
  8423. .text-center {
  8424. text-align: center !important;
  8425. }
  8426. @media (min-width: 576px) {
  8427. .text-sm-left {
  8428. text-align: left !important;
  8429. }
  8430. .text-sm-right {
  8431. text-align: right !important;
  8432. }
  8433. .text-sm-center {
  8434. text-align: center !important;
  8435. }
  8436. }
  8437. @media (min-width: 768px) {
  8438. .text-md-left {
  8439. text-align: left !important;
  8440. }
  8441. .text-md-right {
  8442. text-align: right !important;
  8443. }
  8444. .text-md-center {
  8445. text-align: center !important;
  8446. }
  8447. }
  8448. @media (min-width: 992px) {
  8449. .text-lg-left {
  8450. text-align: left !important;
  8451. }
  8452. .text-lg-right {
  8453. text-align: right !important;
  8454. }
  8455. .text-lg-center {
  8456. text-align: center !important;
  8457. }
  8458. }
  8459. @media (min-width: 1200px) {
  8460. .text-xl-left {
  8461. text-align: left !important;
  8462. }
  8463. .text-xl-right {
  8464. text-align: right !important;
  8465. }
  8466. .text-xl-center {
  8467. text-align: center !important;
  8468. }
  8469. }
  8470. .text-lowercase {
  8471. text-transform: lowercase !important;
  8472. }
  8473. .text-uppercase {
  8474. text-transform: uppercase !important;
  8475. }
  8476. .text-capitalize {
  8477. text-transform: capitalize !important;
  8478. }
  8479. .font-weight-light {
  8480. font-weight: 300 !important;
  8481. }
  8482. .font-weight-lighter {
  8483. font-weight: lighter !important;
  8484. }
  8485. .font-weight-normal {
  8486. font-weight: 400 !important;
  8487. }
  8488. .font-weight-bold {
  8489. font-weight: 700 !important;
  8490. }
  8491. .font-weight-bolder {
  8492. font-weight: bolder !important;
  8493. }
  8494. .font-italic {
  8495. font-style: italic !important;
  8496. }
  8497. .text-white {
  8498. color: #fff !important;
  8499. }
  8500. .text-primary {
  8501. color: #3490dc !important;
  8502. }
  8503. a.text-primary:hover,
  8504. a.text-primary:focus {
  8505. color: #1d68a7 !important;
  8506. }
  8507. .text-secondary {
  8508. color: #6c757d !important;
  8509. }
  8510. a.text-secondary:hover,
  8511. a.text-secondary:focus {
  8512. color: #494f54 !important;
  8513. }
  8514. .text-success {
  8515. color: #38c172 !important;
  8516. }
  8517. a.text-success:hover,
  8518. a.text-success:focus {
  8519. color: #27864f !important;
  8520. }
  8521. .text-info {
  8522. color: #6cb2eb !important;
  8523. }
  8524. a.text-info:hover,
  8525. a.text-info:focus {
  8526. color: #298fe2 !important;
  8527. }
  8528. .text-warning {
  8529. color: #ffed4a !important;
  8530. }
  8531. a.text-warning:hover,
  8532. a.text-warning:focus {
  8533. color: #fde300 !important;
  8534. }
  8535. .text-danger {
  8536. color: #e3342f !important;
  8537. }
  8538. a.text-danger:hover,
  8539. a.text-danger:focus {
  8540. color: #ae1c17 !important;
  8541. }
  8542. .text-light {
  8543. color: #f8f9fa !important;
  8544. }
  8545. a.text-light:hover,
  8546. a.text-light:focus {
  8547. color: #cbd3da !important;
  8548. }
  8549. .text-dark {
  8550. color: #343a40 !important;
  8551. }
  8552. a.text-dark:hover,
  8553. a.text-dark:focus {
  8554. color: #121416 !important;
  8555. }
  8556. .text-body {
  8557. color: #212529 !important;
  8558. }
  8559. .text-muted {
  8560. color: #6c757d !important;
  8561. }
  8562. .text-black-50 {
  8563. color: rgba(0, 0, 0, 0.5) !important;
  8564. }
  8565. .text-white-50 {
  8566. color: rgba(255, 255, 255, 0.5) !important;
  8567. }
  8568. .text-hide {
  8569. font: 0/0 a;
  8570. color: transparent;
  8571. text-shadow: none;
  8572. background-color: transparent;
  8573. border: 0;
  8574. }
  8575. .text-decoration-none {
  8576. text-decoration: none !important;
  8577. }
  8578. .text-break {
  8579. word-break: break-word !important;
  8580. overflow-wrap: break-word !important;
  8581. }
  8582. .text-reset {
  8583. color: inherit !important;
  8584. }
  8585. .visible {
  8586. visibility: visible !important;
  8587. }
  8588. .invisible {
  8589. visibility: hidden !important;
  8590. }
  8591. @media print {
  8592. *,
  8593. *::before,
  8594. *::after {
  8595. text-shadow: none !important;
  8596. box-shadow: none !important;
  8597. }
  8598. a:not(.btn) {
  8599. text-decoration: underline;
  8600. }
  8601. abbr[title]::after {
  8602. content: " (" attr(title) ")";
  8603. }
  8604. pre {
  8605. white-space: pre-wrap !important;
  8606. }
  8607. pre,
  8608. blockquote {
  8609. border: 1px solid #adb5bd;
  8610. page-break-inside: avoid;
  8611. }
  8612. thead {
  8613. display: table-header-group;
  8614. }
  8615. tr,
  8616. img {
  8617. page-break-inside: avoid;
  8618. }
  8619. p,
  8620. h2,
  8621. h3 {
  8622. orphans: 3;
  8623. widows: 3;
  8624. }
  8625. h2,
  8626. h3 {
  8627. page-break-after: avoid;
  8628. }
  8629. @page {
  8630. size: a3;
  8631. }
  8632. body {
  8633. min-width: 992px !important;
  8634. }
  8635. .container {
  8636. min-width: 992px !important;
  8637. }
  8638. .navbar {
  8639. display: none;
  8640. }
  8641. .badge {
  8642. border: 1px solid #000;
  8643. }
  8644. .table {
  8645. border-collapse: collapse !important;
  8646. }
  8647. .table td,
  8648. .table th {
  8649. background-color: #fff !important;
  8650. }
  8651. .table-bordered th,
  8652. .table-bordered td {
  8653. border: 1px solid #dee2e6 !important;
  8654. }
  8655. .table-dark {
  8656. color: inherit;
  8657. }
  8658. .table-dark th,
  8659. .table-dark td,
  8660. .table-dark thead th,
  8661. .table-dark tbody + tbody {
  8662. border-color: #dee2e6;
  8663. }
  8664. .table .thead-dark th {
  8665. color: inherit;
  8666. border-color: #dee2e6;
  8667. }
  8668. }
  8669. /*!
  8670. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  8671. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  8672. */
  8673. /* FONT PATH
  8674. * -------------------------- */
  8675. @font-face {
  8676. font-family: "FontAwesome";
  8677. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  8678. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");
  8679. font-weight: normal;
  8680. font-style: normal;
  8681. }
  8682. .fa {
  8683. display: inline-block;
  8684. font: normal normal normal 14px/1 FontAwesome;
  8685. font-size: inherit;
  8686. text-rendering: auto;
  8687. -webkit-font-smoothing: antialiased;
  8688. -moz-osx-font-smoothing: grayscale;
  8689. }
  8690. /* makes the font 33% larger relative to the icon container */
  8691. .fa-lg {
  8692. font-size: 1.3333333333em;
  8693. line-height: 0.75em;
  8694. vertical-align: -15%;
  8695. }
  8696. .fa-2x {
  8697. font-size: 2em;
  8698. }
  8699. .fa-3x {
  8700. font-size: 3em;
  8701. }
  8702. .fa-4x {
  8703. font-size: 4em;
  8704. }
  8705. .fa-5x {
  8706. font-size: 5em;
  8707. }
  8708. .fa-fw {
  8709. width: 1.2857142857em;
  8710. text-align: center;
  8711. }
  8712. .fa-ul {
  8713. padding-left: 0;
  8714. margin-left: 2.1428571429em;
  8715. list-style-type: none;
  8716. }
  8717. .fa-ul > li {
  8718. position: relative;
  8719. }
  8720. .fa-li {
  8721. position: absolute;
  8722. left: -2.1428571429em;
  8723. width: 2.1428571429em;
  8724. top: 0.1428571429em;
  8725. text-align: center;
  8726. }
  8727. .fa-li.fa-lg {
  8728. left: -1.8571428571em;
  8729. }
  8730. .fa-border {
  8731. padding: 0.2em 0.25em 0.15em;
  8732. border: solid 0.08em #eee;
  8733. border-radius: 0.1em;
  8734. }
  8735. .fa-pull-left {
  8736. float: left;
  8737. }
  8738. .fa-pull-right {
  8739. float: right;
  8740. }
  8741. .fa.fa-pull-left {
  8742. margin-right: 0.3em;
  8743. }
  8744. .fa.fa-pull-right {
  8745. margin-left: 0.3em;
  8746. }
  8747. /* Deprecated as of 4.4.0 */
  8748. .pull-right {
  8749. float: right;
  8750. }
  8751. .pull-left {
  8752. float: left;
  8753. }
  8754. .fa.pull-left {
  8755. margin-right: 0.3em;
  8756. }
  8757. .fa.pull-right {
  8758. margin-left: 0.3em;
  8759. }
  8760. .fa-spin {
  8761. -webkit-animation: fa-spin 2s infinite linear;
  8762. animation: fa-spin 2s infinite linear;
  8763. }
  8764. .fa-pulse {
  8765. -webkit-animation: fa-spin 1s infinite steps(8);
  8766. animation: fa-spin 1s infinite steps(8);
  8767. }
  8768. @-webkit-keyframes fa-spin {
  8769. 0% {
  8770. transform: rotate(0deg);
  8771. }
  8772. 100% {
  8773. transform: rotate(359deg);
  8774. }
  8775. }
  8776. @keyframes fa-spin {
  8777. 0% {
  8778. transform: rotate(0deg);
  8779. }
  8780. 100% {
  8781. transform: rotate(359deg);
  8782. }
  8783. }
  8784. .fa-rotate-90 {
  8785. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  8786. transform: rotate(90deg);
  8787. }
  8788. .fa-rotate-180 {
  8789. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  8790. transform: rotate(180deg);
  8791. }
  8792. .fa-rotate-270 {
  8793. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  8794. transform: rotate(270deg);
  8795. }
  8796. .fa-flip-horizontal {
  8797. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  8798. transform: scale(-1, 1);
  8799. }
  8800. .fa-flip-vertical {
  8801. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  8802. transform: scale(1, -1);
  8803. }
  8804. :root .fa-rotate-90,
  8805. :root .fa-rotate-180,
  8806. :root .fa-rotate-270,
  8807. :root .fa-flip-horizontal,
  8808. :root .fa-flip-vertical {
  8809. -webkit-filter: none;
  8810. filter: none;
  8811. }
  8812. .fa-stack {
  8813. position: relative;
  8814. display: inline-block;
  8815. width: 2em;
  8816. height: 2em;
  8817. line-height: 2em;
  8818. vertical-align: middle;
  8819. }
  8820. .fa-stack-1x,
  8821. .fa-stack-2x {
  8822. position: absolute;
  8823. left: 0;
  8824. width: 100%;
  8825. text-align: center;
  8826. }
  8827. .fa-stack-1x {
  8828. line-height: inherit;
  8829. }
  8830. .fa-stack-2x {
  8831. font-size: 2em;
  8832. }
  8833. .fa-inverse {
  8834. color: #fff;
  8835. }
  8836. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  8837. readers do not read off random characters that represent icons */
  8838. .fa-glass:before {
  8839. content: "\F000";
  8840. }
  8841. .fa-music:before {
  8842. content: "\F001";
  8843. }
  8844. .fa-search:before {
  8845. content: "\F002";
  8846. }
  8847. .fa-envelope-o:before {
  8848. content: "\F003";
  8849. }
  8850. .fa-heart:before {
  8851. content: "\F004";
  8852. }
  8853. .fa-star:before {
  8854. content: "\F005";
  8855. }
  8856. .fa-star-o:before {
  8857. content: "\F006";
  8858. }
  8859. .fa-user:before {
  8860. content: "\F007";
  8861. }
  8862. .fa-film:before {
  8863. content: "\F008";
  8864. }
  8865. .fa-th-large:before {
  8866. content: "\F009";
  8867. }
  8868. .fa-th:before {
  8869. content: "\F00A";
  8870. }
  8871. .fa-th-list:before {
  8872. content: "\F00B";
  8873. }
  8874. .fa-check:before {
  8875. content: "\F00C";
  8876. }
  8877. .fa-remove:before,
  8878. .fa-close:before,
  8879. .fa-times:before {
  8880. content: "\F00D";
  8881. }
  8882. .fa-search-plus:before {
  8883. content: "\F00E";
  8884. }
  8885. .fa-search-minus:before {
  8886. content: "\F010";
  8887. }
  8888. .fa-power-off:before {
  8889. content: "\F011";
  8890. }
  8891. .fa-signal:before {
  8892. content: "\F012";
  8893. }
  8894. .fa-gear:before,
  8895. .fa-cog:before {
  8896. content: "\F013";
  8897. }
  8898. .fa-trash-o:before {
  8899. content: "\F014";
  8900. }
  8901. .fa-home:before {
  8902. content: "\F015";
  8903. }
  8904. .fa-file-o:before {
  8905. content: "\F016";
  8906. }
  8907. .fa-clock-o:before {
  8908. content: "\F017";
  8909. }
  8910. .fa-road:before {
  8911. content: "\F018";
  8912. }
  8913. .fa-download:before {
  8914. content: "\F019";
  8915. }
  8916. .fa-arrow-circle-o-down:before {
  8917. content: "\F01A";
  8918. }
  8919. .fa-arrow-circle-o-up:before {
  8920. content: "\F01B";
  8921. }
  8922. .fa-inbox:before {
  8923. content: "\F01C";
  8924. }
  8925. .fa-play-circle-o:before {
  8926. content: "\F01D";
  8927. }
  8928. .fa-rotate-right:before,
  8929. .fa-repeat:before {
  8930. content: "\F01E";
  8931. }
  8932. .fa-refresh:before {
  8933. content: "\F021";
  8934. }
  8935. .fa-list-alt:before {
  8936. content: "\F022";
  8937. }
  8938. .fa-lock:before {
  8939. content: "\F023";
  8940. }
  8941. .fa-flag:before {
  8942. content: "\F024";
  8943. }
  8944. .fa-headphones:before {
  8945. content: "\F025";
  8946. }
  8947. .fa-volume-off:before {
  8948. content: "\F026";
  8949. }
  8950. .fa-volume-down:before {
  8951. content: "\F027";
  8952. }
  8953. .fa-volume-up:before {
  8954. content: "\F028";
  8955. }
  8956. .fa-qrcode:before {
  8957. content: "\F029";
  8958. }
  8959. .fa-barcode:before {
  8960. content: "\F02A";
  8961. }
  8962. .fa-tag:before {
  8963. content: "\F02B";
  8964. }
  8965. .fa-tags:before {
  8966. content: "\F02C";
  8967. }
  8968. .fa-book:before {
  8969. content: "\F02D";
  8970. }
  8971. .fa-bookmark:before {
  8972. content: "\F02E";
  8973. }
  8974. .fa-print:before {
  8975. content: "\F02F";
  8976. }
  8977. .fa-camera:before {
  8978. content: "\F030";
  8979. }
  8980. .fa-font:before {
  8981. content: "\F031";
  8982. }
  8983. .fa-bold:before {
  8984. content: "\F032";
  8985. }
  8986. .fa-italic:before {
  8987. content: "\F033";
  8988. }
  8989. .fa-text-height:before {
  8990. content: "\F034";
  8991. }
  8992. .fa-text-width:before {
  8993. content: "\F035";
  8994. }
  8995. .fa-align-left:before {
  8996. content: "\F036";
  8997. }
  8998. .fa-align-center:before {
  8999. content: "\F037";
  9000. }
  9001. .fa-align-right:before {
  9002. content: "\F038";
  9003. }
  9004. .fa-align-justify:before {
  9005. content: "\F039";
  9006. }
  9007. .fa-list:before {
  9008. content: "\F03A";
  9009. }
  9010. .fa-dedent:before,
  9011. .fa-outdent:before {
  9012. content: "\F03B";
  9013. }
  9014. .fa-indent:before {
  9015. content: "\F03C";
  9016. }
  9017. .fa-video-camera:before {
  9018. content: "\F03D";
  9019. }
  9020. .fa-photo:before,
  9021. .fa-image:before,
  9022. .fa-picture-o:before {
  9023. content: "\F03E";
  9024. }
  9025. .fa-pencil:before {
  9026. content: "\F040";
  9027. }
  9028. .fa-map-marker:before {
  9029. content: "\F041";
  9030. }
  9031. .fa-adjust:before {
  9032. content: "\F042";
  9033. }
  9034. .fa-tint:before {
  9035. content: "\F043";
  9036. }
  9037. .fa-edit:before,
  9038. .fa-pencil-square-o:before {
  9039. content: "\F044";
  9040. }
  9041. .fa-share-square-o:before {
  9042. content: "\F045";
  9043. }
  9044. .fa-check-square-o:before {
  9045. content: "\F046";
  9046. }
  9047. .fa-arrows:before {
  9048. content: "\F047";
  9049. }
  9050. .fa-step-backward:before {
  9051. content: "\F048";
  9052. }
  9053. .fa-fast-backward:before {
  9054. content: "\F049";
  9055. }
  9056. .fa-backward:before {
  9057. content: "\F04A";
  9058. }
  9059. .fa-play:before {
  9060. content: "\F04B";
  9061. }
  9062. .fa-pause:before {
  9063. content: "\F04C";
  9064. }
  9065. .fa-stop:before {
  9066. content: "\F04D";
  9067. }
  9068. .fa-forward:before {
  9069. content: "\F04E";
  9070. }
  9071. .fa-fast-forward:before {
  9072. content: "\F050";
  9073. }
  9074. .fa-step-forward:before {
  9075. content: "\F051";
  9076. }
  9077. .fa-eject:before {
  9078. content: "\F052";
  9079. }
  9080. .fa-chevron-left:before {
  9081. content: "\F053";
  9082. }
  9083. .fa-chevron-right:before {
  9084. content: "\F054";
  9085. }
  9086. .fa-plus-circle:before {
  9087. content: "\F055";
  9088. }
  9089. .fa-minus-circle:before {
  9090. content: "\F056";
  9091. }
  9092. .fa-times-circle:before {
  9093. content: "\F057";
  9094. }
  9095. .fa-check-circle:before {
  9096. content: "\F058";
  9097. }
  9098. .fa-question-circle:before {
  9099. content: "\F059";
  9100. }
  9101. .fa-info-circle:before {
  9102. content: "\F05A";
  9103. }
  9104. .fa-crosshairs:before {
  9105. content: "\F05B";
  9106. }
  9107. .fa-times-circle-o:before {
  9108. content: "\F05C";
  9109. }
  9110. .fa-check-circle-o:before {
  9111. content: "\F05D";
  9112. }
  9113. .fa-ban:before {
  9114. content: "\F05E";
  9115. }
  9116. .fa-arrow-left:before {
  9117. content: "\F060";
  9118. }
  9119. .fa-arrow-right:before {
  9120. content: "\F061";
  9121. }
  9122. .fa-arrow-up:before {
  9123. content: "\F062";
  9124. }
  9125. .fa-arrow-down:before {
  9126. content: "\F063";
  9127. }
  9128. .fa-mail-forward:before,
  9129. .fa-share:before {
  9130. content: "\F064";
  9131. }
  9132. .fa-expand:before {
  9133. content: "\F065";
  9134. }
  9135. .fa-compress:before {
  9136. content: "\F066";
  9137. }
  9138. .fa-plus:before {
  9139. content: "\F067";
  9140. }
  9141. .fa-minus:before {
  9142. content: "\F068";
  9143. }
  9144. .fa-asterisk:before {
  9145. content: "\F069";
  9146. }
  9147. .fa-exclamation-circle:before {
  9148. content: "\F06A";
  9149. }
  9150. .fa-gift:before {
  9151. content: "\F06B";
  9152. }
  9153. .fa-leaf:before {
  9154. content: "\F06C";
  9155. }
  9156. .fa-fire:before {
  9157. content: "\F06D";
  9158. }
  9159. .fa-eye:before {
  9160. content: "\F06E";
  9161. }
  9162. .fa-eye-slash:before {
  9163. content: "\F070";
  9164. }
  9165. .fa-warning:before,
  9166. .fa-exclamation-triangle:before {
  9167. content: "\F071";
  9168. }
  9169. .fa-plane:before {
  9170. content: "\F072";
  9171. }
  9172. .fa-calendar:before {
  9173. content: "\F073";
  9174. }
  9175. .fa-random:before {
  9176. content: "\F074";
  9177. }
  9178. .fa-comment:before {
  9179. content: "\F075";
  9180. }
  9181. .fa-magnet:before {
  9182. content: "\F076";
  9183. }
  9184. .fa-chevron-up:before {
  9185. content: "\F077";
  9186. }
  9187. .fa-chevron-down:before {
  9188. content: "\F078";
  9189. }
  9190. .fa-retweet:before {
  9191. content: "\F079";
  9192. }
  9193. .fa-shopping-cart:before {
  9194. content: "\F07A";
  9195. }
  9196. .fa-folder:before {
  9197. content: "\F07B";
  9198. }
  9199. .fa-folder-open:before {
  9200. content: "\F07C";
  9201. }
  9202. .fa-arrows-v:before {
  9203. content: "\F07D";
  9204. }
  9205. .fa-arrows-h:before {
  9206. content: "\F07E";
  9207. }
  9208. .fa-bar-chart-o:before,
  9209. .fa-bar-chart:before {
  9210. content: "\F080";
  9211. }
  9212. .fa-twitter-square:before {
  9213. content: "\F081";
  9214. }
  9215. .fa-facebook-square:before {
  9216. content: "\F082";
  9217. }
  9218. .fa-camera-retro:before {
  9219. content: "\F083";
  9220. }
  9221. .fa-key:before {
  9222. content: "\F084";
  9223. }
  9224. .fa-gears:before,
  9225. .fa-cogs:before {
  9226. content: "\F085";
  9227. }
  9228. .fa-comments:before {
  9229. content: "\F086";
  9230. }
  9231. .fa-thumbs-o-up:before {
  9232. content: "\F087";
  9233. }
  9234. .fa-thumbs-o-down:before {
  9235. content: "\F088";
  9236. }
  9237. .fa-star-half:before {
  9238. content: "\F089";
  9239. }
  9240. .fa-heart-o:before {
  9241. content: "\F08A";
  9242. }
  9243. .fa-sign-out:before {
  9244. content: "\F08B";
  9245. }
  9246. .fa-linkedin-square:before {
  9247. content: "\F08C";
  9248. }
  9249. .fa-thumb-tack:before {
  9250. content: "\F08D";
  9251. }
  9252. .fa-external-link:before {
  9253. content: "\F08E";
  9254. }
  9255. .fa-sign-in:before {
  9256. content: "\F090";
  9257. }
  9258. .fa-trophy:before {
  9259. content: "\F091";
  9260. }
  9261. .fa-github-square:before {
  9262. content: "\F092";
  9263. }
  9264. .fa-upload:before {
  9265. content: "\F093";
  9266. }
  9267. .fa-lemon-o:before {
  9268. content: "\F094";
  9269. }
  9270. .fa-phone:before {
  9271. content: "\F095";
  9272. }
  9273. .fa-square-o:before {
  9274. content: "\F096";
  9275. }
  9276. .fa-bookmark-o:before {
  9277. content: "\F097";
  9278. }
  9279. .fa-phone-square:before {
  9280. content: "\F098";
  9281. }
  9282. .fa-twitter:before {
  9283. content: "\F099";
  9284. }
  9285. .fa-facebook-f:before,
  9286. .fa-facebook:before {
  9287. content: "\F09A";
  9288. }
  9289. .fa-github:before {
  9290. content: "\F09B";
  9291. }
  9292. .fa-unlock:before {
  9293. content: "\F09C";
  9294. }
  9295. .fa-credit-card:before {
  9296. content: "\F09D";
  9297. }
  9298. .fa-feed:before,
  9299. .fa-rss:before {
  9300. content: "\F09E";
  9301. }
  9302. .fa-hdd-o:before {
  9303. content: "\F0A0";
  9304. }
  9305. .fa-bullhorn:before {
  9306. content: "\F0A1";
  9307. }
  9308. .fa-bell:before {
  9309. content: "\F0F3";
  9310. }
  9311. .fa-certificate:before {
  9312. content: "\F0A3";
  9313. }
  9314. .fa-hand-o-right:before {
  9315. content: "\F0A4";
  9316. }
  9317. .fa-hand-o-left:before {
  9318. content: "\F0A5";
  9319. }
  9320. .fa-hand-o-up:before {
  9321. content: "\F0A6";
  9322. }
  9323. .fa-hand-o-down:before {
  9324. content: "\F0A7";
  9325. }
  9326. .fa-arrow-circle-left:before {
  9327. content: "\F0A8";
  9328. }
  9329. .fa-arrow-circle-right:before {
  9330. content: "\F0A9";
  9331. }
  9332. .fa-arrow-circle-up:before {
  9333. content: "\F0AA";
  9334. }
  9335. .fa-arrow-circle-down:before {
  9336. content: "\F0AB";
  9337. }
  9338. .fa-globe:before {
  9339. content: "\F0AC";
  9340. }
  9341. .fa-wrench:before {
  9342. content: "\F0AD";
  9343. }
  9344. .fa-tasks:before {
  9345. content: "\F0AE";
  9346. }
  9347. .fa-filter:before {
  9348. content: "\F0B0";
  9349. }
  9350. .fa-briefcase:before {
  9351. content: "\F0B1";
  9352. }
  9353. .fa-arrows-alt:before {
  9354. content: "\F0B2";
  9355. }
  9356. .fa-group:before,
  9357. .fa-users:before {
  9358. content: "\F0C0";
  9359. }
  9360. .fa-chain:before,
  9361. .fa-link:before {
  9362. content: "\F0C1";
  9363. }
  9364. .fa-cloud:before {
  9365. content: "\F0C2";
  9366. }
  9367. .fa-flask:before {
  9368. content: "\F0C3";
  9369. }
  9370. .fa-cut:before,
  9371. .fa-scissors:before {
  9372. content: "\F0C4";
  9373. }
  9374. .fa-copy:before,
  9375. .fa-files-o:before {
  9376. content: "\F0C5";
  9377. }
  9378. .fa-paperclip:before {
  9379. content: "\F0C6";
  9380. }
  9381. .fa-save:before,
  9382. .fa-floppy-o:before {
  9383. content: "\F0C7";
  9384. }
  9385. .fa-square:before {
  9386. content: "\F0C8";
  9387. }
  9388. .fa-navicon:before,
  9389. .fa-reorder:before,
  9390. .fa-bars:before {
  9391. content: "\F0C9";
  9392. }
  9393. .fa-list-ul:before {
  9394. content: "\F0CA";
  9395. }
  9396. .fa-list-ol:before {
  9397. content: "\F0CB";
  9398. }
  9399. .fa-strikethrough:before {
  9400. content: "\F0CC";
  9401. }
  9402. .fa-underline:before {
  9403. content: "\F0CD";
  9404. }
  9405. .fa-table:before {
  9406. content: "\F0CE";
  9407. }
  9408. .fa-magic:before {
  9409. content: "\F0D0";
  9410. }
  9411. .fa-truck:before {
  9412. content: "\F0D1";
  9413. }
  9414. .fa-pinterest:before {
  9415. content: "\F0D2";
  9416. }
  9417. .fa-pinterest-square:before {
  9418. content: "\F0D3";
  9419. }
  9420. .fa-google-plus-square:before {
  9421. content: "\F0D4";
  9422. }
  9423. .fa-google-plus:before {
  9424. content: "\F0D5";
  9425. }
  9426. .fa-money:before {
  9427. content: "\F0D6";
  9428. }
  9429. .fa-caret-down:before {
  9430. content: "\F0D7";
  9431. }
  9432. .fa-caret-up:before {
  9433. content: "\F0D8";
  9434. }
  9435. .fa-caret-left:before {
  9436. content: "\F0D9";
  9437. }
  9438. .fa-caret-right:before {
  9439. content: "\F0DA";
  9440. }
  9441. .fa-columns:before {
  9442. content: "\F0DB";
  9443. }
  9444. .fa-unsorted:before,
  9445. .fa-sort:before {
  9446. content: "\F0DC";
  9447. }
  9448. .fa-sort-down:before,
  9449. .fa-sort-desc:before {
  9450. content: "\F0DD";
  9451. }
  9452. .fa-sort-up:before,
  9453. .fa-sort-asc:before {
  9454. content: "\F0DE";
  9455. }
  9456. .fa-envelope:before {
  9457. content: "\F0E0";
  9458. }
  9459. .fa-linkedin:before {
  9460. content: "\F0E1";
  9461. }
  9462. .fa-rotate-left:before,
  9463. .fa-undo:before {
  9464. content: "\F0E2";
  9465. }
  9466. .fa-legal:before,
  9467. .fa-gavel:before {
  9468. content: "\F0E3";
  9469. }
  9470. .fa-dashboard:before,
  9471. .fa-tachometer:before {
  9472. content: "\F0E4";
  9473. }
  9474. .fa-comment-o:before {
  9475. content: "\F0E5";
  9476. }
  9477. .fa-comments-o:before {
  9478. content: "\F0E6";
  9479. }
  9480. .fa-flash:before,
  9481. .fa-bolt:before {
  9482. content: "\F0E7";
  9483. }
  9484. .fa-sitemap:before {
  9485. content: "\F0E8";
  9486. }
  9487. .fa-umbrella:before {
  9488. content: "\F0E9";
  9489. }
  9490. .fa-paste:before,
  9491. .fa-clipboard:before {
  9492. content: "\F0EA";
  9493. }
  9494. .fa-lightbulb-o:before {
  9495. content: "\F0EB";
  9496. }
  9497. .fa-exchange:before {
  9498. content: "\F0EC";
  9499. }
  9500. .fa-cloud-download:before {
  9501. content: "\F0ED";
  9502. }
  9503. .fa-cloud-upload:before {
  9504. content: "\F0EE";
  9505. }
  9506. .fa-user-md:before {
  9507. content: "\F0F0";
  9508. }
  9509. .fa-stethoscope:before {
  9510. content: "\F0F1";
  9511. }
  9512. .fa-suitcase:before {
  9513. content: "\F0F2";
  9514. }
  9515. .fa-bell-o:before {
  9516. content: "\F0A2";
  9517. }
  9518. .fa-coffee:before {
  9519. content: "\F0F4";
  9520. }
  9521. .fa-cutlery:before {
  9522. content: "\F0F5";
  9523. }
  9524. .fa-file-text-o:before {
  9525. content: "\F0F6";
  9526. }
  9527. .fa-building-o:before {
  9528. content: "\F0F7";
  9529. }
  9530. .fa-hospital-o:before {
  9531. content: "\F0F8";
  9532. }
  9533. .fa-ambulance:before {
  9534. content: "\F0F9";
  9535. }
  9536. .fa-medkit:before {
  9537. content: "\F0FA";
  9538. }
  9539. .fa-fighter-jet:before {
  9540. content: "\F0FB";
  9541. }
  9542. .fa-beer:before {
  9543. content: "\F0FC";
  9544. }
  9545. .fa-h-square:before {
  9546. content: "\F0FD";
  9547. }
  9548. .fa-plus-square:before {
  9549. content: "\F0FE";
  9550. }
  9551. .fa-angle-double-left:before {
  9552. content: "\F100";
  9553. }
  9554. .fa-angle-double-right:before {
  9555. content: "\F101";
  9556. }
  9557. .fa-angle-double-up:before {
  9558. content: "\F102";
  9559. }
  9560. .fa-angle-double-down:before {
  9561. content: "\F103";
  9562. }
  9563. .fa-angle-left:before {
  9564. content: "\F104";
  9565. }
  9566. .fa-angle-right:before {
  9567. content: "\F105";
  9568. }
  9569. .fa-angle-up:before {
  9570. content: "\F106";
  9571. }
  9572. .fa-angle-down:before {
  9573. content: "\F107";
  9574. }
  9575. .fa-desktop:before {
  9576. content: "\F108";
  9577. }
  9578. .fa-laptop:before {
  9579. content: "\F109";
  9580. }
  9581. .fa-tablet:before {
  9582. content: "\F10A";
  9583. }
  9584. .fa-mobile-phone:before,
  9585. .fa-mobile:before {
  9586. content: "\F10B";
  9587. }
  9588. .fa-circle-o:before {
  9589. content: "\F10C";
  9590. }
  9591. .fa-quote-left:before {
  9592. content: "\F10D";
  9593. }
  9594. .fa-quote-right:before {
  9595. content: "\F10E";
  9596. }
  9597. .fa-spinner:before {
  9598. content: "\F110";
  9599. }
  9600. .fa-circle:before {
  9601. content: "\F111";
  9602. }
  9603. .fa-mail-reply:before,
  9604. .fa-reply:before {
  9605. content: "\F112";
  9606. }
  9607. .fa-github-alt:before {
  9608. content: "\F113";
  9609. }
  9610. .fa-folder-o:before {
  9611. content: "\F114";
  9612. }
  9613. .fa-folder-open-o:before {
  9614. content: "\F115";
  9615. }
  9616. .fa-smile-o:before {
  9617. content: "\F118";
  9618. }
  9619. .fa-frown-o:before {
  9620. content: "\F119";
  9621. }
  9622. .fa-meh-o:before {
  9623. content: "\F11A";
  9624. }
  9625. .fa-gamepad:before {
  9626. content: "\F11B";
  9627. }
  9628. .fa-keyboard-o:before {
  9629. content: "\F11C";
  9630. }
  9631. .fa-flag-o:before {
  9632. content: "\F11D";
  9633. }
  9634. .fa-flag-checkered:before {
  9635. content: "\F11E";
  9636. }
  9637. .fa-terminal:before {
  9638. content: "\F120";
  9639. }
  9640. .fa-code:before {
  9641. content: "\F121";
  9642. }
  9643. .fa-mail-reply-all:before,
  9644. .fa-reply-all:before {
  9645. content: "\F122";
  9646. }
  9647. .fa-star-half-empty:before,
  9648. .fa-star-half-full:before,
  9649. .fa-star-half-o:before {
  9650. content: "\F123";
  9651. }
  9652. .fa-location-arrow:before {
  9653. content: "\F124";
  9654. }
  9655. .fa-crop:before {
  9656. content: "\F125";
  9657. }
  9658. .fa-code-fork:before {
  9659. content: "\F126";
  9660. }
  9661. .fa-unlink:before,
  9662. .fa-chain-broken:before {
  9663. content: "\F127";
  9664. }
  9665. .fa-question:before {
  9666. content: "\F128";
  9667. }
  9668. .fa-info:before {
  9669. content: "\F129";
  9670. }
  9671. .fa-exclamation:before {
  9672. content: "\F12A";
  9673. }
  9674. .fa-superscript:before {
  9675. content: "\F12B";
  9676. }
  9677. .fa-subscript:before {
  9678. content: "\F12C";
  9679. }
  9680. .fa-eraser:before {
  9681. content: "\F12D";
  9682. }
  9683. .fa-puzzle-piece:before {
  9684. content: "\F12E";
  9685. }
  9686. .fa-microphone:before {
  9687. content: "\F130";
  9688. }
  9689. .fa-microphone-slash:before {
  9690. content: "\F131";
  9691. }
  9692. .fa-shield:before {
  9693. content: "\F132";
  9694. }
  9695. .fa-calendar-o:before {
  9696. content: "\F133";
  9697. }
  9698. .fa-fire-extinguisher:before {
  9699. content: "\F134";
  9700. }
  9701. .fa-rocket:before {
  9702. content: "\F135";
  9703. }
  9704. .fa-maxcdn:before {
  9705. content: "\F136";
  9706. }
  9707. .fa-chevron-circle-left:before {
  9708. content: "\F137";
  9709. }
  9710. .fa-chevron-circle-right:before {
  9711. content: "\F138";
  9712. }
  9713. .fa-chevron-circle-up:before {
  9714. content: "\F139";
  9715. }
  9716. .fa-chevron-circle-down:before {
  9717. content: "\F13A";
  9718. }
  9719. .fa-html5:before {
  9720. content: "\F13B";
  9721. }
  9722. .fa-css3:before {
  9723. content: "\F13C";
  9724. }
  9725. .fa-anchor:before {
  9726. content: "\F13D";
  9727. }
  9728. .fa-unlock-alt:before {
  9729. content: "\F13E";
  9730. }
  9731. .fa-bullseye:before {
  9732. content: "\F140";
  9733. }
  9734. .fa-ellipsis-h:before {
  9735. content: "\F141";
  9736. }
  9737. .fa-ellipsis-v:before {
  9738. content: "\F142";
  9739. }
  9740. .fa-rss-square:before {
  9741. content: "\F143";
  9742. }
  9743. .fa-play-circle:before {
  9744. content: "\F144";
  9745. }
  9746. .fa-ticket:before {
  9747. content: "\F145";
  9748. }
  9749. .fa-minus-square:before {
  9750. content: "\F146";
  9751. }
  9752. .fa-minus-square-o:before {
  9753. content: "\F147";
  9754. }
  9755. .fa-level-up:before {
  9756. content: "\F148";
  9757. }
  9758. .fa-level-down:before {
  9759. content: "\F149";
  9760. }
  9761. .fa-check-square:before {
  9762. content: "\F14A";
  9763. }
  9764. .fa-pencil-square:before {
  9765. content: "\F14B";
  9766. }
  9767. .fa-external-link-square:before {
  9768. content: "\F14C";
  9769. }
  9770. .fa-share-square:before {
  9771. content: "\F14D";
  9772. }
  9773. .fa-compass:before {
  9774. content: "\F14E";
  9775. }
  9776. .fa-toggle-down:before,
  9777. .fa-caret-square-o-down:before {
  9778. content: "\F150";
  9779. }
  9780. .fa-toggle-up:before,
  9781. .fa-caret-square-o-up:before {
  9782. content: "\F151";
  9783. }
  9784. .fa-toggle-right:before,
  9785. .fa-caret-square-o-right:before {
  9786. content: "\F152";
  9787. }
  9788. .fa-euro:before,
  9789. .fa-eur:before {
  9790. content: "\F153";
  9791. }
  9792. .fa-gbp:before {
  9793. content: "\F154";
  9794. }
  9795. .fa-dollar:before,
  9796. .fa-usd:before {
  9797. content: "\F155";
  9798. }
  9799. .fa-rupee:before,
  9800. .fa-inr:before {
  9801. content: "\F156";
  9802. }
  9803. .fa-cny:before,
  9804. .fa-rmb:before,
  9805. .fa-yen:before,
  9806. .fa-jpy:before {
  9807. content: "\F157";
  9808. }
  9809. .fa-ruble:before,
  9810. .fa-rouble:before,
  9811. .fa-rub:before {
  9812. content: "\F158";
  9813. }
  9814. .fa-won:before,
  9815. .fa-krw:before {
  9816. content: "\F159";
  9817. }
  9818. .fa-bitcoin:before,
  9819. .fa-btc:before {
  9820. content: "\F15A";
  9821. }
  9822. .fa-file:before {
  9823. content: "\F15B";
  9824. }
  9825. .fa-file-text:before {
  9826. content: "\F15C";
  9827. }
  9828. .fa-sort-alpha-asc:before {
  9829. content: "\F15D";
  9830. }
  9831. .fa-sort-alpha-desc:before {
  9832. content: "\F15E";
  9833. }
  9834. .fa-sort-amount-asc:before {
  9835. content: "\F160";
  9836. }
  9837. .fa-sort-amount-desc:before {
  9838. content: "\F161";
  9839. }
  9840. .fa-sort-numeric-asc:before {
  9841. content: "\F162";
  9842. }
  9843. .fa-sort-numeric-desc:before {
  9844. content: "\F163";
  9845. }
  9846. .fa-thumbs-up:before {
  9847. content: "\F164";
  9848. }
  9849. .fa-thumbs-down:before {
  9850. content: "\F165";
  9851. }
  9852. .fa-youtube-square:before {
  9853. content: "\F166";
  9854. }
  9855. .fa-youtube:before {
  9856. content: "\F167";
  9857. }
  9858. .fa-xing:before {
  9859. content: "\F168";
  9860. }
  9861. .fa-xing-square:before {
  9862. content: "\F169";
  9863. }
  9864. .fa-youtube-play:before {
  9865. content: "\F16A";
  9866. }
  9867. .fa-dropbox:before {
  9868. content: "\F16B";
  9869. }
  9870. .fa-stack-overflow:before {
  9871. content: "\F16C";
  9872. }
  9873. .fa-instagram:before {
  9874. content: "\F16D";
  9875. }
  9876. .fa-flickr:before {
  9877. content: "\F16E";
  9878. }
  9879. .fa-adn:before {
  9880. content: "\F170";
  9881. }
  9882. .fa-bitbucket:before {
  9883. content: "\F171";
  9884. }
  9885. .fa-bitbucket-square:before {
  9886. content: "\F172";
  9887. }
  9888. .fa-tumblr:before {
  9889. content: "\F173";
  9890. }
  9891. .fa-tumblr-square:before {
  9892. content: "\F174";
  9893. }
  9894. .fa-long-arrow-down:before {
  9895. content: "\F175";
  9896. }
  9897. .fa-long-arrow-up:before {
  9898. content: "\F176";
  9899. }
  9900. .fa-long-arrow-left:before {
  9901. content: "\F177";
  9902. }
  9903. .fa-long-arrow-right:before {
  9904. content: "\F178";
  9905. }
  9906. .fa-apple:before {
  9907. content: "\F179";
  9908. }
  9909. .fa-windows:before {
  9910. content: "\F17A";
  9911. }
  9912. .fa-android:before {
  9913. content: "\F17B";
  9914. }
  9915. .fa-linux:before {
  9916. content: "\F17C";
  9917. }
  9918. .fa-dribbble:before {
  9919. content: "\F17D";
  9920. }
  9921. .fa-skype:before {
  9922. content: "\F17E";
  9923. }
  9924. .fa-foursquare:before {
  9925. content: "\F180";
  9926. }
  9927. .fa-trello:before {
  9928. content: "\F181";
  9929. }
  9930. .fa-female:before {
  9931. content: "\F182";
  9932. }
  9933. .fa-male:before {
  9934. content: "\F183";
  9935. }
  9936. .fa-gittip:before,
  9937. .fa-gratipay:before {
  9938. content: "\F184";
  9939. }
  9940. .fa-sun-o:before {
  9941. content: "\F185";
  9942. }
  9943. .fa-moon-o:before {
  9944. content: "\F186";
  9945. }
  9946. .fa-archive:before {
  9947. content: "\F187";
  9948. }
  9949. .fa-bug:before {
  9950. content: "\F188";
  9951. }
  9952. .fa-vk:before {
  9953. content: "\F189";
  9954. }
  9955. .fa-weibo:before {
  9956. content: "\F18A";
  9957. }
  9958. .fa-renren:before {
  9959. content: "\F18B";
  9960. }
  9961. .fa-pagelines:before {
  9962. content: "\F18C";
  9963. }
  9964. .fa-stack-exchange:before {
  9965. content: "\F18D";
  9966. }
  9967. .fa-arrow-circle-o-right:before {
  9968. content: "\F18E";
  9969. }
  9970. .fa-arrow-circle-o-left:before {
  9971. content: "\F190";
  9972. }
  9973. .fa-toggle-left:before,
  9974. .fa-caret-square-o-left:before {
  9975. content: "\F191";
  9976. }
  9977. .fa-dot-circle-o:before {
  9978. content: "\F192";
  9979. }
  9980. .fa-wheelchair:before {
  9981. content: "\F193";
  9982. }
  9983. .fa-vimeo-square:before {
  9984. content: "\F194";
  9985. }
  9986. .fa-turkish-lira:before,
  9987. .fa-try:before {
  9988. content: "\F195";
  9989. }
  9990. .fa-plus-square-o:before {
  9991. content: "\F196";
  9992. }
  9993. .fa-space-shuttle:before {
  9994. content: "\F197";
  9995. }
  9996. .fa-slack:before {
  9997. content: "\F198";
  9998. }
  9999. .fa-envelope-square:before {
  10000. content: "\F199";
  10001. }
  10002. .fa-wordpress:before {
  10003. content: "\F19A";
  10004. }
  10005. .fa-openid:before {
  10006. content: "\F19B";
  10007. }
  10008. .fa-institution:before,
  10009. .fa-bank:before,
  10010. .fa-university:before {
  10011. content: "\F19C";
  10012. }
  10013. .fa-mortar-board:before,
  10014. .fa-graduation-cap:before {
  10015. content: "\F19D";
  10016. }
  10017. .fa-yahoo:before {
  10018. content: "\F19E";
  10019. }
  10020. .fa-google:before {
  10021. content: "\F1A0";
  10022. }
  10023. .fa-reddit:before {
  10024. content: "\F1A1";
  10025. }
  10026. .fa-reddit-square:before {
  10027. content: "\F1A2";
  10028. }
  10029. .fa-stumbleupon-circle:before {
  10030. content: "\F1A3";
  10031. }
  10032. .fa-stumbleupon:before {
  10033. content: "\F1A4";
  10034. }
  10035. .fa-delicious:before {
  10036. content: "\F1A5";
  10037. }
  10038. .fa-digg:before {
  10039. content: "\F1A6";
  10040. }
  10041. .fa-pied-piper-pp:before {
  10042. content: "\F1A7";
  10043. }
  10044. .fa-pied-piper-alt:before {
  10045. content: "\F1A8";
  10046. }
  10047. .fa-drupal:before {
  10048. content: "\F1A9";
  10049. }
  10050. .fa-joomla:before {
  10051. content: "\F1AA";
  10052. }
  10053. .fa-language:before {
  10054. content: "\F1AB";
  10055. }
  10056. .fa-fax:before {
  10057. content: "\F1AC";
  10058. }
  10059. .fa-building:before {
  10060. content: "\F1AD";
  10061. }
  10062. .fa-child:before {
  10063. content: "\F1AE";
  10064. }
  10065. .fa-paw:before {
  10066. content: "\F1B0";
  10067. }
  10068. .fa-spoon:before {
  10069. content: "\F1B1";
  10070. }
  10071. .fa-cube:before {
  10072. content: "\F1B2";
  10073. }
  10074. .fa-cubes:before {
  10075. content: "\F1B3";
  10076. }
  10077. .fa-behance:before {
  10078. content: "\F1B4";
  10079. }
  10080. .fa-behance-square:before {
  10081. content: "\F1B5";
  10082. }
  10083. .fa-steam:before {
  10084. content: "\F1B6";
  10085. }
  10086. .fa-steam-square:before {
  10087. content: "\F1B7";
  10088. }
  10089. .fa-recycle:before {
  10090. content: "\F1B8";
  10091. }
  10092. .fa-automobile:before,
  10093. .fa-car:before {
  10094. content: "\F1B9";
  10095. }
  10096. .fa-cab:before,
  10097. .fa-taxi:before {
  10098. content: "\F1BA";
  10099. }
  10100. .fa-tree:before {
  10101. content: "\F1BB";
  10102. }
  10103. .fa-spotify:before {
  10104. content: "\F1BC";
  10105. }
  10106. .fa-deviantart:before {
  10107. content: "\F1BD";
  10108. }
  10109. .fa-soundcloud:before {
  10110. content: "\F1BE";
  10111. }
  10112. .fa-database:before {
  10113. content: "\F1C0";
  10114. }
  10115. .fa-file-pdf-o:before {
  10116. content: "\F1C1";
  10117. }
  10118. .fa-file-word-o:before {
  10119. content: "\F1C2";
  10120. }
  10121. .fa-file-excel-o:before {
  10122. content: "\F1C3";
  10123. }
  10124. .fa-file-powerpoint-o:before {
  10125. content: "\F1C4";
  10126. }
  10127. .fa-file-photo-o:before,
  10128. .fa-file-picture-o:before,
  10129. .fa-file-image-o:before {
  10130. content: "\F1C5";
  10131. }
  10132. .fa-file-zip-o:before,
  10133. .fa-file-archive-o:before {
  10134. content: "\F1C6";
  10135. }
  10136. .fa-file-sound-o:before,
  10137. .fa-file-audio-o:before {
  10138. content: "\F1C7";
  10139. }
  10140. .fa-file-movie-o:before,
  10141. .fa-file-video-o:before {
  10142. content: "\F1C8";
  10143. }
  10144. .fa-file-code-o:before {
  10145. content: "\F1C9";
  10146. }
  10147. .fa-vine:before {
  10148. content: "\F1CA";
  10149. }
  10150. .fa-codepen:before {
  10151. content: "\F1CB";
  10152. }
  10153. .fa-jsfiddle:before {
  10154. content: "\F1CC";
  10155. }
  10156. .fa-life-bouy:before,
  10157. .fa-life-buoy:before,
  10158. .fa-life-saver:before,
  10159. .fa-support:before,
  10160. .fa-life-ring:before {
  10161. content: "\F1CD";
  10162. }
  10163. .fa-circle-o-notch:before {
  10164. content: "\F1CE";
  10165. }
  10166. .fa-ra:before,
  10167. .fa-resistance:before,
  10168. .fa-rebel:before {
  10169. content: "\F1D0";
  10170. }
  10171. .fa-ge:before,
  10172. .fa-empire:before {
  10173. content: "\F1D1";
  10174. }
  10175. .fa-git-square:before {
  10176. content: "\F1D2";
  10177. }
  10178. .fa-git:before {
  10179. content: "\F1D3";
  10180. }
  10181. .fa-y-combinator-square:before,
  10182. .fa-yc-square:before,
  10183. .fa-hacker-news:before {
  10184. content: "\F1D4";
  10185. }
  10186. .fa-tencent-weibo:before {
  10187. content: "\F1D5";
  10188. }
  10189. .fa-qq:before {
  10190. content: "\F1D6";
  10191. }
  10192. .fa-wechat:before,
  10193. .fa-weixin:before {
  10194. content: "\F1D7";
  10195. }
  10196. .fa-send:before,
  10197. .fa-paper-plane:before {
  10198. content: "\F1D8";
  10199. }
  10200. .fa-send-o:before,
  10201. .fa-paper-plane-o:before {
  10202. content: "\F1D9";
  10203. }
  10204. .fa-history:before {
  10205. content: "\F1DA";
  10206. }
  10207. .fa-circle-thin:before {
  10208. content: "\F1DB";
  10209. }
  10210. .fa-header:before {
  10211. content: "\F1DC";
  10212. }
  10213. .fa-paragraph:before {
  10214. content: "\F1DD";
  10215. }
  10216. .fa-sliders:before {
  10217. content: "\F1DE";
  10218. }
  10219. .fa-share-alt:before {
  10220. content: "\F1E0";
  10221. }
  10222. .fa-share-alt-square:before {
  10223. content: "\F1E1";
  10224. }
  10225. .fa-bomb:before {
  10226. content: "\F1E2";
  10227. }
  10228. .fa-soccer-ball-o:before,
  10229. .fa-futbol-o:before {
  10230. content: "\F1E3";
  10231. }
  10232. .fa-tty:before {
  10233. content: "\F1E4";
  10234. }
  10235. .fa-binoculars:before {
  10236. content: "\F1E5";
  10237. }
  10238. .fa-plug:before {
  10239. content: "\F1E6";
  10240. }
  10241. .fa-slideshare:before {
  10242. content: "\F1E7";
  10243. }
  10244. .fa-twitch:before {
  10245. content: "\F1E8";
  10246. }
  10247. .fa-yelp:before {
  10248. content: "\F1E9";
  10249. }
  10250. .fa-newspaper-o:before {
  10251. content: "\F1EA";
  10252. }
  10253. .fa-wifi:before {
  10254. content: "\F1EB";
  10255. }
  10256. .fa-calculator:before {
  10257. content: "\F1EC";
  10258. }
  10259. .fa-paypal:before {
  10260. content: "\F1ED";
  10261. }
  10262. .fa-google-wallet:before {
  10263. content: "\F1EE";
  10264. }
  10265. .fa-cc-visa:before {
  10266. content: "\F1F0";
  10267. }
  10268. .fa-cc-mastercard:before {
  10269. content: "\F1F1";
  10270. }
  10271. .fa-cc-discover:before {
  10272. content: "\F1F2";
  10273. }
  10274. .fa-cc-amex:before {
  10275. content: "\F1F3";
  10276. }
  10277. .fa-cc-paypal:before {
  10278. content: "\F1F4";
  10279. }
  10280. .fa-cc-stripe:before {
  10281. content: "\F1F5";
  10282. }
  10283. .fa-bell-slash:before {
  10284. content: "\F1F6";
  10285. }
  10286. .fa-bell-slash-o:before {
  10287. content: "\F1F7";
  10288. }
  10289. .fa-trash:before {
  10290. content: "\F1F8";
  10291. }
  10292. .fa-copyright:before {
  10293. content: "\F1F9";
  10294. }
  10295. .fa-at:before {
  10296. content: "\F1FA";
  10297. }
  10298. .fa-eyedropper:before {
  10299. content: "\F1FB";
  10300. }
  10301. .fa-paint-brush:before {
  10302. content: "\F1FC";
  10303. }
  10304. .fa-birthday-cake:before {
  10305. content: "\F1FD";
  10306. }
  10307. .fa-area-chart:before {
  10308. content: "\F1FE";
  10309. }
  10310. .fa-pie-chart:before {
  10311. content: "\F200";
  10312. }
  10313. .fa-line-chart:before {
  10314. content: "\F201";
  10315. }
  10316. .fa-lastfm:before {
  10317. content: "\F202";
  10318. }
  10319. .fa-lastfm-square:before {
  10320. content: "\F203";
  10321. }
  10322. .fa-toggle-off:before {
  10323. content: "\F204";
  10324. }
  10325. .fa-toggle-on:before {
  10326. content: "\F205";
  10327. }
  10328. .fa-bicycle:before {
  10329. content: "\F206";
  10330. }
  10331. .fa-bus:before {
  10332. content: "\F207";
  10333. }
  10334. .fa-ioxhost:before {
  10335. content: "\F208";
  10336. }
  10337. .fa-angellist:before {
  10338. content: "\F209";
  10339. }
  10340. .fa-cc:before {
  10341. content: "\F20A";
  10342. }
  10343. .fa-shekel:before,
  10344. .fa-sheqel:before,
  10345. .fa-ils:before {
  10346. content: "\F20B";
  10347. }
  10348. .fa-meanpath:before {
  10349. content: "\F20C";
  10350. }
  10351. .fa-buysellads:before {
  10352. content: "\F20D";
  10353. }
  10354. .fa-connectdevelop:before {
  10355. content: "\F20E";
  10356. }
  10357. .fa-dashcube:before {
  10358. content: "\F210";
  10359. }
  10360. .fa-forumbee:before {
  10361. content: "\F211";
  10362. }
  10363. .fa-leanpub:before {
  10364. content: "\F212";
  10365. }
  10366. .fa-sellsy:before {
  10367. content: "\F213";
  10368. }
  10369. .fa-shirtsinbulk:before {
  10370. content: "\F214";
  10371. }
  10372. .fa-simplybuilt:before {
  10373. content: "\F215";
  10374. }
  10375. .fa-skyatlas:before {
  10376. content: "\F216";
  10377. }
  10378. .fa-cart-plus:before {
  10379. content: "\F217";
  10380. }
  10381. .fa-cart-arrow-down:before {
  10382. content: "\F218";
  10383. }
  10384. .fa-diamond:before {
  10385. content: "\F219";
  10386. }
  10387. .fa-ship:before {
  10388. content: "\F21A";
  10389. }
  10390. .fa-user-secret:before {
  10391. content: "\F21B";
  10392. }
  10393. .fa-motorcycle:before {
  10394. content: "\F21C";
  10395. }
  10396. .fa-street-view:before {
  10397. content: "\F21D";
  10398. }
  10399. .fa-heartbeat:before {
  10400. content: "\F21E";
  10401. }
  10402. .fa-venus:before {
  10403. content: "\F221";
  10404. }
  10405. .fa-mars:before {
  10406. content: "\F222";
  10407. }
  10408. .fa-mercury:before {
  10409. content: "\F223";
  10410. }
  10411. .fa-intersex:before,
  10412. .fa-transgender:before {
  10413. content: "\F224";
  10414. }
  10415. .fa-transgender-alt:before {
  10416. content: "\F225";
  10417. }
  10418. .fa-venus-double:before {
  10419. content: "\F226";
  10420. }
  10421. .fa-mars-double:before {
  10422. content: "\F227";
  10423. }
  10424. .fa-venus-mars:before {
  10425. content: "\F228";
  10426. }
  10427. .fa-mars-stroke:before {
  10428. content: "\F229";
  10429. }
  10430. .fa-mars-stroke-v:before {
  10431. content: "\F22A";
  10432. }
  10433. .fa-mars-stroke-h:before {
  10434. content: "\F22B";
  10435. }
  10436. .fa-neuter:before {
  10437. content: "\F22C";
  10438. }
  10439. .fa-genderless:before {
  10440. content: "\F22D";
  10441. }
  10442. .fa-facebook-official:before {
  10443. content: "\F230";
  10444. }
  10445. .fa-pinterest-p:before {
  10446. content: "\F231";
  10447. }
  10448. .fa-whatsapp:before {
  10449. content: "\F232";
  10450. }
  10451. .fa-server:before {
  10452. content: "\F233";
  10453. }
  10454. .fa-user-plus:before {
  10455. content: "\F234";
  10456. }
  10457. .fa-user-times:before {
  10458. content: "\F235";
  10459. }
  10460. .fa-hotel:before,
  10461. .fa-bed:before {
  10462. content: "\F236";
  10463. }
  10464. .fa-viacoin:before {
  10465. content: "\F237";
  10466. }
  10467. .fa-train:before {
  10468. content: "\F238";
  10469. }
  10470. .fa-subway:before {
  10471. content: "\F239";
  10472. }
  10473. .fa-medium:before {
  10474. content: "\F23A";
  10475. }
  10476. .fa-yc:before,
  10477. .fa-y-combinator:before {
  10478. content: "\F23B";
  10479. }
  10480. .fa-optin-monster:before {
  10481. content: "\F23C";
  10482. }
  10483. .fa-opencart:before {
  10484. content: "\F23D";
  10485. }
  10486. .fa-expeditedssl:before {
  10487. content: "\F23E";
  10488. }
  10489. .fa-battery-4:before,
  10490. .fa-battery:before,
  10491. .fa-battery-full:before {
  10492. content: "\F240";
  10493. }
  10494. .fa-battery-3:before,
  10495. .fa-battery-three-quarters:before {
  10496. content: "\F241";
  10497. }
  10498. .fa-battery-2:before,
  10499. .fa-battery-half:before {
  10500. content: "\F242";
  10501. }
  10502. .fa-battery-1:before,
  10503. .fa-battery-quarter:before {
  10504. content: "\F243";
  10505. }
  10506. .fa-battery-0:before,
  10507. .fa-battery-empty:before {
  10508. content: "\F244";
  10509. }
  10510. .fa-mouse-pointer:before {
  10511. content: "\F245";
  10512. }
  10513. .fa-i-cursor:before {
  10514. content: "\F246";
  10515. }
  10516. .fa-object-group:before {
  10517. content: "\F247";
  10518. }
  10519. .fa-object-ungroup:before {
  10520. content: "\F248";
  10521. }
  10522. .fa-sticky-note:before {
  10523. content: "\F249";
  10524. }
  10525. .fa-sticky-note-o:before {
  10526. content: "\F24A";
  10527. }
  10528. .fa-cc-jcb:before {
  10529. content: "\F24B";
  10530. }
  10531. .fa-cc-diners-club:before {
  10532. content: "\F24C";
  10533. }
  10534. .fa-clone:before {
  10535. content: "\F24D";
  10536. }
  10537. .fa-balance-scale:before {
  10538. content: "\F24E";
  10539. }
  10540. .fa-hourglass-o:before {
  10541. content: "\F250";
  10542. }
  10543. .fa-hourglass-1:before,
  10544. .fa-hourglass-start:before {
  10545. content: "\F251";
  10546. }
  10547. .fa-hourglass-2:before,
  10548. .fa-hourglass-half:before {
  10549. content: "\F252";
  10550. }
  10551. .fa-hourglass-3:before,
  10552. .fa-hourglass-end:before {
  10553. content: "\F253";
  10554. }
  10555. .fa-hourglass:before {
  10556. content: "\F254";
  10557. }
  10558. .fa-hand-grab-o:before,
  10559. .fa-hand-rock-o:before {
  10560. content: "\F255";
  10561. }
  10562. .fa-hand-stop-o:before,
  10563. .fa-hand-paper-o:before {
  10564. content: "\F256";
  10565. }
  10566. .fa-hand-scissors-o:before {
  10567. content: "\F257";
  10568. }
  10569. .fa-hand-lizard-o:before {
  10570. content: "\F258";
  10571. }
  10572. .fa-hand-spock-o:before {
  10573. content: "\F259";
  10574. }
  10575. .fa-hand-pointer-o:before {
  10576. content: "\F25A";
  10577. }
  10578. .fa-hand-peace-o:before {
  10579. content: "\F25B";
  10580. }
  10581. .fa-trademark:before {
  10582. content: "\F25C";
  10583. }
  10584. .fa-registered:before {
  10585. content: "\F25D";
  10586. }
  10587. .fa-creative-commons:before {
  10588. content: "\F25E";
  10589. }
  10590. .fa-gg:before {
  10591. content: "\F260";
  10592. }
  10593. .fa-gg-circle:before {
  10594. content: "\F261";
  10595. }
  10596. .fa-tripadvisor:before {
  10597. content: "\F262";
  10598. }
  10599. .fa-odnoklassniki:before {
  10600. content: "\F263";
  10601. }
  10602. .fa-odnoklassniki-square:before {
  10603. content: "\F264";
  10604. }
  10605. .fa-get-pocket:before {
  10606. content: "\F265";
  10607. }
  10608. .fa-wikipedia-w:before {
  10609. content: "\F266";
  10610. }
  10611. .fa-safari:before {
  10612. content: "\F267";
  10613. }
  10614. .fa-chrome:before {
  10615. content: "\F268";
  10616. }
  10617. .fa-firefox:before {
  10618. content: "\F269";
  10619. }
  10620. .fa-opera:before {
  10621. content: "\F26A";
  10622. }
  10623. .fa-internet-explorer:before {
  10624. content: "\F26B";
  10625. }
  10626. .fa-tv:before,
  10627. .fa-television:before {
  10628. content: "\F26C";
  10629. }
  10630. .fa-contao:before {
  10631. content: "\F26D";
  10632. }
  10633. .fa-500px:before {
  10634. content: "\F26E";
  10635. }
  10636. .fa-amazon:before {
  10637. content: "\F270";
  10638. }
  10639. .fa-calendar-plus-o:before {
  10640. content: "\F271";
  10641. }
  10642. .fa-calendar-minus-o:before {
  10643. content: "\F272";
  10644. }
  10645. .fa-calendar-times-o:before {
  10646. content: "\F273";
  10647. }
  10648. .fa-calendar-check-o:before {
  10649. content: "\F274";
  10650. }
  10651. .fa-industry:before {
  10652. content: "\F275";
  10653. }
  10654. .fa-map-pin:before {
  10655. content: "\F276";
  10656. }
  10657. .fa-map-signs:before {
  10658. content: "\F277";
  10659. }
  10660. .fa-map-o:before {
  10661. content: "\F278";
  10662. }
  10663. .fa-map:before {
  10664. content: "\F279";
  10665. }
  10666. .fa-commenting:before {
  10667. content: "\F27A";
  10668. }
  10669. .fa-commenting-o:before {
  10670. content: "\F27B";
  10671. }
  10672. .fa-houzz:before {
  10673. content: "\F27C";
  10674. }
  10675. .fa-vimeo:before {
  10676. content: "\F27D";
  10677. }
  10678. .fa-black-tie:before {
  10679. content: "\F27E";
  10680. }
  10681. .fa-fonticons:before {
  10682. content: "\F280";
  10683. }
  10684. .fa-reddit-alien:before {
  10685. content: "\F281";
  10686. }
  10687. .fa-edge:before {
  10688. content: "\F282";
  10689. }
  10690. .fa-credit-card-alt:before {
  10691. content: "\F283";
  10692. }
  10693. .fa-codiepie:before {
  10694. content: "\F284";
  10695. }
  10696. .fa-modx:before {
  10697. content: "\F285";
  10698. }
  10699. .fa-fort-awesome:before {
  10700. content: "\F286";
  10701. }
  10702. .fa-usb:before {
  10703. content: "\F287";
  10704. }
  10705. .fa-product-hunt:before {
  10706. content: "\F288";
  10707. }
  10708. .fa-mixcloud:before {
  10709. content: "\F289";
  10710. }
  10711. .fa-scribd:before {
  10712. content: "\F28A";
  10713. }
  10714. .fa-pause-circle:before {
  10715. content: "\F28B";
  10716. }
  10717. .fa-pause-circle-o:before {
  10718. content: "\F28C";
  10719. }
  10720. .fa-stop-circle:before {
  10721. content: "\F28D";
  10722. }
  10723. .fa-stop-circle-o:before {
  10724. content: "\F28E";
  10725. }
  10726. .fa-shopping-bag:before {
  10727. content: "\F290";
  10728. }
  10729. .fa-shopping-basket:before {
  10730. content: "\F291";
  10731. }
  10732. .fa-hashtag:before {
  10733. content: "\F292";
  10734. }
  10735. .fa-bluetooth:before {
  10736. content: "\F293";
  10737. }
  10738. .fa-bluetooth-b:before {
  10739. content: "\F294";
  10740. }
  10741. .fa-percent:before {
  10742. content: "\F295";
  10743. }
  10744. .fa-gitlab:before {
  10745. content: "\F296";
  10746. }
  10747. .fa-wpbeginner:before {
  10748. content: "\F297";
  10749. }
  10750. .fa-wpforms:before {
  10751. content: "\F298";
  10752. }
  10753. .fa-envira:before {
  10754. content: "\F299";
  10755. }
  10756. .fa-universal-access:before {
  10757. content: "\F29A";
  10758. }
  10759. .fa-wheelchair-alt:before {
  10760. content: "\F29B";
  10761. }
  10762. .fa-question-circle-o:before {
  10763. content: "\F29C";
  10764. }
  10765. .fa-blind:before {
  10766. content: "\F29D";
  10767. }
  10768. .fa-audio-description:before {
  10769. content: "\F29E";
  10770. }
  10771. .fa-volume-control-phone:before {
  10772. content: "\F2A0";
  10773. }
  10774. .fa-braille:before {
  10775. content: "\F2A1";
  10776. }
  10777. .fa-assistive-listening-systems:before {
  10778. content: "\F2A2";
  10779. }
  10780. .fa-asl-interpreting:before,
  10781. .fa-american-sign-language-interpreting:before {
  10782. content: "\F2A3";
  10783. }
  10784. .fa-deafness:before,
  10785. .fa-hard-of-hearing:before,
  10786. .fa-deaf:before {
  10787. content: "\F2A4";
  10788. }
  10789. .fa-glide:before {
  10790. content: "\F2A5";
  10791. }
  10792. .fa-glide-g:before {
  10793. content: "\F2A6";
  10794. }
  10795. .fa-signing:before,
  10796. .fa-sign-language:before {
  10797. content: "\F2A7";
  10798. }
  10799. .fa-low-vision:before {
  10800. content: "\F2A8";
  10801. }
  10802. .fa-viadeo:before {
  10803. content: "\F2A9";
  10804. }
  10805. .fa-viadeo-square:before {
  10806. content: "\F2AA";
  10807. }
  10808. .fa-snapchat:before {
  10809. content: "\F2AB";
  10810. }
  10811. .fa-snapchat-ghost:before {
  10812. content: "\F2AC";
  10813. }
  10814. .fa-snapchat-square:before {
  10815. content: "\F2AD";
  10816. }
  10817. .fa-pied-piper:before {
  10818. content: "\F2AE";
  10819. }
  10820. .fa-first-order:before {
  10821. content: "\F2B0";
  10822. }
  10823. .fa-yoast:before {
  10824. content: "\F2B1";
  10825. }
  10826. .fa-themeisle:before {
  10827. content: "\F2B2";
  10828. }
  10829. .fa-google-plus-circle:before,
  10830. .fa-google-plus-official:before {
  10831. content: "\F2B3";
  10832. }
  10833. .fa-fa:before,
  10834. .fa-font-awesome:before {
  10835. content: "\F2B4";
  10836. }
  10837. .fa-handshake-o:before {
  10838. content: "\F2B5";
  10839. }
  10840. .fa-envelope-open:before {
  10841. content: "\F2B6";
  10842. }
  10843. .fa-envelope-open-o:before {
  10844. content: "\F2B7";
  10845. }
  10846. .fa-linode:before {
  10847. content: "\F2B8";
  10848. }
  10849. .fa-address-book:before {
  10850. content: "\F2B9";
  10851. }
  10852. .fa-address-book-o:before {
  10853. content: "\F2BA";
  10854. }
  10855. .fa-vcard:before,
  10856. .fa-address-card:before {
  10857. content: "\F2BB";
  10858. }
  10859. .fa-vcard-o:before,
  10860. .fa-address-card-o:before {
  10861. content: "\F2BC";
  10862. }
  10863. .fa-user-circle:before {
  10864. content: "\F2BD";
  10865. }
  10866. .fa-user-circle-o:before {
  10867. content: "\F2BE";
  10868. }
  10869. .fa-user-o:before {
  10870. content: "\F2C0";
  10871. }
  10872. .fa-id-badge:before {
  10873. content: "\F2C1";
  10874. }
  10875. .fa-drivers-license:before,
  10876. .fa-id-card:before {
  10877. content: "\F2C2";
  10878. }
  10879. .fa-drivers-license-o:before,
  10880. .fa-id-card-o:before {
  10881. content: "\F2C3";
  10882. }
  10883. .fa-quora:before {
  10884. content: "\F2C4";
  10885. }
  10886. .fa-free-code-camp:before {
  10887. content: "\F2C5";
  10888. }
  10889. .fa-telegram:before {
  10890. content: "\F2C6";
  10891. }
  10892. .fa-thermometer-4:before,
  10893. .fa-thermometer:before,
  10894. .fa-thermometer-full:before {
  10895. content: "\F2C7";
  10896. }
  10897. .fa-thermometer-3:before,
  10898. .fa-thermometer-three-quarters:before {
  10899. content: "\F2C8";
  10900. }
  10901. .fa-thermometer-2:before,
  10902. .fa-thermometer-half:before {
  10903. content: "\F2C9";
  10904. }
  10905. .fa-thermometer-1:before,
  10906. .fa-thermometer-quarter:before {
  10907. content: "\F2CA";
  10908. }
  10909. .fa-thermometer-0:before,
  10910. .fa-thermometer-empty:before {
  10911. content: "\F2CB";
  10912. }
  10913. .fa-shower:before {
  10914. content: "\F2CC";
  10915. }
  10916. .fa-bathtub:before,
  10917. .fa-s15:before,
  10918. .fa-bath:before {
  10919. content: "\F2CD";
  10920. }
  10921. .fa-podcast:before {
  10922. content: "\F2CE";
  10923. }
  10924. .fa-window-maximize:before {
  10925. content: "\F2D0";
  10926. }
  10927. .fa-window-minimize:before {
  10928. content: "\F2D1";
  10929. }
  10930. .fa-window-restore:before {
  10931. content: "\F2D2";
  10932. }
  10933. .fa-times-rectangle:before,
  10934. .fa-window-close:before {
  10935. content: "\F2D3";
  10936. }
  10937. .fa-times-rectangle-o:before,
  10938. .fa-window-close-o:before {
  10939. content: "\F2D4";
  10940. }
  10941. .fa-bandcamp:before {
  10942. content: "\F2D5";
  10943. }
  10944. .fa-grav:before {
  10945. content: "\F2D6";
  10946. }
  10947. .fa-etsy:before {
  10948. content: "\F2D7";
  10949. }
  10950. .fa-imdb:before {
  10951. content: "\F2D8";
  10952. }
  10953. .fa-ravelry:before {
  10954. content: "\F2D9";
  10955. }
  10956. .fa-eercast:before {
  10957. content: "\F2DA";
  10958. }
  10959. .fa-microchip:before {
  10960. content: "\F2DB";
  10961. }
  10962. .fa-snowflake-o:before {
  10963. content: "\F2DC";
  10964. }
  10965. .fa-superpowers:before {
  10966. content: "\F2DD";
  10967. }
  10968. .fa-wpexplorer:before {
  10969. content: "\F2DE";
  10970. }
  10971. .fa-meetup:before {
  10972. content: "\F2E0";
  10973. }
  10974. .sr-only {
  10975. position: absolute;
  10976. width: 1px;
  10977. height: 1px;
  10978. padding: 0;
  10979. margin: -1px;
  10980. overflow: hidden;
  10981. clip: rect(0, 0, 0, 0);
  10982. border: 0;
  10983. }
  10984. .sr-only-focusable:active,
  10985. .sr-only-focusable:focus {
  10986. position: static;
  10987. width: auto;
  10988. height: auto;
  10989. margin: 0;
  10990. overflow: visible;
  10991. clip: auto;
  10992. }