shell.html 452 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charSet="utf-8" />
  5. <meta name="viewport" content="width=device-width" />
  6. <link rel="manifest" href="./manifest.webmanifest" />
  7. <title>Interactive Shell - Android Web Toolbox</title>
  8. <script>document.domain = "cocorobo.cn"</script>
  9. <script>
  10. window.FabricConfig = window.FabricConfig || {};
  11. window.FabricConfig.serializedStylesheet = { "classNameToArgs": { "css-0": { "args": [[{ "overflow": "hidden !important" }]], "rules": ["&", "overflow:hidden !important;"] }, "css-1": { "args": [], "rules": ["keyframes", "from{opacity:0;}to{opacity:1;}"] }, "css-2": { "args": [], "rules": ["keyframes", "from{opacity:1;}to{opacity:0;}"] }, "css-3": { "args": [], "rules": ["keyframes", "from{transform:scale3d(1.15, 1.15, 1);}to{transform:scale3d(1, 1, 1);}"] }, "css-4": { "args": [], "rules": ["keyframes", "from{transform:scale3d(1, 1, 1);}to{transform:scale3d(0.9, 0.9, 1);}"] }, "css-5": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(-48px, 0, 0);}"] }, "css-6": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(48px, 0, 0);}"] }, "css-7": { "args": [], "rules": ["keyframes", "from{transform:translate3d(48px, 0, 0);}to{transform:translate3d(0, 0, 0);}"] }, "css-8": { "args": [], "rules": ["keyframes", "from{transform:translate3d(-48px, 0, 0);}to{transform:translate3d(0, 0, 0);}"] }, "css-9": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -48px, 0);}"] }, "css-10": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 48px, 0);}"] }, "css-11": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0, 48px, 0);}to{transform:translate3d(0, 0, 0);}"] }, "css-12": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0, -48px, 0);}to{transform:translate3d(0, 0, 0);}"] }, "css-13": { "args": [], "rules": ["keyframes", "from{opacity:1;}to{opacity:0;visibility:hidden;}"] }, "css-14": { "args": [], "rules": ["keyframes", "from{transform:translate3d(-10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-15": { "args": [], "rules": ["keyframes", "from{transform:translate3d(-20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-16": { "args": [], "rules": ["keyframes", "from{transform:translate3d(-40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-17": { "args": [], "rules": ["keyframes", "from{transform:translate3d(-400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-18": { "args": [], "rules": ["keyframes", "from{transform:translate3d(10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-19": { "args": [], "rules": ["keyframes", "from{transform:translate3d(20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-20": { "args": [], "rules": ["keyframes", "from{transform:translate3d(40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-21": { "args": [], "rules": ["keyframes", "from{transform:translate3d(400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-22": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-23": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-24": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,-10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-25": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,-20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}"] }, "css-26": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(10px,0,0);}"] }, "css-27": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(20px,0,0);}"] }, "css-28": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(40px,0,0);}"] }, "css-29": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(400px,0,0);}"] }, "css-30": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-10px,0,0);}"] }, "css-31": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-20px,0,0);}"] }, "css-32": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-40px,0,0);}"] }, "css-33": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-400px,0,0);}"] }, "css-34": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-10px,0);}"] }, "css-35": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-20px,0);}"] }, "css-36": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,10px,0);}"] }, "css-37": { "args": [], "rules": ["keyframes", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,20px,0);}"] }, "css-38": { "args": [], "rules": ["keyframes", "from{transform:scale3d(.98,.98,1);}to{transform:scale3d(1,1,1);}"] }, "css-39": { "args": [], "rules": ["keyframes", "from{transform:scale3d(1,1,1);}to{transform:scale3d(.98,.98,1);}"] }, "css-40": { "args": [], "rules": ["keyframes", "from{transform:scale3d(1.03,1.03,1);}to{transform:scale3d(1,1,1);}"] }, "css-41": { "args": [], "rules": ["keyframes", "from{transform:scale3d(1,1,1);}to{transform:scale3d(1.03,1.03,1);}"] }, "css-42": { "args": [], "rules": ["keyframes", "from{transform:rotateZ(0deg);}to{transform:rotateZ(90deg);}"] }, "css-43": { "args": [], "rules": ["keyframes", "from{transform:rotateZ(0deg);}to{transform:rotateZ(-90deg);}"] }, "css-44": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-45": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-46": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-47": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-48": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-49": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-50": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-51": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-52": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-53": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-54": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-55": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-56": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-57": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-58": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-59": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-60": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-61": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-62": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-63": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-64": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-65": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-66": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-67": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-68": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-69": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-70": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-71": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-72": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-73": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-74": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-75": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-76": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-77": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-78": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-79": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI Light'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-80": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiLight'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-81": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-82": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiBold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-83": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI Bold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-84": { "args": [], "rules": ["font-face", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-85": { "args": [], "rules": ["font-face", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-86": { "args": [], "rules": ["font-face", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-87": { "args": [], "rules": ["font-face", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-88": { "args": [], "rules": ["font-face", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-89": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-90": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-91": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-92": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-93": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-94": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-95": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;"] }, "css-96": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;"] }, "css-97": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-98": { "args": [], "rules": ["font-face", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;"] }, "css-99": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;"] }, "css-100": { "args": [], "rules": ["font-face", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;"] }, "css-101": { "args": [[{ "animationName": "css-1,css-22", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "animation-name:css-1,css-22;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "css-102": { "args": [[{ "animationName": "css-1,css-24", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "animation-name:css-1,css-24;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "css-103": { "args": [[{ "animationName": "css-1,css-18", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "animation-name:css-1,css-18;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "css-104": { "args": [[{ "animationName": "css-1,css-14", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "animation-name:css-1,css-14;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "root-105": { "args": [{ "displayName": "root" }, [{ "display": "inline-block" }]], "rules": ["&", "display:inline-block;"] }, "placeholder-106": { "args": [{ "displayName": "placeholder" }, [{ "width": "1em" }]], "rules": ["&", "width:1em;"] }, "image-107": { "args": [{ "displayName": "image" }, [{ "overflow": "hidden" }]], "rules": ["&", "overflow:hidden;"] }, "css-108": { "args": [], "rules": ["keyframes", "100%{width:0px;height:0px;overflow:hidden;}99.9%{width:100%;height:28px;overflow:visible;}0%{width:100%;height:28px;overflow:visible;}"] }, "title-container-109": { "args": [{ "displayName": "title-container" }, [{ "borderBottom": "1px solid rgb(243, 242, 241)" }]], "rules": ["&", "border-bottom:1px solid rgb(243, 242, 241);"] }, "title-110": { "args": [{ "displayName": "title" }, [{ "padding": "4px 0", "fontSize": 20, "textAlign": "center" }]], "rules": ["&", "padding-top:4px;padding-right:0;padding-bottom:4px;padding-left:0;font-size:20px;text-align:center;"] }, "left-column-111": { "args": [{ "displayName": "left-column" }, [{ "width": 270, "paddingRight": 8, "borderRight": "1px solid rgb(243, 242, 241)", "overflow": "auto" }]], "rules": ["&", "width:270px;padding-right:8px;border-right:1px solid rgb(243, 242, 241);overflow:auto;"] }, "right-column-112": { "args": [{ "displayName": "right-column" }, [{ "borderLeft": "1px solid rgb(243, 242, 241)" }]], "rules": ["&", "border-left:1px solid rgb(243, 242, 241);"] }, "left-column-113": { "args": [[{ "displayName": "left-column" }, { "width": 270, "paddingRight": 8, "borderRight": "1px solid rgb(243, 242, 241)", "overflow": "auto" }, { "display": "none" }]], "rules": ["&", "width:270px;padding-right:8px;border-right:1px solid rgb(243, 242, 241);overflow:auto;display:none;"] }, "css-114": { "args": [[{ "display": "flex", "flexDirection": "column", "flexWrap": "nowrap", "width": "auto", "height": "100%", "boxSizing": "border-box", "> *": { "textOverflow": "ellipsis" } }]], "rules": ["&", "display:flex;flex-direction:column;flex-wrap:nowrap;width:auto;height:100%;box-sizing:border-box;", "& > *", "text-overflow:ellipsis;"] }, "title-container-115": { "args": [[{ "display": "flex", "flexDirection": "row", "flexWrap": "nowrap", "width": "auto", "height": "auto", "boxSizing": "border-box", "> *": { "textOverflow": "ellipsis" } }, { "alignItems": "center" }, { "displayName": "title-container" }, { "borderBottom": "1px solid rgb(243, 242, 241)" }, { "displayName": "title-container" }, { "borderBottom": "1px solid rgb(243, 242, 241)" }]], "rules": ["&", "display:flex;flex-direction:row;flex-wrap:nowrap;width:auto;height:auto;box-sizing:border-box;align-items:center;border-bottom:1px solid rgb(243, 242, 241);", "& > *", "text-overflow:ellipsis;"] }, "root-116": { "args": [{ "displayName": "root" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "border": "1px solid #8a8886", "borderRadius": "2px", "boxSizing": "border-box", "cursor": "pointer", "display": "inline-block", "margin": 0, "padding": "0 16px", "textDecoration": "none", "textAlign": "center", "userSelect": "none", "selectors": { ":active > span": { "position": "relative", "left": 0, "top": 0 } } }, { "padding": "0 4px", "width": "32px", "height": "32px", "backgroundColor": "transparent", "border": "none", "color": "#0078d4" }, { "selectors": { ":hover": { "color": "#106ebe", "backgroundColor": "#f3f2f1", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "Highlight", "color": "Highlight" } } }, ":active": { "color": "#005a9e", "backgroundColor": "#edebe9" } } }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:none;border-radius:2px;box-sizing:border-box;cursor:pointer;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:4px;padding-bottom:0;padding-left:4px;text-decoration:none;text-align:center;user-select:none;width:32px;height:32px;background-color:transparent;color:#0078d4;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:1px solid transparent;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;", "&:active > span", "position:relative;left:0px;top:0px;", "&:hover", "color:#106ebe;background-color:#f3f2f1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "border-color:Highlight;color:Highlight;", "&:hover .ms-Button-label", "", "&:hover .ms-Button-icon", "", "&:hover .ms-Button-description", "", "&:hover .ms-Button-menuIcon", "", "&:focus", "", "&:active", "color:#005a9e;background-color:#edebe9;", "&:active .ms-Button-icon", "", "&:active .ms-Button-description", "", "&:active .ms-Button-menuIcon", ""] }, "flexContainer-117": { "args": [{ "displayName": "flexContainer" }, [{ "display": "flex", "height": "100%", "flexWrap": "nowrap", "justifyContent": "center", "alignItems": "center" }]], "rules": ["&", "display:flex;height:100%;flex-wrap:nowrap;justify-content:center;align-items:center;"] }, "textContainer-118": { "args": [{ "displayName": "textContainer" }, [{ "flexGrow": 1, "display": "block" }]], "rules": ["&", "flex-grow:1;display:block;"] }, "icon-119": { "args": [{ "displayName": "icon" }, [{ "fontSize": "16px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }]], "rules": ["&", "font-size:16px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;"] }, "label-120": { "args": [{ "displayName": "label" }, [{ "margin": "0 4px", "lineHeight": "100%", "display": "block" }]], "rules": ["&", "margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;line-height:100%;display:block;"] }, "menuIcon-121": { "args": [{ "displayName": "menuIcon" }, [{ "fontSize": "12px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }, { "selectors": {} }]], "rules": ["&", "font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;", "&:hover", "", "&:active", ""] }, "description-122": { "args": [{ "displayName": "description" }, [{ "display": "block" }]], "rules": ["&", "display:block;"] }, "screenReaderText-123": { "args": [{ "displayName": "screenReaderText" }, [{ "position": "absolute", "width": 1, "height": 1, "margin": -1, "padding": 0, "border": 0, "overflow": "hidden", "whiteSpace": "nowrap" }]], "rules": ["&", "position:absolute;width:1px;height:1px;margin-top:-1px;margin-right:-1px;margin-bottom:-1px;margin-left:-1px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;border:0px;overflow:hidden;white-space:nowrap;"] }, "css-124": { "args": [[{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "flexBasis": "auto", "height": "auto", "width": "auto" }, { "flexGrow": 1 }, { "flexShrink": 1 }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-grow:1;flex-shrink:1;"] }, "css-125": { "args": [[{ "display": "flex", "flexDirection": "row", "flexWrap": "nowrap", "width": "auto", "height": "100%", "boxSizing": "border-box", "> *": { "textOverflow": "ellipsis" } }, { "> *:not(.ms-StackItem)": { "flexShrink": 0 } }, { "flexGrow": 1 }, { "minHeight": 0, "overflow": "hidden", "lineHeight": "1.5" }]], "rules": ["&", "display:flex;flex-direction:row;flex-wrap:nowrap;width:auto;height:100%;box-sizing:border-box;flex-grow:1;min-height:0px;overflow:hidden;line-height:1.5;", "& > *", "text-overflow:ellipsis;", "& > *:not(.ms-StackItem)", "flex-shrink:0;"] }, "left-column-126": { "args": [[{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "flexBasis": "auto", "height": "auto", "width": "auto" }, { "flexShrink": 0 }, { "displayName": "left-column" }, { "width": 270, "paddingRight": 8, "borderRight": "1px solid rgb(243, 242, 241)", "overflow": "auto" }, { "display": "none" }, { "displayName": "left-column" }, { "width": 270, "paddingRight": 8, "borderRight": "1px solid rgb(243, 242, 241)", "overflow": "auto" }, { "display": "none" }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:270px;flex-shrink:0;padding-right:8px;border-right:1px solid rgb(243, 242, 241);overflow:auto;display:none;"] }, "css-127": { "args": [[{ "display": "flex", "flexDirection": "column", "flexWrap": "nowrap", "width": "auto", "height": "auto", "padding": "0 0 8px 8px", "boxSizing": "border-box", "> *": { "textOverflow": "ellipsis" } }, { "> *:not(:first-child)": { "marginTop": "8px" } }]], "rules": ["&", "display:flex;flex-direction:column;flex-wrap:nowrap;width:auto;height:auto;padding-top:0;padding-right:0;padding-bottom:8px;padding-left:8px;box-sizing:border-box;", "& > *", "text-overflow:ellipsis;", "& > *:not(:first-child)", "margin-top:8px;"] }, "dropdown-128": { "args": [{ "displayName": "dropdown" }, [{ "boxShadow": "none", "margin": 0, "padding": 0, "boxSizing": "border-box" }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "color": "#323130", "borderColor": "#605e5c", "position": "relative", "outline": 0, "userSelect": "none", "selectors": { "&:hover .ms-Dropdown-title": [false, { "borderColor": "#323130" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "Highlight" } } }], "&:focus .ms-Dropdown-title": [false, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } }], "&:focus:after": [{ "pointerEvents": "none", "content": "''", "position": "absolute", "boxSizing": "border-box", "top": "0px", "left": "0px", "width": "100%", "height": "100%", "border": "none", "borderRadius": "2px", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } }], "&:active .ms-Dropdown-title": [false, { "borderColor": "#0078d4" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "Highlight" } } }], "&:hover .ms-Dropdown-caretDown": false, "&:focus .ms-Dropdown-caretDown": [false, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } }], "&:active .ms-Dropdown-caretDown": false, "&:hover .ms-Dropdown-titleIsPlaceHolder": false, "&:focus .ms-Dropdown-titleIsPlaceHolder": false, "&:active .ms-Dropdown-titleIsPlaceHolder": false, "&:hover .ms-Dropdown-title--hasError": { "borderColor": "#a4262c" }, "&:active .ms-Dropdown-title--hasError": { "borderColor": "#a4262c" } } }, { "width": "100%" }]], "rules": ["&", "box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;box-sizing:border-box;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;color:#323130;border-color:#605e5c;position:relative;outline:0px;user-select:none;width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&:hover .ms-Dropdown-title", "border-color:#323130;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover .ms-Dropdown-title", "border-color:Highlight;", "&:focus .ms-Dropdown-title", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus .ms-Dropdown-title", "color:Highlight;", "&:focus:after", "pointer-events:none;content:'';position:absolute;box-sizing:border-box;top:0px;left:0px;width:100%;height:100%;border:none;border-radius:2px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus:after", "color:Highlight;", "&:active .ms-Dropdown-title", "border-color:#0078d4;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active .ms-Dropdown-title", "border-color:Highlight;", "&:hover .ms-Dropdown-caretDown", "", "&:focus .ms-Dropdown-caretDown", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus .ms-Dropdown-caretDown", "color:Highlight;", "&:active .ms-Dropdown-caretDown", "", "&:hover .ms-Dropdown-titleIsPlaceHolder", "", "&:focus .ms-Dropdown-titleIsPlaceHolder", "", "&:active .ms-Dropdown-titleIsPlaceHolder", "", "&:hover .ms-Dropdown-title--hasError", "border-color:#a4262c;", "&:active .ms-Dropdown-title--hasError", "border-color:#a4262c;"] }, "title-129": { "args": [{ "displayName": "title" }, [{ "boxShadow": "none", "margin": 0, "padding": 0, "boxSizing": "border-box" }, { "backgroundColor": "#ffffff", "borderWidth": 1, "borderStyle": "solid", "borderColor": "#605e5c", "borderRadius": "2px", "cursor": "pointer", "display": "block", "height": 32, "lineHeight": 30, "padding": "0 28px 0 8px", "position": "relative", "overflow": "hidden", "whiteSpace": "nowrap", "textOverflow": "ellipsis" }, { "color": "#605e5c" }, { "backgroundColor": "#f3f2f1", "border": "none", "color": "#a19f9d", "cursor": "default", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": "1px solid GrayText", "color": "GrayText", "backgroundColor": "Window", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }]], "rules": ["&", "box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:28px;padding-bottom:0;padding-left:8px;box-sizing:border-box;background-color:#f3f2f1;border-width:1px;border-style:solid;border-color:#605e5c;border-radius:2px;cursor:default;display:block;height:32px;line-height:30px;position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#a19f9d;border:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:1px solid GrayText;color:GrayText;background-color:Window;forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "caretDownWrapper-130": { "args": [{ "displayName": "caretDownWrapper" }, [{ "height": 32, "lineHeight": 30, "paddingTop": 1, "position": "absolute", "right": 8, "top": 0 }]], "rules": ["&", "height:32px;line-height:30px;padding-top:1px;position:absolute;right:8px;top:0px;"] }, "caretDown-131": { "args": [{ "displayName": "caretDown" }, [{ "color": "#605e5c", "fontSize": "12px", "pointerEvents": "none" }, { "color": "#a19f9d", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }]], "rules": ["&", "color:#a19f9d;font-size:12px;pointer-events:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "errorMessage-132": { "args": [{ "displayName": "errorMessage" }, [{ "color": "#a4262c", "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "12px", "fontWeight": 400, "paddingTop": 5 }]], "rules": ["&", "color:#a4262c;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:12px;font-weight:400;padding-top:5px;"] }, "callout-133": { "args": [{ "displayName": "callout" }, [{ "boxShadow": "0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)", "borderRadius": "2px 2px 0 0", "selectors": { ".ms-Callout-main": { "borderRadius": "2px 2px 0 0" } } }]], "rules": ["&", "box-shadow:0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);border-radius:2px 2px 0 0;", "& .ms-Callout-main", "border-radius:2px 2px 0 0;"] }, "dropdownItemsWrapper-134": { "args": [{ "displayName": "dropdownItemsWrapper" }, [{ "selectors": { "&:focus": { "outline": 0 } } }]], "rules": ["&", "", "&:focus", "outline:0px;"] }, "dropdownItems-135": { "args": [{ "displayName": "dropdownItems" }, [{ "display": "block" }]], "rules": ["&", "display:block;"] }, "dropdownItem-136": { "args": [{ "displayName": "dropdownItem" }, [{ "backgroundColor": "transparent", "boxSizing": "border-box", "cursor": "pointer", "display": "flex", "alignItems": "center", "padding": "0 8px", "width": "100%", "minHeight": 36, "lineHeight": 20, "height": 0, "position": "relative", "border": "1px solid transparent", "borderRadius": 0, "wordWrap": "break-word", "overflowWrap": "break-word", "textAlign": "left", ".ms-Button-flexContainer": { "width": "100%" } }, { "selectors": { "&:hover": [{ "color": "#201f1e", "backgroundColor": "#f3f2f1" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }], "&.is-multi-select:hover": [{ "backgroundColor": "transparent" }], "&:active:hover": [{ "color": "#201f1e", "backgroundColor": "#edebe9" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }], ".ms-Fabric--isFocusVisible &:focus:after": { "left": 0, "top": 0, "bottom": 0, "right": 0 }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": "none" } } }]], "rules": ["&", "background-color:transparent;box-sizing:border-box;cursor:pointer;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;", "& .ms-Button-flexContainer", "width:100%;", "&:hover", "color:#201f1e;background-color:#f3f2f1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:hover", "forced-color-adjust:none;-ms-high-contrast-adjust:none;", "&.is-multi-select:hover", "background-color:transparent;", "&:active:hover", "color:#201f1e;background-color:#edebe9;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active:hover", "background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:active:hover", "forced-color-adjust:none;-ms-high-contrast-adjust:none;", ".ms-Fabric--isFocusVisible &:focus:after", "left:0px;top:0px;bottom:0px;right:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:none;"] }, "dropdownItemSelected-137": { "args": [{ "displayName": "dropdownItemSelected" }, [{ "backgroundColor": "transparent", "boxSizing": "border-box", "cursor": "pointer", "display": "flex", "alignItems": "center", "padding": "0 8px", "width": "100%", "minHeight": 36, "lineHeight": 20, "height": 0, "position": "relative", "border": "1px solid transparent", "borderRadius": 0, "wordWrap": "break-word", "overflowWrap": "break-word", "textAlign": "left", ".ms-Button-flexContainer": { "width": "100%" } }, { "backgroundColor": "#edebe9", "color": "#201f1e" }, { "selectors": { "&:hover": [{ "color": "#201f1e", "backgroundColor": "#edebe9" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }], "&.is-multi-select:hover": [{ "backgroundColor": "#edebe9" }], "&:active:hover": [{ "color": "#201f1e", "backgroundColor": "#f3f2f1" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }], ".ms-Fabric--isFocusVisible &:focus:after": { "left": 0, "top": 0, "bottom": 0, "right": 0 }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": "none" } } }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }]], "rules": ["&", "background-color:#edebe9;box-sizing:border-box;cursor:pointer;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;color:#201f1e;", "& .ms-Button-flexContainer", "width:100%;", "&:hover", "color:#201f1e;background-color:#edebe9;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:hover", "forced-color-adjust:none;-ms-high-contrast-adjust:none;", "&.is-multi-select:hover", "background-color:#edebe9;", "&:active:hover", "color:#201f1e;background-color:#f3f2f1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active:hover", "background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:active:hover", "forced-color-adjust:none;-ms-high-contrast-adjust:none;", ".ms-Fabric--isFocusVisible &:focus:after", "left:0px;top:0px;bottom:0px;right:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:none;background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&", "forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "dropdownItemDisabled-138": { "args": [{ "displayName": "dropdownItemDisabled" }, [{ "backgroundColor": "transparent", "boxSizing": "border-box", "cursor": "pointer", "display": "flex", "alignItems": "center", "padding": "0 8px", "width": "100%", "minHeight": 36, "lineHeight": 20, "height": 0, "position": "relative", "border": "1px solid transparent", "borderRadius": 0, "wordWrap": "break-word", "overflowWrap": "break-word", "textAlign": "left", ".ms-Button-flexContainer": { "width": "100%" } }, { "color": "#a19f9d", "cursor": "default", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "border": "none" } } }]], "rules": ["&", "background-color:transparent;box-sizing:border-box;cursor:default;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;color:#a19f9d;", "& .ms-Button-flexContainer", "width:100%;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;border:none;"] }, "dropdownItemSelectedAndDisabled-139": { "args": [{ "displayName": "dropdownItemSelectedAndDisabled" }, [{ "backgroundColor": "transparent", "boxSizing": "border-box", "cursor": "pointer", "display": "flex", "alignItems": "center", "padding": "0 8px", "width": "100%", "minHeight": 36, "lineHeight": 20, "height": 0, "position": "relative", "border": "1px solid transparent", "borderRadius": 0, "wordWrap": "break-word", "overflowWrap": "break-word", "textAlign": "left", ".ms-Button-flexContainer": { "width": "100%" } }, { "backgroundColor": "#edebe9", "color": "#201f1e" }, { "selectors": { "&:hover": [{ "color": "#201f1e", "backgroundColor": "#edebe9" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }], "&.is-multi-select:hover": [{ "backgroundColor": "#edebe9" }], "&:active:hover": [{ "color": "#201f1e", "backgroundColor": "#f3f2f1" }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }], ".ms-Fabric--isFocusVisible &:focus:after": { "left": 0, "top": 0, "bottom": 0, "right": 0 }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": "none" } } }, { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Highlight", "borderColor": "Highlight", "color": "HighlightText" }, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light)": { "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }, { "backgroundColor": "transparent", "boxSizing": "border-box", "cursor": "pointer", "display": "flex", "alignItems": "center", "padding": "0 8px", "width": "100%", "minHeight": 36, "lineHeight": 20, "height": 0, "position": "relative", "border": "1px solid transparent", "borderRadius": 0, "wordWrap": "break-word", "overflowWrap": "break-word", "textAlign": "left", ".ms-Button-flexContainer": { "width": "100%" } }, { "color": "#a19f9d", "cursor": "default", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "border": "none" } } }, { "backgroundColor": "transparent" }]], "rules": ["&", "background-color:transparent;box-sizing:border-box;cursor:default;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;color:#a19f9d;", "& .ms-Button-flexContainer", "width:100%;", "&:hover", "color:#201f1e;background-color:#edebe9;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:hover", "forced-color-adjust:none;-ms-high-contrast-adjust:none;", "&.is-multi-select:hover", "background-color:#edebe9;", "&:active:hover", "color:#201f1e;background-color:#f3f2f1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active:hover", "background-color:Highlight;border-color:Highlight;color:HighlightText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:active:hover", "forced-color-adjust:none;-ms-high-contrast-adjust:none;", ".ms-Fabric--isFocusVisible &:focus:after", "left:0px;top:0px;bottom:0px;right:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:none;background-color:Highlight;border-color:Highlight;color:GrayText;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&", "forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "dropdownItemHidden-140": { "args": [{ "displayName": "dropdownItemHidden" }, [{ "backgroundColor": "transparent", "boxSizing": "border-box", "cursor": "pointer", "display": "flex", "alignItems": "center", "padding": "0 8px", "width": "100%", "minHeight": 36, "lineHeight": 20, "height": 0, "position": "relative", "border": "1px solid transparent", "borderRadius": 0, "wordWrap": "break-word", "overflowWrap": "break-word", "textAlign": "left", ".ms-Button-flexContainer": { "width": "100%" } }, { "display": "none" }]], "rules": ["&", "background-color:transparent;box-sizing:border-box;cursor:pointer;display:none;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;", "& .ms-Button-flexContainer", "width:100%;"] }, "dropdownDivider-141": { "args": [{ "displayName": "dropdownDivider" }, [{ "height": 1, "backgroundColor": "#edebe9" }]], "rules": ["&", "height:1px;background-color:#edebe9;"] }, "dropdownDividerHidden-142": { "args": [{ "displayName": "dropdownDividerHidden" }, [{ "display": "none" }]], "rules": ["&", "display:none;"] }, "dropdownOptionText-143": { "args": [{ "displayName": "dropdownOptionText" }, [{ "overflow": "hidden", "whiteSpace": "nowrap", "textOverflow": "ellipsis", "minWidth": 0, "maxWidth": "100%", "wordWrap": "break-word", "overflowWrap": "break-word", "margin": "1px" }]], "rules": ["&", "overflow:hidden;white-space:nowrap;text-overflow:ellipsis;min-width:0px;max-width:100%;word-wrap:break-word;overflow-wrap:break-word;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;"] }, "dropdownItemHeader-144": { "args": [{ "displayName": "dropdownItemHeader" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 600, "color": "#0078d4", "background": "none", "backgroundColor": "transparent", "border": "none", "height": 36, "lineHeight": 36, "cursor": "default", "padding": "0 8px", "userSelect": "none", "textAlign": "left", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;color:#0078d4;background:none;background-color:transparent;border:none;height:36px;line-height:36px;cursor:default;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;user-select:none;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "dropdownItemHeaderHidden-145": { "args": [{ "displayName": "dropdownItemHeaderHidden" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 600, "color": "#0078d4", "background": "none", "backgroundColor": "transparent", "border": "none", "height": 36, "lineHeight": 36, "cursor": "default", "padding": "0 8px", "userSelect": "none", "textAlign": "left", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }, { "display": "none" }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;color:#0078d4;background:none;background-color:transparent;border:none;height:36px;line-height:36px;cursor:default;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;user-select:none;text-align:left;display:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "root-146": { "args": [{ "displayName": "root" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "fontWeight": 600, "color": "#323130", "boxSizing": "border-box", "boxShadow": "none", "margin": 0, "display": "block", "padding": "5px 0", "wordWrap": "break-word", "overflowWrap": "break-word" }, { "color": "#a19f9d", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }, { "display": "inline-block" }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;color:#a19f9d;box-sizing:border-box;box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;display:inline-block;padding-top:5px;padding-right:0;padding-bottom:5px;padding-left:0;word-wrap:break-word;overflow-wrap:break-word;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "caretDown-147": { "args": [{ "displayName": "root" }, [{ "displayName": "root" }, { "display": "inline-block" }, { "displayName": "caretDown" }, { "color": "#605e5c", "fontSize": "12px", "pointerEvents": "none" }, { "color": "#a19f9d", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } }]], "rules": ["&", "display:inline-block;color:#a19f9d;font-size:12px;pointer-events:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;"] }, "css-148": { "args": [[{ "display": "flex", "flexDirection": "row", "flexWrap": "nowrap", "width": "auto", "height": "auto", "boxSizing": "border-box", "> *": { "textOverflow": "ellipsis" } }]], "rules": ["&", "display:flex;flex-direction:row;flex-wrap:nowrap;width:auto;height:auto;box-sizing:border-box;", "& > *", "text-overflow:ellipsis;"] }, "root-149": { "args": [{ "displayName": "root" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "border": "1px solid #8a8886", "borderRadius": "2px", "boxSizing": "border-box", "cursor": "pointer", "display": "inline-block", "margin": 0, "padding": "0 16px", "textDecoration": "none", "textAlign": "center", "userSelect": "none", "selectors": { ":active > span": { "position": "relative", "left": 0, "top": 0 } } }, { "minWidth": "80px", "height": "32px" }, { "backgroundColor": "#0078d4", "border": "1px solid #0078d4", "color": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Window", "backgroundColor": "WindowText", "borderColor": "WindowText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" }, ".ms-Fabric--isFocusVisible &:focus": { "selectors": { ":after": { "border": "none", "outlineColor": "#ffffff" } } } } }, { "width": "100%" }, { "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "backgroundColor": "#f3f2f1", "borderColor": "#f3f2f1", "color": "#a19f9d", "cursor": "default", "selectors": { ":hover": { "outline": 0 }, ":focus": { "outline": 0 } } }, { "color": "#d2d0ce", "backgroundColor": "#f3f2f1", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "borderColor": "GrayText", "backgroundColor": "Window" } } }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:1px solid #0078d4;border-radius:2px;box-sizing:border-box;cursor:default;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:16px;padding-bottom:0;padding-left:16px;text-decoration:none;text-align:center;user-select:none;min-width:80px;height:32px;background-color:#f3f2f1;color:#d2d0ce;width:100%;border-color:#f3f2f1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:1px solid transparent;outline:1px solid #605e5c;z-index:1;outline-color:#ffffff;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;", "&:active > span", "position:relative;left:0px;top:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;background-color:Window;border-color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;", ".ms-Fabric--isFocusVisible &:focus", "", "&:hover", "outline:0px;", "&:focus", "outline:0px;"] }, "icon-150": { "args": [{ "displayName": "icon" }, [{ "fontSize": "16px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }, { "color": "#a19f9d", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText" } } }]], "rules": ["&", "font-size:16px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#a19f9d;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;"] }, "label-151": { "args": [{ "displayName": "label" }, [{ "margin": "0 4px", "lineHeight": "100%", "display": "block" }, { "fontWeight": 600 }]], "rules": ["&", "margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;line-height:100%;display:block;font-weight:600;"] }, "menuIcon-152": { "args": [{ "displayName": "menuIcon" }, [{ "fontSize": "12px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }, { "color": "#a19f9d", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText" } } }]], "rules": ["&", "font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#a19f9d;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:GrayText;"] }, "root-153": { "args": [{ "displayName": "root" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "border": "1px solid #8a8886", "borderRadius": "2px", "boxSizing": "border-box", "cursor": "pointer", "display": "inline-block", "margin": 0, "padding": "0 16px", "textDecoration": "none", "textAlign": "center", "userSelect": "none", "selectors": { ":active > span": { "position": "relative", "left": 0, "top": 0 } } }, { "minWidth": "80px", "height": "32px" }, { "backgroundColor": "#0078d4", "border": "1px solid #0078d4", "color": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Window", "backgroundColor": "WindowText", "borderColor": "WindowText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" }, ".ms-Fabric--isFocusVisible &:focus": { "selectors": { ":after": { "border": "none", "outlineColor": "#ffffff" } } } } }, { "width": "100%" }, { "selectors": { ":hover": { "backgroundColor": "#106ebe", "border": "1px solid #106ebe", "color": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Window", "backgroundColor": "Highlight", "borderColor": "Highlight" } } }, ":active": { "backgroundColor": "#005a9e", "border": "1px solid #005a9e", "color": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Window", "backgroundColor": "WindowText", "borderColor": "WindowText", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" } } } } }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:1px solid #0078d4;border-radius:2px;box-sizing:border-box;cursor:pointer;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:16px;padding-bottom:0;padding-left:16px;text-decoration:none;text-align:center;user-select:none;min-width:80px;height:32px;background-color:#0078d4;color:#ffffff;width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:none;outline:1px solid #605e5c;z-index:1;outline-color:#ffffff;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;", "&:active > span", "position:relative;left:0px;top:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "color:Window;background-color:WindowText;border-color:WindowText;forced-color-adjust:none;-ms-high-contrast-adjust:none;", ".ms-Fabric--isFocusVisible &:focus", "", "&:hover", "background-color:#106ebe;border:1px solid #106ebe;color:#ffffff;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "color:Window;background-color:Highlight;border-color:Highlight;", "&:hover .ms-Button-label", "", "&:hover .ms-Button-icon", "", "&:hover .ms-Button-description", "", "&:hover .ms-Button-menuIcon", "", "&:focus", "", "&:active", "background-color:#005a9e;border:1px solid #005a9e;color:#ffffff;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active", "color:Window;background-color:WindowText;border-color:WindowText;forced-color-adjust:none;-ms-high-contrast-adjust:none;", "&:active .ms-Button-icon", "", "&:active .ms-Button-description", "", "&:active .ms-Button-menuIcon", ""] }, "css-154": { "args": [[{ "backgroundColor": "#0078d4", "color": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Canvas" }, ":hover": { "backgroundColor": "#106ebe", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } } } }, { "padding": 6, "height": "auto", "boxSizing": "border-box", "borderRadius": 0, "borderTopRightRadius": "2px", "borderBottomRightRadius": "2px", "border": "1px solid #8a8886", "borderLeft": "none", "outline": "transparent", "userSelect": "none", "display": "inline-block", "textDecoration": "none", "textAlign": "center", "cursor": "pointer", "verticalAlign": "top", "width": 32, "marginLeft": -1, "marginTop": 0, "marginRight": 0, "marginBottom": 0, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { ".ms-Button-menuIcon": { "color": "WindowText" } } }]], "rules": ["&", "background-color:#0078d4;color:#ffffff;padding-top:6px;padding-right:6px;padding-bottom:6px;padding-left:6px;height:auto;box-sizing:border-box;border-radius:0px;border-top-right-radius:2px;border-bottom-right-radius:2px;border:1px solid #8a8886;border-left:none;outline:transparent;user-select:none;display:inline-block;text-decoration:none;text-align:center;cursor:pointer;vertical-align:top;width:32px;margin-left:-1px;margin-top:0px;margin-right:0px;margin-bottom:0px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "background-color:Canvas;", "&:hover", "background-color:#106ebe;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "color:Highlight;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button-menuIcon", "color:WindowText;"] }, "css-155": { "args": [[{ "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": "none" } } }, { "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 3, "top": 3, "bottom": 3, "right": 3, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "border": "none" } } } } }, { "display": "inline-flex", "selectors": { ".ms-Button--default": { "borderTopRightRadius": "0", "borderBottomRightRadius": "0", "borderRight": "none", "flexGrow": "1" }, ".ms-Button--primary": { "borderTopRightRadius": "0", "borderBottomRightRadius": "0", "border": "none", "flexGrow": "1", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "WindowText", "backgroundColor": "Window", "border": "1px solid WindowText", "borderRightWidth": "0", "forcedColorAdjust": "none", "MsHighContrastAdjust": "none" }, ":hover": { "border": "none" }, ":active": { "border": "none" } } }, ".ms-Button--primary + .ms-Button": { "border": "none", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": "1px solid WindowText", "borderLeftWidth": "0" } } } } }, { "selectors": { ":hover": { "selectors": { ".ms-Button--primary": { "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Window", "backgroundColor": "Highlight" } } }, ".ms-Button.is-disabled": { "color": "#a19f9d", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "GrayText", "borderColor": "GrayText", "backgroundColor": "Window" } } } } }, ":focus": { "outline": "none!important" } } }]], "rules": ["&", "outline:transparent;position:relative;display:inline-flex;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:3px;top:3px;bottom:3px;right:3px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;border:none;", "& .ms-Button--default", "border-top-right-radius:0;border-bottom-right-radius:0;border-right:none;flex-grow:1;", "& .ms-Button--primary", "border-top-right-radius:0;border-bottom-right-radius:0;border:none;flex-grow:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button--primary", "color:WindowText;background-color:Window;border:1px solid WindowText;border-right-width:0;forced-color-adjust:none;-ms-high-contrast-adjust:none;", "& .ms-Button--primary:hover", "border:none;", "& .ms-Button--primary:active", "border:none;", "& .ms-Button--primary + .ms-Button", "border:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button--primary + .ms-Button", "border:1px solid WindowText;border-left-width:0;", "&:hover", "", "&:hover .ms-Button--primary", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover .ms-Button--primary", "color:Window;background-color:Highlight;", "&:hover .ms-Button.is-disabled", "color:#a19f9d;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover .ms-Button.is-disabled", "color:GrayText;border-color:GrayText;background-color:Window;", "&:focus", "outline:none!important;"] }, "css-156": { "args": [[{ "color": "#ffffff" }]], "rules": ["&", "color:#ffffff;"] }, "css-157": { "args": [[{ "display": "flex", "height": "100%", "flexWrap": "nowrap", "justifyContent": "center", "alignItems": "center" }]], "rules": ["&", "display:flex;height:100%;flex-wrap:nowrap;justify-content:center;align-items:center;"] }, "css-158": { "args": [[{ "position": "absolute", "width": 1, "right": 31, "top": 8, "bottom": 8, "backgroundColor": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Window" } } }, { "position": "absolute", "width": 1, "right": 31, "top": 8, "bottom": 8, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "WindowText" } } }]], "rules": ["&", "position:absolute;width:1px;right:31px;top:8px;bottom:8px;background-color:#ffffff;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "background-color:WindowText;"] }, "root-159": { "args": [{ "displayName": "root" }, [{ "backgroundColor": "#0078d4", "color": "#ffffff", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "backgroundColor": "Canvas" }, ":hover": { "backgroundColor": "#106ebe", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } } } }, { "padding": 6, "height": "auto", "boxSizing": "border-box", "borderRadius": 0, "borderTopRightRadius": "2px", "borderBottomRightRadius": "2px", "border": "1px solid #8a8886", "borderLeft": "none", "outline": "transparent", "userSelect": "none", "display": "inline-block", "textDecoration": "none", "textAlign": "center", "cursor": "pointer", "verticalAlign": "top", "width": 32, "marginLeft": -1, "marginTop": 0, "marginRight": 0, "marginBottom": 0, "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { ".ms-Button-menuIcon": { "color": "WindowText" } } }, { "selectors": {} }]], "rules": ["&", "background-color:#0078d4;color:#ffffff;padding-top:6px;padding-right:6px;padding-bottom:6px;padding-left:6px;height:auto;box-sizing:border-box;border-radius:0px;border-top-right-radius:2px;border-bottom-right-radius:2px;border:1px solid #8a8886;border-left:none;outline:transparent;user-select:none;display:inline-block;text-decoration:none;text-align:center;cursor:pointer;vertical-align:top;width:32px;margin-left:-1px;margin-top:0px;margin-right:0px;margin-bottom:0px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "background-color:Canvas;", "&:hover", "background-color:#106ebe;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "color:Highlight;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button-menuIcon", "color:WindowText;", "&:hover .ms-Button-label", "", "&:hover .ms-Button-icon", "", "&:hover .ms-Button-description", "", "&:hover .ms-Button-menuIcon", "", "&:focus", "", "&:active", "", "&:active .ms-Button-icon", "", "&:active .ms-Button-description", "", "&:active .ms-Button-menuIcon", ""] }, "menuIcon-160": { "args": [{ "displayName": "icon" }, [{ "displayName": "menuIcon" }, { "fontSize": "12px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }, { "selectors": {} }, { "color": "#ffffff" }]], "rules": ["&", "font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#ffffff;", "&:hover", "", "&:active", ""] }, "menuIcon-161": { "args": [{ "displayName": "menuIcon" }, [{ "selectors": {} }]], "rules": ["&", "", "&:hover", "", "&:active", ""] }, "root-162": { "args": [{ "displayName": "root" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;"] }, "main-163": { "args": [{ "displayName": "main" }, [{ "width": "288px", "outline": "3px solid transparent", "selectors": { "@media (min-width: 480px)": { "width": "auto", "maxWidth": "340px", "minWidth": "288px" } } }]], "rules": ["&", "width:288px;outline:3px solid transparent;", "@media (min-width: 480px){&", "width:auto;max-width:340px;min-width:288px;"] }, "root-164": { "args": [{ "displayName": "root" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "backgroundColor": "transparent", "position": "fixed", "height": "100%", "width": "100%", "display": "flex", "alignItems": "center", "justifyContent": "center", "opacity": 0, "pointerEvents": "none", "transition": "opacity 0.267s" }, { "displayName": "root" }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;background-color:transparent;position:fixed;height:100%;width:100%;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.267s;"] }, "main-165": { "args": [{ "displayName": "main" }, [{ "boxShadow": "0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)", "borderRadius": "2px", "backgroundColor": "#ffffff", "boxSizing": "border-box", "position": "relative", "textAlign": "left", "outline": "3px solid transparent", "maxHeight": "calc(100% - 32px)", "maxWidth": "calc(100% - 32px)", "minHeight": "176px", "minWidth": "288px", "overflowY": "auto" }, { "displayName": "main" }, { "width": "288px", "outline": "3px solid transparent", "selectors": { "@media (min-width: 480px)": { "width": "auto", "maxWidth": "340px", "minWidth": "288px" } } }]], "rules": ["&", "box-shadow:0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);border-radius:2px;background-color:#ffffff;box-sizing:border-box;position:relative;text-align:left;outline:3px solid transparent;max-height:calc(100% - 32px);max-width:calc(100% - 32px);min-height:176px;min-width:288px;overflow-y:auto;width:288px;", "@media (min-width: 480px){&", "width:auto;max-width:340px;min-width:288px;"] }, "scrollableContent-166": { "args": [{ "displayName": "scrollableContent" }, [{ "overflowY": "auto", "flexGrow": 1, "maxHeight": "100vh", "selectors": { "@supports (-webkit-overflow-scrolling: touch)": {} } }]], "rules": ["&", "overflow-y:auto;flex-grow:1;max-height:100vh;", "@supports (-webkit-overflow-scrolling: touch){&", ""] }, "keyboardMoveIconContainer-167": { "args": [{ "displayName": "keyboardMoveIconContainer" }, [{ "position": "absolute", "display": "flex", "justifyContent": "center", "width": "100%", "padding": "3px 0px" }]], "rules": ["&", "position:absolute;display:flex;justify-content:center;width:100%;padding-top:3px;padding-right:0px;padding-bottom:3px;padding-left:0px;"] }, "keyboardMoveIcon-168": { "args": [{ "displayName": "keyboardMoveIcon" }, [{ "fontSize": "24px", "width": "24px" }]], "rules": ["&", "font-size:24px;width:24px;"] }, "css-169": { "args": [[{ "animationName": "css-1,css-25", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "animation-name:css-1,css-25;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "root-170": { "args": [{ "displayName": "root" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "overflowY": "auto", "userSelect": "none", "WebkitOverflowScrolling": "touch" }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;overflow-y:auto;user-select:none;-webkit-overflow-scrolling:touch;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;"] }, "linkText-171": { "args": [{ "displayName": "linkText" }, [{ "margin": "0 4px", "overflow": "hidden", "verticalAlign": "middle", "textAlign": "left", "textOverflow": "ellipsis" }]], "rules": ["&", "margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;overflow:hidden;vertical-align:middle;text-align:left;text-overflow:ellipsis;"] }, "compositeLink-172": { "args": [{ "displayName": "compositeLink" }, [{ "display": "block", "position": "relative", "color": "#323130" }]], "rules": ["&", "display:block;position:relative;color:#323130;"] }, "link-173": { "args": [{ "displayName": "link" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "display": "block", "position": "relative", "height": 44, "width": "100%", "lineHeight": "44px", "textDecoration": "none", "cursor": "pointer", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "paddingLeft": 20, "paddingRight": 20, "color": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": 0, "selectors": { ":focus": { "border": "1px solid WindowText" } } } } }, { "selectors": { ".ms-Nav-compositeLink:hover &": { "backgroundColor": "#f3f2f1" } } }]], "rules": ["&", "outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:20px;color:#323130;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus", "border:1px solid WindowText;", ".ms-Nav-compositeLink:hover &", "background-color:#f3f2f1;"] }, "chevronButton-174": { "args": [{ "displayName": "chevronButton" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "12px", "fontWeight": 400 }, { "display": "block", "textAlign": "left", "lineHeight": "44px", "margin": "5px 0", "padding": "0px, 20px, 0px, 28px", "border": "none", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "cursor": "pointer", "color": "#323130", "backgroundColor": "transparent", "selectors": { "&:visited": { "color": "#323130" } } }, { "fontSize": "18px", "width": "100%", "height": 44, "borderBottom": "1px solid #edebe9" }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:18px;font-weight:400;display:block;text-align:left;line-height:44px;margin-top:5px;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0px,;padding-right:20px,;padding-bottom:0px,;padding-left:28px;border:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;cursor:pointer;color:#323130;background-color:transparent;width:100%;height:44px;border-bottom:1px solid #edebe9;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "&:visited", "color:#323130;"] }, "chevronIcon-175": { "args": [{ "displayName": "chevronIcon" }, [{ "position": "absolute", "left": "8px", "height": 44, "display": "inline-flex", "alignItems": "center", "lineHeight": "44px", "fontSize": "12px", "transition": "transform .1s linear" }, { "transform": "rotate(-180deg)" }]], "rules": ["&", "position:absolute;left:8px;height:44px;display:inline-flex;align-items:center;line-height:44px;font-size:12px;transition:transform .1s linear;transform:rotate(-180deg);"] }, "navItem-176": { "args": [{ "displayName": "navItem" }, [{ "padding": 0 }]], "rules": ["&", "padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;"] }, "navItems-177": { "args": [{ "displayName": "navItems" }, [{ "listStyleType": "none", "padding": 0, "margin": 0 }]], "rules": ["&", "list-style-type:none;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;"] }, "groupContent-178": { "args": [{ "displayName": "groupContent" }, [{ "display": "none", "marginBottom": "40px" }, { "animationName": "css-1,css-25", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }, { "display": "block" }]], "rules": ["&", "display:block;margin-bottom:40px;animation-name:css-1,css-25;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "chevronButton-179": { "args": [{ "displayName": "chevronButton" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "12px", "fontWeight": 400 }, { "display": "block", "textAlign": "left", "lineHeight": "44px", "margin": "5px 0", "padding": "0px, 20px, 0px, 28px", "border": "none", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "cursor": "pointer", "color": "#323130", "backgroundColor": "transparent", "selectors": { "&:visited": { "color": "#323130" } } }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:12px;font-weight:400;display:block;text-align:left;line-height:44px;margin-top:5px;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0px,;padding-right:20px,;padding-bottom:0px,;padding-left:28px;border:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;cursor:pointer;color:#323130;background-color:transparent;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "&:visited", "color:#323130;"] }, "chevronIcon-180": { "args": [{ "displayName": "chevronIcon" }, [{ "position": "absolute", "left": "8px", "height": 44, "display": "inline-flex", "alignItems": "center", "lineHeight": "44px", "fontSize": "12px", "transition": "transform .1s linear" }]], "rules": ["&", "position:absolute;left:8px;height:44px;display:inline-flex;align-items:center;line-height:44px;font-size:12px;transition:transform .1s linear;"] }, "groupContent-181": { "args": [{ "displayName": "groupContent" }, [{ "display": "none", "marginBottom": "40px" }, { "animationName": "css-1,css-25", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "display:none;margin-bottom:40px;animation-name:css-1,css-25;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;"] }, "chevronButton-182": { "args": [{ "displayName": "chevronButton" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "12px", "fontWeight": 400 }, { "display": "block", "textAlign": "left", "lineHeight": "44px", "margin": "5px 0", "padding": "0px, 20px, 0px, 28px", "border": "none", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "cursor": "pointer", "color": "#323130", "backgroundColor": "transparent", "selectors": { "&:visited": { "color": "#323130" } } }, { "display": "block", "width": 26, "height": 42, "position": "absolute", "top": "1px", "left": "1px", "zIndex": 1, "padding": 0, "margin": 0 }]], "rules": ["&", "outline:transparent;position:absolute;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:12px;font-weight:400;display:block;text-align:left;line-height:44px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;border:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;cursor:pointer;color:#323130;background-color:transparent;width:26px;height:42px;top:1px;left:1px;z-index:1;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "&:visited", "color:#323130;"] }, "chevronIcon-183": { "args": [{ "displayName": "chevronIcon" }, [{ "position": "absolute", "left": "8px", "height": 44, "display": "inline-flex", "alignItems": "center", "lineHeight": "44px", "fontSize": "12px", "transition": "transform .1s linear" }, { "top": 0 }]], "rules": ["&", "position:absolute;left:8px;height:44px;display:inline-flex;align-items:center;line-height:44px;font-size:12px;transition:transform .1s linear;top:0px;"] }, "link-184": { "args": [{ "displayName": "link" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "display": "block", "position": "relative", "height": 44, "width": "100%", "lineHeight": "44px", "textDecoration": "none", "cursor": "pointer", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "paddingLeft": 3, "paddingRight": 20, "color": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": 0, "selectors": { ":focus": { "border": "1px solid WindowText" } } } } }, { "selectors": { ".ms-Nav-compositeLink:hover &": { "backgroundColor": "#f3f2f1" } } }]], "rules": ["&", "outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:3px;padding-right:20px;color:#323130;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus", "border:1px solid WindowText;", ".ms-Nav-compositeLink:hover &", "background-color:#f3f2f1;"] }, "link-185": { "args": [{ "displayName": "link" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "display": "block", "position": "relative", "height": 44, "width": "100%", "lineHeight": "44px", "textDecoration": "none", "cursor": "pointer", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "paddingLeft": 20, "paddingRight": 20, "color": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": 0, "selectors": { ":focus": { "border": "1px solid WindowText" } } } } }, { "selectors": { ".ms-Nav-compositeLink:hover &": { "backgroundColor": "#f3f2f1" } } }, { "color": "#000000", "fontWeight": 600, "backgroundColor": "#edebe9", "selectors": { "&:after": { "borderLeft": "2px solid #0078d4", "content": "\"\"", "position": "absolute", "top": 0, "right": 0, "bottom": 0, "left": 0, "pointerEvents": "none" } } }]], "rules": ["&", "outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:20px;color:#000000;font-weight:600;background-color:#edebe9;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus", "border:1px solid WindowText;", ".ms-Nav-compositeLink:hover &", "background-color:#f3f2f1;", "&:after", "border-left:2px solid #0078d4;content:\"\";position:absolute;top:0px;right:0px;bottom:0px;left:0px;pointer-events:none;"] }, "link-186": { "args": [{ "displayName": "link" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "display": "block", "position": "relative", "height": 44, "width": "100%", "lineHeight": "44px", "textDecoration": "none", "cursor": "pointer", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "paddingLeft": 3, "paddingRight": 20, "color": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": 0, "selectors": { ":focus": { "border": "1px solid WindowText" } } } } }, { "selectors": { ".ms-Nav-compositeLink:hover &": { "backgroundColor": "#f3f2f1" } } }, { "color": "#000000", "fontWeight": 600, "backgroundColor": "#edebe9", "selectors": { "&:after": { "borderLeft": "2px solid #0078d4", "content": "\"\"", "position": "absolute", "top": 0, "right": 0, "bottom": 0, "left": 0, "pointerEvents": "none" } } }]], "rules": ["&", "outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:3px;padding-right:20px;color:#000000;font-weight:600;background-color:#edebe9;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus", "border:1px solid WindowText;", ".ms-Nav-compositeLink:hover &", "background-color:#f3f2f1;", "&:after", "border-left:2px solid #0078d4;content:\"\";position:absolute;top:0px;right:0px;bottom:0px;left:0px;pointer-events:none;"] }, "css-187": { "args": [[{ "selectors": { ":focus": { "outline": "none" } } }]], "rules": ["&", "", "&:focus", "outline:none;"] }, "link-188": { "args": [{ "displayName": "root" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "border": "1px solid #8a8886", "borderRadius": "2px", "boxSizing": "border-box", "cursor": "pointer", "display": "inline-block", "margin": 0, "padding": "0 16px", "textDecoration": "none", "textAlign": "center", "userSelect": "none", "selectors": { ":active > span": { "position": "relative", "left": 0, "top": 0 } } }, { "padding": "0 4px", "height": "40px", "color": "#323130", "backgroundColor": "transparent", "border": "1px solid transparent", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "Window" } } }, { "selectors": { ":hover": { "color": "#0078d4", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } }, ":hover .ms-Button-icon": { "color": "#0078d4" }, ":active": { "color": "#000000" }, ":active .ms-Button-icon": { "color": "#004578" } } }, { "displayName": "link" }, { "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "display": "block", "position": "relative", "height": 44, "width": "100%", "lineHeight": "44px", "textDecoration": "none", "cursor": "pointer", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "paddingLeft": 3, "paddingRight": 20, "color": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": 0, "selectors": { ":focus": { "border": "1px solid WindowText" } } } } }, { "selectors": { ".ms-Nav-compositeLink:hover &": { "backgroundColor": "#f3f2f1" } } }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:1px solid transparent;border-radius:2px;box-sizing:border-box;cursor:pointer;display:block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:20px;padding-bottom:0;padding-left:3px;text-decoration:none;text-align:center;user-select:none;height:44px;color:#323130;background-color:transparent;width:100%;line-height:44px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;", "&:active > span", "position:relative;left:0px;top:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border-color:Window;border:0px;", "&:hover", "color:#0078d4;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "color:Highlight;", "&:hover .ms-Button-label", "", "&:hover .ms-Button-icon", "color:#0078d4;", "&:hover .ms-Button-description", "", "&:hover .ms-Button-menuIcon", "", "&:focus", "", "&:active", "color:#000000;", "&:active .ms-Button-icon", "color:#004578;", "&:active .ms-Button-description", "", "&:active .ms-Button-menuIcon", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus", "border:1px solid WindowText;", ".ms-Nav-compositeLink:hover &", "background-color:#f3f2f1;"] }, "flexContainer-189": { "args": [{ "displayName": "flexContainer" }, [{ "display": "flex", "height": "100%", "flexWrap": "nowrap", "justifyContent": "center", "alignItems": "center" }, { "justifyContent": "flex-start" }]], "rules": ["&", "display:flex;height:100%;flex-wrap:nowrap;justify-content:flex-start;align-items:center;"] }, "textContainer-190": { "args": [{ "displayName": "textContainer" }, [{ "flexGrow": 1, "display": "block" }, { "flexGrow": 0 }, { "overflow": "hidden" }]], "rules": ["&", "flex-grow:0;display:block;overflow:hidden;"] }, "icon-191": { "args": [{ "displayName": "icon" }, [{ "fontSize": "16px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }, { "color": "#106ebe" }]], "rules": ["&", "font-size:16px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#106ebe;"] }, "label-192": { "args": [{ "displayName": "label" }, [{ "margin": "0 4px", "lineHeight": "100%", "display": "block" }, { "whiteSpace": "nowrap", "textOverflow": "ellipsis", "overflow": "hidden" }]], "rules": ["&", "margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;line-height:100%;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;"] }, "menuIcon-193": { "args": [{ "displayName": "menuIcon" }, [{ "fontSize": "12px", "margin": "0 4px", "height": "16px", "lineHeight": "16px", "textAlign": "center", "flexShrink": 0 }, { "color": "#605e5c" }, { "selectors": {} }]], "rules": ["&", "font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#605e5c;", "&:hover", "", "&:active", ""] }, "link-194": { "args": [{ "displayName": "root" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "border": "1px solid #8a8886", "borderRadius": "2px", "boxSizing": "border-box", "cursor": "pointer", "display": "inline-block", "margin": 0, "padding": "0 16px", "textDecoration": "none", "textAlign": "center", "userSelect": "none", "selectors": { ":active > span": { "position": "relative", "left": 0, "top": 0 } } }, { "padding": "0 4px", "height": "40px", "color": "#323130", "backgroundColor": "transparent", "border": "1px solid transparent", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "Window" } } }, { "selectors": { ":hover": { "color": "#0078d4", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "color": "Highlight" } } }, ":hover .ms-Button-icon": { "color": "#0078d4" }, ":active": { "color": "#000000" }, ":active .ms-Button-icon": { "color": "#004578" } } }, { "displayName": "link" }, { "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 1, "top": 1, "bottom": 1, "right": 1, "border": "1px solid #ffffff", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": {} } } }, { "display": "block", "position": "relative", "height": 44, "width": "100%", "lineHeight": "44px", "textDecoration": "none", "cursor": "pointer", "textOverflow": "ellipsis", "whiteSpace": "nowrap", "overflow": "hidden", "paddingLeft": 3, "paddingRight": 20, "color": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "border": 0, "selectors": { ":focus": { "border": "1px solid WindowText" } } } } }, { "selectors": { ".ms-Nav-compositeLink:hover &": { "backgroundColor": "#f3f2f1" } } }, { "color": "#000000", "fontWeight": 600, "backgroundColor": "#edebe9", "selectors": { "&:after": { "borderLeft": "2px solid #0078d4", "content": "\"\"", "position": "absolute", "top": 0, "right": 0, "bottom": 0, "left": 0, "pointerEvents": "none" } } }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;border:1px solid transparent;border-radius:2px;box-sizing:border-box;cursor:pointer;display:block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:20px;padding-bottom:0;padding-left:3px;text-decoration:none;text-align:center;user-select:none;height:44px;color:#000000;background-color:#edebe9;width:100%;line-height:44px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;", "&:active > span", "position:relative;left:0px;top:0px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border-color:Window;border:0px;", "&:hover", "color:#0078d4;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "color:Highlight;", "&:hover .ms-Button-label", "", "&:hover .ms-Button-icon", "color:#0078d4;", "&:hover .ms-Button-description", "", "&:hover .ms-Button-menuIcon", "", "&:focus", "", "&:active", "color:#000000;", "&:active .ms-Button-icon", "color:#004578;", "&:active .ms-Button-description", "", "&:active .ms-Button-menuIcon", "", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus", "border:1px solid WindowText;", ".ms-Nav-compositeLink:hover &", "background-color:#f3f2f1;", "&:after", "border-left:2px solid #0078d4;content:\"\";position:absolute;top:0px;right:0px;bottom:0px;left:0px;pointer-events:none;"] }, "css-195": { "args": [[{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "flexBasis": "auto", "height": "auto", "width": "auto" }, { "flexGrow": 1 }, { "width": 0 }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:0px;flex-grow:1;"] }, "css-196": { "args": [[{ "display": "flex", "flexDirection": "column", "flexWrap": "nowrap", "width": "auto", "height": "100%", "boxSizing": "border-box", "> *": { "textOverflow": "ellipsis" } }, { "> *:not(.ms-StackItem)": { "flexShrink": 0 } }, { "animationName": "css-1,css-22", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }, { "overflow": "auto", "position": "relative", "padding": 0, "margin": 0 }, { "animationName": "css-1,css-22", "animationDuration": "0.367s", "animationTimingFunction": "cubic-bezier(.1,.9,.2,1)", "animationFillMode": "both" }]], "rules": ["&", "display:flex;flex-direction:column;flex-wrap:nowrap;width:auto;height:100%;box-sizing:border-box;animation-name:css-1,css-22;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;overflow:auto;position:relative;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;", "& > *", "text-overflow:ellipsis;", "& > *:not(.ms-StackItem)", "flex-shrink:0;"] }, "css-197": { "args": [[{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "flexBasis": "auto", "height": "auto", "width": "auto" }, { "flexShrink": 0 }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-shrink:0;"] }, "root-198": { "args": [{ "displayName": "root" }, [{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "boxShadow": "none", "margin": 0, "padding": 0, "boxSizing": "border-box" }, { "color": "#323130", "backgroundColor": "#ffffff", "display": "flex", "flexDirection": "row", "flexWrap": "nowrap", "alignItems": "stretch", "padding": "1px 0 1px 4px", "borderRadius": "2px", "border": "1px solid #605e5c", "height": 32, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "WindowText" }, ":hover": { "borderColor": "#323130", "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "borderColor": "Highlight" } } }, ":hover .ms-SearchBox-iconContainer": { "color": "#005a9e" } } }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:1px;padding-right:0;padding-bottom:1px;padding-left:4px;box-sizing:border-box;color:#323130;background-color:#ffffff;display:flex;flex-direction:row;flex-wrap:nowrap;align-items:stretch;border-radius:2px;border:1px solid #605e5c;height:32px;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&", "border-color:WindowText;", "&:hover", "border-color:#323130;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover", "border-color:Highlight;", "&:hover .ms-SearchBox-iconContainer", "color:#005a9e;"] }, "iconContainer-199": { "args": [{ "displayName": "iconContainer" }, [{ "display": "flex", "flexDirection": "column", "justifyContent": "center", "flexShrink": 0, "fontSize": 16, "width": 32, "textAlign": "center", "color": "#0078d4", "cursor": "text" }, { "transition": "width 0.167s" }]], "rules": ["&", "display:flex;flex-direction:column;justify-content:center;flex-shrink:0;font-size:16px;width:32px;text-align:center;color:#0078d4;cursor:text;transition:width 0.167s;"] }, "icon-200": { "args": [{ "displayName": "icon" }, [{ "opacity": 1 }, { "transition": "opacity 0.167s 0s" }]], "rules": ["&", "opacity:1;transition:opacity 0.167s 0s;"] }, "clearButton-201": { "args": [{ "displayName": "clearButton" }, [{ "display": "flex", "flexDirection": "row", "alignItems": "stretch", "cursor": "pointer", "flexBasis": "32px", "flexShrink": 0, "padding": 0, "margin": "-1px 0px", "selectors": { "&:hover .ms-Button": { "backgroundColor": "#f3f2f1" }, "&:hover .ms-Button-icon": { "color": "#323130" }, ".ms-Button": { "borderRadius": "0 1px 1px 0" }, ".ms-Button-icon": { "color": "#605e5c" } } }]], "rules": ["&", "display:flex;flex-direction:row;align-items:stretch;cursor:pointer;flex-basis:32px;flex-shrink:0;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:-1px;margin-right:0px;margin-bottom:-1px;margin-left:0px;", "&:hover .ms-Button", "background-color:#f3f2f1;", "&:hover .ms-Button-icon", "color:#323130;", "& .ms-Button", "border-radius:0 1px 1px 0;", "& .ms-Button-icon", "color:#605e5c;"] }, "field-202": { "args": [{ "displayName": "field" }, [{ "boxShadow": "none", "margin": 0, "padding": 0, "boxSizing": "border-box" }, { "selectors": { "::placeholder": { "color": "#605e5c", "opacity": 1 }, ":-ms-input-placeholder": { "color": "#605e5c", "opacity": 1 }, "::-ms-input-placeholder": { "color": "#605e5c", "opacity": 1 } } }, { "backgroundColor": "transparent", "border": "none", "outline": "none", "fontWeight": "inherit", "fontFamily": "inherit", "fontSize": "inherit", "color": "#323130", "flex": "1 1 0px", "minWidth": "0px", "overflow": "hidden", "textOverflow": "ellipsis", "paddingBottom": 0.5, "selectors": { "::-ms-clear": { "display": "none" } } }]], "rules": ["&", "box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0.5px;padding-left:0px;box-sizing:border-box;background-color:transparent;border:none;outline:none;font-weight:inherit;font-family:inherit;font-size:inherit;color:#323130;flex:1 1 0px;min-width:0px;overflow:hidden;text-overflow:ellipsis;", "&::placeholder", "color:#605e5c;opacity:1;", "&:-ms-input-placeholder", "color:#605e5c;opacity:1;", "&::-ms-input-placeholder", "color:#605e5c;opacity:1;", "&::-ms-clear", "display:none;"] }, "icon-203": { "args": [{ "displayName": "root" }, [{ "displayName": "root" }, { "display": "inline-block" }, { "displayName": "icon" }, { "opacity": 1 }, { "transition": "opacity 0.167s 0s" }]], "rules": ["&", "display:inline-block;opacity:1;transition:opacity 0.167s 0s;"] }, "css-204": { "args": [[{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "flexBasis": "auto", "height": "auto", "width": "auto" }, { "flexShrink": 1 }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-shrink:1;"] }, "root-205": { "args": [{ "displayName": "root" }, [{ "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "border": "1px solid #8a8886", "borderRadius": "2px", "boxSizing": "border-box", "cursor": "pointer", "display": "inline-block", "margin": 0, "padding": "0 16px", "textDecoration": "none", "textAlign": "center", "userSelect": "none", "selectors": { ":active > span": { "position": "relative", "left": 0, "top": 0 } } }, { "padding": "0 4px", "width": "32px", "height": "32px", "backgroundColor": "transparent", "border": "none", "color": "#0078d4" }, { "outline": "transparent", "position": "relative", "selectors": { "::-moz-focus-inner": { "border": "0" }, ".ms-Fabric--isFocusVisible &:focus:after": { "content": "\"\"", "position": "absolute", "left": 2, "top": 2, "bottom": 2, "right": 2, "border": "1px solid transparent", "outline": "1px solid #605e5c", "zIndex": 1, "selectors": { "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active)": { "left": -2, "top": -2, "bottom": -2, "right": -2, "outlineColor": "ButtonText" } } } } }, { "backgroundColor": "#f3f2f1", "borderColor": "#f3f2f1", "color": "#a19f9d", "cursor": "default", "selectors": { ":hover": { "outline": 0 }, ":focus": { "outline": 0 } } }, { "color": "#c8c6c4" }]], "rules": ["&", "outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:none;border-radius:2px;box-sizing:border-box;cursor:default;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:4px;padding-bottom:0;padding-left:4px;text-decoration:none;text-align:center;user-select:none;width:32px;height:32px;background-color:#f3f2f1;color:#c8c6c4;border-color:#f3f2f1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;", "&::-moz-focus-inner", "border:0;", ".ms-Fabric--isFocusVisible &:focus:after", "content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:1px solid transparent;outline:1px solid #605e5c;z-index:1;", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after", "left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;", "&:active > span", "position:relative;left:0px;top:0px;", "&:hover", "outline:0px;", "&:focus", "outline:0px;"] }, "css-206": { "args": [[{ "fontFamily": "'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif", "MozOsxFontSmoothing": "grayscale", "WebkitFontSmoothing": "antialiased", "fontSize": "14px", "fontWeight": 400 }, { "flexBasis": "auto", "height": "auto", "width": "auto" }, { "flexGrow": 1 }, { "position": "relative", "minHeight": 0, "padding": 0, "margin": "0 !important" }]], "rules": ["&", "font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-grow:1;position:relative;min-height:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0 !important;margin-right:0 !important;margin-bottom:0 !important;margin-left:0 !important;"] } }, "counter": 207, "keyToClassName": { "ltr&overflowhidden !important": "css-0", "from{opacity:0;}to{opacity:1;}": "css-1", "from{opacity:1;}to{opacity:0;}": "css-2", "from{transform:scale3d(1.15, 1.15, 1);}to{transform:scale3d(1, 1, 1);}": "css-3", "from{transform:scale3d(1, 1, 1);}to{transform:scale3d(0.9, 0.9, 1);}": "css-4", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(-48px, 0, 0);}": "css-5", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(48px, 0, 0);}": "css-6", "from{transform:translate3d(48px, 0, 0);}to{transform:translate3d(0, 0, 0);}": "css-7", "from{transform:translate3d(-48px, 0, 0);}to{transform:translate3d(0, 0, 0);}": "css-8", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -48px, 0);}": "css-9", "from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 48px, 0);}": "css-10", "from{transform:translate3d(0, 48px, 0);}to{transform:translate3d(0, 0, 0);}": "css-11", "from{transform:translate3d(0, -48px, 0);}to{transform:translate3d(0, 0, 0);}": "css-12", "from{opacity:1;}to{opacity:0;visibility:hidden;}": "css-13", "from{transform:translate3d(-10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-14", "from{transform:translate3d(-20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-15", "from{transform:translate3d(-40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-16", "from{transform:translate3d(-400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-17", "from{transform:translate3d(10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-18", "from{transform:translate3d(20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-19", "from{transform:translate3d(40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-20", "from{transform:translate3d(400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-21", "from{transform:translate3d(0,10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-22", "from{transform:translate3d(0,20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-23", "from{transform:translate3d(0,-10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-24", "from{transform:translate3d(0,-20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}": "css-25", "from{transform:translate3d(0,0,0);}to{transform:translate3d(10px,0,0);}": "css-26", "from{transform:translate3d(0,0,0);}to{transform:translate3d(20px,0,0);}": "css-27", "from{transform:translate3d(0,0,0);}to{transform:translate3d(40px,0,0);}": "css-28", "from{transform:translate3d(0,0,0);}to{transform:translate3d(400px,0,0);}": "css-29", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-10px,0,0);}": "css-30", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-20px,0,0);}": "css-31", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-40px,0,0);}": "css-32", "from{transform:translate3d(0,0,0);}to{transform:translate3d(-400px,0,0);}": "css-33", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-10px,0);}": "css-34", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-20px,0);}": "css-35", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,10px,0);}": "css-36", "from{transform:translate3d(0,0,0);}to{transform:translate3d(0,20px,0);}": "css-37", "from{transform:scale3d(.98,.98,1);}to{transform:scale3d(1,1,1);}": "css-38", "from{transform:scale3d(1,1,1);}to{transform:scale3d(.98,.98,1);}": "css-39", "from{transform:scale3d(1.03,1.03,1);}to{transform:scale3d(1,1,1);}": "css-40", "from{transform:scale3d(1,1,1);}to{transform:scale3d(1.03,1.03,1);}": "css-41", "from{transform:rotateZ(0deg);}to{transform:rotateZ(90deg);}": "css-42", "from{transform:rotateZ(0deg);}to{transform:rotateZ(-90deg);}": "css-43", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-44", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-45", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-46", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-47", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-48", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-49", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-50", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-51", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-52", "font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-53", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-54", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-55", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-56", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-57", "font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-58", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-59", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-60", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-61", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-62", "font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-63", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-64", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-65", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-66", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-67", "font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-68", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-69", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-70", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-71", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-72", "font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-73", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-74", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-75", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-76", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-77", "font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-78", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI Light'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-79", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiLight'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-80", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-81", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiBold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-82", "font-family:'Segoe UI Web (West European)';src:local('Segoe UI Bold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-83", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-84", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-85", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-86", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-87", "font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-88", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-89", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-90", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-91", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-92", "font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-93", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-94", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;": "css-95", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;": "css-96", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-97", "font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;": "css-98", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;": "css-99", "font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;": "css-100", "ltr&animationNamecss-1,css-22animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "css-101", "ltr&animationNamecss-1,css-24animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "css-102", "ltr&animationNamecss-1,css-18animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "css-103", "ltr&animationNamecss-1,css-14animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "css-104", "ltr&displayNamerootdisplayinline-block": "root-105", "ltr&displayNameplaceholderwidth1em": "placeholder-106", "ltr&displayNameimageoverflowhidden": "image-107", "100%{width:0px;height:0px;overflow:hidden;}99.9%{width:100%;height:28px;overflow:visible;}0%{width:100%;height:28px;overflow:visible;}": "css-108", "ltr&displayNametitle-containerborderBottom1px solid rgb(243, 242, 241)": "title-container-109", "ltr&displayNametitlepaddingTop4pxpaddingRight0paddingBottom4pxpaddingLeft0fontSize20textAligncenter": "title-110", "ltr&displayNameleft-columnwidth270paddingRight8borderRight1px solid rgb(243, 242, 241)overflowauto": "left-column-111", "ltr&displayNameright-columnborderLeft1px solid rgb(243, 242, 241)": "right-column-112", "ltr&displayNameleft-columnwidth270paddingRight8borderRight1px solid rgb(243, 242, 241)overflowautodisplaynone": "left-column-113", "ltr&displayflexflexDirectioncolumnflexWrapnowrapwidthautoheight100%boxSizingborder-box& > *textOverflowellipsis": "css-114", "ltr&displayflexflexDirectionrowflexWrapnowrapwidthautoheightautoboxSizingborder-boxalignItemscenterdisplayNametitle-containerborderBottom1px solid rgb(243, 242, 241)& > *textOverflowellipsis": "title-container-115", "ltr&displayNamerootoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400bordernoneborderRadius2pxboxSizingborder-boxcursorpointerdisplayinline-blockmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight4pxpaddingBottom0paddingLeft4pxtextDecorationnonetextAligncenteruserSelectnonewidth32pxheight32pxbackgroundColortransparentcolor#0078d4&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft2top2bottom2right2border1px solid transparentoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2outlineColorButtonText&:active > spanpositionrelativeleft0top0&:hovercolor#106ebebackgroundColor#f3f2f1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hoverborderColorHighlightcolorHighlight&:hover .ms-Button-label&:hover .ms-Button-icon&:hover .ms-Button-description&:hover .ms-Button-menuIcon&:focus&:activecolor#005a9ebackgroundColor#edebe9&:active .ms-Button-icon&:active .ms-Button-description&:active .ms-Button-menuIcon": "root-116", "ltr&displayNameflexContainerdisplayflexheight100%flexWrapnowrapjustifyContentcenteralignItemscenter": "flexContainer-117", "ltr&displayNametextContainerflexGrow1displayblock": "textContainer-118", "ltr&displayNameiconfontSize16pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0": "icon-119", "ltr&displayNamelabelmarginTop0marginRight4pxmarginBottom0marginLeft4pxlineHeight100%displayblock": "label-120", "ltr&displayNamemenuIconfontSize12pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0&:hover&:active": "menuIcon-121", "ltr&displayNamedescriptiondisplayblock": "description-122", "ltr&displayNamescreenReaderTextpositionabsolutewidth1height1marginTop-1marginRight-1marginBottom-1marginLeft-1paddingTop0paddingRight0paddingBottom0paddingLeft0border0overflowhiddenwhiteSpacenowrap": "screenReaderText-123", "ltr&fontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400flexBasisautoheightautowidthautoflexGrow1flexShrink1": "css-124", "ltr&displayflexflexDirectionrowflexWrapnowrapwidthautoheight100%boxSizingborder-boxflexGrow1minHeight0overflowhiddenlineHeight1.5& > *textOverflowellipsis& > *:not(.ms-StackItem)flexShrink0": "css-125", "ltr&fontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400flexBasisautoheightautowidth270flexShrink0displayNameleft-columnpaddingRight8borderRight1px solid rgb(243, 242, 241)overflowautodisplaynone": "left-column-126", "ltr&displayflexflexDirectioncolumnflexWrapnowrapwidthautoheightautopaddingTop0paddingRight0paddingBottom8pxpaddingLeft8pxboxSizingborder-box& > *textOverflowellipsis& > *:not(:first-child)marginTop8px": "css-127", "ltr&displayNamedropdownboxShadownonemarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight0paddingBottom0paddingLeft0boxSizingborder-boxfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400color#323130borderColor#605e5cpositionrelativeoutline0userSelectnonewidth100%&:hover .ms-Dropdown-titleborderColor#323130@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover .ms-Dropdown-titleborderColorHighlight&:focus .ms-Dropdown-title@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus .ms-Dropdown-titlecolorHighlight&:focus:afterpointerEventsnonecontent''positionabsoluteboxSizingborder-boxtop0pxleft0pxwidth100%height100%bordernoneborderRadius2px@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus:aftercolorHighlight&:active .ms-Dropdown-titleborderColor#0078d4@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active .ms-Dropdown-titleborderColorHighlight&:hover .ms-Dropdown-caretDown&:focus .ms-Dropdown-caretDown@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focus .ms-Dropdown-caretDowncolorHighlight&:active .ms-Dropdown-caretDown&:hover .ms-Dropdown-titleIsPlaceHolder&:focus .ms-Dropdown-titleIsPlaceHolder&:active .ms-Dropdown-titleIsPlaceHolder&:hover .ms-Dropdown-title--hasErrorborderColor#a4262c&:active .ms-Dropdown-title--hasErrorborderColor#a4262c": "dropdown-128", "ltr&displayNametitleboxShadownonemarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight28pxpaddingBottom0paddingLeft8pxboxSizingborder-boxbackgroundColor#f3f2f1borderWidth1borderStylesolidborderColor#605e5cborderRadius2pxcursordefaultdisplayblockheight32lineHeight30positionrelativeoverflowhiddenwhiteSpacenowraptextOverflowellipsiscolor#a19f9dbordernone@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&border1px solid GrayTextcolorGrayTextbackgroundColorWindowforcedColorAdjustnoneMsHighContrastAdjustnone": "title-129", "ltr&displayNamecaretDownWrapperheight32lineHeight30paddingTop1positionabsoluteright8top0": "caretDownWrapper-130", "ltr&displayNamecaretDowncolor#a19f9dfontSize12pxpointerEventsnone@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextforcedColorAdjustnoneMsHighContrastAdjustnone": "caretDown-131", "ltr&displayNameerrorMessagecolor#a4262cfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize12pxfontWeight400paddingTop5": "errorMessage-132", "ltr&displayNamecalloutboxShadow0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108)borderRadius2px 2px 0 0& .ms-Callout-mainborderRadius2px 2px 0 0": "callout-133", "ltr&displayNamedropdownItemsWrapper&:focusoutline0": "dropdownItemsWrapper-134", "ltr&displayNamedropdownItemsdisplayblock": "dropdownItems-135", "ltr&displayNamedropdownItembackgroundColortransparentboxSizingborder-boxcursorpointerdisplayflexalignItemscenterpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxwidth100%minHeight36lineHeight20height0positionrelativeborder1px solid transparentborderRadius0wordWrapbreak-wordoverflowWrapbreak-wordtextAlignleft& .ms-Button-flexContainerwidth100%&:hovercolor#201f1ebackgroundColor#f3f2f1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hoverbackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:hoverforcedColorAdjustnoneMsHighContrastAdjustnone&.is-multi-select:hoverbackgroundColortransparent&:active:hovercolor#201f1ebackgroundColor#edebe9@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active:hoverbackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:active:hoverforcedColorAdjustnoneMsHighContrastAdjustnone.ms-Fabric--isFocusVisible &:focus:afterleft0top0bottom0right0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&bordernone": "dropdownItem-136", "ltr&displayNamedropdownItemSelectedbackgroundColor#edebe9boxSizingborder-boxcursorpointerdisplayflexalignItemscenterpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxwidth100%minHeight36lineHeight20height0positionrelativeborder1px solid transparentborderRadius0wordWrapbreak-wordoverflowWrapbreak-wordtextAlignleftcolor#201f1e& .ms-Button-flexContainerwidth100%&:hovercolor#201f1ebackgroundColor#edebe9@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hoverbackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:hoverforcedColorAdjustnoneMsHighContrastAdjustnone&.is-multi-select:hoverbackgroundColor#edebe9&:active:hovercolor#201f1ebackgroundColor#f3f2f1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active:hoverbackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:active:hoverforcedColorAdjustnoneMsHighContrastAdjustnone.ms-Fabric--isFocusVisible &:focus:afterleft0top0bottom0right0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&bordernonebackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&forcedColorAdjustnoneMsHighContrastAdjustnone": "dropdownItemSelected-137", "ltr&displayNamedropdownItemDisabledbackgroundColortransparentboxSizingborder-boxcursordefaultdisplayflexalignItemscenterpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxwidth100%minHeight36lineHeight20height0positionrelativeborder1px solid transparentborderRadius0wordWrapbreak-wordoverflowWrapbreak-wordtextAlignleftcolor#a19f9d& .ms-Button-flexContainerwidth100%@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextbordernone": "dropdownItemDisabled-138", "ltr&displayNamedropdownItemSelectedAndDisabledbackgroundColortransparentboxSizingborder-boxcursordefaultdisplayflexalignItemscenterpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxwidth100%minHeight36lineHeight20height0positionrelativeborder1px solid transparentborderRadius0wordWrapbreak-wordoverflowWrapbreak-wordtextAlignleftcolor#a19f9d& .ms-Button-flexContainerwidth100%&:hovercolor#201f1ebackgroundColor#edebe9@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hoverbackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:hoverforcedColorAdjustnoneMsHighContrastAdjustnone&.is-multi-select:hoverbackgroundColor#edebe9&:active:hovercolor#201f1ebackgroundColor#f3f2f1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:active:hoverbackgroundColorHighlightborderColorHighlightcolorHighlightText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&:active:hoverforcedColorAdjustnoneMsHighContrastAdjustnone.ms-Fabric--isFocusVisible &:focus:afterleft0top0bottom0right0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&bordernonebackgroundColorHighlightborderColorHighlightcolorGrayText@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){&forcedColorAdjustnoneMsHighContrastAdjustnone": "dropdownItemSelectedAndDisabled-139", "ltr&displayNamedropdownItemHiddenbackgroundColortransparentboxSizingborder-boxcursorpointerdisplaynonealignItemscenterpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxwidth100%minHeight36lineHeight20height0positionrelativeborder1px solid transparentborderRadius0wordWrapbreak-wordoverflowWrapbreak-wordtextAlignleft& .ms-Button-flexContainerwidth100%": "dropdownItemHidden-140", "ltr&displayNamedropdownDividerheight1backgroundColor#edebe9": "dropdownDivider-141", "ltr&displayNamedropdownDividerHiddendisplaynone": "dropdownDividerHidden-142", "ltr&displayNamedropdownOptionTextoverflowhiddenwhiteSpacenowraptextOverflowellipsisminWidth0maxWidth100%wordWrapbreak-wordoverflowWrapbreak-wordmarginTop1pxmarginRight1pxmarginBottom1pxmarginLeft1px": "dropdownOptionText-143", "ltr&displayNamedropdownItemHeaderfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight600color#0078d4backgroundnonebackgroundColortransparentbordernoneheight36lineHeight36cursordefaultpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxuserSelectnonetextAlignleft@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextforcedColorAdjustnoneMsHighContrastAdjustnone": "dropdownItemHeader-144", "ltr&displayNamedropdownItemHeaderHiddenfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight600color#0078d4backgroundnonebackgroundColortransparentbordernoneheight36lineHeight36cursordefaultpaddingTop0paddingRight8pxpaddingBottom0paddingLeft8pxuserSelectnonetextAlignleftdisplaynone@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextforcedColorAdjustnoneMsHighContrastAdjustnone": "dropdownItemHeaderHidden-145", "ltr&displayNamerootfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight600color#a19f9dboxSizingborder-boxboxShadownonemarginTop0marginRight0marginBottom0marginLeft0displayinline-blockpaddingTop5pxpaddingRight0paddingBottom5pxpaddingLeft0wordWrapbreak-wordoverflowWrapbreak-word@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextforcedColorAdjustnoneMsHighContrastAdjustnone": "root-146", "ltr&displayNamecaretDowndisplayinline-blockcolor#a19f9dfontSize12pxpointerEventsnone@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextforcedColorAdjustnoneMsHighContrastAdjustnone": "caretDown-147", "ltr&displayflexflexDirectionrowflexWrapnowrapwidthautoheightautoboxSizingborder-box& > *textOverflowellipsis": "css-148", "ltr&displayNamerootoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400border1px solid #0078d4borderRadius2pxboxSizingborder-boxcursordefaultdisplayinline-blockmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight16pxpaddingBottom0paddingLeft16pxtextDecorationnonetextAligncenteruserSelectnoneminWidth80pxheight32pxbackgroundColor#f3f2f1color#d2d0cewidth100%borderColor#f3f2f1&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft2top2bottom2right2border1px solid transparentoutline1px solid #605e5czIndex1outlineColor#ffffff@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2outlineColorButtonText&:active > spanpositionrelativeleft0top0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayTextbackgroundColorWindowborderColorGrayTextforcedColorAdjustnoneMsHighContrastAdjustnone.ms-Fabric--isFocusVisible &:focus&:hoveroutline0&:focusoutline0": "root-149", "ltr&displayNameiconfontSize16pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0color#a19f9d@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayText": "icon-150", "ltr&displayNamelabelmarginTop0marginRight4pxmarginBottom0marginLeft4pxlineHeight100%displayblockfontWeight600": "label-151", "ltr&displayNamemenuIconfontSize12pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0color#a19f9d@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorGrayText": "menuIcon-152", "ltr&displayNamerootoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400border1px solid #0078d4borderRadius2pxboxSizingborder-boxcursorpointerdisplayinline-blockmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight16pxpaddingBottom0paddingLeft16pxtextDecorationnonetextAligncenteruserSelectnoneminWidth80pxheight32pxbackgroundColor#0078d4color#ffffffwidth100%&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft2top2bottom2right2bordernoneoutline1px solid #605e5czIndex1outlineColor#ffffff@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2outlineColorButtonText&:active > spanpositionrelativeleft0top0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&colorWindowbackgroundColorWindowTextborderColorWindowTextforcedColorAdjustnoneMsHighContrastAdjustnone.ms-Fabric--isFocusVisible &:focus&:hoverbackgroundColor#106ebeborder1px solid #106ebecolor#ffffff@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hovercolorWindowbackgroundColorHighlightborderColorHighlight&:hover .ms-Button-label&:hover .ms-Button-icon&:hover .ms-Button-description&:hover .ms-Button-menuIcon&:focus&:activebackgroundColor#005a9eborder1px solid #005a9ecolor#ffffff@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:activecolorWindowbackgroundColorWindowTextborderColorWindowTextforcedColorAdjustnoneMsHighContrastAdjustnone&:active .ms-Button-icon&:active .ms-Button-description&:active .ms-Button-menuIcon": "root-153", "ltr&backgroundColor#0078d4color#ffffffpaddingTop6paddingRight6paddingBottom6paddingLeft6heightautoboxSizingborder-boxborderRadius0borderTopRightRadius2pxborderBottomRightRadius2pxborder1px solid #8a8886borderLeftnoneoutlinetransparentuserSelectnonedisplayinline-blocktextDecorationnonetextAligncentercursorpointerverticalAligntopwidth32marginLeft-1marginTop0marginRight0marginBottom0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&backgroundColorCanvas&:hoverbackgroundColor#106ebe@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hovercolorHighlight@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button-menuIconcolorWindowText": "css-154", "ltr&outlinetransparentpositionrelativedisplayinline-flex@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&bordernone&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft3top3bottom3right3border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2bordernone& .ms-Button--defaultborderTopRightRadius0borderBottomRightRadius0borderRightnoneflexGrow1& .ms-Button--primaryborderTopRightRadius0borderBottomRightRadius0bordernoneflexGrow1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button--primarycolorWindowTextbackgroundColorWindowborder1px solid WindowTextborderRightWidth0forcedColorAdjustnoneMsHighContrastAdjustnone& .ms-Button--primary:hoverbordernone& .ms-Button--primary:activebordernone& .ms-Button--primary + .ms-Buttonbordernone@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button--primary + .ms-Buttonborder1px solid WindowTextborderLeftWidth0&:hover&:hover .ms-Button--primary@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover .ms-Button--primarycolorWindowbackgroundColorHighlight&:hover .ms-Button.is-disabledcolor#a19f9d@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hover .ms-Button.is-disabledcolorGrayTextborderColorGrayTextbackgroundColorWindow&:focusoutlinenone!important": "css-155", "ltr&color#ffffff": "css-156", "ltr&displayflexheight100%flexWrapnowrapjustifyContentcenteralignItemscenter": "css-157", "ltr&positionabsolutewidth1right31top8bottom8backgroundColor#ffffff@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&backgroundColorWindowText": "css-158", "ltr&displayNamerootbackgroundColor#0078d4color#ffffffpaddingTop6paddingRight6paddingBottom6paddingLeft6heightautoboxSizingborder-boxborderRadius0borderTopRightRadius2pxborderBottomRightRadius2pxborder1px solid #8a8886borderLeftnoneoutlinetransparentuserSelectnonedisplayinline-blocktextDecorationnonetextAligncentercursorpointerverticalAligntopwidth32marginLeft-1marginTop0marginRight0marginBottom0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&backgroundColorCanvas&:hoverbackgroundColor#106ebe@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hovercolorHighlight@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){& .ms-Button-menuIconcolorWindowText&:hover .ms-Button-label&:hover .ms-Button-icon&:hover .ms-Button-description&:hover .ms-Button-menuIcon&:focus&:active&:active .ms-Button-icon&:active .ms-Button-description&:active .ms-Button-menuIcon": "root-159", "ltr&displayNamemenuIconfontSize12pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0color#ffffff&:hover&:active": "menuIcon-160", "ltr&displayNamemenuIcon&:hover&:active": "menuIcon-161", "ltr&displayNamerootfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400": "root-162", "ltr&displayNamemainwidth288pxoutline3px solid transparent@media (min-width: 480px){&widthautomaxWidth340pxminWidth288px": "main-163", "ltr&displayNamerootfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400backgroundColortransparentpositionfixedheight100%width100%displayflexalignItemscenterjustifyContentcenteropacity0pointerEventsnonetransitionopacity 0.267s": "root-164", "ltr&displayNamemainboxShadow0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18)borderRadius2pxbackgroundColor#ffffffboxSizingborder-boxpositionrelativetextAlignleftoutline3px solid transparentmaxHeightcalc(100% - 32px)maxWidthcalc(100% - 32px)minHeight176pxminWidth288pxoverflowYautowidth288px@media (min-width: 480px){&widthautomaxWidth340pxminWidth288px": "main-165", "ltr&displayNamescrollableContentoverflowYautoflexGrow1maxHeight100vh@supports (-webkit-overflow-scrolling: touch){&": "scrollableContent-166", "ltr&displayNamekeyboardMoveIconContainerpositionabsolutedisplayflexjustifyContentcenterwidth100%paddingTop3pxpaddingRight0pxpaddingBottom3pxpaddingLeft0px": "keyboardMoveIconContainer-167", "ltr&displayNamekeyboardMoveIconfontSize24pxwidth24px": "keyboardMoveIcon-168", "ltr&animationNamecss-1,css-25animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "css-169", "ltr&displayNamerootfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400overflowYautouserSelectnoneWebkitOverflowScrollingtouch": "root-170", "ltr&displayNamelinkTextmarginTop0marginRight4pxmarginBottom0marginLeft4pxoverflowhiddenverticalAlignmiddletextAlignlefttextOverflowellipsis": "linkText-171", "ltr&displayNamecompositeLinkdisplayblockpositionrelativecolor#323130": "compositeLink-172", "ltr&displayNamelinkoutlinetransparentpositionrelativedisplayblockheight44width100%lineHeight44pxtextDecorationnonecursorpointertextOverflowellipsiswhiteSpacenowrapoverflowhiddenpaddingLeft20paddingRight20color#323130&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&border0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focusborder1px solid WindowText.ms-Nav-compositeLink:hover &backgroundColor#f3f2f1": "link-173", "ltr&displayNamechevronButtonoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize18pxfontWeight400displayblocktextAlignleftlineHeight44pxmarginTop5pxmarginRight0marginBottom5pxmarginLeft0paddingTop0px,paddingRight20px,paddingBottom0px,paddingLeft28pxbordernonetextOverflowellipsiswhiteSpacenowrapoverflowhiddencursorpointercolor#323130backgroundColortransparentwidth100%height44borderBottom1px solid #edebe9&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after&:visitedcolor#323130": "chevronButton-174", "ltr&displayNamechevronIconpositionabsoluteleft8pxheight44displayinline-flexalignItemscenterlineHeight44pxfontSize12pxtransitiontransform .1s lineartransformrotate(-180deg)": "chevronIcon-175", "ltr&displayNamenavItempaddingTop0paddingRight0paddingBottom0paddingLeft0": "navItem-176", "ltr&displayNamenavItemslistStyleTypenonepaddingTop0paddingRight0paddingBottom0paddingLeft0marginTop0marginRight0marginBottom0marginLeft0": "navItems-177", "ltr&displayNamegroupContentdisplayblockmarginBottom40pxanimationNamecss-1,css-25animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "groupContent-178", "ltr&displayNamechevronButtonoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize12pxfontWeight400displayblocktextAlignleftlineHeight44pxmarginTop5pxmarginRight0marginBottom5pxmarginLeft0paddingTop0px,paddingRight20px,paddingBottom0px,paddingLeft28pxbordernonetextOverflowellipsiswhiteSpacenowrapoverflowhiddencursorpointercolor#323130backgroundColortransparent&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after&:visitedcolor#323130": "chevronButton-179", "ltr&displayNamechevronIconpositionabsoluteleft8pxheight44displayinline-flexalignItemscenterlineHeight44pxfontSize12pxtransitiontransform .1s linear": "chevronIcon-180", "ltr&displayNamegroupContentdisplaynonemarginBottom40pxanimationNamecss-1,css-25animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModeboth": "groupContent-181", "ltr&displayNamechevronButtonoutlinetransparentpositionabsolutefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize12pxfontWeight400displayblocktextAlignleftlineHeight44pxmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight0paddingBottom0paddingLeft0bordernonetextOverflowellipsiswhiteSpacenowrapoverflowhiddencursorpointercolor#323130backgroundColortransparentwidth26height42top1pxleft1pxzIndex1&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after&:visitedcolor#323130": "chevronButton-182", "ltr&displayNamechevronIconpositionabsoluteleft8pxheight44displayinline-flexalignItemscenterlineHeight44pxfontSize12pxtransitiontransform .1s lineartop0": "chevronIcon-183", "ltr&displayNamelinkoutlinetransparentpositionrelativedisplayblockheight44width100%lineHeight44pxtextDecorationnonecursorpointertextOverflowellipsiswhiteSpacenowrapoverflowhiddenpaddingLeft3paddingRight20color#323130&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&border0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focusborder1px solid WindowText.ms-Nav-compositeLink:hover &backgroundColor#f3f2f1": "link-184", "ltr&displayNamelinkoutlinetransparentpositionrelativedisplayblockheight44width100%lineHeight44pxtextDecorationnonecursorpointertextOverflowellipsiswhiteSpacenowrapoverflowhiddenpaddingLeft20paddingRight20color#000000fontWeight600backgroundColor#edebe9&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&border0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focusborder1px solid WindowText.ms-Nav-compositeLink:hover &backgroundColor#f3f2f1&:afterborderLeft2px solid #0078d4content\"\"positionabsolutetop0right0bottom0left0pointerEventsnone": "link-185", "ltr&displayNamelinkoutlinetransparentpositionrelativedisplayblockheight44width100%lineHeight44pxtextDecorationnonecursorpointertextOverflowellipsiswhiteSpacenowrapoverflowhiddenpaddingLeft3paddingRight20color#000000fontWeight600backgroundColor#edebe9&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:after@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&border0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focusborder1px solid WindowText.ms-Nav-compositeLink:hover &backgroundColor#f3f2f1&:afterborderLeft2px solid #0078d4content\"\"positionabsolutetop0right0bottom0left0pointerEventsnone": "link-186", "ltr&&:focusoutlinenone": "css-187", "ltr&displayNamelinkoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400border1px solid transparentborderRadius2pxboxSizingborder-boxcursorpointerdisplayblockmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight20paddingBottom0paddingLeft3textDecorationnonetextAligncenteruserSelectnoneheight44color#323130backgroundColortransparentwidth100%lineHeight44pxtextOverflowellipsiswhiteSpacenowrapoverflowhidden&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2outlineColorButtonText&:active > spanpositionrelativeleft0top0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&borderColorWindowborder0&:hovercolor#0078d4@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hovercolorHighlight&:hover .ms-Button-label&:hover .ms-Button-iconcolor#0078d4&:hover .ms-Button-description&:hover .ms-Button-menuIcon&:focus&:activecolor#000000&:active .ms-Button-iconcolor#004578&:active .ms-Button-description&:active .ms-Button-menuIcon@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focusborder1px solid WindowText.ms-Nav-compositeLink:hover &backgroundColor#f3f2f1": "link-188", "ltr&displayNameflexContainerdisplayflexheight100%flexWrapnowrapjustifyContentflex-startalignItemscenter": "flexContainer-189", "ltr&displayNametextContainerflexGrow0displayblockoverflowhidden": "textContainer-190", "ltr&displayNameiconfontSize16pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0color#106ebe": "icon-191", "ltr&displayNamelabelmarginTop0marginRight4pxmarginBottom0marginLeft4pxlineHeight100%displayblockwhiteSpacenowraptextOverflowellipsisoverflowhidden": "label-192", "ltr&displayNamemenuIconfontSize12pxmarginTop0marginRight4pxmarginBottom0marginLeft4pxheight16pxlineHeight16pxtextAligncenterflexShrink0color#605e5c&:hover&:active": "menuIcon-193", "ltr&displayNamelinkoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight600border1px solid transparentborderRadius2pxboxSizingborder-boxcursorpointerdisplayblockmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight20paddingBottom0paddingLeft3textDecorationnonetextAligncenteruserSelectnoneheight44color#000000backgroundColor#edebe9width100%lineHeight44pxtextOverflowellipsiswhiteSpacenowrapoverflowhidden&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft1top1bottom1right1border1px solid #ffffffoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2outlineColorButtonText&:active > spanpositionrelativeleft0top0@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&borderColorWindowborder0&:hovercolor#0078d4@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hovercolorHighlight&:hover .ms-Button-label&:hover .ms-Button-iconcolor#0078d4&:hover .ms-Button-description&:hover .ms-Button-menuIcon&:focus&:activecolor#000000&:active .ms-Button-iconcolor#004578&:active .ms-Button-description&:active .ms-Button-menuIcon@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:focusborder1px solid WindowText.ms-Nav-compositeLink:hover &backgroundColor#f3f2f1&:afterborderLeft2px solid #0078d4content\"\"positionabsolutetop0right0bottom0left0pointerEventsnone": "link-194", "ltr&fontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400flexBasisautoheightautowidth0flexGrow1": "css-195", "ltr&displayflexflexDirectioncolumnflexWrapnowrapwidthautoheight100%boxSizingborder-boxanimationNamecss-1,css-22animationDuration0.367sanimationTimingFunctioncubic-bezier(.1,.9,.2,1)animationFillModebothoverflowautopositionrelativepaddingTop0paddingRight0paddingBottom0paddingLeft0marginTop0marginRight0marginBottom0marginLeft0& > *textOverflowellipsis& > *:not(.ms-StackItem)flexShrink0": "css-196", "ltr&fontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400flexBasisautoheightautowidthautoflexShrink0": "css-197", "ltr&displayNamerootfontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400boxShadownonemarginTop0marginRight0marginBottom0marginLeft0paddingTop1pxpaddingRight0paddingBottom1pxpaddingLeft4pxboxSizingborder-boxcolor#323130backgroundColor#ffffffdisplayflexflexDirectionrowflexWrapnowrapalignItemsstretchborderRadius2pxborder1px solid #605e5cheight32@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&borderColorWindowText&:hoverborderColor#323130@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){&:hoverborderColorHighlight&:hover .ms-SearchBox-iconContainercolor#005a9e": "root-198", "ltr&displayNameiconContainerdisplayflexflexDirectioncolumnjustifyContentcenterflexShrink0fontSize16width32textAligncentercolor#0078d4cursortexttransitionwidth 0.167s": "iconContainer-199", "ltr&displayNameiconopacity1transitionopacity 0.167s 0s": "icon-200", "ltr&displayNameclearButtondisplayflexflexDirectionrowalignItemsstretchcursorpointerflexBasis32pxflexShrink0paddingTop0paddingRight0paddingBottom0paddingLeft0marginTop-1pxmarginRight0pxmarginBottom-1pxmarginLeft0px&:hover .ms-ButtonbackgroundColor#f3f2f1&:hover .ms-Button-iconcolor#323130& .ms-ButtonborderRadius0 1px 1px 0& .ms-Button-iconcolor#605e5c": "clearButton-201", "ltr&displayNamefieldboxShadownonemarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight0paddingBottom0.5paddingLeft0boxSizingborder-boxbackgroundColortransparentbordernoneoutlinenonefontWeightinheritfontFamilyinheritfontSizeinheritcolor#323130flex1 1 0pxminWidth0pxoverflowhiddentextOverflowellipsis&::placeholdercolor#605e5copacity1&:-ms-input-placeholdercolor#605e5copacity1&::-ms-input-placeholdercolor#605e5copacity1&::-ms-cleardisplaynone": "field-202", "ltr&displayNameicondisplayinline-blockopacity1transitionopacity 0.167s 0s": "icon-203", "ltr&fontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400flexBasisautoheightautowidthautoflexShrink1": "css-204", "ltr&displayNamerootoutlinetransparentpositionrelativefontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400bordernoneborderRadius2pxboxSizingborder-boxcursordefaultdisplayinline-blockmarginTop0marginRight0marginBottom0marginLeft0paddingTop0paddingRight4pxpaddingBottom0paddingLeft4pxtextDecorationnonetextAligncenteruserSelectnonewidth32pxheight32pxbackgroundColor#f3f2f1color#c8c6c4borderColor#f3f2f1&::-moz-focus-innerborder0.ms-Fabric--isFocusVisible &:focus:aftercontent\"\"positionabsoluteleft2top2bottom2right2border1px solid transparentoutline1px solid #605e5czIndex1@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible &:focus:afterleft-2top-2bottom-2right-2outlineColorButtonText&:active > spanpositionrelativeleft0top0&:hoveroutline0&:focusoutline0": "root-205", "ltr&fontFamily'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serifMozOsxFontSmoothinggrayscaleWebkitFontSmoothingantialiasedfontSize14pxfontWeight400flexBasisautoheightautowidthautoflexGrow1positionrelativeminHeight0paddingTop0paddingRight0paddingBottom0paddingLeft0marginTop0 !importantmarginRight0 !importantmarginBottom0 !importantmarginLeft0 !important": "css-206" }, "preservedRules": ["@keyframes css-1{from{opacity:0;}to{opacity:1;}}", "@keyframes css-2{from{opacity:1;}to{opacity:0;}}", "@keyframes css-3{from{transform:scale3d(1.15, 1.15, 1);}to{transform:scale3d(1, 1, 1);}}", "@keyframes css-4{from{transform:scale3d(1, 1, 1);}to{transform:scale3d(0.9, 0.9, 1);}}", "@keyframes css-5{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(-48px, 0, 0);}}", "@keyframes css-6{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(48px, 0, 0);}}", "@keyframes css-7{from{transform:translate3d(48px, 0, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-8{from{transform:translate3d(-48px, 0, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-9{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -48px, 0);}}", "@keyframes css-10{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 48px, 0);}}", "@keyframes css-11{from{transform:translate3d(0, 48px, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-12{from{transform:translate3d(0, -48px, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-13{from{opacity:1;}to{opacity:0;visibility:hidden;}}", "@keyframes css-14{from{transform:translate3d(-10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-15{from{transform:translate3d(-20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-16{from{transform:translate3d(-40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-17{from{transform:translate3d(-400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-18{from{transform:translate3d(10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-19{from{transform:translate3d(20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-20{from{transform:translate3d(40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-21{from{transform:translate3d(400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-22{from{transform:translate3d(0,10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-23{from{transform:translate3d(0,20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-24{from{transform:translate3d(0,-10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-25{from{transform:translate3d(0,-20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-26{from{transform:translate3d(0,0,0);}to{transform:translate3d(10px,0,0);}}", "@keyframes css-27{from{transform:translate3d(0,0,0);}to{transform:translate3d(20px,0,0);}}", "@keyframes css-28{from{transform:translate3d(0,0,0);}to{transform:translate3d(40px,0,0);}}", "@keyframes css-29{from{transform:translate3d(0,0,0);}to{transform:translate3d(400px,0,0);}}", "@keyframes css-30{from{transform:translate3d(0,0,0);}to{transform:translate3d(-10px,0,0);}}", "@keyframes css-31{from{transform:translate3d(0,0,0);}to{transform:translate3d(-20px,0,0);}}", "@keyframes css-32{from{transform:translate3d(0,0,0);}to{transform:translate3d(-40px,0,0);}}", "@keyframes css-33{from{transform:translate3d(0,0,0);}to{transform:translate3d(-400px,0,0);}}", "@keyframes css-34{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-10px,0);}}", "@keyframes css-35{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-20px,0);}}", "@keyframes css-36{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,10px,0);}}", "@keyframes css-37{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,20px,0);}}", "@keyframes css-38{from{transform:scale3d(.98,.98,1);}to{transform:scale3d(1,1,1);}}", "@keyframes css-39{from{transform:scale3d(1,1,1);}to{transform:scale3d(.98,.98,1);}}", "@keyframes css-40{from{transform:scale3d(1.03,1.03,1);}to{transform:scale3d(1,1,1);}}", "@keyframes css-41{from{transform:scale3d(1,1,1);}to{transform:scale3d(1.03,1.03,1);}}", "@keyframes css-42{from{transform:rotateZ(0deg);}to{transform:rotateZ(90deg);}}", "@keyframes css-43{from{transform:rotateZ(0deg);}to{transform:rotateZ(-90deg);}}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI Light'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiLight'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiBold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI Bold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@keyframes css-108{100%{width:0px;height:0px;overflow:hidden;}99.9%{width:100%;height:28px;overflow:visible;}0%{width:100%;height:28px;overflow:visible;}}"], "rules": [".css-0{overflow:hidden !important;}", "@keyframes css-1{from{opacity:0;}to{opacity:1;}}", "@keyframes css-2{from{opacity:1;}to{opacity:0;}}", "@keyframes css-3{from{transform:scale3d(1.15, 1.15, 1);}to{transform:scale3d(1, 1, 1);}}", "@keyframes css-4{from{transform:scale3d(1, 1, 1);}to{transform:scale3d(0.9, 0.9, 1);}}", "@keyframes css-5{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(-48px, 0, 0);}}", "@keyframes css-6{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(48px, 0, 0);}}", "@keyframes css-7{from{transform:translate3d(48px, 0, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-8{from{transform:translate3d(-48px, 0, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-9{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, -48px, 0);}}", "@keyframes css-10{from{transform:translate3d(0, 0, 0);}to{transform:translate3d(0, 48px, 0);}}", "@keyframes css-11{from{transform:translate3d(0, 48px, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-12{from{transform:translate3d(0, -48px, 0);}to{transform:translate3d(0, 0, 0);}}", "@keyframes css-13{from{opacity:1;}to{opacity:0;visibility:hidden;}}", "@keyframes css-14{from{transform:translate3d(-10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-15{from{transform:translate3d(-20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-16{from{transform:translate3d(-40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-17{from{transform:translate3d(-400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-18{from{transform:translate3d(10px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-19{from{transform:translate3d(20px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-20{from{transform:translate3d(40px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-21{from{transform:translate3d(400px,0,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-22{from{transform:translate3d(0,10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-23{from{transform:translate3d(0,20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-24{from{transform:translate3d(0,-10px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-25{from{transform:translate3d(0,-20px,0);pointer-events:none;}to{transform:translate3d(0,0,0);pointer-events:auto;}}", "@keyframes css-26{from{transform:translate3d(0,0,0);}to{transform:translate3d(10px,0,0);}}", "@keyframes css-27{from{transform:translate3d(0,0,0);}to{transform:translate3d(20px,0,0);}}", "@keyframes css-28{from{transform:translate3d(0,0,0);}to{transform:translate3d(40px,0,0);}}", "@keyframes css-29{from{transform:translate3d(0,0,0);}to{transform:translate3d(400px,0,0);}}", "@keyframes css-30{from{transform:translate3d(0,0,0);}to{transform:translate3d(-10px,0,0);}}", "@keyframes css-31{from{transform:translate3d(0,0,0);}to{transform:translate3d(-20px,0,0);}}", "@keyframes css-32{from{transform:translate3d(0,0,0);}to{transform:translate3d(-40px,0,0);}}", "@keyframes css-33{from{transform:translate3d(0,0,0);}to{transform:translate3d(-400px,0,0);}}", "@keyframes css-34{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-10px,0);}}", "@keyframes css-35{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,-20px,0);}}", "@keyframes css-36{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,10px,0);}}", "@keyframes css-37{from{transform:translate3d(0,0,0);}to{transform:translate3d(0,20px,0);}}", "@keyframes css-38{from{transform:scale3d(.98,.98,1);}to{transform:scale3d(1,1,1);}}", "@keyframes css-39{from{transform:scale3d(1,1,1);}to{transform:scale3d(.98,.98,1);}}", "@keyframes css-40{from{transform:scale3d(1.03,1.03,1);}to{transform:scale3d(1,1,1);}}", "@keyframes css-41{from{transform:scale3d(1,1,1);}to{transform:scale3d(1.03,1.03,1);}}", "@keyframes css-42{from{transform:rotateZ(0deg);}to{transform:rotateZ(90deg);}}", "@keyframes css-43{from{transform:rotateZ(0deg);}to{transform:rotateZ(-90deg);}}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Arabic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Cyrillic)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (East European)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Greek)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Hebrew)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Vietnamese)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI Light'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiLight'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI SemiBold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (West European)';src:local('Segoe UI Bold'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:''Selawik Web'';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Armenian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff') format('woff');font-weight:300;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff') format('woff');font-weight:400;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", "@font-face{font-family:'Segoe UI Web (Georgian)';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff') format('woff');font-weight:700;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');font-weight:100;font-style:normal;font-display:swap;}", "@font-face{font-family:'Leelawadee UI Web';src:url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'),url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');font-weight:600;font-style:normal;font-display:swap;}", ".css-101{animation-name:css-1,css-22;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".css-102{animation-name:css-1,css-24;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".css-103{animation-name:css-1,css-18;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".css-104{animation-name:css-1,css-14;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".root-105{display:inline-block;}", ".placeholder-106{width:1em;}", ".image-107{overflow:hidden;}", "@keyframes css-108{100%{width:0px;height:0px;overflow:hidden;}99.9%{width:100%;height:28px;overflow:visible;}0%{width:100%;height:28px;overflow:visible;}}", ".title-container-109{border-bottom:1px solid rgb(243, 242, 241);}", ".title-110{padding-top:4px;padding-right:0;padding-bottom:4px;padding-left:0;font-size:20px;text-align:center;}", ".left-column-111{width:270px;padding-right:8px;border-right:1px solid rgb(243, 242, 241);overflow:auto;}", ".right-column-112{border-left:1px solid rgb(243, 242, 241);}", ".left-column-113{width:270px;padding-right:8px;border-right:1px solid rgb(243, 242, 241);overflow:auto;display:none;}", ".css-114{display:flex;flex-direction:column;flex-wrap:nowrap;width:auto;height:100%;box-sizing:border-box;}", ".css-114 > *{text-overflow:ellipsis;}", ".title-container-115{display:flex;flex-direction:row;flex-wrap:nowrap;width:auto;height:auto;box-sizing:border-box;align-items:center;border-bottom:1px solid rgb(243, 242, 241);}", ".title-container-115 > *{text-overflow:ellipsis;}", ".root-116{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:none;border-radius:2px;box-sizing:border-box;cursor:pointer;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:4px;padding-bottom:0;padding-left:4px;text-decoration:none;text-align:center;user-select:none;width:32px;height:32px;background-color:transparent;color:#0078d4;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".root-116::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .root-116:focus:after{content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:1px solid transparent;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .root-116:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;}}", ".root-116:active > span{position:relative;left:0px;top:0px;}", ".root-116:hover{color:#106ebe;background-color:#f3f2f1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-116:hover{border-color:Highlight;color:Highlight;}}", ".root-116:active{color:#005a9e;background-color:#edebe9;}", ".flexContainer-117{display:flex;height:100%;flex-wrap:nowrap;justify-content:center;align-items:center;}", ".textContainer-118{flex-grow:1;display:block;}", ".icon-119{font-size:16px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;}", ".label-120{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;line-height:100%;display:block;}", ".menuIcon-121{font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;}", ".description-122{display:block;}", ".screenReaderText-123{position:absolute;width:1px;height:1px;margin-top:-1px;margin-right:-1px;margin-bottom:-1px;margin-left:-1px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;border:0px;overflow:hidden;white-space:nowrap;}", ".css-124{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-grow:1;flex-shrink:1;}", ".css-125{display:flex;flex-direction:row;flex-wrap:nowrap;width:auto;height:100%;box-sizing:border-box;flex-grow:1;min-height:0px;overflow:hidden;line-height:1.5;}", ".css-125 > *{text-overflow:ellipsis;}", ".css-125 > *:not(.ms-StackItem){flex-shrink:0;}", ".left-column-126{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:270px;flex-shrink:0;padding-right:8px;border-right:1px solid rgb(243, 242, 241);overflow:auto;display:none;}", ".css-127{display:flex;flex-direction:column;flex-wrap:nowrap;width:auto;height:auto;padding-top:0;padding-right:0;padding-bottom:8px;padding-left:8px;box-sizing:border-box;}", ".css-127 > *{text-overflow:ellipsis;}", ".css-127 > *:not(:first-child){margin-top:8px;}", ".dropdown-128{box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;box-sizing:border-box;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;color:#323130;border-color:#605e5c;position:relative;outline:0px;user-select:none;width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".dropdown-128:hover .ms-Dropdown-title{border-color:#323130;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdown-128:hover .ms-Dropdown-title{border-color:Highlight;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdown-128:focus .ms-Dropdown-title{color:Highlight;}}", ".dropdown-128:focus:after{pointer-events:none;content:'';position:absolute;box-sizing:border-box;top:0px;left:0px;width:100%;height:100%;border:none;border-radius:2px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdown-128:focus:after{color:Highlight;}}", ".dropdown-128:active .ms-Dropdown-title{border-color:#0078d4;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdown-128:active .ms-Dropdown-title{border-color:Highlight;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdown-128:focus .ms-Dropdown-caretDown{color:Highlight;}}", ".dropdown-128:hover .ms-Dropdown-title--hasError{border-color:#a4262c;}", ".dropdown-128:active .ms-Dropdown-title--hasError{border-color:#a4262c;}", ".title-129{box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:28px;padding-bottom:0;padding-left:8px;box-sizing:border-box;background-color:#f3f2f1;border-width:1px;border-style:solid;border-color:#605e5c;border-radius:2px;cursor:default;display:block;height:32px;line-height:30px;position:relative;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;color:#a19f9d;border:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.title-129{border:1px solid GrayText;color:GrayText;background-color:Window;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".caretDownWrapper-130{height:32px;line-height:30px;padding-top:1px;position:absolute;right:8px;top:0px;}", ".caretDown-131{color:#a19f9d;font-size:12px;pointer-events:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.caretDown-131{color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".errorMessage-132{color:#a4262c;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:12px;font-weight:400;padding-top:5px;}", ".callout-133{box-shadow:0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);border-radius:2px 2px 0 0;}", ".callout-133 .ms-Callout-main{border-radius:2px 2px 0 0;}", ".dropdownItemsWrapper-134:focus{outline:0px;}", ".dropdownItems-135{display:block;}", ".dropdownItem-136{background-color:transparent;box-sizing:border-box;cursor:pointer;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;}", ".dropdownItem-136 .ms-Button-flexContainer{width:100%;}", ".dropdownItem-136:hover{color:#201f1e;background-color:#f3f2f1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItem-136:hover{background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItem-136:hover{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".dropdownItem-136.is-multi-select:hover{background-color:transparent;}", ".dropdownItem-136:active:hover{color:#201f1e;background-color:#edebe9;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItem-136:active:hover{background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItem-136:active:hover{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".ms-Fabric--isFocusVisible .dropdownItem-136:focus:after{left:0px;top:0px;bottom:0px;right:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItem-136{border:none;}}", ".dropdownItemSelected-137{background-color:#edebe9;box-sizing:border-box;cursor:pointer;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;color:#201f1e;}", ".dropdownItemSelected-137 .ms-Button-flexContainer{width:100%;}", ".dropdownItemSelected-137:hover{color:#201f1e;background-color:#edebe9;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemSelected-137:hover{background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItemSelected-137:hover{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".dropdownItemSelected-137.is-multi-select:hover{background-color:#edebe9;}", ".dropdownItemSelected-137:active:hover{color:#201f1e;background-color:#f3f2f1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemSelected-137:active:hover{background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItemSelected-137:active:hover{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".ms-Fabric--isFocusVisible .dropdownItemSelected-137:focus:after{left:0px;top:0px;bottom:0px;right:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemSelected-137{border:none;background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItemSelected-137{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".dropdownItemDisabled-138{background-color:transparent;box-sizing:border-box;cursor:default;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;color:#a19f9d;}", ".dropdownItemDisabled-138 .ms-Button-flexContainer{width:100%;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemDisabled-138{color:GrayText;border:none;}}", ".dropdownItemSelectedAndDisabled-139{background-color:transparent;box-sizing:border-box;cursor:default;display:flex;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;color:#a19f9d;}", ".dropdownItemSelectedAndDisabled-139 .ms-Button-flexContainer{width:100%;}", ".dropdownItemSelectedAndDisabled-139:hover{color:#201f1e;background-color:#edebe9;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemSelectedAndDisabled-139:hover{background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItemSelectedAndDisabled-139:hover{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".dropdownItemSelectedAndDisabled-139.is-multi-select:hover{background-color:#edebe9;}", ".dropdownItemSelectedAndDisabled-139:active:hover{color:#201f1e;background-color:#f3f2f1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemSelectedAndDisabled-139:active:hover{background-color:Highlight;border-color:Highlight;color:HighlightText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItemSelectedAndDisabled-139:active:hover{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".ms-Fabric--isFocusVisible .dropdownItemSelectedAndDisabled-139:focus:after{left:0px;top:0px;bottom:0px;right:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemSelectedAndDisabled-139{border:none;background-color:Highlight;border-color:Highlight;color:GrayText;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active), screen and (-ms-high-contrast: black-on-white), screen and (forced-colors: active) and (prefers-color-scheme: light){.dropdownItemSelectedAndDisabled-139{forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".dropdownItemHidden-140{background-color:transparent;box-sizing:border-box;cursor:pointer;display:none;align-items:center;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;width:100%;min-height:36px;line-height:20px;height:0px;position:relative;border:1px solid transparent;border-radius:0px;word-wrap:break-word;overflow-wrap:break-word;text-align:left;}", ".dropdownItemHidden-140 .ms-Button-flexContainer{width:100%;}", ".dropdownDivider-141{height:1px;background-color:#edebe9;}", ".dropdownDividerHidden-142{display:none;}", ".dropdownOptionText-143{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;min-width:0px;max-width:100%;word-wrap:break-word;overflow-wrap:break-word;margin-top:1px;margin-right:1px;margin-bottom:1px;margin-left:1px;}", ".dropdownItemHeader-144{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;color:#0078d4;background:none;background-color:transparent;border:none;height:36px;line-height:36px;cursor:default;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;user-select:none;text-align:left;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemHeader-144{color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".dropdownItemHeaderHidden-145{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;color:#0078d4;background:none;background-color:transparent;border:none;height:36px;line-height:36px;cursor:default;padding-top:0;padding-right:8px;padding-bottom:0;padding-left:8px;user-select:none;text-align:left;display:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.dropdownItemHeaderHidden-145{color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".root-146{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;color:#a19f9d;box-sizing:border-box;box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;display:inline-block;padding-top:5px;padding-right:0;padding-bottom:5px;padding-left:0;word-wrap:break-word;overflow-wrap:break-word;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-146{color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".caretDown-147{display:inline-block;color:#a19f9d;font-size:12px;pointer-events:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.caretDown-147{color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".css-148{display:flex;flex-direction:row;flex-wrap:nowrap;width:auto;height:auto;box-sizing:border-box;}", ".css-148 > *{text-overflow:ellipsis;}", ".root-149{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:1px solid #0078d4;border-radius:2px;box-sizing:border-box;cursor:default;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:16px;padding-bottom:0;padding-left:16px;text-decoration:none;text-align:center;user-select:none;min-width:80px;height:32px;background-color:#f3f2f1;color:#d2d0ce;width:100%;border-color:#f3f2f1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".root-149::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .root-149:focus:after{content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:1px solid transparent;outline:1px solid #605e5c;z-index:1;outline-color:#ffffff;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .root-149:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;}}", ".root-149:active > span{position:relative;left:0px;top:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-149{color:GrayText;background-color:Window;border-color:GrayText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".root-149:hover{outline:0px;}", ".root-149:focus{outline:0px;}", ".icon-150{font-size:16px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#a19f9d;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.icon-150{color:GrayText;}}", ".label-151{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;line-height:100%;display:block;font-weight:600;}", ".menuIcon-152{font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#a19f9d;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.menuIcon-152{color:GrayText;}}", ".root-153{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:1px solid #0078d4;border-radius:2px;box-sizing:border-box;cursor:pointer;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:16px;padding-bottom:0;padding-left:16px;text-decoration:none;text-align:center;user-select:none;min-width:80px;height:32px;background-color:#0078d4;color:#ffffff;width:100%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".root-153::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .root-153:focus:after{content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:none;outline:1px solid #605e5c;z-index:1;outline-color:#ffffff;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .root-153:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;}}", ".root-153:active > span{position:relative;left:0px;top:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-153{color:Window;background-color:WindowText;border-color:WindowText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".root-153:hover{background-color:#106ebe;border:1px solid #106ebe;color:#ffffff;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-153:hover{color:Window;background-color:Highlight;border-color:Highlight;}}", ".root-153:active{background-color:#005a9e;border:1px solid #005a9e;color:#ffffff;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-153:active{color:Window;background-color:WindowText;border-color:WindowText;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".css-154{background-color:#0078d4;color:#ffffff;padding-top:6px;padding-right:6px;padding-bottom:6px;padding-left:6px;height:auto;box-sizing:border-box;border-radius:0px;border-top-right-radius:2px;border-bottom-right-radius:2px;border:1px solid #8a8886;border-left:none;outline:transparent;user-select:none;display:inline-block;text-decoration:none;text-align:center;cursor:pointer;vertical-align:top;width:32px;margin-left:-1px;margin-top:0px;margin-right:0px;margin-bottom:0px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-154{background-color:Canvas;}}", ".css-154:hover{background-color:#106ebe;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-154:hover{color:Highlight;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-154 .ms-Button-menuIcon{color:WindowText;}}", ".css-155{outline:transparent;position:relative;display:inline-flex;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-155{border:none;}}", ".css-155::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .css-155:focus:after{content:\"\";position:absolute;left:3px;top:3px;bottom:3px;right:3px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .css-155:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;border:none;}}", ".css-155 .ms-Button--default{border-top-right-radius:0;border-bottom-right-radius:0;border-right:none;flex-grow:1;}", ".css-155 .ms-Button--primary{border-top-right-radius:0;border-bottom-right-radius:0;border:none;flex-grow:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-155 .ms-Button--primary{color:WindowText;background-color:Window;border:1px solid WindowText;border-right-width:0;forced-color-adjust:none;-ms-high-contrast-adjust:none;}}", ".css-155 .ms-Button--primary:hover{border:none;}", ".css-155 .ms-Button--primary:active{border:none;}", ".css-155 .ms-Button--primary + .ms-Button{border:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-155 .ms-Button--primary + .ms-Button{border:1px solid WindowText;border-left-width:0;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-155:hover .ms-Button--primary{color:Window;background-color:Highlight;}}", ".css-155:hover .ms-Button.is-disabled{color:#a19f9d;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-155:hover .ms-Button.is-disabled{color:GrayText;border-color:GrayText;background-color:Window;}}", ".css-155:focus{outline:none!important;}", ".css-156{color:#ffffff;}", ".css-157{display:flex;height:100%;flex-wrap:nowrap;justify-content:center;align-items:center;}", ".css-158{position:absolute;width:1px;right:31px;top:8px;bottom:8px;background-color:#ffffff;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.css-158{background-color:WindowText;}}", ".root-159{background-color:#0078d4;color:#ffffff;padding-top:6px;padding-right:6px;padding-bottom:6px;padding-left:6px;height:auto;box-sizing:border-box;border-radius:0px;border-top-right-radius:2px;border-bottom-right-radius:2px;border:1px solid #8a8886;border-left:none;outline:transparent;user-select:none;display:inline-block;text-decoration:none;text-align:center;cursor:pointer;vertical-align:top;width:32px;margin-left:-1px;margin-top:0px;margin-right:0px;margin-bottom:0px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-159{background-color:Canvas;}}", ".root-159:hover{background-color:#106ebe;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-159:hover{color:Highlight;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-159 .ms-Button-menuIcon{color:WindowText;}}", ".menuIcon-160{font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#ffffff;}", ".root-162{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;}", ".main-163{width:288px;outline:3px solid transparent;}", "@media (min-width: 480px){.main-163{width:auto;max-width:340px;min-width:288px;}}", ".root-164{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;background-color:transparent;position:fixed;height:100%;width:100%;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.267s;}", ".main-165{box-shadow:0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);border-radius:2px;background-color:#ffffff;box-sizing:border-box;position:relative;text-align:left;outline:3px solid transparent;max-height:calc(100% - 32px);max-width:calc(100% - 32px);min-height:176px;min-width:288px;overflow-y:auto;width:288px;}", "@media (min-width: 480px){.main-165{width:auto;max-width:340px;min-width:288px;}}", ".scrollableContent-166{overflow-y:auto;flex-grow:1;max-height:100vh;}", ".keyboardMoveIconContainer-167{position:absolute;display:flex;justify-content:center;width:100%;padding-top:3px;padding-right:0px;padding-bottom:3px;padding-left:0px;}", ".keyboardMoveIcon-168{font-size:24px;width:24px;}", ".css-169{animation-name:css-1,css-25;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".root-170{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;overflow-y:auto;user-select:none;-webkit-overflow-scrolling:touch;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".linkText-171{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;overflow:hidden;vertical-align:middle;text-align:left;text-overflow:ellipsis;}", ".compositeLink-172{display:block;position:relative;color:#323130;}", ".link-173{outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:20px;color:#323130;}", ".link-173::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .link-173:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-173{border:0px;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-173:focus{border:1px solid WindowText;}}", ".ms-Nav-compositeLink:hover .link-173{background-color:#f3f2f1;}", ".chevronButton-174{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:18px;font-weight:400;display:block;text-align:left;line-height:44px;margin-top:5px;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0px,;padding-right:20px,;padding-bottom:0px,;padding-left:28px;border:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;cursor:pointer;color:#323130;background-color:transparent;width:100%;height:44px;border-bottom:1px solid #edebe9;}", ".chevronButton-174::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .chevronButton-174:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", ".chevronButton-174:visited{color:#323130;}", ".chevronIcon-175{position:absolute;left:8px;height:44px;display:inline-flex;align-items:center;line-height:44px;font-size:12px;transition:transform .1s linear;transform:rotate(-180deg);}", ".navItem-176{padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;}", ".navItems-177{list-style-type:none;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}", ".groupContent-178{display:block;margin-bottom:40px;animation-name:css-1,css-25;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".chevronButton-179{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:12px;font-weight:400;display:block;text-align:left;line-height:44px;margin-top:5px;margin-right:0;margin-bottom:5px;margin-left:0;padding-top:0px,;padding-right:20px,;padding-bottom:0px,;padding-left:28px;border:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;cursor:pointer;color:#323130;background-color:transparent;}", ".chevronButton-179::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .chevronButton-179:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", ".chevronButton-179:visited{color:#323130;}", ".chevronIcon-180{position:absolute;left:8px;height:44px;display:inline-flex;align-items:center;line-height:44px;font-size:12px;transition:transform .1s linear;}", ".groupContent-181{display:none;margin-bottom:40px;animation-name:css-1,css-25;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;}", ".chevronButton-182{outline:transparent;position:absolute;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:12px;font-weight:400;display:block;text-align:left;line-height:44px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;border:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;cursor:pointer;color:#323130;background-color:transparent;width:26px;height:42px;top:1px;left:1px;z-index:1;}", ".chevronButton-182::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .chevronButton-182:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", ".chevronButton-182:visited{color:#323130;}", ".chevronIcon-183{position:absolute;left:8px;height:44px;display:inline-flex;align-items:center;line-height:44px;font-size:12px;transition:transform .1s linear;top:0px;}", ".link-184{outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:3px;padding-right:20px;color:#323130;}", ".link-184::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .link-184:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-184{border:0px;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-184:focus{border:1px solid WindowText;}}", ".ms-Nav-compositeLink:hover .link-184{background-color:#f3f2f1;}", ".link-185{outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:20px;color:#000000;font-weight:600;background-color:#edebe9;}", ".link-185::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .link-185:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-185{border:0px;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-185:focus{border:1px solid WindowText;}}", ".ms-Nav-compositeLink:hover .link-185{background-color:#f3f2f1;}", ".link-185:after{border-left:2px solid #0078d4;content:\"\";position:absolute;top:0px;right:0px;bottom:0px;left:0px;pointer-events:none;}", ".link-186{outline:transparent;position:relative;display:block;height:44px;width:100%;line-height:44px;text-decoration:none;cursor:pointer;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:3px;padding-right:20px;color:#000000;font-weight:600;background-color:#edebe9;}", ".link-186::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .link-186:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-186{border:0px;}}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-186:focus{border:1px solid WindowText;}}", ".ms-Nav-compositeLink:hover .link-186{background-color:#f3f2f1;}", ".link-186:after{border-left:2px solid #0078d4;content:\"\";position:absolute;top:0px;right:0px;bottom:0px;left:0px;pointer-events:none;}", ".css-187:focus{outline:none;}", ".link-188{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:1px solid transparent;border-radius:2px;box-sizing:border-box;cursor:pointer;display:block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:20px;padding-bottom:0;padding-left:3px;text-decoration:none;text-align:center;user-select:none;height:44px;color:#323130;background-color:transparent;width:100%;line-height:44px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".link-188::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .link-188:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .link-188:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;}}", ".link-188:active > span{position:relative;left:0px;top:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-188{border-color:Window;border:0px;}}", ".link-188:hover{color:#0078d4;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-188:hover{color:Highlight;}}", ".link-188:hover .ms-Button-icon{color:#0078d4;}", ".link-188:active{color:#000000;}", ".link-188:active .ms-Button-icon{color:#004578;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-188:focus{border:1px solid WindowText;}}", ".ms-Nav-compositeLink:hover .link-188{background-color:#f3f2f1;}", ".flexContainer-189{display:flex;height:100%;flex-wrap:nowrap;justify-content:flex-start;align-items:center;}", ".textContainer-190{flex-grow:0;display:block;overflow:hidden;}", ".icon-191{font-size:16px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#106ebe;}", ".label-192{margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;line-height:100%;display:block;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;}", ".menuIcon-193{font-size:12px;margin-top:0;margin-right:4px;margin-bottom:0;margin-left:4px;height:16px;line-height:16px;text-align:center;flex-shrink:0;color:#605e5c;}", ".link-194{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:600;border:1px solid transparent;border-radius:2px;box-sizing:border-box;cursor:pointer;display:block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:20px;padding-bottom:0;padding-left:3px;text-decoration:none;text-align:center;user-select:none;height:44px;color:#000000;background-color:#edebe9;width:100%;line-height:44px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".link-194::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .link-194:focus:after{content:\"\";position:absolute;left:1px;top:1px;bottom:1px;right:1px;border:1px solid #ffffff;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .link-194:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;}}", ".link-194:active > span{position:relative;left:0px;top:0px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-194{border-color:Window;border:0px;}}", ".link-194:hover{color:#0078d4;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-194:hover{color:Highlight;}}", ".link-194:hover .ms-Button-icon{color:#0078d4;}", ".link-194:active{color:#000000;}", ".link-194:active .ms-Button-icon{color:#004578;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.link-194:focus{border:1px solid WindowText;}}", ".ms-Nav-compositeLink:hover .link-194{background-color:#f3f2f1;}", ".link-194:after{border-left:2px solid #0078d4;content:\"\";position:absolute;top:0px;right:0px;bottom:0px;left:0px;pointer-events:none;}", ".css-195{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:0px;flex-grow:1;}", ".css-196{display:flex;flex-direction:column;flex-wrap:nowrap;width:auto;height:100%;box-sizing:border-box;animation-name:css-1,css-22;animation-duration:0.367s;animation-timing-function:cubic-bezier(.1,.9,.2,1);animation-fill-mode:both;overflow:auto;position:relative;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;}", ".css-196 > *{text-overflow:ellipsis;}", ".css-196 > *:not(.ms-StackItem){flex-shrink:0;}", ".css-197{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-shrink:0;}", ".root-198{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:1px;padding-right:0;padding-bottom:1px;padding-left:4px;box-sizing:border-box;color:#323130;background-color:#ffffff;display:flex;flex-direction:row;flex-wrap:nowrap;align-items:stretch;border-radius:2px;border:1px solid #605e5c;height:32px;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-198{border-color:WindowText;}}", ".root-198:hover{border-color:#323130;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.root-198:hover{border-color:Highlight;}}", ".root-198:hover .ms-SearchBox-iconContainer{color:#005a9e;}", ".iconContainer-199{display:flex;flex-direction:column;justify-content:center;flex-shrink:0;font-size:16px;width:32px;text-align:center;color:#0078d4;cursor:text;transition:width 0.167s;}", ".icon-200{opacity:1;transition:opacity 0.167s 0s;}", ".clearButton-201{display:flex;flex-direction:row;align-items:stretch;cursor:pointer;flex-basis:32px;flex-shrink:0;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:-1px;margin-right:0px;margin-bottom:-1px;margin-left:0px;}", ".clearButton-201:hover .ms-Button{background-color:#f3f2f1;}", ".clearButton-201:hover .ms-Button-icon{color:#323130;}", ".clearButton-201 .ms-Button{border-radius:0 1px 1px 0;}", ".clearButton-201 .ms-Button-icon{color:#605e5c;}", ".field-202{box-shadow:none;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0.5px;padding-left:0px;box-sizing:border-box;background-color:transparent;border:none;outline:none;font-weight:inherit;font-family:inherit;font-size:inherit;color:#323130;flex:1 1 0px;min-width:0px;overflow:hidden;text-overflow:ellipsis;}", ".field-202::placeholder{color:#605e5c;opacity:1;}", ".field-202:-ms-input-placeholder{color:#605e5c;opacity:1;}", ".field-202::-ms-input-placeholder{color:#605e5c;opacity:1;}", ".field-202::-ms-clear{display:none;}", ".icon-203{display:inline-block;opacity:1;transition:opacity 0.167s 0s;}", ".css-204{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-shrink:1;}", ".root-205{outline:transparent;position:relative;font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;border:none;border-radius:2px;box-sizing:border-box;cursor:default;display:inline-block;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0;padding-right:4px;padding-bottom:0;padding-left:4px;text-decoration:none;text-align:center;user-select:none;width:32px;height:32px;background-color:#f3f2f1;color:#c8c6c4;border-color:#f3f2f1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;}", ".root-205::-moz-focus-inner{border:0;}", ".ms-Fabric--isFocusVisible .root-205:focus:after{content:\"\";position:absolute;left:2px;top:2px;bottom:2px;right:2px;border:1px solid transparent;outline:1px solid #605e5c;z-index:1;}", "@media screen and (-ms-high-contrast: active), screen and (forced-colors: active){.ms-Fabric--isFocusVisible .root-205:focus:after{left:-2px;top:-2px;bottom:-2px;right:-2px;outline-color:ButtonText;}}", ".root-205:active > span{position:relative;left:0px;top:0px;}", ".root-205:hover{outline:0px;}", ".root-205:focus{outline:0px;}", ".css-206{font-family:'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-size:14px;font-weight:400;flex-basis:auto;height:auto;width:auto;flex-grow:1;position:relative;min-height:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;margin-top:0 !important;margin-right:0 !important;margin-bottom:0 !important;margin-left:0 !important;}"] };
  12. </script>
  13. <meta name="next-head-count" content="5" />
  14. <link rel="preload" href="/ya-webadb/apps/demo/out/_next/static/css/b6853f0190ea9f57.css" as="style" />
  15. <link rel="stylesheet" href="/ya-webadb/apps/demo/out/_next/static/css/b6853f0190ea9f57.css" data-n-g="" />
  16. <link rel="preload" href="/ya-webadb/apps/demo/out/_next/static/css/8d7c2598a4c2d09a.css" as="style" />
  17. <link rel="stylesheet" href="/ya-webadb/apps/demo/out/_next/static/css/8d7c2598a4c2d09a.css" data-n-p="" /><noscript
  18. data-n-css=""></noscript>
  19. <script defer="" nomodule=""
  20. src="/ya-webadb/apps/demo/out/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script>
  21. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/webpack-b3ed27269a9b20c4.js" defer=""></script>
  22. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/framework-d83975f75f7e6f57.js" defer=""></script>
  23. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/main-88c533d7c6256828.js" defer=""></script>
  24. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/pages/_app-3d02d5ce625d9627.js" defer=""></script>
  25. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/f0188897-68856f4d6745714e.js" defer=""></script>
  26. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/988-b2a4e89c1f2d51ef.js" defer=""></script>
  27. <script src="/ya-webadb/apps/demo/out/_next/static/chunks/pages/shell-9573f19e01630648.js" defer=""></script>
  28. <script src="/ya-webadb/apps/demo/out/_next/static/phthWfIgE5YfrFmGx62XU/_buildManifest.js" defer=""></script>
  29. <script src="/ya-webadb/apps/demo/out/_next/static/phthWfIgE5YfrFmGx62XU/_ssgManifest.js" defer=""></script>
  30. <style>
  31. .css-0 {
  32. overflow: hidden !important;
  33. }
  34. @keyframes css-1 {
  35. from {
  36. opacity: 0;
  37. }
  38. to {
  39. opacity: 1;
  40. }
  41. }
  42. @keyframes css-2 {
  43. from {
  44. opacity: 1;
  45. }
  46. to {
  47. opacity: 0;
  48. }
  49. }
  50. @keyframes css-3 {
  51. from {
  52. transform: scale3d(1.15, 1.15, 1);
  53. }
  54. to {
  55. transform: scale3d(1, 1, 1);
  56. }
  57. }
  58. @keyframes css-4 {
  59. from {
  60. transform: scale3d(1, 1, 1);
  61. }
  62. to {
  63. transform: scale3d(0.9, 0.9, 1);
  64. }
  65. }
  66. @keyframes css-5 {
  67. from {
  68. transform: translate3d(0, 0, 0);
  69. }
  70. to {
  71. transform: translate3d(-48px, 0, 0);
  72. }
  73. }
  74. @keyframes css-6 {
  75. from {
  76. transform: translate3d(0, 0, 0);
  77. }
  78. to {
  79. transform: translate3d(48px, 0, 0);
  80. }
  81. }
  82. @keyframes css-7 {
  83. from {
  84. transform: translate3d(48px, 0, 0);
  85. }
  86. to {
  87. transform: translate3d(0, 0, 0);
  88. }
  89. }
  90. @keyframes css-8 {
  91. from {
  92. transform: translate3d(-48px, 0, 0);
  93. }
  94. to {
  95. transform: translate3d(0, 0, 0);
  96. }
  97. }
  98. @keyframes css-9 {
  99. from {
  100. transform: translate3d(0, 0, 0);
  101. }
  102. to {
  103. transform: translate3d(0, -48px, 0);
  104. }
  105. }
  106. @keyframes css-10 {
  107. from {
  108. transform: translate3d(0, 0, 0);
  109. }
  110. to {
  111. transform: translate3d(0, 48px, 0);
  112. }
  113. }
  114. @keyframes css-11 {
  115. from {
  116. transform: translate3d(0, 48px, 0);
  117. }
  118. to {
  119. transform: translate3d(0, 0, 0);
  120. }
  121. }
  122. @keyframes css-12 {
  123. from {
  124. transform: translate3d(0, -48px, 0);
  125. }
  126. to {
  127. transform: translate3d(0, 0, 0);
  128. }
  129. }
  130. @keyframes css-13 {
  131. from {
  132. opacity: 1;
  133. }
  134. to {
  135. opacity: 0;
  136. visibility: hidden;
  137. }
  138. }
  139. @keyframes css-14 {
  140. from {
  141. transform: translate3d(-10px, 0, 0);
  142. pointer-events: none;
  143. }
  144. to {
  145. transform: translate3d(0, 0, 0);
  146. pointer-events: auto;
  147. }
  148. }
  149. @keyframes css-15 {
  150. from {
  151. transform: translate3d(-20px, 0, 0);
  152. pointer-events: none;
  153. }
  154. to {
  155. transform: translate3d(0, 0, 0);
  156. pointer-events: auto;
  157. }
  158. }
  159. @keyframes css-16 {
  160. from {
  161. transform: translate3d(-40px, 0, 0);
  162. pointer-events: none;
  163. }
  164. to {
  165. transform: translate3d(0, 0, 0);
  166. pointer-events: auto;
  167. }
  168. }
  169. @keyframes css-17 {
  170. from {
  171. transform: translate3d(-400px, 0, 0);
  172. pointer-events: none;
  173. }
  174. to {
  175. transform: translate3d(0, 0, 0);
  176. pointer-events: auto;
  177. }
  178. }
  179. @keyframes css-18 {
  180. from {
  181. transform: translate3d(10px, 0, 0);
  182. pointer-events: none;
  183. }
  184. to {
  185. transform: translate3d(0, 0, 0);
  186. pointer-events: auto;
  187. }
  188. }
  189. @keyframes css-19 {
  190. from {
  191. transform: translate3d(20px, 0, 0);
  192. pointer-events: none;
  193. }
  194. to {
  195. transform: translate3d(0, 0, 0);
  196. pointer-events: auto;
  197. }
  198. }
  199. @keyframes css-20 {
  200. from {
  201. transform: translate3d(40px, 0, 0);
  202. pointer-events: none;
  203. }
  204. to {
  205. transform: translate3d(0, 0, 0);
  206. pointer-events: auto;
  207. }
  208. }
  209. @keyframes css-21 {
  210. from {
  211. transform: translate3d(400px, 0, 0);
  212. pointer-events: none;
  213. }
  214. to {
  215. transform: translate3d(0, 0, 0);
  216. pointer-events: auto;
  217. }
  218. }
  219. @keyframes css-22 {
  220. from {
  221. transform: translate3d(0, 10px, 0);
  222. pointer-events: none;
  223. }
  224. to {
  225. transform: translate3d(0, 0, 0);
  226. pointer-events: auto;
  227. }
  228. }
  229. @keyframes css-23 {
  230. from {
  231. transform: translate3d(0, 20px, 0);
  232. pointer-events: none;
  233. }
  234. to {
  235. transform: translate3d(0, 0, 0);
  236. pointer-events: auto;
  237. }
  238. }
  239. @keyframes css-24 {
  240. from {
  241. transform: translate3d(0, -10px, 0);
  242. pointer-events: none;
  243. }
  244. to {
  245. transform: translate3d(0, 0, 0);
  246. pointer-events: auto;
  247. }
  248. }
  249. @keyframes css-25 {
  250. from {
  251. transform: translate3d(0, -20px, 0);
  252. pointer-events: none;
  253. }
  254. to {
  255. transform: translate3d(0, 0, 0);
  256. pointer-events: auto;
  257. }
  258. }
  259. @keyframes css-26 {
  260. from {
  261. transform: translate3d(0, 0, 0);
  262. }
  263. to {
  264. transform: translate3d(10px, 0, 0);
  265. }
  266. }
  267. @keyframes css-27 {
  268. from {
  269. transform: translate3d(0, 0, 0);
  270. }
  271. to {
  272. transform: translate3d(20px, 0, 0);
  273. }
  274. }
  275. @keyframes css-28 {
  276. from {
  277. transform: translate3d(0, 0, 0);
  278. }
  279. to {
  280. transform: translate3d(40px, 0, 0);
  281. }
  282. }
  283. @keyframes css-29 {
  284. from {
  285. transform: translate3d(0, 0, 0);
  286. }
  287. to {
  288. transform: translate3d(400px, 0, 0);
  289. }
  290. }
  291. @keyframes css-30 {
  292. from {
  293. transform: translate3d(0, 0, 0);
  294. }
  295. to {
  296. transform: translate3d(-10px, 0, 0);
  297. }
  298. }
  299. @keyframes css-31 {
  300. from {
  301. transform: translate3d(0, 0, 0);
  302. }
  303. to {
  304. transform: translate3d(-20px, 0, 0);
  305. }
  306. }
  307. @keyframes css-32 {
  308. from {
  309. transform: translate3d(0, 0, 0);
  310. }
  311. to {
  312. transform: translate3d(-40px, 0, 0);
  313. }
  314. }
  315. @keyframes css-33 {
  316. from {
  317. transform: translate3d(0, 0, 0);
  318. }
  319. to {
  320. transform: translate3d(-400px, 0, 0);
  321. }
  322. }
  323. @keyframes css-34 {
  324. from {
  325. transform: translate3d(0, 0, 0);
  326. }
  327. to {
  328. transform: translate3d(0, -10px, 0);
  329. }
  330. }
  331. @keyframes css-35 {
  332. from {
  333. transform: translate3d(0, 0, 0);
  334. }
  335. to {
  336. transform: translate3d(0, -20px, 0);
  337. }
  338. }
  339. @keyframes css-36 {
  340. from {
  341. transform: translate3d(0, 0, 0);
  342. }
  343. to {
  344. transform: translate3d(0, 10px, 0);
  345. }
  346. }
  347. @keyframes css-37 {
  348. from {
  349. transform: translate3d(0, 0, 0);
  350. }
  351. to {
  352. transform: translate3d(0, 20px, 0);
  353. }
  354. }
  355. @keyframes css-38 {
  356. from {
  357. transform: scale3d(.98, .98, 1);
  358. }
  359. to {
  360. transform: scale3d(1, 1, 1);
  361. }
  362. }
  363. @keyframes css-39 {
  364. from {
  365. transform: scale3d(1, 1, 1);
  366. }
  367. to {
  368. transform: scale3d(.98, .98, 1);
  369. }
  370. }
  371. @keyframes css-40 {
  372. from {
  373. transform: scale3d(1.03, 1.03, 1);
  374. }
  375. to {
  376. transform: scale3d(1, 1, 1);
  377. }
  378. }
  379. @keyframes css-41 {
  380. from {
  381. transform: scale3d(1, 1, 1);
  382. }
  383. to {
  384. transform: scale3d(1.03, 1.03, 1);
  385. }
  386. }
  387. @keyframes css-42 {
  388. from {
  389. transform: rotateZ(0deg);
  390. }
  391. to {
  392. transform: rotateZ(90deg);
  393. }
  394. }
  395. @keyframes css-43 {
  396. from {
  397. transform: rotateZ(0deg);
  398. }
  399. to {
  400. transform: rotateZ(-90deg);
  401. }
  402. }
  403. @font-face {
  404. font-family: 'Leelawadee UI Web';
  405. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-light.woff') format('woff');
  406. font-weight: 100;
  407. font-style: normal;
  408. font-display: swap;
  409. }
  410. @font-face {
  411. font-family: 'Leelawadee UI Web';
  412. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');
  413. font-weight: 300;
  414. font-style: normal;
  415. font-display: swap;
  416. }
  417. @font-face {
  418. font-family: 'Leelawadee UI Web';
  419. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-regular.woff') format('woff');
  420. font-weight: 400;
  421. font-style: normal;
  422. font-display: swap;
  423. }
  424. @font-face {
  425. font-family: 'Leelawadee UI Web';
  426. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semibold.woff') format('woff');
  427. font-weight: 600;
  428. font-style: normal;
  429. font-display: swap;
  430. }
  431. @font-face {
  432. font-family: 'Leelawadee UI Web';
  433. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');
  434. font-weight: 700;
  435. font-style: normal;
  436. font-display: swap;
  437. }
  438. @font-face {
  439. font-family: 'Segoe UI Web (Arabic)';
  440. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-light.woff') format('woff');
  441. font-weight: 100;
  442. font-style: normal;
  443. font-display: swap;
  444. }
  445. @font-face {
  446. font-family: 'Segoe UI Web (Arabic)';
  447. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semilight.woff') format('woff');
  448. font-weight: 300;
  449. font-style: normal;
  450. font-display: swap;
  451. }
  452. @font-face {
  453. font-family: 'Segoe UI Web (Arabic)';
  454. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-regular.woff') format('woff');
  455. font-weight: 400;
  456. font-style: normal;
  457. font-display: swap;
  458. }
  459. @font-face {
  460. font-family: 'Segoe UI Web (Arabic)';
  461. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-semibold.woff') format('woff');
  462. font-weight: 600;
  463. font-style: normal;
  464. font-display: swap;
  465. }
  466. @font-face {
  467. font-family: 'Segoe UI Web (Arabic)';
  468. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-arabic/segoeui-bold.woff') format('woff');
  469. font-weight: 700;
  470. font-style: normal;
  471. font-display: swap;
  472. }
  473. @font-face {
  474. font-family: 'Segoe UI Web (Cyrillic)';
  475. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-light.woff') format('woff');
  476. font-weight: 100;
  477. font-style: normal;
  478. font-display: swap;
  479. }
  480. @font-face {
  481. font-family: 'Segoe UI Web (Cyrillic)';
  482. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semilight.woff') format('woff');
  483. font-weight: 300;
  484. font-style: normal;
  485. font-display: swap;
  486. }
  487. @font-face {
  488. font-family: 'Segoe UI Web (Cyrillic)';
  489. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-regular.woff') format('woff');
  490. font-weight: 400;
  491. font-style: normal;
  492. font-display: swap;
  493. }
  494. @font-face {
  495. font-family: 'Segoe UI Web (Cyrillic)';
  496. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-semibold.woff') format('woff');
  497. font-weight: 600;
  498. font-style: normal;
  499. font-display: swap;
  500. }
  501. @font-face {
  502. font-family: 'Segoe UI Web (Cyrillic)';
  503. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-cyrillic/segoeui-bold.woff') format('woff');
  504. font-weight: 700;
  505. font-style: normal;
  506. font-display: swap;
  507. }
  508. @font-face {
  509. font-family: 'Segoe UI Web (East European)';
  510. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-light.woff') format('woff');
  511. font-weight: 100;
  512. font-style: normal;
  513. font-display: swap;
  514. }
  515. @font-face {
  516. font-family: 'Segoe UI Web (East European)';
  517. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semilight.woff') format('woff');
  518. font-weight: 300;
  519. font-style: normal;
  520. font-display: swap;
  521. }
  522. @font-face {
  523. font-family: 'Segoe UI Web (East European)';
  524. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-regular.woff') format('woff');
  525. font-weight: 400;
  526. font-style: normal;
  527. font-display: swap;
  528. }
  529. @font-face {
  530. font-family: 'Segoe UI Web (East European)';
  531. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-semibold.woff') format('woff');
  532. font-weight: 600;
  533. font-style: normal;
  534. font-display: swap;
  535. }
  536. @font-face {
  537. font-family: 'Segoe UI Web (East European)';
  538. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-easteuropean/segoeui-bold.woff') format('woff');
  539. font-weight: 700;
  540. font-style: normal;
  541. font-display: swap;
  542. }
  543. @font-face {
  544. font-family: 'Segoe UI Web (Greek)';
  545. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-light.woff') format('woff');
  546. font-weight: 100;
  547. font-style: normal;
  548. font-display: swap;
  549. }
  550. @font-face {
  551. font-family: 'Segoe UI Web (Greek)';
  552. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semilight.woff') format('woff');
  553. font-weight: 300;
  554. font-style: normal;
  555. font-display: swap;
  556. }
  557. @font-face {
  558. font-family: 'Segoe UI Web (Greek)';
  559. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-regular.woff') format('woff');
  560. font-weight: 400;
  561. font-style: normal;
  562. font-display: swap;
  563. }
  564. @font-face {
  565. font-family: 'Segoe UI Web (Greek)';
  566. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-semibold.woff') format('woff');
  567. font-weight: 600;
  568. font-style: normal;
  569. font-display: swap;
  570. }
  571. @font-face {
  572. font-family: 'Segoe UI Web (Greek)';
  573. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-greek/segoeui-bold.woff') format('woff');
  574. font-weight: 700;
  575. font-style: normal;
  576. font-display: swap;
  577. }
  578. @font-face {
  579. font-family: 'Segoe UI Web (Hebrew)';
  580. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-light.woff') format('woff');
  581. font-weight: 100;
  582. font-style: normal;
  583. font-display: swap;
  584. }
  585. @font-face {
  586. font-family: 'Segoe UI Web (Hebrew)';
  587. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semilight.woff') format('woff');
  588. font-weight: 300;
  589. font-style: normal;
  590. font-display: swap;
  591. }
  592. @font-face {
  593. font-family: 'Segoe UI Web (Hebrew)';
  594. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-regular.woff') format('woff');
  595. font-weight: 400;
  596. font-style: normal;
  597. font-display: swap;
  598. }
  599. @font-face {
  600. font-family: 'Segoe UI Web (Hebrew)';
  601. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-semibold.woff') format('woff');
  602. font-weight: 600;
  603. font-style: normal;
  604. font-display: swap;
  605. }
  606. @font-face {
  607. font-family: 'Segoe UI Web (Hebrew)';
  608. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-hebrew/segoeui-bold.woff') format('woff');
  609. font-weight: 700;
  610. font-style: normal;
  611. font-display: swap;
  612. }
  613. @font-face {
  614. font-family: 'Segoe UI Web (Vietnamese)';
  615. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-light.woff') format('woff');
  616. font-weight: 100;
  617. font-style: normal;
  618. font-display: swap;
  619. }
  620. @font-face {
  621. font-family: 'Segoe UI Web (Vietnamese)';
  622. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semilight.woff') format('woff');
  623. font-weight: 300;
  624. font-style: normal;
  625. font-display: swap;
  626. }
  627. @font-face {
  628. font-family: 'Segoe UI Web (Vietnamese)';
  629. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-regular.woff') format('woff');
  630. font-weight: 400;
  631. font-style: normal;
  632. font-display: swap;
  633. }
  634. @font-face {
  635. font-family: 'Segoe UI Web (Vietnamese)';
  636. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-semibold.woff') format('woff');
  637. font-weight: 600;
  638. font-style: normal;
  639. font-display: swap;
  640. }
  641. @font-face {
  642. font-family: 'Segoe UI Web (Vietnamese)';
  643. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-vietnamese/segoeui-bold.woff') format('woff');
  644. font-weight: 700;
  645. font-style: normal;
  646. font-display: swap;
  647. }
  648. @font-face {
  649. font-family: 'Segoe UI Web (West European)';
  650. src: local('Segoe UI Light'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-light.woff') format('woff');
  651. font-weight: 100;
  652. font-style: normal;
  653. font-display: swap;
  654. }
  655. @font-face {
  656. font-family: 'Segoe UI Web (West European)';
  657. src: local('Segoe UI SemiLight'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semilight.woff') format('woff');
  658. font-weight: 300;
  659. font-style: normal;
  660. font-display: swap;
  661. }
  662. @font-face {
  663. font-family: 'Segoe UI Web (West European)';
  664. src: local('Segoe UI'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-regular.woff') format('woff');
  665. font-weight: 400;
  666. font-style: normal;
  667. font-display: swap;
  668. }
  669. @font-face {
  670. font-family: 'Segoe UI Web (West European)';
  671. src: local('Segoe UI SemiBold'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-semibold.woff') format('woff');
  672. font-weight: 600;
  673. font-style: normal;
  674. font-display: swap;
  675. }
  676. @font-face {
  677. font-family: 'Segoe UI Web (West European)';
  678. src: local('Segoe UI Bold'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-westeuropean/segoeui-bold.woff') format('woff');
  679. font-weight: 700;
  680. font-style: normal;
  681. font-display: swap;
  682. }
  683. @font-face {
  684. font-family: '' Selawik Web'';
  685. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-light.woff') format('woff');
  686. font-weight: 100;
  687. font-style: normal;
  688. font-display: swap;
  689. }
  690. @font-face {
  691. font-family: '' Selawik Web'';
  692. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semilight.woff') format('woff');
  693. font-weight: 300;
  694. font-style: normal;
  695. font-display: swap;
  696. }
  697. @font-face {
  698. font-family: '' Selawik Web'';
  699. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-regular.woff') format('woff');
  700. font-weight: 400;
  701. font-style: normal;
  702. font-display: swap;
  703. }
  704. @font-face {
  705. font-family: '' Selawik Web'';
  706. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-semibold.woff') format('woff');
  707. font-weight: 600;
  708. font-style: normal;
  709. font-display: swap;
  710. }
  711. @font-face {
  712. font-family: '' Selawik Web'';
  713. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/selawik/selawik-bold.woff') format('woff');
  714. font-weight: 700;
  715. font-style: normal;
  716. font-display: swap;
  717. }
  718. @font-face {
  719. font-family: 'Segoe UI Web (Armenian)';
  720. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-light.woff') format('woff');
  721. font-weight: 100;
  722. font-style: normal;
  723. font-display: swap;
  724. }
  725. @font-face {
  726. font-family: 'Segoe UI Web (Armenian)';
  727. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semilight.woff') format('woff');
  728. font-weight: 300;
  729. font-style: normal;
  730. font-display: swap;
  731. }
  732. @font-face {
  733. font-family: 'Segoe UI Web (Armenian)';
  734. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-regular.woff') format('woff');
  735. font-weight: 400;
  736. font-style: normal;
  737. font-display: swap;
  738. }
  739. @font-face {
  740. font-family: 'Segoe UI Web (Armenian)';
  741. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-semibold.woff') format('woff');
  742. font-weight: 600;
  743. font-style: normal;
  744. font-display: swap;
  745. }
  746. @font-face {
  747. font-family: 'Segoe UI Web (Armenian)';
  748. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-armenian/segoeui-bold.woff') format('woff');
  749. font-weight: 700;
  750. font-style: normal;
  751. font-display: swap;
  752. }
  753. @font-face {
  754. font-family: 'Segoe UI Web (Georgian)';
  755. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-light.woff') format('woff');
  756. font-weight: 100;
  757. font-style: normal;
  758. font-display: swap;
  759. }
  760. @font-face {
  761. font-family: 'Segoe UI Web (Georgian)';
  762. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semilight.woff') format('woff');
  763. font-weight: 300;
  764. font-style: normal;
  765. font-display: swap;
  766. }
  767. @font-face {
  768. font-family: 'Segoe UI Web (Georgian)';
  769. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-regular.woff') format('woff');
  770. font-weight: 400;
  771. font-style: normal;
  772. font-display: swap;
  773. }
  774. @font-face {
  775. font-family: 'Segoe UI Web (Georgian)';
  776. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-semibold.woff') format('woff');
  777. font-weight: 600;
  778. font-style: normal;
  779. font-display: swap;
  780. }
  781. @font-face {
  782. font-family: 'Segoe UI Web (Georgian)';
  783. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/segoeui-georgian/segoeui-bold.woff') format('woff');
  784. font-weight: 700;
  785. font-style: normal;
  786. font-display: swap;
  787. }
  788. @font-face {
  789. font-family: 'Leelawadee UI Web';
  790. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-semilight.woff') format('woff');
  791. font-weight: 100;
  792. font-style: normal;
  793. font-display: swap;
  794. }
  795. @font-face {
  796. font-family: 'Leelawadee UI Web';
  797. src: url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff2') format('woff2'), url('https://static2.sharepointonline.com/files/fabric/assets/fonts/leelawadeeui-thai/leelawadeeui-bold.woff') format('woff');
  798. font-weight: 600;
  799. font-style: normal;
  800. font-display: swap;
  801. }
  802. .css-101 {
  803. animation-name: css-1, css-22;
  804. animation-duration: 0.367s;
  805. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  806. animation-fill-mode: both;
  807. }
  808. .css-102 {
  809. animation-name: css-1, css-24;
  810. animation-duration: 0.367s;
  811. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  812. animation-fill-mode: both;
  813. }
  814. .css-103 {
  815. animation-name: css-1, css-18;
  816. animation-duration: 0.367s;
  817. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  818. animation-fill-mode: both;
  819. }
  820. .css-104 {
  821. animation-name: css-1, css-14;
  822. animation-duration: 0.367s;
  823. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  824. animation-fill-mode: both;
  825. }
  826. .root-105 {
  827. display: inline-block;
  828. }
  829. .placeholder-106 {
  830. width: 1em;
  831. }
  832. .image-107 {
  833. overflow: hidden;
  834. }
  835. @keyframes css-108 {
  836. 100% {
  837. width: 0px;
  838. height: 0px;
  839. overflow: hidden;
  840. }
  841. 99.9% {
  842. width: 100%;
  843. height: 28px;
  844. overflow: visible;
  845. }
  846. 0% {
  847. width: 100%;
  848. height: 28px;
  849. overflow: visible;
  850. }
  851. }
  852. .title-container-109 {
  853. border-bottom: 1px solid rgb(243, 242, 241);
  854. }
  855. .title-110 {
  856. padding-top: 4px;
  857. padding-right: 0;
  858. padding-bottom: 4px;
  859. padding-left: 0;
  860. font-size: 20px;
  861. text-align: center;
  862. }
  863. .left-column-111 {
  864. width: 270px;
  865. padding-right: 8px;
  866. border-right: 1px solid rgb(243, 242, 241);
  867. overflow: auto;
  868. }
  869. .right-column-112 {
  870. border-left: 1px solid rgb(243, 242, 241);
  871. }
  872. .left-column-113 {
  873. width: 270px;
  874. padding-right: 8px;
  875. border-right: 1px solid rgb(243, 242, 241);
  876. overflow: auto;
  877. display: none;
  878. }
  879. .css-114 {
  880. display: flex;
  881. flex-direction: column;
  882. flex-wrap: nowrap;
  883. width: auto;
  884. height: 100%;
  885. box-sizing: border-box;
  886. }
  887. .css-114>* {
  888. text-overflow: ellipsis;
  889. }
  890. .title-container-115 {
  891. display: flex;
  892. flex-direction: row;
  893. flex-wrap: nowrap;
  894. width: auto;
  895. height: auto;
  896. box-sizing: border-box;
  897. align-items: center;
  898. border-bottom: 1px solid rgb(243, 242, 241);
  899. }
  900. .title-container-115>* {
  901. text-overflow: ellipsis;
  902. }
  903. .root-116 {
  904. outline: transparent;
  905. position: relative;
  906. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  907. -moz-osx-font-smoothing: grayscale;
  908. -webkit-font-smoothing: antialiased;
  909. font-size: 14px;
  910. font-weight: 400;
  911. border: none;
  912. border-radius: 2px;
  913. box-sizing: border-box;
  914. cursor: pointer;
  915. display: inline-block;
  916. margin-top: 0px;
  917. margin-right: 0px;
  918. margin-bottom: 0px;
  919. margin-left: 0px;
  920. padding-top: 0;
  921. padding-right: 4px;
  922. padding-bottom: 0;
  923. padding-left: 4px;
  924. text-decoration: none;
  925. text-align: center;
  926. user-select: none;
  927. width: 32px;
  928. height: 32px;
  929. background-color: transparent;
  930. color: #0078d4;
  931. -webkit-user-select: none;
  932. -moz-user-select: none;
  933. -ms-user-select: none;
  934. -o-user-select: none;
  935. }
  936. .root-116::-moz-focus-inner {
  937. border: 0;
  938. }
  939. .ms-Fabric--isFocusVisible .root-116:focus:after {
  940. content: "";
  941. position: absolute;
  942. left: 2px;
  943. top: 2px;
  944. bottom: 2px;
  945. right: 2px;
  946. border: 1px solid transparent;
  947. outline: 1px solid #605e5c;
  948. z-index: 1;
  949. }
  950. @media screen and (-ms-high-contrast: active),
  951. screen and (forced-colors: active) {
  952. .ms-Fabric--isFocusVisible .root-116:focus:after {
  953. left: -2px;
  954. top: -2px;
  955. bottom: -2px;
  956. right: -2px;
  957. outline-color: ButtonText;
  958. }
  959. }
  960. .root-116:active>span {
  961. position: relative;
  962. left: 0px;
  963. top: 0px;
  964. }
  965. .root-116:hover {
  966. color: #106ebe;
  967. background-color: #f3f2f1;
  968. }
  969. @media screen and (-ms-high-contrast: active),
  970. screen and (forced-colors: active) {
  971. .root-116:hover {
  972. border-color: Highlight;
  973. color: Highlight;
  974. }
  975. }
  976. .root-116:active {
  977. color: #005a9e;
  978. background-color: #edebe9;
  979. }
  980. .flexContainer-117 {
  981. display: flex;
  982. height: 100%;
  983. flex-wrap: nowrap;
  984. justify-content: center;
  985. align-items: center;
  986. }
  987. .textContainer-118 {
  988. flex-grow: 1;
  989. display: block;
  990. }
  991. .icon-119 {
  992. font-size: 16px;
  993. margin-top: 0;
  994. margin-right: 4px;
  995. margin-bottom: 0;
  996. margin-left: 4px;
  997. height: 16px;
  998. line-height: 16px;
  999. text-align: center;
  1000. flex-shrink: 0;
  1001. }
  1002. .label-120 {
  1003. margin-top: 0;
  1004. margin-right: 4px;
  1005. margin-bottom: 0;
  1006. margin-left: 4px;
  1007. line-height: 100%;
  1008. display: block;
  1009. }
  1010. .menuIcon-121 {
  1011. font-size: 12px;
  1012. margin-top: 0;
  1013. margin-right: 4px;
  1014. margin-bottom: 0;
  1015. margin-left: 4px;
  1016. height: 16px;
  1017. line-height: 16px;
  1018. text-align: center;
  1019. flex-shrink: 0;
  1020. }
  1021. .description-122 {
  1022. display: block;
  1023. }
  1024. .screenReaderText-123 {
  1025. position: absolute;
  1026. width: 1px;
  1027. height: 1px;
  1028. margin-top: -1px;
  1029. margin-right: -1px;
  1030. margin-bottom: -1px;
  1031. margin-left: -1px;
  1032. padding-top: 0px;
  1033. padding-right: 0px;
  1034. padding-bottom: 0px;
  1035. padding-left: 0px;
  1036. border: 0px;
  1037. overflow: hidden;
  1038. white-space: nowrap;
  1039. }
  1040. .css-124 {
  1041. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1042. -moz-osx-font-smoothing: grayscale;
  1043. -webkit-font-smoothing: antialiased;
  1044. font-size: 14px;
  1045. font-weight: 400;
  1046. flex-basis: auto;
  1047. height: auto;
  1048. width: auto;
  1049. flex-grow: 1;
  1050. flex-shrink: 1;
  1051. }
  1052. .css-125 {
  1053. display: flex;
  1054. flex-direction: row;
  1055. flex-wrap: nowrap;
  1056. width: auto;
  1057. height: 100%;
  1058. box-sizing: border-box;
  1059. flex-grow: 1;
  1060. min-height: 0px;
  1061. overflow: hidden;
  1062. line-height: 1.5;
  1063. }
  1064. .css-125>* {
  1065. text-overflow: ellipsis;
  1066. }
  1067. .css-125>*:not(.ms-StackItem) {
  1068. flex-shrink: 0;
  1069. }
  1070. .left-column-126 {
  1071. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1072. -moz-osx-font-smoothing: grayscale;
  1073. -webkit-font-smoothing: antialiased;
  1074. font-size: 14px;
  1075. font-weight: 400;
  1076. flex-basis: auto;
  1077. height: auto;
  1078. width: 270px;
  1079. flex-shrink: 0;
  1080. padding-right: 8px;
  1081. border-right: 1px solid rgb(243, 242, 241);
  1082. overflow: auto;
  1083. display: none;
  1084. }
  1085. .css-127 {
  1086. display: flex;
  1087. flex-direction: column;
  1088. flex-wrap: nowrap;
  1089. width: auto;
  1090. height: auto;
  1091. padding-top: 0;
  1092. padding-right: 0;
  1093. padding-bottom: 8px;
  1094. padding-left: 8px;
  1095. box-sizing: border-box;
  1096. }
  1097. .css-127>* {
  1098. text-overflow: ellipsis;
  1099. }
  1100. .css-127>*:not(:first-child) {
  1101. margin-top: 8px;
  1102. }
  1103. .dropdown-128 {
  1104. box-shadow: none;
  1105. margin-top: 0px;
  1106. margin-right: 0px;
  1107. margin-bottom: 0px;
  1108. margin-left: 0px;
  1109. padding-top: 0px;
  1110. padding-right: 0px;
  1111. padding-bottom: 0px;
  1112. padding-left: 0px;
  1113. box-sizing: border-box;
  1114. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1115. -moz-osx-font-smoothing: grayscale;
  1116. -webkit-font-smoothing: antialiased;
  1117. font-size: 14px;
  1118. font-weight: 400;
  1119. color: #323130;
  1120. border-color: #605e5c;
  1121. position: relative;
  1122. outline: 0px;
  1123. user-select: none;
  1124. width: 100%;
  1125. -webkit-user-select: none;
  1126. -moz-user-select: none;
  1127. -ms-user-select: none;
  1128. -o-user-select: none;
  1129. }
  1130. .dropdown-128:hover .ms-Dropdown-title {
  1131. border-color: #323130;
  1132. }
  1133. @media screen and (-ms-high-contrast: active),
  1134. screen and (forced-colors: active) {
  1135. .dropdown-128:hover .ms-Dropdown-title {
  1136. border-color: Highlight;
  1137. }
  1138. }
  1139. @media screen and (-ms-high-contrast: active),
  1140. screen and (forced-colors: active) {
  1141. .dropdown-128:focus .ms-Dropdown-title {
  1142. color: Highlight;
  1143. }
  1144. }
  1145. .dropdown-128:focus:after {
  1146. pointer-events: none;
  1147. content: '';
  1148. position: absolute;
  1149. box-sizing: border-box;
  1150. top: 0px;
  1151. left: 0px;
  1152. width: 100%;
  1153. height: 100%;
  1154. border: none;
  1155. border-radius: 2px;
  1156. }
  1157. @media screen and (-ms-high-contrast: active),
  1158. screen and (forced-colors: active) {
  1159. .dropdown-128:focus:after {
  1160. color: Highlight;
  1161. }
  1162. }
  1163. .dropdown-128:active .ms-Dropdown-title {
  1164. border-color: #0078d4;
  1165. }
  1166. @media screen and (-ms-high-contrast: active),
  1167. screen and (forced-colors: active) {
  1168. .dropdown-128:active .ms-Dropdown-title {
  1169. border-color: Highlight;
  1170. }
  1171. }
  1172. @media screen and (-ms-high-contrast: active),
  1173. screen and (forced-colors: active) {
  1174. .dropdown-128:focus .ms-Dropdown-caretDown {
  1175. color: Highlight;
  1176. }
  1177. }
  1178. .dropdown-128:hover .ms-Dropdown-title--hasError {
  1179. border-color: #a4262c;
  1180. }
  1181. .dropdown-128:active .ms-Dropdown-title--hasError {
  1182. border-color: #a4262c;
  1183. }
  1184. .title-129 {
  1185. box-shadow: none;
  1186. margin-top: 0px;
  1187. margin-right: 0px;
  1188. margin-bottom: 0px;
  1189. margin-left: 0px;
  1190. padding-top: 0;
  1191. padding-right: 28px;
  1192. padding-bottom: 0;
  1193. padding-left: 8px;
  1194. box-sizing: border-box;
  1195. background-color: #f3f2f1;
  1196. border-width: 1px;
  1197. border-style: solid;
  1198. border-color: #605e5c;
  1199. border-radius: 2px;
  1200. cursor: default;
  1201. display: block;
  1202. height: 32px;
  1203. line-height: 30px;
  1204. position: relative;
  1205. overflow: hidden;
  1206. white-space: nowrap;
  1207. text-overflow: ellipsis;
  1208. color: #a19f9d;
  1209. border: none;
  1210. }
  1211. @media screen and (-ms-high-contrast: active),
  1212. screen and (forced-colors: active) {
  1213. .title-129 {
  1214. border: 1px solid GrayText;
  1215. color: GrayText;
  1216. background-color: Window;
  1217. forced-color-adjust: none;
  1218. -ms-high-contrast-adjust: none;
  1219. }
  1220. }
  1221. .caretDownWrapper-130 {
  1222. height: 32px;
  1223. line-height: 30px;
  1224. padding-top: 1px;
  1225. position: absolute;
  1226. right: 8px;
  1227. top: 0px;
  1228. }
  1229. .caretDown-131 {
  1230. color: #a19f9d;
  1231. font-size: 12px;
  1232. pointer-events: none;
  1233. }
  1234. @media screen and (-ms-high-contrast: active),
  1235. screen and (forced-colors: active) {
  1236. .caretDown-131 {
  1237. color: GrayText;
  1238. forced-color-adjust: none;
  1239. -ms-high-contrast-adjust: none;
  1240. }
  1241. }
  1242. .errorMessage-132 {
  1243. color: #a4262c;
  1244. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1245. -moz-osx-font-smoothing: grayscale;
  1246. -webkit-font-smoothing: antialiased;
  1247. font-size: 12px;
  1248. font-weight: 400;
  1249. padding-top: 5px;
  1250. }
  1251. .callout-133 {
  1252. box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
  1253. border-radius: 2px 2px 0 0;
  1254. }
  1255. .callout-133 .ms-Callout-main {
  1256. border-radius: 2px 2px 0 0;
  1257. }
  1258. .dropdownItemsWrapper-134:focus {
  1259. outline: 0px;
  1260. }
  1261. .dropdownItems-135 {
  1262. display: block;
  1263. }
  1264. .dropdownItem-136 {
  1265. background-color: transparent;
  1266. box-sizing: border-box;
  1267. cursor: pointer;
  1268. display: flex;
  1269. align-items: center;
  1270. padding-top: 0;
  1271. padding-right: 8px;
  1272. padding-bottom: 0;
  1273. padding-left: 8px;
  1274. width: 100%;
  1275. min-height: 36px;
  1276. line-height: 20px;
  1277. height: 0px;
  1278. position: relative;
  1279. border: 1px solid transparent;
  1280. border-radius: 0px;
  1281. word-wrap: break-word;
  1282. overflow-wrap: break-word;
  1283. text-align: left;
  1284. }
  1285. .dropdownItem-136 .ms-Button-flexContainer {
  1286. width: 100%;
  1287. }
  1288. .dropdownItem-136:hover {
  1289. color: #201f1e;
  1290. background-color: #f3f2f1;
  1291. }
  1292. @media screen and (-ms-high-contrast: active),
  1293. screen and (forced-colors: active) {
  1294. .dropdownItem-136:hover {
  1295. background-color: Highlight;
  1296. border-color: Highlight;
  1297. color: HighlightText;
  1298. }
  1299. }
  1300. @media screen and (-ms-high-contrast: active),
  1301. screen and (forced-colors: active),
  1302. screen and (-ms-high-contrast: black-on-white),
  1303. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1304. .dropdownItem-136:hover {
  1305. forced-color-adjust: none;
  1306. -ms-high-contrast-adjust: none;
  1307. }
  1308. }
  1309. .dropdownItem-136.is-multi-select:hover {
  1310. background-color: transparent;
  1311. }
  1312. .dropdownItem-136:active:hover {
  1313. color: #201f1e;
  1314. background-color: #edebe9;
  1315. }
  1316. @media screen and (-ms-high-contrast: active),
  1317. screen and (forced-colors: active) {
  1318. .dropdownItem-136:active:hover {
  1319. background-color: Highlight;
  1320. border-color: Highlight;
  1321. color: HighlightText;
  1322. }
  1323. }
  1324. @media screen and (-ms-high-contrast: active),
  1325. screen and (forced-colors: active),
  1326. screen and (-ms-high-contrast: black-on-white),
  1327. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1328. .dropdownItem-136:active:hover {
  1329. forced-color-adjust: none;
  1330. -ms-high-contrast-adjust: none;
  1331. }
  1332. }
  1333. .ms-Fabric--isFocusVisible .dropdownItem-136:focus:after {
  1334. left: 0px;
  1335. top: 0px;
  1336. bottom: 0px;
  1337. right: 0px;
  1338. }
  1339. @media screen and (-ms-high-contrast: active),
  1340. screen and (forced-colors: active) {
  1341. .dropdownItem-136 {
  1342. border: none;
  1343. }
  1344. }
  1345. .dropdownItemSelected-137 {
  1346. background-color: #edebe9;
  1347. box-sizing: border-box;
  1348. cursor: pointer;
  1349. display: flex;
  1350. align-items: center;
  1351. padding-top: 0;
  1352. padding-right: 8px;
  1353. padding-bottom: 0;
  1354. padding-left: 8px;
  1355. width: 100%;
  1356. min-height: 36px;
  1357. line-height: 20px;
  1358. height: 0px;
  1359. position: relative;
  1360. border: 1px solid transparent;
  1361. border-radius: 0px;
  1362. word-wrap: break-word;
  1363. overflow-wrap: break-word;
  1364. text-align: left;
  1365. color: #201f1e;
  1366. }
  1367. .dropdownItemSelected-137 .ms-Button-flexContainer {
  1368. width: 100%;
  1369. }
  1370. .dropdownItemSelected-137:hover {
  1371. color: #201f1e;
  1372. background-color: #edebe9;
  1373. }
  1374. @media screen and (-ms-high-contrast: active),
  1375. screen and (forced-colors: active) {
  1376. .dropdownItemSelected-137:hover {
  1377. background-color: Highlight;
  1378. border-color: Highlight;
  1379. color: HighlightText;
  1380. }
  1381. }
  1382. @media screen and (-ms-high-contrast: active),
  1383. screen and (forced-colors: active),
  1384. screen and (-ms-high-contrast: black-on-white),
  1385. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1386. .dropdownItemSelected-137:hover {
  1387. forced-color-adjust: none;
  1388. -ms-high-contrast-adjust: none;
  1389. }
  1390. }
  1391. .dropdownItemSelected-137.is-multi-select:hover {
  1392. background-color: #edebe9;
  1393. }
  1394. .dropdownItemSelected-137:active:hover {
  1395. color: #201f1e;
  1396. background-color: #f3f2f1;
  1397. }
  1398. @media screen and (-ms-high-contrast: active),
  1399. screen and (forced-colors: active) {
  1400. .dropdownItemSelected-137:active:hover {
  1401. background-color: Highlight;
  1402. border-color: Highlight;
  1403. color: HighlightText;
  1404. }
  1405. }
  1406. @media screen and (-ms-high-contrast: active),
  1407. screen and (forced-colors: active),
  1408. screen and (-ms-high-contrast: black-on-white),
  1409. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1410. .dropdownItemSelected-137:active:hover {
  1411. forced-color-adjust: none;
  1412. -ms-high-contrast-adjust: none;
  1413. }
  1414. }
  1415. .ms-Fabric--isFocusVisible .dropdownItemSelected-137:focus:after {
  1416. left: 0px;
  1417. top: 0px;
  1418. bottom: 0px;
  1419. right: 0px;
  1420. }
  1421. @media screen and (-ms-high-contrast: active),
  1422. screen and (forced-colors: active) {
  1423. .dropdownItemSelected-137 {
  1424. border: none;
  1425. background-color: Highlight;
  1426. border-color: Highlight;
  1427. color: HighlightText;
  1428. }
  1429. }
  1430. @media screen and (-ms-high-contrast: active),
  1431. screen and (forced-colors: active),
  1432. screen and (-ms-high-contrast: black-on-white),
  1433. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1434. .dropdownItemSelected-137 {
  1435. forced-color-adjust: none;
  1436. -ms-high-contrast-adjust: none;
  1437. }
  1438. }
  1439. .dropdownItemDisabled-138 {
  1440. background-color: transparent;
  1441. box-sizing: border-box;
  1442. cursor: default;
  1443. display: flex;
  1444. align-items: center;
  1445. padding-top: 0;
  1446. padding-right: 8px;
  1447. padding-bottom: 0;
  1448. padding-left: 8px;
  1449. width: 100%;
  1450. min-height: 36px;
  1451. line-height: 20px;
  1452. height: 0px;
  1453. position: relative;
  1454. border: 1px solid transparent;
  1455. border-radius: 0px;
  1456. word-wrap: break-word;
  1457. overflow-wrap: break-word;
  1458. text-align: left;
  1459. color: #a19f9d;
  1460. }
  1461. .dropdownItemDisabled-138 .ms-Button-flexContainer {
  1462. width: 100%;
  1463. }
  1464. @media screen and (-ms-high-contrast: active),
  1465. screen and (forced-colors: active) {
  1466. .dropdownItemDisabled-138 {
  1467. color: GrayText;
  1468. border: none;
  1469. }
  1470. }
  1471. .dropdownItemSelectedAndDisabled-139 {
  1472. background-color: transparent;
  1473. box-sizing: border-box;
  1474. cursor: default;
  1475. display: flex;
  1476. align-items: center;
  1477. padding-top: 0;
  1478. padding-right: 8px;
  1479. padding-bottom: 0;
  1480. padding-left: 8px;
  1481. width: 100%;
  1482. min-height: 36px;
  1483. line-height: 20px;
  1484. height: 0px;
  1485. position: relative;
  1486. border: 1px solid transparent;
  1487. border-radius: 0px;
  1488. word-wrap: break-word;
  1489. overflow-wrap: break-word;
  1490. text-align: left;
  1491. color: #a19f9d;
  1492. }
  1493. .dropdownItemSelectedAndDisabled-139 .ms-Button-flexContainer {
  1494. width: 100%;
  1495. }
  1496. .dropdownItemSelectedAndDisabled-139:hover {
  1497. color: #201f1e;
  1498. background-color: #edebe9;
  1499. }
  1500. @media screen and (-ms-high-contrast: active),
  1501. screen and (forced-colors: active) {
  1502. .dropdownItemSelectedAndDisabled-139:hover {
  1503. background-color: Highlight;
  1504. border-color: Highlight;
  1505. color: HighlightText;
  1506. }
  1507. }
  1508. @media screen and (-ms-high-contrast: active),
  1509. screen and (forced-colors: active),
  1510. screen and (-ms-high-contrast: black-on-white),
  1511. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1512. .dropdownItemSelectedAndDisabled-139:hover {
  1513. forced-color-adjust: none;
  1514. -ms-high-contrast-adjust: none;
  1515. }
  1516. }
  1517. .dropdownItemSelectedAndDisabled-139.is-multi-select:hover {
  1518. background-color: #edebe9;
  1519. }
  1520. .dropdownItemSelectedAndDisabled-139:active:hover {
  1521. color: #201f1e;
  1522. background-color: #f3f2f1;
  1523. }
  1524. @media screen and (-ms-high-contrast: active),
  1525. screen and (forced-colors: active) {
  1526. .dropdownItemSelectedAndDisabled-139:active:hover {
  1527. background-color: Highlight;
  1528. border-color: Highlight;
  1529. color: HighlightText;
  1530. }
  1531. }
  1532. @media screen and (-ms-high-contrast: active),
  1533. screen and (forced-colors: active),
  1534. screen and (-ms-high-contrast: black-on-white),
  1535. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1536. .dropdownItemSelectedAndDisabled-139:active:hover {
  1537. forced-color-adjust: none;
  1538. -ms-high-contrast-adjust: none;
  1539. }
  1540. }
  1541. .ms-Fabric--isFocusVisible .dropdownItemSelectedAndDisabled-139:focus:after {
  1542. left: 0px;
  1543. top: 0px;
  1544. bottom: 0px;
  1545. right: 0px;
  1546. }
  1547. @media screen and (-ms-high-contrast: active),
  1548. screen and (forced-colors: active) {
  1549. .dropdownItemSelectedAndDisabled-139 {
  1550. border: none;
  1551. background-color: Highlight;
  1552. border-color: Highlight;
  1553. color: GrayText;
  1554. }
  1555. }
  1556. @media screen and (-ms-high-contrast: active),
  1557. screen and (forced-colors: active),
  1558. screen and (-ms-high-contrast: black-on-white),
  1559. screen and (forced-colors: active) and (prefers-color-scheme: light) {
  1560. .dropdownItemSelectedAndDisabled-139 {
  1561. forced-color-adjust: none;
  1562. -ms-high-contrast-adjust: none;
  1563. }
  1564. }
  1565. .dropdownItemHidden-140 {
  1566. background-color: transparent;
  1567. box-sizing: border-box;
  1568. cursor: pointer;
  1569. display: none;
  1570. align-items: center;
  1571. padding-top: 0;
  1572. padding-right: 8px;
  1573. padding-bottom: 0;
  1574. padding-left: 8px;
  1575. width: 100%;
  1576. min-height: 36px;
  1577. line-height: 20px;
  1578. height: 0px;
  1579. position: relative;
  1580. border: 1px solid transparent;
  1581. border-radius: 0px;
  1582. word-wrap: break-word;
  1583. overflow-wrap: break-word;
  1584. text-align: left;
  1585. }
  1586. .dropdownItemHidden-140 .ms-Button-flexContainer {
  1587. width: 100%;
  1588. }
  1589. .dropdownDivider-141 {
  1590. height: 1px;
  1591. background-color: #edebe9;
  1592. }
  1593. .dropdownDividerHidden-142 {
  1594. display: none;
  1595. }
  1596. .dropdownOptionText-143 {
  1597. overflow: hidden;
  1598. white-space: nowrap;
  1599. text-overflow: ellipsis;
  1600. min-width: 0px;
  1601. max-width: 100%;
  1602. word-wrap: break-word;
  1603. overflow-wrap: break-word;
  1604. margin-top: 1px;
  1605. margin-right: 1px;
  1606. margin-bottom: 1px;
  1607. margin-left: 1px;
  1608. }
  1609. .dropdownItemHeader-144 {
  1610. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1611. -moz-osx-font-smoothing: grayscale;
  1612. -webkit-font-smoothing: antialiased;
  1613. font-size: 14px;
  1614. font-weight: 600;
  1615. color: #0078d4;
  1616. background: none;
  1617. background-color: transparent;
  1618. border: none;
  1619. height: 36px;
  1620. line-height: 36px;
  1621. cursor: default;
  1622. padding-top: 0;
  1623. padding-right: 8px;
  1624. padding-bottom: 0;
  1625. padding-left: 8px;
  1626. user-select: none;
  1627. text-align: left;
  1628. -webkit-user-select: none;
  1629. -moz-user-select: none;
  1630. -ms-user-select: none;
  1631. -o-user-select: none;
  1632. }
  1633. @media screen and (-ms-high-contrast: active),
  1634. screen and (forced-colors: active) {
  1635. .dropdownItemHeader-144 {
  1636. color: GrayText;
  1637. forced-color-adjust: none;
  1638. -ms-high-contrast-adjust: none;
  1639. }
  1640. }
  1641. .dropdownItemHeaderHidden-145 {
  1642. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1643. -moz-osx-font-smoothing: grayscale;
  1644. -webkit-font-smoothing: antialiased;
  1645. font-size: 14px;
  1646. font-weight: 600;
  1647. color: #0078d4;
  1648. background: none;
  1649. background-color: transparent;
  1650. border: none;
  1651. height: 36px;
  1652. line-height: 36px;
  1653. cursor: default;
  1654. padding-top: 0;
  1655. padding-right: 8px;
  1656. padding-bottom: 0;
  1657. padding-left: 8px;
  1658. user-select: none;
  1659. text-align: left;
  1660. display: none;
  1661. -webkit-user-select: none;
  1662. -moz-user-select: none;
  1663. -ms-user-select: none;
  1664. -o-user-select: none;
  1665. }
  1666. @media screen and (-ms-high-contrast: active),
  1667. screen and (forced-colors: active) {
  1668. .dropdownItemHeaderHidden-145 {
  1669. color: GrayText;
  1670. forced-color-adjust: none;
  1671. -ms-high-contrast-adjust: none;
  1672. }
  1673. }
  1674. .root-146 {
  1675. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1676. -moz-osx-font-smoothing: grayscale;
  1677. -webkit-font-smoothing: antialiased;
  1678. font-size: 14px;
  1679. font-weight: 600;
  1680. color: #a19f9d;
  1681. box-sizing: border-box;
  1682. box-shadow: none;
  1683. margin-top: 0px;
  1684. margin-right: 0px;
  1685. margin-bottom: 0px;
  1686. margin-left: 0px;
  1687. display: inline-block;
  1688. padding-top: 5px;
  1689. padding-right: 0;
  1690. padding-bottom: 5px;
  1691. padding-left: 0;
  1692. word-wrap: break-word;
  1693. overflow-wrap: break-word;
  1694. }
  1695. @media screen and (-ms-high-contrast: active),
  1696. screen and (forced-colors: active) {
  1697. .root-146 {
  1698. color: GrayText;
  1699. forced-color-adjust: none;
  1700. -ms-high-contrast-adjust: none;
  1701. }
  1702. }
  1703. .caretDown-147 {
  1704. display: inline-block;
  1705. color: #a19f9d;
  1706. font-size: 12px;
  1707. pointer-events: none;
  1708. }
  1709. @media screen and (-ms-high-contrast: active),
  1710. screen and (forced-colors: active) {
  1711. .caretDown-147 {
  1712. color: GrayText;
  1713. forced-color-adjust: none;
  1714. -ms-high-contrast-adjust: none;
  1715. }
  1716. }
  1717. .css-148 {
  1718. display: flex;
  1719. flex-direction: row;
  1720. flex-wrap: nowrap;
  1721. width: auto;
  1722. height: auto;
  1723. box-sizing: border-box;
  1724. }
  1725. .css-148>* {
  1726. text-overflow: ellipsis;
  1727. }
  1728. .root-149 {
  1729. outline: transparent;
  1730. position: relative;
  1731. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1732. -moz-osx-font-smoothing: grayscale;
  1733. -webkit-font-smoothing: antialiased;
  1734. font-size: 14px;
  1735. font-weight: 400;
  1736. border: 1px solid #0078d4;
  1737. border-radius: 2px;
  1738. box-sizing: border-box;
  1739. cursor: default;
  1740. display: inline-block;
  1741. margin-top: 0px;
  1742. margin-right: 0px;
  1743. margin-bottom: 0px;
  1744. margin-left: 0px;
  1745. padding-top: 0;
  1746. padding-right: 16px;
  1747. padding-bottom: 0;
  1748. padding-left: 16px;
  1749. text-decoration: none;
  1750. text-align: center;
  1751. user-select: none;
  1752. min-width: 80px;
  1753. height: 32px;
  1754. background-color: #f3f2f1;
  1755. color: #d2d0ce;
  1756. width: 100%;
  1757. border-color: #f3f2f1;
  1758. -webkit-user-select: none;
  1759. -moz-user-select: none;
  1760. -ms-user-select: none;
  1761. -o-user-select: none;
  1762. }
  1763. .root-149::-moz-focus-inner {
  1764. border: 0;
  1765. }
  1766. .ms-Fabric--isFocusVisible .root-149:focus:after {
  1767. content: "";
  1768. position: absolute;
  1769. left: 2px;
  1770. top: 2px;
  1771. bottom: 2px;
  1772. right: 2px;
  1773. border: 1px solid transparent;
  1774. outline: 1px solid #605e5c;
  1775. z-index: 1;
  1776. outline-color: #ffffff;
  1777. }
  1778. @media screen and (-ms-high-contrast: active),
  1779. screen and (forced-colors: active) {
  1780. .ms-Fabric--isFocusVisible .root-149:focus:after {
  1781. left: -2px;
  1782. top: -2px;
  1783. bottom: -2px;
  1784. right: -2px;
  1785. outline-color: ButtonText;
  1786. }
  1787. }
  1788. .root-149:active>span {
  1789. position: relative;
  1790. left: 0px;
  1791. top: 0px;
  1792. }
  1793. @media screen and (-ms-high-contrast: active),
  1794. screen and (forced-colors: active) {
  1795. .root-149 {
  1796. color: GrayText;
  1797. background-color: Window;
  1798. border-color: GrayText;
  1799. forced-color-adjust: none;
  1800. -ms-high-contrast-adjust: none;
  1801. }
  1802. }
  1803. .root-149:hover {
  1804. outline: 0px;
  1805. }
  1806. .root-149:focus {
  1807. outline: 0px;
  1808. }
  1809. .icon-150 {
  1810. font-size: 16px;
  1811. margin-top: 0;
  1812. margin-right: 4px;
  1813. margin-bottom: 0;
  1814. margin-left: 4px;
  1815. height: 16px;
  1816. line-height: 16px;
  1817. text-align: center;
  1818. flex-shrink: 0;
  1819. color: #a19f9d;
  1820. }
  1821. @media screen and (-ms-high-contrast: active),
  1822. screen and (forced-colors: active) {
  1823. .icon-150 {
  1824. color: GrayText;
  1825. }
  1826. }
  1827. .label-151 {
  1828. margin-top: 0;
  1829. margin-right: 4px;
  1830. margin-bottom: 0;
  1831. margin-left: 4px;
  1832. line-height: 100%;
  1833. display: block;
  1834. font-weight: 600;
  1835. }
  1836. .menuIcon-152 {
  1837. font-size: 12px;
  1838. margin-top: 0;
  1839. margin-right: 4px;
  1840. margin-bottom: 0;
  1841. margin-left: 4px;
  1842. height: 16px;
  1843. line-height: 16px;
  1844. text-align: center;
  1845. flex-shrink: 0;
  1846. color: #a19f9d;
  1847. }
  1848. @media screen and (-ms-high-contrast: active),
  1849. screen and (forced-colors: active) {
  1850. .menuIcon-152 {
  1851. color: GrayText;
  1852. }
  1853. }
  1854. .root-153 {
  1855. outline: transparent;
  1856. position: relative;
  1857. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  1858. -moz-osx-font-smoothing: grayscale;
  1859. -webkit-font-smoothing: antialiased;
  1860. font-size: 14px;
  1861. font-weight: 400;
  1862. border: 1px solid #0078d4;
  1863. border-radius: 2px;
  1864. box-sizing: border-box;
  1865. cursor: pointer;
  1866. display: inline-block;
  1867. margin-top: 0px;
  1868. margin-right: 0px;
  1869. margin-bottom: 0px;
  1870. margin-left: 0px;
  1871. padding-top: 0;
  1872. padding-right: 16px;
  1873. padding-bottom: 0;
  1874. padding-left: 16px;
  1875. text-decoration: none;
  1876. text-align: center;
  1877. user-select: none;
  1878. min-width: 80px;
  1879. height: 32px;
  1880. background-color: #0078d4;
  1881. color: #ffffff;
  1882. width: 100%;
  1883. -webkit-user-select: none;
  1884. -moz-user-select: none;
  1885. -ms-user-select: none;
  1886. -o-user-select: none;
  1887. }
  1888. .root-153::-moz-focus-inner {
  1889. border: 0;
  1890. }
  1891. .ms-Fabric--isFocusVisible .root-153:focus:after {
  1892. content: "";
  1893. position: absolute;
  1894. left: 2px;
  1895. top: 2px;
  1896. bottom: 2px;
  1897. right: 2px;
  1898. border: none;
  1899. outline: 1px solid #605e5c;
  1900. z-index: 1;
  1901. outline-color: #ffffff;
  1902. }
  1903. @media screen and (-ms-high-contrast: active),
  1904. screen and (forced-colors: active) {
  1905. .ms-Fabric--isFocusVisible .root-153:focus:after {
  1906. left: -2px;
  1907. top: -2px;
  1908. bottom: -2px;
  1909. right: -2px;
  1910. outline-color: ButtonText;
  1911. }
  1912. }
  1913. .root-153:active>span {
  1914. position: relative;
  1915. left: 0px;
  1916. top: 0px;
  1917. }
  1918. @media screen and (-ms-high-contrast: active),
  1919. screen and (forced-colors: active) {
  1920. .root-153 {
  1921. color: Window;
  1922. background-color: WindowText;
  1923. border-color: WindowText;
  1924. forced-color-adjust: none;
  1925. -ms-high-contrast-adjust: none;
  1926. }
  1927. }
  1928. .root-153:hover {
  1929. background-color: #106ebe;
  1930. border: 1px solid #106ebe;
  1931. color: #ffffff;
  1932. }
  1933. @media screen and (-ms-high-contrast: active),
  1934. screen and (forced-colors: active) {
  1935. .root-153:hover {
  1936. color: Window;
  1937. background-color: Highlight;
  1938. border-color: Highlight;
  1939. }
  1940. }
  1941. .root-153:active {
  1942. background-color: #005a9e;
  1943. border: 1px solid #005a9e;
  1944. color: #ffffff;
  1945. }
  1946. @media screen and (-ms-high-contrast: active),
  1947. screen and (forced-colors: active) {
  1948. .root-153:active {
  1949. color: Window;
  1950. background-color: WindowText;
  1951. border-color: WindowText;
  1952. forced-color-adjust: none;
  1953. -ms-high-contrast-adjust: none;
  1954. }
  1955. }
  1956. .css-154 {
  1957. background-color: #0078d4;
  1958. color: #ffffff;
  1959. padding-top: 6px;
  1960. padding-right: 6px;
  1961. padding-bottom: 6px;
  1962. padding-left: 6px;
  1963. height: auto;
  1964. box-sizing: border-box;
  1965. border-radius: 0px;
  1966. border-top-right-radius: 2px;
  1967. border-bottom-right-radius: 2px;
  1968. border: 1px solid #8a8886;
  1969. border-left: none;
  1970. outline: transparent;
  1971. user-select: none;
  1972. display: inline-block;
  1973. text-decoration: none;
  1974. text-align: center;
  1975. cursor: pointer;
  1976. vertical-align: top;
  1977. width: 32px;
  1978. margin-left: -1px;
  1979. margin-top: 0px;
  1980. margin-right: 0px;
  1981. margin-bottom: 0px;
  1982. -webkit-user-select: none;
  1983. -moz-user-select: none;
  1984. -ms-user-select: none;
  1985. -o-user-select: none;
  1986. }
  1987. @media screen and (-ms-high-contrast: active),
  1988. screen and (forced-colors: active) {
  1989. .css-154 {
  1990. background-color: Canvas;
  1991. }
  1992. }
  1993. .css-154:hover {
  1994. background-color: #106ebe;
  1995. }
  1996. @media screen and (-ms-high-contrast: active),
  1997. screen and (forced-colors: active) {
  1998. .css-154:hover {
  1999. color: Highlight;
  2000. }
  2001. }
  2002. @media screen and (-ms-high-contrast: active),
  2003. screen and (forced-colors: active) {
  2004. .css-154 .ms-Button-menuIcon {
  2005. color: WindowText;
  2006. }
  2007. }
  2008. .css-155 {
  2009. outline: transparent;
  2010. position: relative;
  2011. display: inline-flex;
  2012. }
  2013. @media screen and (-ms-high-contrast: active),
  2014. screen and (forced-colors: active) {
  2015. .css-155 {
  2016. border: none;
  2017. }
  2018. }
  2019. .css-155::-moz-focus-inner {
  2020. border: 0;
  2021. }
  2022. .ms-Fabric--isFocusVisible .css-155:focus:after {
  2023. content: "";
  2024. position: absolute;
  2025. left: 3px;
  2026. top: 3px;
  2027. bottom: 3px;
  2028. right: 3px;
  2029. border: 1px solid #ffffff;
  2030. outline: 1px solid #605e5c;
  2031. z-index: 1;
  2032. }
  2033. @media screen and (-ms-high-contrast: active),
  2034. screen and (forced-colors: active) {
  2035. .ms-Fabric--isFocusVisible .css-155:focus:after {
  2036. left: -2px;
  2037. top: -2px;
  2038. bottom: -2px;
  2039. right: -2px;
  2040. border: none;
  2041. }
  2042. }
  2043. .css-155 .ms-Button--default {
  2044. border-top-right-radius: 0;
  2045. border-bottom-right-radius: 0;
  2046. border-right: none;
  2047. flex-grow: 1;
  2048. }
  2049. .css-155 .ms-Button--primary {
  2050. border-top-right-radius: 0;
  2051. border-bottom-right-radius: 0;
  2052. border: none;
  2053. flex-grow: 1;
  2054. }
  2055. @media screen and (-ms-high-contrast: active),
  2056. screen and (forced-colors: active) {
  2057. .css-155 .ms-Button--primary {
  2058. color: WindowText;
  2059. background-color: Window;
  2060. border: 1px solid WindowText;
  2061. border-right-width: 0;
  2062. forced-color-adjust: none;
  2063. -ms-high-contrast-adjust: none;
  2064. }
  2065. }
  2066. .css-155 .ms-Button--primary:hover {
  2067. border: none;
  2068. }
  2069. .css-155 .ms-Button--primary:active {
  2070. border: none;
  2071. }
  2072. .css-155 .ms-Button--primary+.ms-Button {
  2073. border: none;
  2074. }
  2075. @media screen and (-ms-high-contrast: active),
  2076. screen and (forced-colors: active) {
  2077. .css-155 .ms-Button--primary+.ms-Button {
  2078. border: 1px solid WindowText;
  2079. border-left-width: 0;
  2080. }
  2081. }
  2082. @media screen and (-ms-high-contrast: active),
  2083. screen and (forced-colors: active) {
  2084. .css-155:hover .ms-Button--primary {
  2085. color: Window;
  2086. background-color: Highlight;
  2087. }
  2088. }
  2089. .css-155:hover .ms-Button.is-disabled {
  2090. color: #a19f9d;
  2091. }
  2092. @media screen and (-ms-high-contrast: active),
  2093. screen and (forced-colors: active) {
  2094. .css-155:hover .ms-Button.is-disabled {
  2095. color: GrayText;
  2096. border-color: GrayText;
  2097. background-color: Window;
  2098. }
  2099. }
  2100. .css-155:focus {
  2101. outline: none !important;
  2102. }
  2103. .css-156 {
  2104. color: #ffffff;
  2105. }
  2106. .css-157 {
  2107. display: flex;
  2108. height: 100%;
  2109. flex-wrap: nowrap;
  2110. justify-content: center;
  2111. align-items: center;
  2112. }
  2113. .css-158 {
  2114. position: absolute;
  2115. width: 1px;
  2116. right: 31px;
  2117. top: 8px;
  2118. bottom: 8px;
  2119. background-color: #ffffff;
  2120. }
  2121. @media screen and (-ms-high-contrast: active),
  2122. screen and (forced-colors: active) {
  2123. .css-158 {
  2124. background-color: WindowText;
  2125. }
  2126. }
  2127. .root-159 {
  2128. background-color: #0078d4;
  2129. color: #ffffff;
  2130. padding-top: 6px;
  2131. padding-right: 6px;
  2132. padding-bottom: 6px;
  2133. padding-left: 6px;
  2134. height: auto;
  2135. box-sizing: border-box;
  2136. border-radius: 0px;
  2137. border-top-right-radius: 2px;
  2138. border-bottom-right-radius: 2px;
  2139. border: 1px solid #8a8886;
  2140. border-left: none;
  2141. outline: transparent;
  2142. user-select: none;
  2143. display: inline-block;
  2144. text-decoration: none;
  2145. text-align: center;
  2146. cursor: pointer;
  2147. vertical-align: top;
  2148. width: 32px;
  2149. margin-left: -1px;
  2150. margin-top: 0px;
  2151. margin-right: 0px;
  2152. margin-bottom: 0px;
  2153. -webkit-user-select: none;
  2154. -moz-user-select: none;
  2155. -ms-user-select: none;
  2156. -o-user-select: none;
  2157. }
  2158. @media screen and (-ms-high-contrast: active),
  2159. screen and (forced-colors: active) {
  2160. .root-159 {
  2161. background-color: Canvas;
  2162. }
  2163. }
  2164. .root-159:hover {
  2165. background-color: #106ebe;
  2166. }
  2167. @media screen and (-ms-high-contrast: active),
  2168. screen and (forced-colors: active) {
  2169. .root-159:hover {
  2170. color: Highlight;
  2171. }
  2172. }
  2173. @media screen and (-ms-high-contrast: active),
  2174. screen and (forced-colors: active) {
  2175. .root-159 .ms-Button-menuIcon {
  2176. color: WindowText;
  2177. }
  2178. }
  2179. .menuIcon-160 {
  2180. font-size: 12px;
  2181. margin-top: 0;
  2182. margin-right: 4px;
  2183. margin-bottom: 0;
  2184. margin-left: 4px;
  2185. height: 16px;
  2186. line-height: 16px;
  2187. text-align: center;
  2188. flex-shrink: 0;
  2189. color: #ffffff;
  2190. }
  2191. .root-162 {
  2192. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2193. -moz-osx-font-smoothing: grayscale;
  2194. -webkit-font-smoothing: antialiased;
  2195. font-size: 14px;
  2196. font-weight: 400;
  2197. }
  2198. .main-163 {
  2199. width: 288px;
  2200. outline: 3px solid transparent;
  2201. }
  2202. @media (min-width: 480px) {
  2203. .main-163 {
  2204. width: auto;
  2205. max-width: 340px;
  2206. min-width: 288px;
  2207. }
  2208. }
  2209. .root-164 {
  2210. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2211. -moz-osx-font-smoothing: grayscale;
  2212. -webkit-font-smoothing: antialiased;
  2213. font-size: 14px;
  2214. font-weight: 400;
  2215. background-color: transparent;
  2216. position: fixed;
  2217. height: 100%;
  2218. width: 100%;
  2219. display: flex;
  2220. align-items: center;
  2221. justify-content: center;
  2222. opacity: 0;
  2223. pointer-events: none;
  2224. transition: opacity 0.267s;
  2225. }
  2226. .main-165 {
  2227. box-shadow: 0 25.6px 57.6px 0 rgba(0, 0, 0, 0.22), 0 4.8px 14.4px 0 rgba(0, 0, 0, 0.18);
  2228. border-radius: 2px;
  2229. background-color: #ffffff;
  2230. box-sizing: border-box;
  2231. position: relative;
  2232. text-align: left;
  2233. outline: 3px solid transparent;
  2234. max-height: calc(100% - 32px);
  2235. max-width: calc(100% - 32px);
  2236. min-height: 176px;
  2237. min-width: 288px;
  2238. overflow-y: auto;
  2239. width: 288px;
  2240. }
  2241. @media (min-width: 480px) {
  2242. .main-165 {
  2243. width: auto;
  2244. max-width: 340px;
  2245. min-width: 288px;
  2246. }
  2247. }
  2248. .scrollableContent-166 {
  2249. overflow-y: auto;
  2250. flex-grow: 1;
  2251. max-height: 100vh;
  2252. }
  2253. .keyboardMoveIconContainer-167 {
  2254. position: absolute;
  2255. display: flex;
  2256. justify-content: center;
  2257. width: 100%;
  2258. padding-top: 3px;
  2259. padding-right: 0px;
  2260. padding-bottom: 3px;
  2261. padding-left: 0px;
  2262. }
  2263. .keyboardMoveIcon-168 {
  2264. font-size: 24px;
  2265. width: 24px;
  2266. }
  2267. .css-169 {
  2268. animation-name: css-1, css-25;
  2269. animation-duration: 0.367s;
  2270. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  2271. animation-fill-mode: both;
  2272. }
  2273. .root-170 {
  2274. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2275. -moz-osx-font-smoothing: grayscale;
  2276. -webkit-font-smoothing: antialiased;
  2277. font-size: 14px;
  2278. font-weight: 400;
  2279. overflow-y: auto;
  2280. user-select: none;
  2281. -webkit-overflow-scrolling: touch;
  2282. -webkit-user-select: none;
  2283. -moz-user-select: none;
  2284. -ms-user-select: none;
  2285. -o-user-select: none;
  2286. }
  2287. .linkText-171 {
  2288. margin-top: 0;
  2289. margin-right: 4px;
  2290. margin-bottom: 0;
  2291. margin-left: 4px;
  2292. overflow: hidden;
  2293. vertical-align: middle;
  2294. text-align: left;
  2295. text-overflow: ellipsis;
  2296. }
  2297. .compositeLink-172 {
  2298. display: block;
  2299. position: relative;
  2300. color: #323130;
  2301. }
  2302. .link-173 {
  2303. outline: transparent;
  2304. position: relative;
  2305. display: block;
  2306. height: 44px;
  2307. width: 100%;
  2308. line-height: 44px;
  2309. text-decoration: none;
  2310. cursor: pointer;
  2311. text-overflow: ellipsis;
  2312. white-space: nowrap;
  2313. overflow: hidden;
  2314. padding-left: 20px;
  2315. padding-right: 20px;
  2316. color: #323130;
  2317. }
  2318. .link-173::-moz-focus-inner {
  2319. border: 0;
  2320. }
  2321. .ms-Fabric--isFocusVisible .link-173:focus:after {
  2322. content: "";
  2323. position: absolute;
  2324. left: 1px;
  2325. top: 1px;
  2326. bottom: 1px;
  2327. right: 1px;
  2328. border: 1px solid #ffffff;
  2329. outline: 1px solid #605e5c;
  2330. z-index: 1;
  2331. }
  2332. @media screen and (-ms-high-contrast: active),
  2333. screen and (forced-colors: active) {
  2334. .link-173 {
  2335. border: 0px;
  2336. }
  2337. }
  2338. @media screen and (-ms-high-contrast: active),
  2339. screen and (forced-colors: active) {
  2340. .link-173:focus {
  2341. border: 1px solid WindowText;
  2342. }
  2343. }
  2344. .ms-Nav-compositeLink:hover .link-173 {
  2345. background-color: #f3f2f1;
  2346. }
  2347. .chevronButton-174 {
  2348. outline: transparent;
  2349. position: relative;
  2350. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2351. -moz-osx-font-smoothing: grayscale;
  2352. -webkit-font-smoothing: antialiased;
  2353. font-size: 18px;
  2354. font-weight: 400;
  2355. display: block;
  2356. text-align: left;
  2357. line-height: 44px;
  2358. margin-top: 5px;
  2359. margin-right: 0;
  2360. margin-bottom: 5px;
  2361. margin-left: 0;
  2362. padding-top: 0px, ;
  2363. padding-right: 20px, ;
  2364. padding-bottom: 0px, ;
  2365. padding-left: 28px;
  2366. border: none;
  2367. text-overflow: ellipsis;
  2368. white-space: nowrap;
  2369. overflow: hidden;
  2370. cursor: pointer;
  2371. color: #323130;
  2372. background-color: transparent;
  2373. width: 100%;
  2374. height: 44px;
  2375. border-bottom: 1px solid #edebe9;
  2376. }
  2377. .chevronButton-174::-moz-focus-inner {
  2378. border: 0;
  2379. }
  2380. .ms-Fabric--isFocusVisible .chevronButton-174:focus:after {
  2381. content: "";
  2382. position: absolute;
  2383. left: 1px;
  2384. top: 1px;
  2385. bottom: 1px;
  2386. right: 1px;
  2387. border: 1px solid #ffffff;
  2388. outline: 1px solid #605e5c;
  2389. z-index: 1;
  2390. }
  2391. .chevronButton-174:visited {
  2392. color: #323130;
  2393. }
  2394. .chevronIcon-175 {
  2395. position: absolute;
  2396. left: 8px;
  2397. height: 44px;
  2398. display: inline-flex;
  2399. align-items: center;
  2400. line-height: 44px;
  2401. font-size: 12px;
  2402. transition: transform .1s linear;
  2403. transform: rotate(-180deg);
  2404. }
  2405. .navItem-176 {
  2406. padding-top: 0px;
  2407. padding-right: 0px;
  2408. padding-bottom: 0px;
  2409. padding-left: 0px;
  2410. }
  2411. .navItems-177 {
  2412. list-style-type: none;
  2413. padding-top: 0px;
  2414. padding-right: 0px;
  2415. padding-bottom: 0px;
  2416. padding-left: 0px;
  2417. margin-top: 0px;
  2418. margin-right: 0px;
  2419. margin-bottom: 0px;
  2420. margin-left: 0px;
  2421. }
  2422. .groupContent-178 {
  2423. display: block;
  2424. margin-bottom: 40px;
  2425. animation-name: css-1, css-25;
  2426. animation-duration: 0.367s;
  2427. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  2428. animation-fill-mode: both;
  2429. }
  2430. .chevronButton-179 {
  2431. outline: transparent;
  2432. position: relative;
  2433. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2434. -moz-osx-font-smoothing: grayscale;
  2435. -webkit-font-smoothing: antialiased;
  2436. font-size: 12px;
  2437. font-weight: 400;
  2438. display: block;
  2439. text-align: left;
  2440. line-height: 44px;
  2441. margin-top: 5px;
  2442. margin-right: 0;
  2443. margin-bottom: 5px;
  2444. margin-left: 0;
  2445. padding-top: 0px, ;
  2446. padding-right: 20px, ;
  2447. padding-bottom: 0px, ;
  2448. padding-left: 28px;
  2449. border: none;
  2450. text-overflow: ellipsis;
  2451. white-space: nowrap;
  2452. overflow: hidden;
  2453. cursor: pointer;
  2454. color: #323130;
  2455. background-color: transparent;
  2456. }
  2457. .chevronButton-179::-moz-focus-inner {
  2458. border: 0;
  2459. }
  2460. .ms-Fabric--isFocusVisible .chevronButton-179:focus:after {
  2461. content: "";
  2462. position: absolute;
  2463. left: 1px;
  2464. top: 1px;
  2465. bottom: 1px;
  2466. right: 1px;
  2467. border: 1px solid #ffffff;
  2468. outline: 1px solid #605e5c;
  2469. z-index: 1;
  2470. }
  2471. .chevronButton-179:visited {
  2472. color: #323130;
  2473. }
  2474. .chevronIcon-180 {
  2475. position: absolute;
  2476. left: 8px;
  2477. height: 44px;
  2478. display: inline-flex;
  2479. align-items: center;
  2480. line-height: 44px;
  2481. font-size: 12px;
  2482. transition: transform .1s linear;
  2483. }
  2484. .groupContent-181 {
  2485. display: none;
  2486. margin-bottom: 40px;
  2487. animation-name: css-1, css-25;
  2488. animation-duration: 0.367s;
  2489. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  2490. animation-fill-mode: both;
  2491. }
  2492. .chevronButton-182 {
  2493. outline: transparent;
  2494. position: absolute;
  2495. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2496. -moz-osx-font-smoothing: grayscale;
  2497. -webkit-font-smoothing: antialiased;
  2498. font-size: 12px;
  2499. font-weight: 400;
  2500. display: block;
  2501. text-align: left;
  2502. line-height: 44px;
  2503. margin-top: 0px;
  2504. margin-right: 0px;
  2505. margin-bottom: 0px;
  2506. margin-left: 0px;
  2507. padding-top: 0px;
  2508. padding-right: 0px;
  2509. padding-bottom: 0px;
  2510. padding-left: 0px;
  2511. border: none;
  2512. text-overflow: ellipsis;
  2513. white-space: nowrap;
  2514. overflow: hidden;
  2515. cursor: pointer;
  2516. color: #323130;
  2517. background-color: transparent;
  2518. width: 26px;
  2519. height: 42px;
  2520. top: 1px;
  2521. left: 1px;
  2522. z-index: 1;
  2523. }
  2524. .chevronButton-182::-moz-focus-inner {
  2525. border: 0;
  2526. }
  2527. .ms-Fabric--isFocusVisible .chevronButton-182:focus:after {
  2528. content: "";
  2529. position: absolute;
  2530. left: 1px;
  2531. top: 1px;
  2532. bottom: 1px;
  2533. right: 1px;
  2534. border: 1px solid #ffffff;
  2535. outline: 1px solid #605e5c;
  2536. z-index: 1;
  2537. }
  2538. .chevronButton-182:visited {
  2539. color: #323130;
  2540. }
  2541. .chevronIcon-183 {
  2542. position: absolute;
  2543. left: 8px;
  2544. height: 44px;
  2545. display: inline-flex;
  2546. align-items: center;
  2547. line-height: 44px;
  2548. font-size: 12px;
  2549. transition: transform .1s linear;
  2550. top: 0px;
  2551. }
  2552. .link-184 {
  2553. outline: transparent;
  2554. position: relative;
  2555. display: block;
  2556. height: 44px;
  2557. width: 100%;
  2558. line-height: 44px;
  2559. text-decoration: none;
  2560. cursor: pointer;
  2561. text-overflow: ellipsis;
  2562. white-space: nowrap;
  2563. overflow: hidden;
  2564. padding-left: 3px;
  2565. padding-right: 20px;
  2566. color: #323130;
  2567. }
  2568. .link-184::-moz-focus-inner {
  2569. border: 0;
  2570. }
  2571. .ms-Fabric--isFocusVisible .link-184:focus:after {
  2572. content: "";
  2573. position: absolute;
  2574. left: 1px;
  2575. top: 1px;
  2576. bottom: 1px;
  2577. right: 1px;
  2578. border: 1px solid #ffffff;
  2579. outline: 1px solid #605e5c;
  2580. z-index: 1;
  2581. }
  2582. @media screen and (-ms-high-contrast: active),
  2583. screen and (forced-colors: active) {
  2584. .link-184 {
  2585. border: 0px;
  2586. }
  2587. }
  2588. @media screen and (-ms-high-contrast: active),
  2589. screen and (forced-colors: active) {
  2590. .link-184:focus {
  2591. border: 1px solid WindowText;
  2592. }
  2593. }
  2594. .ms-Nav-compositeLink:hover .link-184 {
  2595. background-color: #f3f2f1;
  2596. }
  2597. .link-185 {
  2598. outline: transparent;
  2599. position: relative;
  2600. display: block;
  2601. height: 44px;
  2602. width: 100%;
  2603. line-height: 44px;
  2604. text-decoration: none;
  2605. cursor: pointer;
  2606. text-overflow: ellipsis;
  2607. white-space: nowrap;
  2608. overflow: hidden;
  2609. padding-left: 20px;
  2610. padding-right: 20px;
  2611. color: #000000;
  2612. font-weight: 600;
  2613. background-color: #edebe9;
  2614. }
  2615. .link-185::-moz-focus-inner {
  2616. border: 0;
  2617. }
  2618. .ms-Fabric--isFocusVisible .link-185:focus:after {
  2619. content: "";
  2620. position: absolute;
  2621. left: 1px;
  2622. top: 1px;
  2623. bottom: 1px;
  2624. right: 1px;
  2625. border: 1px solid #ffffff;
  2626. outline: 1px solid #605e5c;
  2627. z-index: 1;
  2628. }
  2629. @media screen and (-ms-high-contrast: active),
  2630. screen and (forced-colors: active) {
  2631. .link-185 {
  2632. border: 0px;
  2633. }
  2634. }
  2635. @media screen and (-ms-high-contrast: active),
  2636. screen and (forced-colors: active) {
  2637. .link-185:focus {
  2638. border: 1px solid WindowText;
  2639. }
  2640. }
  2641. .ms-Nav-compositeLink:hover .link-185 {
  2642. background-color: #f3f2f1;
  2643. }
  2644. .link-185:after {
  2645. border-left: 2px solid #0078d4;
  2646. content: "";
  2647. position: absolute;
  2648. top: 0px;
  2649. right: 0px;
  2650. bottom: 0px;
  2651. left: 0px;
  2652. pointer-events: none;
  2653. }
  2654. .link-186 {
  2655. outline: transparent;
  2656. position: relative;
  2657. display: block;
  2658. height: 44px;
  2659. width: 100%;
  2660. line-height: 44px;
  2661. text-decoration: none;
  2662. cursor: pointer;
  2663. text-overflow: ellipsis;
  2664. white-space: nowrap;
  2665. overflow: hidden;
  2666. padding-left: 3px;
  2667. padding-right: 20px;
  2668. color: #000000;
  2669. font-weight: 600;
  2670. background-color: #edebe9;
  2671. }
  2672. .link-186::-moz-focus-inner {
  2673. border: 0;
  2674. }
  2675. .ms-Fabric--isFocusVisible .link-186:focus:after {
  2676. content: "";
  2677. position: absolute;
  2678. left: 1px;
  2679. top: 1px;
  2680. bottom: 1px;
  2681. right: 1px;
  2682. border: 1px solid #ffffff;
  2683. outline: 1px solid #605e5c;
  2684. z-index: 1;
  2685. }
  2686. @media screen and (-ms-high-contrast: active),
  2687. screen and (forced-colors: active) {
  2688. .link-186 {
  2689. border: 0px;
  2690. }
  2691. }
  2692. @media screen and (-ms-high-contrast: active),
  2693. screen and (forced-colors: active) {
  2694. .link-186:focus {
  2695. border: 1px solid WindowText;
  2696. }
  2697. }
  2698. .ms-Nav-compositeLink:hover .link-186 {
  2699. background-color: #f3f2f1;
  2700. }
  2701. .link-186:after {
  2702. border-left: 2px solid #0078d4;
  2703. content: "";
  2704. position: absolute;
  2705. top: 0px;
  2706. right: 0px;
  2707. bottom: 0px;
  2708. left: 0px;
  2709. pointer-events: none;
  2710. }
  2711. .css-187:focus {
  2712. outline: none;
  2713. }
  2714. .link-188 {
  2715. outline: transparent;
  2716. position: relative;
  2717. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2718. -moz-osx-font-smoothing: grayscale;
  2719. -webkit-font-smoothing: antialiased;
  2720. font-size: 14px;
  2721. font-weight: 400;
  2722. border: 1px solid transparent;
  2723. border-radius: 2px;
  2724. box-sizing: border-box;
  2725. cursor: pointer;
  2726. display: block;
  2727. margin-top: 0px;
  2728. margin-right: 0px;
  2729. margin-bottom: 0px;
  2730. margin-left: 0px;
  2731. padding-top: 0;
  2732. padding-right: 20px;
  2733. padding-bottom: 0;
  2734. padding-left: 3px;
  2735. text-decoration: none;
  2736. text-align: center;
  2737. user-select: none;
  2738. height: 44px;
  2739. color: #323130;
  2740. background-color: transparent;
  2741. width: 100%;
  2742. line-height: 44px;
  2743. text-overflow: ellipsis;
  2744. white-space: nowrap;
  2745. overflow: hidden;
  2746. -webkit-user-select: none;
  2747. -moz-user-select: none;
  2748. -ms-user-select: none;
  2749. -o-user-select: none;
  2750. }
  2751. .link-188::-moz-focus-inner {
  2752. border: 0;
  2753. }
  2754. .ms-Fabric--isFocusVisible .link-188:focus:after {
  2755. content: "";
  2756. position: absolute;
  2757. left: 1px;
  2758. top: 1px;
  2759. bottom: 1px;
  2760. right: 1px;
  2761. border: 1px solid #ffffff;
  2762. outline: 1px solid #605e5c;
  2763. z-index: 1;
  2764. }
  2765. @media screen and (-ms-high-contrast: active),
  2766. screen and (forced-colors: active) {
  2767. .ms-Fabric--isFocusVisible .link-188:focus:after {
  2768. left: -2px;
  2769. top: -2px;
  2770. bottom: -2px;
  2771. right: -2px;
  2772. outline-color: ButtonText;
  2773. }
  2774. }
  2775. .link-188:active>span {
  2776. position: relative;
  2777. left: 0px;
  2778. top: 0px;
  2779. }
  2780. @media screen and (-ms-high-contrast: active),
  2781. screen and (forced-colors: active) {
  2782. .link-188 {
  2783. border-color: Window;
  2784. border: 0px;
  2785. }
  2786. }
  2787. .link-188:hover {
  2788. color: #0078d4;
  2789. }
  2790. @media screen and (-ms-high-contrast: active),
  2791. screen and (forced-colors: active) {
  2792. .link-188:hover {
  2793. color: Highlight;
  2794. }
  2795. }
  2796. .link-188:hover .ms-Button-icon {
  2797. color: #0078d4;
  2798. }
  2799. .link-188:active {
  2800. color: #000000;
  2801. }
  2802. .link-188:active .ms-Button-icon {
  2803. color: #004578;
  2804. }
  2805. @media screen and (-ms-high-contrast: active),
  2806. screen and (forced-colors: active) {
  2807. .link-188:focus {
  2808. border: 1px solid WindowText;
  2809. }
  2810. }
  2811. .ms-Nav-compositeLink:hover .link-188 {
  2812. background-color: #f3f2f1;
  2813. }
  2814. .flexContainer-189 {
  2815. display: flex;
  2816. height: 100%;
  2817. flex-wrap: nowrap;
  2818. justify-content: flex-start;
  2819. align-items: center;
  2820. }
  2821. .textContainer-190 {
  2822. flex-grow: 0;
  2823. display: block;
  2824. overflow: hidden;
  2825. }
  2826. .icon-191 {
  2827. font-size: 16px;
  2828. margin-top: 0;
  2829. margin-right: 4px;
  2830. margin-bottom: 0;
  2831. margin-left: 4px;
  2832. height: 16px;
  2833. line-height: 16px;
  2834. text-align: center;
  2835. flex-shrink: 0;
  2836. color: #106ebe;
  2837. }
  2838. .label-192 {
  2839. margin-top: 0;
  2840. margin-right: 4px;
  2841. margin-bottom: 0;
  2842. margin-left: 4px;
  2843. line-height: 100%;
  2844. display: block;
  2845. white-space: nowrap;
  2846. text-overflow: ellipsis;
  2847. overflow: hidden;
  2848. }
  2849. .menuIcon-193 {
  2850. font-size: 12px;
  2851. margin-top: 0;
  2852. margin-right: 4px;
  2853. margin-bottom: 0;
  2854. margin-left: 4px;
  2855. height: 16px;
  2856. line-height: 16px;
  2857. text-align: center;
  2858. flex-shrink: 0;
  2859. color: #605e5c;
  2860. }
  2861. .link-194 {
  2862. outline: transparent;
  2863. position: relative;
  2864. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2865. -moz-osx-font-smoothing: grayscale;
  2866. -webkit-font-smoothing: antialiased;
  2867. font-size: 14px;
  2868. font-weight: 600;
  2869. border: 1px solid transparent;
  2870. border-radius: 2px;
  2871. box-sizing: border-box;
  2872. cursor: pointer;
  2873. display: block;
  2874. margin-top: 0px;
  2875. margin-right: 0px;
  2876. margin-bottom: 0px;
  2877. margin-left: 0px;
  2878. padding-top: 0;
  2879. padding-right: 20px;
  2880. padding-bottom: 0;
  2881. padding-left: 3px;
  2882. text-decoration: none;
  2883. text-align: center;
  2884. user-select: none;
  2885. height: 44px;
  2886. color: #000000;
  2887. background-color: #edebe9;
  2888. width: 100%;
  2889. line-height: 44px;
  2890. text-overflow: ellipsis;
  2891. white-space: nowrap;
  2892. overflow: hidden;
  2893. -webkit-user-select: none;
  2894. -moz-user-select: none;
  2895. -ms-user-select: none;
  2896. -o-user-select: none;
  2897. }
  2898. .link-194::-moz-focus-inner {
  2899. border: 0;
  2900. }
  2901. .ms-Fabric--isFocusVisible .link-194:focus:after {
  2902. content: "";
  2903. position: absolute;
  2904. left: 1px;
  2905. top: 1px;
  2906. bottom: 1px;
  2907. right: 1px;
  2908. border: 1px solid #ffffff;
  2909. outline: 1px solid #605e5c;
  2910. z-index: 1;
  2911. }
  2912. @media screen and (-ms-high-contrast: active),
  2913. screen and (forced-colors: active) {
  2914. .ms-Fabric--isFocusVisible .link-194:focus:after {
  2915. left: -2px;
  2916. top: -2px;
  2917. bottom: -2px;
  2918. right: -2px;
  2919. outline-color: ButtonText;
  2920. }
  2921. }
  2922. .link-194:active>span {
  2923. position: relative;
  2924. left: 0px;
  2925. top: 0px;
  2926. }
  2927. @media screen and (-ms-high-contrast: active),
  2928. screen and (forced-colors: active) {
  2929. .link-194 {
  2930. border-color: Window;
  2931. border: 0px;
  2932. }
  2933. }
  2934. .link-194:hover {
  2935. color: #0078d4;
  2936. }
  2937. @media screen and (-ms-high-contrast: active),
  2938. screen and (forced-colors: active) {
  2939. .link-194:hover {
  2940. color: Highlight;
  2941. }
  2942. }
  2943. .link-194:hover .ms-Button-icon {
  2944. color: #0078d4;
  2945. }
  2946. .link-194:active {
  2947. color: #000000;
  2948. }
  2949. .link-194:active .ms-Button-icon {
  2950. color: #004578;
  2951. }
  2952. @media screen and (-ms-high-contrast: active),
  2953. screen and (forced-colors: active) {
  2954. .link-194:focus {
  2955. border: 1px solid WindowText;
  2956. }
  2957. }
  2958. .ms-Nav-compositeLink:hover .link-194 {
  2959. background-color: #f3f2f1;
  2960. }
  2961. .link-194:after {
  2962. border-left: 2px solid #0078d4;
  2963. content: "";
  2964. position: absolute;
  2965. top: 0px;
  2966. right: 0px;
  2967. bottom: 0px;
  2968. left: 0px;
  2969. pointer-events: none;
  2970. }
  2971. .css-195 {
  2972. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  2973. -moz-osx-font-smoothing: grayscale;
  2974. -webkit-font-smoothing: antialiased;
  2975. font-size: 14px;
  2976. font-weight: 400;
  2977. flex-basis: auto;
  2978. height: auto;
  2979. width: 0px;
  2980. flex-grow: 1;
  2981. }
  2982. .css-196 {
  2983. display: flex;
  2984. flex-direction: column;
  2985. flex-wrap: nowrap;
  2986. width: auto;
  2987. height: 100%;
  2988. box-sizing: border-box;
  2989. animation-name: css-1, css-22;
  2990. animation-duration: 0.367s;
  2991. animation-timing-function: cubic-bezier(.1, .9, .2, 1);
  2992. animation-fill-mode: both;
  2993. overflow: auto;
  2994. position: relative;
  2995. padding-top: 0px;
  2996. padding-right: 0px;
  2997. padding-bottom: 0px;
  2998. padding-left: 0px;
  2999. margin-top: 0px;
  3000. margin-right: 0px;
  3001. margin-bottom: 0px;
  3002. margin-left: 0px;
  3003. }
  3004. .css-196>* {
  3005. text-overflow: ellipsis;
  3006. }
  3007. .css-196>*:not(.ms-StackItem) {
  3008. flex-shrink: 0;
  3009. }
  3010. .css-197 {
  3011. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  3012. -moz-osx-font-smoothing: grayscale;
  3013. -webkit-font-smoothing: antialiased;
  3014. font-size: 14px;
  3015. font-weight: 400;
  3016. flex-basis: auto;
  3017. height: auto;
  3018. width: auto;
  3019. flex-shrink: 0;
  3020. }
  3021. .root-198 {
  3022. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  3023. -moz-osx-font-smoothing: grayscale;
  3024. -webkit-font-smoothing: antialiased;
  3025. font-size: 14px;
  3026. font-weight: 400;
  3027. box-shadow: none;
  3028. margin-top: 0px;
  3029. margin-right: 0px;
  3030. margin-bottom: 0px;
  3031. margin-left: 0px;
  3032. padding-top: 1px;
  3033. padding-right: 0;
  3034. padding-bottom: 1px;
  3035. padding-left: 4px;
  3036. box-sizing: border-box;
  3037. color: #323130;
  3038. background-color: #ffffff;
  3039. display: flex;
  3040. flex-direction: row;
  3041. flex-wrap: nowrap;
  3042. align-items: stretch;
  3043. border-radius: 2px;
  3044. border: 1px solid #605e5c;
  3045. height: 32px;
  3046. }
  3047. @media screen and (-ms-high-contrast: active),
  3048. screen and (forced-colors: active) {
  3049. .root-198 {
  3050. border-color: WindowText;
  3051. }
  3052. }
  3053. .root-198:hover {
  3054. border-color: #323130;
  3055. }
  3056. @media screen and (-ms-high-contrast: active),
  3057. screen and (forced-colors: active) {
  3058. .root-198:hover {
  3059. border-color: Highlight;
  3060. }
  3061. }
  3062. .root-198:hover .ms-SearchBox-iconContainer {
  3063. color: #005a9e;
  3064. }
  3065. .iconContainer-199 {
  3066. display: flex;
  3067. flex-direction: column;
  3068. justify-content: center;
  3069. flex-shrink: 0;
  3070. font-size: 16px;
  3071. width: 32px;
  3072. text-align: center;
  3073. color: #0078d4;
  3074. cursor: text;
  3075. transition: width 0.167s;
  3076. }
  3077. .icon-200 {
  3078. opacity: 1;
  3079. transition: opacity 0.167s 0s;
  3080. }
  3081. .clearButton-201 {
  3082. display: flex;
  3083. flex-direction: row;
  3084. align-items: stretch;
  3085. cursor: pointer;
  3086. flex-basis: 32px;
  3087. flex-shrink: 0;
  3088. padding-top: 0px;
  3089. padding-right: 0px;
  3090. padding-bottom: 0px;
  3091. padding-left: 0px;
  3092. margin-top: -1px;
  3093. margin-right: 0px;
  3094. margin-bottom: -1px;
  3095. margin-left: 0px;
  3096. }
  3097. .clearButton-201:hover .ms-Button {
  3098. background-color: #f3f2f1;
  3099. }
  3100. .clearButton-201:hover .ms-Button-icon {
  3101. color: #323130;
  3102. }
  3103. .clearButton-201 .ms-Button {
  3104. border-radius: 0 1px 1px 0;
  3105. }
  3106. .clearButton-201 .ms-Button-icon {
  3107. color: #605e5c;
  3108. }
  3109. .field-202 {
  3110. box-shadow: none;
  3111. margin-top: 0px;
  3112. margin-right: 0px;
  3113. margin-bottom: 0px;
  3114. margin-left: 0px;
  3115. padding-top: 0px;
  3116. padding-right: 0px;
  3117. padding-bottom: 0.5px;
  3118. padding-left: 0px;
  3119. box-sizing: border-box;
  3120. background-color: transparent;
  3121. border: none;
  3122. outline: none;
  3123. font-weight: inherit;
  3124. font-family: inherit;
  3125. font-size: inherit;
  3126. color: #323130;
  3127. flex: 1 1 0px;
  3128. min-width: 0px;
  3129. overflow: hidden;
  3130. text-overflow: ellipsis;
  3131. }
  3132. .field-202::placeholder {
  3133. color: #605e5c;
  3134. opacity: 1;
  3135. }
  3136. .field-202:-ms-input-placeholder {
  3137. color: #605e5c;
  3138. opacity: 1;
  3139. }
  3140. .field-202::-ms-input-placeholder {
  3141. color: #605e5c;
  3142. opacity: 1;
  3143. }
  3144. .field-202::-ms-clear {
  3145. display: none;
  3146. }
  3147. .icon-203 {
  3148. display: inline-block;
  3149. opacity: 1;
  3150. transition: opacity 0.167s 0s;
  3151. }
  3152. .css-204 {
  3153. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  3154. -moz-osx-font-smoothing: grayscale;
  3155. -webkit-font-smoothing: antialiased;
  3156. font-size: 14px;
  3157. font-weight: 400;
  3158. flex-basis: auto;
  3159. height: auto;
  3160. width: auto;
  3161. flex-shrink: 1;
  3162. }
  3163. .root-205 {
  3164. outline: transparent;
  3165. position: relative;
  3166. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  3167. -moz-osx-font-smoothing: grayscale;
  3168. -webkit-font-smoothing: antialiased;
  3169. font-size: 14px;
  3170. font-weight: 400;
  3171. border: none;
  3172. border-radius: 2px;
  3173. box-sizing: border-box;
  3174. cursor: default;
  3175. display: inline-block;
  3176. margin-top: 0px;
  3177. margin-right: 0px;
  3178. margin-bottom: 0px;
  3179. margin-left: 0px;
  3180. padding-top: 0;
  3181. padding-right: 4px;
  3182. padding-bottom: 0;
  3183. padding-left: 4px;
  3184. text-decoration: none;
  3185. text-align: center;
  3186. user-select: none;
  3187. width: 32px;
  3188. height: 32px;
  3189. background-color: #f3f2f1;
  3190. color: #c8c6c4;
  3191. border-color: #f3f2f1;
  3192. -webkit-user-select: none;
  3193. -moz-user-select: none;
  3194. -ms-user-select: none;
  3195. -o-user-select: none;
  3196. }
  3197. .root-205::-moz-focus-inner {
  3198. border: 0;
  3199. }
  3200. .ms-Fabric--isFocusVisible .root-205:focus:after {
  3201. content: "";
  3202. position: absolute;
  3203. left: 2px;
  3204. top: 2px;
  3205. bottom: 2px;
  3206. right: 2px;
  3207. border: 1px solid transparent;
  3208. outline: 1px solid #605e5c;
  3209. z-index: 1;
  3210. }
  3211. @media screen and (-ms-high-contrast: active),
  3212. screen and (forced-colors: active) {
  3213. .ms-Fabric--isFocusVisible .root-205:focus:after {
  3214. left: -2px;
  3215. top: -2px;
  3216. bottom: -2px;
  3217. right: -2px;
  3218. outline-color: ButtonText;
  3219. }
  3220. }
  3221. .root-205:active>span {
  3222. position: relative;
  3223. left: 0px;
  3224. top: 0px;
  3225. }
  3226. .root-205:hover {
  3227. outline: 0px;
  3228. }
  3229. .root-205:focus {
  3230. outline: 0px;
  3231. }
  3232. .css-206 {
  3233. font-family: 'Segoe UI', 'Segoe UI Web (West European)', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  3234. -moz-osx-font-smoothing: grayscale;
  3235. -webkit-font-smoothing: antialiased;
  3236. font-size: 14px;
  3237. font-weight: 400;
  3238. flex-basis: auto;
  3239. height: auto;
  3240. width: auto;
  3241. flex-grow: 1;
  3242. position: relative;
  3243. min-height: 0px;
  3244. padding-top: 0px;
  3245. padding-right: 0px;
  3246. padding-bottom: 0px;
  3247. padding-left: 0px;
  3248. margin-top: 0 !important;
  3249. margin-right: 0 !important;
  3250. margin-bottom: 0 !important;
  3251. margin-left: 0 !important;
  3252. }
  3253. </style>
  3254. </head>
  3255. <body>
  3256. <div id="__next">
  3257. <div class="ms-Stack css-114">
  3258. <div style="display:none" class="ms-Stack title-container-115"><button type="button" title="Toggle Menu"
  3259. class="ms-Button ms-Button--icon root-116" data-is-focusable="true"><span
  3260. class="ms-Button-flexContainer flexContainer-117" data-automationid="splitbuttonprimary"><i
  3261. data-icon-name="Navigation" aria-hidden="true"
  3262. class="ms-Icon root-105 ms-Button-icon icon-119"><svg fill="currentColor"
  3263. class="___12fm75w f1w7gpdv fez10in fg4l7m0" aria-hidden="true" width="1em" height="1em"
  3264. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3265. <path
  3266. d="M2 4.5c0-.28.22-.5.5-.5h15a.5.5 0 0 1 0 1h-15a.5.5 0 0 1-.5-.5Zm0 5c0-.28.22-.5.5-.5h15a.5.5 0 0 1 0 1h-15a.5.5 0 0 1-.5-.5Zm.5 4.5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Z"
  3267. fill="currentColor"></path>
  3268. </svg></i></span></button>
  3269. <div class="ms-StackItem css-124">
  3270. <div class="title-110">Android Web Toolbox</div>
  3271. </div><a title="Feedback" href="https://github.com/yume-chan/ya-webadb/issues/new" target="_blank"
  3272. class="ms-Button ms-Button--icon root-116" data-is-focusable="true"><span
  3273. class="ms-Button-flexContainer flexContainer-117" data-automationid="splitbuttonprimary"><i
  3274. data-icon-name="PersonFeedback" aria-hidden="true"
  3275. class="ms-Icon root-105 ms-Button-icon icon-119"><svg fill="currentColor"
  3276. class="___12fm75w f1w7gpdv fez10in fg4l7m0" aria-hidden="true" width="1em" height="1em"
  3277. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3278. <path
  3279. d="M10.5 12c.83 0 1.5.67 1.5 1.5v.5c0 1.97-1.86 4-5 4-3.14 0-5-2.03-5-4v-.5c0-.83.67-1.5 1.5-1.5h7Zm0 1h-7a.5.5 0 0 0-.5.5v.5c0 1.44 1.43 3 4 3 2.57 0 4-1.56 4-3v-.5a.5.5 0 0 0-.5-.5ZM7 5.5A2.75 2.75 0 1 1 7 11a2.75 2.75 0 0 1 0-5.5ZM16 2a2 2 0 0 1 2 1.85V6a2 2 0 0 1-1.85 2H14.5l-1.2 1.6a1 1 0 0 1-1.78-.38l-.01-.1V9l-.01-1.07-.08-.01a2 2 0 0 1-1.4-1.6l-.01-.17L10 6V4a2 2 0 0 1 1.85-2H16ZM7 6.5A1.75 1.75 0 1 0 7 10a1.75 1.75 0 0 0 0-3.5ZM16 3h-4a1 1 0 0 0-1 .88V6a1 1 0 0 0 .88 1h.62v2L14 7h2a1 1 0 0 0 1-.88V4a1 1 0 0 0-.88-1H16Z"
  3280. fill="currentColor"></path>
  3281. </svg></i></span></a>
  3282. </div>
  3283. <div class="ms-Stack css-125">
  3284. <div style="display:none" class="ms-StackItem left-column-126">
  3285. <div class="ms-Stack css-127">
  3286. <div class="ms-Dropdown-container"><label class="ms-Label ms-Dropdown-label root-146"
  3287. id="Dropdown6-label">Available devices</label>
  3288. <div data-is-focusable="false" data-ktp-target="true" id="Dropdown6" tabindex="-1"
  3289. role="combobox" aria-haspopup="listbox" aria-expanded="false"
  3290. aria-labelledby="Dropdown6-label Dropdown6-option" aria-disabled="true"
  3291. class="ms-Dropdown is-disabled dropdown-128"><span id="Dropdown6-option"
  3292. class="ms-Dropdown-title ms-Dropdown-titleIsPlaceHolder title-129"
  3293. aria-invalid="false">No available devices</span><span
  3294. class="ms-Dropdown-caretDownWrapper caretDownWrapper-130"><i
  3295. data-icon-name="ChevronDown" aria-hidden="true"
  3296. class="ms-Dropdown-caretDown caretDown-147"><svg fill="currentColor"
  3297. class="___12fm75w f1w7gpdv fez10in fg4l7m0" aria-hidden="true" width="1em"
  3298. height="1em" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3299. <path
  3300. d="M15.85 7.65c.2.2.2.5 0 .7l-5.46 5.49a.55.55 0 0 1-.78 0L4.15 8.35a.5.5 0 1 1 .7-.7L10 12.8l5.15-5.16c.2-.2.5-.2.7 0Z"
  3301. fill="currentColor"></path>
  3302. </svg></i></span></div>
  3303. </div>
  3304. <div class="ms-Stack css-148">
  3305. <div class="ms-StackItem css-124"><button type="button" id="usbconnect"
  3306. class="ms-Button ms-Button--primary is-disabled root-149" disabled=""
  3307. aria-disabled="true" data-is-focusable="false"><span
  3308. class="ms-Button-flexContainer flexContainer-117"
  3309. data-automationid="splitbuttonprimary"><i data-icon-name="PlugConnected"
  3310. aria-hidden="true" class="ms-Icon root-105 ms-Button-icon icon-150"><svg
  3311. fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3312. aria-hidden="true" width="1em" height="1em" viewBox="0 0 20 20"
  3313. xmlns="http://www.w3.org/2000/svg">
  3314. <path
  3315. d="M17.85 2.85a.5.5 0 0 0-.7-.7L14.48 4.8a4.04 4.04 0 0 0-5.33.34l-.3.3a1.49 1.49 0 0 0 0 2.1l3.6 3.6c.58.59 1.52.59 2.1 0l.3-.3a4.04 4.04 0 0 0 .34-5.33l2.66-2.67Zm-4 7.6c-.2.19-.5.19-.7 0l-3.6-3.6c-.19-.2-.19-.5 0-.7l.3-.3a3.04 3.04 0 0 1 4.3 4.3l-.3.3Zm-6.3-1.6a1.49 1.49 0 0 0-2.1 0l-.3.3a4.04 4.04 0 0 0-.34 5.33l-2.66 2.67a.5.5 0 0 0 .7.7l2.67-2.66a4.04 4.04 0 0 0 5.33-.34l.3-.3c.59-.58.59-1.52 0-2.1l-3.6-3.6Zm-1.4.7c.2-.19.5-.19.7 0l3.6 3.6c.19.2.19.5 0 .7l-.3.3a3.04 3.04 0 1 1-4.3-4.3l.3-.3Z"
  3316. fill="currentColor"></path>
  3317. </svg></i><span class="ms-Button-textContainer textContainer-118"><span
  3318. class="ms-Button-label label-151"
  3319. id="id__7">Connect</span></span></span></button></div>
  3320. <div class="ms-StackItem css-124">
  3321. <div aria-disabled="false" data-is-focusable="true" role="button" aria-haspopup="true"
  3322. aria-expanded="false" class="css-155" tabindex="0"><span
  3323. style="display:flex;width:100%"><button type="button" id="usbadd"
  3324. class="ms-Button ms-Button--primary ms-Button--hasMenu root-153"
  3325. data-is-focusable="false" tabindex="-1"><span
  3326. class="ms-Button-flexContainer flexContainer-117"
  3327. data-automationid="splitbuttonprimary"><i data-icon-name="AddCircle"
  3328. aria-hidden="true"
  3329. class="ms-Icon root-105 ms-Button-icon icon-119"><svg
  3330. fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3331. aria-hidden="true" width="1em" height="1em" viewBox="0 0 20 20"
  3332. xmlns="http://www.w3.org/2000/svg">
  3333. <path
  3334. d="M6 10c0-.28.22-.5.5-.5h3v-3a.5.5 0 0 1 1 0v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3A.5.5 0 0 1 6 10Zm4 8a8 8 0 1 0 0-16 8 8 0 0 0 0 16Zm0-1a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"
  3335. fill="currentColor"></path>
  3336. </svg></i><span
  3337. class="ms-Button-textContainer textContainer-118"><span
  3338. class="ms-Button-label label-151"
  3339. id="id__10">Add</span></span></span></button><button
  3340. type="button" aria-haspopup="true" aria-expanded="false"
  3341. data-is-focusable="false" tabindex="-1" class="ms-Button root-159"
  3342. aria-label="Add other connection type"><span
  3343. class="ms-Button-flexContainer flexContainer-117"
  3344. data-automationid="splitbuttonprimary"><i data-icon-name="ChevronDown"
  3345. aria-hidden="true"
  3346. class="ms-Icon root-105 ms-Button-icon ms-Button-menuIcon menuIcon-160 ms-Button-menuIcon menuIcon-121"><svg
  3347. fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3348. aria-hidden="true" width="1em" height="1em" viewBox="0 0 20 20"
  3349. xmlns="http://www.w3.org/2000/svg">
  3350. <path
  3351. d="M15.85 7.65c.2.2.2.5 0 .7l-5.46 5.49a.55.55 0 0 1-.78 0L4.15 8.35a.5.5 0 1 1 .7-.7L10 12.8l5.15-5.16c.2-.2.5-.2.7 0Z"
  3352. fill="currentColor"></path>
  3353. </svg></i></span></button><span class="css-158"
  3354. aria-hidden="true"></span></span></div>
  3355. </div>
  3356. </div>
  3357. </div>
  3358. <div class="ms-FocusZone css-187" data-focuszone-id="FocusZone18">
  3359. <nav role="navigation" class="ms-Nav root-170">
  3360. <div class="ms-Nav-group is-expanded">
  3361. <div class="ms-Nav-groupContent groupContent-178">
  3362. <ul role="list" class="ms-Nav-navItems navItems-177">
  3363. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3364. <div name="README" class="ms-Nav-compositeLink compositeLink-172"><a
  3365. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3366. href="/ya-webadb/apps/demo/out" title="README"
  3367. data-is-focusable="true"><span
  3368. class="ms-Button-flexContainer flexContainer-189"
  3369. data-automationid="splitbuttonprimary"><i
  3370. data-icon-name="Bookmark" aria-hidden="true"
  3371. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3372. fill="currentColor"
  3373. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3374. aria-hidden="true" width="1em" height="1em"
  3375. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3376. <path
  3377. d="M4 4.5A2.5 2.5 0 0 1 6.5 2h7A2.5 2.5 0 0 1 16 4.5v13a.5.5 0 0 1-.8.4L10 14.12 4.8 17.9a.5.5 0 0 1-.8-.4v-13ZM6.5 3C5.67 3 5 3.67 5 4.5v12.02l4.7-3.42a.5.5 0 0 1 .6 0l4.7 3.42V4.5c0-.83-.67-1.5-1.5-1.5h-7Z"
  3378. fill="currentColor"></path>
  3379. </svg></i>
  3380. <div class="ms-Nav-linkText linkText-171">README</div>
  3381. </span></a></div>
  3382. </li>
  3383. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3384. <div name="Device Info" class="ms-Nav-compositeLink compositeLink-172"><a
  3385. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3386. href="/ya-webadb/apps/demo/out/device-info" title="Device Info"
  3387. data-is-focusable="true"><span
  3388. class="ms-Button-flexContainer flexContainer-189"
  3389. data-automationid="splitbuttonprimary"><i data-icon-name="Phone"
  3390. aria-hidden="true"
  3391. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3392. fill="currentColor"
  3393. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3394. aria-hidden="true" width="1em" height="1em"
  3395. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3396. <path
  3397. d="M9 14a.5.5 0 0 0 0 1h2a.5.5 0 0 0 0-1H9ZM7 2a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h6a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H7ZM6 4a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V4Z"
  3398. fill="currentColor"></path>
  3399. </svg></i>
  3400. <div class="ms-Nav-linkText linkText-171">Device Info</div>
  3401. </span></a></div>
  3402. </li>
  3403. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3404. <div name="File Manager" class="ms-Nav-compositeLink compositeLink-172"><a
  3405. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3406. href="/ya-webadb/apps/demo/out/file-manager" title="File Manager"
  3407. data-is-focusable="true"><span
  3408. class="ms-Button-flexContainer flexContainer-189"
  3409. data-automationid="splitbuttonprimary"><i
  3410. data-icon-name="Folder" aria-hidden="true"
  3411. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3412. fill="currentColor"
  3413. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3414. aria-hidden="true" width="1em" height="1em"
  3415. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3416. <path
  3417. d="M7.17 3c.27 0 .53.07.76.21l.14.09 1.6 1.2h5.83a2.5 2.5 0 0 1 2.48 2.17l.01.17L18 7v7.5a2.5 2.5 0 0 1-2.34 2.5H4.5A2.5 2.5 0 0 1 2 14.66V5.5A2.5 2.5 0 0 1 4.34 3h2.83Zm.99 4.03a1.5 1.5 0 0 1-.94.46l-.15.01H3v7c0 .78.6 1.42 1.36 1.5H15.5c.78 0 1.42-.6 1.5-1.36V7c0-.78-.6-1.42-1.36-1.5H9.62L8.16 7.03ZM7.16 4H4.5c-.78 0-1.42.6-1.5 1.36V6.5h4.07a.5.5 0 0 0 .3-.1l.06-.06L8.7 5.02 7.47 4.1a.5.5 0 0 0-.22-.1h-.08Z"
  3418. fill="currentColor"></path>
  3419. </svg></i>
  3420. <div class="ms-Nav-linkText linkText-171">File Manager</div>
  3421. </span></a></div>
  3422. </li>
  3423. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3424. <div name="Screen Capture" class="ms-Nav-compositeLink compositeLink-172"><a
  3425. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3426. href="/ya-webadb/apps/demo/out/framebuffer" title="Screen Capture"
  3427. data-is-focusable="true"><span
  3428. class="ms-Button-flexContainer flexContainer-189"
  3429. data-automationid="splitbuttonprimary"><i
  3430. data-icon-name="Camera" aria-hidden="true"
  3431. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3432. fill="currentColor"
  3433. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3434. aria-hidden="true" width="1em" height="1em"
  3435. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3436. <path
  3437. d="M10 6a4 4 0 1 0 0 8 4 4 0 0 0 0-8Zm-3 4a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm1.12-8a1.5 1.5 0 0 0-1.34.83L6.2 4H4.5A2.5 2.5 0 0 0 2 6.5v8A2.5 2.5 0 0 0 4.5 17h11a2.5 2.5 0 0 0 2.5-2.5v-8A2.5 2.5 0 0 0 15.5 4h-1.69l-.58-1.17A1.5 1.5 0 0 0 11.89 2H8.12Zm-.44 1.28A.5.5 0 0 1 8.12 3h3.77c.19 0 .36.1.45.28l.72 1.44a.5.5 0 0 0 .45.28h2c.82 0 1.5.67 1.5 1.5v8c0 .83-.68 1.5-1.5 1.5h-11A1.5 1.5 0 0 1 3 14.5v-8C3 5.67 3.67 5 4.5 5h2a.5.5 0 0 0 .44-.28l.73-1.44Z"
  3438. fill="currentColor"></path>
  3439. </svg></i>
  3440. <div class="ms-Nav-linkText linkText-171">Screen Capture</div>
  3441. </span></a></div>
  3442. </li>
  3443. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3444. <div name="Interactive Shell"
  3445. class="ms-Nav-compositeLink is-selected compositeLink-172"><a
  3446. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-194"
  3447. href="/ya-webadb/apps/demo/out/shell" title="Interactive Shell"
  3448. aria-current="page" data-is-focusable="true"><span
  3449. class="ms-Button-flexContainer flexContainer-189"
  3450. data-automationid="splitbuttonprimary"><i
  3451. data-icon-name="WindowConsole" aria-hidden="true"
  3452. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3453. fill="currentColor"
  3454. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3455. aria-hidden="true" width="1em" height="1em"
  3456. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3457. <path
  3458. d="M5.65 9.15c.2-.2.5-.2.7 0l2 2a.5.5 0 0 1 0 .7l-2 2a.5.5 0 0 1-.7-.7l1.64-1.65-1.64-1.65a.5.5 0 0 1 0-.7ZM14.5 13h-5a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1ZM3 5.5A2.5 2.5 0 0 1 5.5 3h9A2.5 2.5 0 0 1 17 5.5v9a2.5 2.5 0 0 1-2.5 2.5h-9A2.5 2.5 0 0 1 3 14.5v-9ZM16 6v-.5c0-.83-.68-1.5-1.5-1.5h-9C4.67 4 4 4.67 4 5.5V6h12ZM4 7v7.5c0 .83.67 1.5 1.5 1.5h9c.82 0 1.5-.67 1.5-1.5V7H4Z"
  3459. fill="currentColor"></path>
  3460. </svg></i>
  3461. <div class="ms-Nav-linkText linkText-171">Interactive Shell
  3462. </div>
  3463. </span></a></div>
  3464. </li>
  3465. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3466. <div name="Scrcpy" class="ms-Nav-compositeLink compositeLink-172"><a
  3467. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3468. href="/ya-webadb/apps/demo/out/scrcpy" title="Scrcpy"
  3469. data-is-focusable="true"><span
  3470. class="ms-Button-flexContainer flexContainer-189"
  3471. data-automationid="splitbuttonprimary"><i
  3472. data-icon-name="PhoneLaptop" aria-hidden="true"
  3473. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3474. fill="currentColor"
  3475. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3476. aria-hidden="true" width="1em" height="1em"
  3477. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3478. <path
  3479. d="M3 4.5C3 3.67 3.67 3 4.5 3h11c.83 0 1.5.67 1.5 1.5v7c0 .83-.67 1.5-1.5 1.5H10v-1h5.5a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.5-.5h-11a.5.5 0 0 0-.5.5V6H3V4.5ZM10 15h7.5a.5.5 0 0 0 0-1H10v1Zm-5 0a.5.5 0 0 0 0 1h1a.5.5 0 0 0 0-1H5ZM2 8.5C2 7.67 2.67 7 3.5 7h4C8.33 7 9 7.67 9 8.5v8c0 .83-.67 1.5-1.5 1.5h-4A1.5 1.5 0 0 1 2 16.5v-8ZM3.5 8a.5.5 0 0 0-.5.5v8c0 .28.22.5.5.5h4a.5.5 0 0 0 .5-.5v-8a.5.5 0 0 0-.5-.5h-4Z"
  3480. fill="currentColor"></path>
  3481. </svg></i>
  3482. <div class="ms-Nav-linkText linkText-171">Scrcpy</div>
  3483. </span></a></div>
  3484. </li>
  3485. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3486. <div name="ADB over WiFi" class="ms-Nav-compositeLink compositeLink-172"><a
  3487. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3488. href="/ya-webadb/apps/demo/out/tcpip" title="ADB over WiFi"
  3489. data-is-focusable="true"><span
  3490. class="ms-Button-flexContainer flexContainer-189"
  3491. data-automationid="splitbuttonprimary"><i
  3492. data-icon-name="WifiSettings" aria-hidden="true"
  3493. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3494. fill="currentColor"
  3495. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3496. aria-hidden="true" width="1em" height="1em"
  3497. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3498. <path
  3499. d="M17.96 8.18a9.61 9.61 0 0 0-15.85 0 .5.5 0 0 0 .83.56 8.61 8.61 0 0 1 14.2 0 .5.5 0 1 0 .82-.56Zm-10.78 3.1a4.03 4.03 0 0 1 3.85-1.05c-.32.26-.6.55-.86.88a3.02 3.02 0 0 0-2.91 1.82.5.5 0 1 1-.92-.4c.2-.47.49-.9.84-1.24Zm7.42-2.5.2.23a5.59 5.59 0 0 0-1.35.09 5.45 5.45 0 0 0-8.28 1.79.5.5 0 0 1-.89-.46A6.45 6.45 0 0 1 14.6 8.78Zm-2.53 2.66a2 2 0 0 1-1.43 2.48l-.46.12a4.7 4.7 0 0 0 0 1.01l.35.09A2 2 0 0 1 12 17.66l-.13.42c.26.2.54.38.84.52l.32-.35a2 2 0 0 1 2.91 0l.34.36c.3-.13.57-.3.82-.5l-.15-.55a2 2 0 0 1 1.43-2.48l.46-.12a4.7 4.7 0 0 0-.01-1.01l-.35-.09A2 2 0 0 1 17 11.34l.13-.42c-.26-.2-.54-.38-.84-.52l-.32.35a2 2 0 0 1-2.91 0l-.34-.36c-.29.13-.57.3-.82.5l.16.55Zm2.43 4.06a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z"
  3500. fill="currentColor"></path>
  3501. </svg></i>
  3502. <div class="ms-Nav-linkText linkText-171">ADB over WiFi</div>
  3503. </span></a></div>
  3504. </li>
  3505. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3506. <div name="Install APK" class="ms-Nav-compositeLink compositeLink-172"><a
  3507. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3508. href="/ya-webadb/apps/demo/out/install" title="Install APK"
  3509. data-is-focusable="true"><span
  3510. class="ms-Button-flexContainer flexContainer-189"
  3511. data-automationid="splitbuttonprimary"><i data-icon-name="Box"
  3512. aria-hidden="true"
  3513. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3514. fill="currentColor"
  3515. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3516. aria-hidden="true" width="1em" height="1em"
  3517. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3518. <path
  3519. d="M11.3 2.48a3.5 3.5 0 0 0-2.6 0l-5.76 2.3A1.5 1.5 0 0 0 2 6.18v7.64c0 .62.37 1.17.94 1.4l5.76 2.3a3.5 3.5 0 0 0 2.6 0l5.76-2.3c.57-.23.94-.78.94-1.4V6.18a1.5 1.5 0 0 0-.94-1.4l-5.76-2.3Zm-2.23.93a2.5 2.5 0 0 1 1.86 0l5.22 2.09-2.27.91-6.16-2.46 1.35-.54Zm-2.7 1.08 6.16 2.46L10 7.96 3.85 5.5l2.53-1.01Zm4.13 4.35 6.5-2.6v7.58a.5.5 0 0 1-.31.47l-5.76 2.3c-.14.06-.28.1-.43.13V8.84Zm-1 0v7.88a2.5 2.5 0 0 1-.43-.13l-5.76-2.3a.5.5 0 0 1-.31-.47V6.24l6.5 2.6Z"
  3520. fill="currentColor"></path>
  3521. </svg></i>
  3522. <div class="ms-Nav-linkText linkText-171">Install APK</div>
  3523. </span></a></div>
  3524. </li>
  3525. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3526. <div name="Logcat" class="ms-Nav-compositeLink compositeLink-172"><a
  3527. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3528. href="/ya-webadb/apps/demo/out/logcat" title="Logcat"
  3529. data-is-focusable="true"><span
  3530. class="ms-Button-flexContainer flexContainer-189"
  3531. data-automationid="splitbuttonprimary"><i
  3532. data-icon-name="BookSearch" aria-hidden="true"
  3533. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3534. fill="currentColor"
  3535. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3536. aria-hidden="true" width="1em" height="1em"
  3537. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3538. <path
  3539. d="M4 4v12c0 1.1.9 2 2 2h9.5a.5.5 0 0 0 0-1H6a1 1 0 0 1-1-1h10a1 1 0 0 0 1-1V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2Zm10-1a1 1 0 0 1 1 1v11H5V4a1 1 0 0 1 1-1h8Zm-2.41 6.88a2.5 2.5 0 1 0-.7.7l1.26 1.27a.5.5 0 0 0 .7-.7L11.6 9.88ZM8 8.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0Z"
  3540. fill="currentColor"></path>
  3541. </svg></i>
  3542. <div class="ms-Nav-linkText linkText-171">Logcat</div>
  3543. </span></a></div>
  3544. </li>
  3545. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3546. <div name="Power Menu" class="ms-Nav-compositeLink compositeLink-172"><a
  3547. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3548. href="/ya-webadb/apps/demo/out/power" title="Power Menu"
  3549. data-is-focusable="true"><span
  3550. class="ms-Button-flexContainer flexContainer-189"
  3551. data-automationid="splitbuttonprimary"><i data-icon-name="Power"
  3552. aria-hidden="true"
  3553. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3554. fill="currentColor"
  3555. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3556. aria-hidden="true" width="1em" height="1em"
  3557. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3558. <path
  3559. d="M10.5 2.5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0v-6ZM13.74 4a.5.5 0 1 0-.5.87 6.5 6.5 0 1 1-6.49 0 .5.5 0 1 0-.5-.87 7.5 7.5 0 1 0 7.5 0Z"
  3560. fill="currentColor"></path>
  3561. </svg></i>
  3562. <div class="ms-Nav-linkText linkText-171">Power Menu</div>
  3563. </span></a></div>
  3564. </li>
  3565. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3566. <div name="Bug Report" class="ms-Nav-compositeLink compositeLink-172"><a
  3567. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3568. href="/ya-webadb/apps/demo/out/bug-report" title="Bug Report"
  3569. data-is-focusable="true"><span
  3570. class="ms-Button-flexContainer flexContainer-189"
  3571. data-automationid="splitbuttonprimary"><i data-icon-name="Bug"
  3572. aria-hidden="true"
  3573. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3574. fill="currentColor"
  3575. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3576. aria-hidden="true" width="1em" height="1em"
  3577. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3578. <path
  3579. d="M9 2.5a.5.5 0 0 0-1 0V3c0 .4.12.77.32 1.08A3 3 0 0 0 6 7h-.5A1.5 1.5 0 0 1 4 5.5v-2a.5.5 0 0 0-1 0v2A2.5 2.5 0 0 0 5.5 8H6v1.5H2.5a.5.5 0 0 0 0 1H6V12h-.5A2.5 2.5 0 0 0 3 14.5v2a.5.5 0 0 0 1 0v-2c0-.83.67-1.5 1.5-1.5H6a4 4 0 0 0 8 0h.5c.83 0 1.5.67 1.5 1.5v2a.5.5 0 0 0 1 0v-2a2.5 2.5 0 0 0-2.5-2.5H14v-1.5h3.5a.5.5 0 0 0 0-1H14V8h.5A2.5 2.5 0 0 0 17 5.5v-2a.5.5 0 0 0-1 0v2c0 .83-.67 1.5-1.5 1.5H14a3 3 0 0 0-2.32-2.92A2 2 0 0 0 12 3v-.5a.5.5 0 0 0-1 0V3a1 1 0 1 1-2 0v-.5ZM13 7v6a3 3 0 1 1-6 0V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2Z"
  3580. fill="currentColor"></path>
  3581. </svg></i>
  3582. <div class="ms-Nav-linkText linkText-171">Bug Report</div>
  3583. </span></a></div>
  3584. </li>
  3585. <li role="listitem" class="ms-Nav-navItem navItem-176">
  3586. <div name="Packet Log" class="ms-Nav-compositeLink compositeLink-172"><a
  3587. class="ms-Button ms-Button--action ms-Button--command ms-Nav-link link-188"
  3588. href="/ya-webadb/apps/demo/out/packet-log" title="Packet Log"
  3589. data-is-focusable="true"><span
  3590. class="ms-Button-flexContainer flexContainer-189"
  3591. data-automationid="splitbuttonprimary"><i
  3592. data-icon-name="TextGrammarError" aria-hidden="true"
  3593. class="ms-Icon root-105 ms-Button-icon icon-191"><svg
  3594. fill="currentColor"
  3595. class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3596. aria-hidden="true" width="1em" height="1em"
  3597. viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
  3598. <path
  3599. d="M2.5 5a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15Zm0 3a.5.5 0 0 0 0 1h15a.5.5 0 0 0 0-1h-15ZM9 14.5c0-.17 0-.34.02-.5H2.5a.5.5 0 0 0 0 1h6.52a5.57 5.57 0 0 1-.02-.5Zm.6-2.5c.18-.36.4-.7.66-1H2.5a.5.5 0 0 0 0 1h7.1Zm9.4 2.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0ZM14.5 12a.5.5 0 0 0-.5.5v2a.5.5 0 0 0 1 0v-2a.5.5 0 0 0-.5-.5Zm0 5.13a.62.62 0 1 0 0-1.25.62.62 0 0 0 0 1.24Z"
  3600. fill="currentColor"></path>
  3601. </svg></i>
  3602. <div class="ms-Nav-linkText linkText-171">Packet Log</div>
  3603. </span></a></div>
  3604. </li>
  3605. </ul>
  3606. </div>
  3607. </div>
  3608. </nav>
  3609. </div>
  3610. </div>
  3611. <div class="ms-StackItem css-195">
  3612. <div class="ms-Stack css-196">
  3613. <div style="display:none" class="ms-StackItem css-197">
  3614. <div class="ms-Stack css-148">
  3615. <div class="ms-StackItem css-124">
  3616. <div class="ms-SearchBox root-198">
  3617. <div class="ms-SearchBox-iconContainer iconContainer-199" aria-hidden="true"><i
  3618. data-icon-name="Search" aria-hidden="true"
  3619. class="ms-SearchBox-icon icon-203"><svg fill="currentColor"
  3620. class="___12fm75w f1w7gpdv fez10in fg4l7m0" aria-hidden="true"
  3621. width="1em" height="1em" viewBox="0 0 20 20"
  3622. xmlns="http://www.w3.org/2000/svg">
  3623. <path
  3624. d="M8.5 3a5.5 5.5 0 0 1 4.23 9.02l4.12 4.13a.5.5 0 0 1-.63.76l-.07-.06-4.13-4.12A5.5 5.5 0 1 1 8.5 3Zm0 1a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9Z"
  3625. fill="currentColor"></path>
  3626. </svg></i></div><input id="SearchBox55"
  3627. class="ms-SearchBox-field field-202" placeholder="Find" role="searchbox"
  3628. value="" />
  3629. </div>
  3630. </div>
  3631. <div class="ms-StackItem css-204"><button type="button"
  3632. class="ms-Button ms-Button--icon is-disabled root-205" disabled=""
  3633. aria-disabled="true" data-is-focusable="false"><span
  3634. class="ms-Button-flexContainer flexContainer-117"
  3635. data-automationid="splitbuttonprimary"><i data-icon-name="ChevronUp"
  3636. aria-hidden="true" class="ms-Icon root-105 ms-Button-icon icon-150"><svg
  3637. fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3638. aria-hidden="true" width="1em" height="1em" viewBox="0 0 20 20"
  3639. xmlns="http://www.w3.org/2000/svg">
  3640. <path
  3641. d="M4.15 12.35a.5.5 0 0 1 0-.7L9.6 6.16a.55.55 0 0 1 .78 0l5.46 5.49a.5.5 0 0 1-.7.7L10 7.2l-5.15 5.16a.5.5 0 0 1-.7 0Z"
  3642. fill="currentColor"></path>
  3643. </svg></i></span></button></div>
  3644. <div class="ms-StackItem css-204"><button type="button"
  3645. class="ms-Button ms-Button--icon is-disabled root-205" disabled=""
  3646. aria-disabled="true" data-is-focusable="false"><span
  3647. class="ms-Button-flexContainer flexContainer-117"
  3648. data-automationid="splitbuttonprimary"><i data-icon-name="ChevronDown"
  3649. aria-hidden="true" class="ms-Icon root-105 ms-Button-icon icon-150"><svg
  3650. fill="currentColor" class="___12fm75w f1w7gpdv fez10in fg4l7m0"
  3651. aria-hidden="true" width="1em" height="1em" viewBox="0 0 20 20"
  3652. xmlns="http://www.w3.org/2000/svg">
  3653. <path
  3654. d="M15.85 7.65c.2.2.2.5 0 .7l-5.46 5.49a.55.55 0 0 1-.78 0L4.15 8.35a.5.5 0 1 1 .7-.7L10 12.8l5.15-5.16c.2-.2.5-.2.7 0Z"
  3655. fill="currentColor"></path>
  3656. </svg></i></span></button></div>
  3657. </div>
  3658. </div>
  3659. <div class="ms-StackItem css-206"><iframe
  3660. class="___o57slk0 f1euv43f f15twtuk f1vgc2s3 fly5x3f f1l02sjl fd7fpy0"></iframe>
  3661. <div style="height:100%"></div>
  3662. </div>
  3663. </div>
  3664. </div>
  3665. </div>
  3666. </div>
  3667. </div>
  3668. <script id="__NEXT_DATA__"
  3669. type="application/json">{"props":{"pageProps":{}},"page":"/shell","query":{},"buildId":"phthWfIgE5YfrFmGx62XU","assetPrefix":"/ya-webadb/apps/demo/out","runtimeConfig":{"basePath":"/ya-webadb/apps/demo/out"},"nextExport":true,"autoExport":true,"isFallback":false,"scriptLoader":[]}</script>
  3670. </body>
  3671. </html>