indigo.css 184 KB

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