bootstrap.css 189 KB

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