all.css 283 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056
  1. .align-baseline {
  2. vertical-align: baseline !important;
  3. }
  4. .align-top {
  5. vertical-align: top !important;
  6. }
  7. .align-middle {
  8. vertical-align: middle !important;
  9. }
  10. .align-bottom {
  11. vertical-align: bottom !important;
  12. }
  13. .align-text-bottom {
  14. vertical-align: text-bottom !important;
  15. }
  16. .align-text-top {
  17. vertical-align: text-top !important;
  18. }
  19. .bg-primary {
  20. background-color: #EE7800 !important;
  21. }
  22. a.bg-primary:hover, a.bg-primary:focus,
  23. button.bg-primary:hover,
  24. button.bg-primary:focus {
  25. background-color: #bb5e00 !important;
  26. }
  27. .bg-secondary {
  28. background-color: #AAAAAA !important;
  29. }
  30. a.bg-secondary:hover, a.bg-secondary:focus,
  31. button.bg-secondary:hover,
  32. button.bg-secondary:focus {
  33. background-color: #919191 !important;
  34. }
  35. .bg-success {
  36. background-color: #28a745 !important;
  37. }
  38. a.bg-success:hover, a.bg-success:focus,
  39. button.bg-success:hover,
  40. button.bg-success:focus {
  41. background-color: #1e7e34 !important;
  42. }
  43. .bg-info {
  44. background-color: #17a2b8 !important;
  45. }
  46. a.bg-info:hover, a.bg-info:focus,
  47. button.bg-info:hover,
  48. button.bg-info:focus {
  49. background-color: #117a8b !important;
  50. }
  51. .bg-warning {
  52. background-color: #ffc107 !important;
  53. }
  54. a.bg-warning:hover, a.bg-warning:focus,
  55. button.bg-warning:hover,
  56. button.bg-warning:focus {
  57. background-color: #d39e00 !important;
  58. }
  59. .bg-danger {
  60. background-color: #dc3545 !important;
  61. }
  62. a.bg-danger:hover, a.bg-danger:focus,
  63. button.bg-danger:hover,
  64. button.bg-danger:focus {
  65. background-color: #bd2130 !important;
  66. }
  67. .bg-light {
  68. background-color: #f8f9fa !important;
  69. }
  70. a.bg-light:hover, a.bg-light:focus,
  71. button.bg-light:hover,
  72. button.bg-light:focus {
  73. background-color: #dae0e5 !important;
  74. }
  75. .bg-dark {
  76. background-color: #343a40 !important;
  77. }
  78. a.bg-dark:hover, a.bg-dark:focus,
  79. button.bg-dark:hover,
  80. button.bg-dark:focus {
  81. background-color: #1d2124 !important;
  82. }
  83. .bg-white {
  84. background-color: #fff !important;
  85. }
  86. .bg-transparent {
  87. background-color: transparent !important;
  88. }
  89. .border {
  90. border: 1px solid #dee2e6 !important;
  91. }
  92. .border-top {
  93. border-top: 1px solid #dee2e6 !important;
  94. }
  95. .border-right {
  96. border-right: 1px solid #dee2e6 !important;
  97. }
  98. .border-bottom {
  99. border-bottom: 1px solid #dee2e6 !important;
  100. }
  101. .border-left {
  102. border-left: 1px solid #dee2e6 !important;
  103. }
  104. .border-0 {
  105. border: 0 !important;
  106. }
  107. .border-top-0 {
  108. border-top: 0 !important;
  109. }
  110. .border-right-0 {
  111. border-right: 0 !important;
  112. }
  113. .border-bottom-0 {
  114. border-bottom: 0 !important;
  115. }
  116. .border-left-0 {
  117. border-left: 0 !important;
  118. }
  119. .border-primary {
  120. border-color: #EE7800 !important;
  121. }
  122. .border-secondary {
  123. border-color: #AAAAAA !important;
  124. }
  125. .border-success {
  126. border-color: #28a745 !important;
  127. }
  128. .border-info {
  129. border-color: #17a2b8 !important;
  130. }
  131. .border-warning {
  132. border-color: #ffc107 !important;
  133. }
  134. .border-danger {
  135. border-color: #dc3545 !important;
  136. }
  137. .border-light {
  138. border-color: #f8f9fa !important;
  139. }
  140. .border-dark {
  141. border-color: #343a40 !important;
  142. }
  143. .border-white {
  144. border-color: #fff !important;
  145. }
  146. .rounded-sm {
  147. border-radius: 0.2rem !important;
  148. }
  149. .rounded {
  150. border-radius: 0.25rem !important;
  151. }
  152. .rounded-top {
  153. border-top-left-radius: 0.25rem !important;
  154. border-top-right-radius: 0.25rem !important;
  155. }
  156. .rounded-right {
  157. border-top-right-radius: 0.25rem !important;
  158. border-bottom-right-radius: 0.25rem !important;
  159. }
  160. .rounded-bottom {
  161. border-bottom-right-radius: 0.25rem !important;
  162. border-bottom-left-radius: 0.25rem !important;
  163. }
  164. .rounded-left {
  165. border-top-left-radius: 0.25rem !important;
  166. border-bottom-left-radius: 0.25rem !important;
  167. }
  168. .rounded-lg {
  169. border-radius: 0.3rem !important;
  170. }
  171. .rounded-circle {
  172. border-radius: 50% !important;
  173. }
  174. .rounded-pill {
  175. border-radius: 50rem !important;
  176. }
  177. .rounded-0 {
  178. border-radius: 0 !important;
  179. }
  180. .clearfix::after {
  181. display: block;
  182. clear: both;
  183. content: "";
  184. }
  185. .d-none {
  186. display: none !important;
  187. }
  188. .d-inline {
  189. display: inline !important;
  190. }
  191. .d-inline-block {
  192. display: inline-block !important;
  193. }
  194. .d-block {
  195. display: block !important;
  196. }
  197. .d-table {
  198. display: table !important;
  199. }
  200. .d-table-row {
  201. display: table-row !important;
  202. }
  203. .d-table-cell {
  204. display: table-cell !important;
  205. }
  206. .d-flex {
  207. display: -webkit-box !important;
  208. display: -ms-flexbox !important;
  209. display: flex !important;
  210. }
  211. .d-inline-flex {
  212. display: -webkit-inline-box !important;
  213. display: -ms-inline-flexbox !important;
  214. display: inline-flex !important;
  215. }
  216. @media (min-width: 576px) {
  217. .d-sm-none {
  218. display: none !important;
  219. }
  220. .d-sm-inline {
  221. display: inline !important;
  222. }
  223. .d-sm-inline-block {
  224. display: inline-block !important;
  225. }
  226. .d-sm-block {
  227. display: block !important;
  228. }
  229. .d-sm-table {
  230. display: table !important;
  231. }
  232. .d-sm-table-row {
  233. display: table-row !important;
  234. }
  235. .d-sm-table-cell {
  236. display: table-cell !important;
  237. }
  238. .d-sm-flex {
  239. display: -webkit-box !important;
  240. display: -ms-flexbox !important;
  241. display: flex !important;
  242. }
  243. .d-sm-inline-flex {
  244. display: -webkit-inline-box !important;
  245. display: -ms-inline-flexbox !important;
  246. display: inline-flex !important;
  247. }
  248. }
  249. @media (min-width: 768px) {
  250. .d-md-none {
  251. display: none !important;
  252. }
  253. .d-md-inline {
  254. display: inline !important;
  255. }
  256. .d-md-inline-block {
  257. display: inline-block !important;
  258. }
  259. .d-md-block {
  260. display: block !important;
  261. }
  262. .d-md-table {
  263. display: table !important;
  264. }
  265. .d-md-table-row {
  266. display: table-row !important;
  267. }
  268. .d-md-table-cell {
  269. display: table-cell !important;
  270. }
  271. .d-md-flex {
  272. display: -webkit-box !important;
  273. display: -ms-flexbox !important;
  274. display: flex !important;
  275. }
  276. .d-md-inline-flex {
  277. display: -webkit-inline-box !important;
  278. display: -ms-inline-flexbox !important;
  279. display: inline-flex !important;
  280. }
  281. }
  282. @media (min-width: 992px) {
  283. .d-lg-none {
  284. display: none !important;
  285. }
  286. .d-lg-inline {
  287. display: inline !important;
  288. }
  289. .d-lg-inline-block {
  290. display: inline-block !important;
  291. }
  292. .d-lg-block {
  293. display: block !important;
  294. }
  295. .d-lg-table {
  296. display: table !important;
  297. }
  298. .d-lg-table-row {
  299. display: table-row !important;
  300. }
  301. .d-lg-table-cell {
  302. display: table-cell !important;
  303. }
  304. .d-lg-flex {
  305. display: -webkit-box !important;
  306. display: -ms-flexbox !important;
  307. display: flex !important;
  308. }
  309. .d-lg-inline-flex {
  310. display: -webkit-inline-box !important;
  311. display: -ms-inline-flexbox !important;
  312. display: inline-flex !important;
  313. }
  314. }
  315. @media (min-width: 1200px) {
  316. .d-xl-none {
  317. display: none !important;
  318. }
  319. .d-xl-inline {
  320. display: inline !important;
  321. }
  322. .d-xl-inline-block {
  323. display: inline-block !important;
  324. }
  325. .d-xl-block {
  326. display: block !important;
  327. }
  328. .d-xl-table {
  329. display: table !important;
  330. }
  331. .d-xl-table-row {
  332. display: table-row !important;
  333. }
  334. .d-xl-table-cell {
  335. display: table-cell !important;
  336. }
  337. .d-xl-flex {
  338. display: -webkit-box !important;
  339. display: -ms-flexbox !important;
  340. display: flex !important;
  341. }
  342. .d-xl-inline-flex {
  343. display: -webkit-inline-box !important;
  344. display: -ms-inline-flexbox !important;
  345. display: inline-flex !important;
  346. }
  347. }
  348. @media print {
  349. .d-print-none {
  350. display: none !important;
  351. }
  352. .d-print-inline {
  353. display: inline !important;
  354. }
  355. .d-print-inline-block {
  356. display: inline-block !important;
  357. }
  358. .d-print-block {
  359. display: block !important;
  360. }
  361. .d-print-table {
  362. display: table !important;
  363. }
  364. .d-print-table-row {
  365. display: table-row !important;
  366. }
  367. .d-print-table-cell {
  368. display: table-cell !important;
  369. }
  370. .d-print-flex {
  371. display: -webkit-box !important;
  372. display: -ms-flexbox !important;
  373. display: flex !important;
  374. }
  375. .d-print-inline-flex {
  376. display: -webkit-inline-box !important;
  377. display: -ms-inline-flexbox !important;
  378. display: inline-flex !important;
  379. }
  380. }
  381. .embed-responsive {
  382. position: relative;
  383. display: block;
  384. width: 100%;
  385. padding: 0;
  386. overflow: hidden;
  387. }
  388. .embed-responsive::before {
  389. display: block;
  390. content: "";
  391. }
  392. .embed-responsive .embed-responsive-item,
  393. .embed-responsive iframe,
  394. .embed-responsive embed,
  395. .embed-responsive object,
  396. .embed-responsive video {
  397. position: absolute;
  398. top: 0;
  399. bottom: 0;
  400. left: 0;
  401. width: 100%;
  402. height: 100%;
  403. border: 0;
  404. }
  405. .embed-responsive-21by9::before {
  406. padding-top: 42.85714%;
  407. }
  408. .embed-responsive-16by9::before {
  409. padding-top: 56.25%;
  410. }
  411. .embed-responsive-4by3::before {
  412. padding-top: 75%;
  413. }
  414. .embed-responsive-1by1::before {
  415. padding-top: 100%;
  416. }
  417. .flex-row {
  418. -webkit-box-orient: horizontal !important;
  419. -webkit-box-direction: normal !important;
  420. -ms-flex-direction: row !important;
  421. flex-direction: row !important;
  422. }
  423. .flex-column {
  424. -webkit-box-orient: vertical !important;
  425. -webkit-box-direction: normal !important;
  426. -ms-flex-direction: column !important;
  427. flex-direction: column !important;
  428. }
  429. .flex-row-reverse {
  430. -webkit-box-orient: horizontal !important;
  431. -webkit-box-direction: reverse !important;
  432. -ms-flex-direction: row-reverse !important;
  433. flex-direction: row-reverse !important;
  434. }
  435. .flex-column-reverse {
  436. -webkit-box-orient: vertical !important;
  437. -webkit-box-direction: reverse !important;
  438. -ms-flex-direction: column-reverse !important;
  439. flex-direction: column-reverse !important;
  440. }
  441. .flex-wrap {
  442. -ms-flex-wrap: wrap !important;
  443. flex-wrap: wrap !important;
  444. }
  445. .flex-nowrap {
  446. -ms-flex-wrap: nowrap !important;
  447. flex-wrap: nowrap !important;
  448. }
  449. .flex-wrap-reverse {
  450. -ms-flex-wrap: wrap-reverse !important;
  451. flex-wrap: wrap-reverse !important;
  452. }
  453. .flex-fill {
  454. -webkit-box-flex: 1 !important;
  455. -ms-flex: 1 1 auto !important;
  456. flex: 1 1 auto !important;
  457. }
  458. .flex-grow-0 {
  459. -webkit-box-flex: 0 !important;
  460. -ms-flex-positive: 0 !important;
  461. flex-grow: 0 !important;
  462. }
  463. .flex-grow-1 {
  464. -webkit-box-flex: 1 !important;
  465. -ms-flex-positive: 1 !important;
  466. flex-grow: 1 !important;
  467. }
  468. .flex-shrink-0 {
  469. -ms-flex-negative: 0 !important;
  470. flex-shrink: 0 !important;
  471. }
  472. .flex-shrink-1 {
  473. -ms-flex-negative: 1 !important;
  474. flex-shrink: 1 !important;
  475. }
  476. .justify-content-start {
  477. -webkit-box-pack: start !important;
  478. -ms-flex-pack: start !important;
  479. justify-content: flex-start !important;
  480. }
  481. .justify-content-end {
  482. -webkit-box-pack: end !important;
  483. -ms-flex-pack: end !important;
  484. justify-content: flex-end !important;
  485. }
  486. .justify-content-center {
  487. -webkit-box-pack: center !important;
  488. -ms-flex-pack: center !important;
  489. justify-content: center !important;
  490. }
  491. .justify-content-between {
  492. -webkit-box-pack: justify !important;
  493. -ms-flex-pack: justify !important;
  494. justify-content: space-between !important;
  495. }
  496. .justify-content-around {
  497. -ms-flex-pack: distribute !important;
  498. justify-content: space-around !important;
  499. }
  500. .align-items-start {
  501. -webkit-box-align: start !important;
  502. -ms-flex-align: start !important;
  503. align-items: flex-start !important;
  504. }
  505. .align-items-end {
  506. -webkit-box-align: end !important;
  507. -ms-flex-align: end !important;
  508. align-items: flex-end !important;
  509. }
  510. .align-items-center {
  511. -webkit-box-align: center !important;
  512. -ms-flex-align: center !important;
  513. align-items: center !important;
  514. }
  515. .align-items-baseline {
  516. -webkit-box-align: baseline !important;
  517. -ms-flex-align: baseline !important;
  518. align-items: baseline !important;
  519. }
  520. .align-items-stretch {
  521. -webkit-box-align: stretch !important;
  522. -ms-flex-align: stretch !important;
  523. align-items: stretch !important;
  524. }
  525. .align-content-start {
  526. -ms-flex-line-pack: start !important;
  527. align-content: flex-start !important;
  528. }
  529. .align-content-end {
  530. -ms-flex-line-pack: end !important;
  531. align-content: flex-end !important;
  532. }
  533. .align-content-center {
  534. -ms-flex-line-pack: center !important;
  535. align-content: center !important;
  536. }
  537. .align-content-between {
  538. -ms-flex-line-pack: justify !important;
  539. align-content: space-between !important;
  540. }
  541. .align-content-around {
  542. -ms-flex-line-pack: distribute !important;
  543. align-content: space-around !important;
  544. }
  545. .align-content-stretch {
  546. -ms-flex-line-pack: stretch !important;
  547. align-content: stretch !important;
  548. }
  549. .align-self-auto {
  550. -ms-flex-item-align: auto !important;
  551. -ms-grid-row-align: auto !important;
  552. align-self: auto !important;
  553. }
  554. .align-self-start {
  555. -ms-flex-item-align: start !important;
  556. align-self: flex-start !important;
  557. }
  558. .align-self-end {
  559. -ms-flex-item-align: end !important;
  560. align-self: flex-end !important;
  561. }
  562. .align-self-center {
  563. -ms-flex-item-align: center !important;
  564. -ms-grid-row-align: center !important;
  565. align-self: center !important;
  566. }
  567. .align-self-baseline {
  568. -ms-flex-item-align: baseline !important;
  569. align-self: baseline !important;
  570. }
  571. .align-self-stretch {
  572. -ms-flex-item-align: stretch !important;
  573. -ms-grid-row-align: stretch !important;
  574. align-self: stretch !important;
  575. }
  576. @media (min-width: 576px) {
  577. .flex-sm-row {
  578. -webkit-box-orient: horizontal !important;
  579. -webkit-box-direction: normal !important;
  580. -ms-flex-direction: row !important;
  581. flex-direction: row !important;
  582. }
  583. .flex-sm-column {
  584. -webkit-box-orient: vertical !important;
  585. -webkit-box-direction: normal !important;
  586. -ms-flex-direction: column !important;
  587. flex-direction: column !important;
  588. }
  589. .flex-sm-row-reverse {
  590. -webkit-box-orient: horizontal !important;
  591. -webkit-box-direction: reverse !important;
  592. -ms-flex-direction: row-reverse !important;
  593. flex-direction: row-reverse !important;
  594. }
  595. .flex-sm-column-reverse {
  596. -webkit-box-orient: vertical !important;
  597. -webkit-box-direction: reverse !important;
  598. -ms-flex-direction: column-reverse !important;
  599. flex-direction: column-reverse !important;
  600. }
  601. .flex-sm-wrap {
  602. -ms-flex-wrap: wrap !important;
  603. flex-wrap: wrap !important;
  604. }
  605. .flex-sm-nowrap {
  606. -ms-flex-wrap: nowrap !important;
  607. flex-wrap: nowrap !important;
  608. }
  609. .flex-sm-wrap-reverse {
  610. -ms-flex-wrap: wrap-reverse !important;
  611. flex-wrap: wrap-reverse !important;
  612. }
  613. .flex-sm-fill {
  614. -webkit-box-flex: 1 !important;
  615. -ms-flex: 1 1 auto !important;
  616. flex: 1 1 auto !important;
  617. }
  618. .flex-sm-grow-0 {
  619. -webkit-box-flex: 0 !important;
  620. -ms-flex-positive: 0 !important;
  621. flex-grow: 0 !important;
  622. }
  623. .flex-sm-grow-1 {
  624. -webkit-box-flex: 1 !important;
  625. -ms-flex-positive: 1 !important;
  626. flex-grow: 1 !important;
  627. }
  628. .flex-sm-shrink-0 {
  629. -ms-flex-negative: 0 !important;
  630. flex-shrink: 0 !important;
  631. }
  632. .flex-sm-shrink-1 {
  633. -ms-flex-negative: 1 !important;
  634. flex-shrink: 1 !important;
  635. }
  636. .justify-content-sm-start {
  637. -webkit-box-pack: start !important;
  638. -ms-flex-pack: start !important;
  639. justify-content: flex-start !important;
  640. }
  641. .justify-content-sm-end {
  642. -webkit-box-pack: end !important;
  643. -ms-flex-pack: end !important;
  644. justify-content: flex-end !important;
  645. }
  646. .justify-content-sm-center {
  647. -webkit-box-pack: center !important;
  648. -ms-flex-pack: center !important;
  649. justify-content: center !important;
  650. }
  651. .justify-content-sm-between {
  652. -webkit-box-pack: justify !important;
  653. -ms-flex-pack: justify !important;
  654. justify-content: space-between !important;
  655. }
  656. .justify-content-sm-around {
  657. -ms-flex-pack: distribute !important;
  658. justify-content: space-around !important;
  659. }
  660. .align-items-sm-start {
  661. -webkit-box-align: start !important;
  662. -ms-flex-align: start !important;
  663. align-items: flex-start !important;
  664. }
  665. .align-items-sm-end {
  666. -webkit-box-align: end !important;
  667. -ms-flex-align: end !important;
  668. align-items: flex-end !important;
  669. }
  670. .align-items-sm-center {
  671. -webkit-box-align: center !important;
  672. -ms-flex-align: center !important;
  673. align-items: center !important;
  674. }
  675. .align-items-sm-baseline {
  676. -webkit-box-align: baseline !important;
  677. -ms-flex-align: baseline !important;
  678. align-items: baseline !important;
  679. }
  680. .align-items-sm-stretch {
  681. -webkit-box-align: stretch !important;
  682. -ms-flex-align: stretch !important;
  683. align-items: stretch !important;
  684. }
  685. .align-content-sm-start {
  686. -ms-flex-line-pack: start !important;
  687. align-content: flex-start !important;
  688. }
  689. .align-content-sm-end {
  690. -ms-flex-line-pack: end !important;
  691. align-content: flex-end !important;
  692. }
  693. .align-content-sm-center {
  694. -ms-flex-line-pack: center !important;
  695. align-content: center !important;
  696. }
  697. .align-content-sm-between {
  698. -ms-flex-line-pack: justify !important;
  699. align-content: space-between !important;
  700. }
  701. .align-content-sm-around {
  702. -ms-flex-line-pack: distribute !important;
  703. align-content: space-around !important;
  704. }
  705. .align-content-sm-stretch {
  706. -ms-flex-line-pack: stretch !important;
  707. align-content: stretch !important;
  708. }
  709. .align-self-sm-auto {
  710. -ms-flex-item-align: auto !important;
  711. -ms-grid-row-align: auto !important;
  712. align-self: auto !important;
  713. }
  714. .align-self-sm-start {
  715. -ms-flex-item-align: start !important;
  716. align-self: flex-start !important;
  717. }
  718. .align-self-sm-end {
  719. -ms-flex-item-align: end !important;
  720. align-self: flex-end !important;
  721. }
  722. .align-self-sm-center {
  723. -ms-flex-item-align: center !important;
  724. -ms-grid-row-align: center !important;
  725. align-self: center !important;
  726. }
  727. .align-self-sm-baseline {
  728. -ms-flex-item-align: baseline !important;
  729. align-self: baseline !important;
  730. }
  731. .align-self-sm-stretch {
  732. -ms-flex-item-align: stretch !important;
  733. -ms-grid-row-align: stretch !important;
  734. align-self: stretch !important;
  735. }
  736. }
  737. @media (min-width: 768px) {
  738. .flex-md-row {
  739. -webkit-box-orient: horizontal !important;
  740. -webkit-box-direction: normal !important;
  741. -ms-flex-direction: row !important;
  742. flex-direction: row !important;
  743. }
  744. .flex-md-column {
  745. -webkit-box-orient: vertical !important;
  746. -webkit-box-direction: normal !important;
  747. -ms-flex-direction: column !important;
  748. flex-direction: column !important;
  749. }
  750. .flex-md-row-reverse {
  751. -webkit-box-orient: horizontal !important;
  752. -webkit-box-direction: reverse !important;
  753. -ms-flex-direction: row-reverse !important;
  754. flex-direction: row-reverse !important;
  755. }
  756. .flex-md-column-reverse {
  757. -webkit-box-orient: vertical !important;
  758. -webkit-box-direction: reverse !important;
  759. -ms-flex-direction: column-reverse !important;
  760. flex-direction: column-reverse !important;
  761. }
  762. .flex-md-wrap {
  763. -ms-flex-wrap: wrap !important;
  764. flex-wrap: wrap !important;
  765. }
  766. .flex-md-nowrap {
  767. -ms-flex-wrap: nowrap !important;
  768. flex-wrap: nowrap !important;
  769. }
  770. .flex-md-wrap-reverse {
  771. -ms-flex-wrap: wrap-reverse !important;
  772. flex-wrap: wrap-reverse !important;
  773. }
  774. .flex-md-fill {
  775. -webkit-box-flex: 1 !important;
  776. -ms-flex: 1 1 auto !important;
  777. flex: 1 1 auto !important;
  778. }
  779. .flex-md-grow-0 {
  780. -webkit-box-flex: 0 !important;
  781. -ms-flex-positive: 0 !important;
  782. flex-grow: 0 !important;
  783. }
  784. .flex-md-grow-1 {
  785. -webkit-box-flex: 1 !important;
  786. -ms-flex-positive: 1 !important;
  787. flex-grow: 1 !important;
  788. }
  789. .flex-md-shrink-0 {
  790. -ms-flex-negative: 0 !important;
  791. flex-shrink: 0 !important;
  792. }
  793. .flex-md-shrink-1 {
  794. -ms-flex-negative: 1 !important;
  795. flex-shrink: 1 !important;
  796. }
  797. .justify-content-md-start {
  798. -webkit-box-pack: start !important;
  799. -ms-flex-pack: start !important;
  800. justify-content: flex-start !important;
  801. }
  802. .justify-content-md-end {
  803. -webkit-box-pack: end !important;
  804. -ms-flex-pack: end !important;
  805. justify-content: flex-end !important;
  806. }
  807. .justify-content-md-center {
  808. -webkit-box-pack: center !important;
  809. -ms-flex-pack: center !important;
  810. justify-content: center !important;
  811. }
  812. .justify-content-md-between {
  813. -webkit-box-pack: justify !important;
  814. -ms-flex-pack: justify !important;
  815. justify-content: space-between !important;
  816. }
  817. .justify-content-md-around {
  818. -ms-flex-pack: distribute !important;
  819. justify-content: space-around !important;
  820. }
  821. .align-items-md-start {
  822. -webkit-box-align: start !important;
  823. -ms-flex-align: start !important;
  824. align-items: flex-start !important;
  825. }
  826. .align-items-md-end {
  827. -webkit-box-align: end !important;
  828. -ms-flex-align: end !important;
  829. align-items: flex-end !important;
  830. }
  831. .align-items-md-center {
  832. -webkit-box-align: center !important;
  833. -ms-flex-align: center !important;
  834. align-items: center !important;
  835. }
  836. .align-items-md-baseline {
  837. -webkit-box-align: baseline !important;
  838. -ms-flex-align: baseline !important;
  839. align-items: baseline !important;
  840. }
  841. .align-items-md-stretch {
  842. -webkit-box-align: stretch !important;
  843. -ms-flex-align: stretch !important;
  844. align-items: stretch !important;
  845. }
  846. .align-content-md-start {
  847. -ms-flex-line-pack: start !important;
  848. align-content: flex-start !important;
  849. }
  850. .align-content-md-end {
  851. -ms-flex-line-pack: end !important;
  852. align-content: flex-end !important;
  853. }
  854. .align-content-md-center {
  855. -ms-flex-line-pack: center !important;
  856. align-content: center !important;
  857. }
  858. .align-content-md-between {
  859. -ms-flex-line-pack: justify !important;
  860. align-content: space-between !important;
  861. }
  862. .align-content-md-around {
  863. -ms-flex-line-pack: distribute !important;
  864. align-content: space-around !important;
  865. }
  866. .align-content-md-stretch {
  867. -ms-flex-line-pack: stretch !important;
  868. align-content: stretch !important;
  869. }
  870. .align-self-md-auto {
  871. -ms-flex-item-align: auto !important;
  872. -ms-grid-row-align: auto !important;
  873. align-self: auto !important;
  874. }
  875. .align-self-md-start {
  876. -ms-flex-item-align: start !important;
  877. align-self: flex-start !important;
  878. }
  879. .align-self-md-end {
  880. -ms-flex-item-align: end !important;
  881. align-self: flex-end !important;
  882. }
  883. .align-self-md-center {
  884. -ms-flex-item-align: center !important;
  885. -ms-grid-row-align: center !important;
  886. align-self: center !important;
  887. }
  888. .align-self-md-baseline {
  889. -ms-flex-item-align: baseline !important;
  890. align-self: baseline !important;
  891. }
  892. .align-self-md-stretch {
  893. -ms-flex-item-align: stretch !important;
  894. -ms-grid-row-align: stretch !important;
  895. align-self: stretch !important;
  896. }
  897. }
  898. @media (min-width: 992px) {
  899. .flex-lg-row {
  900. -webkit-box-orient: horizontal !important;
  901. -webkit-box-direction: normal !important;
  902. -ms-flex-direction: row !important;
  903. flex-direction: row !important;
  904. }
  905. .flex-lg-column {
  906. -webkit-box-orient: vertical !important;
  907. -webkit-box-direction: normal !important;
  908. -ms-flex-direction: column !important;
  909. flex-direction: column !important;
  910. }
  911. .flex-lg-row-reverse {
  912. -webkit-box-orient: horizontal !important;
  913. -webkit-box-direction: reverse !important;
  914. -ms-flex-direction: row-reverse !important;
  915. flex-direction: row-reverse !important;
  916. }
  917. .flex-lg-column-reverse {
  918. -webkit-box-orient: vertical !important;
  919. -webkit-box-direction: reverse !important;
  920. -ms-flex-direction: column-reverse !important;
  921. flex-direction: column-reverse !important;
  922. }
  923. .flex-lg-wrap {
  924. -ms-flex-wrap: wrap !important;
  925. flex-wrap: wrap !important;
  926. }
  927. .flex-lg-nowrap {
  928. -ms-flex-wrap: nowrap !important;
  929. flex-wrap: nowrap !important;
  930. }
  931. .flex-lg-wrap-reverse {
  932. -ms-flex-wrap: wrap-reverse !important;
  933. flex-wrap: wrap-reverse !important;
  934. }
  935. .flex-lg-fill {
  936. -webkit-box-flex: 1 !important;
  937. -ms-flex: 1 1 auto !important;
  938. flex: 1 1 auto !important;
  939. }
  940. .flex-lg-grow-0 {
  941. -webkit-box-flex: 0 !important;
  942. -ms-flex-positive: 0 !important;
  943. flex-grow: 0 !important;
  944. }
  945. .flex-lg-grow-1 {
  946. -webkit-box-flex: 1 !important;
  947. -ms-flex-positive: 1 !important;
  948. flex-grow: 1 !important;
  949. }
  950. .flex-lg-shrink-0 {
  951. -ms-flex-negative: 0 !important;
  952. flex-shrink: 0 !important;
  953. }
  954. .flex-lg-shrink-1 {
  955. -ms-flex-negative: 1 !important;
  956. flex-shrink: 1 !important;
  957. }
  958. .justify-content-lg-start {
  959. -webkit-box-pack: start !important;
  960. -ms-flex-pack: start !important;
  961. justify-content: flex-start !important;
  962. }
  963. .justify-content-lg-end {
  964. -webkit-box-pack: end !important;
  965. -ms-flex-pack: end !important;
  966. justify-content: flex-end !important;
  967. }
  968. .justify-content-lg-center {
  969. -webkit-box-pack: center !important;
  970. -ms-flex-pack: center !important;
  971. justify-content: center !important;
  972. }
  973. .justify-content-lg-between {
  974. -webkit-box-pack: justify !important;
  975. -ms-flex-pack: justify !important;
  976. justify-content: space-between !important;
  977. }
  978. .justify-content-lg-around {
  979. -ms-flex-pack: distribute !important;
  980. justify-content: space-around !important;
  981. }
  982. .align-items-lg-start {
  983. -webkit-box-align: start !important;
  984. -ms-flex-align: start !important;
  985. align-items: flex-start !important;
  986. }
  987. .align-items-lg-end {
  988. -webkit-box-align: end !important;
  989. -ms-flex-align: end !important;
  990. align-items: flex-end !important;
  991. }
  992. .align-items-lg-center {
  993. -webkit-box-align: center !important;
  994. -ms-flex-align: center !important;
  995. align-items: center !important;
  996. }
  997. .align-items-lg-baseline {
  998. -webkit-box-align: baseline !important;
  999. -ms-flex-align: baseline !important;
  1000. align-items: baseline !important;
  1001. }
  1002. .align-items-lg-stretch {
  1003. -webkit-box-align: stretch !important;
  1004. -ms-flex-align: stretch !important;
  1005. align-items: stretch !important;
  1006. }
  1007. .align-content-lg-start {
  1008. -ms-flex-line-pack: start !important;
  1009. align-content: flex-start !important;
  1010. }
  1011. .align-content-lg-end {
  1012. -ms-flex-line-pack: end !important;
  1013. align-content: flex-end !important;
  1014. }
  1015. .align-content-lg-center {
  1016. -ms-flex-line-pack: center !important;
  1017. align-content: center !important;
  1018. }
  1019. .align-content-lg-between {
  1020. -ms-flex-line-pack: justify !important;
  1021. align-content: space-between !important;
  1022. }
  1023. .align-content-lg-around {
  1024. -ms-flex-line-pack: distribute !important;
  1025. align-content: space-around !important;
  1026. }
  1027. .align-content-lg-stretch {
  1028. -ms-flex-line-pack: stretch !important;
  1029. align-content: stretch !important;
  1030. }
  1031. .align-self-lg-auto {
  1032. -ms-flex-item-align: auto !important;
  1033. -ms-grid-row-align: auto !important;
  1034. align-self: auto !important;
  1035. }
  1036. .align-self-lg-start {
  1037. -ms-flex-item-align: start !important;
  1038. align-self: flex-start !important;
  1039. }
  1040. .align-self-lg-end {
  1041. -ms-flex-item-align: end !important;
  1042. align-self: flex-end !important;
  1043. }
  1044. .align-self-lg-center {
  1045. -ms-flex-item-align: center !important;
  1046. -ms-grid-row-align: center !important;
  1047. align-self: center !important;
  1048. }
  1049. .align-self-lg-baseline {
  1050. -ms-flex-item-align: baseline !important;
  1051. align-self: baseline !important;
  1052. }
  1053. .align-self-lg-stretch {
  1054. -ms-flex-item-align: stretch !important;
  1055. -ms-grid-row-align: stretch !important;
  1056. align-self: stretch !important;
  1057. }
  1058. }
  1059. @media (min-width: 1200px) {
  1060. .flex-xl-row {
  1061. -webkit-box-orient: horizontal !important;
  1062. -webkit-box-direction: normal !important;
  1063. -ms-flex-direction: row !important;
  1064. flex-direction: row !important;
  1065. }
  1066. .flex-xl-column {
  1067. -webkit-box-orient: vertical !important;
  1068. -webkit-box-direction: normal !important;
  1069. -ms-flex-direction: column !important;
  1070. flex-direction: column !important;
  1071. }
  1072. .flex-xl-row-reverse {
  1073. -webkit-box-orient: horizontal !important;
  1074. -webkit-box-direction: reverse !important;
  1075. -ms-flex-direction: row-reverse !important;
  1076. flex-direction: row-reverse !important;
  1077. }
  1078. .flex-xl-column-reverse {
  1079. -webkit-box-orient: vertical !important;
  1080. -webkit-box-direction: reverse !important;
  1081. -ms-flex-direction: column-reverse !important;
  1082. flex-direction: column-reverse !important;
  1083. }
  1084. .flex-xl-wrap {
  1085. -ms-flex-wrap: wrap !important;
  1086. flex-wrap: wrap !important;
  1087. }
  1088. .flex-xl-nowrap {
  1089. -ms-flex-wrap: nowrap !important;
  1090. flex-wrap: nowrap !important;
  1091. }
  1092. .flex-xl-wrap-reverse {
  1093. -ms-flex-wrap: wrap-reverse !important;
  1094. flex-wrap: wrap-reverse !important;
  1095. }
  1096. .flex-xl-fill {
  1097. -webkit-box-flex: 1 !important;
  1098. -ms-flex: 1 1 auto !important;
  1099. flex: 1 1 auto !important;
  1100. }
  1101. .flex-xl-grow-0 {
  1102. -webkit-box-flex: 0 !important;
  1103. -ms-flex-positive: 0 !important;
  1104. flex-grow: 0 !important;
  1105. }
  1106. .flex-xl-grow-1 {
  1107. -webkit-box-flex: 1 !important;
  1108. -ms-flex-positive: 1 !important;
  1109. flex-grow: 1 !important;
  1110. }
  1111. .flex-xl-shrink-0 {
  1112. -ms-flex-negative: 0 !important;
  1113. flex-shrink: 0 !important;
  1114. }
  1115. .flex-xl-shrink-1 {
  1116. -ms-flex-negative: 1 !important;
  1117. flex-shrink: 1 !important;
  1118. }
  1119. .justify-content-xl-start {
  1120. -webkit-box-pack: start !important;
  1121. -ms-flex-pack: start !important;
  1122. justify-content: flex-start !important;
  1123. }
  1124. .justify-content-xl-end {
  1125. -webkit-box-pack: end !important;
  1126. -ms-flex-pack: end !important;
  1127. justify-content: flex-end !important;
  1128. }
  1129. .justify-content-xl-center {
  1130. -webkit-box-pack: center !important;
  1131. -ms-flex-pack: center !important;
  1132. justify-content: center !important;
  1133. }
  1134. .justify-content-xl-between {
  1135. -webkit-box-pack: justify !important;
  1136. -ms-flex-pack: justify !important;
  1137. justify-content: space-between !important;
  1138. }
  1139. .justify-content-xl-around {
  1140. -ms-flex-pack: distribute !important;
  1141. justify-content: space-around !important;
  1142. }
  1143. .align-items-xl-start {
  1144. -webkit-box-align: start !important;
  1145. -ms-flex-align: start !important;
  1146. align-items: flex-start !important;
  1147. }
  1148. .align-items-xl-end {
  1149. -webkit-box-align: end !important;
  1150. -ms-flex-align: end !important;
  1151. align-items: flex-end !important;
  1152. }
  1153. .align-items-xl-center {
  1154. -webkit-box-align: center !important;
  1155. -ms-flex-align: center !important;
  1156. align-items: center !important;
  1157. }
  1158. .align-items-xl-baseline {
  1159. -webkit-box-align: baseline !important;
  1160. -ms-flex-align: baseline !important;
  1161. align-items: baseline !important;
  1162. }
  1163. .align-items-xl-stretch {
  1164. -webkit-box-align: stretch !important;
  1165. -ms-flex-align: stretch !important;
  1166. align-items: stretch !important;
  1167. }
  1168. .align-content-xl-start {
  1169. -ms-flex-line-pack: start !important;
  1170. align-content: flex-start !important;
  1171. }
  1172. .align-content-xl-end {
  1173. -ms-flex-line-pack: end !important;
  1174. align-content: flex-end !important;
  1175. }
  1176. .align-content-xl-center {
  1177. -ms-flex-line-pack: center !important;
  1178. align-content: center !important;
  1179. }
  1180. .align-content-xl-between {
  1181. -ms-flex-line-pack: justify !important;
  1182. align-content: space-between !important;
  1183. }
  1184. .align-content-xl-around {
  1185. -ms-flex-line-pack: distribute !important;
  1186. align-content: space-around !important;
  1187. }
  1188. .align-content-xl-stretch {
  1189. -ms-flex-line-pack: stretch !important;
  1190. align-content: stretch !important;
  1191. }
  1192. .align-self-xl-auto {
  1193. -ms-flex-item-align: auto !important;
  1194. -ms-grid-row-align: auto !important;
  1195. align-self: auto !important;
  1196. }
  1197. .align-self-xl-start {
  1198. -ms-flex-item-align: start !important;
  1199. align-self: flex-start !important;
  1200. }
  1201. .align-self-xl-end {
  1202. -ms-flex-item-align: end !important;
  1203. align-self: flex-end !important;
  1204. }
  1205. .align-self-xl-center {
  1206. -ms-flex-item-align: center !important;
  1207. -ms-grid-row-align: center !important;
  1208. align-self: center !important;
  1209. }
  1210. .align-self-xl-baseline {
  1211. -ms-flex-item-align: baseline !important;
  1212. align-self: baseline !important;
  1213. }
  1214. .align-self-xl-stretch {
  1215. -ms-flex-item-align: stretch !important;
  1216. -ms-grid-row-align: stretch !important;
  1217. align-self: stretch !important;
  1218. }
  1219. }
  1220. .float-left {
  1221. float: left !important;
  1222. }
  1223. .float-right {
  1224. float: right !important;
  1225. }
  1226. .float-none {
  1227. float: none !important;
  1228. }
  1229. @media (min-width: 576px) {
  1230. .float-sm-left {
  1231. float: left !important;
  1232. }
  1233. .float-sm-right {
  1234. float: right !important;
  1235. }
  1236. .float-sm-none {
  1237. float: none !important;
  1238. }
  1239. }
  1240. @media (min-width: 768px) {
  1241. .float-md-left {
  1242. float: left !important;
  1243. }
  1244. .float-md-right {
  1245. float: right !important;
  1246. }
  1247. .float-md-none {
  1248. float: none !important;
  1249. }
  1250. }
  1251. @media (min-width: 992px) {
  1252. .float-lg-left {
  1253. float: left !important;
  1254. }
  1255. .float-lg-right {
  1256. float: right !important;
  1257. }
  1258. .float-lg-none {
  1259. float: none !important;
  1260. }
  1261. }
  1262. @media (min-width: 1200px) {
  1263. .float-xl-left {
  1264. float: left !important;
  1265. }
  1266. .float-xl-right {
  1267. float: right !important;
  1268. }
  1269. .float-xl-none {
  1270. float: none !important;
  1271. }
  1272. }
  1273. .overflow-auto {
  1274. overflow: auto !important;
  1275. }
  1276. .overflow-hidden {
  1277. overflow: hidden !important;
  1278. }
  1279. .position-static {
  1280. position: static !important;
  1281. }
  1282. .position-relative {
  1283. position: relative !important;
  1284. }
  1285. .position-absolute {
  1286. position: absolute !important;
  1287. }
  1288. .position-fixed {
  1289. position: fixed !important;
  1290. }
  1291. .position-sticky {
  1292. position: -webkit-sticky !important;
  1293. position: sticky !important;
  1294. }
  1295. .fixed-top {
  1296. position: fixed;
  1297. top: 0;
  1298. right: 0;
  1299. left: 0;
  1300. z-index: 1030;
  1301. }
  1302. .fixed-bottom {
  1303. position: fixed;
  1304. right: 0;
  1305. bottom: 0;
  1306. left: 0;
  1307. z-index: 1030;
  1308. }
  1309. @supports ((position: -webkit-sticky) or (position: sticky)) {
  1310. .sticky-top {
  1311. position: -webkit-sticky;
  1312. position: sticky;
  1313. top: 0;
  1314. z-index: 1020;
  1315. }
  1316. }
  1317. .sr-only {
  1318. position: absolute;
  1319. width: 1px;
  1320. height: 1px;
  1321. padding: 0;
  1322. margin: -1px;
  1323. overflow: hidden;
  1324. clip: rect(0, 0, 0, 0);
  1325. white-space: nowrap;
  1326. border: 0;
  1327. }
  1328. .sr-only-focusable:active, .sr-only-focusable:focus {
  1329. position: static;
  1330. width: auto;
  1331. height: auto;
  1332. overflow: visible;
  1333. clip: auto;
  1334. white-space: normal;
  1335. }
  1336. .shadow-sm {
  1337. -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  1338. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  1339. }
  1340. .shadow {
  1341. -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  1342. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  1343. }
  1344. .shadow-lg {
  1345. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  1346. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  1347. }
  1348. .shadow-none {
  1349. -webkit-box-shadow: none !important;
  1350. box-shadow: none !important;
  1351. }
  1352. .w-25 {
  1353. width: 25% !important;
  1354. }
  1355. .w-50 {
  1356. width: 50% !important;
  1357. }
  1358. .w-75 {
  1359. width: 75% !important;
  1360. }
  1361. .w-100 {
  1362. width: 100% !important;
  1363. }
  1364. .w-auto {
  1365. width: auto !important;
  1366. }
  1367. .h-25 {
  1368. height: 25% !important;
  1369. }
  1370. .h-50 {
  1371. height: 50% !important;
  1372. }
  1373. .h-75 {
  1374. height: 75% !important;
  1375. }
  1376. .h-100 {
  1377. height: 100% !important;
  1378. }
  1379. .h-auto {
  1380. height: auto !important;
  1381. }
  1382. .mw-100 {
  1383. max-width: 100% !important;
  1384. }
  1385. .mh-100 {
  1386. max-height: 100% !important;
  1387. }
  1388. .min-vw-100 {
  1389. min-width: 100vw !important;
  1390. }
  1391. .min-vh-100 {
  1392. min-height: 100vh !important;
  1393. }
  1394. .vw-100 {
  1395. width: 100vw !important;
  1396. }
  1397. .vh-100 {
  1398. height: 100vh !important;
  1399. }
  1400. .stretched-link::after {
  1401. position: absolute;
  1402. top: 0;
  1403. right: 0;
  1404. bottom: 0;
  1405. left: 0;
  1406. z-index: 1;
  1407. pointer-events: auto;
  1408. content: "";
  1409. background-color: rgba(0, 0, 0, 0);
  1410. }
  1411. .m-0 {
  1412. margin: 0 !important;
  1413. }
  1414. .mt-0,
  1415. .my-0 {
  1416. margin-top: 0 !important;
  1417. }
  1418. .mr-0,
  1419. .mx-0 {
  1420. margin-right: 0 !important;
  1421. }
  1422. .mb-0,
  1423. .my-0 {
  1424. margin-bottom: 0 !important;
  1425. }
  1426. .ml-0,
  1427. .mx-0 {
  1428. margin-left: 0 !important;
  1429. }
  1430. .m-1 {
  1431. margin: 0.25rem !important;
  1432. }
  1433. .mt-1,
  1434. .my-1 {
  1435. margin-top: 0.25rem !important;
  1436. }
  1437. .mr-1,
  1438. .mx-1 {
  1439. margin-right: 0.25rem !important;
  1440. }
  1441. .mb-1,
  1442. .my-1 {
  1443. margin-bottom: 0.25rem !important;
  1444. }
  1445. .ml-1,
  1446. .mx-1 {
  1447. margin-left: 0.25rem !important;
  1448. }
  1449. .m-2 {
  1450. margin: 0.5rem !important;
  1451. }
  1452. .mt-2,
  1453. .my-2 {
  1454. margin-top: 0.5rem !important;
  1455. }
  1456. .mr-2,
  1457. .mx-2 {
  1458. margin-right: 0.5rem !important;
  1459. }
  1460. .mb-2,
  1461. .my-2 {
  1462. margin-bottom: 0.5rem !important;
  1463. }
  1464. .ml-2,
  1465. .mx-2 {
  1466. margin-left: 0.5rem !important;
  1467. }
  1468. .m-3 {
  1469. margin: 1rem !important;
  1470. }
  1471. .mt-3,
  1472. .my-3 {
  1473. margin-top: 1rem !important;
  1474. }
  1475. .mr-3,
  1476. .mx-3 {
  1477. margin-right: 1rem !important;
  1478. }
  1479. .mb-3,
  1480. .my-3 {
  1481. margin-bottom: 1rem !important;
  1482. }
  1483. .ml-3,
  1484. .mx-3 {
  1485. margin-left: 1rem !important;
  1486. }
  1487. .m-4 {
  1488. margin: 1.5rem !important;
  1489. }
  1490. .mt-4,
  1491. .my-4 {
  1492. margin-top: 1.5rem !important;
  1493. }
  1494. .mr-4,
  1495. .mx-4 {
  1496. margin-right: 1.5rem !important;
  1497. }
  1498. .mb-4,
  1499. .my-4 {
  1500. margin-bottom: 1.5rem !important;
  1501. }
  1502. .ml-4,
  1503. .mx-4 {
  1504. margin-left: 1.5rem !important;
  1505. }
  1506. .m-5 {
  1507. margin: 3rem !important;
  1508. }
  1509. .mt-5,
  1510. .my-5 {
  1511. margin-top: 3rem !important;
  1512. }
  1513. .mr-5,
  1514. .mx-5 {
  1515. margin-right: 3rem !important;
  1516. }
  1517. .mb-5,
  1518. .my-5 {
  1519. margin-bottom: 3rem !important;
  1520. }
  1521. .ml-5,
  1522. .mx-5 {
  1523. margin-left: 3rem !important;
  1524. }
  1525. .p-0 {
  1526. padding: 0 !important;
  1527. }
  1528. .pt-0,
  1529. .py-0 {
  1530. padding-top: 0 !important;
  1531. }
  1532. .pr-0,
  1533. .px-0 {
  1534. padding-right: 0 !important;
  1535. }
  1536. .pb-0,
  1537. .py-0 {
  1538. padding-bottom: 0 !important;
  1539. }
  1540. .pl-0,
  1541. .px-0 {
  1542. padding-left: 0 !important;
  1543. }
  1544. .p-1 {
  1545. padding: 0.25rem !important;
  1546. }
  1547. .pt-1,
  1548. .py-1 {
  1549. padding-top: 0.25rem !important;
  1550. }
  1551. .pr-1,
  1552. .px-1 {
  1553. padding-right: 0.25rem !important;
  1554. }
  1555. .pb-1,
  1556. .py-1 {
  1557. padding-bottom: 0.25rem !important;
  1558. }
  1559. .pl-1,
  1560. .px-1 {
  1561. padding-left: 0.25rem !important;
  1562. }
  1563. .p-2 {
  1564. padding: 0.5rem !important;
  1565. }
  1566. .pt-2,
  1567. .py-2 {
  1568. padding-top: 0.5rem !important;
  1569. }
  1570. .pr-2,
  1571. .px-2 {
  1572. padding-right: 0.5rem !important;
  1573. }
  1574. .pb-2,
  1575. .py-2 {
  1576. padding-bottom: 0.5rem !important;
  1577. }
  1578. .pl-2,
  1579. .px-2 {
  1580. padding-left: 0.5rem !important;
  1581. }
  1582. .p-3 {
  1583. padding: 1rem !important;
  1584. }
  1585. .pt-3,
  1586. .py-3 {
  1587. padding-top: 1rem !important;
  1588. }
  1589. .pr-3,
  1590. .px-3 {
  1591. padding-right: 1rem !important;
  1592. }
  1593. .pb-3,
  1594. .py-3 {
  1595. padding-bottom: 1rem !important;
  1596. }
  1597. .pl-3,
  1598. .px-3 {
  1599. padding-left: 1rem !important;
  1600. }
  1601. .p-4 {
  1602. padding: 1.5rem !important;
  1603. }
  1604. .pt-4,
  1605. .py-4 {
  1606. padding-top: 1.5rem !important;
  1607. }
  1608. .pr-4,
  1609. .px-4 {
  1610. padding-right: 1.5rem !important;
  1611. }
  1612. .pb-4,
  1613. .py-4 {
  1614. padding-bottom: 1.5rem !important;
  1615. }
  1616. .pl-4,
  1617. .px-4 {
  1618. padding-left: 1.5rem !important;
  1619. }
  1620. .p-5 {
  1621. padding: 3rem !important;
  1622. }
  1623. .pt-5,
  1624. .py-5 {
  1625. padding-top: 3rem !important;
  1626. }
  1627. .pr-5,
  1628. .px-5 {
  1629. padding-right: 3rem !important;
  1630. }
  1631. .pb-5,
  1632. .py-5 {
  1633. padding-bottom: 3rem !important;
  1634. }
  1635. .pl-5,
  1636. .px-5 {
  1637. padding-left: 3rem !important;
  1638. }
  1639. .m-n1 {
  1640. margin: -0.25rem !important;
  1641. }
  1642. .mt-n1,
  1643. .my-n1 {
  1644. margin-top: -0.25rem !important;
  1645. }
  1646. .mr-n1,
  1647. .mx-n1 {
  1648. margin-right: -0.25rem !important;
  1649. }
  1650. .mb-n1,
  1651. .my-n1 {
  1652. margin-bottom: -0.25rem !important;
  1653. }
  1654. .ml-n1,
  1655. .mx-n1 {
  1656. margin-left: -0.25rem !important;
  1657. }
  1658. .m-n2 {
  1659. margin: -0.5rem !important;
  1660. }
  1661. .mt-n2,
  1662. .my-n2 {
  1663. margin-top: -0.5rem !important;
  1664. }
  1665. .mr-n2,
  1666. .mx-n2 {
  1667. margin-right: -0.5rem !important;
  1668. }
  1669. .mb-n2,
  1670. .my-n2 {
  1671. margin-bottom: -0.5rem !important;
  1672. }
  1673. .ml-n2,
  1674. .mx-n2 {
  1675. margin-left: -0.5rem !important;
  1676. }
  1677. .m-n3 {
  1678. margin: -1rem !important;
  1679. }
  1680. .mt-n3,
  1681. .my-n3 {
  1682. margin-top: -1rem !important;
  1683. }
  1684. .mr-n3,
  1685. .mx-n3 {
  1686. margin-right: -1rem !important;
  1687. }
  1688. .mb-n3,
  1689. .my-n3 {
  1690. margin-bottom: -1rem !important;
  1691. }
  1692. .ml-n3,
  1693. .mx-n3 {
  1694. margin-left: -1rem !important;
  1695. }
  1696. .m-n4 {
  1697. margin: -1.5rem !important;
  1698. }
  1699. .mt-n4,
  1700. .my-n4 {
  1701. margin-top: -1.5rem !important;
  1702. }
  1703. .mr-n4,
  1704. .mx-n4 {
  1705. margin-right: -1.5rem !important;
  1706. }
  1707. .mb-n4,
  1708. .my-n4 {
  1709. margin-bottom: -1.5rem !important;
  1710. }
  1711. .ml-n4,
  1712. .mx-n4 {
  1713. margin-left: -1.5rem !important;
  1714. }
  1715. .m-n5 {
  1716. margin: -3rem !important;
  1717. }
  1718. .mt-n5,
  1719. .my-n5 {
  1720. margin-top: -3rem !important;
  1721. }
  1722. .mr-n5,
  1723. .mx-n5 {
  1724. margin-right: -3rem !important;
  1725. }
  1726. .mb-n5,
  1727. .my-n5 {
  1728. margin-bottom: -3rem !important;
  1729. }
  1730. .ml-n5,
  1731. .mx-n5 {
  1732. margin-left: -3rem !important;
  1733. }
  1734. .m-auto {
  1735. margin: auto !important;
  1736. }
  1737. .mt-auto,
  1738. .my-auto {
  1739. margin-top: auto !important;
  1740. }
  1741. .mr-auto,
  1742. .mx-auto {
  1743. margin-right: auto !important;
  1744. }
  1745. .mb-auto,
  1746. .my-auto {
  1747. margin-bottom: auto !important;
  1748. }
  1749. .ml-auto,
  1750. .mx-auto {
  1751. margin-left: auto !important;
  1752. }
  1753. @media (min-width: 576px) {
  1754. .m-sm-0 {
  1755. margin: 0 !important;
  1756. }
  1757. .mt-sm-0,
  1758. .my-sm-0 {
  1759. margin-top: 0 !important;
  1760. }
  1761. .mr-sm-0,
  1762. .mx-sm-0 {
  1763. margin-right: 0 !important;
  1764. }
  1765. .mb-sm-0,
  1766. .my-sm-0 {
  1767. margin-bottom: 0 !important;
  1768. }
  1769. .ml-sm-0,
  1770. .mx-sm-0 {
  1771. margin-left: 0 !important;
  1772. }
  1773. .m-sm-1 {
  1774. margin: 0.25rem !important;
  1775. }
  1776. .mt-sm-1,
  1777. .my-sm-1 {
  1778. margin-top: 0.25rem !important;
  1779. }
  1780. .mr-sm-1,
  1781. .mx-sm-1 {
  1782. margin-right: 0.25rem !important;
  1783. }
  1784. .mb-sm-1,
  1785. .my-sm-1 {
  1786. margin-bottom: 0.25rem !important;
  1787. }
  1788. .ml-sm-1,
  1789. .mx-sm-1 {
  1790. margin-left: 0.25rem !important;
  1791. }
  1792. .m-sm-2 {
  1793. margin: 0.5rem !important;
  1794. }
  1795. .mt-sm-2,
  1796. .my-sm-2 {
  1797. margin-top: 0.5rem !important;
  1798. }
  1799. .mr-sm-2,
  1800. .mx-sm-2 {
  1801. margin-right: 0.5rem !important;
  1802. }
  1803. .mb-sm-2,
  1804. .my-sm-2 {
  1805. margin-bottom: 0.5rem !important;
  1806. }
  1807. .ml-sm-2,
  1808. .mx-sm-2 {
  1809. margin-left: 0.5rem !important;
  1810. }
  1811. .m-sm-3 {
  1812. margin: 1rem !important;
  1813. }
  1814. .mt-sm-3,
  1815. .my-sm-3 {
  1816. margin-top: 1rem !important;
  1817. }
  1818. .mr-sm-3,
  1819. .mx-sm-3 {
  1820. margin-right: 1rem !important;
  1821. }
  1822. .mb-sm-3,
  1823. .my-sm-3 {
  1824. margin-bottom: 1rem !important;
  1825. }
  1826. .ml-sm-3,
  1827. .mx-sm-3 {
  1828. margin-left: 1rem !important;
  1829. }
  1830. .m-sm-4 {
  1831. margin: 1.5rem !important;
  1832. }
  1833. .mt-sm-4,
  1834. .my-sm-4 {
  1835. margin-top: 1.5rem !important;
  1836. }
  1837. .mr-sm-4,
  1838. .mx-sm-4 {
  1839. margin-right: 1.5rem !important;
  1840. }
  1841. .mb-sm-4,
  1842. .my-sm-4 {
  1843. margin-bottom: 1.5rem !important;
  1844. }
  1845. .ml-sm-4,
  1846. .mx-sm-4 {
  1847. margin-left: 1.5rem !important;
  1848. }
  1849. .m-sm-5 {
  1850. margin: 3rem !important;
  1851. }
  1852. .mt-sm-5,
  1853. .my-sm-5 {
  1854. margin-top: 3rem !important;
  1855. }
  1856. .mr-sm-5,
  1857. .mx-sm-5 {
  1858. margin-right: 3rem !important;
  1859. }
  1860. .mb-sm-5,
  1861. .my-sm-5 {
  1862. margin-bottom: 3rem !important;
  1863. }
  1864. .ml-sm-5,
  1865. .mx-sm-5 {
  1866. margin-left: 3rem !important;
  1867. }
  1868. .p-sm-0 {
  1869. padding: 0 !important;
  1870. }
  1871. .pt-sm-0,
  1872. .py-sm-0 {
  1873. padding-top: 0 !important;
  1874. }
  1875. .pr-sm-0,
  1876. .px-sm-0 {
  1877. padding-right: 0 !important;
  1878. }
  1879. .pb-sm-0,
  1880. .py-sm-0 {
  1881. padding-bottom: 0 !important;
  1882. }
  1883. .pl-sm-0,
  1884. .px-sm-0 {
  1885. padding-left: 0 !important;
  1886. }
  1887. .p-sm-1 {
  1888. padding: 0.25rem !important;
  1889. }
  1890. .pt-sm-1,
  1891. .py-sm-1 {
  1892. padding-top: 0.25rem !important;
  1893. }
  1894. .pr-sm-1,
  1895. .px-sm-1 {
  1896. padding-right: 0.25rem !important;
  1897. }
  1898. .pb-sm-1,
  1899. .py-sm-1 {
  1900. padding-bottom: 0.25rem !important;
  1901. }
  1902. .pl-sm-1,
  1903. .px-sm-1 {
  1904. padding-left: 0.25rem !important;
  1905. }
  1906. .p-sm-2 {
  1907. padding: 0.5rem !important;
  1908. }
  1909. .pt-sm-2,
  1910. .py-sm-2 {
  1911. padding-top: 0.5rem !important;
  1912. }
  1913. .pr-sm-2,
  1914. .px-sm-2 {
  1915. padding-right: 0.5rem !important;
  1916. }
  1917. .pb-sm-2,
  1918. .py-sm-2 {
  1919. padding-bottom: 0.5rem !important;
  1920. }
  1921. .pl-sm-2,
  1922. .px-sm-2 {
  1923. padding-left: 0.5rem !important;
  1924. }
  1925. .p-sm-3 {
  1926. padding: 1rem !important;
  1927. }
  1928. .pt-sm-3,
  1929. .py-sm-3 {
  1930. padding-top: 1rem !important;
  1931. }
  1932. .pr-sm-3,
  1933. .px-sm-3 {
  1934. padding-right: 1rem !important;
  1935. }
  1936. .pb-sm-3,
  1937. .py-sm-3 {
  1938. padding-bottom: 1rem !important;
  1939. }
  1940. .pl-sm-3,
  1941. .px-sm-3 {
  1942. padding-left: 1rem !important;
  1943. }
  1944. .p-sm-4 {
  1945. padding: 1.5rem !important;
  1946. }
  1947. .pt-sm-4,
  1948. .py-sm-4 {
  1949. padding-top: 1.5rem !important;
  1950. }
  1951. .pr-sm-4,
  1952. .px-sm-4 {
  1953. padding-right: 1.5rem !important;
  1954. }
  1955. .pb-sm-4,
  1956. .py-sm-4 {
  1957. padding-bottom: 1.5rem !important;
  1958. }
  1959. .pl-sm-4,
  1960. .px-sm-4 {
  1961. padding-left: 1.5rem !important;
  1962. }
  1963. .p-sm-5 {
  1964. padding: 3rem !important;
  1965. }
  1966. .pt-sm-5,
  1967. .py-sm-5 {
  1968. padding-top: 3rem !important;
  1969. }
  1970. .pr-sm-5,
  1971. .px-sm-5 {
  1972. padding-right: 3rem !important;
  1973. }
  1974. .pb-sm-5,
  1975. .py-sm-5 {
  1976. padding-bottom: 3rem !important;
  1977. }
  1978. .pl-sm-5,
  1979. .px-sm-5 {
  1980. padding-left: 3rem !important;
  1981. }
  1982. .m-sm-n1 {
  1983. margin: -0.25rem !important;
  1984. }
  1985. .mt-sm-n1,
  1986. .my-sm-n1 {
  1987. margin-top: -0.25rem !important;
  1988. }
  1989. .mr-sm-n1,
  1990. .mx-sm-n1 {
  1991. margin-right: -0.25rem !important;
  1992. }
  1993. .mb-sm-n1,
  1994. .my-sm-n1 {
  1995. margin-bottom: -0.25rem !important;
  1996. }
  1997. .ml-sm-n1,
  1998. .mx-sm-n1 {
  1999. margin-left: -0.25rem !important;
  2000. }
  2001. .m-sm-n2 {
  2002. margin: -0.5rem !important;
  2003. }
  2004. .mt-sm-n2,
  2005. .my-sm-n2 {
  2006. margin-top: -0.5rem !important;
  2007. }
  2008. .mr-sm-n2,
  2009. .mx-sm-n2 {
  2010. margin-right: -0.5rem !important;
  2011. }
  2012. .mb-sm-n2,
  2013. .my-sm-n2 {
  2014. margin-bottom: -0.5rem !important;
  2015. }
  2016. .ml-sm-n2,
  2017. .mx-sm-n2 {
  2018. margin-left: -0.5rem !important;
  2019. }
  2020. .m-sm-n3 {
  2021. margin: -1rem !important;
  2022. }
  2023. .mt-sm-n3,
  2024. .my-sm-n3 {
  2025. margin-top: -1rem !important;
  2026. }
  2027. .mr-sm-n3,
  2028. .mx-sm-n3 {
  2029. margin-right: -1rem !important;
  2030. }
  2031. .mb-sm-n3,
  2032. .my-sm-n3 {
  2033. margin-bottom: -1rem !important;
  2034. }
  2035. .ml-sm-n3,
  2036. .mx-sm-n3 {
  2037. margin-left: -1rem !important;
  2038. }
  2039. .m-sm-n4 {
  2040. margin: -1.5rem !important;
  2041. }
  2042. .mt-sm-n4,
  2043. .my-sm-n4 {
  2044. margin-top: -1.5rem !important;
  2045. }
  2046. .mr-sm-n4,
  2047. .mx-sm-n4 {
  2048. margin-right: -1.5rem !important;
  2049. }
  2050. .mb-sm-n4,
  2051. .my-sm-n4 {
  2052. margin-bottom: -1.5rem !important;
  2053. }
  2054. .ml-sm-n4,
  2055. .mx-sm-n4 {
  2056. margin-left: -1.5rem !important;
  2057. }
  2058. .m-sm-n5 {
  2059. margin: -3rem !important;
  2060. }
  2061. .mt-sm-n5,
  2062. .my-sm-n5 {
  2063. margin-top: -3rem !important;
  2064. }
  2065. .mr-sm-n5,
  2066. .mx-sm-n5 {
  2067. margin-right: -3rem !important;
  2068. }
  2069. .mb-sm-n5,
  2070. .my-sm-n5 {
  2071. margin-bottom: -3rem !important;
  2072. }
  2073. .ml-sm-n5,
  2074. .mx-sm-n5 {
  2075. margin-left: -3rem !important;
  2076. }
  2077. .m-sm-auto {
  2078. margin: auto !important;
  2079. }
  2080. .mt-sm-auto,
  2081. .my-sm-auto {
  2082. margin-top: auto !important;
  2083. }
  2084. .mr-sm-auto,
  2085. .mx-sm-auto {
  2086. margin-right: auto !important;
  2087. }
  2088. .mb-sm-auto,
  2089. .my-sm-auto {
  2090. margin-bottom: auto !important;
  2091. }
  2092. .ml-sm-auto,
  2093. .mx-sm-auto {
  2094. margin-left: auto !important;
  2095. }
  2096. }
  2097. @media (min-width: 768px) {
  2098. .m-md-0 {
  2099. margin: 0 !important;
  2100. }
  2101. .mt-md-0,
  2102. .my-md-0 {
  2103. margin-top: 0 !important;
  2104. }
  2105. .mr-md-0,
  2106. .mx-md-0 {
  2107. margin-right: 0 !important;
  2108. }
  2109. .mb-md-0,
  2110. .my-md-0 {
  2111. margin-bottom: 0 !important;
  2112. }
  2113. .ml-md-0,
  2114. .mx-md-0 {
  2115. margin-left: 0 !important;
  2116. }
  2117. .m-md-1 {
  2118. margin: 0.25rem !important;
  2119. }
  2120. .mt-md-1,
  2121. .my-md-1 {
  2122. margin-top: 0.25rem !important;
  2123. }
  2124. .mr-md-1,
  2125. .mx-md-1 {
  2126. margin-right: 0.25rem !important;
  2127. }
  2128. .mb-md-1,
  2129. .my-md-1 {
  2130. margin-bottom: 0.25rem !important;
  2131. }
  2132. .ml-md-1,
  2133. .mx-md-1 {
  2134. margin-left: 0.25rem !important;
  2135. }
  2136. .m-md-2 {
  2137. margin: 0.5rem !important;
  2138. }
  2139. .mt-md-2,
  2140. .my-md-2 {
  2141. margin-top: 0.5rem !important;
  2142. }
  2143. .mr-md-2,
  2144. .mx-md-2 {
  2145. margin-right: 0.5rem !important;
  2146. }
  2147. .mb-md-2,
  2148. .my-md-2 {
  2149. margin-bottom: 0.5rem !important;
  2150. }
  2151. .ml-md-2,
  2152. .mx-md-2 {
  2153. margin-left: 0.5rem !important;
  2154. }
  2155. .m-md-3 {
  2156. margin: 1rem !important;
  2157. }
  2158. .mt-md-3,
  2159. .my-md-3 {
  2160. margin-top: 1rem !important;
  2161. }
  2162. .mr-md-3,
  2163. .mx-md-3 {
  2164. margin-right: 1rem !important;
  2165. }
  2166. .mb-md-3,
  2167. .my-md-3 {
  2168. margin-bottom: 1rem !important;
  2169. }
  2170. .ml-md-3,
  2171. .mx-md-3 {
  2172. margin-left: 1rem !important;
  2173. }
  2174. .m-md-4 {
  2175. margin: 1.5rem !important;
  2176. }
  2177. .mt-md-4,
  2178. .my-md-4 {
  2179. margin-top: 1.5rem !important;
  2180. }
  2181. .mr-md-4,
  2182. .mx-md-4 {
  2183. margin-right: 1.5rem !important;
  2184. }
  2185. .mb-md-4,
  2186. .my-md-4 {
  2187. margin-bottom: 1.5rem !important;
  2188. }
  2189. .ml-md-4,
  2190. .mx-md-4 {
  2191. margin-left: 1.5rem !important;
  2192. }
  2193. .m-md-5 {
  2194. margin: 3rem !important;
  2195. }
  2196. .mt-md-5,
  2197. .my-md-5 {
  2198. margin-top: 3rem !important;
  2199. }
  2200. .mr-md-5,
  2201. .mx-md-5 {
  2202. margin-right: 3rem !important;
  2203. }
  2204. .mb-md-5,
  2205. .my-md-5 {
  2206. margin-bottom: 3rem !important;
  2207. }
  2208. .ml-md-5,
  2209. .mx-md-5 {
  2210. margin-left: 3rem !important;
  2211. }
  2212. .p-md-0 {
  2213. padding: 0 !important;
  2214. }
  2215. .pt-md-0,
  2216. .py-md-0 {
  2217. padding-top: 0 !important;
  2218. }
  2219. .pr-md-0,
  2220. .px-md-0 {
  2221. padding-right: 0 !important;
  2222. }
  2223. .pb-md-0,
  2224. .py-md-0 {
  2225. padding-bottom: 0 !important;
  2226. }
  2227. .pl-md-0,
  2228. .px-md-0 {
  2229. padding-left: 0 !important;
  2230. }
  2231. .p-md-1 {
  2232. padding: 0.25rem !important;
  2233. }
  2234. .pt-md-1,
  2235. .py-md-1 {
  2236. padding-top: 0.25rem !important;
  2237. }
  2238. .pr-md-1,
  2239. .px-md-1 {
  2240. padding-right: 0.25rem !important;
  2241. }
  2242. .pb-md-1,
  2243. .py-md-1 {
  2244. padding-bottom: 0.25rem !important;
  2245. }
  2246. .pl-md-1,
  2247. .px-md-1 {
  2248. padding-left: 0.25rem !important;
  2249. }
  2250. .p-md-2 {
  2251. padding: 0.5rem !important;
  2252. }
  2253. .pt-md-2,
  2254. .py-md-2 {
  2255. padding-top: 0.5rem !important;
  2256. }
  2257. .pr-md-2,
  2258. .px-md-2 {
  2259. padding-right: 0.5rem !important;
  2260. }
  2261. .pb-md-2,
  2262. .py-md-2 {
  2263. padding-bottom: 0.5rem !important;
  2264. }
  2265. .pl-md-2,
  2266. .px-md-2 {
  2267. padding-left: 0.5rem !important;
  2268. }
  2269. .p-md-3 {
  2270. padding: 1rem !important;
  2271. }
  2272. .pt-md-3,
  2273. .py-md-3 {
  2274. padding-top: 1rem !important;
  2275. }
  2276. .pr-md-3,
  2277. .px-md-3 {
  2278. padding-right: 1rem !important;
  2279. }
  2280. .pb-md-3,
  2281. .py-md-3 {
  2282. padding-bottom: 1rem !important;
  2283. }
  2284. .pl-md-3,
  2285. .px-md-3 {
  2286. padding-left: 1rem !important;
  2287. }
  2288. .p-md-4 {
  2289. padding: 1.5rem !important;
  2290. }
  2291. .pt-md-4,
  2292. .py-md-4 {
  2293. padding-top: 1.5rem !important;
  2294. }
  2295. .pr-md-4,
  2296. .px-md-4 {
  2297. padding-right: 1.5rem !important;
  2298. }
  2299. .pb-md-4,
  2300. .py-md-4 {
  2301. padding-bottom: 1.5rem !important;
  2302. }
  2303. .pl-md-4,
  2304. .px-md-4 {
  2305. padding-left: 1.5rem !important;
  2306. }
  2307. .p-md-5 {
  2308. padding: 3rem !important;
  2309. }
  2310. .pt-md-5,
  2311. .py-md-5 {
  2312. padding-top: 3rem !important;
  2313. }
  2314. .pr-md-5,
  2315. .px-md-5 {
  2316. padding-right: 3rem !important;
  2317. }
  2318. .pb-md-5,
  2319. .py-md-5 {
  2320. padding-bottom: 3rem !important;
  2321. }
  2322. .pl-md-5,
  2323. .px-md-5 {
  2324. padding-left: 3rem !important;
  2325. }
  2326. .m-md-n1 {
  2327. margin: -0.25rem !important;
  2328. }
  2329. .mt-md-n1,
  2330. .my-md-n1 {
  2331. margin-top: -0.25rem !important;
  2332. }
  2333. .mr-md-n1,
  2334. .mx-md-n1 {
  2335. margin-right: -0.25rem !important;
  2336. }
  2337. .mb-md-n1,
  2338. .my-md-n1 {
  2339. margin-bottom: -0.25rem !important;
  2340. }
  2341. .ml-md-n1,
  2342. .mx-md-n1 {
  2343. margin-left: -0.25rem !important;
  2344. }
  2345. .m-md-n2 {
  2346. margin: -0.5rem !important;
  2347. }
  2348. .mt-md-n2,
  2349. .my-md-n2 {
  2350. margin-top: -0.5rem !important;
  2351. }
  2352. .mr-md-n2,
  2353. .mx-md-n2 {
  2354. margin-right: -0.5rem !important;
  2355. }
  2356. .mb-md-n2,
  2357. .my-md-n2 {
  2358. margin-bottom: -0.5rem !important;
  2359. }
  2360. .ml-md-n2,
  2361. .mx-md-n2 {
  2362. margin-left: -0.5rem !important;
  2363. }
  2364. .m-md-n3 {
  2365. margin: -1rem !important;
  2366. }
  2367. .mt-md-n3,
  2368. .my-md-n3 {
  2369. margin-top: -1rem !important;
  2370. }
  2371. .mr-md-n3,
  2372. .mx-md-n3 {
  2373. margin-right: -1rem !important;
  2374. }
  2375. .mb-md-n3,
  2376. .my-md-n3 {
  2377. margin-bottom: -1rem !important;
  2378. }
  2379. .ml-md-n3,
  2380. .mx-md-n3 {
  2381. margin-left: -1rem !important;
  2382. }
  2383. .m-md-n4 {
  2384. margin: -1.5rem !important;
  2385. }
  2386. .mt-md-n4,
  2387. .my-md-n4 {
  2388. margin-top: -1.5rem !important;
  2389. }
  2390. .mr-md-n4,
  2391. .mx-md-n4 {
  2392. margin-right: -1.5rem !important;
  2393. }
  2394. .mb-md-n4,
  2395. .my-md-n4 {
  2396. margin-bottom: -1.5rem !important;
  2397. }
  2398. .ml-md-n4,
  2399. .mx-md-n4 {
  2400. margin-left: -1.5rem !important;
  2401. }
  2402. .m-md-n5 {
  2403. margin: -3rem !important;
  2404. }
  2405. .mt-md-n5,
  2406. .my-md-n5 {
  2407. margin-top: -3rem !important;
  2408. }
  2409. .mr-md-n5,
  2410. .mx-md-n5 {
  2411. margin-right: -3rem !important;
  2412. }
  2413. .mb-md-n5,
  2414. .my-md-n5 {
  2415. margin-bottom: -3rem !important;
  2416. }
  2417. .ml-md-n5,
  2418. .mx-md-n5 {
  2419. margin-left: -3rem !important;
  2420. }
  2421. .m-md-auto {
  2422. margin: auto !important;
  2423. }
  2424. .mt-md-auto,
  2425. .my-md-auto {
  2426. margin-top: auto !important;
  2427. }
  2428. .mr-md-auto,
  2429. .mx-md-auto {
  2430. margin-right: auto !important;
  2431. }
  2432. .mb-md-auto,
  2433. .my-md-auto {
  2434. margin-bottom: auto !important;
  2435. }
  2436. .ml-md-auto,
  2437. .mx-md-auto {
  2438. margin-left: auto !important;
  2439. }
  2440. }
  2441. @media (min-width: 992px) {
  2442. .m-lg-0 {
  2443. margin: 0 !important;
  2444. }
  2445. .mt-lg-0,
  2446. .my-lg-0 {
  2447. margin-top: 0 !important;
  2448. }
  2449. .mr-lg-0,
  2450. .mx-lg-0 {
  2451. margin-right: 0 !important;
  2452. }
  2453. .mb-lg-0,
  2454. .my-lg-0 {
  2455. margin-bottom: 0 !important;
  2456. }
  2457. .ml-lg-0,
  2458. .mx-lg-0 {
  2459. margin-left: 0 !important;
  2460. }
  2461. .m-lg-1 {
  2462. margin: 0.25rem !important;
  2463. }
  2464. .mt-lg-1,
  2465. .my-lg-1 {
  2466. margin-top: 0.25rem !important;
  2467. }
  2468. .mr-lg-1,
  2469. .mx-lg-1 {
  2470. margin-right: 0.25rem !important;
  2471. }
  2472. .mb-lg-1,
  2473. .my-lg-1 {
  2474. margin-bottom: 0.25rem !important;
  2475. }
  2476. .ml-lg-1,
  2477. .mx-lg-1 {
  2478. margin-left: 0.25rem !important;
  2479. }
  2480. .m-lg-2 {
  2481. margin: 0.5rem !important;
  2482. }
  2483. .mt-lg-2,
  2484. .my-lg-2 {
  2485. margin-top: 0.5rem !important;
  2486. }
  2487. .mr-lg-2,
  2488. .mx-lg-2 {
  2489. margin-right: 0.5rem !important;
  2490. }
  2491. .mb-lg-2,
  2492. .my-lg-2 {
  2493. margin-bottom: 0.5rem !important;
  2494. }
  2495. .ml-lg-2,
  2496. .mx-lg-2 {
  2497. margin-left: 0.5rem !important;
  2498. }
  2499. .m-lg-3 {
  2500. margin: 1rem !important;
  2501. }
  2502. .mt-lg-3,
  2503. .my-lg-3 {
  2504. margin-top: 1rem !important;
  2505. }
  2506. .mr-lg-3,
  2507. .mx-lg-3 {
  2508. margin-right: 1rem !important;
  2509. }
  2510. .mb-lg-3,
  2511. .my-lg-3 {
  2512. margin-bottom: 1rem !important;
  2513. }
  2514. .ml-lg-3,
  2515. .mx-lg-3 {
  2516. margin-left: 1rem !important;
  2517. }
  2518. .m-lg-4 {
  2519. margin: 1.5rem !important;
  2520. }
  2521. .mt-lg-4,
  2522. .my-lg-4 {
  2523. margin-top: 1.5rem !important;
  2524. }
  2525. .mr-lg-4,
  2526. .mx-lg-4 {
  2527. margin-right: 1.5rem !important;
  2528. }
  2529. .mb-lg-4,
  2530. .my-lg-4 {
  2531. margin-bottom: 1.5rem !important;
  2532. }
  2533. .ml-lg-4,
  2534. .mx-lg-4 {
  2535. margin-left: 1.5rem !important;
  2536. }
  2537. .m-lg-5 {
  2538. margin: 3rem !important;
  2539. }
  2540. .mt-lg-5,
  2541. .my-lg-5 {
  2542. margin-top: 3rem !important;
  2543. }
  2544. .mr-lg-5,
  2545. .mx-lg-5 {
  2546. margin-right: 3rem !important;
  2547. }
  2548. .mb-lg-5,
  2549. .my-lg-5 {
  2550. margin-bottom: 3rem !important;
  2551. }
  2552. .ml-lg-5,
  2553. .mx-lg-5 {
  2554. margin-left: 3rem !important;
  2555. }
  2556. .p-lg-0 {
  2557. padding: 0 !important;
  2558. }
  2559. .pt-lg-0,
  2560. .py-lg-0 {
  2561. padding-top: 0 !important;
  2562. }
  2563. .pr-lg-0,
  2564. .px-lg-0 {
  2565. padding-right: 0 !important;
  2566. }
  2567. .pb-lg-0,
  2568. .py-lg-0 {
  2569. padding-bottom: 0 !important;
  2570. }
  2571. .pl-lg-0,
  2572. .px-lg-0 {
  2573. padding-left: 0 !important;
  2574. }
  2575. .p-lg-1 {
  2576. padding: 0.25rem !important;
  2577. }
  2578. .pt-lg-1,
  2579. .py-lg-1 {
  2580. padding-top: 0.25rem !important;
  2581. }
  2582. .pr-lg-1,
  2583. .px-lg-1 {
  2584. padding-right: 0.25rem !important;
  2585. }
  2586. .pb-lg-1,
  2587. .py-lg-1 {
  2588. padding-bottom: 0.25rem !important;
  2589. }
  2590. .pl-lg-1,
  2591. .px-lg-1 {
  2592. padding-left: 0.25rem !important;
  2593. }
  2594. .p-lg-2 {
  2595. padding: 0.5rem !important;
  2596. }
  2597. .pt-lg-2,
  2598. .py-lg-2 {
  2599. padding-top: 0.5rem !important;
  2600. }
  2601. .pr-lg-2,
  2602. .px-lg-2 {
  2603. padding-right: 0.5rem !important;
  2604. }
  2605. .pb-lg-2,
  2606. .py-lg-2 {
  2607. padding-bottom: 0.5rem !important;
  2608. }
  2609. .pl-lg-2,
  2610. .px-lg-2 {
  2611. padding-left: 0.5rem !important;
  2612. }
  2613. .p-lg-3 {
  2614. padding: 1rem !important;
  2615. }
  2616. .pt-lg-3,
  2617. .py-lg-3 {
  2618. padding-top: 1rem !important;
  2619. }
  2620. .pr-lg-3,
  2621. .px-lg-3 {
  2622. padding-right: 1rem !important;
  2623. }
  2624. .pb-lg-3,
  2625. .py-lg-3 {
  2626. padding-bottom: 1rem !important;
  2627. }
  2628. .pl-lg-3,
  2629. .px-lg-3 {
  2630. padding-left: 1rem !important;
  2631. }
  2632. .p-lg-4 {
  2633. padding: 1.5rem !important;
  2634. }
  2635. .pt-lg-4,
  2636. .py-lg-4 {
  2637. padding-top: 1.5rem !important;
  2638. }
  2639. .pr-lg-4,
  2640. .px-lg-4 {
  2641. padding-right: 1.5rem !important;
  2642. }
  2643. .pb-lg-4,
  2644. .py-lg-4 {
  2645. padding-bottom: 1.5rem !important;
  2646. }
  2647. .pl-lg-4,
  2648. .px-lg-4 {
  2649. padding-left: 1.5rem !important;
  2650. }
  2651. .p-lg-5 {
  2652. padding: 3rem !important;
  2653. }
  2654. .pt-lg-5,
  2655. .py-lg-5 {
  2656. padding-top: 3rem !important;
  2657. }
  2658. .pr-lg-5,
  2659. .px-lg-5 {
  2660. padding-right: 3rem !important;
  2661. }
  2662. .pb-lg-5,
  2663. .py-lg-5 {
  2664. padding-bottom: 3rem !important;
  2665. }
  2666. .pl-lg-5,
  2667. .px-lg-5 {
  2668. padding-left: 3rem !important;
  2669. }
  2670. .m-lg-n1 {
  2671. margin: -0.25rem !important;
  2672. }
  2673. .mt-lg-n1,
  2674. .my-lg-n1 {
  2675. margin-top: -0.25rem !important;
  2676. }
  2677. .mr-lg-n1,
  2678. .mx-lg-n1 {
  2679. margin-right: -0.25rem !important;
  2680. }
  2681. .mb-lg-n1,
  2682. .my-lg-n1 {
  2683. margin-bottom: -0.25rem !important;
  2684. }
  2685. .ml-lg-n1,
  2686. .mx-lg-n1 {
  2687. margin-left: -0.25rem !important;
  2688. }
  2689. .m-lg-n2 {
  2690. margin: -0.5rem !important;
  2691. }
  2692. .mt-lg-n2,
  2693. .my-lg-n2 {
  2694. margin-top: -0.5rem !important;
  2695. }
  2696. .mr-lg-n2,
  2697. .mx-lg-n2 {
  2698. margin-right: -0.5rem !important;
  2699. }
  2700. .mb-lg-n2,
  2701. .my-lg-n2 {
  2702. margin-bottom: -0.5rem !important;
  2703. }
  2704. .ml-lg-n2,
  2705. .mx-lg-n2 {
  2706. margin-left: -0.5rem !important;
  2707. }
  2708. .m-lg-n3 {
  2709. margin: -1rem !important;
  2710. }
  2711. .mt-lg-n3,
  2712. .my-lg-n3 {
  2713. margin-top: -1rem !important;
  2714. }
  2715. .mr-lg-n3,
  2716. .mx-lg-n3 {
  2717. margin-right: -1rem !important;
  2718. }
  2719. .mb-lg-n3,
  2720. .my-lg-n3 {
  2721. margin-bottom: -1rem !important;
  2722. }
  2723. .ml-lg-n3,
  2724. .mx-lg-n3 {
  2725. margin-left: -1rem !important;
  2726. }
  2727. .m-lg-n4 {
  2728. margin: -1.5rem !important;
  2729. }
  2730. .mt-lg-n4,
  2731. .my-lg-n4 {
  2732. margin-top: -1.5rem !important;
  2733. }
  2734. .mr-lg-n4,
  2735. .mx-lg-n4 {
  2736. margin-right: -1.5rem !important;
  2737. }
  2738. .mb-lg-n4,
  2739. .my-lg-n4 {
  2740. margin-bottom: -1.5rem !important;
  2741. }
  2742. .ml-lg-n4,
  2743. .mx-lg-n4 {
  2744. margin-left: -1.5rem !important;
  2745. }
  2746. .m-lg-n5 {
  2747. margin: -3rem !important;
  2748. }
  2749. .mt-lg-n5,
  2750. .my-lg-n5 {
  2751. margin-top: -3rem !important;
  2752. }
  2753. .mr-lg-n5,
  2754. .mx-lg-n5 {
  2755. margin-right: -3rem !important;
  2756. }
  2757. .mb-lg-n5,
  2758. .my-lg-n5 {
  2759. margin-bottom: -3rem !important;
  2760. }
  2761. .ml-lg-n5,
  2762. .mx-lg-n5 {
  2763. margin-left: -3rem !important;
  2764. }
  2765. .m-lg-auto {
  2766. margin: auto !important;
  2767. }
  2768. .mt-lg-auto,
  2769. .my-lg-auto {
  2770. margin-top: auto !important;
  2771. }
  2772. .mr-lg-auto,
  2773. .mx-lg-auto {
  2774. margin-right: auto !important;
  2775. }
  2776. .mb-lg-auto,
  2777. .my-lg-auto {
  2778. margin-bottom: auto !important;
  2779. }
  2780. .ml-lg-auto,
  2781. .mx-lg-auto {
  2782. margin-left: auto !important;
  2783. }
  2784. }
  2785. @media (min-width: 1200px) {
  2786. .m-xl-0 {
  2787. margin: 0 !important;
  2788. }
  2789. .mt-xl-0,
  2790. .my-xl-0 {
  2791. margin-top: 0 !important;
  2792. }
  2793. .mr-xl-0,
  2794. .mx-xl-0 {
  2795. margin-right: 0 !important;
  2796. }
  2797. .mb-xl-0,
  2798. .my-xl-0 {
  2799. margin-bottom: 0 !important;
  2800. }
  2801. .ml-xl-0,
  2802. .mx-xl-0 {
  2803. margin-left: 0 !important;
  2804. }
  2805. .m-xl-1 {
  2806. margin: 0.25rem !important;
  2807. }
  2808. .mt-xl-1,
  2809. .my-xl-1 {
  2810. margin-top: 0.25rem !important;
  2811. }
  2812. .mr-xl-1,
  2813. .mx-xl-1 {
  2814. margin-right: 0.25rem !important;
  2815. }
  2816. .mb-xl-1,
  2817. .my-xl-1 {
  2818. margin-bottom: 0.25rem !important;
  2819. }
  2820. .ml-xl-1,
  2821. .mx-xl-1 {
  2822. margin-left: 0.25rem !important;
  2823. }
  2824. .m-xl-2 {
  2825. margin: 0.5rem !important;
  2826. }
  2827. .mt-xl-2,
  2828. .my-xl-2 {
  2829. margin-top: 0.5rem !important;
  2830. }
  2831. .mr-xl-2,
  2832. .mx-xl-2 {
  2833. margin-right: 0.5rem !important;
  2834. }
  2835. .mb-xl-2,
  2836. .my-xl-2 {
  2837. margin-bottom: 0.5rem !important;
  2838. }
  2839. .ml-xl-2,
  2840. .mx-xl-2 {
  2841. margin-left: 0.5rem !important;
  2842. }
  2843. .m-xl-3 {
  2844. margin: 1rem !important;
  2845. }
  2846. .mt-xl-3,
  2847. .my-xl-3 {
  2848. margin-top: 1rem !important;
  2849. }
  2850. .mr-xl-3,
  2851. .mx-xl-3 {
  2852. margin-right: 1rem !important;
  2853. }
  2854. .mb-xl-3,
  2855. .my-xl-3 {
  2856. margin-bottom: 1rem !important;
  2857. }
  2858. .ml-xl-3,
  2859. .mx-xl-3 {
  2860. margin-left: 1rem !important;
  2861. }
  2862. .m-xl-4 {
  2863. margin: 1.5rem !important;
  2864. }
  2865. .mt-xl-4,
  2866. .my-xl-4 {
  2867. margin-top: 1.5rem !important;
  2868. }
  2869. .mr-xl-4,
  2870. .mx-xl-4 {
  2871. margin-right: 1.5rem !important;
  2872. }
  2873. .mb-xl-4,
  2874. .my-xl-4 {
  2875. margin-bottom: 1.5rem !important;
  2876. }
  2877. .ml-xl-4,
  2878. .mx-xl-4 {
  2879. margin-left: 1.5rem !important;
  2880. }
  2881. .m-xl-5 {
  2882. margin: 3rem !important;
  2883. }
  2884. .mt-xl-5,
  2885. .my-xl-5 {
  2886. margin-top: 3rem !important;
  2887. }
  2888. .mr-xl-5,
  2889. .mx-xl-5 {
  2890. margin-right: 3rem !important;
  2891. }
  2892. .mb-xl-5,
  2893. .my-xl-5 {
  2894. margin-bottom: 3rem !important;
  2895. }
  2896. .ml-xl-5,
  2897. .mx-xl-5 {
  2898. margin-left: 3rem !important;
  2899. }
  2900. .p-xl-0 {
  2901. padding: 0 !important;
  2902. }
  2903. .pt-xl-0,
  2904. .py-xl-0 {
  2905. padding-top: 0 !important;
  2906. }
  2907. .pr-xl-0,
  2908. .px-xl-0 {
  2909. padding-right: 0 !important;
  2910. }
  2911. .pb-xl-0,
  2912. .py-xl-0 {
  2913. padding-bottom: 0 !important;
  2914. }
  2915. .pl-xl-0,
  2916. .px-xl-0 {
  2917. padding-left: 0 !important;
  2918. }
  2919. .p-xl-1 {
  2920. padding: 0.25rem !important;
  2921. }
  2922. .pt-xl-1,
  2923. .py-xl-1 {
  2924. padding-top: 0.25rem !important;
  2925. }
  2926. .pr-xl-1,
  2927. .px-xl-1 {
  2928. padding-right: 0.25rem !important;
  2929. }
  2930. .pb-xl-1,
  2931. .py-xl-1 {
  2932. padding-bottom: 0.25rem !important;
  2933. }
  2934. .pl-xl-1,
  2935. .px-xl-1 {
  2936. padding-left: 0.25rem !important;
  2937. }
  2938. .p-xl-2 {
  2939. padding: 0.5rem !important;
  2940. }
  2941. .pt-xl-2,
  2942. .py-xl-2 {
  2943. padding-top: 0.5rem !important;
  2944. }
  2945. .pr-xl-2,
  2946. .px-xl-2 {
  2947. padding-right: 0.5rem !important;
  2948. }
  2949. .pb-xl-2,
  2950. .py-xl-2 {
  2951. padding-bottom: 0.5rem !important;
  2952. }
  2953. .pl-xl-2,
  2954. .px-xl-2 {
  2955. padding-left: 0.5rem !important;
  2956. }
  2957. .p-xl-3 {
  2958. padding: 1rem !important;
  2959. }
  2960. .pt-xl-3,
  2961. .py-xl-3 {
  2962. padding-top: 1rem !important;
  2963. }
  2964. .pr-xl-3,
  2965. .px-xl-3 {
  2966. padding-right: 1rem !important;
  2967. }
  2968. .pb-xl-3,
  2969. .py-xl-3 {
  2970. padding-bottom: 1rem !important;
  2971. }
  2972. .pl-xl-3,
  2973. .px-xl-3 {
  2974. padding-left: 1rem !important;
  2975. }
  2976. .p-xl-4 {
  2977. padding: 1.5rem !important;
  2978. }
  2979. .pt-xl-4,
  2980. .py-xl-4 {
  2981. padding-top: 1.5rem !important;
  2982. }
  2983. .pr-xl-4,
  2984. .px-xl-4 {
  2985. padding-right: 1.5rem !important;
  2986. }
  2987. .pb-xl-4,
  2988. .py-xl-4 {
  2989. padding-bottom: 1.5rem !important;
  2990. }
  2991. .pl-xl-4,
  2992. .px-xl-4 {
  2993. padding-left: 1.5rem !important;
  2994. }
  2995. .p-xl-5 {
  2996. padding: 3rem !important;
  2997. }
  2998. .pt-xl-5,
  2999. .py-xl-5 {
  3000. padding-top: 3rem !important;
  3001. }
  3002. .pr-xl-5,
  3003. .px-xl-5 {
  3004. padding-right: 3rem !important;
  3005. }
  3006. .pb-xl-5,
  3007. .py-xl-5 {
  3008. padding-bottom: 3rem !important;
  3009. }
  3010. .pl-xl-5,
  3011. .px-xl-5 {
  3012. padding-left: 3rem !important;
  3013. }
  3014. .m-xl-n1 {
  3015. margin: -0.25rem !important;
  3016. }
  3017. .mt-xl-n1,
  3018. .my-xl-n1 {
  3019. margin-top: -0.25rem !important;
  3020. }
  3021. .mr-xl-n1,
  3022. .mx-xl-n1 {
  3023. margin-right: -0.25rem !important;
  3024. }
  3025. .mb-xl-n1,
  3026. .my-xl-n1 {
  3027. margin-bottom: -0.25rem !important;
  3028. }
  3029. .ml-xl-n1,
  3030. .mx-xl-n1 {
  3031. margin-left: -0.25rem !important;
  3032. }
  3033. .m-xl-n2 {
  3034. margin: -0.5rem !important;
  3035. }
  3036. .mt-xl-n2,
  3037. .my-xl-n2 {
  3038. margin-top: -0.5rem !important;
  3039. }
  3040. .mr-xl-n2,
  3041. .mx-xl-n2 {
  3042. margin-right: -0.5rem !important;
  3043. }
  3044. .mb-xl-n2,
  3045. .my-xl-n2 {
  3046. margin-bottom: -0.5rem !important;
  3047. }
  3048. .ml-xl-n2,
  3049. .mx-xl-n2 {
  3050. margin-left: -0.5rem !important;
  3051. }
  3052. .m-xl-n3 {
  3053. margin: -1rem !important;
  3054. }
  3055. .mt-xl-n3,
  3056. .my-xl-n3 {
  3057. margin-top: -1rem !important;
  3058. }
  3059. .mr-xl-n3,
  3060. .mx-xl-n3 {
  3061. margin-right: -1rem !important;
  3062. }
  3063. .mb-xl-n3,
  3064. .my-xl-n3 {
  3065. margin-bottom: -1rem !important;
  3066. }
  3067. .ml-xl-n3,
  3068. .mx-xl-n3 {
  3069. margin-left: -1rem !important;
  3070. }
  3071. .m-xl-n4 {
  3072. margin: -1.5rem !important;
  3073. }
  3074. .mt-xl-n4,
  3075. .my-xl-n4 {
  3076. margin-top: -1.5rem !important;
  3077. }
  3078. .mr-xl-n4,
  3079. .mx-xl-n4 {
  3080. margin-right: -1.5rem !important;
  3081. }
  3082. .mb-xl-n4,
  3083. .my-xl-n4 {
  3084. margin-bottom: -1.5rem !important;
  3085. }
  3086. .ml-xl-n4,
  3087. .mx-xl-n4 {
  3088. margin-left: -1.5rem !important;
  3089. }
  3090. .m-xl-n5 {
  3091. margin: -3rem !important;
  3092. }
  3093. .mt-xl-n5,
  3094. .my-xl-n5 {
  3095. margin-top: -3rem !important;
  3096. }
  3097. .mr-xl-n5,
  3098. .mx-xl-n5 {
  3099. margin-right: -3rem !important;
  3100. }
  3101. .mb-xl-n5,
  3102. .my-xl-n5 {
  3103. margin-bottom: -3rem !important;
  3104. }
  3105. .ml-xl-n5,
  3106. .mx-xl-n5 {
  3107. margin-left: -3rem !important;
  3108. }
  3109. .m-xl-auto {
  3110. margin: auto !important;
  3111. }
  3112. .mt-xl-auto,
  3113. .my-xl-auto {
  3114. margin-top: auto !important;
  3115. }
  3116. .mr-xl-auto,
  3117. .mx-xl-auto {
  3118. margin-right: auto !important;
  3119. }
  3120. .mb-xl-auto,
  3121. .my-xl-auto {
  3122. margin-bottom: auto !important;
  3123. }
  3124. .ml-xl-auto,
  3125. .mx-xl-auto {
  3126. margin-left: auto !important;
  3127. }
  3128. }
  3129. .text-monospace {
  3130. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  3131. }
  3132. .text-justify {
  3133. text-align: justify !important;
  3134. }
  3135. .text-wrap {
  3136. white-space: normal !important;
  3137. }
  3138. .text-nowrap {
  3139. white-space: nowrap !important;
  3140. }
  3141. .text-truncate {
  3142. overflow: hidden;
  3143. text-overflow: ellipsis;
  3144. white-space: nowrap;
  3145. }
  3146. .text-left {
  3147. text-align: left !important;
  3148. }
  3149. .text-right {
  3150. text-align: right !important;
  3151. }
  3152. .text-center {
  3153. text-align: center !important;
  3154. }
  3155. @media (min-width: 576px) {
  3156. .text-sm-left {
  3157. text-align: left !important;
  3158. }
  3159. .text-sm-right {
  3160. text-align: right !important;
  3161. }
  3162. .text-sm-center {
  3163. text-align: center !important;
  3164. }
  3165. }
  3166. @media (min-width: 768px) {
  3167. .text-md-left {
  3168. text-align: left !important;
  3169. }
  3170. .text-md-right {
  3171. text-align: right !important;
  3172. }
  3173. .text-md-center {
  3174. text-align: center !important;
  3175. }
  3176. }
  3177. @media (min-width: 992px) {
  3178. .text-lg-left {
  3179. text-align: left !important;
  3180. }
  3181. .text-lg-right {
  3182. text-align: right !important;
  3183. }
  3184. .text-lg-center {
  3185. text-align: center !important;
  3186. }
  3187. }
  3188. @media (min-width: 1200px) {
  3189. .text-xl-left {
  3190. text-align: left !important;
  3191. }
  3192. .text-xl-right {
  3193. text-align: right !important;
  3194. }
  3195. .text-xl-center {
  3196. text-align: center !important;
  3197. }
  3198. }
  3199. .text-lowercase {
  3200. text-transform: lowercase !important;
  3201. }
  3202. .text-uppercase {
  3203. text-transform: uppercase !important;
  3204. }
  3205. .text-capitalize {
  3206. text-transform: capitalize !important;
  3207. }
  3208. .font-weight-light {
  3209. font-weight: 300 !important;
  3210. }
  3211. .font-weight-lighter {
  3212. font-weight: lighter !important;
  3213. }
  3214. .font-weight-normal {
  3215. font-weight: 400 !important;
  3216. }
  3217. .font-weight-bold {
  3218. font-weight: 700 !important;
  3219. }
  3220. .font-weight-bolder {
  3221. font-weight: bolder !important;
  3222. }
  3223. .font-italic {
  3224. font-style: italic !important;
  3225. }
  3226. .text-white {
  3227. color: #fff !important;
  3228. }
  3229. .text-primary {
  3230. color: #EE7800 !important;
  3231. }
  3232. a.text-primary:hover, a.text-primary:focus {
  3233. color: #a25100 !important;
  3234. }
  3235. .text-secondary {
  3236. color: #AAAAAA !important;
  3237. }
  3238. a.text-secondary:hover, a.text-secondary:focus {
  3239. color: #848484 !important;
  3240. }
  3241. .text-success {
  3242. color: #28a745 !important;
  3243. }
  3244. a.text-success:hover, a.text-success:focus {
  3245. color: #19692c !important;
  3246. }
  3247. .text-info {
  3248. color: #17a2b8 !important;
  3249. }
  3250. a.text-info:hover, a.text-info:focus {
  3251. color: #0f6674 !important;
  3252. }
  3253. .text-warning {
  3254. color: #ffc107 !important;
  3255. }
  3256. a.text-warning:hover, a.text-warning:focus {
  3257. color: #ba8b00 !important;
  3258. }
  3259. .text-danger {
  3260. color: #dc3545 !important;
  3261. }
  3262. a.text-danger:hover, a.text-danger:focus {
  3263. color: #a71d2a !important;
  3264. }
  3265. .text-light {
  3266. color: #f8f9fa !important;
  3267. }
  3268. a.text-light:hover, a.text-light:focus {
  3269. color: #cbd3da !important;
  3270. }
  3271. .text-dark {
  3272. color: #343a40 !important;
  3273. }
  3274. a.text-dark:hover, a.text-dark:focus {
  3275. color: #121416 !important;
  3276. }
  3277. .text-body {
  3278. color: #212529 !important;
  3279. }
  3280. .text-muted {
  3281. color: #727679 !important;
  3282. }
  3283. .text-black-50 {
  3284. color: rgba(0, 0, 0, 0.5) !important;
  3285. }
  3286. .text-white-50 {
  3287. color: rgba(255, 255, 255, 0.5) !important;
  3288. }
  3289. .text-hide {
  3290. font: 0/0 a;
  3291. color: transparent;
  3292. text-shadow: none;
  3293. background-color: transparent;
  3294. border: 0;
  3295. }
  3296. .text-decoration-none {
  3297. text-decoration: none !important;
  3298. }
  3299. .text-break {
  3300. word-break: break-word !important;
  3301. overflow-wrap: break-word !important;
  3302. }
  3303. .text-reset {
  3304. color: inherit !important;
  3305. }
  3306. .visible {
  3307. visibility: visible !important;
  3308. }
  3309. .invisible {
  3310. visibility: hidden !important;
  3311. }
  3312. :root {
  3313. --blue: #007bff;
  3314. --indigo: #6610f2;
  3315. --purple: #6f42c1;
  3316. --pink: #e83e8c;
  3317. --red: #dc3545;
  3318. --orange: #fd7e14;
  3319. --yellow: #ffc107;
  3320. --green: #28a745;
  3321. --teal: #20c997;
  3322. --cyan: #17a2b8;
  3323. --white: #fff;
  3324. --gray: #727679;
  3325. --gray-dark: #343a40;
  3326. --primary: #EE7800;
  3327. --secondary: #AAAAAA;
  3328. --success: #28a745;
  3329. --info: #17a2b8;
  3330. --warning: #ffc107;
  3331. --danger: #dc3545;
  3332. --light: #f8f9fa;
  3333. --dark: #343a40;
  3334. --breakpoint-xs: 0;
  3335. --breakpoint-sm: 576px;
  3336. --breakpoint-md: 768px;
  3337. --breakpoint-lg: 992px;
  3338. --breakpoint-xl: 1200px;
  3339. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  3340. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  3341. }
  3342. *,
  3343. *::before,
  3344. *::after {
  3345. -webkit-box-sizing: border-box;
  3346. box-sizing: border-box;
  3347. }
  3348. html {
  3349. font-family: sans-serif;
  3350. line-height: 1.15;
  3351. -webkit-text-size-adjust: 100%;
  3352. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  3353. }
  3354. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  3355. display: block;
  3356. }
  3357. body {
  3358. margin: 0;
  3359. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  3360. font-size: 1rem;
  3361. font-weight: 400;
  3362. line-height: 1.5;
  3363. color: #212529;
  3364. text-align: left;
  3365. background-color: #fff;
  3366. }
  3367. [tabindex="-1"]:focus:not(:focus-visible) {
  3368. outline: 0 !important;
  3369. }
  3370. hr {
  3371. -webkit-box-sizing: content-box;
  3372. box-sizing: content-box;
  3373. height: 0;
  3374. overflow: visible;
  3375. }
  3376. h1, h2, h3, h4, h5, h6 {
  3377. margin-top: 0;
  3378. margin-bottom: 0.5rem;
  3379. }
  3380. p {
  3381. margin-top: 0;
  3382. margin-bottom: 1rem;
  3383. }
  3384. abbr[title],
  3385. abbr[data-original-title] {
  3386. text-decoration: underline;
  3387. -webkit-text-decoration: underline dotted;
  3388. text-decoration: underline dotted;
  3389. cursor: help;
  3390. border-bottom: 0;
  3391. text-decoration-skip-ink: none;
  3392. }
  3393. address {
  3394. margin-bottom: 1rem;
  3395. font-style: normal;
  3396. line-height: inherit;
  3397. }
  3398. ol,
  3399. ul,
  3400. dl {
  3401. margin-top: 0;
  3402. margin-bottom: 1rem;
  3403. }
  3404. ol ol,
  3405. ul ul,
  3406. ol ul,
  3407. ul ol {
  3408. margin-bottom: 0;
  3409. }
  3410. dt {
  3411. font-weight: 700;
  3412. }
  3413. dd {
  3414. margin-bottom: .5rem;
  3415. margin-left: 0;
  3416. }
  3417. blockquote {
  3418. margin: 0 0 1rem;
  3419. }
  3420. b,
  3421. strong {
  3422. font-weight: bolder;
  3423. }
  3424. small {
  3425. font-size: 80%;
  3426. }
  3427. sub,
  3428. sup {
  3429. position: relative;
  3430. font-size: 75%;
  3431. line-height: 0;
  3432. vertical-align: baseline;
  3433. }
  3434. sub {
  3435. bottom: -.25em;
  3436. }
  3437. sup {
  3438. top: -.5em;
  3439. }
  3440. a {
  3441. color: #EE7800;
  3442. text-decoration: none;
  3443. background-color: transparent;
  3444. }
  3445. a:hover {
  3446. color: #a25100;
  3447. text-decoration: underline;
  3448. }
  3449. a:not([href]) {
  3450. color: inherit;
  3451. text-decoration: none;
  3452. }
  3453. a:not([href]):hover {
  3454. color: inherit;
  3455. text-decoration: none;
  3456. }
  3457. pre,
  3458. code,
  3459. kbd,
  3460. samp {
  3461. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  3462. font-size: 1em;
  3463. }
  3464. pre {
  3465. margin-top: 0;
  3466. margin-bottom: 1rem;
  3467. overflow: auto;
  3468. }
  3469. figure {
  3470. margin: 0 0 1rem;
  3471. }
  3472. img {
  3473. vertical-align: middle;
  3474. border-style: none;
  3475. }
  3476. svg {
  3477. overflow: hidden;
  3478. vertical-align: middle;
  3479. }
  3480. table {
  3481. border-collapse: collapse;
  3482. }
  3483. caption {
  3484. padding-top: 0.75rem;
  3485. padding-bottom: 0.75rem;
  3486. color: #727679;
  3487. text-align: left;
  3488. caption-side: bottom;
  3489. }
  3490. th {
  3491. text-align: inherit;
  3492. }
  3493. label {
  3494. display: inline-block;
  3495. margin-bottom: 0.5rem;
  3496. }
  3497. button {
  3498. border-radius: 0;
  3499. }
  3500. button:focus {
  3501. outline: 1px dotted;
  3502. outline: 5px auto -webkit-focus-ring-color;
  3503. }
  3504. input,
  3505. button,
  3506. select,
  3507. optgroup,
  3508. textarea {
  3509. margin: 0;
  3510. font-family: inherit;
  3511. font-size: inherit;
  3512. line-height: inherit;
  3513. }
  3514. button,
  3515. input {
  3516. overflow: visible;
  3517. }
  3518. button,
  3519. select {
  3520. text-transform: none;
  3521. }
  3522. select {
  3523. word-wrap: normal;
  3524. }
  3525. button,
  3526. [type="button"],
  3527. [type="reset"],
  3528. [type="submit"] {
  3529. -webkit-appearance: button;
  3530. }
  3531. button:not(:disabled),
  3532. [type="button"]:not(:disabled),
  3533. [type="reset"]:not(:disabled),
  3534. [type="submit"]:not(:disabled) {
  3535. cursor: pointer;
  3536. }
  3537. button::-moz-focus-inner,
  3538. [type="button"]::-moz-focus-inner,
  3539. [type="reset"]::-moz-focus-inner,
  3540. [type="submit"]::-moz-focus-inner {
  3541. padding: 0;
  3542. border-style: none;
  3543. }
  3544. input[type="radio"],
  3545. input[type="checkbox"] {
  3546. -webkit-box-sizing: border-box;
  3547. box-sizing: border-box;
  3548. padding: 0;
  3549. }
  3550. input[type="date"],
  3551. input[type="time"],
  3552. input[type="datetime-local"],
  3553. input[type="month"] {
  3554. -webkit-appearance: listbox;
  3555. }
  3556. textarea {
  3557. overflow: auto;
  3558. resize: vertical;
  3559. }
  3560. fieldset {
  3561. min-width: 0;
  3562. padding: 0;
  3563. margin: 0;
  3564. border: 0;
  3565. }
  3566. legend {
  3567. display: block;
  3568. width: 100%;
  3569. max-width: 100%;
  3570. padding: 0;
  3571. margin-bottom: .5rem;
  3572. font-size: 1.5rem;
  3573. line-height: inherit;
  3574. color: inherit;
  3575. white-space: normal;
  3576. }
  3577. progress {
  3578. vertical-align: baseline;
  3579. }
  3580. [type="number"]::-webkit-inner-spin-button,
  3581. [type="number"]::-webkit-outer-spin-button {
  3582. height: auto;
  3583. }
  3584. [type="search"] {
  3585. outline-offset: -2px;
  3586. -webkit-appearance: none;
  3587. }
  3588. [type="search"]::-webkit-search-decoration {
  3589. -webkit-appearance: none;
  3590. }
  3591. ::-webkit-file-upload-button {
  3592. font: inherit;
  3593. -webkit-appearance: button;
  3594. }
  3595. output {
  3596. display: inline-block;
  3597. }
  3598. summary {
  3599. display: list-item;
  3600. cursor: pointer;
  3601. }
  3602. template {
  3603. display: none;
  3604. }
  3605. [hidden] {
  3606. display: none !important;
  3607. }
  3608. h1, h2, h3, h4, h5, h6,
  3609. .h1, .h2, .h3, .h4, .h5, .h6 {
  3610. margin-bottom: 0.5rem;
  3611. font-weight: 500;
  3612. line-height: 1.2;
  3613. }
  3614. h1, .h1 {
  3615. font-size: 2.5rem;
  3616. }
  3617. h2, .h2 {
  3618. font-size: 2rem;
  3619. }
  3620. h3, .h3 {
  3621. font-size: 1.75rem;
  3622. }
  3623. h4, .h4 {
  3624. font-size: 1.5rem;
  3625. }
  3626. h5, .h5 {
  3627. font-size: 1.25rem;
  3628. }
  3629. h6, .h6 {
  3630. font-size: 1rem;
  3631. }
  3632. .lead {
  3633. font-size: 1.25rem;
  3634. font-weight: 300;
  3635. }
  3636. .display-1 {
  3637. font-size: 6rem;
  3638. font-weight: 300;
  3639. line-height: 1.2;
  3640. }
  3641. .display-2 {
  3642. font-size: 5.5rem;
  3643. font-weight: 300;
  3644. line-height: 1.2;
  3645. }
  3646. .display-3 {
  3647. font-size: 4.5rem;
  3648. font-weight: 300;
  3649. line-height: 1.2;
  3650. }
  3651. .display-4 {
  3652. font-size: 3.5rem;
  3653. font-weight: 300;
  3654. line-height: 1.2;
  3655. }
  3656. hr {
  3657. margin-top: 1rem;
  3658. margin-bottom: 1rem;
  3659. border: 0;
  3660. border-top: 1px solid rgba(0, 0, 0, 0.1);
  3661. }
  3662. small,
  3663. .small {
  3664. font-size: 80%;
  3665. font-weight: 400;
  3666. }
  3667. mark,
  3668. .mark {
  3669. padding: 0.2em;
  3670. background-color: #fcf8e3;
  3671. }
  3672. .list-unstyled {
  3673. padding-left: 0;
  3674. list-style: none;
  3675. }
  3676. .list-inline {
  3677. padding-left: 0;
  3678. list-style: none;
  3679. }
  3680. .list-inline-item {
  3681. display: inline-block;
  3682. }
  3683. .list-inline-item:not(:last-child) {
  3684. margin-right: 0.5rem;
  3685. }
  3686. .initialism {
  3687. font-size: 90%;
  3688. text-transform: uppercase;
  3689. }
  3690. .blockquote {
  3691. margin-bottom: 1rem;
  3692. font-size: 1.25rem;
  3693. }
  3694. .blockquote-footer {
  3695. display: block;
  3696. font-size: 80%;
  3697. color: #727679;
  3698. }
  3699. .blockquote-footer::before {
  3700. content: "\2014\00A0";
  3701. }
  3702. .img-fluid {
  3703. max-width: 100%;
  3704. height: auto;
  3705. }
  3706. .img-thumbnail {
  3707. padding: 0.25rem;
  3708. background-color: #fff;
  3709. border: 1px solid #dee2e6;
  3710. border-radius: 0.25rem;
  3711. max-width: 100%;
  3712. height: auto;
  3713. }
  3714. .figure {
  3715. display: inline-block;
  3716. }
  3717. .figure-img {
  3718. margin-bottom: 0.5rem;
  3719. line-height: 1;
  3720. }
  3721. .figure-caption {
  3722. font-size: 90%;
  3723. color: #727679;
  3724. }
  3725. .container {
  3726. width: 100%;
  3727. padding-right: 15px;
  3728. padding-left: 15px;
  3729. margin-right: auto;
  3730. margin-left: auto;
  3731. }
  3732. @media (min-width: 576px) {
  3733. .container {
  3734. max-width: 540px;
  3735. }
  3736. }
  3737. @media (min-width: 768px) {
  3738. .container {
  3739. max-width: 720px;
  3740. }
  3741. }
  3742. @media (min-width: 992px) {
  3743. .container {
  3744. max-width: 960px;
  3745. }
  3746. }
  3747. @media (min-width: 1200px) {
  3748. .container {
  3749. max-width: 1310px;
  3750. }
  3751. }
  3752. .container-fluid, .container-sm, .container-md, .container-lg, .container-xl {
  3753. width: 100%;
  3754. padding-right: 15px;
  3755. padding-left: 15px;
  3756. margin-right: auto;
  3757. margin-left: auto;
  3758. }
  3759. @media (min-width: 576px) {
  3760. .container, .container-sm {
  3761. max-width: 540px;
  3762. }
  3763. }
  3764. @media (min-width: 768px) {
  3765. .container, .container-sm, .container-md {
  3766. max-width: 720px;
  3767. }
  3768. }
  3769. @media (min-width: 992px) {
  3770. .container, .container-sm, .container-md, .container-lg {
  3771. max-width: 960px;
  3772. }
  3773. }
  3774. @media (min-width: 1200px) {
  3775. .container, .container-sm, .container-md, .container-lg, .container-xl {
  3776. max-width: 1310px;
  3777. }
  3778. }
  3779. .row {
  3780. display: -webkit-box;
  3781. display: -ms-flexbox;
  3782. display: flex;
  3783. -ms-flex-wrap: wrap;
  3784. flex-wrap: wrap;
  3785. margin-right: -15px;
  3786. margin-left: -15px;
  3787. }
  3788. .no-gutters {
  3789. margin-right: 0;
  3790. margin-left: 0;
  3791. }
  3792. .no-gutters > .col,
  3793. .no-gutters > [class*="col-"] {
  3794. padding-right: 0;
  3795. padding-left: 0;
  3796. }
  3797. .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,
  3798. .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,
  3799. .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,
  3800. .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,
  3801. .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,
  3802. .col-xl-auto {
  3803. position: relative;
  3804. width: 100%;
  3805. padding-right: 15px;
  3806. padding-left: 15px;
  3807. }
  3808. .col {
  3809. -ms-flex-preferred-size: 0;
  3810. flex-basis: 0;
  3811. -webkit-box-flex: 1;
  3812. -ms-flex-positive: 1;
  3813. flex-grow: 1;
  3814. max-width: 100%;
  3815. }
  3816. .row-cols-1 > * {
  3817. -webkit-box-flex: 0;
  3818. -ms-flex: 0 0 100%;
  3819. flex: 0 0 100%;
  3820. max-width: 100%;
  3821. }
  3822. .row-cols-2 > * {
  3823. -webkit-box-flex: 0;
  3824. -ms-flex: 0 0 50%;
  3825. flex: 0 0 50%;
  3826. max-width: 50%;
  3827. }
  3828. .row-cols-3 > * {
  3829. -webkit-box-flex: 0;
  3830. -ms-flex: 0 0 33.33333%;
  3831. flex: 0 0 33.33333%;
  3832. max-width: 33.33333%;
  3833. }
  3834. .row-cols-4 > * {
  3835. -webkit-box-flex: 0;
  3836. -ms-flex: 0 0 25%;
  3837. flex: 0 0 25%;
  3838. max-width: 25%;
  3839. }
  3840. .row-cols-5 > * {
  3841. -webkit-box-flex: 0;
  3842. -ms-flex: 0 0 20%;
  3843. flex: 0 0 20%;
  3844. max-width: 20%;
  3845. }
  3846. .row-cols-6 > * {
  3847. -webkit-box-flex: 0;
  3848. -ms-flex: 0 0 16.66667%;
  3849. flex: 0 0 16.66667%;
  3850. max-width: 16.66667%;
  3851. }
  3852. .col-auto {
  3853. -webkit-box-flex: 0;
  3854. -ms-flex: 0 0 auto;
  3855. flex: 0 0 auto;
  3856. width: auto;
  3857. max-width: 100%;
  3858. }
  3859. .col-1 {
  3860. -webkit-box-flex: 0;
  3861. -ms-flex: 0 0 8.33333%;
  3862. flex: 0 0 8.33333%;
  3863. max-width: 8.33333%;
  3864. }
  3865. .col-2 {
  3866. -webkit-box-flex: 0;
  3867. -ms-flex: 0 0 16.66667%;
  3868. flex: 0 0 16.66667%;
  3869. max-width: 16.66667%;
  3870. }
  3871. .col-3 {
  3872. -webkit-box-flex: 0;
  3873. -ms-flex: 0 0 25%;
  3874. flex: 0 0 25%;
  3875. max-width: 25%;
  3876. }
  3877. .col-4 {
  3878. -webkit-box-flex: 0;
  3879. -ms-flex: 0 0 33.33333%;
  3880. flex: 0 0 33.33333%;
  3881. max-width: 33.33333%;
  3882. }
  3883. .col-5 {
  3884. -webkit-box-flex: 0;
  3885. -ms-flex: 0 0 41.66667%;
  3886. flex: 0 0 41.66667%;
  3887. max-width: 41.66667%;
  3888. }
  3889. .col-6 {
  3890. -webkit-box-flex: 0;
  3891. -ms-flex: 0 0 50%;
  3892. flex: 0 0 50%;
  3893. max-width: 50%;
  3894. }
  3895. .col-7 {
  3896. -webkit-box-flex: 0;
  3897. -ms-flex: 0 0 58.33333%;
  3898. flex: 0 0 58.33333%;
  3899. max-width: 58.33333%;
  3900. }
  3901. .col-8 {
  3902. -webkit-box-flex: 0;
  3903. -ms-flex: 0 0 66.66667%;
  3904. flex: 0 0 66.66667%;
  3905. max-width: 66.66667%;
  3906. }
  3907. .col-9 {
  3908. -webkit-box-flex: 0;
  3909. -ms-flex: 0 0 75%;
  3910. flex: 0 0 75%;
  3911. max-width: 75%;
  3912. }
  3913. .col-10 {
  3914. -webkit-box-flex: 0;
  3915. -ms-flex: 0 0 83.33333%;
  3916. flex: 0 0 83.33333%;
  3917. max-width: 83.33333%;
  3918. }
  3919. .col-11 {
  3920. -webkit-box-flex: 0;
  3921. -ms-flex: 0 0 91.66667%;
  3922. flex: 0 0 91.66667%;
  3923. max-width: 91.66667%;
  3924. }
  3925. .col-12 {
  3926. -webkit-box-flex: 0;
  3927. -ms-flex: 0 0 100%;
  3928. flex: 0 0 100%;
  3929. max-width: 100%;
  3930. }
  3931. .order-first {
  3932. -webkit-box-ordinal-group: 0;
  3933. -ms-flex-order: -1;
  3934. order: -1;
  3935. }
  3936. .order-last {
  3937. -webkit-box-ordinal-group: 14;
  3938. -ms-flex-order: 13;
  3939. order: 13;
  3940. }
  3941. .order-0 {
  3942. -webkit-box-ordinal-group: 1;
  3943. -ms-flex-order: 0;
  3944. order: 0;
  3945. }
  3946. .order-1 {
  3947. -webkit-box-ordinal-group: 2;
  3948. -ms-flex-order: 1;
  3949. order: 1;
  3950. }
  3951. .order-2 {
  3952. -webkit-box-ordinal-group: 3;
  3953. -ms-flex-order: 2;
  3954. order: 2;
  3955. }
  3956. .order-3 {
  3957. -webkit-box-ordinal-group: 4;
  3958. -ms-flex-order: 3;
  3959. order: 3;
  3960. }
  3961. .order-4 {
  3962. -webkit-box-ordinal-group: 5;
  3963. -ms-flex-order: 4;
  3964. order: 4;
  3965. }
  3966. .order-5 {
  3967. -webkit-box-ordinal-group: 6;
  3968. -ms-flex-order: 5;
  3969. order: 5;
  3970. }
  3971. .order-6 {
  3972. -webkit-box-ordinal-group: 7;
  3973. -ms-flex-order: 6;
  3974. order: 6;
  3975. }
  3976. .order-7 {
  3977. -webkit-box-ordinal-group: 8;
  3978. -ms-flex-order: 7;
  3979. order: 7;
  3980. }
  3981. .order-8 {
  3982. -webkit-box-ordinal-group: 9;
  3983. -ms-flex-order: 8;
  3984. order: 8;
  3985. }
  3986. .order-9 {
  3987. -webkit-box-ordinal-group: 10;
  3988. -ms-flex-order: 9;
  3989. order: 9;
  3990. }
  3991. .order-10 {
  3992. -webkit-box-ordinal-group: 11;
  3993. -ms-flex-order: 10;
  3994. order: 10;
  3995. }
  3996. .order-11 {
  3997. -webkit-box-ordinal-group: 12;
  3998. -ms-flex-order: 11;
  3999. order: 11;
  4000. }
  4001. .order-12 {
  4002. -webkit-box-ordinal-group: 13;
  4003. -ms-flex-order: 12;
  4004. order: 12;
  4005. }
  4006. .offset-1 {
  4007. margin-left: 8.33333%;
  4008. }
  4009. .offset-2 {
  4010. margin-left: 16.66667%;
  4011. }
  4012. .offset-3 {
  4013. margin-left: 25%;
  4014. }
  4015. .offset-4 {
  4016. margin-left: 33.33333%;
  4017. }
  4018. .offset-5 {
  4019. margin-left: 41.66667%;
  4020. }
  4021. .offset-6 {
  4022. margin-left: 50%;
  4023. }
  4024. .offset-7 {
  4025. margin-left: 58.33333%;
  4026. }
  4027. .offset-8 {
  4028. margin-left: 66.66667%;
  4029. }
  4030. .offset-9 {
  4031. margin-left: 75%;
  4032. }
  4033. .offset-10 {
  4034. margin-left: 83.33333%;
  4035. }
  4036. .offset-11 {
  4037. margin-left: 91.66667%;
  4038. }
  4039. @media (min-width: 576px) {
  4040. .col-sm {
  4041. -ms-flex-preferred-size: 0;
  4042. flex-basis: 0;
  4043. -webkit-box-flex: 1;
  4044. -ms-flex-positive: 1;
  4045. flex-grow: 1;
  4046. max-width: 100%;
  4047. }
  4048. .row-cols-sm-1 > * {
  4049. -webkit-box-flex: 0;
  4050. -ms-flex: 0 0 100%;
  4051. flex: 0 0 100%;
  4052. max-width: 100%;
  4053. }
  4054. .row-cols-sm-2 > * {
  4055. -webkit-box-flex: 0;
  4056. -ms-flex: 0 0 50%;
  4057. flex: 0 0 50%;
  4058. max-width: 50%;
  4059. }
  4060. .row-cols-sm-3 > * {
  4061. -webkit-box-flex: 0;
  4062. -ms-flex: 0 0 33.33333%;
  4063. flex: 0 0 33.33333%;
  4064. max-width: 33.33333%;
  4065. }
  4066. .row-cols-sm-4 > * {
  4067. -webkit-box-flex: 0;
  4068. -ms-flex: 0 0 25%;
  4069. flex: 0 0 25%;
  4070. max-width: 25%;
  4071. }
  4072. .row-cols-sm-5 > * {
  4073. -webkit-box-flex: 0;
  4074. -ms-flex: 0 0 20%;
  4075. flex: 0 0 20%;
  4076. max-width: 20%;
  4077. }
  4078. .row-cols-sm-6 > * {
  4079. -webkit-box-flex: 0;
  4080. -ms-flex: 0 0 16.66667%;
  4081. flex: 0 0 16.66667%;
  4082. max-width: 16.66667%;
  4083. }
  4084. .col-sm-auto {
  4085. -webkit-box-flex: 0;
  4086. -ms-flex: 0 0 auto;
  4087. flex: 0 0 auto;
  4088. width: auto;
  4089. max-width: 100%;
  4090. }
  4091. .col-sm-1 {
  4092. -webkit-box-flex: 0;
  4093. -ms-flex: 0 0 8.33333%;
  4094. flex: 0 0 8.33333%;
  4095. max-width: 8.33333%;
  4096. }
  4097. .col-sm-2 {
  4098. -webkit-box-flex: 0;
  4099. -ms-flex: 0 0 16.66667%;
  4100. flex: 0 0 16.66667%;
  4101. max-width: 16.66667%;
  4102. }
  4103. .col-sm-3 {
  4104. -webkit-box-flex: 0;
  4105. -ms-flex: 0 0 25%;
  4106. flex: 0 0 25%;
  4107. max-width: 25%;
  4108. }
  4109. .col-sm-4 {
  4110. -webkit-box-flex: 0;
  4111. -ms-flex: 0 0 33.33333%;
  4112. flex: 0 0 33.33333%;
  4113. max-width: 33.33333%;
  4114. }
  4115. .col-sm-5 {
  4116. -webkit-box-flex: 0;
  4117. -ms-flex: 0 0 41.66667%;
  4118. flex: 0 0 41.66667%;
  4119. max-width: 41.66667%;
  4120. }
  4121. .col-sm-6 {
  4122. -webkit-box-flex: 0;
  4123. -ms-flex: 0 0 50%;
  4124. flex: 0 0 50%;
  4125. max-width: 50%;
  4126. }
  4127. .col-sm-7 {
  4128. -webkit-box-flex: 0;
  4129. -ms-flex: 0 0 58.33333%;
  4130. flex: 0 0 58.33333%;
  4131. max-width: 58.33333%;
  4132. }
  4133. .col-sm-8 {
  4134. -webkit-box-flex: 0;
  4135. -ms-flex: 0 0 66.66667%;
  4136. flex: 0 0 66.66667%;
  4137. max-width: 66.66667%;
  4138. }
  4139. .col-sm-9 {
  4140. -webkit-box-flex: 0;
  4141. -ms-flex: 0 0 75%;
  4142. flex: 0 0 75%;
  4143. max-width: 75%;
  4144. }
  4145. .col-sm-10 {
  4146. -webkit-box-flex: 0;
  4147. -ms-flex: 0 0 83.33333%;
  4148. flex: 0 0 83.33333%;
  4149. max-width: 83.33333%;
  4150. }
  4151. .col-sm-11 {
  4152. -webkit-box-flex: 0;
  4153. -ms-flex: 0 0 91.66667%;
  4154. flex: 0 0 91.66667%;
  4155. max-width: 91.66667%;
  4156. }
  4157. .col-sm-12 {
  4158. -webkit-box-flex: 0;
  4159. -ms-flex: 0 0 100%;
  4160. flex: 0 0 100%;
  4161. max-width: 100%;
  4162. }
  4163. .order-sm-first {
  4164. -webkit-box-ordinal-group: 0;
  4165. -ms-flex-order: -1;
  4166. order: -1;
  4167. }
  4168. .order-sm-last {
  4169. -webkit-box-ordinal-group: 14;
  4170. -ms-flex-order: 13;
  4171. order: 13;
  4172. }
  4173. .order-sm-0 {
  4174. -webkit-box-ordinal-group: 1;
  4175. -ms-flex-order: 0;
  4176. order: 0;
  4177. }
  4178. .order-sm-1 {
  4179. -webkit-box-ordinal-group: 2;
  4180. -ms-flex-order: 1;
  4181. order: 1;
  4182. }
  4183. .order-sm-2 {
  4184. -webkit-box-ordinal-group: 3;
  4185. -ms-flex-order: 2;
  4186. order: 2;
  4187. }
  4188. .order-sm-3 {
  4189. -webkit-box-ordinal-group: 4;
  4190. -ms-flex-order: 3;
  4191. order: 3;
  4192. }
  4193. .order-sm-4 {
  4194. -webkit-box-ordinal-group: 5;
  4195. -ms-flex-order: 4;
  4196. order: 4;
  4197. }
  4198. .order-sm-5 {
  4199. -webkit-box-ordinal-group: 6;
  4200. -ms-flex-order: 5;
  4201. order: 5;
  4202. }
  4203. .order-sm-6 {
  4204. -webkit-box-ordinal-group: 7;
  4205. -ms-flex-order: 6;
  4206. order: 6;
  4207. }
  4208. .order-sm-7 {
  4209. -webkit-box-ordinal-group: 8;
  4210. -ms-flex-order: 7;
  4211. order: 7;
  4212. }
  4213. .order-sm-8 {
  4214. -webkit-box-ordinal-group: 9;
  4215. -ms-flex-order: 8;
  4216. order: 8;
  4217. }
  4218. .order-sm-9 {
  4219. -webkit-box-ordinal-group: 10;
  4220. -ms-flex-order: 9;
  4221. order: 9;
  4222. }
  4223. .order-sm-10 {
  4224. -webkit-box-ordinal-group: 11;
  4225. -ms-flex-order: 10;
  4226. order: 10;
  4227. }
  4228. .order-sm-11 {
  4229. -webkit-box-ordinal-group: 12;
  4230. -ms-flex-order: 11;
  4231. order: 11;
  4232. }
  4233. .order-sm-12 {
  4234. -webkit-box-ordinal-group: 13;
  4235. -ms-flex-order: 12;
  4236. order: 12;
  4237. }
  4238. .offset-sm-0 {
  4239. margin-left: 0;
  4240. }
  4241. .offset-sm-1 {
  4242. margin-left: 8.33333%;
  4243. }
  4244. .offset-sm-2 {
  4245. margin-left: 16.66667%;
  4246. }
  4247. .offset-sm-3 {
  4248. margin-left: 25%;
  4249. }
  4250. .offset-sm-4 {
  4251. margin-left: 33.33333%;
  4252. }
  4253. .offset-sm-5 {
  4254. margin-left: 41.66667%;
  4255. }
  4256. .offset-sm-6 {
  4257. margin-left: 50%;
  4258. }
  4259. .offset-sm-7 {
  4260. margin-left: 58.33333%;
  4261. }
  4262. .offset-sm-8 {
  4263. margin-left: 66.66667%;
  4264. }
  4265. .offset-sm-9 {
  4266. margin-left: 75%;
  4267. }
  4268. .offset-sm-10 {
  4269. margin-left: 83.33333%;
  4270. }
  4271. .offset-sm-11 {
  4272. margin-left: 91.66667%;
  4273. }
  4274. }
  4275. @media (min-width: 768px) {
  4276. .col-md {
  4277. -ms-flex-preferred-size: 0;
  4278. flex-basis: 0;
  4279. -webkit-box-flex: 1;
  4280. -ms-flex-positive: 1;
  4281. flex-grow: 1;
  4282. max-width: 100%;
  4283. }
  4284. .row-cols-md-1 > * {
  4285. -webkit-box-flex: 0;
  4286. -ms-flex: 0 0 100%;
  4287. flex: 0 0 100%;
  4288. max-width: 100%;
  4289. }
  4290. .row-cols-md-2 > * {
  4291. -webkit-box-flex: 0;
  4292. -ms-flex: 0 0 50%;
  4293. flex: 0 0 50%;
  4294. max-width: 50%;
  4295. }
  4296. .row-cols-md-3 > * {
  4297. -webkit-box-flex: 0;
  4298. -ms-flex: 0 0 33.33333%;
  4299. flex: 0 0 33.33333%;
  4300. max-width: 33.33333%;
  4301. }
  4302. .row-cols-md-4 > * {
  4303. -webkit-box-flex: 0;
  4304. -ms-flex: 0 0 25%;
  4305. flex: 0 0 25%;
  4306. max-width: 25%;
  4307. }
  4308. .row-cols-md-5 > * {
  4309. -webkit-box-flex: 0;
  4310. -ms-flex: 0 0 20%;
  4311. flex: 0 0 20%;
  4312. max-width: 20%;
  4313. }
  4314. .row-cols-md-6 > * {
  4315. -webkit-box-flex: 0;
  4316. -ms-flex: 0 0 16.66667%;
  4317. flex: 0 0 16.66667%;
  4318. max-width: 16.66667%;
  4319. }
  4320. .col-md-auto {
  4321. -webkit-box-flex: 0;
  4322. -ms-flex: 0 0 auto;
  4323. flex: 0 0 auto;
  4324. width: auto;
  4325. max-width: 100%;
  4326. }
  4327. .col-md-1 {
  4328. -webkit-box-flex: 0;
  4329. -ms-flex: 0 0 8.33333%;
  4330. flex: 0 0 8.33333%;
  4331. max-width: 8.33333%;
  4332. }
  4333. .col-md-2 {
  4334. -webkit-box-flex: 0;
  4335. -ms-flex: 0 0 16.66667%;
  4336. flex: 0 0 16.66667%;
  4337. max-width: 16.66667%;
  4338. }
  4339. .col-md-3 {
  4340. -webkit-box-flex: 0;
  4341. -ms-flex: 0 0 25%;
  4342. flex: 0 0 25%;
  4343. max-width: 25%;
  4344. }
  4345. .col-md-4 {
  4346. -webkit-box-flex: 0;
  4347. -ms-flex: 0 0 33.33333%;
  4348. flex: 0 0 33.33333%;
  4349. max-width: 33.33333%;
  4350. }
  4351. .col-md-5 {
  4352. -webkit-box-flex: 0;
  4353. -ms-flex: 0 0 41.66667%;
  4354. flex: 0 0 41.66667%;
  4355. max-width: 41.66667%;
  4356. }
  4357. .col-md-6 {
  4358. -webkit-box-flex: 0;
  4359. -ms-flex: 0 0 50%;
  4360. flex: 0 0 50%;
  4361. max-width: 50%;
  4362. }
  4363. .col-md-7 {
  4364. -webkit-box-flex: 0;
  4365. -ms-flex: 0 0 58.33333%;
  4366. flex: 0 0 58.33333%;
  4367. max-width: 58.33333%;
  4368. }
  4369. .col-md-8 {
  4370. -webkit-box-flex: 0;
  4371. -ms-flex: 0 0 66.66667%;
  4372. flex: 0 0 66.66667%;
  4373. max-width: 66.66667%;
  4374. }
  4375. .col-md-9 {
  4376. -webkit-box-flex: 0;
  4377. -ms-flex: 0 0 75%;
  4378. flex: 0 0 75%;
  4379. max-width: 75%;
  4380. }
  4381. .col-md-10 {
  4382. -webkit-box-flex: 0;
  4383. -ms-flex: 0 0 83.33333%;
  4384. flex: 0 0 83.33333%;
  4385. max-width: 83.33333%;
  4386. }
  4387. .col-md-11 {
  4388. -webkit-box-flex: 0;
  4389. -ms-flex: 0 0 91.66667%;
  4390. flex: 0 0 91.66667%;
  4391. max-width: 91.66667%;
  4392. }
  4393. .col-md-12 {
  4394. -webkit-box-flex: 0;
  4395. -ms-flex: 0 0 100%;
  4396. flex: 0 0 100%;
  4397. max-width: 100%;
  4398. }
  4399. .order-md-first {
  4400. -webkit-box-ordinal-group: 0;
  4401. -ms-flex-order: -1;
  4402. order: -1;
  4403. }
  4404. .order-md-last {
  4405. -webkit-box-ordinal-group: 14;
  4406. -ms-flex-order: 13;
  4407. order: 13;
  4408. }
  4409. .order-md-0 {
  4410. -webkit-box-ordinal-group: 1;
  4411. -ms-flex-order: 0;
  4412. order: 0;
  4413. }
  4414. .order-md-1 {
  4415. -webkit-box-ordinal-group: 2;
  4416. -ms-flex-order: 1;
  4417. order: 1;
  4418. }
  4419. .order-md-2 {
  4420. -webkit-box-ordinal-group: 3;
  4421. -ms-flex-order: 2;
  4422. order: 2;
  4423. }
  4424. .order-md-3 {
  4425. -webkit-box-ordinal-group: 4;
  4426. -ms-flex-order: 3;
  4427. order: 3;
  4428. }
  4429. .order-md-4 {
  4430. -webkit-box-ordinal-group: 5;
  4431. -ms-flex-order: 4;
  4432. order: 4;
  4433. }
  4434. .order-md-5 {
  4435. -webkit-box-ordinal-group: 6;
  4436. -ms-flex-order: 5;
  4437. order: 5;
  4438. }
  4439. .order-md-6 {
  4440. -webkit-box-ordinal-group: 7;
  4441. -ms-flex-order: 6;
  4442. order: 6;
  4443. }
  4444. .order-md-7 {
  4445. -webkit-box-ordinal-group: 8;
  4446. -ms-flex-order: 7;
  4447. order: 7;
  4448. }
  4449. .order-md-8 {
  4450. -webkit-box-ordinal-group: 9;
  4451. -ms-flex-order: 8;
  4452. order: 8;
  4453. }
  4454. .order-md-9 {
  4455. -webkit-box-ordinal-group: 10;
  4456. -ms-flex-order: 9;
  4457. order: 9;
  4458. }
  4459. .order-md-10 {
  4460. -webkit-box-ordinal-group: 11;
  4461. -ms-flex-order: 10;
  4462. order: 10;
  4463. }
  4464. .order-md-11 {
  4465. -webkit-box-ordinal-group: 12;
  4466. -ms-flex-order: 11;
  4467. order: 11;
  4468. }
  4469. .order-md-12 {
  4470. -webkit-box-ordinal-group: 13;
  4471. -ms-flex-order: 12;
  4472. order: 12;
  4473. }
  4474. .offset-md-0 {
  4475. margin-left: 0;
  4476. }
  4477. .offset-md-1 {
  4478. margin-left: 8.33333%;
  4479. }
  4480. .offset-md-2 {
  4481. margin-left: 16.66667%;
  4482. }
  4483. .offset-md-3 {
  4484. margin-left: 25%;
  4485. }
  4486. .offset-md-4 {
  4487. margin-left: 33.33333%;
  4488. }
  4489. .offset-md-5 {
  4490. margin-left: 41.66667%;
  4491. }
  4492. .offset-md-6 {
  4493. margin-left: 50%;
  4494. }
  4495. .offset-md-7 {
  4496. margin-left: 58.33333%;
  4497. }
  4498. .offset-md-8 {
  4499. margin-left: 66.66667%;
  4500. }
  4501. .offset-md-9 {
  4502. margin-left: 75%;
  4503. }
  4504. .offset-md-10 {
  4505. margin-left: 83.33333%;
  4506. }
  4507. .offset-md-11 {
  4508. margin-left: 91.66667%;
  4509. }
  4510. }
  4511. @media (min-width: 992px) {
  4512. .col-lg {
  4513. -ms-flex-preferred-size: 0;
  4514. flex-basis: 0;
  4515. -webkit-box-flex: 1;
  4516. -ms-flex-positive: 1;
  4517. flex-grow: 1;
  4518. max-width: 100%;
  4519. }
  4520. .row-cols-lg-1 > * {
  4521. -webkit-box-flex: 0;
  4522. -ms-flex: 0 0 100%;
  4523. flex: 0 0 100%;
  4524. max-width: 100%;
  4525. }
  4526. .row-cols-lg-2 > * {
  4527. -webkit-box-flex: 0;
  4528. -ms-flex: 0 0 50%;
  4529. flex: 0 0 50%;
  4530. max-width: 50%;
  4531. }
  4532. .row-cols-lg-3 > * {
  4533. -webkit-box-flex: 0;
  4534. -ms-flex: 0 0 33.33333%;
  4535. flex: 0 0 33.33333%;
  4536. max-width: 33.33333%;
  4537. }
  4538. .row-cols-lg-4 > * {
  4539. -webkit-box-flex: 0;
  4540. -ms-flex: 0 0 25%;
  4541. flex: 0 0 25%;
  4542. max-width: 25%;
  4543. }
  4544. .row-cols-lg-5 > * {
  4545. -webkit-box-flex: 0;
  4546. -ms-flex: 0 0 20%;
  4547. flex: 0 0 20%;
  4548. max-width: 20%;
  4549. }
  4550. .row-cols-lg-6 > * {
  4551. -webkit-box-flex: 0;
  4552. -ms-flex: 0 0 16.66667%;
  4553. flex: 0 0 16.66667%;
  4554. max-width: 16.66667%;
  4555. }
  4556. .col-lg-auto {
  4557. -webkit-box-flex: 0;
  4558. -ms-flex: 0 0 auto;
  4559. flex: 0 0 auto;
  4560. width: auto;
  4561. max-width: 100%;
  4562. }
  4563. .col-lg-1 {
  4564. -webkit-box-flex: 0;
  4565. -ms-flex: 0 0 8.33333%;
  4566. flex: 0 0 8.33333%;
  4567. max-width: 8.33333%;
  4568. }
  4569. .col-lg-2 {
  4570. -webkit-box-flex: 0;
  4571. -ms-flex: 0 0 16.66667%;
  4572. flex: 0 0 16.66667%;
  4573. max-width: 16.66667%;
  4574. }
  4575. .col-lg-3 {
  4576. -webkit-box-flex: 0;
  4577. -ms-flex: 0 0 25%;
  4578. flex: 0 0 25%;
  4579. max-width: 25%;
  4580. }
  4581. .col-lg-4 {
  4582. -webkit-box-flex: 0;
  4583. -ms-flex: 0 0 33.33333%;
  4584. flex: 0 0 33.33333%;
  4585. max-width: 33.33333%;
  4586. }
  4587. .col-lg-5 {
  4588. -webkit-box-flex: 0;
  4589. -ms-flex: 0 0 41.66667%;
  4590. flex: 0 0 41.66667%;
  4591. max-width: 41.66667%;
  4592. }
  4593. .col-lg-6 {
  4594. -webkit-box-flex: 0;
  4595. -ms-flex: 0 0 50%;
  4596. flex: 0 0 50%;
  4597. max-width: 50%;
  4598. }
  4599. .col-lg-7 {
  4600. -webkit-box-flex: 0;
  4601. -ms-flex: 0 0 58.33333%;
  4602. flex: 0 0 58.33333%;
  4603. max-width: 58.33333%;
  4604. }
  4605. .col-lg-8 {
  4606. -webkit-box-flex: 0;
  4607. -ms-flex: 0 0 66.66667%;
  4608. flex: 0 0 66.66667%;
  4609. max-width: 66.66667%;
  4610. }
  4611. .col-lg-9 {
  4612. -webkit-box-flex: 0;
  4613. -ms-flex: 0 0 75%;
  4614. flex: 0 0 75%;
  4615. max-width: 75%;
  4616. }
  4617. .col-lg-10 {
  4618. -webkit-box-flex: 0;
  4619. -ms-flex: 0 0 83.33333%;
  4620. flex: 0 0 83.33333%;
  4621. max-width: 83.33333%;
  4622. }
  4623. .col-lg-11 {
  4624. -webkit-box-flex: 0;
  4625. -ms-flex: 0 0 91.66667%;
  4626. flex: 0 0 91.66667%;
  4627. max-width: 91.66667%;
  4628. }
  4629. .col-lg-12 {
  4630. -webkit-box-flex: 0;
  4631. -ms-flex: 0 0 100%;
  4632. flex: 0 0 100%;
  4633. max-width: 100%;
  4634. }
  4635. .order-lg-first {
  4636. -webkit-box-ordinal-group: 0;
  4637. -ms-flex-order: -1;
  4638. order: -1;
  4639. }
  4640. .order-lg-last {
  4641. -webkit-box-ordinal-group: 14;
  4642. -ms-flex-order: 13;
  4643. order: 13;
  4644. }
  4645. .order-lg-0 {
  4646. -webkit-box-ordinal-group: 1;
  4647. -ms-flex-order: 0;
  4648. order: 0;
  4649. }
  4650. .order-lg-1 {
  4651. -webkit-box-ordinal-group: 2;
  4652. -ms-flex-order: 1;
  4653. order: 1;
  4654. }
  4655. .order-lg-2 {
  4656. -webkit-box-ordinal-group: 3;
  4657. -ms-flex-order: 2;
  4658. order: 2;
  4659. }
  4660. .order-lg-3 {
  4661. -webkit-box-ordinal-group: 4;
  4662. -ms-flex-order: 3;
  4663. order: 3;
  4664. }
  4665. .order-lg-4 {
  4666. -webkit-box-ordinal-group: 5;
  4667. -ms-flex-order: 4;
  4668. order: 4;
  4669. }
  4670. .order-lg-5 {
  4671. -webkit-box-ordinal-group: 6;
  4672. -ms-flex-order: 5;
  4673. order: 5;
  4674. }
  4675. .order-lg-6 {
  4676. -webkit-box-ordinal-group: 7;
  4677. -ms-flex-order: 6;
  4678. order: 6;
  4679. }
  4680. .order-lg-7 {
  4681. -webkit-box-ordinal-group: 8;
  4682. -ms-flex-order: 7;
  4683. order: 7;
  4684. }
  4685. .order-lg-8 {
  4686. -webkit-box-ordinal-group: 9;
  4687. -ms-flex-order: 8;
  4688. order: 8;
  4689. }
  4690. .order-lg-9 {
  4691. -webkit-box-ordinal-group: 10;
  4692. -ms-flex-order: 9;
  4693. order: 9;
  4694. }
  4695. .order-lg-10 {
  4696. -webkit-box-ordinal-group: 11;
  4697. -ms-flex-order: 10;
  4698. order: 10;
  4699. }
  4700. .order-lg-11 {
  4701. -webkit-box-ordinal-group: 12;
  4702. -ms-flex-order: 11;
  4703. order: 11;
  4704. }
  4705. .order-lg-12 {
  4706. -webkit-box-ordinal-group: 13;
  4707. -ms-flex-order: 12;
  4708. order: 12;
  4709. }
  4710. .offset-lg-0 {
  4711. margin-left: 0;
  4712. }
  4713. .offset-lg-1 {
  4714. margin-left: 8.33333%;
  4715. }
  4716. .offset-lg-2 {
  4717. margin-left: 16.66667%;
  4718. }
  4719. .offset-lg-3 {
  4720. margin-left: 25%;
  4721. }
  4722. .offset-lg-4 {
  4723. margin-left: 33.33333%;
  4724. }
  4725. .offset-lg-5 {
  4726. margin-left: 41.66667%;
  4727. }
  4728. .offset-lg-6 {
  4729. margin-left: 50%;
  4730. }
  4731. .offset-lg-7 {
  4732. margin-left: 58.33333%;
  4733. }
  4734. .offset-lg-8 {
  4735. margin-left: 66.66667%;
  4736. }
  4737. .offset-lg-9 {
  4738. margin-left: 75%;
  4739. }
  4740. .offset-lg-10 {
  4741. margin-left: 83.33333%;
  4742. }
  4743. .offset-lg-11 {
  4744. margin-left: 91.66667%;
  4745. }
  4746. }
  4747. @media (min-width: 1200px) {
  4748. .col-xl {
  4749. -ms-flex-preferred-size: 0;
  4750. flex-basis: 0;
  4751. -webkit-box-flex: 1;
  4752. -ms-flex-positive: 1;
  4753. flex-grow: 1;
  4754. max-width: 100%;
  4755. }
  4756. .row-cols-xl-1 > * {
  4757. -webkit-box-flex: 0;
  4758. -ms-flex: 0 0 100%;
  4759. flex: 0 0 100%;
  4760. max-width: 100%;
  4761. }
  4762. .row-cols-xl-2 > * {
  4763. -webkit-box-flex: 0;
  4764. -ms-flex: 0 0 50%;
  4765. flex: 0 0 50%;
  4766. max-width: 50%;
  4767. }
  4768. .row-cols-xl-3 > * {
  4769. -webkit-box-flex: 0;
  4770. -ms-flex: 0 0 33.33333%;
  4771. flex: 0 0 33.33333%;
  4772. max-width: 33.33333%;
  4773. }
  4774. .row-cols-xl-4 > * {
  4775. -webkit-box-flex: 0;
  4776. -ms-flex: 0 0 25%;
  4777. flex: 0 0 25%;
  4778. max-width: 25%;
  4779. }
  4780. .row-cols-xl-5 > * {
  4781. -webkit-box-flex: 0;
  4782. -ms-flex: 0 0 20%;
  4783. flex: 0 0 20%;
  4784. max-width: 20%;
  4785. }
  4786. .row-cols-xl-6 > * {
  4787. -webkit-box-flex: 0;
  4788. -ms-flex: 0 0 16.66667%;
  4789. flex: 0 0 16.66667%;
  4790. max-width: 16.66667%;
  4791. }
  4792. .col-xl-auto {
  4793. -webkit-box-flex: 0;
  4794. -ms-flex: 0 0 auto;
  4795. flex: 0 0 auto;
  4796. width: auto;
  4797. max-width: 100%;
  4798. }
  4799. .col-xl-1 {
  4800. -webkit-box-flex: 0;
  4801. -ms-flex: 0 0 8.33333%;
  4802. flex: 0 0 8.33333%;
  4803. max-width: 8.33333%;
  4804. }
  4805. .col-xl-2 {
  4806. -webkit-box-flex: 0;
  4807. -ms-flex: 0 0 16.66667%;
  4808. flex: 0 0 16.66667%;
  4809. max-width: 16.66667%;
  4810. }
  4811. .col-xl-3 {
  4812. -webkit-box-flex: 0;
  4813. -ms-flex: 0 0 25%;
  4814. flex: 0 0 25%;
  4815. max-width: 25%;
  4816. }
  4817. .col-xl-4 {
  4818. -webkit-box-flex: 0;
  4819. -ms-flex: 0 0 33.33333%;
  4820. flex: 0 0 33.33333%;
  4821. max-width: 33.33333%;
  4822. }
  4823. .col-xl-5 {
  4824. -webkit-box-flex: 0;
  4825. -ms-flex: 0 0 41.66667%;
  4826. flex: 0 0 41.66667%;
  4827. max-width: 41.66667%;
  4828. }
  4829. .col-xl-6 {
  4830. -webkit-box-flex: 0;
  4831. -ms-flex: 0 0 50%;
  4832. flex: 0 0 50%;
  4833. max-width: 50%;
  4834. }
  4835. .col-xl-7 {
  4836. -webkit-box-flex: 0;
  4837. -ms-flex: 0 0 58.33333%;
  4838. flex: 0 0 58.33333%;
  4839. max-width: 58.33333%;
  4840. }
  4841. .col-xl-8 {
  4842. -webkit-box-flex: 0;
  4843. -ms-flex: 0 0 66.66667%;
  4844. flex: 0 0 66.66667%;
  4845. max-width: 66.66667%;
  4846. }
  4847. .col-xl-9 {
  4848. -webkit-box-flex: 0;
  4849. -ms-flex: 0 0 75%;
  4850. flex: 0 0 75%;
  4851. max-width: 75%;
  4852. }
  4853. .col-xl-10 {
  4854. -webkit-box-flex: 0;
  4855. -ms-flex: 0 0 83.33333%;
  4856. flex: 0 0 83.33333%;
  4857. max-width: 83.33333%;
  4858. }
  4859. .col-xl-11 {
  4860. -webkit-box-flex: 0;
  4861. -ms-flex: 0 0 91.66667%;
  4862. flex: 0 0 91.66667%;
  4863. max-width: 91.66667%;
  4864. }
  4865. .col-xl-12 {
  4866. -webkit-box-flex: 0;
  4867. -ms-flex: 0 0 100%;
  4868. flex: 0 0 100%;
  4869. max-width: 100%;
  4870. }
  4871. .order-xl-first {
  4872. -webkit-box-ordinal-group: 0;
  4873. -ms-flex-order: -1;
  4874. order: -1;
  4875. }
  4876. .order-xl-last {
  4877. -webkit-box-ordinal-group: 14;
  4878. -ms-flex-order: 13;
  4879. order: 13;
  4880. }
  4881. .order-xl-0 {
  4882. -webkit-box-ordinal-group: 1;
  4883. -ms-flex-order: 0;
  4884. order: 0;
  4885. }
  4886. .order-xl-1 {
  4887. -webkit-box-ordinal-group: 2;
  4888. -ms-flex-order: 1;
  4889. order: 1;
  4890. }
  4891. .order-xl-2 {
  4892. -webkit-box-ordinal-group: 3;
  4893. -ms-flex-order: 2;
  4894. order: 2;
  4895. }
  4896. .order-xl-3 {
  4897. -webkit-box-ordinal-group: 4;
  4898. -ms-flex-order: 3;
  4899. order: 3;
  4900. }
  4901. .order-xl-4 {
  4902. -webkit-box-ordinal-group: 5;
  4903. -ms-flex-order: 4;
  4904. order: 4;
  4905. }
  4906. .order-xl-5 {
  4907. -webkit-box-ordinal-group: 6;
  4908. -ms-flex-order: 5;
  4909. order: 5;
  4910. }
  4911. .order-xl-6 {
  4912. -webkit-box-ordinal-group: 7;
  4913. -ms-flex-order: 6;
  4914. order: 6;
  4915. }
  4916. .order-xl-7 {
  4917. -webkit-box-ordinal-group: 8;
  4918. -ms-flex-order: 7;
  4919. order: 7;
  4920. }
  4921. .order-xl-8 {
  4922. -webkit-box-ordinal-group: 9;
  4923. -ms-flex-order: 8;
  4924. order: 8;
  4925. }
  4926. .order-xl-9 {
  4927. -webkit-box-ordinal-group: 10;
  4928. -ms-flex-order: 9;
  4929. order: 9;
  4930. }
  4931. .order-xl-10 {
  4932. -webkit-box-ordinal-group: 11;
  4933. -ms-flex-order: 10;
  4934. order: 10;
  4935. }
  4936. .order-xl-11 {
  4937. -webkit-box-ordinal-group: 12;
  4938. -ms-flex-order: 11;
  4939. order: 11;
  4940. }
  4941. .order-xl-12 {
  4942. -webkit-box-ordinal-group: 13;
  4943. -ms-flex-order: 12;
  4944. order: 12;
  4945. }
  4946. .offset-xl-0 {
  4947. margin-left: 0;
  4948. }
  4949. .offset-xl-1 {
  4950. margin-left: 8.33333%;
  4951. }
  4952. .offset-xl-2 {
  4953. margin-left: 16.66667%;
  4954. }
  4955. .offset-xl-3 {
  4956. margin-left: 25%;
  4957. }
  4958. .offset-xl-4 {
  4959. margin-left: 33.33333%;
  4960. }
  4961. .offset-xl-5 {
  4962. margin-left: 41.66667%;
  4963. }
  4964. .offset-xl-6 {
  4965. margin-left: 50%;
  4966. }
  4967. .offset-xl-7 {
  4968. margin-left: 58.33333%;
  4969. }
  4970. .offset-xl-8 {
  4971. margin-left: 66.66667%;
  4972. }
  4973. .offset-xl-9 {
  4974. margin-left: 75%;
  4975. }
  4976. .offset-xl-10 {
  4977. margin-left: 83.33333%;
  4978. }
  4979. .offset-xl-11 {
  4980. margin-left: 91.66667%;
  4981. }
  4982. }
  4983. .table {
  4984. width: 100%;
  4985. margin-bottom: 1rem;
  4986. color: #212529;
  4987. }
  4988. .table th,
  4989. .table td {
  4990. padding: 0.75rem;
  4991. vertical-align: top;
  4992. border-top: 1px solid #dee2e6;
  4993. }
  4994. .table thead th {
  4995. vertical-align: bottom;
  4996. border-bottom: 2px solid #dee2e6;
  4997. }
  4998. .table tbody + tbody {
  4999. border-top: 2px solid #dee2e6;
  5000. }
  5001. .table-sm th,
  5002. .table-sm td {
  5003. padding: 0.3rem;
  5004. }
  5005. .table-bordered {
  5006. border: 1px solid #dee2e6;
  5007. }
  5008. .table-bordered th,
  5009. .table-bordered td {
  5010. border: 1px solid #dee2e6;
  5011. }
  5012. .table-bordered thead th,
  5013. .table-bordered thead td {
  5014. border-bottom-width: 2px;
  5015. }
  5016. .table-borderless th,
  5017. .table-borderless td,
  5018. .table-borderless thead th,
  5019. .table-borderless tbody + tbody {
  5020. border: 0;
  5021. }
  5022. .table-striped tbody tr:nth-of-type(odd) {
  5023. background-color: rgba(0, 0, 0, 0.05);
  5024. }
  5025. .table-hover tbody tr:hover {
  5026. color: #212529;
  5027. background-color: rgba(0, 0, 0, 0.075);
  5028. }
  5029. .table-primary,
  5030. .table-primary > th,
  5031. .table-primary > td {
  5032. background-color: #fad9b8;
  5033. }
  5034. .table-primary th,
  5035. .table-primary td,
  5036. .table-primary thead th,
  5037. .table-primary tbody + tbody {
  5038. border-color: #f6b97a;
  5039. }
  5040. .table-hover .table-primary:hover {
  5041. background-color: #f8cca0;
  5042. }
  5043. .table-hover .table-primary:hover > td,
  5044. .table-hover .table-primary:hover > th {
  5045. background-color: #f8cca0;
  5046. }
  5047. .table-secondary,
  5048. .table-secondary > th,
  5049. .table-secondary > td {
  5050. background-color: #e7e7e7;
  5051. }
  5052. .table-secondary th,
  5053. .table-secondary td,
  5054. .table-secondary thead th,
  5055. .table-secondary tbody + tbody {
  5056. border-color: lightgray;
  5057. }
  5058. .table-hover .table-secondary:hover {
  5059. background-color: #dadada;
  5060. }
  5061. .table-hover .table-secondary:hover > td,
  5062. .table-hover .table-secondary:hover > th {
  5063. background-color: #dadada;
  5064. }
  5065. .table-success,
  5066. .table-success > th,
  5067. .table-success > td {
  5068. background-color: #c3e6cb;
  5069. }
  5070. .table-success th,
  5071. .table-success td,
  5072. .table-success thead th,
  5073. .table-success tbody + tbody {
  5074. border-color: #8fd19e;
  5075. }
  5076. .table-hover .table-success:hover {
  5077. background-color: #b1dfbb;
  5078. }
  5079. .table-hover .table-success:hover > td,
  5080. .table-hover .table-success:hover > th {
  5081. background-color: #b1dfbb;
  5082. }
  5083. .table-info,
  5084. .table-info > th,
  5085. .table-info > td {
  5086. background-color: #bee5eb;
  5087. }
  5088. .table-info th,
  5089. .table-info td,
  5090. .table-info thead th,
  5091. .table-info tbody + tbody {
  5092. border-color: #86cfda;
  5093. }
  5094. .table-hover .table-info:hover {
  5095. background-color: #abdde5;
  5096. }
  5097. .table-hover .table-info:hover > td,
  5098. .table-hover .table-info:hover > th {
  5099. background-color: #abdde5;
  5100. }
  5101. .table-warning,
  5102. .table-warning > th,
  5103. .table-warning > td {
  5104. background-color: #ffeeba;
  5105. }
  5106. .table-warning th,
  5107. .table-warning td,
  5108. .table-warning thead th,
  5109. .table-warning tbody + tbody {
  5110. border-color: #ffdf7e;
  5111. }
  5112. .table-hover .table-warning:hover {
  5113. background-color: #ffe8a1;
  5114. }
  5115. .table-hover .table-warning:hover > td,
  5116. .table-hover .table-warning:hover > th {
  5117. background-color: #ffe8a1;
  5118. }
  5119. .table-danger,
  5120. .table-danger > th,
  5121. .table-danger > td {
  5122. background-color: #f5c6cb;
  5123. }
  5124. .table-danger th,
  5125. .table-danger td,
  5126. .table-danger thead th,
  5127. .table-danger tbody + tbody {
  5128. border-color: #ed969e;
  5129. }
  5130. .table-hover .table-danger:hover {
  5131. background-color: #f1b0b7;
  5132. }
  5133. .table-hover .table-danger:hover > td,
  5134. .table-hover .table-danger:hover > th {
  5135. background-color: #f1b0b7;
  5136. }
  5137. .table-light,
  5138. .table-light > th,
  5139. .table-light > td {
  5140. background-color: #fdfdfe;
  5141. }
  5142. .table-light th,
  5143. .table-light td,
  5144. .table-light thead th,
  5145. .table-light tbody + tbody {
  5146. border-color: #fbfcfc;
  5147. }
  5148. .table-hover .table-light:hover {
  5149. background-color: #ececf6;
  5150. }
  5151. .table-hover .table-light:hover > td,
  5152. .table-hover .table-light:hover > th {
  5153. background-color: #ececf6;
  5154. }
  5155. .table-dark,
  5156. .table-dark > th,
  5157. .table-dark > td {
  5158. background-color: #c6c8ca;
  5159. }
  5160. .table-dark th,
  5161. .table-dark td,
  5162. .table-dark thead th,
  5163. .table-dark tbody + tbody {
  5164. border-color: #95999c;
  5165. }
  5166. .table-hover .table-dark:hover {
  5167. background-color: #b9bbbe;
  5168. }
  5169. .table-hover .table-dark:hover > td,
  5170. .table-hover .table-dark:hover > th {
  5171. background-color: #b9bbbe;
  5172. }
  5173. .table-active,
  5174. .table-active > th,
  5175. .table-active > td {
  5176. background-color: rgba(0, 0, 0, 0.075);
  5177. }
  5178. .table-hover .table-active:hover {
  5179. background-color: rgba(0, 0, 0, 0.075);
  5180. }
  5181. .table-hover .table-active:hover > td,
  5182. .table-hover .table-active:hover > th {
  5183. background-color: rgba(0, 0, 0, 0.075);
  5184. }
  5185. .table .thead-dark th {
  5186. color: #fff;
  5187. background-color: #343a40;
  5188. border-color: #454d55;
  5189. }
  5190. .table .thead-light th {
  5191. color: #495057;
  5192. background-color: #e9ecef;
  5193. border-color: #dee2e6;
  5194. }
  5195. .table-dark {
  5196. color: #fff;
  5197. background-color: #343a40;
  5198. }
  5199. .table-dark th,
  5200. .table-dark td,
  5201. .table-dark thead th {
  5202. border-color: #454d55;
  5203. }
  5204. .table-dark.table-bordered {
  5205. border: 0;
  5206. }
  5207. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  5208. background-color: rgba(255, 255, 255, 0.05);
  5209. }
  5210. .table-dark.table-hover tbody tr:hover {
  5211. color: #fff;
  5212. background-color: rgba(255, 255, 255, 0.075);
  5213. }
  5214. @media (max-width: 575.98px) {
  5215. .table-responsive-sm {
  5216. display: block;
  5217. width: 100%;
  5218. overflow-x: auto;
  5219. -webkit-overflow-scrolling: touch;
  5220. }
  5221. .table-responsive-sm > .table-bordered {
  5222. border: 0;
  5223. }
  5224. }
  5225. @media (max-width: 767.98px) {
  5226. .table-responsive-md {
  5227. display: block;
  5228. width: 100%;
  5229. overflow-x: auto;
  5230. -webkit-overflow-scrolling: touch;
  5231. }
  5232. .table-responsive-md > .table-bordered {
  5233. border: 0;
  5234. }
  5235. }
  5236. @media (max-width: 991.98px) {
  5237. .table-responsive-lg {
  5238. display: block;
  5239. width: 100%;
  5240. overflow-x: auto;
  5241. -webkit-overflow-scrolling: touch;
  5242. }
  5243. .table-responsive-lg > .table-bordered {
  5244. border: 0;
  5245. }
  5246. }
  5247. @media (max-width: 1199.98px) {
  5248. .table-responsive-xl {
  5249. display: block;
  5250. width: 100%;
  5251. overflow-x: auto;
  5252. -webkit-overflow-scrolling: touch;
  5253. }
  5254. .table-responsive-xl > .table-bordered {
  5255. border: 0;
  5256. }
  5257. }
  5258. .table-responsive {
  5259. display: block;
  5260. width: 100%;
  5261. overflow-x: auto;
  5262. -webkit-overflow-scrolling: touch;
  5263. }
  5264. .table-responsive > .table-bordered {
  5265. border: 0;
  5266. }
  5267. .input-group {
  5268. position: relative;
  5269. display: -webkit-box;
  5270. display: -ms-flexbox;
  5271. display: flex;
  5272. -ms-flex-wrap: wrap;
  5273. flex-wrap: wrap;
  5274. -webkit-box-align: stretch;
  5275. -ms-flex-align: stretch;
  5276. align-items: stretch;
  5277. width: 100%;
  5278. }
  5279. .input-group > .form-control,
  5280. .input-group > .form-control-plaintext,
  5281. .input-group > .custom-select,
  5282. .input-group > .custom-file {
  5283. position: relative;
  5284. -webkit-box-flex: 1;
  5285. -ms-flex: 1 1 0%;
  5286. flex: 1 1 0%;
  5287. min-width: 0;
  5288. margin-bottom: 0;
  5289. }
  5290. .input-group > .form-control + .form-control,
  5291. .input-group > .form-control + .custom-select,
  5292. .input-group > .form-control + .custom-file,
  5293. .input-group > .form-control-plaintext + .form-control,
  5294. .input-group > .form-control-plaintext + .custom-select,
  5295. .input-group > .form-control-plaintext + .custom-file,
  5296. .input-group > .custom-select + .form-control,
  5297. .input-group > .custom-select + .custom-select,
  5298. .input-group > .custom-select + .custom-file,
  5299. .input-group > .custom-file + .form-control,
  5300. .input-group > .custom-file + .custom-select,
  5301. .input-group > .custom-file + .custom-file {
  5302. margin-left: -2px;
  5303. }
  5304. .input-group > .form-control:focus,
  5305. .input-group > .custom-select:focus,
  5306. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  5307. z-index: 3;
  5308. }
  5309. .input-group > .custom-file .custom-file-input:focus {
  5310. z-index: 4;
  5311. }
  5312. .input-group > .form-control:not(:last-child),
  5313. .input-group > .custom-select:not(:last-child) {
  5314. border-top-right-radius: 0;
  5315. border-bottom-right-radius: 0;
  5316. }
  5317. .input-group > .form-control:not(:first-child),
  5318. .input-group > .custom-select:not(:first-child) {
  5319. border-top-left-radius: 0;
  5320. border-bottom-left-radius: 0;
  5321. }
  5322. .input-group > .custom-file {
  5323. display: -webkit-box;
  5324. display: -ms-flexbox;
  5325. display: flex;
  5326. -webkit-box-align: center;
  5327. -ms-flex-align: center;
  5328. align-items: center;
  5329. }
  5330. .input-group > .custom-file:not(:last-child) .custom-file-label,
  5331. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  5332. border-top-right-radius: 0;
  5333. border-bottom-right-radius: 0;
  5334. }
  5335. .input-group > .custom-file:not(:first-child) .custom-file-label {
  5336. border-top-left-radius: 0;
  5337. border-bottom-left-radius: 0;
  5338. }
  5339. .input-group-prepend,
  5340. .input-group-append {
  5341. display: -webkit-box;
  5342. display: -ms-flexbox;
  5343. display: flex;
  5344. }
  5345. .input-group-prepend .btn,
  5346. .input-group-append .btn {
  5347. position: relative;
  5348. z-index: 2;
  5349. }
  5350. .input-group-prepend .btn:focus,
  5351. .input-group-append .btn:focus {
  5352. z-index: 3;
  5353. }
  5354. .input-group-prepend .btn + .btn,
  5355. .input-group-prepend .btn + .input-group-text,
  5356. .input-group-prepend .input-group-text + .input-group-text,
  5357. .input-group-prepend .input-group-text + .btn,
  5358. .input-group-append .btn + .btn,
  5359. .input-group-append .btn + .input-group-text,
  5360. .input-group-append .input-group-text + .input-group-text,
  5361. .input-group-append .input-group-text + .btn {
  5362. margin-left: -2px;
  5363. }
  5364. .input-group-prepend {
  5365. margin-right: -2px;
  5366. }
  5367. .input-group-append {
  5368. margin-left: -2px;
  5369. }
  5370. .input-group-text {
  5371. display: -webkit-box;
  5372. display: -ms-flexbox;
  5373. display: flex;
  5374. -webkit-box-align: center;
  5375. -ms-flex-align: center;
  5376. align-items: center;
  5377. padding: 0.375rem 0.75rem;
  5378. margin-bottom: 0;
  5379. font-size: 1rem;
  5380. font-weight: 400;
  5381. line-height: 1.5;
  5382. color: #fff;
  5383. text-align: center;
  5384. white-space: nowrap;
  5385. background-color: #EE7800;
  5386. border: 2px solid #EE7800;
  5387. border-radius: 0.25rem;
  5388. }
  5389. .input-group-text input[type="radio"],
  5390. .input-group-text input[type="checkbox"] {
  5391. margin-top: 0;
  5392. }
  5393. .input-group-lg > .form-control:not(textarea),
  5394. .input-group-lg > .custom-select {
  5395. height: calc(1.5em + 2rem + 2px);
  5396. }
  5397. .input-group-lg > .form-control,
  5398. .input-group-lg > .custom-select,
  5399. .input-group-lg > .input-group-prepend > .input-group-text,
  5400. .input-group-lg > .input-group-append > .input-group-text,
  5401. .input-group-lg > .input-group-prepend > .btn,
  5402. .input-group-lg > .input-group-append > .btn {
  5403. padding: 0.5rem 2rem;
  5404. font-size: 0.875rem;
  5405. line-height: 1.5;
  5406. border-radius: 0.3rem;
  5407. }
  5408. .input-group-sm > .form-control:not(textarea),
  5409. .input-group-sm > .custom-select {
  5410. height: calc(1.5em + 0.5rem + 4px);
  5411. }
  5412. .input-group-sm > .form-control,
  5413. .input-group-sm > .custom-select,
  5414. .input-group-sm > .input-group-prepend > .input-group-text,
  5415. .input-group-sm > .input-group-append > .input-group-text,
  5416. .input-group-sm > .input-group-prepend > .btn,
  5417. .input-group-sm > .input-group-append > .btn {
  5418. padding: 0.25rem 0.5rem;
  5419. font-size: 1rem;
  5420. line-height: 1.5;
  5421. border-radius: 0.2rem;
  5422. }
  5423. .input-group-lg > .custom-select,
  5424. .input-group-sm > .custom-select {
  5425. padding-right: 1.75rem;
  5426. }
  5427. .input-group > .input-group-prepend > .btn,
  5428. .input-group > .input-group-prepend > .input-group-text,
  5429. .input-group > .input-group-append:not(:last-child) > .btn,
  5430. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  5431. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  5432. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  5433. border-top-right-radius: 0;
  5434. border-bottom-right-radius: 0;
  5435. }
  5436. .input-group > .input-group-append > .btn,
  5437. .input-group > .input-group-append > .input-group-text,
  5438. .input-group > .input-group-prepend:not(:first-child) > .btn,
  5439. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  5440. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  5441. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  5442. border-top-left-radius: 0;
  5443. border-bottom-left-radius: 0;
  5444. }
  5445. .form-control {
  5446. display: block;
  5447. width: 100%;
  5448. height: calc(1.5em + 0.75rem + 4px);
  5449. padding: 0.375rem 0.75rem;
  5450. font-size: 1rem;
  5451. font-weight: 400;
  5452. line-height: 1.5;
  5453. color: #495057;
  5454. background-color: #fff;
  5455. background-clip: padding-box;
  5456. border: 2px solid #ced4da;
  5457. border-radius: 0.25rem;
  5458. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  5459. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  5460. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  5461. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  5462. }
  5463. @media (prefers-reduced-motion: reduce) {
  5464. .form-control {
  5465. -webkit-transition: none;
  5466. transition: none;
  5467. }
  5468. }
  5469. .form-control::-ms-expand {
  5470. background-color: transparent;
  5471. border: 0;
  5472. }
  5473. .form-control:-moz-focusring {
  5474. color: transparent;
  5475. text-shadow: 0 0 0 #495057;
  5476. }
  5477. .form-control:focus {
  5478. color: #495057;
  5479. background-color: #fff;
  5480. border-color: #ffb76f;
  5481. outline: 0;
  5482. -webkit-box-shadow: transparent;
  5483. box-shadow: transparent;
  5484. }
  5485. .form-control::-webkit-input-placeholder {
  5486. color: #727679;
  5487. opacity: 1;
  5488. }
  5489. .form-control:-ms-input-placeholder {
  5490. color: #727679;
  5491. opacity: 1;
  5492. }
  5493. .form-control::-ms-input-placeholder {
  5494. color: #727679;
  5495. opacity: 1;
  5496. }
  5497. .form-control::placeholder {
  5498. color: #727679;
  5499. opacity: 1;
  5500. }
  5501. .form-control:disabled, .form-control[readonly] {
  5502. background-color: #e9ecef;
  5503. opacity: 1;
  5504. }
  5505. select.form-control:focus::-ms-value {
  5506. color: #495057;
  5507. background-color: #fff;
  5508. }
  5509. .form-control-file,
  5510. .form-control-range {
  5511. display: block;
  5512. width: 100%;
  5513. }
  5514. .col-form-label {
  5515. padding-top: calc(0.375rem + 2px);
  5516. padding-bottom: calc(0.375rem + 2px);
  5517. margin-bottom: 0;
  5518. font-size: inherit;
  5519. line-height: 1.5;
  5520. }
  5521. .col-form-label-lg {
  5522. padding-top: calc(0.5rem + 2px);
  5523. padding-bottom: calc(0.5rem + 2px);
  5524. font-size: 0.875rem;
  5525. line-height: 1.5;
  5526. }
  5527. .col-form-label-sm {
  5528. padding-top: calc(0.25rem + 2px);
  5529. padding-bottom: calc(0.25rem + 2px);
  5530. font-size: 1rem;
  5531. line-height: 1.5;
  5532. }
  5533. .form-control-plaintext {
  5534. display: block;
  5535. width: 100%;
  5536. padding: 0.375rem 0;
  5537. margin-bottom: 0;
  5538. font-size: 1rem;
  5539. line-height: 1.5;
  5540. color: #212529;
  5541. background-color: transparent;
  5542. border: solid transparent;
  5543. border-width: 2px 0;
  5544. }
  5545. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  5546. padding-right: 0;
  5547. padding-left: 0;
  5548. }
  5549. .form-control-sm {
  5550. height: calc(1.5em + 0.5rem + 4px);
  5551. padding: 0.25rem 0.5rem;
  5552. font-size: 1rem;
  5553. line-height: 1.5;
  5554. border-radius: 0.2rem;
  5555. }
  5556. .form-control-lg {
  5557. height: calc(1.5em + 2rem + 2px);
  5558. padding: 0.5rem 2rem;
  5559. font-size: 0.875rem;
  5560. line-height: 1.5;
  5561. border-radius: 0.3rem;
  5562. }
  5563. select.form-control[size], select.form-control[multiple] {
  5564. height: auto;
  5565. }
  5566. textarea.form-control {
  5567. height: auto;
  5568. }
  5569. .form-group {
  5570. margin-bottom: 1rem;
  5571. }
  5572. .form-text {
  5573. display: block;
  5574. margin-top: 0.25rem;
  5575. }
  5576. .form-row {
  5577. display: -webkit-box;
  5578. display: -ms-flexbox;
  5579. display: flex;
  5580. -ms-flex-wrap: wrap;
  5581. flex-wrap: wrap;
  5582. margin-right: -5px;
  5583. margin-left: -5px;
  5584. }
  5585. .form-row > .col,
  5586. .form-row > [class*="col-"] {
  5587. padding-right: 5px;
  5588. padding-left: 5px;
  5589. }
  5590. .form-check {
  5591. position: relative;
  5592. display: block;
  5593. padding-left: 1.25rem;
  5594. }
  5595. .form-check-input {
  5596. position: absolute;
  5597. margin-top: 0.3rem;
  5598. margin-left: -1.25rem;
  5599. }
  5600. .form-check-input[disabled] ~ .form-check-label,
  5601. .form-check-input:disabled ~ .form-check-label {
  5602. color: #727679;
  5603. }
  5604. .form-check-label {
  5605. margin-bottom: 0;
  5606. }
  5607. .form-check-inline {
  5608. display: -webkit-inline-box;
  5609. display: -ms-inline-flexbox;
  5610. display: inline-flex;
  5611. -webkit-box-align: center;
  5612. -ms-flex-align: center;
  5613. align-items: center;
  5614. padding-left: 0;
  5615. margin-right: 0.75rem;
  5616. }
  5617. .form-check-inline .form-check-input {
  5618. position: static;
  5619. margin-top: 0;
  5620. margin-right: 0.3125rem;
  5621. margin-left: 0;
  5622. }
  5623. .valid-feedback {
  5624. display: none;
  5625. width: 100%;
  5626. margin-top: 0.25rem;
  5627. font-size: 80%;
  5628. color: #28a745;
  5629. }
  5630. .valid-tooltip {
  5631. position: absolute;
  5632. top: 100%;
  5633. z-index: 5;
  5634. display: none;
  5635. max-width: 100%;
  5636. padding: 0.25rem 0.5rem;
  5637. margin-top: .1rem;
  5638. font-size: 0.875rem;
  5639. line-height: 1.5;
  5640. color: #fff;
  5641. background-color: rgba(40, 167, 69, 0.9);
  5642. border-radius: 0.25rem;
  5643. }
  5644. .was-validated :valid ~ .valid-feedback,
  5645. .was-validated :valid ~ .valid-tooltip,
  5646. .is-valid ~ .valid-feedback,
  5647. .is-valid ~ .valid-tooltip {
  5648. display: block;
  5649. }
  5650. .was-validated .form-control:valid, .form-control.is-valid {
  5651. border-color: #28a745;
  5652. padding-right: calc(1.5em + 0.75rem);
  5653. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  5654. background-repeat: no-repeat;
  5655. background-position: right calc(0.375em + 0.1875rem) center;
  5656. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  5657. }
  5658. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  5659. border-color: #28a745;
  5660. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5661. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5662. }
  5663. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  5664. padding-right: calc(1.5em + 0.75rem);
  5665. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  5666. }
  5667. .was-validated .custom-select:valid, .custom-select.is-valid {
  5668. border-color: #28a745;
  5669. padding-right: calc(0.75em + 2.3125rem);
  5670. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  5671. }
  5672. .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  5673. border-color: #28a745;
  5674. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5675. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5676. }
  5677. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  5678. color: #28a745;
  5679. }
  5680. .was-validated .form-check-input:valid ~ .valid-feedback,
  5681. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  5682. .form-check-input.is-valid ~ .valid-tooltip {
  5683. display: block;
  5684. }
  5685. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  5686. color: #28a745;
  5687. }
  5688. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  5689. border-color: #28a745;
  5690. }
  5691. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  5692. border-color: #34ce57;
  5693. background-color: #34ce57;
  5694. }
  5695. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  5696. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5697. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5698. }
  5699. .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 {
  5700. border-color: #28a745;
  5701. }
  5702. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  5703. border-color: #28a745;
  5704. }
  5705. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  5706. border-color: #28a745;
  5707. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5708. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  5709. }
  5710. .invalid-feedback {
  5711. display: none;
  5712. width: 100%;
  5713. margin-top: 0.25rem;
  5714. font-size: 80%;
  5715. color: #dc3545;
  5716. }
  5717. .invalid-tooltip {
  5718. position: absolute;
  5719. top: 100%;
  5720. z-index: 5;
  5721. display: none;
  5722. max-width: 100%;
  5723. padding: 0.25rem 0.5rem;
  5724. margin-top: .1rem;
  5725. font-size: 0.875rem;
  5726. line-height: 1.5;
  5727. color: #fff;
  5728. background-color: rgba(220, 53, 69, 0.9);
  5729. border-radius: 0.25rem;
  5730. }
  5731. .was-validated :invalid ~ .invalid-feedback,
  5732. .was-validated :invalid ~ .invalid-tooltip,
  5733. .is-invalid ~ .invalid-feedback,
  5734. .is-invalid ~ .invalid-tooltip {
  5735. display: block;
  5736. }
  5737. .was-validated .form-control:invalid, .form-control.is-invalid {
  5738. border-color: #dc3545;
  5739. padding-right: calc(1.5em + 0.75rem);
  5740. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  5741. background-repeat: no-repeat;
  5742. background-position: right calc(0.375em + 0.1875rem) center;
  5743. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  5744. }
  5745. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  5746. border-color: #dc3545;
  5747. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5748. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5749. }
  5750. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  5751. padding-right: calc(1.5em + 0.75rem);
  5752. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  5753. }
  5754. .was-validated .custom-select:invalid, .custom-select.is-invalid {
  5755. border-color: #dc3545;
  5756. padding-right: calc(0.75em + 2.3125rem);
  5757. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  5758. }
  5759. .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  5760. border-color: #dc3545;
  5761. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5762. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5763. }
  5764. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  5765. color: #dc3545;
  5766. }
  5767. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  5768. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  5769. .form-check-input.is-invalid ~ .invalid-tooltip {
  5770. display: block;
  5771. }
  5772. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  5773. color: #dc3545;
  5774. }
  5775. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  5776. border-color: #dc3545;
  5777. }
  5778. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  5779. border-color: #e4606d;
  5780. background-color: #e4606d;
  5781. }
  5782. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  5783. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5784. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5785. }
  5786. .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 {
  5787. border-color: #dc3545;
  5788. }
  5789. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  5790. border-color: #dc3545;
  5791. }
  5792. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  5793. border-color: #dc3545;
  5794. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5795. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  5796. }
  5797. .form-inline {
  5798. display: -webkit-box;
  5799. display: -ms-flexbox;
  5800. display: flex;
  5801. -webkit-box-orient: horizontal;
  5802. -webkit-box-direction: normal;
  5803. -ms-flex-flow: row wrap;
  5804. flex-flow: row wrap;
  5805. -webkit-box-align: center;
  5806. -ms-flex-align: center;
  5807. align-items: center;
  5808. }
  5809. .form-inline .form-check {
  5810. width: 100%;
  5811. }
  5812. @media (min-width: 576px) {
  5813. .form-inline label {
  5814. display: -webkit-box;
  5815. display: -ms-flexbox;
  5816. display: flex;
  5817. -webkit-box-align: center;
  5818. -ms-flex-align: center;
  5819. align-items: center;
  5820. -webkit-box-pack: center;
  5821. -ms-flex-pack: center;
  5822. justify-content: center;
  5823. margin-bottom: 0;
  5824. }
  5825. .form-inline .form-group {
  5826. display: -webkit-box;
  5827. display: -ms-flexbox;
  5828. display: flex;
  5829. -webkit-box-flex: 0;
  5830. -ms-flex: 0 0 auto;
  5831. flex: 0 0 auto;
  5832. -webkit-box-orient: horizontal;
  5833. -webkit-box-direction: normal;
  5834. -ms-flex-flow: row wrap;
  5835. flex-flow: row wrap;
  5836. -webkit-box-align: center;
  5837. -ms-flex-align: center;
  5838. align-items: center;
  5839. margin-bottom: 0;
  5840. }
  5841. .form-inline .form-control {
  5842. display: inline-block;
  5843. width: auto;
  5844. vertical-align: middle;
  5845. }
  5846. .form-inline .form-control-plaintext {
  5847. display: inline-block;
  5848. }
  5849. .form-inline .input-group,
  5850. .form-inline .custom-select {
  5851. width: auto;
  5852. }
  5853. .form-inline .form-check {
  5854. display: -webkit-box;
  5855. display: -ms-flexbox;
  5856. display: flex;
  5857. -webkit-box-align: center;
  5858. -ms-flex-align: center;
  5859. align-items: center;
  5860. -webkit-box-pack: center;
  5861. -ms-flex-pack: center;
  5862. justify-content: center;
  5863. width: auto;
  5864. padding-left: 0;
  5865. }
  5866. .form-inline .form-check-input {
  5867. position: relative;
  5868. -ms-flex-negative: 0;
  5869. flex-shrink: 0;
  5870. margin-top: 0;
  5871. margin-right: 0.25rem;
  5872. margin-left: 0;
  5873. }
  5874. .form-inline .custom-control {
  5875. -webkit-box-align: center;
  5876. -ms-flex-align: center;
  5877. align-items: center;
  5878. -webkit-box-pack: center;
  5879. -ms-flex-pack: center;
  5880. justify-content: center;
  5881. }
  5882. .form-inline .custom-control-label {
  5883. margin-bottom: 0;
  5884. }
  5885. }
  5886. .card {
  5887. position: relative;
  5888. display: -webkit-box;
  5889. display: -ms-flexbox;
  5890. display: flex;
  5891. -webkit-box-orient: vertical;
  5892. -webkit-box-direction: normal;
  5893. -ms-flex-direction: column;
  5894. flex-direction: column;
  5895. min-width: 0;
  5896. word-wrap: break-word;
  5897. background-color: #fff;
  5898. background-clip: border-box;
  5899. border: 1px solid rgba(0, 0, 0, 0.125);
  5900. border-radius: 0.25rem;
  5901. }
  5902. .card > hr {
  5903. margin-right: 0;
  5904. margin-left: 0;
  5905. }
  5906. .card > .list-group:first-child .list-group-item:first-child {
  5907. border-top-left-radius: 0.25rem;
  5908. border-top-right-radius: 0.25rem;
  5909. }
  5910. .card > .list-group:last-child .list-group-item:last-child {
  5911. border-bottom-right-radius: 0.25rem;
  5912. border-bottom-left-radius: 0.25rem;
  5913. }
  5914. .card-body {
  5915. -webkit-box-flex: 1;
  5916. -ms-flex: 1 1 auto;
  5917. flex: 1 1 auto;
  5918. min-height: 1px;
  5919. padding: 1.25rem;
  5920. }
  5921. .card-title {
  5922. margin-bottom: 0.75rem;
  5923. }
  5924. .card-subtitle {
  5925. margin-top: -0.375rem;
  5926. margin-bottom: 0;
  5927. }
  5928. .card-text:last-child {
  5929. margin-bottom: 0;
  5930. }
  5931. .card-link:hover {
  5932. text-decoration: none;
  5933. }
  5934. .card-link + .card-link {
  5935. margin-left: 1.25rem;
  5936. }
  5937. .card-header {
  5938. padding: 0.75rem 1.25rem;
  5939. margin-bottom: 0;
  5940. background-color: rgba(0, 0, 0, 0.03);
  5941. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  5942. }
  5943. .card-header:first-child {
  5944. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  5945. }
  5946. .card-header + .list-group .list-group-item:first-child {
  5947. border-top: 0;
  5948. }
  5949. .card-footer {
  5950. padding: 0.75rem 1.25rem;
  5951. background-color: rgba(0, 0, 0, 0.03);
  5952. border-top: 1px solid rgba(0, 0, 0, 0.125);
  5953. }
  5954. .card-footer:last-child {
  5955. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  5956. }
  5957. .card-header-tabs {
  5958. margin-right: -0.625rem;
  5959. margin-bottom: -0.75rem;
  5960. margin-left: -0.625rem;
  5961. border-bottom: 0;
  5962. }
  5963. .card-header-pills {
  5964. margin-right: -0.625rem;
  5965. margin-left: -0.625rem;
  5966. }
  5967. .card-img-overlay {
  5968. position: absolute;
  5969. top: 0;
  5970. right: 0;
  5971. bottom: 0;
  5972. left: 0;
  5973. padding: 1.25rem;
  5974. }
  5975. .card-img,
  5976. .card-img-top,
  5977. .card-img-bottom {
  5978. -ms-flex-negative: 0;
  5979. flex-shrink: 0;
  5980. width: 100%;
  5981. }
  5982. .card-img,
  5983. .card-img-top {
  5984. border-top-left-radius: calc(0.25rem - 1px);
  5985. border-top-right-radius: calc(0.25rem - 1px);
  5986. }
  5987. .card-img,
  5988. .card-img-bottom {
  5989. border-bottom-right-radius: calc(0.25rem - 1px);
  5990. border-bottom-left-radius: calc(0.25rem - 1px);
  5991. }
  5992. .card-deck .card {
  5993. margin-bottom: 15px;
  5994. }
  5995. @media (min-width: 576px) {
  5996. .card-deck {
  5997. display: -webkit-box;
  5998. display: -ms-flexbox;
  5999. display: flex;
  6000. -webkit-box-orient: horizontal;
  6001. -webkit-box-direction: normal;
  6002. -ms-flex-flow: row wrap;
  6003. flex-flow: row wrap;
  6004. margin-right: -15px;
  6005. margin-left: -15px;
  6006. }
  6007. .card-deck .card {
  6008. -webkit-box-flex: 1;
  6009. -ms-flex: 1 0 0%;
  6010. flex: 1 0 0%;
  6011. margin-right: 15px;
  6012. margin-bottom: 0;
  6013. margin-left: 15px;
  6014. }
  6015. }
  6016. .card-group > .card {
  6017. margin-bottom: 15px;
  6018. }
  6019. @media (min-width: 576px) {
  6020. .card-group {
  6021. display: -webkit-box;
  6022. display: -ms-flexbox;
  6023. display: flex;
  6024. -webkit-box-orient: horizontal;
  6025. -webkit-box-direction: normal;
  6026. -ms-flex-flow: row wrap;
  6027. flex-flow: row wrap;
  6028. }
  6029. .card-group > .card {
  6030. -webkit-box-flex: 1;
  6031. -ms-flex: 1 0 0%;
  6032. flex: 1 0 0%;
  6033. margin-bottom: 0;
  6034. }
  6035. .card-group > .card + .card {
  6036. margin-left: 0;
  6037. border-left: 0;
  6038. }
  6039. .card-group > .card:not(:last-child) {
  6040. border-top-right-radius: 0;
  6041. border-bottom-right-radius: 0;
  6042. }
  6043. .card-group > .card:not(:last-child) .card-img-top,
  6044. .card-group > .card:not(:last-child) .card-header {
  6045. border-top-right-radius: 0;
  6046. }
  6047. .card-group > .card:not(:last-child) .card-img-bottom,
  6048. .card-group > .card:not(:last-child) .card-footer {
  6049. border-bottom-right-radius: 0;
  6050. }
  6051. .card-group > .card:not(:first-child) {
  6052. border-top-left-radius: 0;
  6053. border-bottom-left-radius: 0;
  6054. }
  6055. .card-group > .card:not(:first-child) .card-img-top,
  6056. .card-group > .card:not(:first-child) .card-header {
  6057. border-top-left-radius: 0;
  6058. }
  6059. .card-group > .card:not(:first-child) .card-img-bottom,
  6060. .card-group > .card:not(:first-child) .card-footer {
  6061. border-bottom-left-radius: 0;
  6062. }
  6063. }
  6064. .card-columns .card {
  6065. margin-bottom: 0.75rem;
  6066. }
  6067. @media (min-width: 576px) {
  6068. .card-columns {
  6069. -webkit-column-count: 3;
  6070. column-count: 3;
  6071. -webkit-column-gap: 1.25rem;
  6072. column-gap: 1.25rem;
  6073. orphans: 1;
  6074. widows: 1;
  6075. }
  6076. .card-columns .card {
  6077. display: inline-block;
  6078. width: 100%;
  6079. }
  6080. }
  6081. .accordion > .card {
  6082. overflow: hidden;
  6083. }
  6084. .accordion > .card:not(:last-of-type) {
  6085. border-bottom: 0;
  6086. border-bottom-right-radius: 0;
  6087. border-bottom-left-radius: 0;
  6088. }
  6089. .accordion > .card:not(:first-of-type) {
  6090. border-top-left-radius: 0;
  6091. border-top-right-radius: 0;
  6092. }
  6093. .accordion > .card > .card-header {
  6094. border-radius: 0;
  6095. margin-bottom: -1px;
  6096. }
  6097. .btn {
  6098. display: inline-block;
  6099. font-weight: 400;
  6100. color: #212529;
  6101. text-align: center;
  6102. vertical-align: middle;
  6103. cursor: pointer;
  6104. -webkit-user-select: none;
  6105. -moz-user-select: none;
  6106. -ms-user-select: none;
  6107. user-select: none;
  6108. background-color: transparent;
  6109. border: 1px solid transparent;
  6110. padding: 0.375rem 0.75rem;
  6111. font-size: 1rem;
  6112. line-height: 1.5;
  6113. border-radius: 0.25rem;
  6114. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  6115. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  6116. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  6117. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  6118. }
  6119. @media (prefers-reduced-motion: reduce) {
  6120. .btn {
  6121. -webkit-transition: none;
  6122. transition: none;
  6123. }
  6124. }
  6125. .btn:hover {
  6126. color: #212529;
  6127. text-decoration: none;
  6128. }
  6129. .btn:focus, .btn.focus {
  6130. outline: 0;
  6131. -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.25);
  6132. box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.25);
  6133. }
  6134. .btn.disabled, .btn:disabled {
  6135. opacity: 0.65;
  6136. }
  6137. a.btn.disabled,
  6138. fieldset:disabled a.btn {
  6139. pointer-events: none;
  6140. }
  6141. .btn-primary {
  6142. color: #fff;
  6143. background-color: #EE7800;
  6144. border-color: #EE7800;
  6145. }
  6146. .btn-primary:hover {
  6147. color: #fff;
  6148. background-color: #c86500;
  6149. border-color: #bb5e00;
  6150. }
  6151. .btn-primary:focus, .btn-primary.focus {
  6152. color: #fff;
  6153. background-color: #c86500;
  6154. border-color: #bb5e00;
  6155. -webkit-box-shadow: 0 0 0 0.2rem rgba(241, 140, 38, 0.5);
  6156. box-shadow: 0 0 0 0.2rem rgba(241, 140, 38, 0.5);
  6157. }
  6158. .btn-primary.disabled, .btn-primary:disabled {
  6159. color: #fff;
  6160. background-color: #EE7800;
  6161. border-color: #EE7800;
  6162. }
  6163. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
  6164. .show > .btn-primary.dropdown-toggle {
  6165. color: #fff;
  6166. background-color: #bb5e00;
  6167. border-color: #ae5800;
  6168. }
  6169. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
  6170. .show > .btn-primary.dropdown-toggle:focus {
  6171. -webkit-box-shadow: 0 0 0 0.2rem rgba(241, 140, 38, 0.5);
  6172. box-shadow: 0 0 0 0.2rem rgba(241, 140, 38, 0.5);
  6173. }
  6174. .btn-secondary {
  6175. color: #212529;
  6176. background-color: #AAAAAA;
  6177. border-color: #AAAAAA;
  6178. }
  6179. .btn-secondary:hover {
  6180. color: #212529;
  6181. background-color: #979797;
  6182. border-color: #919191;
  6183. }
  6184. .btn-secondary:focus, .btn-secondary.focus {
  6185. color: #212529;
  6186. background-color: #979797;
  6187. border-color: #919191;
  6188. -webkit-box-shadow: 0 0 0 0.2rem rgba(149, 150, 151, 0.5);
  6189. box-shadow: 0 0 0 0.2rem rgba(149, 150, 151, 0.5);
  6190. }
  6191. .btn-secondary.disabled, .btn-secondary:disabled {
  6192. color: #212529;
  6193. background-color: #AAAAAA;
  6194. border-color: #AAAAAA;
  6195. }
  6196. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
  6197. .show > .btn-secondary.dropdown-toggle {
  6198. color: #fff;
  6199. background-color: #919191;
  6200. border-color: #8a8a8a;
  6201. }
  6202. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
  6203. .show > .btn-secondary.dropdown-toggle:focus {
  6204. -webkit-box-shadow: 0 0 0 0.2rem rgba(149, 150, 151, 0.5);
  6205. box-shadow: 0 0 0 0.2rem rgba(149, 150, 151, 0.5);
  6206. }
  6207. .btn-success {
  6208. color: #fff;
  6209. background-color: #28a745;
  6210. border-color: #28a745;
  6211. }
  6212. .btn-success:hover {
  6213. color: #fff;
  6214. background-color: #218838;
  6215. border-color: #1e7e34;
  6216. }
  6217. .btn-success:focus, .btn-success.focus {
  6218. color: #fff;
  6219. background-color: #218838;
  6220. border-color: #1e7e34;
  6221. -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  6222. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  6223. }
  6224. .btn-success.disabled, .btn-success:disabled {
  6225. color: #fff;
  6226. background-color: #28a745;
  6227. border-color: #28a745;
  6228. }
  6229. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
  6230. .show > .btn-success.dropdown-toggle {
  6231. color: #fff;
  6232. background-color: #1e7e34;
  6233. border-color: #1c7430;
  6234. }
  6235. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
  6236. .show > .btn-success.dropdown-toggle:focus {
  6237. -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  6238. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
  6239. }
  6240. .btn-info {
  6241. color: #fff;
  6242. background-color: #17a2b8;
  6243. border-color: #17a2b8;
  6244. }
  6245. .btn-info:hover {
  6246. color: #fff;
  6247. background-color: #138496;
  6248. border-color: #117a8b;
  6249. }
  6250. .btn-info:focus, .btn-info.focus {
  6251. color: #fff;
  6252. background-color: #138496;
  6253. border-color: #117a8b;
  6254. -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  6255. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  6256. }
  6257. .btn-info.disabled, .btn-info:disabled {
  6258. color: #fff;
  6259. background-color: #17a2b8;
  6260. border-color: #17a2b8;
  6261. }
  6262. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
  6263. .show > .btn-info.dropdown-toggle {
  6264. color: #fff;
  6265. background-color: #117a8b;
  6266. border-color: #10707f;
  6267. }
  6268. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
  6269. .show > .btn-info.dropdown-toggle:focus {
  6270. -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  6271. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
  6272. }
  6273. .btn-warning {
  6274. color: #212529;
  6275. background-color: #ffc107;
  6276. border-color: #ffc107;
  6277. }
  6278. .btn-warning:hover {
  6279. color: #212529;
  6280. background-color: #e0a800;
  6281. border-color: #d39e00;
  6282. }
  6283. .btn-warning:focus, .btn-warning.focus {
  6284. color: #212529;
  6285. background-color: #e0a800;
  6286. border-color: #d39e00;
  6287. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  6288. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  6289. }
  6290. .btn-warning.disabled, .btn-warning:disabled {
  6291. color: #212529;
  6292. background-color: #ffc107;
  6293. border-color: #ffc107;
  6294. }
  6295. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
  6296. .show > .btn-warning.dropdown-toggle {
  6297. color: #212529;
  6298. background-color: #d39e00;
  6299. border-color: #c69500;
  6300. }
  6301. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
  6302. .show > .btn-warning.dropdown-toggle:focus {
  6303. -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  6304. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
  6305. }
  6306. .btn-danger {
  6307. color: #fff;
  6308. background-color: #dc3545;
  6309. border-color: #dc3545;
  6310. }
  6311. .btn-danger:hover {
  6312. color: #fff;
  6313. background-color: #c82333;
  6314. border-color: #bd2130;
  6315. }
  6316. .btn-danger:focus, .btn-danger.focus {
  6317. color: #fff;
  6318. background-color: #c82333;
  6319. border-color: #bd2130;
  6320. -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  6321. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  6322. }
  6323. .btn-danger.disabled, .btn-danger:disabled {
  6324. color: #fff;
  6325. background-color: #dc3545;
  6326. border-color: #dc3545;
  6327. }
  6328. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  6329. .show > .btn-danger.dropdown-toggle {
  6330. color: #fff;
  6331. background-color: #bd2130;
  6332. border-color: #b21f2d;
  6333. }
  6334. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
  6335. .show > .btn-danger.dropdown-toggle:focus {
  6336. -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  6337. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
  6338. }
  6339. .btn-light {
  6340. color: #212529;
  6341. background-color: #f8f9fa;
  6342. border-color: #f8f9fa;
  6343. }
  6344. .btn-light:hover {
  6345. color: #212529;
  6346. background-color: #e2e6ea;
  6347. border-color: #dae0e5;
  6348. }
  6349. .btn-light:focus, .btn-light.focus {
  6350. color: #212529;
  6351. background-color: #e2e6ea;
  6352. border-color: #dae0e5;
  6353. -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  6354. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  6355. }
  6356. .btn-light.disabled, .btn-light:disabled {
  6357. color: #212529;
  6358. background-color: #f8f9fa;
  6359. border-color: #f8f9fa;
  6360. }
  6361. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  6362. .show > .btn-light.dropdown-toggle {
  6363. color: #212529;
  6364. background-color: #dae0e5;
  6365. border-color: #d3d9df;
  6366. }
  6367. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
  6368. .show > .btn-light.dropdown-toggle:focus {
  6369. -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  6370. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  6371. }
  6372. .btn-dark {
  6373. color: #fff;
  6374. background-color: #343a40;
  6375. border-color: #343a40;
  6376. }
  6377. .btn-dark:hover {
  6378. color: #fff;
  6379. background-color: #23272b;
  6380. border-color: #1d2124;
  6381. }
  6382. .btn-dark:focus, .btn-dark.focus {
  6383. color: #fff;
  6384. background-color: #23272b;
  6385. border-color: #1d2124;
  6386. -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  6387. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  6388. }
  6389. .btn-dark.disabled, .btn-dark:disabled {
  6390. color: #fff;
  6391. background-color: #343a40;
  6392. border-color: #343a40;
  6393. }
  6394. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  6395. .show > .btn-dark.dropdown-toggle {
  6396. color: #fff;
  6397. background-color: #1d2124;
  6398. border-color: #171a1d;
  6399. }
  6400. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
  6401. .show > .btn-dark.dropdown-toggle:focus {
  6402. -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  6403. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  6404. }
  6405. .btn-outline-primary {
  6406. color: #EE7800;
  6407. border-color: #EE7800;
  6408. }
  6409. .btn-outline-primary:hover {
  6410. color: #fff;
  6411. background-color: #EE7800;
  6412. border-color: #EE7800;
  6413. }
  6414. .btn-outline-primary:focus, .btn-outline-primary.focus {
  6415. -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.5);
  6416. box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.5);
  6417. }
  6418. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  6419. color: #EE7800;
  6420. background-color: transparent;
  6421. }
  6422. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
  6423. .show > .btn-outline-primary.dropdown-toggle {
  6424. color: #fff;
  6425. background-color: #EE7800;
  6426. border-color: #EE7800;
  6427. }
  6428. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  6429. .show > .btn-outline-primary.dropdown-toggle:focus {
  6430. -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.5);
  6431. box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.5);
  6432. }
  6433. .btn-outline-secondary {
  6434. color: #AAAAAA;
  6435. border-color: #AAAAAA;
  6436. }
  6437. .btn-outline-secondary:hover {
  6438. color: #212529;
  6439. background-color: #AAAAAA;
  6440. border-color: #AAAAAA;
  6441. }
  6442. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  6443. -webkit-box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.5);
  6444. box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.5);
  6445. }
  6446. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  6447. color: #AAAAAA;
  6448. background-color: transparent;
  6449. }
  6450. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
  6451. .show > .btn-outline-secondary.dropdown-toggle {
  6452. color: #212529;
  6453. background-color: #AAAAAA;
  6454. border-color: #AAAAAA;
  6455. }
  6456. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  6457. .show > .btn-outline-secondary.dropdown-toggle:focus {
  6458. -webkit-box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.5);
  6459. box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.5);
  6460. }
  6461. .btn-outline-success {
  6462. color: #28a745;
  6463. border-color: #28a745;
  6464. }
  6465. .btn-outline-success:hover {
  6466. color: #fff;
  6467. background-color: #28a745;
  6468. border-color: #28a745;
  6469. }
  6470. .btn-outline-success:focus, .btn-outline-success.focus {
  6471. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  6472. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  6473. }
  6474. .btn-outline-success.disabled, .btn-outline-success:disabled {
  6475. color: #28a745;
  6476. background-color: transparent;
  6477. }
  6478. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
  6479. .show > .btn-outline-success.dropdown-toggle {
  6480. color: #fff;
  6481. background-color: #28a745;
  6482. border-color: #28a745;
  6483. }
  6484. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  6485. .show > .btn-outline-success.dropdown-toggle:focus {
  6486. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  6487. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  6488. }
  6489. .btn-outline-info {
  6490. color: #17a2b8;
  6491. border-color: #17a2b8;
  6492. }
  6493. .btn-outline-info:hover {
  6494. color: #fff;
  6495. background-color: #17a2b8;
  6496. border-color: #17a2b8;
  6497. }
  6498. .btn-outline-info:focus, .btn-outline-info.focus {
  6499. -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  6500. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  6501. }
  6502. .btn-outline-info.disabled, .btn-outline-info:disabled {
  6503. color: #17a2b8;
  6504. background-color: transparent;
  6505. }
  6506. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
  6507. .show > .btn-outline-info.dropdown-toggle {
  6508. color: #fff;
  6509. background-color: #17a2b8;
  6510. border-color: #17a2b8;
  6511. }
  6512. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  6513. .show > .btn-outline-info.dropdown-toggle:focus {
  6514. -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  6515. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  6516. }
  6517. .btn-outline-warning {
  6518. color: #ffc107;
  6519. border-color: #ffc107;
  6520. }
  6521. .btn-outline-warning:hover {
  6522. color: #212529;
  6523. background-color: #ffc107;
  6524. border-color: #ffc107;
  6525. }
  6526. .btn-outline-warning:focus, .btn-outline-warning.focus {
  6527. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  6528. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  6529. }
  6530. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  6531. color: #ffc107;
  6532. background-color: transparent;
  6533. }
  6534. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
  6535. .show > .btn-outline-warning.dropdown-toggle {
  6536. color: #212529;
  6537. background-color: #ffc107;
  6538. border-color: #ffc107;
  6539. }
  6540. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  6541. .show > .btn-outline-warning.dropdown-toggle:focus {
  6542. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  6543. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  6544. }
  6545. .btn-outline-danger {
  6546. color: #dc3545;
  6547. border-color: #dc3545;
  6548. }
  6549. .btn-outline-danger:hover {
  6550. color: #fff;
  6551. background-color: #dc3545;
  6552. border-color: #dc3545;
  6553. }
  6554. .btn-outline-danger:focus, .btn-outline-danger.focus {
  6555. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  6556. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  6557. }
  6558. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  6559. color: #dc3545;
  6560. background-color: transparent;
  6561. }
  6562. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
  6563. .show > .btn-outline-danger.dropdown-toggle {
  6564. color: #fff;
  6565. background-color: #dc3545;
  6566. border-color: #dc3545;
  6567. }
  6568. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  6569. .show > .btn-outline-danger.dropdown-toggle:focus {
  6570. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  6571. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  6572. }
  6573. .btn-outline-light {
  6574. color: #f8f9fa;
  6575. border-color: #f8f9fa;
  6576. }
  6577. .btn-outline-light:hover {
  6578. color: #212529;
  6579. background-color: #f8f9fa;
  6580. border-color: #f8f9fa;
  6581. }
  6582. .btn-outline-light:focus, .btn-outline-light.focus {
  6583. -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  6584. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  6585. }
  6586. .btn-outline-light.disabled, .btn-outline-light:disabled {
  6587. color: #f8f9fa;
  6588. background-color: transparent;
  6589. }
  6590. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
  6591. .show > .btn-outline-light.dropdown-toggle {
  6592. color: #212529;
  6593. background-color: #f8f9fa;
  6594. border-color: #f8f9fa;
  6595. }
  6596. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  6597. .show > .btn-outline-light.dropdown-toggle:focus {
  6598. -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  6599. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  6600. }
  6601. .btn-outline-dark {
  6602. color: #343a40;
  6603. border-color: #343a40;
  6604. }
  6605. .btn-outline-dark:hover {
  6606. color: #fff;
  6607. background-color: #343a40;
  6608. border-color: #343a40;
  6609. }
  6610. .btn-outline-dark:focus, .btn-outline-dark.focus {
  6611. -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  6612. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  6613. }
  6614. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  6615. color: #343a40;
  6616. background-color: transparent;
  6617. }
  6618. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
  6619. .show > .btn-outline-dark.dropdown-toggle {
  6620. color: #fff;
  6621. background-color: #343a40;
  6622. border-color: #343a40;
  6623. }
  6624. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  6625. .show > .btn-outline-dark.dropdown-toggle:focus {
  6626. -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  6627. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  6628. }
  6629. .btn-link {
  6630. font-weight: 400;
  6631. color: #EE7800;
  6632. text-decoration: none;
  6633. }
  6634. .btn-link:hover {
  6635. color: #a25100;
  6636. text-decoration: underline;
  6637. }
  6638. .btn-link:focus, .btn-link.focus {
  6639. text-decoration: underline;
  6640. -webkit-box-shadow: none;
  6641. box-shadow: none;
  6642. }
  6643. .btn-link:disabled, .btn-link.disabled {
  6644. color: #727679;
  6645. pointer-events: none;
  6646. }
  6647. .btn-lg, .btn-group-lg > .btn {
  6648. padding: 0.5rem 1rem;
  6649. font-size: 1.25rem;
  6650. line-height: 1.5;
  6651. border-radius: 0.3rem;
  6652. }
  6653. .btn-sm, .btn-group-sm > .btn {
  6654. padding: 0.25rem 0.5rem;
  6655. font-size: 0.875rem;
  6656. line-height: 1.5;
  6657. border-radius: 0.2rem;
  6658. }
  6659. .btn-block {
  6660. display: block;
  6661. width: 100%;
  6662. }
  6663. .btn-block + .btn-block {
  6664. margin-top: 0.5rem;
  6665. }
  6666. input[type="submit"].btn-block,
  6667. input[type="reset"].btn-block,
  6668. input[type="button"].btn-block {
  6669. width: 100%;
  6670. }
  6671. .fade {
  6672. -webkit-transition: opacity 0.15s linear;
  6673. transition: opacity 0.15s linear;
  6674. }
  6675. @media (prefers-reduced-motion: reduce) {
  6676. .fade {
  6677. -webkit-transition: none;
  6678. transition: none;
  6679. }
  6680. }
  6681. .fade:not(.show) {
  6682. opacity: 0;
  6683. }
  6684. .collapse:not(.show) {
  6685. display: none;
  6686. }
  6687. .collapsing {
  6688. position: relative;
  6689. height: 0;
  6690. overflow: hidden;
  6691. -webkit-transition: height 0.35s ease;
  6692. transition: height 0.35s ease;
  6693. }
  6694. @media (prefers-reduced-motion: reduce) {
  6695. .collapsing {
  6696. -webkit-transition: none;
  6697. transition: none;
  6698. }
  6699. }
  6700. .dropup,
  6701. .dropright,
  6702. .dropdown,
  6703. .dropleft {
  6704. position: relative;
  6705. }
  6706. .dropdown-toggle {
  6707. white-space: nowrap;
  6708. }
  6709. .dropdown-toggle::after {
  6710. display: inline-block;
  6711. margin-left: 0.255em;
  6712. vertical-align: 0.255em;
  6713. content: "";
  6714. border-top: 0.3em solid;
  6715. border-right: 0.3em solid transparent;
  6716. border-bottom: 0;
  6717. border-left: 0.3em solid transparent;
  6718. }
  6719. .dropdown-toggle:empty::after {
  6720. margin-left: 0;
  6721. }
  6722. .dropdown-menu {
  6723. position: absolute;
  6724. top: 100%;
  6725. left: 0;
  6726. z-index: 1000;
  6727. display: none;
  6728. float: left;
  6729. min-width: 20rem;
  6730. padding: 0rem 0;
  6731. margin: 0.125rem 0 0;
  6732. font-size: 1rem;
  6733. color: #212529;
  6734. text-align: left;
  6735. list-style: none;
  6736. background-color: #fff;
  6737. background-clip: padding-box;
  6738. border: 1px solid rgba(0, 0, 0, 0.15);
  6739. border-radius: 0.25rem;
  6740. }
  6741. .dropdown-menu-left {
  6742. right: auto;
  6743. left: 0;
  6744. }
  6745. .dropdown-menu-right {
  6746. right: 0;
  6747. left: auto;
  6748. }
  6749. @media (min-width: 576px) {
  6750. .dropdown-menu-sm-left {
  6751. right: auto;
  6752. left: 0;
  6753. }
  6754. .dropdown-menu-sm-right {
  6755. right: 0;
  6756. left: auto;
  6757. }
  6758. }
  6759. @media (min-width: 768px) {
  6760. .dropdown-menu-md-left {
  6761. right: auto;
  6762. left: 0;
  6763. }
  6764. .dropdown-menu-md-right {
  6765. right: 0;
  6766. left: auto;
  6767. }
  6768. }
  6769. @media (min-width: 992px) {
  6770. .dropdown-menu-lg-left {
  6771. right: auto;
  6772. left: 0;
  6773. }
  6774. .dropdown-menu-lg-right {
  6775. right: 0;
  6776. left: auto;
  6777. }
  6778. }
  6779. @media (min-width: 1200px) {
  6780. .dropdown-menu-xl-left {
  6781. right: auto;
  6782. left: 0;
  6783. }
  6784. .dropdown-menu-xl-right {
  6785. right: 0;
  6786. left: auto;
  6787. }
  6788. }
  6789. .dropup .dropdown-menu {
  6790. top: auto;
  6791. bottom: 100%;
  6792. margin-top: 0;
  6793. margin-bottom: 0.125rem;
  6794. }
  6795. .dropup .dropdown-toggle::after {
  6796. display: inline-block;
  6797. margin-left: 0.255em;
  6798. vertical-align: 0.255em;
  6799. content: "";
  6800. border-top: 0;
  6801. border-right: 0.3em solid transparent;
  6802. border-bottom: 0.3em solid;
  6803. border-left: 0.3em solid transparent;
  6804. }
  6805. .dropup .dropdown-toggle:empty::after {
  6806. margin-left: 0;
  6807. }
  6808. .dropright .dropdown-menu {
  6809. top: 0;
  6810. right: auto;
  6811. left: 100%;
  6812. margin-top: 0;
  6813. margin-left: 0.125rem;
  6814. }
  6815. .dropright .dropdown-toggle::after {
  6816. display: inline-block;
  6817. margin-left: 0.255em;
  6818. vertical-align: 0.255em;
  6819. content: "";
  6820. border-top: 0.3em solid transparent;
  6821. border-right: 0;
  6822. border-bottom: 0.3em solid transparent;
  6823. border-left: 0.3em solid;
  6824. }
  6825. .dropright .dropdown-toggle:empty::after {
  6826. margin-left: 0;
  6827. }
  6828. .dropright .dropdown-toggle::after {
  6829. vertical-align: 0;
  6830. }
  6831. .dropleft .dropdown-menu {
  6832. top: 0;
  6833. right: 100%;
  6834. left: auto;
  6835. margin-top: 0;
  6836. margin-right: 0.125rem;
  6837. }
  6838. .dropleft .dropdown-toggle::after {
  6839. display: inline-block;
  6840. margin-left: 0.255em;
  6841. vertical-align: 0.255em;
  6842. content: "";
  6843. }
  6844. .dropleft .dropdown-toggle::after {
  6845. display: none;
  6846. }
  6847. .dropleft .dropdown-toggle::before {
  6848. display: inline-block;
  6849. margin-right: 0.255em;
  6850. vertical-align: 0.255em;
  6851. content: "";
  6852. border-top: 0.3em solid transparent;
  6853. border-right: 0.3em solid;
  6854. border-bottom: 0.3em solid transparent;
  6855. }
  6856. .dropleft .dropdown-toggle:empty::after {
  6857. margin-left: 0;
  6858. }
  6859. .dropleft .dropdown-toggle::before {
  6860. vertical-align: 0;
  6861. }
  6862. .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  6863. right: auto;
  6864. bottom: auto;
  6865. }
  6866. .dropdown-divider {
  6867. height: 0;
  6868. margin: 0.5rem 0;
  6869. overflow: hidden;
  6870. border-top: 1px solid #e9ecef;
  6871. }
  6872. .dropdown-item {
  6873. display: block;
  6874. width: 100%;
  6875. padding: 0.25rem 1.5rem;
  6876. clear: both;
  6877. font-weight: 400;
  6878. color: #212529;
  6879. text-align: inherit;
  6880. white-space: nowrap;
  6881. background-color: transparent;
  6882. border: 0;
  6883. }
  6884. .dropdown-item:first-child {
  6885. border-top-left-radius: calc(0.25rem - 1px);
  6886. border-top-right-radius: calc(0.25rem - 1px);
  6887. }
  6888. .dropdown-item:last-child {
  6889. border-bottom-right-radius: calc(0.25rem - 1px);
  6890. border-bottom-left-radius: calc(0.25rem - 1px);
  6891. }
  6892. .dropdown-item:hover, .dropdown-item:focus {
  6893. color: #16181b;
  6894. text-decoration: none;
  6895. background-color: #f8f9fa;
  6896. }
  6897. .dropdown-item.active, .dropdown-item:active {
  6898. color: #fff;
  6899. text-decoration: none;
  6900. background-color: #EE7800;
  6901. }
  6902. .dropdown-item.disabled, .dropdown-item:disabled {
  6903. color: #727679;
  6904. pointer-events: none;
  6905. background-color: transparent;
  6906. }
  6907. .dropdown-menu.show {
  6908. display: block;
  6909. }
  6910. .dropdown-header {
  6911. display: block;
  6912. padding: 0rem 1.5rem;
  6913. margin-bottom: 0;
  6914. font-size: 0.875rem;
  6915. color: #727679;
  6916. white-space: nowrap;
  6917. }
  6918. .dropdown-item-text {
  6919. display: block;
  6920. padding: 0.25rem 1.5rem;
  6921. color: #212529;
  6922. }
  6923. .btn-group,
  6924. .btn-group-vertical {
  6925. position: relative;
  6926. display: -webkit-inline-box;
  6927. display: -ms-inline-flexbox;
  6928. display: inline-flex;
  6929. vertical-align: middle;
  6930. }
  6931. .btn-group > .btn,
  6932. .btn-group-vertical > .btn {
  6933. position: relative;
  6934. -webkit-box-flex: 1;
  6935. -ms-flex: 1 1 auto;
  6936. flex: 1 1 auto;
  6937. }
  6938. .btn-group > .btn:hover,
  6939. .btn-group-vertical > .btn:hover {
  6940. z-index: 1;
  6941. }
  6942. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  6943. .btn-group-vertical > .btn:focus,
  6944. .btn-group-vertical > .btn:active,
  6945. .btn-group-vertical > .btn.active {
  6946. z-index: 1;
  6947. }
  6948. .btn-toolbar {
  6949. display: -webkit-box;
  6950. display: -ms-flexbox;
  6951. display: flex;
  6952. -ms-flex-wrap: wrap;
  6953. flex-wrap: wrap;
  6954. -webkit-box-pack: start;
  6955. -ms-flex-pack: start;
  6956. justify-content: flex-start;
  6957. }
  6958. .btn-toolbar .input-group {
  6959. width: auto;
  6960. }
  6961. .btn-group > .btn:not(:first-child),
  6962. .btn-group > .btn-group:not(:first-child) {
  6963. margin-left: -1px;
  6964. }
  6965. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  6966. .btn-group > .btn-group:not(:last-child) > .btn {
  6967. border-top-right-radius: 0;
  6968. border-bottom-right-radius: 0;
  6969. }
  6970. .btn-group > .btn:not(:first-child),
  6971. .btn-group > .btn-group:not(:first-child) > .btn {
  6972. border-top-left-radius: 0;
  6973. border-bottom-left-radius: 0;
  6974. }
  6975. .dropdown-toggle-split {
  6976. padding-right: 0.5625rem;
  6977. padding-left: 0.5625rem;
  6978. }
  6979. .dropdown-toggle-split::after,
  6980. .dropup .dropdown-toggle-split::after,
  6981. .dropright .dropdown-toggle-split::after {
  6982. margin-left: 0;
  6983. }
  6984. .dropleft .dropdown-toggle-split::before {
  6985. margin-right: 0;
  6986. }
  6987. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  6988. padding-right: 0.375rem;
  6989. padding-left: 0.375rem;
  6990. }
  6991. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  6992. padding-right: 0.75rem;
  6993. padding-left: 0.75rem;
  6994. }
  6995. .btn-group-vertical {
  6996. -webkit-box-orient: vertical;
  6997. -webkit-box-direction: normal;
  6998. -ms-flex-direction: column;
  6999. flex-direction: column;
  7000. -webkit-box-align: start;
  7001. -ms-flex-align: start;
  7002. align-items: flex-start;
  7003. -webkit-box-pack: center;
  7004. -ms-flex-pack: center;
  7005. justify-content: center;
  7006. }
  7007. .btn-group-vertical > .btn,
  7008. .btn-group-vertical > .btn-group {
  7009. width: 100%;
  7010. }
  7011. .btn-group-vertical > .btn:not(:first-child),
  7012. .btn-group-vertical > .btn-group:not(:first-child) {
  7013. margin-top: -1px;
  7014. }
  7015. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  7016. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  7017. border-bottom-right-radius: 0;
  7018. border-bottom-left-radius: 0;
  7019. }
  7020. .btn-group-vertical > .btn:not(:first-child),
  7021. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  7022. border-top-left-radius: 0;
  7023. border-top-right-radius: 0;
  7024. }
  7025. .btn-group-toggle > .btn,
  7026. .btn-group-toggle > .btn-group > .btn {
  7027. margin-bottom: 0;
  7028. }
  7029. .btn-group-toggle > .btn input[type="radio"],
  7030. .btn-group-toggle > .btn input[type="checkbox"],
  7031. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  7032. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  7033. position: absolute;
  7034. clip: rect(0, 0, 0, 0);
  7035. pointer-events: none;
  7036. }
  7037. .nav {
  7038. display: -webkit-box;
  7039. display: -ms-flexbox;
  7040. display: flex;
  7041. -ms-flex-wrap: wrap;
  7042. flex-wrap: wrap;
  7043. padding-left: 0;
  7044. margin-bottom: 0;
  7045. list-style: none;
  7046. }
  7047. .nav-link {
  7048. display: block;
  7049. padding: 0.7rem 1rem;
  7050. }
  7051. .nav-link:hover, .nav-link:focus {
  7052. text-decoration: none;
  7053. }
  7054. .nav-link.disabled {
  7055. color: #727679;
  7056. pointer-events: none;
  7057. cursor: default;
  7058. }
  7059. .nav-tabs {
  7060. border-bottom: 1px solid #fff;
  7061. }
  7062. .nav-tabs .nav-item {
  7063. margin-bottom: -1px;
  7064. }
  7065. .nav-tabs .nav-link {
  7066. border: 1px solid transparent;
  7067. border-top-left-radius: 0.25rem;
  7068. border-top-right-radius: 0.25rem;
  7069. }
  7070. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  7071. border-color: #e9ecef #e9ecef #fff;
  7072. }
  7073. .nav-tabs .nav-link.disabled {
  7074. color: #727679;
  7075. background-color: transparent;
  7076. border-color: transparent;
  7077. }
  7078. .nav-tabs .nav-link.active,
  7079. .nav-tabs .nav-item.show .nav-link {
  7080. color: #fff;
  7081. background-color: #EE7800;
  7082. border-color: #dee2e6 #dee2e6 #EE7800;
  7083. }
  7084. .nav-tabs .dropdown-menu {
  7085. margin-top: -1px;
  7086. border-top-left-radius: 0;
  7087. border-top-right-radius: 0;
  7088. }
  7089. .nav-pills .nav-link {
  7090. border-radius: 0.25rem;
  7091. }
  7092. .nav-pills .nav-link.active,
  7093. .nav-pills .show > .nav-link {
  7094. color: #fff;
  7095. background-color: #EE7800;
  7096. }
  7097. .nav-fill .nav-item {
  7098. -webkit-box-flex: 1;
  7099. -ms-flex: 1 1 auto;
  7100. flex: 1 1 auto;
  7101. text-align: center;
  7102. }
  7103. .nav-justified .nav-item {
  7104. -ms-flex-preferred-size: 0;
  7105. flex-basis: 0;
  7106. -webkit-box-flex: 1;
  7107. -ms-flex-positive: 1;
  7108. flex-grow: 1;
  7109. text-align: center;
  7110. }
  7111. .tab-content > .tab-pane {
  7112. display: none;
  7113. }
  7114. .tab-content > .active {
  7115. display: block;
  7116. }
  7117. .navbar {
  7118. display: -webkit-box;
  7119. display: -ms-flexbox;
  7120. display: flex;
  7121. -ms-flex-wrap: wrap;
  7122. flex-wrap: wrap;
  7123. -webkit-box-align: center;
  7124. -ms-flex-align: center;
  7125. align-items: center;
  7126. -webkit-box-pack: justify;
  7127. -ms-flex-pack: justify;
  7128. justify-content: space-between;
  7129. padding: 0.5rem 1rem;
  7130. }
  7131. .navbar .container,
  7132. .navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  7133. display: -webkit-box;
  7134. display: -ms-flexbox;
  7135. display: flex;
  7136. -ms-flex-wrap: wrap;
  7137. flex-wrap: wrap;
  7138. -webkit-box-align: center;
  7139. -ms-flex-align: center;
  7140. align-items: center;
  7141. -webkit-box-pack: justify;
  7142. -ms-flex-pack: justify;
  7143. justify-content: space-between;
  7144. }
  7145. .navbar-brand {
  7146. display: inline-block;
  7147. padding-top: 0.5125rem;
  7148. padding-bottom: 0.5125rem;
  7149. margin-right: 1rem;
  7150. font-size: 1.25rem;
  7151. line-height: inherit;
  7152. white-space: nowrap;
  7153. }
  7154. .navbar-brand:hover, .navbar-brand:focus {
  7155. text-decoration: none;
  7156. }
  7157. .navbar-nav {
  7158. display: -webkit-box;
  7159. display: -ms-flexbox;
  7160. display: flex;
  7161. -webkit-box-orient: vertical;
  7162. -webkit-box-direction: normal;
  7163. -ms-flex-direction: column;
  7164. flex-direction: column;
  7165. padding-left: 0;
  7166. margin-bottom: 0;
  7167. list-style: none;
  7168. }
  7169. .navbar-nav .nav-link {
  7170. padding-right: 0;
  7171. padding-left: 0;
  7172. }
  7173. .navbar-nav .dropdown-menu {
  7174. position: static;
  7175. float: none;
  7176. }
  7177. .navbar-text {
  7178. display: inline-block;
  7179. padding-top: 0.7rem;
  7180. padding-bottom: 0.7rem;
  7181. }
  7182. .navbar-collapse {
  7183. -ms-flex-preferred-size: 100%;
  7184. flex-basis: 100%;
  7185. -webkit-box-flex: 1;
  7186. -ms-flex-positive: 1;
  7187. flex-grow: 1;
  7188. -webkit-box-align: center;
  7189. -ms-flex-align: center;
  7190. align-items: center;
  7191. }
  7192. .navbar-toggler {
  7193. padding: 0.25rem 0.75rem;
  7194. font-size: 1.25rem;
  7195. line-height: 1;
  7196. background-color: transparent;
  7197. border: 1px solid transparent;
  7198. border-radius: 0.25rem;
  7199. }
  7200. .navbar-toggler:hover, .navbar-toggler:focus {
  7201. text-decoration: none;
  7202. }
  7203. .navbar-toggler-icon {
  7204. display: inline-block;
  7205. width: 1.5em;
  7206. height: 1.5em;
  7207. vertical-align: middle;
  7208. content: "";
  7209. background: no-repeat center center;
  7210. background-size: 100% 100%;
  7211. }
  7212. @media (max-width: 575.98px) {
  7213. .navbar-expand-sm > .container,
  7214. .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 {
  7215. padding-right: 0;
  7216. padding-left: 0;
  7217. }
  7218. }
  7219. @media (min-width: 576px) {
  7220. .navbar-expand-sm {
  7221. -webkit-box-orient: horizontal;
  7222. -webkit-box-direction: normal;
  7223. -ms-flex-flow: row nowrap;
  7224. flex-flow: row nowrap;
  7225. -webkit-box-pack: start;
  7226. -ms-flex-pack: start;
  7227. justify-content: flex-start;
  7228. }
  7229. .navbar-expand-sm .navbar-nav {
  7230. -webkit-box-orient: horizontal;
  7231. -webkit-box-direction: normal;
  7232. -ms-flex-direction: row;
  7233. flex-direction: row;
  7234. }
  7235. .navbar-expand-sm .navbar-nav .dropdown-menu {
  7236. position: absolute;
  7237. }
  7238. .navbar-expand-sm .navbar-nav .nav-link {
  7239. padding-right: 0.5rem;
  7240. padding-left: 0.5rem;
  7241. }
  7242. .navbar-expand-sm > .container,
  7243. .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 {
  7244. -ms-flex-wrap: nowrap;
  7245. flex-wrap: nowrap;
  7246. }
  7247. .navbar-expand-sm .navbar-collapse {
  7248. display: -webkit-box !important;
  7249. display: -ms-flexbox !important;
  7250. display: flex !important;
  7251. -ms-flex-preferred-size: auto;
  7252. flex-basis: auto;
  7253. }
  7254. .navbar-expand-sm .navbar-toggler {
  7255. display: none;
  7256. }
  7257. }
  7258. @media (max-width: 767.98px) {
  7259. .navbar-expand-md > .container,
  7260. .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 {
  7261. padding-right: 0;
  7262. padding-left: 0;
  7263. }
  7264. }
  7265. @media (min-width: 768px) {
  7266. .navbar-expand-md {
  7267. -webkit-box-orient: horizontal;
  7268. -webkit-box-direction: normal;
  7269. -ms-flex-flow: row nowrap;
  7270. flex-flow: row nowrap;
  7271. -webkit-box-pack: start;
  7272. -ms-flex-pack: start;
  7273. justify-content: flex-start;
  7274. }
  7275. .navbar-expand-md .navbar-nav {
  7276. -webkit-box-orient: horizontal;
  7277. -webkit-box-direction: normal;
  7278. -ms-flex-direction: row;
  7279. flex-direction: row;
  7280. }
  7281. .navbar-expand-md .navbar-nav .dropdown-menu {
  7282. position: absolute;
  7283. }
  7284. .navbar-expand-md .navbar-nav .nav-link {
  7285. padding-right: 0.5rem;
  7286. padding-left: 0.5rem;
  7287. }
  7288. .navbar-expand-md > .container,
  7289. .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 {
  7290. -ms-flex-wrap: nowrap;
  7291. flex-wrap: nowrap;
  7292. }
  7293. .navbar-expand-md .navbar-collapse {
  7294. display: -webkit-box !important;
  7295. display: -ms-flexbox !important;
  7296. display: flex !important;
  7297. -ms-flex-preferred-size: auto;
  7298. flex-basis: auto;
  7299. }
  7300. .navbar-expand-md .navbar-toggler {
  7301. display: none;
  7302. }
  7303. }
  7304. @media (max-width: 991.98px) {
  7305. .navbar-expand-lg > .container,
  7306. .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 {
  7307. padding-right: 0;
  7308. padding-left: 0;
  7309. }
  7310. }
  7311. @media (min-width: 992px) {
  7312. .navbar-expand-lg {
  7313. -webkit-box-orient: horizontal;
  7314. -webkit-box-direction: normal;
  7315. -ms-flex-flow: row nowrap;
  7316. flex-flow: row nowrap;
  7317. -webkit-box-pack: start;
  7318. -ms-flex-pack: start;
  7319. justify-content: flex-start;
  7320. }
  7321. .navbar-expand-lg .navbar-nav {
  7322. -webkit-box-orient: horizontal;
  7323. -webkit-box-direction: normal;
  7324. -ms-flex-direction: row;
  7325. flex-direction: row;
  7326. }
  7327. .navbar-expand-lg .navbar-nav .dropdown-menu {
  7328. position: absolute;
  7329. }
  7330. .navbar-expand-lg .navbar-nav .nav-link {
  7331. padding-right: 0.5rem;
  7332. padding-left: 0.5rem;
  7333. }
  7334. .navbar-expand-lg > .container,
  7335. .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 {
  7336. -ms-flex-wrap: nowrap;
  7337. flex-wrap: nowrap;
  7338. }
  7339. .navbar-expand-lg .navbar-collapse {
  7340. display: -webkit-box !important;
  7341. display: -ms-flexbox !important;
  7342. display: flex !important;
  7343. -ms-flex-preferred-size: auto;
  7344. flex-basis: auto;
  7345. }
  7346. .navbar-expand-lg .navbar-toggler {
  7347. display: none;
  7348. }
  7349. }
  7350. @media (max-width: 1199.98px) {
  7351. .navbar-expand-xl > .container,
  7352. .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 {
  7353. padding-right: 0;
  7354. padding-left: 0;
  7355. }
  7356. }
  7357. @media (min-width: 1200px) {
  7358. .navbar-expand-xl {
  7359. -webkit-box-orient: horizontal;
  7360. -webkit-box-direction: normal;
  7361. -ms-flex-flow: row nowrap;
  7362. flex-flow: row nowrap;
  7363. -webkit-box-pack: start;
  7364. -ms-flex-pack: start;
  7365. justify-content: flex-start;
  7366. }
  7367. .navbar-expand-xl .navbar-nav {
  7368. -webkit-box-orient: horizontal;
  7369. -webkit-box-direction: normal;
  7370. -ms-flex-direction: row;
  7371. flex-direction: row;
  7372. }
  7373. .navbar-expand-xl .navbar-nav .dropdown-menu {
  7374. position: absolute;
  7375. }
  7376. .navbar-expand-xl .navbar-nav .nav-link {
  7377. padding-right: 0.5rem;
  7378. padding-left: 0.5rem;
  7379. }
  7380. .navbar-expand-xl > .container,
  7381. .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 {
  7382. -ms-flex-wrap: nowrap;
  7383. flex-wrap: nowrap;
  7384. }
  7385. .navbar-expand-xl .navbar-collapse {
  7386. display: -webkit-box !important;
  7387. display: -ms-flexbox !important;
  7388. display: flex !important;
  7389. -ms-flex-preferred-size: auto;
  7390. flex-basis: auto;
  7391. }
  7392. .navbar-expand-xl .navbar-toggler {
  7393. display: none;
  7394. }
  7395. }
  7396. .navbar-expand {
  7397. -webkit-box-orient: horizontal;
  7398. -webkit-box-direction: normal;
  7399. -ms-flex-flow: row nowrap;
  7400. flex-flow: row nowrap;
  7401. -webkit-box-pack: start;
  7402. -ms-flex-pack: start;
  7403. justify-content: flex-start;
  7404. }
  7405. .navbar-expand > .container,
  7406. .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  7407. padding-right: 0;
  7408. padding-left: 0;
  7409. }
  7410. .navbar-expand .navbar-nav {
  7411. -webkit-box-orient: horizontal;
  7412. -webkit-box-direction: normal;
  7413. -ms-flex-direction: row;
  7414. flex-direction: row;
  7415. }
  7416. .navbar-expand .navbar-nav .dropdown-menu {
  7417. position: absolute;
  7418. }
  7419. .navbar-expand .navbar-nav .nav-link {
  7420. padding-right: 0.5rem;
  7421. padding-left: 0.5rem;
  7422. }
  7423. .navbar-expand > .container,
  7424. .navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  7425. -ms-flex-wrap: nowrap;
  7426. flex-wrap: nowrap;
  7427. }
  7428. .navbar-expand .navbar-collapse {
  7429. display: -webkit-box !important;
  7430. display: -ms-flexbox !important;
  7431. display: flex !important;
  7432. -ms-flex-preferred-size: auto;
  7433. flex-basis: auto;
  7434. }
  7435. .navbar-expand .navbar-toggler {
  7436. display: none;
  7437. }
  7438. .navbar-light .navbar-brand {
  7439. color: rgba(0, 0, 0, 0.9);
  7440. }
  7441. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  7442. color: rgba(0, 0, 0, 0.9);
  7443. }
  7444. .navbar-light .navbar-nav .nav-link {
  7445. color: rgba(0, 0, 0, 0.5);
  7446. }
  7447. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  7448. color: rgba(0, 0, 0, 0.7);
  7449. }
  7450. .navbar-light .navbar-nav .nav-link.disabled {
  7451. color: rgba(0, 0, 0, 0.3);
  7452. }
  7453. .navbar-light .navbar-nav .show > .nav-link,
  7454. .navbar-light .navbar-nav .active > .nav-link,
  7455. .navbar-light .navbar-nav .nav-link.show,
  7456. .navbar-light .navbar-nav .nav-link.active {
  7457. color: rgba(0, 0, 0, 0.9);
  7458. }
  7459. .navbar-light .navbar-toggler {
  7460. color: rgba(0, 0, 0, 0.5);
  7461. border-color: rgba(0, 0, 0, 0.1);
  7462. }
  7463. .navbar-light .navbar-toggler-icon {
  7464. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  7465. }
  7466. .navbar-light .navbar-text {
  7467. color: rgba(0, 0, 0, 0.5);
  7468. }
  7469. .navbar-light .navbar-text a {
  7470. color: rgba(0, 0, 0, 0.9);
  7471. }
  7472. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  7473. color: rgba(0, 0, 0, 0.9);
  7474. }
  7475. .navbar-dark .navbar-brand {
  7476. color: #fff;
  7477. }
  7478. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  7479. color: #fff;
  7480. }
  7481. .navbar-dark .navbar-nav .nav-link {
  7482. color: rgba(255, 255, 255, 0.5);
  7483. }
  7484. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  7485. color: rgba(255, 255, 255, 0.75);
  7486. }
  7487. .navbar-dark .navbar-nav .nav-link.disabled {
  7488. color: rgba(255, 255, 255, 0.25);
  7489. }
  7490. .navbar-dark .navbar-nav .show > .nav-link,
  7491. .navbar-dark .navbar-nav .active > .nav-link,
  7492. .navbar-dark .navbar-nav .nav-link.show,
  7493. .navbar-dark .navbar-nav .nav-link.active {
  7494. color: #fff;
  7495. }
  7496. .navbar-dark .navbar-toggler {
  7497. color: rgba(255, 255, 255, 0.5);
  7498. border-color: rgba(255, 255, 255, 0.1);
  7499. }
  7500. .navbar-dark .navbar-toggler-icon {
  7501. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  7502. }
  7503. .navbar-dark .navbar-text {
  7504. color: rgba(255, 255, 255, 0.5);
  7505. }
  7506. .navbar-dark .navbar-text a {
  7507. color: #fff;
  7508. }
  7509. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  7510. color: #fff;
  7511. }
  7512. .breadcrumb {
  7513. display: -webkit-box;
  7514. display: -ms-flexbox;
  7515. display: flex;
  7516. -ms-flex-wrap: wrap;
  7517. flex-wrap: wrap;
  7518. padding: 0.75rem 1rem;
  7519. margin-bottom: 1rem;
  7520. list-style: none;
  7521. background-color: #e9ecef;
  7522. border-radius: 0.25rem;
  7523. }
  7524. .breadcrumb-item + .breadcrumb-item {
  7525. padding-left: 0.5rem;
  7526. }
  7527. .breadcrumb-item + .breadcrumb-item::before {
  7528. display: inline-block;
  7529. padding-right: 0.5rem;
  7530. color: #727679;
  7531. content: "/";
  7532. }
  7533. .breadcrumb-item + .breadcrumb-item:hover::before {
  7534. text-decoration: underline;
  7535. }
  7536. .breadcrumb-item + .breadcrumb-item:hover::before {
  7537. text-decoration: none;
  7538. }
  7539. .breadcrumb-item.active {
  7540. color: #727679;
  7541. }
  7542. .pagination {
  7543. display: -webkit-box;
  7544. display: -ms-flexbox;
  7545. display: flex;
  7546. padding-left: 0;
  7547. list-style: none;
  7548. border-radius: 0.25rem;
  7549. }
  7550. .page-link {
  7551. position: relative;
  7552. display: block;
  7553. padding: 0.5rem 0.75rem;
  7554. margin-left: -1px;
  7555. line-height: 1.25;
  7556. color: #727679;
  7557. background-color: #fff;
  7558. border: 1px solid #FFF;
  7559. }
  7560. .page-link:hover {
  7561. z-index: 2;
  7562. color: #fff;
  7563. text-decoration: none;
  7564. background-color: #EE7800;
  7565. border-color: #dee2e6;
  7566. }
  7567. .page-link:focus {
  7568. z-index: 3;
  7569. outline: 0;
  7570. -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.25);
  7571. box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.25);
  7572. }
  7573. .page-item:first-child .page-link {
  7574. margin-left: 0;
  7575. border-top-left-radius: 0.25rem;
  7576. border-bottom-left-radius: 0.25rem;
  7577. }
  7578. .page-item:last-child .page-link {
  7579. border-top-right-radius: 0.25rem;
  7580. border-bottom-right-radius: 0.25rem;
  7581. }
  7582. .page-item.active .page-link {
  7583. z-index: 3;
  7584. color: #fff;
  7585. background-color: #EE7800;
  7586. border-color: #EE7800;
  7587. }
  7588. .page-item.disabled .page-link {
  7589. color: #727679;
  7590. pointer-events: none;
  7591. cursor: auto;
  7592. background-color: #fff;
  7593. border-color: #dee2e6;
  7594. }
  7595. .pagination-lg .page-link {
  7596. padding: 0.75rem 1.5rem;
  7597. font-size: 1.25rem;
  7598. line-height: 1.5;
  7599. }
  7600. .pagination-lg .page-item:first-child .page-link {
  7601. border-top-left-radius: 0.3rem;
  7602. border-bottom-left-radius: 0.3rem;
  7603. }
  7604. .pagination-lg .page-item:last-child .page-link {
  7605. border-top-right-radius: 0.3rem;
  7606. border-bottom-right-radius: 0.3rem;
  7607. }
  7608. .pagination-sm .page-link {
  7609. padding: 0.25rem 0.5rem;
  7610. font-size: 0.875rem;
  7611. line-height: 1.5;
  7612. }
  7613. .pagination-sm .page-item:first-child .page-link {
  7614. border-top-left-radius: 0.2rem;
  7615. border-bottom-left-radius: 0.2rem;
  7616. }
  7617. .pagination-sm .page-item:last-child .page-link {
  7618. border-top-right-radius: 0.2rem;
  7619. border-bottom-right-radius: 0.2rem;
  7620. }
  7621. .badge {
  7622. display: inline-block;
  7623. padding: 0.25em 0.4em;
  7624. font-size: 75%;
  7625. font-weight: 700;
  7626. line-height: 1;
  7627. text-align: center;
  7628. white-space: nowrap;
  7629. vertical-align: baseline;
  7630. border-radius: 0.25rem;
  7631. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  7632. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  7633. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  7634. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  7635. }
  7636. @media (prefers-reduced-motion: reduce) {
  7637. .badge {
  7638. -webkit-transition: none;
  7639. transition: none;
  7640. }
  7641. }
  7642. a.badge:hover, a.badge:focus {
  7643. text-decoration: none;
  7644. }
  7645. .badge:empty {
  7646. display: none;
  7647. }
  7648. .btn .badge {
  7649. position: relative;
  7650. top: -1px;
  7651. }
  7652. .badge-pill {
  7653. padding-right: 0.6em;
  7654. padding-left: 0.6em;
  7655. border-radius: 10rem;
  7656. }
  7657. .badge-primary {
  7658. color: #fff;
  7659. background-color: #EE7800;
  7660. }
  7661. a.badge-primary:hover, a.badge-primary:focus {
  7662. color: #fff;
  7663. background-color: #bb5e00;
  7664. }
  7665. a.badge-primary:focus, a.badge-primary.focus {
  7666. outline: 0;
  7667. -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.5);
  7668. box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.5);
  7669. }
  7670. .badge-secondary {
  7671. color: #212529;
  7672. background-color: #AAAAAA;
  7673. }
  7674. a.badge-secondary:hover, a.badge-secondary:focus {
  7675. color: #212529;
  7676. background-color: #919191;
  7677. }
  7678. a.badge-secondary:focus, a.badge-secondary.focus {
  7679. outline: 0;
  7680. -webkit-box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.5);
  7681. box-shadow: 0 0 0 0.2rem rgba(170, 170, 170, 0.5);
  7682. }
  7683. .badge-success {
  7684. color: #fff;
  7685. background-color: #28a745;
  7686. }
  7687. a.badge-success:hover, a.badge-success:focus {
  7688. color: #fff;
  7689. background-color: #1e7e34;
  7690. }
  7691. a.badge-success:focus, a.badge-success.focus {
  7692. outline: 0;
  7693. -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  7694. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
  7695. }
  7696. .badge-info {
  7697. color: #fff;
  7698. background-color: #17a2b8;
  7699. }
  7700. a.badge-info:hover, a.badge-info:focus {
  7701. color: #fff;
  7702. background-color: #117a8b;
  7703. }
  7704. a.badge-info:focus, a.badge-info.focus {
  7705. outline: 0;
  7706. -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  7707. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  7708. }
  7709. .badge-warning {
  7710. color: #212529;
  7711. background-color: #ffc107;
  7712. }
  7713. a.badge-warning:hover, a.badge-warning:focus {
  7714. color: #212529;
  7715. background-color: #d39e00;
  7716. }
  7717. a.badge-warning:focus, a.badge-warning.focus {
  7718. outline: 0;
  7719. -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  7720. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
  7721. }
  7722. .badge-danger {
  7723. color: #fff;
  7724. background-color: #dc3545;
  7725. }
  7726. a.badge-danger:hover, a.badge-danger:focus {
  7727. color: #fff;
  7728. background-color: #bd2130;
  7729. }
  7730. a.badge-danger:focus, a.badge-danger.focus {
  7731. outline: 0;
  7732. -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  7733. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
  7734. }
  7735. .badge-light {
  7736. color: #212529;
  7737. background-color: #f8f9fa;
  7738. }
  7739. a.badge-light:hover, a.badge-light:focus {
  7740. color: #212529;
  7741. background-color: #dae0e5;
  7742. }
  7743. a.badge-light:focus, a.badge-light.focus {
  7744. outline: 0;
  7745. -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  7746. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  7747. }
  7748. .badge-dark {
  7749. color: #fff;
  7750. background-color: #343a40;
  7751. }
  7752. a.badge-dark:hover, a.badge-dark:focus {
  7753. color: #fff;
  7754. background-color: #1d2124;
  7755. }
  7756. a.badge-dark:focus, a.badge-dark.focus {
  7757. outline: 0;
  7758. -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  7759. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  7760. }
  7761. .alert {
  7762. position: relative;
  7763. padding: 0.75rem 1.25rem;
  7764. margin-bottom: 1rem;
  7765. border: 1px solid transparent;
  7766. border-radius: 0.25rem;
  7767. }
  7768. .alert-heading {
  7769. color: inherit;
  7770. }
  7771. .alert-link {
  7772. font-weight: 700;
  7773. }
  7774. .alert-dismissible {
  7775. padding-right: 4rem;
  7776. }
  7777. .alert-dismissible .close {
  7778. position: absolute;
  7779. top: 0;
  7780. right: 0;
  7781. padding: 0.75rem 1.25rem;
  7782. color: inherit;
  7783. }
  7784. .alert-primary {
  7785. color: #7c3e00;
  7786. background-color: #fce4cc;
  7787. border-color: #fad9b8;
  7788. }
  7789. .alert-primary hr {
  7790. border-top-color: #f8cca0;
  7791. }
  7792. .alert-primary .alert-link {
  7793. color: #492500;
  7794. }
  7795. .alert-secondary {
  7796. color: #585858;
  7797. background-color: #eeeeee;
  7798. border-color: #e7e7e7;
  7799. }
  7800. .alert-secondary hr {
  7801. border-top-color: #dadada;
  7802. }
  7803. .alert-secondary .alert-link {
  7804. color: #3f3f3f;
  7805. }
  7806. .alert-success {
  7807. color: #155724;
  7808. background-color: #d4edda;
  7809. border-color: #c3e6cb;
  7810. }
  7811. .alert-success hr {
  7812. border-top-color: #b1dfbb;
  7813. }
  7814. .alert-success .alert-link {
  7815. color: #0b2e13;
  7816. }
  7817. .alert-info {
  7818. color: #0c5460;
  7819. background-color: #d1ecf1;
  7820. border-color: #bee5eb;
  7821. }
  7822. .alert-info hr {
  7823. border-top-color: #abdde5;
  7824. }
  7825. .alert-info .alert-link {
  7826. color: #062c33;
  7827. }
  7828. .alert-warning {
  7829. color: #856404;
  7830. background-color: #fff3cd;
  7831. border-color: #ffeeba;
  7832. }
  7833. .alert-warning hr {
  7834. border-top-color: #ffe8a1;
  7835. }
  7836. .alert-warning .alert-link {
  7837. color: #533f03;
  7838. }
  7839. .alert-danger {
  7840. color: #721c24;
  7841. background-color: #f8d7da;
  7842. border-color: #f5c6cb;
  7843. }
  7844. .alert-danger hr {
  7845. border-top-color: #f1b0b7;
  7846. }
  7847. .alert-danger .alert-link {
  7848. color: #491217;
  7849. }
  7850. .alert-light {
  7851. color: #818182;
  7852. background-color: #fefefe;
  7853. border-color: #fdfdfe;
  7854. }
  7855. .alert-light hr {
  7856. border-top-color: #ececf6;
  7857. }
  7858. .alert-light .alert-link {
  7859. color: #686868;
  7860. }
  7861. .alert-dark {
  7862. color: #1b1e21;
  7863. background-color: #d6d8d9;
  7864. border-color: #c6c8ca;
  7865. }
  7866. .alert-dark hr {
  7867. border-top-color: #b9bbbe;
  7868. }
  7869. .alert-dark .alert-link {
  7870. color: #040505;
  7871. }
  7872. .list-group {
  7873. display: -webkit-box;
  7874. display: -ms-flexbox;
  7875. display: flex;
  7876. -webkit-box-orient: vertical;
  7877. -webkit-box-direction: normal;
  7878. -ms-flex-direction: column;
  7879. flex-direction: column;
  7880. padding-left: 0;
  7881. margin-bottom: 0;
  7882. }
  7883. .list-group-item-action {
  7884. width: 100%;
  7885. color: #495057;
  7886. text-align: inherit;
  7887. }
  7888. .list-group-item-action:hover, .list-group-item-action:focus {
  7889. z-index: 1;
  7890. color: #495057;
  7891. text-decoration: none;
  7892. background-color: #f8f9fa;
  7893. }
  7894. .list-group-item-action:active {
  7895. color: #212529;
  7896. background-color: #e9ecef;
  7897. }
  7898. .list-group-item {
  7899. position: relative;
  7900. display: block;
  7901. padding: 0.75rem 1.25rem;
  7902. background-color: #fff;
  7903. border: 1px solid rgba(0, 0, 0, 0.125);
  7904. }
  7905. .list-group-item:first-child {
  7906. border-top-left-radius: 0.25rem;
  7907. border-top-right-radius: 0.25rem;
  7908. }
  7909. .list-group-item:last-child {
  7910. border-bottom-right-radius: 0.25rem;
  7911. border-bottom-left-radius: 0.25rem;
  7912. }
  7913. .list-group-item.disabled, .list-group-item:disabled {
  7914. color: #727679;
  7915. pointer-events: none;
  7916. background-color: #fff;
  7917. }
  7918. .list-group-item.active {
  7919. z-index: 2;
  7920. color: #fff;
  7921. background-color: #EE7800;
  7922. border-color: #EE7800;
  7923. }
  7924. .list-group-item + .list-group-item {
  7925. border-top-width: 0;
  7926. }
  7927. .list-group-item + .list-group-item.active {
  7928. margin-top: -1px;
  7929. border-top-width: 1px;
  7930. }
  7931. .list-group-horizontal {
  7932. -webkit-box-orient: horizontal;
  7933. -webkit-box-direction: normal;
  7934. -ms-flex-direction: row;
  7935. flex-direction: row;
  7936. }
  7937. .list-group-horizontal .list-group-item:first-child {
  7938. border-bottom-left-radius: 0.25rem;
  7939. border-top-right-radius: 0;
  7940. }
  7941. .list-group-horizontal .list-group-item:last-child {
  7942. border-top-right-radius: 0.25rem;
  7943. border-bottom-left-radius: 0;
  7944. }
  7945. .list-group-horizontal .list-group-item.active {
  7946. margin-top: 0;
  7947. }
  7948. .list-group-horizontal .list-group-item + .list-group-item {
  7949. border-top-width: 1px;
  7950. border-left-width: 0;
  7951. }
  7952. .list-group-horizontal .list-group-item + .list-group-item.active {
  7953. margin-left: -1px;
  7954. border-left-width: 1px;
  7955. }
  7956. @media (min-width: 576px) {
  7957. .list-group-horizontal-sm {
  7958. -webkit-box-orient: horizontal;
  7959. -webkit-box-direction: normal;
  7960. -ms-flex-direction: row;
  7961. flex-direction: row;
  7962. }
  7963. .list-group-horizontal-sm .list-group-item:first-child {
  7964. border-bottom-left-radius: 0.25rem;
  7965. border-top-right-radius: 0;
  7966. }
  7967. .list-group-horizontal-sm .list-group-item:last-child {
  7968. border-top-right-radius: 0.25rem;
  7969. border-bottom-left-radius: 0;
  7970. }
  7971. .list-group-horizontal-sm .list-group-item.active {
  7972. margin-top: 0;
  7973. }
  7974. .list-group-horizontal-sm .list-group-item + .list-group-item {
  7975. border-top-width: 1px;
  7976. border-left-width: 0;
  7977. }
  7978. .list-group-horizontal-sm .list-group-item + .list-group-item.active {
  7979. margin-left: -1px;
  7980. border-left-width: 1px;
  7981. }
  7982. }
  7983. @media (min-width: 768px) {
  7984. .list-group-horizontal-md {
  7985. -webkit-box-orient: horizontal;
  7986. -webkit-box-direction: normal;
  7987. -ms-flex-direction: row;
  7988. flex-direction: row;
  7989. }
  7990. .list-group-horizontal-md .list-group-item:first-child {
  7991. border-bottom-left-radius: 0.25rem;
  7992. border-top-right-radius: 0;
  7993. }
  7994. .list-group-horizontal-md .list-group-item:last-child {
  7995. border-top-right-radius: 0.25rem;
  7996. border-bottom-left-radius: 0;
  7997. }
  7998. .list-group-horizontal-md .list-group-item.active {
  7999. margin-top: 0;
  8000. }
  8001. .list-group-horizontal-md .list-group-item + .list-group-item {
  8002. border-top-width: 1px;
  8003. border-left-width: 0;
  8004. }
  8005. .list-group-horizontal-md .list-group-item + .list-group-item.active {
  8006. margin-left: -1px;
  8007. border-left-width: 1px;
  8008. }
  8009. }
  8010. @media (min-width: 992px) {
  8011. .list-group-horizontal-lg {
  8012. -webkit-box-orient: horizontal;
  8013. -webkit-box-direction: normal;
  8014. -ms-flex-direction: row;
  8015. flex-direction: row;
  8016. }
  8017. .list-group-horizontal-lg .list-group-item:first-child {
  8018. border-bottom-left-radius: 0.25rem;
  8019. border-top-right-radius: 0;
  8020. }
  8021. .list-group-horizontal-lg .list-group-item:last-child {
  8022. border-top-right-radius: 0.25rem;
  8023. border-bottom-left-radius: 0;
  8024. }
  8025. .list-group-horizontal-lg .list-group-item.active {
  8026. margin-top: 0;
  8027. }
  8028. .list-group-horizontal-lg .list-group-item + .list-group-item {
  8029. border-top-width: 1px;
  8030. border-left-width: 0;
  8031. }
  8032. .list-group-horizontal-lg .list-group-item + .list-group-item.active {
  8033. margin-left: -1px;
  8034. border-left-width: 1px;
  8035. }
  8036. }
  8037. @media (min-width: 1200px) {
  8038. .list-group-horizontal-xl {
  8039. -webkit-box-orient: horizontal;
  8040. -webkit-box-direction: normal;
  8041. -ms-flex-direction: row;
  8042. flex-direction: row;
  8043. }
  8044. .list-group-horizontal-xl .list-group-item:first-child {
  8045. border-bottom-left-radius: 0.25rem;
  8046. border-top-right-radius: 0;
  8047. }
  8048. .list-group-horizontal-xl .list-group-item:last-child {
  8049. border-top-right-radius: 0.25rem;
  8050. border-bottom-left-radius: 0;
  8051. }
  8052. .list-group-horizontal-xl .list-group-item.active {
  8053. margin-top: 0;
  8054. }
  8055. .list-group-horizontal-xl .list-group-item + .list-group-item {
  8056. border-top-width: 1px;
  8057. border-left-width: 0;
  8058. }
  8059. .list-group-horizontal-xl .list-group-item + .list-group-item.active {
  8060. margin-left: -1px;
  8061. border-left-width: 1px;
  8062. }
  8063. }
  8064. .list-group-flush .list-group-item {
  8065. border-right-width: 0;
  8066. border-left-width: 0;
  8067. border-radius: 0;
  8068. }
  8069. .list-group-flush .list-group-item:first-child {
  8070. border-top-width: 0;
  8071. }
  8072. .list-group-flush:last-child .list-group-item:last-child {
  8073. border-bottom-width: 0;
  8074. }
  8075. .list-group-item-primary {
  8076. color: #7c3e00;
  8077. background-color: #fad9b8;
  8078. }
  8079. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  8080. color: #7c3e00;
  8081. background-color: #f8cca0;
  8082. }
  8083. .list-group-item-primary.list-group-item-action.active {
  8084. color: #fff;
  8085. background-color: #7c3e00;
  8086. border-color: #7c3e00;
  8087. }
  8088. .list-group-item-secondary {
  8089. color: #585858;
  8090. background-color: #e7e7e7;
  8091. }
  8092. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  8093. color: #585858;
  8094. background-color: #dadada;
  8095. }
  8096. .list-group-item-secondary.list-group-item-action.active {
  8097. color: #fff;
  8098. background-color: #585858;
  8099. border-color: #585858;
  8100. }
  8101. .list-group-item-success {
  8102. color: #155724;
  8103. background-color: #c3e6cb;
  8104. }
  8105. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  8106. color: #155724;
  8107. background-color: #b1dfbb;
  8108. }
  8109. .list-group-item-success.list-group-item-action.active {
  8110. color: #fff;
  8111. background-color: #155724;
  8112. border-color: #155724;
  8113. }
  8114. .list-group-item-info {
  8115. color: #0c5460;
  8116. background-color: #bee5eb;
  8117. }
  8118. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  8119. color: #0c5460;
  8120. background-color: #abdde5;
  8121. }
  8122. .list-group-item-info.list-group-item-action.active {
  8123. color: #fff;
  8124. background-color: #0c5460;
  8125. border-color: #0c5460;
  8126. }
  8127. .list-group-item-warning {
  8128. color: #856404;
  8129. background-color: #ffeeba;
  8130. }
  8131. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  8132. color: #856404;
  8133. background-color: #ffe8a1;
  8134. }
  8135. .list-group-item-warning.list-group-item-action.active {
  8136. color: #fff;
  8137. background-color: #856404;
  8138. border-color: #856404;
  8139. }
  8140. .list-group-item-danger {
  8141. color: #721c24;
  8142. background-color: #f5c6cb;
  8143. }
  8144. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  8145. color: #721c24;
  8146. background-color: #f1b0b7;
  8147. }
  8148. .list-group-item-danger.list-group-item-action.active {
  8149. color: #fff;
  8150. background-color: #721c24;
  8151. border-color: #721c24;
  8152. }
  8153. .list-group-item-light {
  8154. color: #818182;
  8155. background-color: #fdfdfe;
  8156. }
  8157. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  8158. color: #818182;
  8159. background-color: #ececf6;
  8160. }
  8161. .list-group-item-light.list-group-item-action.active {
  8162. color: #fff;
  8163. background-color: #818182;
  8164. border-color: #818182;
  8165. }
  8166. .list-group-item-dark {
  8167. color: #1b1e21;
  8168. background-color: #c6c8ca;
  8169. }
  8170. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  8171. color: #1b1e21;
  8172. background-color: #b9bbbe;
  8173. }
  8174. .list-group-item-dark.list-group-item-action.active {
  8175. color: #fff;
  8176. background-color: #1b1e21;
  8177. border-color: #1b1e21;
  8178. }
  8179. .close {
  8180. float: right;
  8181. font-size: 1.5rem;
  8182. font-weight: 700;
  8183. line-height: 1;
  8184. color: #000;
  8185. text-shadow: 0 1px 0 #fff;
  8186. opacity: .5;
  8187. }
  8188. .close:hover {
  8189. color: #000;
  8190. text-decoration: none;
  8191. }
  8192. .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  8193. opacity: .75;
  8194. }
  8195. button.close {
  8196. padding: 0;
  8197. background-color: transparent;
  8198. border: 0;
  8199. -webkit-appearance: none;
  8200. -moz-appearance: none;
  8201. appearance: none;
  8202. }
  8203. a.close.disabled {
  8204. pointer-events: none;
  8205. }
  8206. .toast {
  8207. max-width: 350px;
  8208. overflow: hidden;
  8209. font-size: 0.875rem;
  8210. background-color: rgba(255, 255, 255, 0.85);
  8211. background-clip: padding-box;
  8212. border: 1px solid rgba(0, 0, 0, 0.1);
  8213. -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  8214. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  8215. -webkit-backdrop-filter: blur(10px);
  8216. backdrop-filter: blur(10px);
  8217. opacity: 0;
  8218. border-radius: 0.25rem;
  8219. }
  8220. .toast:not(:last-child) {
  8221. margin-bottom: 0.75rem;
  8222. }
  8223. .toast.showing {
  8224. opacity: 1;
  8225. }
  8226. .toast.show {
  8227. display: block;
  8228. opacity: 1;
  8229. }
  8230. .toast.hide {
  8231. display: none;
  8232. }
  8233. .toast-header {
  8234. display: -webkit-box;
  8235. display: -ms-flexbox;
  8236. display: flex;
  8237. -webkit-box-align: center;
  8238. -ms-flex-align: center;
  8239. align-items: center;
  8240. padding: 0.25rem 0.75rem;
  8241. color: #727679;
  8242. background-color: rgba(255, 255, 255, 0.85);
  8243. background-clip: padding-box;
  8244. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  8245. }
  8246. .toast-body {
  8247. padding: 0.75rem;
  8248. }
  8249. .modal-open {
  8250. overflow: hidden;
  8251. }
  8252. .modal-open .modal {
  8253. overflow-x: hidden;
  8254. overflow-y: auto;
  8255. }
  8256. .modal {
  8257. position: fixed;
  8258. top: 0;
  8259. left: 0;
  8260. z-index: 1050;
  8261. display: none;
  8262. width: 100%;
  8263. height: 100%;
  8264. overflow: hidden;
  8265. outline: 0;
  8266. }
  8267. .modal-dialog {
  8268. position: relative;
  8269. width: auto;
  8270. margin: 0.5rem;
  8271. pointer-events: none;
  8272. }
  8273. .modal.fade .modal-dialog {
  8274. -webkit-transition: -webkit-transform 0.3s ease-out;
  8275. transition: -webkit-transform 0.3s ease-out;
  8276. transition: transform 0.3s ease-out;
  8277. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  8278. -webkit-transform: translate(0, -50px);
  8279. transform: translate(0, -50px);
  8280. }
  8281. @media (prefers-reduced-motion: reduce) {
  8282. .modal.fade .modal-dialog {
  8283. -webkit-transition: none;
  8284. transition: none;
  8285. }
  8286. }
  8287. .modal.show .modal-dialog {
  8288. -webkit-transform: none;
  8289. transform: none;
  8290. }
  8291. .modal.modal-static .modal-dialog {
  8292. -webkit-transform: scale(1.02);
  8293. transform: scale(1.02);
  8294. }
  8295. .modal-dialog-scrollable {
  8296. display: -webkit-box;
  8297. display: -ms-flexbox;
  8298. display: flex;
  8299. max-height: calc(100% - 1rem);
  8300. }
  8301. .modal-dialog-scrollable .modal-content {
  8302. max-height: calc(100vh - 1rem);
  8303. overflow: hidden;
  8304. }
  8305. .modal-dialog-scrollable .modal-header,
  8306. .modal-dialog-scrollable .modal-footer {
  8307. -ms-flex-negative: 0;
  8308. flex-shrink: 0;
  8309. }
  8310. .modal-dialog-scrollable .modal-body {
  8311. overflow-y: auto;
  8312. }
  8313. .modal-dialog-centered {
  8314. display: -webkit-box;
  8315. display: -ms-flexbox;
  8316. display: flex;
  8317. -webkit-box-align: center;
  8318. -ms-flex-align: center;
  8319. align-items: center;
  8320. min-height: calc(100% - 1rem);
  8321. }
  8322. .modal-dialog-centered::before {
  8323. display: block;
  8324. height: calc(100vh - 1rem);
  8325. content: "";
  8326. }
  8327. .modal-dialog-centered.modal-dialog-scrollable {
  8328. -webkit-box-orient: vertical;
  8329. -webkit-box-direction: normal;
  8330. -ms-flex-direction: column;
  8331. flex-direction: column;
  8332. -webkit-box-pack: center;
  8333. -ms-flex-pack: center;
  8334. justify-content: center;
  8335. height: 100%;
  8336. }
  8337. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  8338. max-height: none;
  8339. }
  8340. .modal-dialog-centered.modal-dialog-scrollable::before {
  8341. content: none;
  8342. }
  8343. .modal-content {
  8344. position: relative;
  8345. display: -webkit-box;
  8346. display: -ms-flexbox;
  8347. display: flex;
  8348. -webkit-box-orient: vertical;
  8349. -webkit-box-direction: normal;
  8350. -ms-flex-direction: column;
  8351. flex-direction: column;
  8352. width: 100%;
  8353. pointer-events: auto;
  8354. background-color: #fff;
  8355. background-clip: padding-box;
  8356. border: 1px solid rgba(0, 0, 0, 0.2);
  8357. border-radius: 0.3rem;
  8358. outline: 0;
  8359. }
  8360. .modal-backdrop {
  8361. position: fixed;
  8362. top: 0;
  8363. left: 0;
  8364. z-index: 1040;
  8365. width: 100vw;
  8366. height: 100vh;
  8367. background-color: #000;
  8368. }
  8369. .modal-backdrop.fade {
  8370. opacity: 0;
  8371. }
  8372. .modal-backdrop.show {
  8373. opacity: 0.5;
  8374. }
  8375. .modal-header {
  8376. display: -webkit-box;
  8377. display: -ms-flexbox;
  8378. display: flex;
  8379. -webkit-box-align: start;
  8380. -ms-flex-align: start;
  8381. align-items: flex-start;
  8382. -webkit-box-pack: justify;
  8383. -ms-flex-pack: justify;
  8384. justify-content: space-between;
  8385. padding: 1rem 1rem;
  8386. border-bottom: 1px solid #dee2e6;
  8387. border-top-left-radius: calc(0.3rem - 1px);
  8388. border-top-right-radius: calc(0.3rem - 1px);
  8389. }
  8390. .modal-header .close {
  8391. padding: 1rem 1rem;
  8392. margin: -1rem -1rem -1rem auto;
  8393. }
  8394. .modal-title {
  8395. margin-bottom: 0;
  8396. line-height: 1.5;
  8397. }
  8398. .modal-body {
  8399. position: relative;
  8400. -webkit-box-flex: 1;
  8401. -ms-flex: 1 1 auto;
  8402. flex: 1 1 auto;
  8403. padding: 1rem;
  8404. }
  8405. .modal-footer {
  8406. display: -webkit-box;
  8407. display: -ms-flexbox;
  8408. display: flex;
  8409. -ms-flex-wrap: wrap;
  8410. flex-wrap: wrap;
  8411. -webkit-box-align: center;
  8412. -ms-flex-align: center;
  8413. align-items: center;
  8414. -webkit-box-pack: end;
  8415. -ms-flex-pack: end;
  8416. justify-content: flex-end;
  8417. padding: 0.75rem;
  8418. border-top: 1px solid #dee2e6;
  8419. border-bottom-right-radius: calc(0.3rem - 1px);
  8420. border-bottom-left-radius: calc(0.3rem - 1px);
  8421. }
  8422. .modal-footer > * {
  8423. margin: 0.25rem;
  8424. }
  8425. .modal-scrollbar-measure {
  8426. position: absolute;
  8427. top: -9999px;
  8428. width: 50px;
  8429. height: 50px;
  8430. overflow: scroll;
  8431. }
  8432. @media (min-width: 576px) {
  8433. .modal-dialog {
  8434. max-width: 500px;
  8435. margin: 1.75rem auto;
  8436. }
  8437. .modal-dialog-scrollable {
  8438. max-height: calc(100% - 3.5rem);
  8439. }
  8440. .modal-dialog-scrollable .modal-content {
  8441. max-height: calc(100vh - 3.5rem);
  8442. }
  8443. .modal-dialog-centered {
  8444. min-height: calc(100% - 3.5rem);
  8445. }
  8446. .modal-dialog-centered::before {
  8447. height: calc(100vh - 3.5rem);
  8448. }
  8449. .modal-sm {
  8450. max-width: 300px;
  8451. }
  8452. }
  8453. @media (min-width: 992px) {
  8454. .modal-lg,
  8455. .modal-xl {
  8456. max-width: 800px;
  8457. }
  8458. }
  8459. @media (min-width: 1200px) {
  8460. .modal-xl {
  8461. max-width: 1140px;
  8462. }
  8463. }
  8464. .carousel {
  8465. position: relative;
  8466. }
  8467. .carousel.pointer-event {
  8468. -ms-touch-action: pan-y;
  8469. touch-action: pan-y;
  8470. }
  8471. .carousel-inner {
  8472. position: relative;
  8473. width: 100%;
  8474. overflow: hidden;
  8475. }
  8476. .carousel-inner::after {
  8477. display: block;
  8478. clear: both;
  8479. content: "";
  8480. }
  8481. .carousel-item {
  8482. position: relative;
  8483. display: none;
  8484. float: left;
  8485. width: 100%;
  8486. margin-right: -100%;
  8487. -webkit-backface-visibility: hidden;
  8488. backface-visibility: hidden;
  8489. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  8490. transition: -webkit-transform 0.6s ease-in-out;
  8491. transition: transform 0.6s ease-in-out;
  8492. transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  8493. }
  8494. @media (prefers-reduced-motion: reduce) {
  8495. .carousel-item {
  8496. -webkit-transition: none;
  8497. transition: none;
  8498. }
  8499. }
  8500. .carousel-item.active,
  8501. .carousel-item-next,
  8502. .carousel-item-prev {
  8503. display: block;
  8504. }
  8505. .carousel-item-next:not(.carousel-item-left),
  8506. .active.carousel-item-right {
  8507. -webkit-transform: translateX(100%);
  8508. transform: translateX(100%);
  8509. }
  8510. .carousel-item-prev:not(.carousel-item-right),
  8511. .active.carousel-item-left {
  8512. -webkit-transform: translateX(-100%);
  8513. transform: translateX(-100%);
  8514. }
  8515. .carousel-fade .carousel-item {
  8516. opacity: 0;
  8517. -webkit-transition-property: opacity;
  8518. transition-property: opacity;
  8519. -webkit-transform: none;
  8520. transform: none;
  8521. }
  8522. .carousel-fade .carousel-item.active,
  8523. .carousel-fade .carousel-item-next.carousel-item-left,
  8524. .carousel-fade .carousel-item-prev.carousel-item-right {
  8525. z-index: 1;
  8526. opacity: 1;
  8527. }
  8528. .carousel-fade .active.carousel-item-left,
  8529. .carousel-fade .active.carousel-item-right {
  8530. z-index: 0;
  8531. opacity: 0;
  8532. -webkit-transition: opacity 0s 0.6s;
  8533. transition: opacity 0s 0.6s;
  8534. }
  8535. @media (prefers-reduced-motion: reduce) {
  8536. .carousel-fade .active.carousel-item-left,
  8537. .carousel-fade .active.carousel-item-right {
  8538. -webkit-transition: none;
  8539. transition: none;
  8540. }
  8541. }
  8542. .carousel-control-prev,
  8543. .carousel-control-next {
  8544. position: absolute;
  8545. top: 0;
  8546. bottom: 0;
  8547. z-index: 1;
  8548. display: -webkit-box;
  8549. display: -ms-flexbox;
  8550. display: flex;
  8551. -webkit-box-align: center;
  8552. -ms-flex-align: center;
  8553. align-items: center;
  8554. -webkit-box-pack: center;
  8555. -ms-flex-pack: center;
  8556. justify-content: center;
  8557. width: 15%;
  8558. color: #fff;
  8559. text-align: center;
  8560. opacity: 0.5;
  8561. -webkit-transition: opacity 0.15s ease;
  8562. transition: opacity 0.15s ease;
  8563. }
  8564. @media (prefers-reduced-motion: reduce) {
  8565. .carousel-control-prev,
  8566. .carousel-control-next {
  8567. -webkit-transition: none;
  8568. transition: none;
  8569. }
  8570. }
  8571. .carousel-control-prev:hover, .carousel-control-prev:focus,
  8572. .carousel-control-next:hover,
  8573. .carousel-control-next:focus {
  8574. color: #fff;
  8575. text-decoration: none;
  8576. outline: 0;
  8577. opacity: 0.9;
  8578. }
  8579. .carousel-control-prev {
  8580. left: 0;
  8581. }
  8582. .carousel-control-next {
  8583. right: 0;
  8584. }
  8585. .carousel-control-prev-icon,
  8586. .carousel-control-next-icon {
  8587. display: inline-block;
  8588. width: 20px;
  8589. height: 20px;
  8590. background: no-repeat 50% / 100% 100%;
  8591. }
  8592. .carousel-control-prev-icon {
  8593. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  8594. }
  8595. .carousel-control-next-icon {
  8596. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  8597. }
  8598. .carousel-indicators {
  8599. position: absolute;
  8600. right: 0;
  8601. bottom: 0;
  8602. left: 0;
  8603. z-index: 15;
  8604. display: -webkit-box;
  8605. display: -ms-flexbox;
  8606. display: flex;
  8607. -webkit-box-pack: center;
  8608. -ms-flex-pack: center;
  8609. justify-content: center;
  8610. padding-left: 0;
  8611. margin-right: 15%;
  8612. margin-left: 15%;
  8613. list-style: none;
  8614. }
  8615. .carousel-indicators li {
  8616. -webkit-box-sizing: content-box;
  8617. box-sizing: content-box;
  8618. -webkit-box-flex: 0;
  8619. -ms-flex: 0 1 auto;
  8620. flex: 0 1 auto;
  8621. width: 30px;
  8622. height: 3px;
  8623. margin-right: 3px;
  8624. margin-left: 3px;
  8625. text-indent: -999px;
  8626. cursor: pointer;
  8627. background-color: #fff;
  8628. background-clip: padding-box;
  8629. border-top: 10px solid transparent;
  8630. border-bottom: 10px solid transparent;
  8631. opacity: .5;
  8632. -webkit-transition: opacity 0.6s ease;
  8633. transition: opacity 0.6s ease;
  8634. }
  8635. @media (prefers-reduced-motion: reduce) {
  8636. .carousel-indicators li {
  8637. -webkit-transition: none;
  8638. transition: none;
  8639. }
  8640. }
  8641. .carousel-indicators .active {
  8642. opacity: 1;
  8643. }
  8644. .carousel-caption {
  8645. position: absolute;
  8646. right: 15%;
  8647. bottom: 20px;
  8648. left: 15%;
  8649. z-index: 10;
  8650. padding-top: 20px;
  8651. padding-bottom: 20px;
  8652. color: #fff;
  8653. text-align: center;
  8654. }
  8655. @-webkit-keyframes spinner-border {
  8656. to {
  8657. -webkit-transform: rotate(360deg);
  8658. transform: rotate(360deg);
  8659. }
  8660. }
  8661. @keyframes spinner-border {
  8662. to {
  8663. -webkit-transform: rotate(360deg);
  8664. transform: rotate(360deg);
  8665. }
  8666. }
  8667. .spinner-border {
  8668. display: inline-block;
  8669. width: 2rem;
  8670. height: 2rem;
  8671. vertical-align: text-bottom;
  8672. border: 0.25em solid currentColor;
  8673. border-right-color: transparent;
  8674. border-radius: 50%;
  8675. -webkit-animation: spinner-border .75s linear infinite;
  8676. animation: spinner-border .75s linear infinite;
  8677. }
  8678. .spinner-border-sm {
  8679. width: 1rem;
  8680. height: 1rem;
  8681. border-width: 0.2em;
  8682. }
  8683. @-webkit-keyframes spinner-grow {
  8684. 0% {
  8685. -webkit-transform: scale(0);
  8686. transform: scale(0);
  8687. }
  8688. 50% {
  8689. opacity: 1;
  8690. }
  8691. }
  8692. @keyframes spinner-grow {
  8693. 0% {
  8694. -webkit-transform: scale(0);
  8695. transform: scale(0);
  8696. }
  8697. 50% {
  8698. opacity: 1;
  8699. }
  8700. }
  8701. .spinner-grow {
  8702. display: inline-block;
  8703. width: 2rem;
  8704. height: 2rem;
  8705. vertical-align: text-bottom;
  8706. background-color: currentColor;
  8707. border-radius: 50%;
  8708. opacity: 0;
  8709. -webkit-animation: spinner-grow .75s linear infinite;
  8710. animation: spinner-grow .75s linear infinite;
  8711. }
  8712. .spinner-grow-sm {
  8713. width: 1rem;
  8714. height: 1rem;
  8715. }
  8716. .custom-control {
  8717. position: relative;
  8718. display: block;
  8719. min-height: 1.5rem;
  8720. padding-left: 1.5rem;
  8721. }
  8722. .custom-control-inline {
  8723. display: -webkit-inline-box;
  8724. display: -ms-inline-flexbox;
  8725. display: inline-flex;
  8726. margin-right: 1rem;
  8727. }
  8728. .custom-control-input {
  8729. position: absolute;
  8730. left: 0;
  8731. z-index: -1;
  8732. width: 1rem;
  8733. height: 1.25rem;
  8734. opacity: 0;
  8735. }
  8736. .custom-control-input:checked ~ .custom-control-label::before {
  8737. color: #fff;
  8738. border-color: #EE7800;
  8739. background-color: #EE7800;
  8740. }
  8741. .custom-control-input:focus ~ .custom-control-label::before {
  8742. -webkit-box-shadow: transparent;
  8743. box-shadow: transparent;
  8744. }
  8745. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  8746. border-color: #AAA;
  8747. }
  8748. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  8749. color: #fff;
  8750. background-color: #ffd1a2;
  8751. border-color: #ffd1a2;
  8752. }
  8753. .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  8754. color: #727679;
  8755. }
  8756. .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  8757. background-color: #e9ecef;
  8758. }
  8759. .custom-control-label {
  8760. position: relative;
  8761. margin-bottom: 0;
  8762. vertical-align: top;
  8763. }
  8764. .custom-control-label::before {
  8765. position: absolute;
  8766. top: 0.25rem;
  8767. left: -1.5rem;
  8768. display: block;
  8769. width: 1rem;
  8770. height: 1rem;
  8771. pointer-events: none;
  8772. content: "";
  8773. background-color: #fff;
  8774. border: #adb5bd solid 2px;
  8775. }
  8776. .custom-control-label::after {
  8777. position: absolute;
  8778. top: 0.25rem;
  8779. left: -1.5rem;
  8780. display: block;
  8781. width: 1rem;
  8782. height: 1rem;
  8783. content: "";
  8784. background: no-repeat 50% / 50% 50%;
  8785. }
  8786. .custom-checkbox .custom-control-label::before {
  8787. border-radius: 0.25rem;
  8788. }
  8789. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  8790. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  8791. }
  8792. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  8793. border-color: #EE7800;
  8794. background-color: #EE7800;
  8795. }
  8796. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  8797. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  8798. }
  8799. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  8800. background-color: rgba(238, 120, 0, 0.5);
  8801. }
  8802. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  8803. background-color: rgba(238, 120, 0, 0.5);
  8804. }
  8805. .custom-radio .custom-control-label::before {
  8806. border-radius: 50%;
  8807. }
  8808. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  8809. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  8810. }
  8811. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  8812. background-color: rgba(238, 120, 0, 0.5);
  8813. }
  8814. .custom-switch {
  8815. padding-left: 2.25rem;
  8816. }
  8817. .custom-switch .custom-control-label::before {
  8818. left: -2.25rem;
  8819. width: 1.75rem;
  8820. pointer-events: all;
  8821. border-radius: 0.5rem;
  8822. }
  8823. .custom-switch .custom-control-label::after {
  8824. top: calc(0.25rem + 4px);
  8825. left: calc(-2.25rem + 4px);
  8826. width: calc(1rem - 8px);
  8827. height: calc(1rem - 8px);
  8828. background-color: #adb5bd;
  8829. border-radius: 0.5rem;
  8830. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  8831. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  8832. transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  8833. transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  8834. }
  8835. @media (prefers-reduced-motion: reduce) {
  8836. .custom-switch .custom-control-label::after {
  8837. -webkit-transition: none;
  8838. transition: none;
  8839. }
  8840. }
  8841. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  8842. background-color: #fff;
  8843. -webkit-transform: translateX(0.75rem);
  8844. transform: translateX(0.75rem);
  8845. }
  8846. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  8847. background-color: rgba(238, 120, 0, 0.5);
  8848. }
  8849. .custom-select {
  8850. display: inline-block;
  8851. width: 100%;
  8852. height: calc(1.5em + 0.75rem + 4px);
  8853. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  8854. font-size: 1rem;
  8855. font-weight: 400;
  8856. line-height: 1.5;
  8857. color: #495057;
  8858. vertical-align: middle;
  8859. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  8860. border: 2px solid #ced4da;
  8861. border-radius: 0.25rem;
  8862. -webkit-appearance: none;
  8863. -moz-appearance: none;
  8864. appearance: none;
  8865. }
  8866. .custom-select:focus {
  8867. border-color: #ffb76f;
  8868. outline: 0;
  8869. -webkit-box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.25);
  8870. box-shadow: 0 0 0 0.2rem rgba(238, 120, 0, 0.25);
  8871. }
  8872. .custom-select:focus::-ms-value {
  8873. color: #495057;
  8874. background-color: #fff;
  8875. }
  8876. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  8877. height: auto;
  8878. padding-right: 0.75rem;
  8879. background-image: none;
  8880. }
  8881. .custom-select:disabled {
  8882. color: #727679;
  8883. background-color: #e9ecef;
  8884. }
  8885. .custom-select::-ms-expand {
  8886. display: none;
  8887. }
  8888. .custom-select:-moz-focusring {
  8889. color: transparent;
  8890. text-shadow: 0 0 0 #495057;
  8891. }
  8892. .custom-select-sm {
  8893. height: calc(1.5em + 0.5rem + 4px);
  8894. padding-top: 0.25rem;
  8895. padding-bottom: 0.25rem;
  8896. padding-left: 0.5rem;
  8897. font-size: 1rem;
  8898. }
  8899. .custom-select-lg {
  8900. height: calc(1.5em + 2rem + 2px);
  8901. padding-top: 0.5rem;
  8902. padding-bottom: 0.5rem;
  8903. padding-left: 2rem;
  8904. font-size: 0.875rem;
  8905. }
  8906. .custom-file {
  8907. position: relative;
  8908. display: inline-block;
  8909. width: 100%;
  8910. height: calc(1.5em + 0.75rem + 4px);
  8911. margin-bottom: 0;
  8912. }
  8913. .custom-file-input {
  8914. position: relative;
  8915. z-index: 2;
  8916. width: 100%;
  8917. height: calc(1.5em + 0.75rem + 4px);
  8918. margin: 0;
  8919. opacity: 0;
  8920. }
  8921. .custom-file-input:focus ~ .custom-file-label {
  8922. border-color: #ffb76f;
  8923. -webkit-box-shadow: transparent;
  8924. box-shadow: transparent;
  8925. }
  8926. .custom-file-input[disabled] ~ .custom-file-label,
  8927. .custom-file-input:disabled ~ .custom-file-label {
  8928. background-color: #e9ecef;
  8929. }
  8930. .custom-file-input:lang(en) ~ .custom-file-label::after {
  8931. content: "Browse";
  8932. }
  8933. .custom-file-input ~ .custom-file-label[data-browse]::after {
  8934. content: attr(data-browse);
  8935. }
  8936. .custom-file-label {
  8937. position: absolute;
  8938. top: 0;
  8939. right: 0;
  8940. left: 0;
  8941. z-index: 1;
  8942. height: calc(1.5em + 0.75rem + 4px);
  8943. padding: 0.375rem 0.75rem;
  8944. font-weight: 400;
  8945. line-height: 1.5;
  8946. color: #495057;
  8947. background-color: #fff;
  8948. border: 2px solid #ced4da;
  8949. border-radius: 0.25rem;
  8950. }
  8951. .custom-file-label::after {
  8952. position: absolute;
  8953. top: 0;
  8954. right: 0;
  8955. bottom: 0;
  8956. z-index: 3;
  8957. display: block;
  8958. height: calc(1.5em + 0.75rem);
  8959. padding: 0.375rem 0.75rem;
  8960. line-height: 1.5;
  8961. color: #495057;
  8962. content: "Browse";
  8963. background-color: #fff;
  8964. border-left: inherit;
  8965. border-radius: 0 0.25rem 0.25rem 0;
  8966. }
  8967. .custom-range {
  8968. width: 100%;
  8969. height: 1.4rem;
  8970. padding: 0;
  8971. background-color: transparent;
  8972. -webkit-appearance: none;
  8973. -moz-appearance: none;
  8974. appearance: none;
  8975. }
  8976. .custom-range:focus {
  8977. outline: none;
  8978. }
  8979. .custom-range:focus::-webkit-slider-thumb {
  8980. -webkit-box-shadow: 0 0 0 1px #fff, transparent;
  8981. box-shadow: 0 0 0 1px #fff, transparent;
  8982. }
  8983. .custom-range:focus::-moz-range-thumb {
  8984. box-shadow: 0 0 0 1px #fff, transparent;
  8985. }
  8986. .custom-range:focus::-ms-thumb {
  8987. box-shadow: 0 0 0 1px #fff, transparent;
  8988. }
  8989. .custom-range::-moz-focus-outer {
  8990. border: 0;
  8991. }
  8992. .custom-range::-webkit-slider-thumb {
  8993. width: 1rem;
  8994. height: 1rem;
  8995. margin-top: -0.25rem;
  8996. background-color: #EE7800;
  8997. border: 0;
  8998. border-radius: 1rem;
  8999. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9000. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9001. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  9002. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9003. -webkit-appearance: none;
  9004. appearance: none;
  9005. }
  9006. @media (prefers-reduced-motion: reduce) {
  9007. .custom-range::-webkit-slider-thumb {
  9008. -webkit-transition: none;
  9009. transition: none;
  9010. }
  9011. }
  9012. .custom-range::-webkit-slider-thumb:active {
  9013. background-color: #ffd1a2;
  9014. }
  9015. .custom-range::-webkit-slider-runnable-track {
  9016. width: 100%;
  9017. height: 0.5rem;
  9018. color: transparent;
  9019. cursor: pointer;
  9020. background-color: #dee2e6;
  9021. border-color: transparent;
  9022. border-radius: 1rem;
  9023. }
  9024. .custom-range::-moz-range-thumb {
  9025. width: 1rem;
  9026. height: 1rem;
  9027. background-color: #EE7800;
  9028. border: 0;
  9029. border-radius: 1rem;
  9030. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9031. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9032. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  9033. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9034. -moz-appearance: none;
  9035. appearance: none;
  9036. }
  9037. @media (prefers-reduced-motion: reduce) {
  9038. .custom-range::-moz-range-thumb {
  9039. -webkit-transition: none;
  9040. transition: none;
  9041. }
  9042. }
  9043. .custom-range::-moz-range-thumb:active {
  9044. background-color: #ffd1a2;
  9045. }
  9046. .custom-range::-moz-range-track {
  9047. width: 100%;
  9048. height: 0.5rem;
  9049. color: transparent;
  9050. cursor: pointer;
  9051. background-color: #dee2e6;
  9052. border-color: transparent;
  9053. border-radius: 1rem;
  9054. }
  9055. .custom-range::-ms-thumb {
  9056. width: 1rem;
  9057. height: 1rem;
  9058. margin-top: 0;
  9059. margin-right: 0.2rem;
  9060. margin-left: 0.2rem;
  9061. background-color: #EE7800;
  9062. border: 0;
  9063. border-radius: 1rem;
  9064. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9065. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9066. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  9067. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9068. appearance: none;
  9069. }
  9070. @media (prefers-reduced-motion: reduce) {
  9071. .custom-range::-ms-thumb {
  9072. -webkit-transition: none;
  9073. transition: none;
  9074. }
  9075. }
  9076. .custom-range::-ms-thumb:active {
  9077. background-color: #ffd1a2;
  9078. }
  9079. .custom-range::-ms-track {
  9080. width: 100%;
  9081. height: 0.5rem;
  9082. color: transparent;
  9083. cursor: pointer;
  9084. background-color: transparent;
  9085. border-color: transparent;
  9086. border-width: 0.5rem;
  9087. }
  9088. .custom-range::-ms-fill-lower {
  9089. background-color: #dee2e6;
  9090. border-radius: 1rem;
  9091. }
  9092. .custom-range::-ms-fill-upper {
  9093. margin-right: 15px;
  9094. background-color: #dee2e6;
  9095. border-radius: 1rem;
  9096. }
  9097. .custom-range:disabled::-webkit-slider-thumb {
  9098. background-color: #adb5bd;
  9099. }
  9100. .custom-range:disabled::-webkit-slider-runnable-track {
  9101. cursor: default;
  9102. }
  9103. .custom-range:disabled::-moz-range-thumb {
  9104. background-color: #adb5bd;
  9105. }
  9106. .custom-range:disabled::-moz-range-track {
  9107. cursor: default;
  9108. }
  9109. .custom-range:disabled::-ms-thumb {
  9110. background-color: #adb5bd;
  9111. }
  9112. .custom-control-label::before,
  9113. .custom-file-label,
  9114. .custom-select {
  9115. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9116. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9117. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  9118. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  9119. }
  9120. @media (prefers-reduced-motion: reduce) {
  9121. .custom-control-label::before,
  9122. .custom-file-label,
  9123. .custom-select {
  9124. -webkit-transition: none;
  9125. transition: none;
  9126. }
  9127. }
  9128. .popover {
  9129. position: absolute;
  9130. top: 0;
  9131. left: 0;
  9132. z-index: 1060;
  9133. display: block;
  9134. max-width: 276px;
  9135. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  9136. font-style: normal;
  9137. font-weight: 400;
  9138. line-height: 1.5;
  9139. text-align: left;
  9140. text-align: start;
  9141. text-decoration: none;
  9142. text-shadow: none;
  9143. text-transform: none;
  9144. letter-spacing: normal;
  9145. word-break: normal;
  9146. word-spacing: normal;
  9147. white-space: normal;
  9148. line-break: auto;
  9149. font-size: 0.875rem;
  9150. word-wrap: break-word;
  9151. background-color: #fff;
  9152. background-clip: padding-box;
  9153. border: 1px solid rgba(0, 0, 0, 0.2);
  9154. border-radius: 0.3rem;
  9155. }
  9156. .popover .arrow {
  9157. position: absolute;
  9158. display: block;
  9159. width: 1rem;
  9160. height: 0.5rem;
  9161. margin: 0 0.3rem;
  9162. }
  9163. .popover .arrow::before, .popover .arrow::after {
  9164. position: absolute;
  9165. display: block;
  9166. content: "";
  9167. border-color: transparent;
  9168. border-style: solid;
  9169. }
  9170. .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  9171. margin-bottom: 0.5rem;
  9172. }
  9173. .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  9174. bottom: calc(-0.5rem - 1px);
  9175. }
  9176. .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  9177. bottom: 0;
  9178. border-width: 0.5rem 0.5rem 0;
  9179. border-top-color: rgba(0, 0, 0, 0.25);
  9180. }
  9181. .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  9182. bottom: 1px;
  9183. border-width: 0.5rem 0.5rem 0;
  9184. border-top-color: #fff;
  9185. }
  9186. .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  9187. margin-left: 0.5rem;
  9188. }
  9189. .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  9190. left: calc(-0.5rem - 1px);
  9191. width: 0.5rem;
  9192. height: 1rem;
  9193. margin: 0.3rem 0;
  9194. }
  9195. .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  9196. left: 0;
  9197. border-width: 0.5rem 0.5rem 0.5rem 0;
  9198. border-right-color: rgba(0, 0, 0, 0.25);
  9199. }
  9200. .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  9201. left: 1px;
  9202. border-width: 0.5rem 0.5rem 0.5rem 0;
  9203. border-right-color: #fff;
  9204. }
  9205. .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  9206. margin-top: 0.5rem;
  9207. }
  9208. .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  9209. top: calc(-0.5rem - 1px);
  9210. }
  9211. .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  9212. top: 0;
  9213. border-width: 0 0.5rem 0.5rem 0.5rem;
  9214. border-bottom-color: rgba(0, 0, 0, 0.25);
  9215. }
  9216. .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  9217. top: 1px;
  9218. border-width: 0 0.5rem 0.5rem 0.5rem;
  9219. border-bottom-color: #fff;
  9220. }
  9221. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  9222. position: absolute;
  9223. top: 0;
  9224. left: 50%;
  9225. display: block;
  9226. width: 1rem;
  9227. margin-left: -0.5rem;
  9228. content: "";
  9229. border-bottom: 1px solid #f7f7f7;
  9230. }
  9231. .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  9232. margin-right: 0.5rem;
  9233. }
  9234. .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  9235. right: calc(-0.5rem - 1px);
  9236. width: 0.5rem;
  9237. height: 1rem;
  9238. margin: 0.3rem 0;
  9239. }
  9240. .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  9241. right: 0;
  9242. border-width: 0.5rem 0 0.5rem 0.5rem;
  9243. border-left-color: rgba(0, 0, 0, 0.25);
  9244. }
  9245. .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  9246. right: 1px;
  9247. border-width: 0.5rem 0 0.5rem 0.5rem;
  9248. border-left-color: #fff;
  9249. }
  9250. .popover-header {
  9251. padding: 0.5rem 0.75rem;
  9252. margin-bottom: 0;
  9253. font-size: 1rem;
  9254. background-color: #f7f7f7;
  9255. border-bottom: 1px solid #ebebeb;
  9256. border-top-left-radius: calc(0.3rem - 1px);
  9257. border-top-right-radius: calc(0.3rem - 1px);
  9258. }
  9259. .popover-header:empty {
  9260. display: none;
  9261. }
  9262. .popover-body {
  9263. padding: 0.5rem 0.75rem;
  9264. color: #212529;
  9265. }
  9266. @-webkit-keyframes progress-bar-stripes {
  9267. from {
  9268. background-position: 1rem 0;
  9269. }
  9270. to {
  9271. background-position: 0 0;
  9272. }
  9273. }
  9274. @keyframes progress-bar-stripes {
  9275. from {
  9276. background-position: 1rem 0;
  9277. }
  9278. to {
  9279. background-position: 0 0;
  9280. }
  9281. }
  9282. .progress {
  9283. display: -webkit-box;
  9284. display: -ms-flexbox;
  9285. display: flex;
  9286. height: 1rem;
  9287. overflow: hidden;
  9288. font-size: 0.75rem;
  9289. background-color: #e9ecef;
  9290. border-radius: 0.25rem;
  9291. }
  9292. .progress-bar {
  9293. display: -webkit-box;
  9294. display: -ms-flexbox;
  9295. display: flex;
  9296. -webkit-box-orient: vertical;
  9297. -webkit-box-direction: normal;
  9298. -ms-flex-direction: column;
  9299. flex-direction: column;
  9300. -webkit-box-pack: center;
  9301. -ms-flex-pack: center;
  9302. justify-content: center;
  9303. overflow: hidden;
  9304. color: #fff;
  9305. text-align: center;
  9306. white-space: nowrap;
  9307. background-color: #EE7800;
  9308. -webkit-transition: width 0.6s ease;
  9309. transition: width 0.6s ease;
  9310. }
  9311. @media (prefers-reduced-motion: reduce) {
  9312. .progress-bar {
  9313. -webkit-transition: none;
  9314. transition: none;
  9315. }
  9316. }
  9317. .progress-bar-striped {
  9318. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  9319. background-size: 1rem 1rem;
  9320. }
  9321. .progress-bar-animated {
  9322. -webkit-animation: progress-bar-stripes 1s linear infinite;
  9323. animation: progress-bar-stripes 1s linear infinite;
  9324. }
  9325. @media (prefers-reduced-motion: reduce) {
  9326. .progress-bar-animated {
  9327. -webkit-animation: none;
  9328. animation: none;
  9329. }
  9330. }
  9331. .navbar {
  9332. padding: 0 1rem;
  9333. }
  9334. .navbar.navbar-member {
  9335. padding: 0 1.5rem;
  9336. background-color: #F5F5F5;
  9337. -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  9338. box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
  9339. }
  9340. .navbar .navbar-nav .nav-item {
  9341. text-align: center;
  9342. }
  9343. .navbar .navbar-nav .nav-link {
  9344. color: rgba(0, 0, 0, 0.87);
  9345. font-size: 1.17rem;
  9346. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9347. border-radius: 0;
  9348. background-color: transparent;
  9349. padding: 1.075rem 10px;
  9350. margin: 0 8px;
  9351. border-bottom: 4px solid transparent;
  9352. }
  9353. .navbar .navbar-nav .nav-link:hover {
  9354. cursor: pointer;
  9355. color: rgba(0, 0, 0, 0.87);
  9356. background-color: transparent;
  9357. border-bottom: 4px solid #EE7800;
  9358. }
  9359. .navbar .navbar-nav .nav-link.active {
  9360. background-color: transparent;
  9361. color: rgba(0, 0, 0, 0.87);
  9362. border-bottom: 4px solid #EE7800;
  9363. }
  9364. .navbar .navbar-nav .nav-link:active {
  9365. background-color: transparent;
  9366. color: rgba(0, 0, 0, 0.87);
  9367. border-bottom: 4px solid #EE7800;
  9368. }
  9369. .navbar .navbar-nav .dropdown-item {
  9370. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9371. }
  9372. .navbar .navbar-nav .dropdown-item:hover {
  9373. background-color: transparent;
  9374. }
  9375. .navbar .navbar-nav .dropdown-item:hover + .arrow-right {
  9376. color: #EE7800;
  9377. }
  9378. .navbar .navbar-nav .dropdown-item:active {
  9379. color: #EE7800;
  9380. background-color: transparent;
  9381. }
  9382. .navbar .nav-user a {
  9383. color: rgba(0, 0, 0, 0.87);
  9384. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9385. width: 100%;
  9386. height: 100%;
  9387. }
  9388. .navbar .nav-user a:hover {
  9389. color: #727679;
  9390. text-decoration: none;
  9391. }
  9392. .navbar .nav-user .dropdown-origin-width {
  9393. right: 0;
  9394. left: auto;
  9395. min-width: 7.6rem;
  9396. }
  9397. .navbar .nav-user img {
  9398. border-radius: 50%;
  9399. }
  9400. .navbar .nav-user .nav-user-login:hover {
  9401. cursor: pointer;
  9402. }
  9403. .navbar .nav-user .nav-user-wrapper.dropdown:hover .dropdown-menu {
  9404. display: block;
  9405. }
  9406. .navbar .dropdown-menu {
  9407. top: 95%;
  9408. }
  9409. .navbar .dropdown-menu.dropdown-level-width {
  9410. min-width: 13.5rem;
  9411. padding: 0;
  9412. }
  9413. .navbar .arrow-right {
  9414. padding: 0.5rem;
  9415. }
  9416. .dropdown-menu li {
  9417. position: relative;
  9418. }
  9419. .nav-item .thdmenu-block {
  9420. display: none;
  9421. position: absolute;
  9422. left: 99.5%;
  9423. top: -4px;
  9424. }
  9425. .dropdown-sub:hover > div,
  9426. .dropdown-sub:hover .submenu {
  9427. color: #EE7800;
  9428. }
  9429. .thdmenu-block > li:hover > .dropdown-item {
  9430. color: #EE7800;
  9431. }
  9432. .dropdown-menu > li:hover > .thdmenu-block {
  9433. display: block;
  9434. }
  9435. .navbar-nav > li:hover > .dropdown-menu {
  9436. display: block;
  9437. }
  9438. .footer {
  9439. background-color: #f4f4f4;
  9440. }
  9441. .footer .footer-content {
  9442. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9443. }
  9444. .footer .footer-content a {
  9445. color: #727679;
  9446. }
  9447. .footer .footer-content a:hover {
  9448. text-decoration: none;
  9449. }
  9450. .footer .footer-content .footer-content-tel {
  9451. font-size: 13px;
  9452. }
  9453. .footer .footer-media-wrapper:hover {
  9454. background-color: rgba(241, 241, 241, 0.082);
  9455. }
  9456. .footer .footer-media-wrapper:hover .footer-media {
  9457. color: #3b5998;
  9458. }
  9459. .footer .footer-block:nth-child(1), .footer .footer-block:nth-child(2) {
  9460. border-right: 1px solid #d1d2d3;
  9461. }
  9462. .footer .footer-note .footer-note-item:nth-child(1), .footer .footer-note .footer-note-item:nth-child(2) {
  9463. border-right: 1px solid #d1d2d3;
  9464. }
  9465. .footer .footer-divider-horizon {
  9466. width: 90%;
  9467. border-top: 1px solid #d1d2d3;
  9468. margin-left: auto;
  9469. margin-right: auto;
  9470. }
  9471. .footer .footer-divider-straight {
  9472. background-color: #d1d2d3;
  9473. width: 1px;
  9474. height: 36px;
  9475. }
  9476. .footer .footer-media-item {
  9477. display: block;
  9478. }
  9479. .footer .footer-media-item.after {
  9480. display: none;
  9481. }
  9482. .footer .footer-content a:hover .footer-media-item.before {
  9483. display: none;
  9484. }
  9485. .footer .footer-content a:hover .footer-media-item.after {
  9486. display: block;
  9487. }
  9488. .privacy {
  9489. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9490. }
  9491. .privacy .modal-body li {
  9492. font-size: 14px;
  9493. line-height: 22px;
  9494. }
  9495. .privacy .modal-body a:hover {
  9496. text-decoration: none;
  9497. }
  9498. .aboutUs {
  9499. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9500. }
  9501. .aboutUs .modal-content {
  9502. position: relative;
  9503. }
  9504. .aboutUs .modal-content button {
  9505. position: absolute;
  9506. right: 3%;
  9507. top: 2%;
  9508. }
  9509. .aboutUs .modal-content .aboutUs-title {
  9510. margin-left: auto;
  9511. margin-right: auto;
  9512. }
  9513. .aboutUs .modal-content .modal-body p {
  9514. font-size: 14px;
  9515. }
  9516. .item-card-none .item-card-none-text {
  9517. color: #43484C;
  9518. font-weight: bold;
  9519. }
  9520. .onlyCase {
  9521. margin-top: -4rem;
  9522. }
  9523. @media screen and (max-width: 576px) {
  9524. .onlyCase {
  9525. margin-top: -5rem;
  9526. }
  9527. }
  9528. h4.onlyCase-title {
  9529. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9530. }
  9531. .item-card {
  9532. display: -webkit-box;
  9533. display: -ms-flexbox;
  9534. display: flex;
  9535. -webkit-box-orient: vertical;
  9536. -webkit-box-direction: normal;
  9537. -ms-flex-direction: column;
  9538. flex-direction: column;
  9539. min-width: 0;
  9540. word-wrap: break-word;
  9541. position: relative;
  9542. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9543. -webkit-box-shadow: 0px 0px 3px rgba(66, 66, 66, 0.376);
  9544. box-shadow: 0px 0px 3px rgba(66, 66, 66, 0.376);
  9545. -moz-box-shadow: 0px 0px 3px rgba(66, 66, 66, 0.376);
  9546. -ms-box-shadow: 0px 0px 3px rgba(66, 66, 66, 0.376);
  9547. }
  9548. .item-card.item-card-onlyCase a {
  9549. color: #727679;
  9550. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9551. }
  9552. .item-card.item-card-onlyCase a:hover {
  9553. color: #727679;
  9554. text-decoration: none;
  9555. }
  9556. .item-card .item-card-img {
  9557. position: relative;
  9558. width: 100%;
  9559. height: 300px;
  9560. background-size: cover;
  9561. background-position: center center;
  9562. }
  9563. .item-card .item-card-img .play {
  9564. position: absolute;
  9565. top: 45%;
  9566. left: 45%;
  9567. width: 46px;
  9568. height: 46px;
  9569. -webkit-transition: all 300ms ease-in-out;
  9570. transition: all 300ms ease-in-out;
  9571. }
  9572. .item-card .item-card-product {
  9573. background-repeat: no-repeat;
  9574. background-position: center center;
  9575. }
  9576. .item-card .item-card-person {
  9577. width: 80px;
  9578. height: 80px;
  9579. border-radius: 50%;
  9580. background-size: cover;
  9581. -webkit-box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.15);
  9582. box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.15);
  9583. }
  9584. .item-card .item-card-position {
  9585. margin-top: -.5rem;
  9586. }
  9587. .item-card .item-card-video {
  9588. position: relative;
  9589. }
  9590. .item-card .item-card-video .item-card-videoBtn {
  9591. position: absolute;
  9592. top: 40%;
  9593. left: 43%;
  9594. }
  9595. .item-card .item-card-body {
  9596. position: relative;
  9597. }
  9598. .item-card .item-card-body a {
  9599. color: #000;
  9600. margin-right: 0.25rem;
  9601. }
  9602. .item-card .item-card-body a:hover, .item-card .item-card-body a:active {
  9603. color: #000;
  9604. text-decoration: none;
  9605. }
  9606. .item-card .item-card-body .item-card-company {
  9607. -webkit-box-orient: vertical;
  9608. box-orient: vertical;
  9609. font-size: 0.875rem;
  9610. overflow: hidden;
  9611. text-overflow: ellipsis;
  9612. display: -webkit-box;
  9613. -webkit-line-clamp: 1;
  9614. line-height: 1.25;
  9615. height: 1.09375rem;
  9616. }
  9617. .item-card .item-card-body .item-card-company + h6 {
  9618. -webkit-box-orient: vertical;
  9619. box-orient: vertical;
  9620. font-size: 0.875rem;
  9621. overflow: hidden;
  9622. text-overflow: ellipsis;
  9623. display: -webkit-box;
  9624. -webkit-line-clamp: 1;
  9625. line-height: 1.25;
  9626. height: 1.09375rem;
  9627. }
  9628. .item-card .item-card-body .item-card-job {
  9629. font-size: 14px;
  9630. }
  9631. .item-card .item-card-body .item-card-media {
  9632. display: none;
  9633. position: absolute;
  9634. bottom: calc(1rem + 48px);
  9635. left: 32%;
  9636. }
  9637. .item-card .item-card-body .item-card-text-video {
  9638. margin-top: -5px;
  9639. }
  9640. .item-card .item-card-body .item-card-text-tag {
  9641. font-size: 14px;
  9642. }
  9643. .item-card .item-card-body .item-card-text-tag.item-card-text-tag-column {
  9644. margin-top: -5px;
  9645. display: -webkit-box;
  9646. -webkit-box-orient: vertical;
  9647. box-orient: vertical;
  9648. height: calc(14px * 1.5 * 1.39);
  9649. }
  9650. .item-card .item-card-body .tag-item {
  9651. word-break: break-all;
  9652. }
  9653. .item-card .item-card-body .tag-item:hover {
  9654. color: #EE7800;
  9655. }
  9656. .item-card .item-card-body .item-card-text-date {
  9657. color: #c3c3c3;
  9658. font-size: 12px;
  9659. }
  9660. .item-card .item-card-body .item-card-title {
  9661. font-size: 18px;
  9662. -webkit-box-orient: vertical;
  9663. box-orient: vertical;
  9664. -webkit-line-clamp: 1;
  9665. height: 22.5px;
  9666. overflow: hidden;
  9667. text-overflow: ellipsis;
  9668. display: -webkit-box;
  9669. }
  9670. .item-card .item-card-body .item-card-subtitle {
  9671. -webkit-box-orient: vertical;
  9672. box-orient: vertical;
  9673. -webkit-line-clamp: 1;
  9674. height: 1.25rem;
  9675. overflow: hidden;
  9676. text-overflow: ellipsis;
  9677. display: -webkit-box;
  9678. }
  9679. .item-card .item-card-body .item-card-title-product {
  9680. font-size: 18px;
  9681. -webkit-box-orient: vertical;
  9682. box-orient: vertical;
  9683. -webkit-line-clamp: 1;
  9684. height: 25.02px;
  9685. overflow: hidden;
  9686. text-overflow: ellipsis;
  9687. display: -webkit-box;
  9688. }
  9689. .item-card .item-card-body .item-card-options {
  9690. -webkit-box-align: end;
  9691. -ms-flex-align: end;
  9692. align-items: flex-end;
  9693. -webkit-box-pack: end;
  9694. -ms-flex-pack: end;
  9695. justify-content: end;
  9696. }
  9697. .item-card .item-card-body .item-card-options-list {
  9698. color: #AAAAAA;
  9699. }
  9700. .item-card .icon-share1, .item-card .icon-share2 {
  9701. display: block;
  9702. -webkit-transition: display 5000s;
  9703. transition: display 5000s;
  9704. }
  9705. .item-card .icon-share1.active, .item-card .icon-share2.active {
  9706. display: none;
  9707. }
  9708. .item-card .item-card-icon {
  9709. display: block;
  9710. }
  9711. .item-card .item-card-icon.after {
  9712. display: none;
  9713. }
  9714. .item-card .item-card-icon-close {
  9715. display: none;
  9716. -webkit-transition: display 5000s;
  9717. transition: display 5000s;
  9718. }
  9719. .item-card .item-card-icon-close.active {
  9720. display: block;
  9721. }
  9722. .item-card .item-card-options-list:hover {
  9723. cursor: pointer;
  9724. }
  9725. .item-card .item-card-options-list:hover .item-card-icon.before {
  9726. display: none;
  9727. }
  9728. .item-card .item-card-options-list:hover .item-card-icon.after {
  9729. display: block;
  9730. }
  9731. .item-card .item-card-options-list:hover .item-card-icon.after.active {
  9732. display: none;
  9733. }
  9734. .item-card .item-card-options-list:hover .item-card-options-text {
  9735. color: #EE7800;
  9736. }
  9737. .item-card .item-card-options-list .item-card-icon.before {
  9738. display: block;
  9739. }
  9740. .item-card .item-card-options-list .item-card-icon.before.active {
  9741. display: none;
  9742. }
  9743. .item-card .item-card-options-list .item-card-icon.after {
  9744. display: none;
  9745. }
  9746. .item-card .item-card-options-list .item-card-icon.after.active {
  9747. display: none;
  9748. }
  9749. .item-card .item-card-content {
  9750. font-size: 1rem;
  9751. font-weight: bold;
  9752. color: #43484C;
  9753. -webkit-box-orient: vertical;
  9754. box-orient: vertical;
  9755. line-height: 1.25;
  9756. -webkit-line-clamp: 1;
  9757. height: 1.25rem;
  9758. overflow: hidden;
  9759. text-overflow: ellipsis;
  9760. display: -webkit-box;
  9761. }
  9762. .item-card .item-card-content-video {
  9763. font-size: 16px;
  9764. font-weight: bold;
  9765. color: #43484C;
  9766. -webkit-box-orient: vertical;
  9767. box-orient: vertical;
  9768. -webkit-line-clamp: 2;
  9769. height: 2.78rem;
  9770. overflow: hidden;
  9771. text-overflow: ellipsis;
  9772. display: -webkit-box;
  9773. }
  9774. .item-card .item-card-brand {
  9775. font-size: 16px;
  9776. font-weight: bold;
  9777. color: #43484C;
  9778. -webkit-box-orient: vertical;
  9779. box-orient: vertical;
  9780. -webkit-line-clamp: 1;
  9781. height: 1.25rem;
  9782. overflow: hidden;
  9783. text-overflow: ellipsis;
  9784. display: -webkit-box;
  9785. }
  9786. .item-card .item-card-content-product, .item-card .item-card-content-cloumn {
  9787. font-size: 16px;
  9788. color: #43484C;
  9789. -webkit-box-orient: vertical;
  9790. box-orient: vertical;
  9791. -webkit-line-clamp: 2;
  9792. height: 2.78rem;
  9793. overflow: hidden;
  9794. text-overflow: ellipsis;
  9795. display: -webkit-box;
  9796. }
  9797. .modal {
  9798. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9799. }
  9800. .modal .modal-header {
  9801. border-bottom: 1px solid transparent;
  9802. }
  9803. .modal .input-group .fm-input-border {
  9804. border-right-width: 0;
  9805. }
  9806. .modal .input-group .fm-btn-border {
  9807. border-left-width: 0;
  9808. border-top-width: 1px;
  9809. border-right-width: 1px;
  9810. border-bottom-width: 1px;
  9811. border-color: red;
  9812. }
  9813. .modal .input-group .btn-outline-secondary:hover {
  9814. color: #AAAAAA;
  9815. background-color: transparent;
  9816. }
  9817. .modal .form-control {
  9818. border-width: 1px;
  9819. }
  9820. .modal .fm-email-btnWrapper {
  9821. border: 1px solid;
  9822. border-radius: 28px;
  9823. }
  9824. .modal .fm-email-btnWrapper.active {
  9825. display: none;
  9826. }
  9827. .modal .fm-email-btnWrapper .fm-email-btn {
  9828. padding: 2px 5px 2px 5px;
  9829. }
  9830. .modal .fm-close {
  9831. cursor: pointer;
  9832. }
  9833. .modal .border-revise {
  9834. border: 1px solid red;
  9835. }
  9836. .modal .modal-title {
  9837. font-size: 18px;
  9838. margin-left: auto;
  9839. margin-right: auto;
  9840. }
  9841. .modal .modal-button-wrapper .modal-button {
  9842. width: 30%;
  9843. border: none;
  9844. padding: 0.875rem 1rem;
  9845. background-color: #D1D2D3;
  9846. border-radius: 2px;
  9847. color: #fff;
  9848. }
  9849. .modal .modal-button-wrapper .modal-button:hover, .modal .modal-button-wrapper .modal-button.active {
  9850. background-color: #EE7800;
  9851. }
  9852. .top-designer {
  9853. margin-top: 5rem;
  9854. }
  9855. .top-designer .top-designer-box {
  9856. position: relative;
  9857. }
  9858. .top-designer .top-designer-box .top-designer-btn {
  9859. cursor: pointer;
  9860. color: #aaa;
  9861. position: absolute;
  9862. right: 3%;
  9863. top: 10%;
  9864. }
  9865. .top-designer .top-designer-box .hide-btn {
  9866. position: relative;
  9867. color: #FFF;
  9868. font-size: 12px;
  9869. text-align: center;
  9870. line-height: 4;
  9871. content: '';
  9872. width: 40px;
  9873. height: 40px;
  9874. border-radius: 50%;
  9875. background-color: #9b9b9b;
  9876. display: inline-block;
  9877. }
  9878. .top-designer .top-designer-box .hide-btn::before {
  9879. position: absolute;
  9880. left: 35%;
  9881. content: "\f106";
  9882. color: #FFF;
  9883. font-weight: normal;
  9884. font-style: normal;
  9885. font-size: 1.5em;
  9886. font-family: FontAwesome;
  9887. line-height: 22px;
  9888. }
  9889. .top-designer .top-designer-wrapper {
  9890. margin-left: auto;
  9891. margin-right: auto;
  9892. width: 90%;
  9893. }
  9894. .top-designer .top-designer-wrapper img {
  9895. width: 100%;
  9896. }
  9897. .top-designer .top-designer-wrapper img:hover {
  9898. cursor: pointer;
  9899. }
  9900. body.active {
  9901. background-color: transparent;
  9902. }
  9903. .search-tab {
  9904. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9905. }
  9906. .search-tab small {
  9907. font-size: 16px;
  9908. }
  9909. .search-tab small span {
  9910. font-size: 20px;
  9911. }
  9912. .search-tab .nav-item {
  9913. border-right: 3px solid #fff;
  9914. }
  9915. .search-tab .nav-link {
  9916. color: #43484C;
  9917. background-color: #F4F4F4;
  9918. -webkit-box-shadow: 3px 1px 3px #AAAAAA;
  9919. box-shadow: 3px 1px 3px #AAAAAA;
  9920. font-weight: bold;
  9921. }
  9922. .search-tab .bottom-line {
  9923. border-bottom: 2px solid #EE7800;
  9924. }
  9925. .search-tab .btn.btn-original {
  9926. background-color: #fff;
  9927. font-weight: bold;
  9928. border-color: #dbdbdb;
  9929. }
  9930. .search-tab .btn.btn-original:visited, .search-tab .btn.btn-original:active, .search-tab .btn.btn-original:hover {
  9931. color: #EE7800;
  9932. border-color: #EE7800;
  9933. }
  9934. .search-tab .btn.btn-original-ckecked {
  9935. color: #EE7800;
  9936. border-color: #EE7800;
  9937. }
  9938. .search-tab .tab-content {
  9939. -webkit-box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  9940. box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  9941. }
  9942. .search-tab .tab-content .dropdown-menu {
  9943. max-height: 300px;
  9944. overflow-y: auto;
  9945. -webkit-transform: none !important;
  9946. transform: none !important;
  9947. top: 38px !important;
  9948. }
  9949. .search-tab .tab-content a {
  9950. color: #000;
  9951. }
  9952. .search-tab .tab-content a:hover {
  9953. text-decoration: none;
  9954. }
  9955. .search-tab .tab-content .radio-btn {
  9956. color: #909090;
  9957. }
  9958. .search-tab .tab-content .form-check-label:hover {
  9959. cursor: pointer;
  9960. }
  9961. .search-tab .search-tab-filter .divider:before {
  9962. content: '';
  9963. border: .5px solid #AAAAAA;
  9964. }
  9965. .search-tab .search-tab-filter a {
  9966. color: #000;
  9967. }
  9968. .search-tab .search-tab-filter a:hover, .search-tab .search-tab-filter a:active {
  9969. text-decoration: none;
  9970. color: #EE7800;
  9971. }
  9972. .search-tab .search-tab-filter a.active {
  9973. color: #EE7800;
  9974. }
  9975. .search-tab .search-tab-filter .deep-textColor {
  9976. color: #000;
  9977. }
  9978. .search-tab .search-tab-filter .dropdown-origin-width {
  9979. min-width: 5rem;
  9980. }
  9981. .search-tab .search-tab-filter .dropdown-px {
  9982. padding-left: 0.8rem;
  9983. padding-right: 0.8rem;
  9984. }
  9985. .search-tab .search-tab-itemResult span {
  9986. font-size: 14px;
  9987. }
  9988. .search-tab .search-tab-itemResult img:hover {
  9989. cursor: pointer;
  9990. }
  9991. .search-tab .search-tab-itemResult a {
  9992. color: #000;
  9993. }
  9994. .search-tab .search-tab-itemResult a:hover {
  9995. text-decoration: none;
  9996. }
  9997. .st-mobile {
  9998. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  9999. display: block;
  10000. margin-top: 5rem;
  10001. }
  10002. .st-mobile small {
  10003. font-size: 14px;
  10004. }
  10005. .st-mobile small span {
  10006. font-size: 14px;
  10007. }
  10008. .st-mobile .bottom-line {
  10009. border-bottom: 2px solid #EE7800;
  10010. }
  10011. .st-mobile .st-mobile-itemList {
  10012. width: 100%;
  10013. overflow-x: auto;
  10014. overflow-y: hidden;
  10015. scrollbar-width: none;
  10016. /*Firefox*/
  10017. }
  10018. .st-mobile .st-mobile-itemList::-webkit-scrollbar {
  10019. display: none;
  10020. /*Chrome Safari*/
  10021. -ms-overflow-style: none;
  10022. }
  10023. .st-mobile .st-mobile-wrapper {
  10024. width: 100%;
  10025. display: -webkit-inline-box;
  10026. -webkit-box-pack: justify;
  10027. -ms-flex-pack: justify;
  10028. justify-content: space-between;
  10029. }
  10030. .st-mobile .st-mobile-wrapper-v2 {
  10031. width: 100%;
  10032. display: -webkit-inline-box;
  10033. -webkit-box-pack: start;
  10034. -ms-flex-pack: start;
  10035. justify-content: start;
  10036. }
  10037. .st-mobile ul {
  10038. list-style-type: none;
  10039. -webkit-margin-before: 0;
  10040. margin-block-start: 0;
  10041. -webkit-margin-after: 0;
  10042. margin-block-end: 0;
  10043. }
  10044. .st-mobile ul li {
  10045. background-color: #F4F4F4;
  10046. border-top-left-radius: 0.25rem;
  10047. border-top-right-radius: 0.25rem;
  10048. margin-right: 5px;
  10049. font-weight: bold;
  10050. -webkit-box-shadow: 3px 1px 3px #AAAAAA;
  10051. box-shadow: 3px 1px 3px #AAAAAA;
  10052. }
  10053. .st-mobile ul a {
  10054. font-size: 14px;
  10055. color: #43484C;
  10056. display: block;
  10057. padding: 1rem 1rem;
  10058. }
  10059. .st-mobile ul a:active, .st-mobile ul a.active {
  10060. color: #FFF;
  10061. text-decoration: none;
  10062. background-color: #EE7800;
  10063. }
  10064. .st-mobile .st-mobile-button::-webkit-scrollbar {
  10065. display: none;
  10066. /*Chrome Safari*/
  10067. -ms-overflow-style: none;
  10068. }
  10069. .st-mobile .st-mobile-button {
  10070. background-color: #FFF;
  10071. -webkit-box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.14), 0 0 5px 0.5px rgba(0, 0, 0, 0.12);
  10072. box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 0 2px 1px rgba(0, 0, 0, 0.14), 0 0 5px 0.5px rgba(0, 0, 0, 0.12);
  10073. width: 100%;
  10074. overflow-x: auto;
  10075. overflow-y: hidden;
  10076. scrollbar-width: none;
  10077. /*Firefox*/
  10078. }
  10079. .st-mobile .st-mobile-button .st-mobile-button-wrapper {
  10080. width: -webkit-max-content;
  10081. width: -moz-max-content;
  10082. width: max-content;
  10083. overflow-x: auto;
  10084. overflow-y: hidden;
  10085. }
  10086. .st-mobile .st-mobile-button button.btn-original {
  10087. font-weight: bold;
  10088. border-color: #dbdbdb;
  10089. background-color: #fff;
  10090. font-size: 14px;
  10091. margin-right: 10px;
  10092. padding-top: px;
  10093. padding-bottom: px;
  10094. }
  10095. .st-mobile .st-mobile-button button.btn-original:visited, .st-mobile .st-mobile-button button.btn-original:active, .st-mobile .st-mobile-button button.btn-original:hover {
  10096. color: initial;
  10097. border-color: #dbdbdb;
  10098. }
  10099. .st-mobile .st-mobile-button button.btn-original.btn-original-ckecked {
  10100. color: #EE7800;
  10101. border-color: #EE7800;
  10102. }
  10103. .st-mobile .st-mobile-button #mb-select {
  10104. display: block;
  10105. }
  10106. .st-mobile .st-mobile-button #mb-select.active {
  10107. display: none;
  10108. }
  10109. .st-mobile .st-mobile-button #mb-video, .st-mobile .st-mobile-button #mb-designer, .st-mobile .st-mobile-button #mb-goods {
  10110. display: none;
  10111. }
  10112. .st-mobile .st-mobile-button #mb-video.active, .st-mobile .st-mobile-button #mb-designer.active, .st-mobile .st-mobile-button #mb-goods.active {
  10113. display: block;
  10114. }
  10115. .st-mobile .st-mobile-itemResult span {
  10116. margin-left: 0.25rem;
  10117. display: -webkit-inline-box;
  10118. display: -ms-inline-flexbox;
  10119. display: inline-flex;
  10120. -webkit-box-align: center;
  10121. -ms-flex-align: center;
  10122. align-items: center;
  10123. color: #EE7800;
  10124. font-size: 14px;
  10125. }
  10126. .st-mobile .st-mobile-itemResult img {
  10127. margin-left: 0.25rem;
  10128. }
  10129. .st-mobile .st-mobile-itemResult a {
  10130. color: #000;
  10131. }
  10132. .st-mobile .st-mobile-itemResult a:hover {
  10133. text-decoration: none;
  10134. }
  10135. .st-mobile .st-mobile-filter .btn-outline-secondary:focus {
  10136. -webkit-box-shadow: none !important;
  10137. box-shadow: none !important;
  10138. background-color: #fff !important;
  10139. }
  10140. .st-mobile .st-mobile-filter .btn-outline-secondary:hover {
  10141. background-color: none;
  10142. border-color: none;
  10143. }
  10144. .st-mobile .st-mobile-filter .btn-outline-custom {
  10145. border-color: #AAAAAA;
  10146. }
  10147. .st-mobile .st-mobile-filter .deep-textColor {
  10148. color: #000;
  10149. }
  10150. .st-mobile .st-mobile-filter .dropdown-menu {
  10151. min-width: 100%;
  10152. }
  10153. .st-mobile-overlay {
  10154. position: relative;
  10155. bottom: 0;
  10156. }
  10157. .st-mobile-overlay .st-mobile-mask {
  10158. width: 100%;
  10159. height: 100%;
  10160. }
  10161. .st-mobile-overlay.active .st-mobile-dropdown {
  10162. bottom: 0;
  10163. }
  10164. .st-mobile-overlay.active .st-mobile-mask {
  10165. display: block;
  10166. }
  10167. .st-mobile-mask {
  10168. display: none;
  10169. position: fixed;
  10170. bottom: 0;
  10171. z-index: 4;
  10172. background: rgba(0, 0, 0, 0.7);
  10173. }
  10174. .st-mobile-dropdown {
  10175. background: #fff;
  10176. color: #000;
  10177. width: 100%;
  10178. position: absolute;
  10179. bottom: -100%;
  10180. -webkit-transition: bottom 1s ease;
  10181. transition: bottom 1s ease;
  10182. height: 45vh;
  10183. overflow-y: scroll;
  10184. z-index: 5;
  10185. }
  10186. .st-mobile-dropdown a {
  10187. color: #000;
  10188. }
  10189. .st-mobile-dropdown .st-mobile-selection {
  10190. position: relative;
  10191. }
  10192. .st-mobile-dropdown .st-mobile-selection .st-mobile-close {
  10193. color: #EE7800;
  10194. font-weight: bold;
  10195. position: absolute;
  10196. right: 5%;
  10197. bottom: 30%;
  10198. }
  10199. .st-mobile-dropdown .st-mobile-title {
  10200. font-weight: bold;
  10201. color: #43484C;
  10202. }
  10203. .st-mobile-dropdown .list-group-wrapper {
  10204. height: 30vh;
  10205. overflow-y: scroll;
  10206. }
  10207. .searchall.searchall-overlay {
  10208. width: 100%;
  10209. z-index: 1030;
  10210. position: fixed;
  10211. top: 0;
  10212. }
  10213. .searchall.searchall-overlay.active .searchall-box {
  10214. display: block;
  10215. }
  10216. .searchall.searchall-overlay.active .searchall-mask {
  10217. display: block;
  10218. }
  10219. .searchall .searchall-mask {
  10220. width: 100%;
  10221. height: 100%;
  10222. position: fixed;
  10223. background: rgba(0, 0, 0, 0.7);
  10224. display: none;
  10225. top: 0;
  10226. }
  10227. .searchall .searchall-box {
  10228. width: 100%;
  10229. position: relative;
  10230. background-color: #fff;
  10231. display: none;
  10232. }
  10233. .searchall .searchall-box .searchall-block {
  10234. z-index: 1040;
  10235. }
  10236. .searchall .searchall-box .searchall-keywords-link {
  10237. color: #000;
  10238. margin-bottom: 10px;
  10239. }
  10240. .searchall .searchall-box .searchall-keywords-link:hover {
  10241. text-decoration: none;
  10242. }
  10243. .searchall .dropdown-toggle::after {
  10244. display: none;
  10245. }
  10246. .searchall .dropdown-origin-width {
  10247. min-width: 5rem;
  10248. }
  10249. .searchall .input-group-search {
  10250. display: -webkit-box;
  10251. display: -ms-flexbox;
  10252. display: flex;
  10253. -webkit-box-align: center;
  10254. -ms-flex-align: center;
  10255. align-items: center;
  10256. padding: 0.375rem 0.75rem;
  10257. margin-bottom: 0;
  10258. font-size: 1rem;
  10259. font-weight: 400;
  10260. line-height: 1.5;
  10261. color: #727679;
  10262. text-align: center;
  10263. white-space: nowrap;
  10264. border-radius: 0.25rem;
  10265. }
  10266. .searchall .searchall-wrapper {
  10267. border: 2px solid #aaaaaa;
  10268. }
  10269. .searchall .searchall-keywords {
  10270. padding: 1rem;
  10271. background-color: #F4F4F4;
  10272. }
  10273. .searchall .searchall-keywords:active {
  10274. color: #fff;
  10275. background-color: #EE7800;
  10276. }
  10277. .searchall .searchall-input {
  10278. -webkit-box-flex: 1;
  10279. -ms-flex: 1 1 auto;
  10280. flex: 1 1 auto;
  10281. }
  10282. .search-bar {
  10283. position: relative;
  10284. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10285. }
  10286. .search-bar .container-searchbar {
  10287. max-width: 990px;
  10288. }
  10289. .search-bar.search-bar-mt {
  10290. margin-top: 70px;
  10291. }
  10292. .search-bar input::-ms-clear {
  10293. display: none;
  10294. }
  10295. .search-bar ul {
  10296. list-style: none;
  10297. -webkit-margin-after: 0;
  10298. margin-block-end: 0;
  10299. }
  10300. .search-bar ul li {
  10301. border-top-left-radius: 0.25rem;
  10302. border-top-right-radius: 0.25rem;
  10303. }
  10304. .search-bar ul a {
  10305. color: #43484C;
  10306. font-weight: bold;
  10307. -webkit-box-shadow: 3px 0px 3px #AAAAAA;
  10308. box-shadow: 3px 0px 3px #AAAAAA;
  10309. }
  10310. .search-bar ul a:hover, .search-bar ul a.active {
  10311. color: #fff;
  10312. background-color: #EE7800;
  10313. text-decoration: none;
  10314. }
  10315. .search-bar .search-bar-keywordItem a {
  10316. color: #000;
  10317. }
  10318. .search-bar .search-bar-keywordItem a:hover {
  10319. text-decoration: none;
  10320. }
  10321. .search-bar .search-bar-aside {
  10322. position: fixed;
  10323. top: calc(336px + 72px + 82px);
  10324. z-index: 999;
  10325. -webkit-transform: translateX(0%);
  10326. transform: translateX(0%);
  10327. transition: transform 300ms ease-in-out;
  10328. transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  10329. }
  10330. .search-bar .search-bar-aside.is-hidden {
  10331. -webkit-transform: translateX(-90%);
  10332. transform: translateX(-90%);
  10333. }
  10334. .search-bar .search-bar-aside .search-bar-block {
  10335. padding: 0 8px 8px 0;
  10336. -webkit-transform: translateX(0%);
  10337. transform: translateX(0%);
  10338. -webkit-transition: -webkit-transform 300ms ease-in-out;
  10339. transition: -webkit-transform 300ms ease-in-out;
  10340. transition: transform 300ms ease-in-out;
  10341. transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  10342. background: rgba(255, 255, 255, 0.75);
  10343. }
  10344. .search-bar .search-bar-aside .search-bar-block.is-hidden {
  10345. -webkit-transform: translateX(-90%);
  10346. transform: translateX(-90%);
  10347. }
  10348. .search-bar .search-bar-aside .search-bar-aside-text {
  10349. position: absolute;
  10350. top: -24px;
  10351. color: #444;
  10352. background: rgba(255, 255, 255, 0.75);
  10353. padding: 0 5px;
  10354. width: 100%;
  10355. text-align: right;
  10356. cursor: pointer;
  10357. }
  10358. .search-bar .search-bar-aside .search-bar-aside-arrow {
  10359. -webkit-transition: -webkit-transform 300ms ease-in-out;
  10360. transition: -webkit-transform 300ms ease-in-out;
  10361. transition: transform 300ms ease-in-out;
  10362. transition: transform 300ms ease-in-out, -webkit-transform 300ms ease-in-out;
  10363. cursor: pointer;
  10364. }
  10365. .search-bar .search-bar-aside .search-bar-aside-arrow.is-rotate {
  10366. -webkit-transform: rotate(180deg);
  10367. transform: rotate(180deg);
  10368. }
  10369. body {
  10370. -webkit-text-size-adjust: 100%;
  10371. }
  10372. .bg-cover {
  10373. background-size: cover;
  10374. background-position: center center;
  10375. }
  10376. .bg-main {
  10377. background-color: #FAFAFA;
  10378. }
  10379. .bg-white {
  10380. background-color: #fff;
  10381. }
  10382. .bg-shadow {
  10383. -webkit-box-shadow: 0px 0px 5px #D1D2D3;
  10384. box-shadow: 0px 0px 5px #D1D2D3;
  10385. }
  10386. .no-padding {
  10387. padding: 0;
  10388. }
  10389. .no-border {
  10390. border: none;
  10391. }
  10392. .circle-img {
  10393. width: 30px;
  10394. height: 30px;
  10395. border-radius: 50%;
  10396. border: 1px solid white;
  10397. }
  10398. .accent-text {
  10399. caret-color: #000;
  10400. }
  10401. .focus-status:focus {
  10402. border-color: transparent;
  10403. -webkit-box-shadow: none;
  10404. box-shadow: none;
  10405. }
  10406. .focus-status-error {
  10407. border-color: #FF5252;
  10408. }
  10409. .focus-status-error::-webkit-input-placeholder {
  10410. color: #FF5252;
  10411. }
  10412. .focus-status-error::-moz-placeholder {
  10413. color: #FF5252;
  10414. }
  10415. .focus-status-error::-ms-placeholder {
  10416. color: #FF5252;
  10417. }
  10418. .top-btn {
  10419. z-index: 9;
  10420. text-align: center;
  10421. width: 50px;
  10422. height: 50px;
  10423. position: fixed;
  10424. right: 20px;
  10425. bottom: 70px;
  10426. border-radius: 100px;
  10427. line-height: 3;
  10428. background-color: #EE7800;
  10429. cursor: pointer;
  10430. display: none;
  10431. }
  10432. .gotop-btn-wrapper {
  10433. display: block;
  10434. position: fixed;
  10435. right: 1%;
  10436. bottom: 8%;
  10437. cursor: pointer;
  10438. }
  10439. .gotop-btn-wrapper .gotop-btn {
  10440. width: 50px;
  10441. height: 50px;
  10442. -webkit-box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  10443. box-shadow: 1px 3px 13px -2px rgba(0, 0, 0, 0.35);
  10444. opacity: 1;
  10445. }
  10446. .gotop-btn-wrapper .gotop-btn:hover, .gotop-btn-wrapper .gotop-btn:focus, .gotop-btn-wrapper .gotop-btn:active {
  10447. -webkit-box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10448. box-shadow: 5px 3px 1px -3px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10449. }
  10450. .list-head {
  10451. font-weight: bold;
  10452. font-size: 1.5rem;
  10453. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10454. }
  10455. .ui-autocomplete {
  10456. max-height: 350px;
  10457. overflow-y: auto;
  10458. /* prevent horizontal scrollbar */
  10459. overflow-x: hidden;
  10460. -webkit-padding-start: 0;
  10461. padding-inline-start: 0;
  10462. }
  10463. .keywords-autocomplete {
  10464. z-index: 50;
  10465. position: absolute;
  10466. -webkit-transform: translateY(-25%);
  10467. transform: translateY(-25%);
  10468. }
  10469. .keywords-autocomplete .list-group-item {
  10470. -webkit-box-shadow: 1px 1px 1px #ccc;
  10471. box-shadow: 1px 1px 1px #ccc;
  10472. background: rgba(255, 255, 255, 0.98);
  10473. }
  10474. .keywords-autocomplete .list-group-item-action:hover {
  10475. z-index: 0;
  10476. cursor: pointer;
  10477. }
  10478. .text-promote-color {
  10479. color: #EE7800 !important;
  10480. }
  10481. .text-promote-color:active, .text-promote-color.active {
  10482. background-color: transparent !important;
  10483. border-bottom: 4px solid #EE7800 !important;
  10484. }
  10485. @media screen and (max-width: 576px) {
  10486. .text-promote-color:active, .text-promote-color.active {
  10487. background-color: unset !important;
  10488. border-bottom: 0 solid transparent !important;
  10489. }
  10490. }
  10491. .text-promote-color:hover {
  10492. color: #EE7800 !important;
  10493. background-color: transparent !important;
  10494. }
  10495. @media screen and (max-width: 576px) {
  10496. .text-promote-color:hover {
  10497. background-color: #F4F4F4 !important;
  10498. }
  10499. }
  10500. .text-promote-mb-color {
  10501. color: #EE7800 !important;
  10502. }
  10503. [v-cloak] {
  10504. display: none;
  10505. }
  10506. .pagination .page-link {
  10507. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10508. }
  10509. .pagination .page-link-arrow {
  10510. position: relative;
  10511. display: block;
  10512. padding: 0.5rem 0.75rem;
  10513. line-height: 1.25;
  10514. color: #727679;
  10515. background-color: #fff;
  10516. border: 1px solid #fff;
  10517. }
  10518. .pagination .page-link-arrow:hover {
  10519. text-decoration: none;
  10520. }
  10521. .h-swicher-wrapper {
  10522. font-family: Helvetica, Noto Sans TC, Roboto, "Microsoft JhengHei", Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  10523. }
  10524. .h-swicher-wrapper .h-swicher {
  10525. display: inline-block;
  10526. height: 45px;
  10527. padding: 4px;
  10528. background: #fff;
  10529. width: 300px;
  10530. border-radius: 30px;
  10531. border: 1px solid rgba(170, 170, 170, 0.75);
  10532. position: relative;
  10533. }
  10534. .h-swicher-wrapper .swicher-input {
  10535. display: none;
  10536. }
  10537. .h-swicher-wrapper .swicher-label {
  10538. float: left;
  10539. width: 50%;
  10540. font-size: 1rem;
  10541. line-height: 33px;
  10542. color: #000;
  10543. text-align: center;
  10544. cursor: pointer;
  10545. position: inherit;
  10546. z-index: 10;
  10547. margin-bottom: 0;
  10548. -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  10549. transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  10550. will-change: transform;
  10551. }
  10552. .h-swicher-wrapper .switcher-toggle {
  10553. position: absolute;
  10554. float: left;
  10555. height: 44px;
  10556. width: 50%;
  10557. line-height: 30px;
  10558. cursor: pointer;
  10559. border: 1px solid #EE7800;
  10560. border-radius: 30px;
  10561. left: 0px;
  10562. top: 0px;
  10563. -webkit-box-shadow: 1px 1px 2px #ee7800;
  10564. box-shadow: 1px 1px 2px #ee7800;
  10565. -webkit-transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  10566. transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  10567. will-change: transform;
  10568. }
  10569. .h-swicher-wrapper .swicher-input:checked + .swicher-label {
  10570. color: #EE7800;
  10571. font-weight: bold;
  10572. }
  10573. .h-swicher-wrapper .swicher-input-joinLogin:checked ~ .switcher-toggle {
  10574. left: 150px;
  10575. }
  10576. .login-wrapper {
  10577. font-size: 14px;
  10578. background-color: #FFF;
  10579. -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10580. box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10581. }
  10582. .login-wrapper .form-control {
  10583. border-width: 1px;
  10584. height: calc(1.5em + 1.75rem + 4px);
  10585. }
  10586. .login-wrapper .login-wrapper-email input::-ms-clear, .login-wrapper .login-wrapper-password input::-ms-clear {
  10587. display: none;
  10588. }
  10589. .login-wrapper .login-wrapper-email input::-ms-reveal, .login-wrapper .login-wrapper-password input::-ms-reveal {
  10590. display: none;
  10591. }
  10592. .login-wrapper .focus-status:focus {
  10593. border-color: #ced4da;
  10594. -webkit-box-shadow: none;
  10595. box-shadow: none;
  10596. }
  10597. .login-wrapper .login-wrapper-aware {
  10598. margin-left: 1rem;
  10599. margin-right: 1rem;
  10600. }
  10601. .login-wrapper .login-wrapper-aware-v2 {
  10602. margin-left: 1rem;
  10603. }
  10604. .login-wrapper .custom-control-input:checked ~ .custom-control-label::before {
  10605. color: #fff;
  10606. background-color: #0077c0;
  10607. border-color: #0077c0;
  10608. }
  10609. .login-wrapper .login-wrapper-aware-forgetPass a:hover, .login-wrapper .login-wrapper-aware-v2 a:hover {
  10610. text-decoration: none;
  10611. }
  10612. .login-wrapper label {
  10613. color: rgba(0, 0, 0, 0.54);
  10614. }
  10615. .login-wrapper .login-wrapper-password {
  10616. position: relative;
  10617. }
  10618. .login-wrapper .login-wrapper-password .login-wrapper-password-eye {
  10619. color: rgba(0, 0, 0, 0.54);
  10620. position: absolute;
  10621. right: 5%;
  10622. bottom: 23%;
  10623. }
  10624. .login-wrapper .login-wrapper-password .login-wrapper-password-eye:hover {
  10625. cursor: pointer;
  10626. }
  10627. .divider-wrapper .divider {
  10628. width: 1px;
  10629. height: 100%;
  10630. border-left: 1px solid rgba(0, 0, 0, 0.12);
  10631. position: relative;
  10632. }
  10633. .divider-wrapper .divider:after {
  10634. /*content: "OR";*/
  10635. display: block;
  10636. position: absolute;
  10637. top: 50%;
  10638. left: 50%;
  10639. -webkit-transform: translate(-50%, -50%);
  10640. transform: translate(-50%, -50%);
  10641. background-color: #fff;
  10642. color: rgba(0, 0, 0, 0.12);
  10643. padding: 6px;
  10644. }
  10645. .login-media-wrapper {
  10646. width: 100%;
  10647. }
  10648. .login-media-wrapper:nth-child(1) {
  10649. border: 1px solid #4267b2;
  10650. }
  10651. .login-media-wrapper:nth-child(1):hover {
  10652. background-color: #4267b2;
  10653. }
  10654. .login-media-wrapper:nth-child(1):hover .login-media-img-item.before {
  10655. display: none;
  10656. }
  10657. .login-media-wrapper:nth-child(1):hover .login-media-img-item.after {
  10658. display: block;
  10659. }
  10660. .login-media-wrapper:nth-child(1):hover .login-media-context {
  10661. color: #fff;
  10662. }
  10663. .login-media-wrapper:nth-child(2) {
  10664. border: 1px solid #f34a38;
  10665. }
  10666. .login-media-wrapper:nth-child(2):hover {
  10667. background-color: #f34a38;
  10668. }
  10669. .login-media-wrapper:nth-child(2):hover .login-media-img-item.before {
  10670. display: none;
  10671. }
  10672. .login-media-wrapper:nth-child(2):hover .login-media-img-item.after {
  10673. display: block;
  10674. }
  10675. .login-media-wrapper:nth-child(2):hover .login-media-context {
  10676. color: #fff;
  10677. }
  10678. .login-media-wrapper .login-media-content .login-media-img {
  10679. width: 25%;
  10680. height: 36px;
  10681. border-right: 1px solid rgba(0, 0, 0, 0.12);
  10682. display: -webkit-box;
  10683. display: -ms-flexbox;
  10684. display: flex;
  10685. -webkit-box-pack: center;
  10686. -ms-flex-pack: center;
  10687. justify-content: center;
  10688. -webkit-box-align: center;
  10689. -ms-flex-align: center;
  10690. align-items: center;
  10691. }
  10692. .login-media-wrapper .login-media-content .login-media-img-item {
  10693. display: block;
  10694. }
  10695. .login-media-wrapper .login-media-content .login-media-img-item.after {
  10696. display: none;
  10697. }
  10698. .login-media-wrapper .login-media-content .login-media-context {
  10699. color: rgba(67, 72, 76, 0.75);
  10700. width: 75%;
  10701. display: -webkit-box;
  10702. display: -ms-flexbox;
  10703. display: flex;
  10704. -webkit-box-pack: center;
  10705. -ms-flex-pack: center;
  10706. justify-content: center;
  10707. -webkit-box-align: center;
  10708. -ms-flex-align: center;
  10709. align-items: center;
  10710. }
  10711. .forget-password-wrapper {
  10712. font-family: Helvetica, Noto Sans TC, Roboto, "Microsoft JhengHei", Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  10713. background-color: #fff;
  10714. -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10715. box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10716. }
  10717. .forget-password-wrapper .form-control {
  10718. border-width: 1px;
  10719. height: calc(1.5em + 1.75rem + 4px);
  10720. }
  10721. .forget-password-wrapper .login-wrapper-email input::-ms-clear {
  10722. display: none;
  10723. }
  10724. .forget-password-wrapper .forget-password-context h5 {
  10725. font-size: 1.17rem;
  10726. font-weight: 500;
  10727. line-height: 0.9;
  10728. }
  10729. .forget-password-wrapper .focus-status:focus {
  10730. border-color: #ced4da;
  10731. -webkit-box-shadow: none;
  10732. box-shadow: none;
  10733. }
  10734. @media screen and (max-width: 768px) {
  10735. .login-wrapper {
  10736. background-color: transparent;
  10737. -webkit-box-shadow: none;
  10738. box-shadow: none;
  10739. }
  10740. .login-wrapper .login-wrapper-email input, .login-wrapper .login-wrapper-password input {
  10741. background-color: #ffffff;
  10742. }
  10743. .divider-wrapper .divider {
  10744. width: 100%;
  10745. height: 1px;
  10746. border-left: none;
  10747. margin: 32px 0;
  10748. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  10749. }
  10750. .divider-wrapper .divider:after {
  10751. /*content: "OR";*/
  10752. display: block;
  10753. position: absolute;
  10754. top: 50%;
  10755. left: 50%;
  10756. -webkit-transform: translate(-50%, -50%);
  10757. transform: translate(-50%, -50%);
  10758. background-color: #FFF;
  10759. color: rgba(0, 0, 0, 0.12);
  10760. padding: 6px;
  10761. }
  10762. }
  10763. .member {
  10764. margin-top: 8rem;
  10765. }
  10766. .member .member-info-wrapper {
  10767. background-color: #ffe7d6;
  10768. border-radius: 0.25rem;
  10769. }
  10770. .member .member-info-circle {
  10771. -webkit-transform: translateY(-50%);
  10772. transform: translateY(-50%);
  10773. width: 72px;
  10774. height: 72px;
  10775. border-radius: 50%;
  10776. }
  10777. .member .member-info-circle .member-info-circle-img {
  10778. border-radius: 50%;
  10779. }
  10780. .member .member-info-data {
  10781. margin-top: -.5rem;
  10782. }
  10783. .member .member-table {
  10784. width: 100%;
  10785. }
  10786. .member .member-table .member-table-lf {
  10787. font-size: 1rem;
  10788. -ms-flex-preferred-size: 25%;
  10789. flex-basis: 25%;
  10790. -webkit-box-flex: 0;
  10791. -ms-flex-positive: 0;
  10792. flex-grow: 0;
  10793. max-width: 25%;
  10794. display: -webkit-box;
  10795. display: -ms-flexbox;
  10796. display: flex;
  10797. -webkit-box-pack: center;
  10798. -ms-flex-pack: center;
  10799. justify-content: center;
  10800. -webkit-box-align: start;
  10801. -ms-flex-align: start;
  10802. align-items: start;
  10803. }
  10804. .member .member-table .member-table-rt {
  10805. -ms-flex-preferred-size: 75%;
  10806. flex-basis: 75%;
  10807. -webkit-box-flex: 0;
  10808. -ms-flex-positive: 0;
  10809. flex-grow: 0;
  10810. max-width: 75%;
  10811. word-break: break-all;
  10812. }
  10813. .member .member-info-btn-wrapper .member-info-btn {
  10814. width: 47%;
  10815. border-radius: 0;
  10816. padding: .8rem .5rem;
  10817. }
  10818. .member .member-info-btn-wrapper .member-info-btn:hover, .member .member-info-btn-wrapper .member-info-btn:active {
  10819. color: #AAAAAA;
  10820. background-color: #f4f4f4;
  10821. }
  10822. .member .member-info-btn-store {
  10823. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10824. }
  10825. .member .member-info-btn-store:hover {
  10826. cursor: pointer;
  10827. background-color: #f4f4f4;
  10828. }
  10829. .member .member-nav.nav-tabs {
  10830. border-bottom: 1px solid #AAAAAA;
  10831. }
  10832. .member .member-nav .nav-link {
  10833. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10834. color: #AAAAAA;
  10835. border: 1px solid #AAAAAA;
  10836. }
  10837. .member .member-nav .nav-link.active {
  10838. color: #FFF;
  10839. background-color: #EE7800;
  10840. }
  10841. .member .member-nav .nav-link.active:hover {
  10842. color: #FFF;
  10843. border-color: transparent;
  10844. background-color: #EE7800;
  10845. }
  10846. .member .member-nav .nav-link:hover {
  10847. cursor: pointer;
  10848. color: #AAAAAA;
  10849. border-color: #AAAAAA;
  10850. background-color: #f4f4f4;
  10851. }
  10852. .member .member-nav-mobile::-webkit-scrollbar {
  10853. display: none;
  10854. /*Chrome Safari*/
  10855. -ms-overflow-style: none;
  10856. }
  10857. .member .member-nav-mobile {
  10858. display: block;
  10859. scrollbar-width: none;
  10860. /*Firefox*/
  10861. }
  10862. .member .member-nav-mobile .member-nav-itemlist {
  10863. width: 100%;
  10864. overflow-x: auto;
  10865. overflow-y: hidden;
  10866. scrollbar-width: none;
  10867. /*Firefox*/
  10868. }
  10869. .member .member-nav-mobile .member-nav-itemlist::-webkit-scrollbar {
  10870. display: none;
  10871. /*Chrome Safari*/
  10872. -ms-overflow-style: none;
  10873. }
  10874. .member .member-nav-mobile .member-nav-itemlist-wrapper {
  10875. width: 100%;
  10876. display: -webkit-inline-box;
  10877. -webkit-box-pack: justify;
  10878. -ms-flex-pack: justify;
  10879. justify-content: space-between;
  10880. }
  10881. .member .member-nav-mobile ul {
  10882. list-style-type: none;
  10883. -webkit-margin-before: 0;
  10884. margin-block-start: 0;
  10885. -webkit-margin-after: 0;
  10886. margin-block-end: 0;
  10887. -webkit-padding-start: 0;
  10888. padding-inline-start: 0;
  10889. }
  10890. .member .member-nav-mobile a {
  10891. font-size: 14px;
  10892. color: #AAAAAA;
  10893. display: block;
  10894. padding: 1rem 2rem;
  10895. text-decoration: none;
  10896. border: 1px solid #AAAAAA;
  10897. border-top-left-radius: 0.25rem;
  10898. border-top-right-radius: 0.25rem;
  10899. }
  10900. .member .member-nav-mobile a:hover {
  10901. text-decoration: none;
  10902. }
  10903. .member .member-nav-mobile a:active {
  10904. text-decoration: none;
  10905. background-color: #f4f4f4;
  10906. }
  10907. .member .member-nav-mobile a.active {
  10908. color: #FFF;
  10909. text-decoration: none;
  10910. background-color: #EE7800;
  10911. }
  10912. .member .item-card-member .item-card-img-member {
  10913. position: relative;
  10914. width: 100%;
  10915. height: 280px;
  10916. background-size: cover;
  10917. background-position: center center;
  10918. background-repeat: no-repeat;
  10919. }
  10920. .member .item-card-member .item-card-text {
  10921. font-weight: bold;
  10922. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10923. }
  10924. .member .item-card-member .item-card-text p {
  10925. display: -webkit-box;
  10926. -webkit-box-orient: vertical;
  10927. box-orient: vertical;
  10928. height: calc(16px * 3 * 1.4);
  10929. }
  10930. .member .item-card-member .item-card-media-member {
  10931. left: 32%;
  10932. }
  10933. .member .item-card-member-none {
  10934. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10935. }
  10936. .member .item-card-member-footer {
  10937. font-family: "Microsoft JhengHei", Helvetica, Noto Sans TC, Roboto, Arial, sans-serif;
  10938. }
  10939. .form-group {
  10940. margin-bottom: 0;
  10941. }
  10942. .member-modal-button-wrapper .member-modal-button {
  10943. width: 45%;
  10944. color: #FFF;
  10945. background-color: #D1D2D3;
  10946. border-radius: 0;
  10947. padding: .8rem .5rem;
  10948. }
  10949. .member-modal-button-wrapper .member-modal-button:hover, .member-modal-button-wrapper .member-modal-button.active {
  10950. color: #FFF;
  10951. background-color: #EE7800;
  10952. }
  10953. .swal2-title {
  10954. color: #EE7800 !important;
  10955. font-weight: bold !important;
  10956. font-size: 1.5rem !important;
  10957. }
  10958. .swal2-styled.swal2-confirm {
  10959. background-color: #EE7800 !important;
  10960. }
  10961. @media (max-width: 576px) {
  10962. .px-4Up {
  10963. padding: 0 2rem;
  10964. }
  10965. }
  10966. @media (max-width: 576px) {
  10967. .no-padding {
  10968. padding-left: 0;
  10969. padding-right: 0;
  10970. }
  10971. }
  10972. @media (max-width: 576px) {
  10973. h2, .h2 {
  10974. font-size: 1.6875rem;
  10975. }
  10976. }
  10977. .hint {
  10978. display: none;
  10979. }
  10980. .formWrapper {
  10981. background-color: #FFF;
  10982. -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10983. box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  10984. -webkit-transition: all 300ms ease-in-out;
  10985. transition: all 300ms ease-in-out;
  10986. }
  10987. @media (min-width: 768px) {
  10988. .formWrapper {
  10989. padding-bottom: 6.5rem;
  10990. }
  10991. }
  10992. @media (max-width: 576px) {
  10993. .formWrapper {
  10994. background-color: transparent;
  10995. }
  10996. }
  10997. .formTheme {
  10998. display: -webkit-box;
  10999. display: -ms-flexbox;
  11000. display: flex;
  11001. -webkit-box-pack: center;
  11002. -ms-flex-pack: center;
  11003. justify-content: center;
  11004. -webkit-box-align: center;
  11005. -ms-flex-align: center;
  11006. align-items: center;
  11007. }
  11008. .formTheme--style {
  11009. padding: 0.5rem 0;
  11010. color: #727679;
  11011. font-size: 1.25rem;
  11012. }
  11013. .formTheme__title {
  11014. min-width: 30%;
  11015. text-align: center;
  11016. font-weight: 500;
  11017. }
  11018. @media (max-width: 576px) {
  11019. .formTheme__title {
  11020. min-width: 32%;
  11021. }
  11022. }
  11023. .formTheme .line {
  11024. display: inline-block;
  11025. width: 50%;
  11026. height: 1px;
  11027. background-color: #727679;
  11028. }
  11029. .formTheme .line--lf {
  11030. margin: 0 0.5rem 0 0;
  11031. }
  11032. .formTheme .line--rt {
  11033. margin: 0 0 0 0.5rem;
  11034. }
  11035. .dropdown .dropdown-menus {
  11036. min-width: 100%;
  11037. max-height: 200px;
  11038. overflow-y: auto;
  11039. text-align: left;
  11040. -webkit-padding-start: 0;
  11041. padding-inline-start: 0;
  11042. padding-left: 0;
  11043. }
  11044. .form-text-height {
  11045. border-width: 1px;
  11046. height: calc(1.5em + 1.62rem + 4px);
  11047. }
  11048. .formDropdown {
  11049. display: -webkit-box;
  11050. display: -ms-flexbox;
  11051. display: flex;
  11052. -webkit-box-pack: justify;
  11053. -ms-flex-pack: justify;
  11054. justify-content: space-between;
  11055. }
  11056. .formDropdown--style {
  11057. border: 1px solid #CED4DA;
  11058. padding: 0.875rem 0.75rem;
  11059. background: #fff;
  11060. }
  11061. .formSubmit {
  11062. padding: 0.85rem 0;
  11063. }
  11064. .formAside {
  11065. padding: 0 0 0 0.5rem;
  11066. }
  11067. .calTable {
  11068. display: -webkit-box;
  11069. display: -ms-flexbox;
  11070. display: flex;
  11071. padding: 1rem 0;
  11072. margin: 0 1rem;
  11073. font-size: 1.125rem;
  11074. border-bottom: 1px dashed #D5D5D5;
  11075. -webkit-transition: all 300ms ease-in-out;
  11076. transition: all 300ms ease-in-out;
  11077. }
  11078. @media (max-width: 576px) {
  11079. .calTable {
  11080. padding: 0.5rem 0;
  11081. font-size: 1rem;
  11082. }
  11083. }
  11084. .calTable__lf {
  11085. -ms-flex-preferred-size: 31%;
  11086. flex-basis: 31%;
  11087. -webkit-box-flex: 0;
  11088. -ms-flex-positive: 0;
  11089. flex-grow: 0;
  11090. display: -webkit-box;
  11091. display: -ms-flexbox;
  11092. display: flex;
  11093. -webkit-box-align: start;
  11094. -ms-flex-align: start;
  11095. align-items: start;
  11096. -webkit-box-pack: end;
  11097. -ms-flex-pack: end;
  11098. justify-content: flex-end;
  11099. padding: 0 .5rem 0 .5rem;
  11100. color: #AAAAAA;
  11101. -webkit-transition: all 300ms ease-in-out;
  11102. transition: all 300ms ease-in-out;
  11103. }
  11104. @media (max-width: 576px) {
  11105. .calTable__lf {
  11106. -ms-flex-preferred-size: 40%;
  11107. flex-basis: 40%;
  11108. }
  11109. }
  11110. @media (max-width: 321px) {
  11111. .calTable__lf {
  11112. -ms-flex-preferred-size: 45%;
  11113. flex-basis: 45%;
  11114. }
  11115. }
  11116. .calTable__rt {
  11117. -ms-flex-preferred-size: 69%;
  11118. flex-basis: 69%;
  11119. -webkit-box-flex: 0;
  11120. -ms-flex-positive: 0;
  11121. flex-grow: 0;
  11122. -webkit-box-pack: start;
  11123. -ms-flex-pack: start;
  11124. justify-content: start;
  11125. word-break: break-all;
  11126. -webkit-transition: all 300ms ease-in-out;
  11127. transition: all 300ms ease-in-out;
  11128. }
  11129. @media (max-width: 576px) {
  11130. .calTable__rt {
  11131. -ms-flex-preferred-size: 60%;
  11132. flex-basis: 60%;
  11133. }
  11134. }
  11135. @media (max-width: 321px) {
  11136. .calTable__rt {
  11137. -ms-flex-preferred-size: 50%;
  11138. flex-basis: 50%;
  11139. }
  11140. }
  11141. .formInfo {
  11142. position: relative;
  11143. }
  11144. .formInfo .formInfoIcon {
  11145. position: absolute;
  11146. top: 10px;
  11147. right: -25px;
  11148. -webkit-transform: scale(1.5);
  11149. transform: scale(1.5);
  11150. line-height: 2;
  11151. -webkit-transition: all 300ms ease-in-out;
  11152. transition: all 300ms ease-in-out;
  11153. }
  11154. @media (max-width: 576px) {
  11155. .formInfo .formInfoIcon {
  11156. padding: 0 0.1rem;
  11157. top: 12px;
  11158. }
  11159. }
  11160. .formInfo .fa-info-circle {
  11161. color: #4099d0;
  11162. }
  11163. .calResult-wrapper {
  11164. padding: 0 1.5rem;
  11165. }
  11166. .calResult {
  11167. padding: 0 1rem;
  11168. -webkit-transition: all 300ms ease-in-out;
  11169. transition: all 300ms ease-in-out;
  11170. }
  11171. @media (max-width: 576px) {
  11172. .calResult {
  11173. padding: 0;
  11174. }
  11175. }
  11176. .calResult h2 {
  11177. background-color: #F4F4F4;
  11178. color: #EE7800;
  11179. padding: 1rem 0;
  11180. text-align: center;
  11181. font-weight: bold;
  11182. -webkit-transition: all 300ms ease-in-out;
  11183. transition: all 300ms ease-in-out;
  11184. }
  11185. @media (max-width: 576px) {
  11186. .calResult h2 {
  11187. background-color: #F4F4F4;
  11188. font-size: 1.6875rem;
  11189. }
  11190. }
  11191. .calResult h2 .small {
  11192. font-size: 60%;
  11193. }
  11194. .calResult .formBtn {
  11195. width: 48%;
  11196. -webkit-box-shadow: 0 1px 10px #eee;
  11197. box-shadow: 0 1px 10px #eee;
  11198. -webkit-transition: all 300ms ease-in-out;
  11199. transition: all 300ms ease-in-out;
  11200. }
  11201. @media (max-width: 576px) {
  11202. .calResult .formBtn {
  11203. width: 100%;
  11204. }
  11205. }
  11206. .calResult .formBtn--mr {
  11207. margin-right: 4%;
  11208. -webkit-transition: all 300ms ease-in-out;
  11209. transition: all 300ms ease-in-out;
  11210. }
  11211. @media (max-width: 576px) {
  11212. .calResult .formBtn--mr {
  11213. margin-right: 0;
  11214. }
  11215. }
  11216. .calResult__note {
  11217. font-size: 0.75rem;
  11218. color: #AAAAAA;
  11219. }
  11220. .calFeeInCase h3 {
  11221. font-size: 1.125rem;
  11222. color: #707070;
  11223. }
  11224. .calFeeInCase__bg {
  11225. height: 290px;
  11226. background-repeat: no-repeat;
  11227. background-position: center;
  11228. background-size: cover;
  11229. -webkit-transition: all 300ms ease-in-out;
  11230. transition: all 300ms ease-in-out;
  11231. }
  11232. @media (max-width: 576px) {
  11233. .calFeeInCase__bg {
  11234. height: 210px;
  11235. }
  11236. }
  11237. .calFeeInCase img {
  11238. width: 100%;
  11239. }
  11240. .calFeeInCase ~ .btn-outline-secondary {
  11241. color: #727679;
  11242. border-color: #727679;
  11243. }
  11244. .calFeeInCase ~ .btn-outline-secondary:hover {
  11245. background-color: transparent;
  11246. }
  11247. .modal-body {
  11248. text-align: center;
  11249. }
  11250. .modal-body h4 {
  11251. font-weight: bold;
  11252. }
  11253. .modal-body p {
  11254. color: #727679;
  11255. }
  11256. .navbar.navbar-precise {
  11257. padding-bottom: 1rem;
  11258. }
  11259. .navbar-brand.navbar-brand-precise {
  11260. padding-bottom: 0;
  11261. }
  11262. .precise-head-wrapper {
  11263. font-size: 18px;
  11264. background-color: #FFF;
  11265. -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  11266. box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  11267. }
  11268. .precise-head-wrapper a:hover {
  11269. text-decoration: none;
  11270. }
  11271. .precise-content-wrapper {
  11272. font-size: 18px;
  11273. background-color: #FFF;
  11274. -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  11275. box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  11276. }
  11277. .precise-content-wrapper .precise-media-wrapper {
  11278. width: 100%;
  11279. }
  11280. .precise-content-wrapper .precise-media-wrapper:nth-child(1) {
  11281. border: 1px solid #4267b2;
  11282. }
  11283. .precise-content-wrapper .precise-media-wrapper:nth-child(1):hover {
  11284. background-color: #4267b2;
  11285. }
  11286. .precise-content-wrapper .precise-media-img {
  11287. width: 25%;
  11288. height: 36px;
  11289. border-right: 1px solid rgba(0, 0, 0, 0.12);
  11290. display: -webkit-box;
  11291. display: -ms-flexbox;
  11292. display: flex;
  11293. -webkit-box-pack: center;
  11294. -ms-flex-pack: center;
  11295. justify-content: center;
  11296. -webkit-box-align: center;
  11297. -ms-flex-align: center;
  11298. align-items: center;
  11299. }
  11300. .precise-content-wrapper .precise-media-img-item {
  11301. display: block;
  11302. }
  11303. .precise-content-wrapper .precise-media-img-item.after {
  11304. display: none;
  11305. }
  11306. .precise-media-wrapper:nth-child(1):hover .precise-media-img-item.before {
  11307. display: none;
  11308. }
  11309. .precise-media-wrapper:nth-child(1):hover .precise-media-img-item.after {
  11310. display: block;
  11311. }
  11312. .precise-media-wrapper:nth-child(1):hover .precise-media-context {
  11313. color: #fff;
  11314. }
  11315. .precise-content-wrapper .precise-media-context {
  11316. color: rgba(67, 72, 76, 0.75);
  11317. width: 75%;
  11318. display: -webkit-box;
  11319. display: -ms-flexbox;
  11320. display: flex;
  11321. -webkit-box-pack: center;
  11322. -ms-flex-pack: center;
  11323. justify-content: center;
  11324. -webkit-box-align: center;
  11325. -ms-flex-align: center;
  11326. align-items: center;
  11327. }
  11328. .precise-content-wrapper .form-control {
  11329. border-width: 1px;
  11330. height: calc(1.5em + 1.75rem + 4px);
  11331. }
  11332. .precise-content-wrapper .precise-form-items input::-ms-clear {
  11333. display: none;
  11334. }
  11335. .precise-content-wrapper .precise-form-items input::-ms-reveal {
  11336. display: none;
  11337. }
  11338. .precise-content-wrapper label {
  11339. color: rgba(0, 0, 0, 0.54);
  11340. }
  11341. .precise-content-wrapper .focus-status:focus {
  11342. border-color: #ced4da;
  11343. -webkit-box-shadow: none;
  11344. box-shadow: none;
  11345. }
  11346. .precise-content-wrapper .divider-wrapper .divider {
  11347. width: 1px;
  11348. height: 100%;
  11349. border-left: 1px solid rgba(0, 0, 0, 0.12);
  11350. position: relative;
  11351. }
  11352. .precise-content-wrapper .divider-wrapper .divider:after {
  11353. content: "";
  11354. display: block;
  11355. position: absolute;
  11356. top: 50%;
  11357. left: 50%;
  11358. -webkit-transform: translate(-50%, -50%);
  11359. transform: translate(-50%, -50%);
  11360. background-color: transparent;
  11361. color: rgba(110, 60, 60, 0.12);
  11362. padding: 6px;
  11363. }
  11364. @media screen and (max-width: 768px) {
  11365. .precise-content-wrapper .divider-wrapper .divider {
  11366. width: 100%;
  11367. height: 1px;
  11368. border-left: none;
  11369. margin: 32px 0;
  11370. border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  11371. }
  11372. .precise-content-wrapper .divider-wrapper .divider:after {
  11373. content: "";
  11374. display: block;
  11375. position: absolute;
  11376. top: 50%;
  11377. left: 50%;
  11378. -webkit-transform: translate(-50%, -50%);
  11379. transform: translate(-50%, -50%);
  11380. background-color: transparent;
  11381. color: rgba(0, 0, 0, 0.12);
  11382. padding: 6px;
  11383. }
  11384. }
  11385. .nb-mobile {
  11386. top: 66px;
  11387. bottom: 0;
  11388. -webkit-transform: translateX(-100vw);
  11389. transform: translateX(-100vw);
  11390. width: 100vw;
  11391. z-index: 1040;
  11392. background: #FFF;
  11393. position: absolute;
  11394. }
  11395. .nb-mobile.active {
  11396. top: 56px;
  11397. -webkit-transform: translateX(0);
  11398. transform: translateX(0);
  11399. bottom: 0;
  11400. width: 100vw;
  11401. overflow-x: hidden;
  11402. overflow-y: auto;
  11403. background: #FFF;
  11404. display: block;
  11405. position: fixed;
  11406. }
  11407. .nb-mobile .nb-mobile-arrow {
  11408. padding-left: 1rem;
  11409. padding-right: 1rem;
  11410. color: rgba(0, 0, 0, 0.87);
  11411. }
  11412. .nb-mobile .nb-mobile-arrow .fa-angle-up {
  11413. display: none;
  11414. }
  11415. .nb-mobile .nb-mobile-arrow .fa-angle-up.active {
  11416. display: block;
  11417. }
  11418. .nb-mobile .nb-mobile-arrow .fa-angle-down {
  11419. display: none;
  11420. }
  11421. .nb-mobile .nb-mobile-arrow .fa-angle-down.active {
  11422. display: block;
  11423. }
  11424. .nb-mobile .nb-mobile-secItem {
  11425. display: none;
  11426. }
  11427. .nb-mobile .nb-mobile-secItem.active {
  11428. display: block;
  11429. }
  11430. .nb-mobile ul {
  11431. padding-left: 0;
  11432. }
  11433. .nb-mobile ul li {
  11434. list-style: none;
  11435. font-family: Helvetica, Noto Sans TC, Roboto, "Microsoft JhengHei", Arial, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  11436. padding-left: 30px;
  11437. padding-right: 30px;
  11438. }
  11439. .nb-mobile ul li .single-section-head {
  11440. color: #34404B;
  11441. margin: 0;
  11442. padding: 0.5rem 0;
  11443. background: #FFF;
  11444. display: -webkit-box;
  11445. display: -ms-flexbox;
  11446. display: flex;
  11447. -webkit-box-pack: start;
  11448. -ms-flex-pack: start;
  11449. justify-content: flex-start;
  11450. -webkit-box-align: center;
  11451. -ms-flex-align: center;
  11452. align-items: center;
  11453. font-weight: bold !important;
  11454. }
  11455. .nb-mobile ul li .single-section-head:hover {
  11456. background-color: #F4F4F4;
  11457. }
  11458. .nb-mobile ul li .single-section-head.active {
  11459. color: #EE751B;
  11460. }
  11461. .nb-mobile ul li .single-section-head img {
  11462. margin-right: 5px;
  11463. }
  11464. .nb-mobile ul li .multi-section-head-sub-wrapper {
  11465. width: 100%;
  11466. display: -webkit-box;
  11467. display: -ms-flexbox;
  11468. display: flex;
  11469. -webkit-box-pack: center;
  11470. -ms-flex-pack: center;
  11471. justify-content: center;
  11472. -webkit-box-align: center;
  11473. -ms-flex-align: center;
  11474. align-items: center;
  11475. }
  11476. .nb-mobile ul li .multi-section-head-sub-wrapper:hover {
  11477. background: #F4F4F4;
  11478. }
  11479. .nb-mobile ul li .multi-section-head-sub-wrapper a {
  11480. width: 80%;
  11481. }
  11482. .nb-mobile ul li .multi-section-head {
  11483. display: -webkit-box;
  11484. display: -ms-flexbox;
  11485. display: flex;
  11486. -webkit-box-pack: center;
  11487. -ms-flex-pack: center;
  11488. justify-content: center;
  11489. -webkit-box-align: center;
  11490. -ms-flex-align: center;
  11491. align-items: center;
  11492. margin: 0;
  11493. font-weight: bold !important;
  11494. }
  11495. .nb-mobile ul li .multi-section-head.active {
  11496. color: #EE751B;
  11497. }
  11498. .nb-mobile ul li .multi-section-head img {
  11499. margin-right: 5px;
  11500. }
  11501. .nb-mobile ul li .multi-section-head-sub {
  11502. color: #34404B;
  11503. font-weight: 300;
  11504. margin: 0;
  11505. padding-left: 3rem;
  11506. }
  11507. .nb-mobile ul li .multi-section-head-sub:hover, .nb-mobile ul li .multi-section-head-sub.active {
  11508. background: #F4F4F4;
  11509. }
  11510. .nb-mobile ul li .multi-section-head-sub a {
  11511. color: #34404B;
  11512. }
  11513. .nb-mobile ul li .multi-section-head-sub--divider {
  11514. width: 100%;
  11515. height: 1px;
  11516. background-color: #D7D7D7;
  11517. margin: 0.2rem 0;
  11518. }
  11519. .nb-mobile .single-section-head-sub--divider {
  11520. width: 100%;
  11521. height: 1px;
  11522. background-color: #D7D7D7;
  11523. margin: 0.2rem 0;
  11524. }
  11525. .nb-mobile .multi-section-wrapper:active {
  11526. background-color: transparent;
  11527. }
  11528. .nb-mobile .multi-section {
  11529. padding: 0.5rem 0;
  11530. display: -webkit-box;
  11531. display: -ms-flexbox;
  11532. display: flex;
  11533. -webkit-box-pack: center;
  11534. -ms-flex-pack: center;
  11535. justify-content: center;
  11536. -webkit-box-align: center;
  11537. -ms-flex-align: center;
  11538. align-items: center;
  11539. width: 100%;
  11540. }
  11541. .nb-mobile .multi-section:hover {
  11542. background-color: #F4F4F4;
  11543. }
  11544. .nb-mobile .multi-section a {
  11545. display: -webkit-box;
  11546. display: -ms-flexbox;
  11547. display: flex;
  11548. width: 80%;
  11549. color: #34404B;
  11550. }
  11551. .nb-mobile .multi-section a.active {
  11552. color: #EE751B;
  11553. }
  11554. .nb-mobile ul a:hover {
  11555. text-decoration: none;
  11556. }
  11557. .nb-mobile .nb-mobile-arrow-third {
  11558. padding-left: 1rem;
  11559. padding-right: 1rem;
  11560. }
  11561. .nb-mobile .fa-arrow-third.is-rotate {
  11562. -webkit-transform: rotate(180deg);
  11563. transform: rotate(180deg);
  11564. }
  11565. .nb-mobile .nb-divider {
  11566. margin: 0.2rem 0;
  11567. border-bottom: 1px solid #D7D7D7;
  11568. }
  11569. .nb-mobile .nb-mobile-thdItem {
  11570. display: none;
  11571. }
  11572. .nb-mobile .nb-mobile-thdItem.is-show {
  11573. display: block;
  11574. }
  11575. .nb-mobile .nb-mobile-thdItem > a > li {
  11576. color: #34404B;
  11577. padding-left: 5rem;
  11578. margin: 0.2rem 0 0;
  11579. font-weight: 300;
  11580. }
  11581. .nb-mobile .nb-mobile-thdItem > a > li:hover, .nb-mobile .nb-mobile-thdItem > a > li.active {
  11582. background: #F4F4F4;
  11583. }
  11584. .nb-mobile .nb-mobile-thdItem .thd-menu--divider {
  11585. width: 100%;
  11586. height: 1px;
  11587. background-color: #D7D7D7;
  11588. margin: 0.2rem 0;
  11589. }
  11590. .footer-fix {
  11591. width: 100%;
  11592. background-color: #FFF;
  11593. z-index: 1029;
  11594. -webkit-box-shadow: 0 8px 15px 2px rgba(0, 0, 0, 0.12);
  11595. box-shadow: 0 8px 15px 2px rgba(0, 0, 0, 0.12);
  11596. }
  11597. .footer-fix .footer-fix-wrapper {
  11598. width: 20%;
  11599. text-align: center;
  11600. text-decoration: none;
  11601. }
  11602. .footer-fix .footer-fix-wrapper:active, .footer-fix .footer-fix-wrapper:visited {
  11603. background-color: #e6e6e6;
  11604. text-decoration: none;
  11605. }
  11606. .footer-fix .footer-fix-wrapper a:hover {
  11607. text-decoration: none;
  11608. }
  11609. .footer-fix .footer-fix-title {
  11610. margin-top: 5px;
  11611. color: #EE7800;
  11612. font-size: 13px;
  11613. }
  11614. .top-designer,
  11615. .search-bar,
  11616. .search-tab {
  11617. display: none;
  11618. }
  11619. /*# sourceMappingURL=all.css.map */