bootstrap.css 174 KB

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