all.css 196 KB

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