bootstrap.css 190 KB

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