bootstrap.css 176 KB

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