bootstrap.css 187 KB

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