bootstrap.css 170 KB

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