bootstrap.css 135 KB

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