bootstrap.css 155 KB

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