tutorial_2.slides.html 585 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768
  1. <!DOCTYPE html>
  2. <html>
  3. <head><meta charset="utf-8" />
  4. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  5. <meta name="apple-mobile-web-app-capable" content="yes" />
  6. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  7. <title>tutorial_2 slides</title><script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
  8. <!-- General and theme style sheets -->
  9. <link rel="stylesheet" href="https://unpkg.com/reveal.js@4.0.2/dist/reveal.css">
  10. <link rel="stylesheet" href="https://unpkg.com/reveal.js@4.0.2/dist/theme/simple.css" id="theme">
  11. <!-- If the query includes 'print-pdf', include the PDF print sheet -->
  12. <script>
  13. if( window.location.search.match( /print-pdf/gi ) ) {
  14. var link = document.createElement( 'link' );
  15. link.rel = 'stylesheet';
  16. link.type = 'text/css';
  17. document.getElementsByTagName( 'head' )[0].appendChild( link );
  18. }
  19. </script>
  20. <!-- Loading the mathjax macro -->
  21. <!-- Load mathjax -->
  22. <script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-MML-AM_CHTML-full,Safe"> </script>
  23. <!-- MathJax configuration -->
  24. <script type="text/x-mathjax-config">
  25. init_mathjax = function() {
  26. if (window.MathJax) {
  27. // MathJax loaded
  28. MathJax.Hub.Config({
  29. TeX: {
  30. equationNumbers: {
  31. autoNumber: "AMS",
  32. useLabelIds: true
  33. }
  34. },
  35. tex2jax: {
  36. inlineMath: [ ['$','$'], ["\\(","\\)"] ],
  37. displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
  38. processEscapes: true,
  39. processEnvironments: true
  40. },
  41. displayAlign: 'center',
  42. CommonHTML: {
  43. linebreaks: {
  44. automatic: true
  45. }
  46. },
  47. "HTML-CSS": {
  48. linebreaks: {
  49. automatic: true
  50. }
  51. }
  52. });
  53. MathJax.Hub.Queue(["Typeset", MathJax.Hub]);
  54. }
  55. }
  56. init_mathjax();
  57. </script>
  58. <!-- End of mathjax configuration -->
  59. <style type="text/css">
  60. pre { line-height: 125%; }
  61. td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
  62. span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
  63. td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
  64. span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
  65. .highlight .hll { background-color: var(--jp-cell-editor-active-background) }
  66. .highlight { background: var(--jp-cell-editor-background); color: var(--jp-mirror-editor-variable-color) }
  67. .highlight .c { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment */
  68. .highlight .err { color: var(--jp-mirror-editor-error-color) } /* Error */
  69. .highlight .k { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword */
  70. .highlight .o { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator */
  71. .highlight .p { color: var(--jp-mirror-editor-punctuation-color) } /* Punctuation */
  72. .highlight .ch { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Hashbang */
  73. .highlight .cm { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Multiline */
  74. .highlight .cp { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Preproc */
  75. .highlight .cpf { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.PreprocFile */
  76. .highlight .c1 { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Single */
  77. .highlight .cs { color: var(--jp-mirror-editor-comment-color); font-style: italic } /* Comment.Special */
  78. .highlight .kc { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Constant */
  79. .highlight .kd { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Declaration */
  80. .highlight .kn { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Namespace */
  81. .highlight .kp { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Pseudo */
  82. .highlight .kr { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Reserved */
  83. .highlight .kt { color: var(--jp-mirror-editor-keyword-color); font-weight: bold } /* Keyword.Type */
  84. .highlight .m { color: var(--jp-mirror-editor-number-color) } /* Literal.Number */
  85. .highlight .s { color: var(--jp-mirror-editor-string-color) } /* Literal.String */
  86. .highlight .ow { color: var(--jp-mirror-editor-operator-color); font-weight: bold } /* Operator.Word */
  87. .highlight .w { color: var(--jp-mirror-editor-variable-color) } /* Text.Whitespace */
  88. .highlight .mb { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Bin */
  89. .highlight .mf { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Float */
  90. .highlight .mh { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Hex */
  91. .highlight .mi { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer */
  92. .highlight .mo { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Oct */
  93. .highlight .sa { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Affix */
  94. .highlight .sb { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Backtick */
  95. .highlight .sc { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Char */
  96. .highlight .dl { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Delimiter */
  97. .highlight .sd { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Doc */
  98. .highlight .s2 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Double */
  99. .highlight .se { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Escape */
  100. .highlight .sh { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Heredoc */
  101. .highlight .si { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Interpol */
  102. .highlight .sx { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Other */
  103. .highlight .sr { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Regex */
  104. .highlight .s1 { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Single */
  105. .highlight .ss { color: var(--jp-mirror-editor-string-color) } /* Literal.String.Symbol */
  106. .highlight .il { color: var(--jp-mirror-editor-number-color) } /* Literal.Number.Integer.Long */
  107. </style>
  108. <style type="text/css">
  109. /*-----------------------------------------------------------------------------
  110. | Copyright (c) Jupyter Development Team.
  111. | Distributed under the terms of the Modified BSD License.
  112. |----------------------------------------------------------------------------*/
  113. /*
  114. * Mozilla scrollbar styling
  115. */
  116. /* use standard opaque scrollbars for most nodes */
  117. [data-jp-theme-scrollbars='true'] {
  118. scrollbar-color: rgb(var(--jp-scrollbar-thumb-color))
  119. var(--jp-scrollbar-background-color);
  120. }
  121. /* for code nodes, use a transparent style of scrollbar. These selectors
  122. * will match lower in the tree, and so will override the above */
  123. [data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar,
  124. [data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar {
  125. scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;
  126. }
  127. /* tiny scrollbar */
  128. .jp-scrollbar-tiny {
  129. scrollbar-color: rgba(var(--jp-scrollbar-thumb-color), 0.5) transparent;
  130. scrollbar-width: thin;
  131. }
  132. /*
  133. * Webkit scrollbar styling
  134. */
  135. /* use standard opaque scrollbars for most nodes */
  136. [data-jp-theme-scrollbars='true'] ::-webkit-scrollbar,
  137. [data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-corner {
  138. background: var(--jp-scrollbar-background-color);
  139. }
  140. [data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-thumb {
  141. background: rgb(var(--jp-scrollbar-thumb-color));
  142. border: var(--jp-scrollbar-thumb-margin) solid transparent;
  143. background-clip: content-box;
  144. border-radius: var(--jp-scrollbar-thumb-radius);
  145. }
  146. [data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:horizontal {
  147. border-left: var(--jp-scrollbar-endpad) solid
  148. var(--jp-scrollbar-background-color);
  149. border-right: var(--jp-scrollbar-endpad) solid
  150. var(--jp-scrollbar-background-color);
  151. }
  152. [data-jp-theme-scrollbars='true'] ::-webkit-scrollbar-track:vertical {
  153. border-top: var(--jp-scrollbar-endpad) solid
  154. var(--jp-scrollbar-background-color);
  155. border-bottom: var(--jp-scrollbar-endpad) solid
  156. var(--jp-scrollbar-background-color);
  157. }
  158. /* for code nodes, use a transparent style of scrollbar */
  159. [data-jp-theme-scrollbars='true'] .CodeMirror-hscrollbar::-webkit-scrollbar,
  160. [data-jp-theme-scrollbars='true'] .CodeMirror-vscrollbar::-webkit-scrollbar,
  161. [data-jp-theme-scrollbars='true']
  162. .CodeMirror-hscrollbar::-webkit-scrollbar-corner,
  163. [data-jp-theme-scrollbars='true']
  164. .CodeMirror-vscrollbar::-webkit-scrollbar-corner {
  165. background-color: transparent;
  166. }
  167. [data-jp-theme-scrollbars='true']
  168. .CodeMirror-hscrollbar::-webkit-scrollbar-thumb,
  169. [data-jp-theme-scrollbars='true']
  170. .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {
  171. background: rgba(var(--jp-scrollbar-thumb-color), 0.5);
  172. border: var(--jp-scrollbar-thumb-margin) solid transparent;
  173. background-clip: content-box;
  174. border-radius: var(--jp-scrollbar-thumb-radius);
  175. }
  176. [data-jp-theme-scrollbars='true']
  177. .CodeMirror-hscrollbar::-webkit-scrollbar-track:horizontal {
  178. border-left: var(--jp-scrollbar-endpad) solid transparent;
  179. border-right: var(--jp-scrollbar-endpad) solid transparent;
  180. }
  181. [data-jp-theme-scrollbars='true']
  182. .CodeMirror-vscrollbar::-webkit-scrollbar-track:vertical {
  183. border-top: var(--jp-scrollbar-endpad) solid transparent;
  184. border-bottom: var(--jp-scrollbar-endpad) solid transparent;
  185. }
  186. /* tiny scrollbar */
  187. .jp-scrollbar-tiny::-webkit-scrollbar,
  188. .jp-scrollbar-tiny::-webkit-scrollbar-corner {
  189. background-color: transparent;
  190. height: 4px;
  191. width: 4px;
  192. }
  193. .jp-scrollbar-tiny::-webkit-scrollbar-thumb {
  194. background: rgba(var(--jp-scrollbar-thumb-color), 0.5);
  195. }
  196. .jp-scrollbar-tiny::-webkit-scrollbar-track:horizontal {
  197. border-left: 0px solid transparent;
  198. border-right: 0px solid transparent;
  199. }
  200. .jp-scrollbar-tiny::-webkit-scrollbar-track:vertical {
  201. border-top: 0px solid transparent;
  202. border-bottom: 0px solid transparent;
  203. }
  204. /*
  205. * Phosphor
  206. */
  207. .lm-ScrollBar[data-orientation='horizontal'] {
  208. min-height: 16px;
  209. max-height: 16px;
  210. min-width: 45px;
  211. border-top: 1px solid #a0a0a0;
  212. }
  213. .lm-ScrollBar[data-orientation='vertical'] {
  214. min-width: 16px;
  215. max-width: 16px;
  216. min-height: 45px;
  217. border-left: 1px solid #a0a0a0;
  218. }
  219. .lm-ScrollBar-button {
  220. background-color: #f0f0f0;
  221. background-position: center center;
  222. min-height: 15px;
  223. max-height: 15px;
  224. min-width: 15px;
  225. max-width: 15px;
  226. }
  227. .lm-ScrollBar-button:hover {
  228. background-color: #dadada;
  229. }
  230. .lm-ScrollBar-button.lm-mod-active {
  231. background-color: #cdcdcd;
  232. }
  233. .lm-ScrollBar-track {
  234. background: #f0f0f0;
  235. }
  236. .lm-ScrollBar-thumb {
  237. background: #cdcdcd;
  238. }
  239. .lm-ScrollBar-thumb:hover {
  240. background: #bababa;
  241. }
  242. .lm-ScrollBar-thumb.lm-mod-active {
  243. background: #a0a0a0;
  244. }
  245. .lm-ScrollBar[data-orientation='horizontal'] .lm-ScrollBar-thumb {
  246. height: 100%;
  247. min-width: 15px;
  248. border-left: 1px solid #a0a0a0;
  249. border-right: 1px solid #a0a0a0;
  250. }
  251. .lm-ScrollBar[data-orientation='vertical'] .lm-ScrollBar-thumb {
  252. width: 100%;
  253. min-height: 15px;
  254. border-top: 1px solid #a0a0a0;
  255. border-bottom: 1px solid #a0a0a0;
  256. }
  257. .lm-ScrollBar[data-orientation='horizontal']
  258. .lm-ScrollBar-button[data-action='decrement'] {
  259. background-image: var(--jp-icon-caret-left);
  260. background-size: 17px;
  261. }
  262. .lm-ScrollBar[data-orientation='horizontal']
  263. .lm-ScrollBar-button[data-action='increment'] {
  264. background-image: var(--jp-icon-caret-right);
  265. background-size: 17px;
  266. }
  267. .lm-ScrollBar[data-orientation='vertical']
  268. .lm-ScrollBar-button[data-action='decrement'] {
  269. background-image: var(--jp-icon-caret-up);
  270. background-size: 17px;
  271. }
  272. .lm-ScrollBar[data-orientation='vertical']
  273. .lm-ScrollBar-button[data-action='increment'] {
  274. background-image: var(--jp-icon-caret-down);
  275. background-size: 17px;
  276. }
  277. /*-----------------------------------------------------------------------------
  278. | Copyright (c) Jupyter Development Team.
  279. | Copyright (c) 2014-2017, PhosphorJS Contributors
  280. |
  281. | Distributed under the terms of the BSD 3-Clause License.
  282. |
  283. | The full license is in the file LICENSE, distributed with this software.
  284. |----------------------------------------------------------------------------*/
  285. /* <DEPRECATED> */ .p-Widget, /* </DEPRECATED> */
  286. .lm-Widget {
  287. box-sizing: border-box;
  288. position: relative;
  289. overflow: hidden;
  290. cursor: default;
  291. }
  292. /* <DEPRECATED> */ .p-Widget.p-mod-hidden, /* </DEPRECATED> */
  293. .lm-Widget.lm-mod-hidden {
  294. display: none !important;
  295. }
  296. /*-----------------------------------------------------------------------------
  297. | Copyright (c) Jupyter Development Team.
  298. | Copyright (c) 2014-2017, PhosphorJS Contributors
  299. |
  300. | Distributed under the terms of the BSD 3-Clause License.
  301. |
  302. | The full license is in the file LICENSE, distributed with this software.
  303. |----------------------------------------------------------------------------*/
  304. /* <DEPRECATED> */ .p-CommandPalette, /* </DEPRECATED> */
  305. .lm-CommandPalette {
  306. display: flex;
  307. flex-direction: column;
  308. -webkit-user-select: none;
  309. -moz-user-select: none;
  310. -ms-user-select: none;
  311. user-select: none;
  312. }
  313. /* <DEPRECATED> */ .p-CommandPalette-search, /* </DEPRECATED> */
  314. .lm-CommandPalette-search {
  315. flex: 0 0 auto;
  316. }
  317. /* <DEPRECATED> */ .p-CommandPalette-content, /* </DEPRECATED> */
  318. .lm-CommandPalette-content {
  319. flex: 1 1 auto;
  320. margin: 0;
  321. padding: 0;
  322. min-height: 0;
  323. overflow: auto;
  324. list-style-type: none;
  325. }
  326. /* <DEPRECATED> */ .p-CommandPalette-header, /* </DEPRECATED> */
  327. .lm-CommandPalette-header {
  328. overflow: hidden;
  329. white-space: nowrap;
  330. text-overflow: ellipsis;
  331. }
  332. /* <DEPRECATED> */ .p-CommandPalette-item, /* </DEPRECATED> */
  333. .lm-CommandPalette-item {
  334. display: flex;
  335. flex-direction: row;
  336. }
  337. /* <DEPRECATED> */ .p-CommandPalette-itemIcon, /* </DEPRECATED> */
  338. .lm-CommandPalette-itemIcon {
  339. flex: 0 0 auto;
  340. }
  341. /* <DEPRECATED> */ .p-CommandPalette-itemContent, /* </DEPRECATED> */
  342. .lm-CommandPalette-itemContent {
  343. flex: 1 1 auto;
  344. overflow: hidden;
  345. }
  346. /* <DEPRECATED> */ .p-CommandPalette-itemShortcut, /* </DEPRECATED> */
  347. .lm-CommandPalette-itemShortcut {
  348. flex: 0 0 auto;
  349. }
  350. /* <DEPRECATED> */ .p-CommandPalette-itemLabel, /* </DEPRECATED> */
  351. .lm-CommandPalette-itemLabel {
  352. overflow: hidden;
  353. white-space: nowrap;
  354. text-overflow: ellipsis;
  355. }
  356. .lm-close-icon {
  357. border:1px solid transparent;
  358. background-color: transparent;
  359. position: absolute;
  360. z-index:1;
  361. right:3%;
  362. top: 0;
  363. bottom: 0;
  364. margin: auto;
  365. padding: 7px 0;
  366. display: none;
  367. vertical-align: middle;
  368. outline: 0;
  369. cursor: pointer;
  370. }
  371. .lm-close-icon:after {
  372. content: "X";
  373. display: block;
  374. width: 15px;
  375. height: 15px;
  376. text-align: center;
  377. color:#000;
  378. font-weight: normal;
  379. font-size: 12px;
  380. cursor: pointer;
  381. }
  382. /*-----------------------------------------------------------------------------
  383. | Copyright (c) Jupyter Development Team.
  384. | Copyright (c) 2014-2017, PhosphorJS Contributors
  385. |
  386. | Distributed under the terms of the BSD 3-Clause License.
  387. |
  388. | The full license is in the file LICENSE, distributed with this software.
  389. |----------------------------------------------------------------------------*/
  390. /* <DEPRECATED> */ .p-DockPanel, /* </DEPRECATED> */
  391. .lm-DockPanel {
  392. z-index: 0;
  393. }
  394. /* <DEPRECATED> */ .p-DockPanel-widget, /* </DEPRECATED> */
  395. .lm-DockPanel-widget {
  396. z-index: 0;
  397. }
  398. /* <DEPRECATED> */ .p-DockPanel-tabBar, /* </DEPRECATED> */
  399. .lm-DockPanel-tabBar {
  400. z-index: 1;
  401. }
  402. /* <DEPRECATED> */ .p-DockPanel-handle, /* </DEPRECATED> */
  403. .lm-DockPanel-handle {
  404. z-index: 2;
  405. }
  406. /* <DEPRECATED> */ .p-DockPanel-handle.p-mod-hidden, /* </DEPRECATED> */
  407. .lm-DockPanel-handle.lm-mod-hidden {
  408. display: none !important;
  409. }
  410. /* <DEPRECATED> */ .p-DockPanel-handle:after, /* </DEPRECATED> */
  411. .lm-DockPanel-handle:after {
  412. position: absolute;
  413. top: 0;
  414. left: 0;
  415. width: 100%;
  416. height: 100%;
  417. content: '';
  418. }
  419. /* <DEPRECATED> */
  420. .p-DockPanel-handle[data-orientation='horizontal'],
  421. /* </DEPRECATED> */
  422. .lm-DockPanel-handle[data-orientation='horizontal'] {
  423. cursor: ew-resize;
  424. }
  425. /* <DEPRECATED> */
  426. .p-DockPanel-handle[data-orientation='vertical'],
  427. /* </DEPRECATED> */
  428. .lm-DockPanel-handle[data-orientation='vertical'] {
  429. cursor: ns-resize;
  430. }
  431. /* <DEPRECATED> */
  432. .p-DockPanel-handle[data-orientation='horizontal']:after,
  433. /* </DEPRECATED> */
  434. .lm-DockPanel-handle[data-orientation='horizontal']:after {
  435. left: 50%;
  436. min-width: 8px;
  437. transform: translateX(-50%);
  438. }
  439. /* <DEPRECATED> */
  440. .p-DockPanel-handle[data-orientation='vertical']:after,
  441. /* </DEPRECATED> */
  442. .lm-DockPanel-handle[data-orientation='vertical']:after {
  443. top: 50%;
  444. min-height: 8px;
  445. transform: translateY(-50%);
  446. }
  447. /* <DEPRECATED> */ .p-DockPanel-overlay, /* </DEPRECATED> */
  448. .lm-DockPanel-overlay {
  449. z-index: 3;
  450. box-sizing: border-box;
  451. pointer-events: none;
  452. }
  453. /* <DEPRECATED> */ .p-DockPanel-overlay.p-mod-hidden, /* </DEPRECATED> */
  454. .lm-DockPanel-overlay.lm-mod-hidden {
  455. display: none !important;
  456. }
  457. /*-----------------------------------------------------------------------------
  458. | Copyright (c) Jupyter Development Team.
  459. | Copyright (c) 2014-2017, PhosphorJS Contributors
  460. |
  461. | Distributed under the terms of the BSD 3-Clause License.
  462. |
  463. | The full license is in the file LICENSE, distributed with this software.
  464. |----------------------------------------------------------------------------*/
  465. /* <DEPRECATED> */ .p-Menu, /* </DEPRECATED> */
  466. .lm-Menu {
  467. z-index: 10000;
  468. position: absolute;
  469. white-space: nowrap;
  470. overflow-x: hidden;
  471. overflow-y: auto;
  472. outline: none;
  473. -webkit-user-select: none;
  474. -moz-user-select: none;
  475. -ms-user-select: none;
  476. user-select: none;
  477. }
  478. /* <DEPRECATED> */ .p-Menu-content, /* </DEPRECATED> */
  479. .lm-Menu-content {
  480. margin: 0;
  481. padding: 0;
  482. display: table;
  483. list-style-type: none;
  484. }
  485. /* <DEPRECATED> */ .p-Menu-item, /* </DEPRECATED> */
  486. .lm-Menu-item {
  487. display: table-row;
  488. }
  489. /* <DEPRECATED> */
  490. .p-Menu-item.p-mod-hidden,
  491. .p-Menu-item.p-mod-collapsed,
  492. /* </DEPRECATED> */
  493. .lm-Menu-item.lm-mod-hidden,
  494. .lm-Menu-item.lm-mod-collapsed {
  495. display: none !important;
  496. }
  497. /* <DEPRECATED> */
  498. .p-Menu-itemIcon,
  499. .p-Menu-itemSubmenuIcon,
  500. /* </DEPRECATED> */
  501. .lm-Menu-itemIcon,
  502. .lm-Menu-itemSubmenuIcon {
  503. display: table-cell;
  504. text-align: center;
  505. }
  506. /* <DEPRECATED> */ .p-Menu-itemLabel, /* </DEPRECATED> */
  507. .lm-Menu-itemLabel {
  508. display: table-cell;
  509. text-align: left;
  510. }
  511. /* <DEPRECATED> */ .p-Menu-itemShortcut, /* </DEPRECATED> */
  512. .lm-Menu-itemShortcut {
  513. display: table-cell;
  514. text-align: right;
  515. }
  516. /*-----------------------------------------------------------------------------
  517. | Copyright (c) Jupyter Development Team.
  518. | Copyright (c) 2014-2017, PhosphorJS Contributors
  519. |
  520. | Distributed under the terms of the BSD 3-Clause License.
  521. |
  522. | The full license is in the file LICENSE, distributed with this software.
  523. |----------------------------------------------------------------------------*/
  524. /* <DEPRECATED> */ .p-MenuBar, /* </DEPRECATED> */
  525. .lm-MenuBar {
  526. outline: none;
  527. -webkit-user-select: none;
  528. -moz-user-select: none;
  529. -ms-user-select: none;
  530. user-select: none;
  531. }
  532. /* <DEPRECATED> */ .p-MenuBar-content, /* </DEPRECATED> */
  533. .lm-MenuBar-content {
  534. margin: 0;
  535. padding: 0;
  536. display: flex;
  537. flex-direction: row;
  538. list-style-type: none;
  539. }
  540. /* <DEPRECATED> */ .p--MenuBar-item, /* </DEPRECATED> */
  541. .lm-MenuBar-item {
  542. box-sizing: border-box;
  543. }
  544. /* <DEPRECATED> */
  545. .p-MenuBar-itemIcon,
  546. .p-MenuBar-itemLabel,
  547. /* </DEPRECATED> */
  548. .lm-MenuBar-itemIcon,
  549. .lm-MenuBar-itemLabel {
  550. display: inline-block;
  551. }
  552. /*-----------------------------------------------------------------------------
  553. | Copyright (c) Jupyter Development Team.
  554. | Copyright (c) 2014-2017, PhosphorJS Contributors
  555. |
  556. | Distributed under the terms of the BSD 3-Clause License.
  557. |
  558. | The full license is in the file LICENSE, distributed with this software.
  559. |----------------------------------------------------------------------------*/
  560. /* <DEPRECATED> */ .p-ScrollBar, /* </DEPRECATED> */
  561. .lm-ScrollBar {
  562. display: flex;
  563. -webkit-user-select: none;
  564. -moz-user-select: none;
  565. -ms-user-select: none;
  566. user-select: none;
  567. }
  568. /* <DEPRECATED> */
  569. .p-ScrollBar[data-orientation='horizontal'],
  570. /* </DEPRECATED> */
  571. .lm-ScrollBar[data-orientation='horizontal'] {
  572. flex-direction: row;
  573. }
  574. /* <DEPRECATED> */
  575. .p-ScrollBar[data-orientation='vertical'],
  576. /* </DEPRECATED> */
  577. .lm-ScrollBar[data-orientation='vertical'] {
  578. flex-direction: column;
  579. }
  580. /* <DEPRECATED> */ .p-ScrollBar-button, /* </DEPRECATED> */
  581. .lm-ScrollBar-button {
  582. box-sizing: border-box;
  583. flex: 0 0 auto;
  584. }
  585. /* <DEPRECATED> */ .p-ScrollBar-track, /* </DEPRECATED> */
  586. .lm-ScrollBar-track {
  587. box-sizing: border-box;
  588. position: relative;
  589. overflow: hidden;
  590. flex: 1 1 auto;
  591. }
  592. /* <DEPRECATED> */ .p-ScrollBar-thumb, /* </DEPRECATED> */
  593. .lm-ScrollBar-thumb {
  594. box-sizing: border-box;
  595. position: absolute;
  596. }
  597. /*-----------------------------------------------------------------------------
  598. | Copyright (c) Jupyter Development Team.
  599. | Copyright (c) 2014-2017, PhosphorJS Contributors
  600. |
  601. | Distributed under the terms of the BSD 3-Clause License.
  602. |
  603. | The full license is in the file LICENSE, distributed with this software.
  604. |----------------------------------------------------------------------------*/
  605. /* <DEPRECATED> */ .p-SplitPanel-child, /* </DEPRECATED> */
  606. .lm-SplitPanel-child {
  607. z-index: 0;
  608. }
  609. /* <DEPRECATED> */ .p-SplitPanel-handle, /* </DEPRECATED> */
  610. .lm-SplitPanel-handle {
  611. z-index: 1;
  612. }
  613. /* <DEPRECATED> */ .p-SplitPanel-handle.p-mod-hidden, /* </DEPRECATED> */
  614. .lm-SplitPanel-handle.lm-mod-hidden {
  615. display: none !important;
  616. }
  617. /* <DEPRECATED> */ .p-SplitPanel-handle:after, /* </DEPRECATED> */
  618. .lm-SplitPanel-handle:after {
  619. position: absolute;
  620. top: 0;
  621. left: 0;
  622. width: 100%;
  623. height: 100%;
  624. content: '';
  625. }
  626. /* <DEPRECATED> */
  627. .p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle,
  628. /* </DEPRECATED> */
  629. .lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle {
  630. cursor: ew-resize;
  631. }
  632. /* <DEPRECATED> */
  633. .p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle,
  634. /* </DEPRECATED> */
  635. .lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle {
  636. cursor: ns-resize;
  637. }
  638. /* <DEPRECATED> */
  639. .p-SplitPanel[data-orientation='horizontal'] > .p-SplitPanel-handle:after,
  640. /* </DEPRECATED> */
  641. .lm-SplitPanel[data-orientation='horizontal'] > .lm-SplitPanel-handle:after {
  642. left: 50%;
  643. min-width: 8px;
  644. transform: translateX(-50%);
  645. }
  646. /* <DEPRECATED> */
  647. .p-SplitPanel[data-orientation='vertical'] > .p-SplitPanel-handle:after,
  648. /* </DEPRECATED> */
  649. .lm-SplitPanel[data-orientation='vertical'] > .lm-SplitPanel-handle:after {
  650. top: 50%;
  651. min-height: 8px;
  652. transform: translateY(-50%);
  653. }
  654. /*-----------------------------------------------------------------------------
  655. | Copyright (c) Jupyter Development Team.
  656. | Copyright (c) 2014-2017, PhosphorJS Contributors
  657. |
  658. | Distributed under the terms of the BSD 3-Clause License.
  659. |
  660. | The full license is in the file LICENSE, distributed with this software.
  661. |----------------------------------------------------------------------------*/
  662. /* <DEPRECATED> */ .p-TabBar, /* </DEPRECATED> */
  663. .lm-TabBar {
  664. display: flex;
  665. -webkit-user-select: none;
  666. -moz-user-select: none;
  667. -ms-user-select: none;
  668. user-select: none;
  669. }
  670. /* <DEPRECATED> */ .p-TabBar[data-orientation='horizontal'], /* </DEPRECATED> */
  671. .lm-TabBar[data-orientation='horizontal'] {
  672. flex-direction: row;
  673. }
  674. /* <DEPRECATED> */ .p-TabBar[data-orientation='vertical'], /* </DEPRECATED> */
  675. .lm-TabBar[data-orientation='vertical'] {
  676. flex-direction: column;
  677. }
  678. /* <DEPRECATED> */ .p-TabBar-content, /* </DEPRECATED> */
  679. .lm-TabBar-content {
  680. margin: 0;
  681. padding: 0;
  682. display: flex;
  683. flex: 1 1 auto;
  684. list-style-type: none;
  685. }
  686. /* <DEPRECATED> */
  687. .p-TabBar[data-orientation='horizontal'] > .p-TabBar-content,
  688. /* </DEPRECATED> */
  689. .lm-TabBar[data-orientation='horizontal'] > .lm-TabBar-content {
  690. flex-direction: row;
  691. }
  692. /* <DEPRECATED> */
  693. .p-TabBar[data-orientation='vertical'] > .p-TabBar-content,
  694. /* </DEPRECATED> */
  695. .lm-TabBar[data-orientation='vertical'] > .lm-TabBar-content {
  696. flex-direction: column;
  697. }
  698. /* <DEPRECATED> */ .p-TabBar-tab, /* </DEPRECATED> */
  699. .lm-TabBar-tab {
  700. display: flex;
  701. flex-direction: row;
  702. box-sizing: border-box;
  703. overflow: hidden;
  704. }
  705. /* <DEPRECATED> */
  706. .p-TabBar-tabIcon,
  707. .p-TabBar-tabCloseIcon,
  708. /* </DEPRECATED> */
  709. .lm-TabBar-tabIcon,
  710. .lm-TabBar-tabCloseIcon {
  711. flex: 0 0 auto;
  712. }
  713. /* <DEPRECATED> */ .p-TabBar-tabLabel, /* </DEPRECATED> */
  714. .lm-TabBar-tabLabel {
  715. flex: 1 1 auto;
  716. overflow: hidden;
  717. white-space: nowrap;
  718. }
  719. .lm-TabBar-tabInput {
  720. user-select: all;
  721. width: 100%;
  722. box-sizing : border-box;
  723. }
  724. /* <DEPRECATED> */ .p-TabBar-tab.p-mod-hidden, /* </DEPRECATED> */
  725. .lm-TabBar-tab.lm-mod-hidden {
  726. display: none !important;
  727. }
  728. /* <DEPRECATED> */ .p-TabBar.p-mod-dragging .p-TabBar-tab, /* </DEPRECATED> */
  729. .lm-TabBar.lm-mod-dragging .lm-TabBar-tab {
  730. position: relative;
  731. }
  732. /* <DEPRECATED> */
  733. .p-TabBar.p-mod-dragging[data-orientation='horizontal'] .p-TabBar-tab,
  734. /* </DEPRECATED> */
  735. .lm-TabBar.lm-mod-dragging[data-orientation='horizontal'] .lm-TabBar-tab {
  736. left: 0;
  737. transition: left 150ms ease;
  738. }
  739. /* <DEPRECATED> */
  740. .p-TabBar.p-mod-dragging[data-orientation='vertical'] .p-TabBar-tab,
  741. /* </DEPRECATED> */
  742. .lm-TabBar.lm-mod-dragging[data-orientation='vertical'] .lm-TabBar-tab {
  743. top: 0;
  744. transition: top 150ms ease;
  745. }
  746. /* <DEPRECATED> */
  747. .p-TabBar.p-mod-dragging .p-TabBar-tab.p-mod-dragging,
  748. /* </DEPRECATED> */
  749. .lm-TabBar.lm-mod-dragging .lm-TabBar-tab.lm-mod-dragging {
  750. transition: none;
  751. }
  752. /*-----------------------------------------------------------------------------
  753. | Copyright (c) Jupyter Development Team.
  754. | Copyright (c) 2014-2017, PhosphorJS Contributors
  755. |
  756. | Distributed under the terms of the BSD 3-Clause License.
  757. |
  758. | The full license is in the file LICENSE, distributed with this software.
  759. |----------------------------------------------------------------------------*/
  760. /* <DEPRECATED> */ .p-TabPanel-tabBar, /* </DEPRECATED> */
  761. .lm-TabPanel-tabBar {
  762. z-index: 1;
  763. }
  764. /* <DEPRECATED> */ .p-TabPanel-stackedPanel, /* </DEPRECATED> */
  765. .lm-TabPanel-stackedPanel {
  766. z-index: 0;
  767. }
  768. /*-----------------------------------------------------------------------------
  769. | Copyright (c) Jupyter Development Team.
  770. | Copyright (c) 2014-2017, PhosphorJS Contributors
  771. |
  772. | Distributed under the terms of the BSD 3-Clause License.
  773. |
  774. | The full license is in the file LICENSE, distributed with this software.
  775. |----------------------------------------------------------------------------*/
  776. @charset "UTF-8";
  777. html{
  778. -webkit-box-sizing:border-box;
  779. box-sizing:border-box; }
  780. *,
  781. *::before,
  782. *::after{
  783. -webkit-box-sizing:inherit;
  784. box-sizing:inherit; }
  785. body{
  786. font-size:14px;
  787. font-weight:400;
  788. letter-spacing:0;
  789. line-height:1.28581;
  790. text-transform:none;
  791. color:#182026;
  792. font-family:-apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", "Helvetica Neue", "Icons16", sans-serif; }
  793. p{
  794. margin-bottom:10px;
  795. margin-top:0; }
  796. small{
  797. font-size:12px; }
  798. strong{
  799. font-weight:600; }
  800. ::-moz-selection{
  801. background:rgba(125, 188, 255, 0.6); }
  802. ::selection{
  803. background:rgba(125, 188, 255, 0.6); }
  804. .bp3-heading{
  805. color:#182026;
  806. font-weight:600;
  807. margin:0 0 10px;
  808. padding:0; }
  809. .bp3-dark .bp3-heading{
  810. color:#f5f8fa; }
  811. h1.bp3-heading, .bp3-running-text h1{
  812. font-size:36px;
  813. line-height:40px; }
  814. h2.bp3-heading, .bp3-running-text h2{
  815. font-size:28px;
  816. line-height:32px; }
  817. h3.bp3-heading, .bp3-running-text h3{
  818. font-size:22px;
  819. line-height:25px; }
  820. h4.bp3-heading, .bp3-running-text h4{
  821. font-size:18px;
  822. line-height:21px; }
  823. h5.bp3-heading, .bp3-running-text h5{
  824. font-size:16px;
  825. line-height:19px; }
  826. h6.bp3-heading, .bp3-running-text h6{
  827. font-size:14px;
  828. line-height:16px; }
  829. .bp3-ui-text{
  830. font-size:14px;
  831. font-weight:400;
  832. letter-spacing:0;
  833. line-height:1.28581;
  834. text-transform:none; }
  835. .bp3-monospace-text{
  836. font-family:monospace;
  837. text-transform:none; }
  838. .bp3-text-muted{
  839. color:#5c7080; }
  840. .bp3-dark .bp3-text-muted{
  841. color:#a7b6c2; }
  842. .bp3-text-disabled{
  843. color:rgba(92, 112, 128, 0.6); }
  844. .bp3-dark .bp3-text-disabled{
  845. color:rgba(167, 182, 194, 0.6); }
  846. .bp3-text-overflow-ellipsis{
  847. overflow:hidden;
  848. text-overflow:ellipsis;
  849. white-space:nowrap;
  850. word-wrap:normal; }
  851. .bp3-running-text{
  852. font-size:14px;
  853. line-height:1.5; }
  854. .bp3-running-text h1{
  855. color:#182026;
  856. font-weight:600;
  857. margin-bottom:20px;
  858. margin-top:40px; }
  859. .bp3-dark .bp3-running-text h1{
  860. color:#f5f8fa; }
  861. .bp3-running-text h2{
  862. color:#182026;
  863. font-weight:600;
  864. margin-bottom:20px;
  865. margin-top:40px; }
  866. .bp3-dark .bp3-running-text h2{
  867. color:#f5f8fa; }
  868. .bp3-running-text h3{
  869. color:#182026;
  870. font-weight:600;
  871. margin-bottom:20px;
  872. margin-top:40px; }
  873. .bp3-dark .bp3-running-text h3{
  874. color:#f5f8fa; }
  875. .bp3-running-text h4{
  876. color:#182026;
  877. font-weight:600;
  878. margin-bottom:20px;
  879. margin-top:40px; }
  880. .bp3-dark .bp3-running-text h4{
  881. color:#f5f8fa; }
  882. .bp3-running-text h5{
  883. color:#182026;
  884. font-weight:600;
  885. margin-bottom:20px;
  886. margin-top:40px; }
  887. .bp3-dark .bp3-running-text h5{
  888. color:#f5f8fa; }
  889. .bp3-running-text h6{
  890. color:#182026;
  891. font-weight:600;
  892. margin-bottom:20px;
  893. margin-top:40px; }
  894. .bp3-dark .bp3-running-text h6{
  895. color:#f5f8fa; }
  896. .bp3-running-text hr{
  897. border:none;
  898. border-bottom:1px solid rgba(16, 22, 26, 0.15);
  899. margin:20px 0; }
  900. .bp3-dark .bp3-running-text hr{
  901. border-color:rgba(255, 255, 255, 0.15); }
  902. .bp3-running-text p{
  903. margin:0 0 10px;
  904. padding:0; }
  905. .bp3-text-large{
  906. font-size:16px; }
  907. .bp3-text-small{
  908. font-size:12px; }
  909. a{
  910. color:#106ba3;
  911. text-decoration:none; }
  912. a:hover{
  913. color:#106ba3;
  914. cursor:pointer;
  915. text-decoration:underline; }
  916. a .bp3-icon, a .bp3-icon-standard, a .bp3-icon-large{
  917. color:inherit; }
  918. a code,
  919. .bp3-dark a code{
  920. color:inherit; }
  921. .bp3-dark a,
  922. .bp3-dark a:hover{
  923. color:#48aff0; }
  924. .bp3-dark a .bp3-icon, .bp3-dark a .bp3-icon-standard, .bp3-dark a .bp3-icon-large,
  925. .bp3-dark a:hover .bp3-icon,
  926. .bp3-dark a:hover .bp3-icon-standard,
  927. .bp3-dark a:hover .bp3-icon-large{
  928. color:inherit; }
  929. .bp3-running-text code, .bp3-code{
  930. font-family:monospace;
  931. text-transform:none;
  932. background:rgba(255, 255, 255, 0.7);
  933. border-radius:3px;
  934. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);
  935. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2);
  936. color:#5c7080;
  937. font-size:smaller;
  938. padding:2px 5px; }
  939. .bp3-dark .bp3-running-text code, .bp3-running-text .bp3-dark code, .bp3-dark .bp3-code{
  940. background:rgba(16, 22, 26, 0.3);
  941. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  942. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  943. color:#a7b6c2; }
  944. .bp3-running-text a > code, a > .bp3-code{
  945. color:#137cbd; }
  946. .bp3-dark .bp3-running-text a > code, .bp3-running-text .bp3-dark a > code, .bp3-dark a > .bp3-code{
  947. color:inherit; }
  948. .bp3-running-text pre, .bp3-code-block{
  949. font-family:monospace;
  950. text-transform:none;
  951. background:rgba(255, 255, 255, 0.7);
  952. border-radius:3px;
  953. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);
  954. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);
  955. color:#182026;
  956. display:block;
  957. font-size:13px;
  958. line-height:1.4;
  959. margin:10px 0;
  960. padding:13px 15px 12px;
  961. word-break:break-all;
  962. word-wrap:break-word; }
  963. .bp3-dark .bp3-running-text pre, .bp3-running-text .bp3-dark pre, .bp3-dark .bp3-code-block{
  964. background:rgba(16, 22, 26, 0.3);
  965. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  966. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  967. color:#f5f8fa; }
  968. .bp3-running-text pre > code, .bp3-code-block > code{
  969. background:none;
  970. -webkit-box-shadow:none;
  971. box-shadow:none;
  972. color:inherit;
  973. font-size:inherit;
  974. padding:0; }
  975. .bp3-running-text kbd, .bp3-key{
  976. -webkit-box-align:center;
  977. -ms-flex-align:center;
  978. align-items:center;
  979. background:#ffffff;
  980. border-radius:3px;
  981. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  982. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  983. color:#5c7080;
  984. display:-webkit-inline-box;
  985. display:-ms-inline-flexbox;
  986. display:inline-flex;
  987. font-family:inherit;
  988. font-size:12px;
  989. height:24px;
  990. -webkit-box-pack:center;
  991. -ms-flex-pack:center;
  992. justify-content:center;
  993. line-height:24px;
  994. min-width:24px;
  995. padding:3px 6px;
  996. vertical-align:middle; }
  997. .bp3-running-text kbd .bp3-icon, .bp3-key .bp3-icon, .bp3-running-text kbd .bp3-icon-standard, .bp3-key .bp3-icon-standard, .bp3-running-text kbd .bp3-icon-large, .bp3-key .bp3-icon-large{
  998. margin-right:5px; }
  999. .bp3-dark .bp3-running-text kbd, .bp3-running-text .bp3-dark kbd, .bp3-dark .bp3-key{
  1000. background:#394b59;
  1001. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);
  1002. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);
  1003. color:#a7b6c2; }
  1004. .bp3-running-text blockquote, .bp3-blockquote{
  1005. border-left:solid 4px rgba(167, 182, 194, 0.5);
  1006. margin:0 0 10px;
  1007. padding:0 20px; }
  1008. .bp3-dark .bp3-running-text blockquote, .bp3-running-text .bp3-dark blockquote, .bp3-dark .bp3-blockquote{
  1009. border-color:rgba(115, 134, 148, 0.5); }
  1010. .bp3-running-text ul,
  1011. .bp3-running-text ol, .bp3-list{
  1012. margin:10px 0;
  1013. padding-left:30px; }
  1014. .bp3-running-text ul li:not(:last-child), .bp3-running-text ol li:not(:last-child), .bp3-list li:not(:last-child){
  1015. margin-bottom:5px; }
  1016. .bp3-running-text ul ol, .bp3-running-text ol ol, .bp3-list ol,
  1017. .bp3-running-text ul ul,
  1018. .bp3-running-text ol ul,
  1019. .bp3-list ul{
  1020. margin-top:5px; }
  1021. .bp3-list-unstyled{
  1022. list-style:none;
  1023. margin:0;
  1024. padding:0; }
  1025. .bp3-list-unstyled li{
  1026. padding:0; }
  1027. .bp3-rtl{
  1028. text-align:right; }
  1029. .bp3-dark{
  1030. color:#f5f8fa; }
  1031. :focus{
  1032. outline:rgba(19, 124, 189, 0.6) auto 2px;
  1033. outline-offset:2px;
  1034. -moz-outline-radius:6px; }
  1035. .bp3-focus-disabled :focus{
  1036. outline:none !important; }
  1037. .bp3-focus-disabled :focus ~ .bp3-control-indicator{
  1038. outline:none !important; }
  1039. .bp3-alert{
  1040. max-width:400px;
  1041. padding:20px; }
  1042. .bp3-alert-body{
  1043. display:-webkit-box;
  1044. display:-ms-flexbox;
  1045. display:flex; }
  1046. .bp3-alert-body .bp3-icon{
  1047. font-size:40px;
  1048. margin-right:20px;
  1049. margin-top:0; }
  1050. .bp3-alert-contents{
  1051. word-break:break-word; }
  1052. .bp3-alert-footer{
  1053. display:-webkit-box;
  1054. display:-ms-flexbox;
  1055. display:flex;
  1056. -webkit-box-orient:horizontal;
  1057. -webkit-box-direction:reverse;
  1058. -ms-flex-direction:row-reverse;
  1059. flex-direction:row-reverse;
  1060. margin-top:10px; }
  1061. .bp3-alert-footer .bp3-button{
  1062. margin-left:10px; }
  1063. .bp3-breadcrumbs{
  1064. -webkit-box-align:center;
  1065. -ms-flex-align:center;
  1066. align-items:center;
  1067. cursor:default;
  1068. display:-webkit-box;
  1069. display:-ms-flexbox;
  1070. display:flex;
  1071. -ms-flex-wrap:wrap;
  1072. flex-wrap:wrap;
  1073. height:30px;
  1074. list-style:none;
  1075. margin:0;
  1076. padding:0; }
  1077. .bp3-breadcrumbs > li{
  1078. -webkit-box-align:center;
  1079. -ms-flex-align:center;
  1080. align-items:center;
  1081. display:-webkit-box;
  1082. display:-ms-flexbox;
  1083. display:flex; }
  1084. .bp3-breadcrumbs > li::after{
  1085. background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z' fill='%235C7080'/%3e%3c/svg%3e");
  1086. content:"";
  1087. display:block;
  1088. height:16px;
  1089. margin:0 5px;
  1090. width:16px; }
  1091. .bp3-breadcrumbs > li:last-of-type::after{
  1092. display:none; }
  1093. .bp3-breadcrumb,
  1094. .bp3-breadcrumb-current,
  1095. .bp3-breadcrumbs-collapsed{
  1096. -webkit-box-align:center;
  1097. -ms-flex-align:center;
  1098. align-items:center;
  1099. display:-webkit-inline-box;
  1100. display:-ms-inline-flexbox;
  1101. display:inline-flex;
  1102. font-size:16px; }
  1103. .bp3-breadcrumb,
  1104. .bp3-breadcrumbs-collapsed{
  1105. color:#5c7080; }
  1106. .bp3-breadcrumb:hover{
  1107. text-decoration:none; }
  1108. .bp3-breadcrumb.bp3-disabled{
  1109. color:rgba(92, 112, 128, 0.6);
  1110. cursor:not-allowed; }
  1111. .bp3-breadcrumb .bp3-icon{
  1112. margin-right:5px; }
  1113. .bp3-breadcrumb-current{
  1114. color:inherit;
  1115. font-weight:600; }
  1116. .bp3-breadcrumb-current .bp3-input{
  1117. font-size:inherit;
  1118. font-weight:inherit;
  1119. vertical-align:baseline; }
  1120. .bp3-breadcrumbs-collapsed{
  1121. background:#ced9e0;
  1122. border:none;
  1123. border-radius:3px;
  1124. cursor:pointer;
  1125. margin-right:2px;
  1126. padding:1px 5px;
  1127. vertical-align:text-bottom; }
  1128. .bp3-breadcrumbs-collapsed::before{
  1129. background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cg fill='%235C7080'%3e%3ccircle cx='2' cy='8.03' r='2'/%3e%3ccircle cx='14' cy='8.03' r='2'/%3e%3ccircle cx='8' cy='8.03' r='2'/%3e%3c/g%3e%3c/svg%3e") center no-repeat;
  1130. content:"";
  1131. display:block;
  1132. height:16px;
  1133. width:16px; }
  1134. .bp3-breadcrumbs-collapsed:hover{
  1135. background:#bfccd6;
  1136. color:#182026;
  1137. text-decoration:none; }
  1138. .bp3-dark .bp3-breadcrumb,
  1139. .bp3-dark .bp3-breadcrumbs-collapsed{
  1140. color:#a7b6c2; }
  1141. .bp3-dark .bp3-breadcrumbs > li::after{
  1142. color:#a7b6c2; }
  1143. .bp3-dark .bp3-breadcrumb.bp3-disabled{
  1144. color:rgba(167, 182, 194, 0.6); }
  1145. .bp3-dark .bp3-breadcrumb-current{
  1146. color:#f5f8fa; }
  1147. .bp3-dark .bp3-breadcrumbs-collapsed{
  1148. background:rgba(16, 22, 26, 0.4); }
  1149. .bp3-dark .bp3-breadcrumbs-collapsed:hover{
  1150. background:rgba(16, 22, 26, 0.6);
  1151. color:#f5f8fa; }
  1152. .bp3-button{
  1153. display:-webkit-inline-box;
  1154. display:-ms-inline-flexbox;
  1155. display:inline-flex;
  1156. -webkit-box-orient:horizontal;
  1157. -webkit-box-direction:normal;
  1158. -ms-flex-direction:row;
  1159. flex-direction:row;
  1160. -webkit-box-align:center;
  1161. -ms-flex-align:center;
  1162. align-items:center;
  1163. border:none;
  1164. border-radius:3px;
  1165. cursor:pointer;
  1166. font-size:14px;
  1167. -webkit-box-pack:center;
  1168. -ms-flex-pack:center;
  1169. justify-content:center;
  1170. padding:5px 10px;
  1171. text-align:left;
  1172. vertical-align:middle;
  1173. min-height:30px;
  1174. min-width:30px; }
  1175. .bp3-button > *{
  1176. -webkit-box-flex:0;
  1177. -ms-flex-positive:0;
  1178. flex-grow:0;
  1179. -ms-flex-negative:0;
  1180. flex-shrink:0; }
  1181. .bp3-button > .bp3-fill{
  1182. -webkit-box-flex:1;
  1183. -ms-flex-positive:1;
  1184. flex-grow:1;
  1185. -ms-flex-negative:1;
  1186. flex-shrink:1; }
  1187. .bp3-button::before,
  1188. .bp3-button > *{
  1189. margin-right:7px; }
  1190. .bp3-button:empty::before,
  1191. .bp3-button > :last-child{
  1192. margin-right:0; }
  1193. .bp3-button:empty{
  1194. padding:0 !important; }
  1195. .bp3-button:disabled, .bp3-button.bp3-disabled{
  1196. cursor:not-allowed; }
  1197. .bp3-button.bp3-fill{
  1198. display:-webkit-box;
  1199. display:-ms-flexbox;
  1200. display:flex;
  1201. width:100%; }
  1202. .bp3-button.bp3-align-right,
  1203. .bp3-align-right .bp3-button{
  1204. text-align:right; }
  1205. .bp3-button.bp3-align-left,
  1206. .bp3-align-left .bp3-button{
  1207. text-align:left; }
  1208. .bp3-button:not([class*="bp3-intent-"]){
  1209. background-color:#f5f8fa;
  1210. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  1211. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  1212. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  1213. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  1214. color:#182026; }
  1215. .bp3-button:not([class*="bp3-intent-"]):hover{
  1216. background-clip:padding-box;
  1217. background-color:#ebf1f5;
  1218. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  1219. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }
  1220. .bp3-button:not([class*="bp3-intent-"]):active, .bp3-button:not([class*="bp3-intent-"]).bp3-active{
  1221. background-color:#d8e1e8;
  1222. background-image:none;
  1223. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1224. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1225. .bp3-button:not([class*="bp3-intent-"]):disabled, .bp3-button:not([class*="bp3-intent-"]).bp3-disabled{
  1226. background-color:rgba(206, 217, 224, 0.5);
  1227. background-image:none;
  1228. -webkit-box-shadow:none;
  1229. box-shadow:none;
  1230. color:rgba(92, 112, 128, 0.6);
  1231. cursor:not-allowed;
  1232. outline:none; }
  1233. .bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active, .bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active:hover, .bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active, .bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active:hover{
  1234. background:rgba(206, 217, 224, 0.7); }
  1235. .bp3-button.bp3-intent-primary{
  1236. background-color:#137cbd;
  1237. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  1238. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  1239. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1240. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1241. color:#ffffff; }
  1242. .bp3-button.bp3-intent-primary:hover, .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{
  1243. color:#ffffff; }
  1244. .bp3-button.bp3-intent-primary:hover{
  1245. background-color:#106ba3;
  1246. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1247. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }
  1248. .bp3-button.bp3-intent-primary:active, .bp3-button.bp3-intent-primary.bp3-active{
  1249. background-color:#0e5a8a;
  1250. background-image:none;
  1251. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1252. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1253. .bp3-button.bp3-intent-primary:disabled, .bp3-button.bp3-intent-primary.bp3-disabled{
  1254. background-color:rgba(19, 124, 189, 0.5);
  1255. background-image:none;
  1256. border-color:transparent;
  1257. -webkit-box-shadow:none;
  1258. box-shadow:none;
  1259. color:rgba(255, 255, 255, 0.6); }
  1260. .bp3-button.bp3-intent-success{
  1261. background-color:#0f9960;
  1262. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  1263. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  1264. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1265. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1266. color:#ffffff; }
  1267. .bp3-button.bp3-intent-success:hover, .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{
  1268. color:#ffffff; }
  1269. .bp3-button.bp3-intent-success:hover{
  1270. background-color:#0d8050;
  1271. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1272. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }
  1273. .bp3-button.bp3-intent-success:active, .bp3-button.bp3-intent-success.bp3-active{
  1274. background-color:#0a6640;
  1275. background-image:none;
  1276. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1277. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1278. .bp3-button.bp3-intent-success:disabled, .bp3-button.bp3-intent-success.bp3-disabled{
  1279. background-color:rgba(15, 153, 96, 0.5);
  1280. background-image:none;
  1281. border-color:transparent;
  1282. -webkit-box-shadow:none;
  1283. box-shadow:none;
  1284. color:rgba(255, 255, 255, 0.6); }
  1285. .bp3-button.bp3-intent-warning{
  1286. background-color:#d9822b;
  1287. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  1288. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  1289. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1290. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1291. color:#ffffff; }
  1292. .bp3-button.bp3-intent-warning:hover, .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{
  1293. color:#ffffff; }
  1294. .bp3-button.bp3-intent-warning:hover{
  1295. background-color:#bf7326;
  1296. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1297. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }
  1298. .bp3-button.bp3-intent-warning:active, .bp3-button.bp3-intent-warning.bp3-active{
  1299. background-color:#a66321;
  1300. background-image:none;
  1301. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1302. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1303. .bp3-button.bp3-intent-warning:disabled, .bp3-button.bp3-intent-warning.bp3-disabled{
  1304. background-color:rgba(217, 130, 43, 0.5);
  1305. background-image:none;
  1306. border-color:transparent;
  1307. -webkit-box-shadow:none;
  1308. box-shadow:none;
  1309. color:rgba(255, 255, 255, 0.6); }
  1310. .bp3-button.bp3-intent-danger{
  1311. background-color:#db3737;
  1312. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  1313. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  1314. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1315. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1316. color:#ffffff; }
  1317. .bp3-button.bp3-intent-danger:hover, .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{
  1318. color:#ffffff; }
  1319. .bp3-button.bp3-intent-danger:hover{
  1320. background-color:#c23030;
  1321. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  1322. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }
  1323. .bp3-button.bp3-intent-danger:active, .bp3-button.bp3-intent-danger.bp3-active{
  1324. background-color:#a82a2a;
  1325. background-image:none;
  1326. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1327. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1328. .bp3-button.bp3-intent-danger:disabled, .bp3-button.bp3-intent-danger.bp3-disabled{
  1329. background-color:rgba(219, 55, 55, 0.5);
  1330. background-image:none;
  1331. border-color:transparent;
  1332. -webkit-box-shadow:none;
  1333. box-shadow:none;
  1334. color:rgba(255, 255, 255, 0.6); }
  1335. .bp3-button[class*="bp3-intent-"] .bp3-button-spinner .bp3-spinner-head{
  1336. stroke:#ffffff; }
  1337. .bp3-button.bp3-large,
  1338. .bp3-large .bp3-button{
  1339. min-height:40px;
  1340. min-width:40px;
  1341. font-size:16px;
  1342. padding:5px 15px; }
  1343. .bp3-button.bp3-large::before,
  1344. .bp3-button.bp3-large > *,
  1345. .bp3-large .bp3-button::before,
  1346. .bp3-large .bp3-button > *{
  1347. margin-right:10px; }
  1348. .bp3-button.bp3-large:empty::before,
  1349. .bp3-button.bp3-large > :last-child,
  1350. .bp3-large .bp3-button:empty::before,
  1351. .bp3-large .bp3-button > :last-child{
  1352. margin-right:0; }
  1353. .bp3-button.bp3-small,
  1354. .bp3-small .bp3-button{
  1355. min-height:24px;
  1356. min-width:24px;
  1357. padding:0 7px; }
  1358. .bp3-button.bp3-loading{
  1359. position:relative; }
  1360. .bp3-button.bp3-loading[class*="bp3-icon-"]::before{
  1361. visibility:hidden; }
  1362. .bp3-button.bp3-loading .bp3-button-spinner{
  1363. margin:0;
  1364. position:absolute; }
  1365. .bp3-button.bp3-loading > :not(.bp3-button-spinner){
  1366. visibility:hidden; }
  1367. .bp3-button[class*="bp3-icon-"]::before{
  1368. font-family:"Icons16", sans-serif;
  1369. font-size:16px;
  1370. font-style:normal;
  1371. font-weight:400;
  1372. line-height:1;
  1373. -moz-osx-font-smoothing:grayscale;
  1374. -webkit-font-smoothing:antialiased;
  1375. color:#5c7080; }
  1376. .bp3-button .bp3-icon, .bp3-button .bp3-icon-standard, .bp3-button .bp3-icon-large{
  1377. color:#5c7080; }
  1378. .bp3-button .bp3-icon.bp3-align-right, .bp3-button .bp3-icon-standard.bp3-align-right, .bp3-button .bp3-icon-large.bp3-align-right{
  1379. margin-left:7px; }
  1380. .bp3-button .bp3-icon:first-child:last-child,
  1381. .bp3-button .bp3-spinner + .bp3-icon:last-child{
  1382. margin:0 -7px; }
  1383. .bp3-dark .bp3-button:not([class*="bp3-intent-"]){
  1384. background-color:#394b59;
  1385. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  1386. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  1387. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  1388. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  1389. color:#f5f8fa; }
  1390. .bp3-dark .bp3-button:not([class*="bp3-intent-"]):hover, .bp3-dark .bp3-button:not([class*="bp3-intent-"]):active, .bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-active{
  1391. color:#f5f8fa; }
  1392. .bp3-dark .bp3-button:not([class*="bp3-intent-"]):hover{
  1393. background-color:#30404d;
  1394. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  1395. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  1396. .bp3-dark .bp3-button:not([class*="bp3-intent-"]):active, .bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-active{
  1397. background-color:#202b33;
  1398. background-image:none;
  1399. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1400. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1401. .bp3-dark .bp3-button:not([class*="bp3-intent-"]):disabled, .bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-disabled{
  1402. background-color:rgba(57, 75, 89, 0.5);
  1403. background-image:none;
  1404. -webkit-box-shadow:none;
  1405. box-shadow:none;
  1406. color:rgba(167, 182, 194, 0.6); }
  1407. .bp3-dark .bp3-button:not([class*="bp3-intent-"]):disabled.bp3-active, .bp3-dark .bp3-button:not([class*="bp3-intent-"]).bp3-disabled.bp3-active{
  1408. background:rgba(57, 75, 89, 0.7); }
  1409. .bp3-dark .bp3-button:not([class*="bp3-intent-"]) .bp3-button-spinner .bp3-spinner-head{
  1410. background:rgba(16, 22, 26, 0.5);
  1411. stroke:#8a9ba8; }
  1412. .bp3-dark .bp3-button:not([class*="bp3-intent-"])[class*="bp3-icon-"]::before{
  1413. color:#a7b6c2; }
  1414. .bp3-dark .bp3-button:not([class*="bp3-intent-"]) .bp3-icon, .bp3-dark .bp3-button:not([class*="bp3-intent-"]) .bp3-icon-standard, .bp3-dark .bp3-button:not([class*="bp3-intent-"]) .bp3-icon-large{
  1415. color:#a7b6c2; }
  1416. .bp3-dark .bp3-button[class*="bp3-intent-"]{
  1417. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  1418. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  1419. .bp3-dark .bp3-button[class*="bp3-intent-"]:hover{
  1420. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  1421. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  1422. .bp3-dark .bp3-button[class*="bp3-intent-"]:active, .bp3-dark .bp3-button[class*="bp3-intent-"].bp3-active{
  1423. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  1424. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  1425. .bp3-dark .bp3-button[class*="bp3-intent-"]:disabled, .bp3-dark .bp3-button[class*="bp3-intent-"].bp3-disabled{
  1426. background-image:none;
  1427. -webkit-box-shadow:none;
  1428. box-shadow:none;
  1429. color:rgba(255, 255, 255, 0.3); }
  1430. .bp3-dark .bp3-button[class*="bp3-intent-"] .bp3-button-spinner .bp3-spinner-head{
  1431. stroke:#8a9ba8; }
  1432. .bp3-button:disabled::before,
  1433. .bp3-button:disabled .bp3-icon, .bp3-button:disabled .bp3-icon-standard, .bp3-button:disabled .bp3-icon-large, .bp3-button.bp3-disabled::before,
  1434. .bp3-button.bp3-disabled .bp3-icon, .bp3-button.bp3-disabled .bp3-icon-standard, .bp3-button.bp3-disabled .bp3-icon-large, .bp3-button[class*="bp3-intent-"]::before,
  1435. .bp3-button[class*="bp3-intent-"] .bp3-icon, .bp3-button[class*="bp3-intent-"] .bp3-icon-standard, .bp3-button[class*="bp3-intent-"] .bp3-icon-large{
  1436. color:inherit !important; }
  1437. .bp3-button.bp3-minimal{
  1438. background:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none; }
  1441. .bp3-button.bp3-minimal:hover{
  1442. background:rgba(167, 182, 194, 0.3);
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. color:#182026;
  1446. text-decoration:none; }
  1447. .bp3-button.bp3-minimal:active, .bp3-button.bp3-minimal.bp3-active{
  1448. background:rgba(115, 134, 148, 0.3);
  1449. -webkit-box-shadow:none;
  1450. box-shadow:none;
  1451. color:#182026; }
  1452. .bp3-button.bp3-minimal:disabled, .bp3-button.bp3-minimal:disabled:hover, .bp3-button.bp3-minimal.bp3-disabled, .bp3-button.bp3-minimal.bp3-disabled:hover{
  1453. background:none;
  1454. color:rgba(92, 112, 128, 0.6);
  1455. cursor:not-allowed; }
  1456. .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{
  1457. background:rgba(115, 134, 148, 0.3); }
  1458. .bp3-dark .bp3-button.bp3-minimal{
  1459. background:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. color:inherit; }
  1463. .bp3-dark .bp3-button.bp3-minimal:hover, .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{
  1464. background:none;
  1465. -webkit-box-shadow:none;
  1466. box-shadow:none; }
  1467. .bp3-dark .bp3-button.bp3-minimal:hover{
  1468. background:rgba(138, 155, 168, 0.15); }
  1469. .bp3-dark .bp3-button.bp3-minimal:active, .bp3-dark .bp3-button.bp3-minimal.bp3-active{
  1470. background:rgba(138, 155, 168, 0.3);
  1471. color:#f5f8fa; }
  1472. .bp3-dark .bp3-button.bp3-minimal:disabled, .bp3-dark .bp3-button.bp3-minimal:disabled:hover, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover{
  1473. background:none;
  1474. color:rgba(167, 182, 194, 0.6);
  1475. cursor:not-allowed; }
  1476. .bp3-dark .bp3-button.bp3-minimal:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-disabled:hover.bp3-active{
  1477. background:rgba(138, 155, 168, 0.3); }
  1478. .bp3-button.bp3-minimal.bp3-intent-primary{
  1479. color:#106ba3; }
  1480. .bp3-button.bp3-minimal.bp3-intent-primary:hover, .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{
  1481. background:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. color:#106ba3; }
  1485. .bp3-button.bp3-minimal.bp3-intent-primary:hover{
  1486. background:rgba(19, 124, 189, 0.15);
  1487. color:#106ba3; }
  1488. .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{
  1489. background:rgba(19, 124, 189, 0.3);
  1490. color:#106ba3; }
  1491. .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{
  1492. background:none;
  1493. color:rgba(16, 107, 163, 0.5); }
  1494. .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{
  1495. background:rgba(19, 124, 189, 0.3); }
  1496. .bp3-button.bp3-minimal.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{
  1497. stroke:#106ba3; }
  1498. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary{
  1499. color:#48aff0; }
  1500. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:hover{
  1501. background:rgba(19, 124, 189, 0.2);
  1502. color:#48aff0; }
  1503. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-active{
  1504. background:rgba(19, 124, 189, 0.3);
  1505. color:#48aff0; }
  1506. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled{
  1507. background:none;
  1508. color:rgba(72, 175, 240, 0.5); }
  1509. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-primary.bp3-disabled.bp3-active{
  1510. background:rgba(19, 124, 189, 0.3); }
  1511. .bp3-button.bp3-minimal.bp3-intent-success{
  1512. color:#0d8050; }
  1513. .bp3-button.bp3-minimal.bp3-intent-success:hover, .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{
  1514. background:none;
  1515. -webkit-box-shadow:none;
  1516. box-shadow:none;
  1517. color:#0d8050; }
  1518. .bp3-button.bp3-minimal.bp3-intent-success:hover{
  1519. background:rgba(15, 153, 96, 0.15);
  1520. color:#0d8050; }
  1521. .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{
  1522. background:rgba(15, 153, 96, 0.3);
  1523. color:#0d8050; }
  1524. .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{
  1525. background:none;
  1526. color:rgba(13, 128, 80, 0.5); }
  1527. .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{
  1528. background:rgba(15, 153, 96, 0.3); }
  1529. .bp3-button.bp3-minimal.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{
  1530. stroke:#0d8050; }
  1531. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success{
  1532. color:#3dcc91; }
  1533. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:hover{
  1534. background:rgba(15, 153, 96, 0.2);
  1535. color:#3dcc91; }
  1536. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-active{
  1537. background:rgba(15, 153, 96, 0.3);
  1538. color:#3dcc91; }
  1539. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled{
  1540. background:none;
  1541. color:rgba(61, 204, 145, 0.5); }
  1542. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-success.bp3-disabled.bp3-active{
  1543. background:rgba(15, 153, 96, 0.3); }
  1544. .bp3-button.bp3-minimal.bp3-intent-warning{
  1545. color:#bf7326; }
  1546. .bp3-button.bp3-minimal.bp3-intent-warning:hover, .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{
  1547. background:none;
  1548. -webkit-box-shadow:none;
  1549. box-shadow:none;
  1550. color:#bf7326; }
  1551. .bp3-button.bp3-minimal.bp3-intent-warning:hover{
  1552. background:rgba(217, 130, 43, 0.15);
  1553. color:#bf7326; }
  1554. .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{
  1555. background:rgba(217, 130, 43, 0.3);
  1556. color:#bf7326; }
  1557. .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{
  1558. background:none;
  1559. color:rgba(191, 115, 38, 0.5); }
  1560. .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{
  1561. background:rgba(217, 130, 43, 0.3); }
  1562. .bp3-button.bp3-minimal.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{
  1563. stroke:#bf7326; }
  1564. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning{
  1565. color:#ffb366; }
  1566. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:hover{
  1567. background:rgba(217, 130, 43, 0.2);
  1568. color:#ffb366; }
  1569. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-active{
  1570. background:rgba(217, 130, 43, 0.3);
  1571. color:#ffb366; }
  1572. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled{
  1573. background:none;
  1574. color:rgba(255, 179, 102, 0.5); }
  1575. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-warning.bp3-disabled.bp3-active{
  1576. background:rgba(217, 130, 43, 0.3); }
  1577. .bp3-button.bp3-minimal.bp3-intent-danger{
  1578. color:#c23030; }
  1579. .bp3-button.bp3-minimal.bp3-intent-danger:hover, .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{
  1580. background:none;
  1581. -webkit-box-shadow:none;
  1582. box-shadow:none;
  1583. color:#c23030; }
  1584. .bp3-button.bp3-minimal.bp3-intent-danger:hover{
  1585. background:rgba(219, 55, 55, 0.15);
  1586. color:#c23030; }
  1587. .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{
  1588. background:rgba(219, 55, 55, 0.3);
  1589. color:#c23030; }
  1590. .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{
  1591. background:none;
  1592. color:rgba(194, 48, 48, 0.5); }
  1593. .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{
  1594. background:rgba(219, 55, 55, 0.3); }
  1595. .bp3-button.bp3-minimal.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{
  1596. stroke:#c23030; }
  1597. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger{
  1598. color:#ff7373; }
  1599. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:hover{
  1600. background:rgba(219, 55, 55, 0.2);
  1601. color:#ff7373; }
  1602. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-active{
  1603. background:rgba(219, 55, 55, 0.3);
  1604. color:#ff7373; }
  1605. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled{
  1606. background:none;
  1607. color:rgba(255, 115, 115, 0.5); }
  1608. .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-minimal.bp3-intent-danger.bp3-disabled.bp3-active{
  1609. background:rgba(219, 55, 55, 0.3); }
  1610. .bp3-button.bp3-outlined{
  1611. background:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. border:1px solid rgba(24, 32, 38, 0.2);
  1615. -webkit-box-sizing:border-box;
  1616. box-sizing:border-box; }
  1617. .bp3-button.bp3-outlined:hover{
  1618. background:rgba(167, 182, 194, 0.3);
  1619. -webkit-box-shadow:none;
  1620. box-shadow:none;
  1621. color:#182026;
  1622. text-decoration:none; }
  1623. .bp3-button.bp3-outlined:active, .bp3-button.bp3-outlined.bp3-active{
  1624. background:rgba(115, 134, 148, 0.3);
  1625. -webkit-box-shadow:none;
  1626. box-shadow:none;
  1627. color:#182026; }
  1628. .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined.bp3-disabled:hover{
  1629. background:none;
  1630. color:rgba(92, 112, 128, 0.6);
  1631. cursor:not-allowed; }
  1632. .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{
  1633. background:rgba(115, 134, 148, 0.3); }
  1634. .bp3-dark .bp3-button.bp3-outlined{
  1635. background:none;
  1636. -webkit-box-shadow:none;
  1637. box-shadow:none;
  1638. color:inherit; }
  1639. .bp3-dark .bp3-button.bp3-outlined:hover, .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{
  1640. background:none;
  1641. -webkit-box-shadow:none;
  1642. box-shadow:none; }
  1643. .bp3-dark .bp3-button.bp3-outlined:hover{
  1644. background:rgba(138, 155, 168, 0.15); }
  1645. .bp3-dark .bp3-button.bp3-outlined:active, .bp3-dark .bp3-button.bp3-outlined.bp3-active{
  1646. background:rgba(138, 155, 168, 0.3);
  1647. color:#f5f8fa; }
  1648. .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{
  1649. background:none;
  1650. color:rgba(167, 182, 194, 0.6);
  1651. cursor:not-allowed; }
  1652. .bp3-dark .bp3-button.bp3-outlined:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined:disabled:hover.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover.bp3-active{
  1653. background:rgba(138, 155, 168, 0.3); }
  1654. .bp3-button.bp3-outlined.bp3-intent-primary{
  1655. color:#106ba3; }
  1656. .bp3-button.bp3-outlined.bp3-intent-primary:hover, .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{
  1657. background:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. color:#106ba3; }
  1661. .bp3-button.bp3-outlined.bp3-intent-primary:hover{
  1662. background:rgba(19, 124, 189, 0.15);
  1663. color:#106ba3; }
  1664. .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{
  1665. background:rgba(19, 124, 189, 0.3);
  1666. color:#106ba3; }
  1667. .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{
  1668. background:none;
  1669. color:rgba(16, 107, 163, 0.5); }
  1670. .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{
  1671. background:rgba(19, 124, 189, 0.3); }
  1672. .bp3-button.bp3-outlined.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{
  1673. stroke:#106ba3; }
  1674. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{
  1675. color:#48aff0; }
  1676. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:hover{
  1677. background:rgba(19, 124, 189, 0.2);
  1678. color:#48aff0; }
  1679. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-active{
  1680. background:rgba(19, 124, 189, 0.3);
  1681. color:#48aff0; }
  1682. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{
  1683. background:none;
  1684. color:rgba(72, 175, 240, 0.5); }
  1685. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled.bp3-active{
  1686. background:rgba(19, 124, 189, 0.3); }
  1687. .bp3-button.bp3-outlined.bp3-intent-success{
  1688. color:#0d8050; }
  1689. .bp3-button.bp3-outlined.bp3-intent-success:hover, .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{
  1690. background:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. color:#0d8050; }
  1694. .bp3-button.bp3-outlined.bp3-intent-success:hover{
  1695. background:rgba(15, 153, 96, 0.15);
  1696. color:#0d8050; }
  1697. .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{
  1698. background:rgba(15, 153, 96, 0.3);
  1699. color:#0d8050; }
  1700. .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{
  1701. background:none;
  1702. color:rgba(13, 128, 80, 0.5); }
  1703. .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{
  1704. background:rgba(15, 153, 96, 0.3); }
  1705. .bp3-button.bp3-outlined.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{
  1706. stroke:#0d8050; }
  1707. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{
  1708. color:#3dcc91; }
  1709. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:hover{
  1710. background:rgba(15, 153, 96, 0.2);
  1711. color:#3dcc91; }
  1712. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-active{
  1713. background:rgba(15, 153, 96, 0.3);
  1714. color:#3dcc91; }
  1715. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{
  1716. background:none;
  1717. color:rgba(61, 204, 145, 0.5); }
  1718. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled.bp3-active{
  1719. background:rgba(15, 153, 96, 0.3); }
  1720. .bp3-button.bp3-outlined.bp3-intent-warning{
  1721. color:#bf7326; }
  1722. .bp3-button.bp3-outlined.bp3-intent-warning:hover, .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{
  1723. background:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. color:#bf7326; }
  1727. .bp3-button.bp3-outlined.bp3-intent-warning:hover{
  1728. background:rgba(217, 130, 43, 0.15);
  1729. color:#bf7326; }
  1730. .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{
  1731. background:rgba(217, 130, 43, 0.3);
  1732. color:#bf7326; }
  1733. .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{
  1734. background:none;
  1735. color:rgba(191, 115, 38, 0.5); }
  1736. .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{
  1737. background:rgba(217, 130, 43, 0.3); }
  1738. .bp3-button.bp3-outlined.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{
  1739. stroke:#bf7326; }
  1740. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{
  1741. color:#ffb366; }
  1742. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:hover{
  1743. background:rgba(217, 130, 43, 0.2);
  1744. color:#ffb366; }
  1745. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-active{
  1746. background:rgba(217, 130, 43, 0.3);
  1747. color:#ffb366; }
  1748. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{
  1749. background:none;
  1750. color:rgba(255, 179, 102, 0.5); }
  1751. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled.bp3-active{
  1752. background:rgba(217, 130, 43, 0.3); }
  1753. .bp3-button.bp3-outlined.bp3-intent-danger{
  1754. color:#c23030; }
  1755. .bp3-button.bp3-outlined.bp3-intent-danger:hover, .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{
  1756. background:none;
  1757. -webkit-box-shadow:none;
  1758. box-shadow:none;
  1759. color:#c23030; }
  1760. .bp3-button.bp3-outlined.bp3-intent-danger:hover{
  1761. background:rgba(219, 55, 55, 0.15);
  1762. color:#c23030; }
  1763. .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{
  1764. background:rgba(219, 55, 55, 0.3);
  1765. color:#c23030; }
  1766. .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{
  1767. background:none;
  1768. color:rgba(194, 48, 48, 0.5); }
  1769. .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{
  1770. background:rgba(219, 55, 55, 0.3); }
  1771. .bp3-button.bp3-outlined.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{
  1772. stroke:#c23030; }
  1773. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{
  1774. color:#ff7373; }
  1775. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:hover{
  1776. background:rgba(219, 55, 55, 0.2);
  1777. color:#ff7373; }
  1778. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-active{
  1779. background:rgba(219, 55, 55, 0.3);
  1780. color:#ff7373; }
  1781. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{
  1782. background:none;
  1783. color:rgba(255, 115, 115, 0.5); }
  1784. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled.bp3-active{
  1785. background:rgba(219, 55, 55, 0.3); }
  1786. .bp3-button.bp3-outlined:disabled, .bp3-button.bp3-outlined.bp3-disabled, .bp3-button.bp3-outlined:disabled:hover, .bp3-button.bp3-outlined.bp3-disabled:hover{
  1787. border-color:rgba(92, 112, 128, 0.1); }
  1788. .bp3-dark .bp3-button.bp3-outlined{
  1789. border-color:rgba(255, 255, 255, 0.4); }
  1790. .bp3-dark .bp3-button.bp3-outlined:disabled, .bp3-dark .bp3-button.bp3-outlined:disabled:hover, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-disabled:hover{
  1791. border-color:rgba(255, 255, 255, 0.2); }
  1792. .bp3-button.bp3-outlined.bp3-intent-primary{
  1793. border-color:rgba(16, 107, 163, 0.6); }
  1794. .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{
  1795. border-color:rgba(16, 107, 163, 0.2); }
  1796. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary{
  1797. border-color:rgba(72, 175, 240, 0.6); }
  1798. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-primary.bp3-disabled{
  1799. border-color:rgba(72, 175, 240, 0.2); }
  1800. .bp3-button.bp3-outlined.bp3-intent-success{
  1801. border-color:rgba(13, 128, 80, 0.6); }
  1802. .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{
  1803. border-color:rgba(13, 128, 80, 0.2); }
  1804. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success{
  1805. border-color:rgba(61, 204, 145, 0.6); }
  1806. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-success.bp3-disabled{
  1807. border-color:rgba(61, 204, 145, 0.2); }
  1808. .bp3-button.bp3-outlined.bp3-intent-warning{
  1809. border-color:rgba(191, 115, 38, 0.6); }
  1810. .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{
  1811. border-color:rgba(191, 115, 38, 0.2); }
  1812. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning{
  1813. border-color:rgba(255, 179, 102, 0.6); }
  1814. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-warning.bp3-disabled{
  1815. border-color:rgba(255, 179, 102, 0.2); }
  1816. .bp3-button.bp3-outlined.bp3-intent-danger{
  1817. border-color:rgba(194, 48, 48, 0.6); }
  1818. .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{
  1819. border-color:rgba(194, 48, 48, 0.2); }
  1820. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger{
  1821. border-color:rgba(255, 115, 115, 0.6); }
  1822. .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger:disabled, .bp3-dark .bp3-button.bp3-outlined.bp3-intent-danger.bp3-disabled{
  1823. border-color:rgba(255, 115, 115, 0.2); }
  1824. a.bp3-button{
  1825. text-align:center;
  1826. text-decoration:none;
  1827. -webkit-transition:none;
  1828. transition:none; }
  1829. a.bp3-button, a.bp3-button:hover, a.bp3-button:active{
  1830. color:#182026; }
  1831. a.bp3-button.bp3-disabled{
  1832. color:rgba(92, 112, 128, 0.6); }
  1833. .bp3-button-text{
  1834. -webkit-box-flex:0;
  1835. -ms-flex:0 1 auto;
  1836. flex:0 1 auto; }
  1837. .bp3-button.bp3-align-left .bp3-button-text, .bp3-button.bp3-align-right .bp3-button-text,
  1838. .bp3-button-group.bp3-align-left .bp3-button-text,
  1839. .bp3-button-group.bp3-align-right .bp3-button-text{
  1840. -webkit-box-flex:1;
  1841. -ms-flex:1 1 auto;
  1842. flex:1 1 auto; }
  1843. .bp3-button-group{
  1844. display:-webkit-inline-box;
  1845. display:-ms-inline-flexbox;
  1846. display:inline-flex; }
  1847. .bp3-button-group .bp3-button{
  1848. -webkit-box-flex:0;
  1849. -ms-flex:0 0 auto;
  1850. flex:0 0 auto;
  1851. position:relative;
  1852. z-index:4; }
  1853. .bp3-button-group .bp3-button:focus{
  1854. z-index:5; }
  1855. .bp3-button-group .bp3-button:hover{
  1856. z-index:6; }
  1857. .bp3-button-group .bp3-button:active, .bp3-button-group .bp3-button.bp3-active{
  1858. z-index:7; }
  1859. .bp3-button-group .bp3-button:disabled, .bp3-button-group .bp3-button.bp3-disabled{
  1860. z-index:3; }
  1861. .bp3-button-group .bp3-button[class*="bp3-intent-"]{
  1862. z-index:9; }
  1863. .bp3-button-group .bp3-button[class*="bp3-intent-"]:focus{
  1864. z-index:10; }
  1865. .bp3-button-group .bp3-button[class*="bp3-intent-"]:hover{
  1866. z-index:11; }
  1867. .bp3-button-group .bp3-button[class*="bp3-intent-"]:active, .bp3-button-group .bp3-button[class*="bp3-intent-"].bp3-active{
  1868. z-index:12; }
  1869. .bp3-button-group .bp3-button[class*="bp3-intent-"]:disabled, .bp3-button-group .bp3-button[class*="bp3-intent-"].bp3-disabled{
  1870. z-index:8; }
  1871. .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:first-child) .bp3-button,
  1872. .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:first-child){
  1873. border-bottom-left-radius:0;
  1874. border-top-left-radius:0; }
  1875. .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,
  1876. .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){
  1877. border-bottom-right-radius:0;
  1878. border-top-right-radius:0;
  1879. margin-right:-1px; }
  1880. .bp3-button-group.bp3-minimal .bp3-button{
  1881. background:none;
  1882. -webkit-box-shadow:none;
  1883. box-shadow:none; }
  1884. .bp3-button-group.bp3-minimal .bp3-button:hover{
  1885. background:rgba(167, 182, 194, 0.3);
  1886. -webkit-box-shadow:none;
  1887. box-shadow:none;
  1888. color:#182026;
  1889. text-decoration:none; }
  1890. .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-active{
  1891. background:rgba(115, 134, 148, 0.3);
  1892. -webkit-box-shadow:none;
  1893. box-shadow:none;
  1894. color:#182026; }
  1895. .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{
  1896. background:none;
  1897. color:rgba(92, 112, 128, 0.6);
  1898. cursor:not-allowed; }
  1899. .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{
  1900. background:rgba(115, 134, 148, 0.3); }
  1901. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button{
  1902. background:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. color:inherit; }
  1906. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{
  1907. background:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none; }
  1910. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:hover{
  1911. background:rgba(138, 155, 168, 0.15); }
  1912. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-active{
  1913. background:rgba(138, 155, 168, 0.3);
  1914. color:#f5f8fa; }
  1915. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover{
  1916. background:none;
  1917. color:rgba(167, 182, 194, 0.6);
  1918. cursor:not-allowed; }
  1919. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button:disabled:hover.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-disabled:hover.bp3-active{
  1920. background:rgba(138, 155, 168, 0.3); }
  1921. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{
  1922. color:#106ba3; }
  1923. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{
  1924. background:none;
  1925. -webkit-box-shadow:none;
  1926. box-shadow:none;
  1927. color:#106ba3; }
  1928. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{
  1929. background:rgba(19, 124, 189, 0.15);
  1930. color:#106ba3; }
  1931. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{
  1932. background:rgba(19, 124, 189, 0.3);
  1933. color:#106ba3; }
  1934. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{
  1935. background:none;
  1936. color:rgba(16, 107, 163, 0.5); }
  1937. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{
  1938. background:rgba(19, 124, 189, 0.3); }
  1939. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{
  1940. stroke:#106ba3; }
  1941. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary{
  1942. color:#48aff0; }
  1943. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:hover{
  1944. background:rgba(19, 124, 189, 0.2);
  1945. color:#48aff0; }
  1946. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-active{
  1947. background:rgba(19, 124, 189, 0.3);
  1948. color:#48aff0; }
  1949. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled{
  1950. background:none;
  1951. color:rgba(72, 175, 240, 0.5); }
  1952. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-primary.bp3-disabled.bp3-active{
  1953. background:rgba(19, 124, 189, 0.3); }
  1954. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{
  1955. color:#0d8050; }
  1956. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{
  1957. background:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. color:#0d8050; }
  1961. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{
  1962. background:rgba(15, 153, 96, 0.15);
  1963. color:#0d8050; }
  1964. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{
  1965. background:rgba(15, 153, 96, 0.3);
  1966. color:#0d8050; }
  1967. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{
  1968. background:none;
  1969. color:rgba(13, 128, 80, 0.5); }
  1970. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{
  1971. background:rgba(15, 153, 96, 0.3); }
  1972. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{
  1973. stroke:#0d8050; }
  1974. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success{
  1975. color:#3dcc91; }
  1976. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:hover{
  1977. background:rgba(15, 153, 96, 0.2);
  1978. color:#3dcc91; }
  1979. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-active{
  1980. background:rgba(15, 153, 96, 0.3);
  1981. color:#3dcc91; }
  1982. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled{
  1983. background:none;
  1984. color:rgba(61, 204, 145, 0.5); }
  1985. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-success.bp3-disabled.bp3-active{
  1986. background:rgba(15, 153, 96, 0.3); }
  1987. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{
  1988. color:#bf7326; }
  1989. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{
  1990. background:none;
  1991. -webkit-box-shadow:none;
  1992. box-shadow:none;
  1993. color:#bf7326; }
  1994. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{
  1995. background:rgba(217, 130, 43, 0.15);
  1996. color:#bf7326; }
  1997. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{
  1998. background:rgba(217, 130, 43, 0.3);
  1999. color:#bf7326; }
  2000. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{
  2001. background:none;
  2002. color:rgba(191, 115, 38, 0.5); }
  2003. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{
  2004. background:rgba(217, 130, 43, 0.3); }
  2005. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{
  2006. stroke:#bf7326; }
  2007. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning{
  2008. color:#ffb366; }
  2009. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:hover{
  2010. background:rgba(217, 130, 43, 0.2);
  2011. color:#ffb366; }
  2012. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-active{
  2013. background:rgba(217, 130, 43, 0.3);
  2014. color:#ffb366; }
  2015. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled{
  2016. background:none;
  2017. color:rgba(255, 179, 102, 0.5); }
  2018. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-warning.bp3-disabled.bp3-active{
  2019. background:rgba(217, 130, 43, 0.3); }
  2020. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{
  2021. color:#c23030; }
  2022. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{
  2023. background:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. color:#c23030; }
  2027. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{
  2028. background:rgba(219, 55, 55, 0.15);
  2029. color:#c23030; }
  2030. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{
  2031. background:rgba(219, 55, 55, 0.3);
  2032. color:#c23030; }
  2033. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{
  2034. background:none;
  2035. color:rgba(194, 48, 48, 0.5); }
  2036. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{
  2037. background:rgba(219, 55, 55, 0.3); }
  2038. .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{
  2039. stroke:#c23030; }
  2040. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger{
  2041. color:#ff7373; }
  2042. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:hover{
  2043. background:rgba(219, 55, 55, 0.2);
  2044. color:#ff7373; }
  2045. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-active{
  2046. background:rgba(219, 55, 55, 0.3);
  2047. color:#ff7373; }
  2048. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled{
  2049. background:none;
  2050. color:rgba(255, 115, 115, 0.5); }
  2051. .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-button-group.bp3-minimal .bp3-button.bp3-intent-danger.bp3-disabled.bp3-active{
  2052. background:rgba(219, 55, 55, 0.3); }
  2053. .bp3-button-group .bp3-popover-wrapper,
  2054. .bp3-button-group .bp3-popover-target{
  2055. display:-webkit-box;
  2056. display:-ms-flexbox;
  2057. display:flex;
  2058. -webkit-box-flex:1;
  2059. -ms-flex:1 1 auto;
  2060. flex:1 1 auto; }
  2061. .bp3-button-group.bp3-fill{
  2062. display:-webkit-box;
  2063. display:-ms-flexbox;
  2064. display:flex;
  2065. width:100%; }
  2066. .bp3-button-group .bp3-button.bp3-fill,
  2067. .bp3-button-group.bp3-fill .bp3-button:not(.bp3-fixed){
  2068. -webkit-box-flex:1;
  2069. -ms-flex:1 1 auto;
  2070. flex:1 1 auto; }
  2071. .bp3-button-group.bp3-vertical{
  2072. -webkit-box-align:stretch;
  2073. -ms-flex-align:stretch;
  2074. align-items:stretch;
  2075. -webkit-box-orient:vertical;
  2076. -webkit-box-direction:normal;
  2077. -ms-flex-direction:column;
  2078. flex-direction:column;
  2079. vertical-align:top; }
  2080. .bp3-button-group.bp3-vertical.bp3-fill{
  2081. height:100%;
  2082. width:unset; }
  2083. .bp3-button-group.bp3-vertical .bp3-button{
  2084. margin-right:0 !important;
  2085. width:100%; }
  2086. .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:first-child .bp3-button,
  2087. .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:first-child{
  2088. border-radius:3px 3px 0 0; }
  2089. .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:last-child .bp3-button,
  2090. .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:last-child{
  2091. border-radius:0 0 3px 3px; }
  2092. .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,
  2093. .bp3-button-group.bp3-vertical:not(.bp3-minimal) > .bp3-button:not(:last-child){
  2094. margin-bottom:-1px; }
  2095. .bp3-button-group.bp3-align-left .bp3-button{
  2096. text-align:left; }
  2097. .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-popover-wrapper:not(:last-child) .bp3-button,
  2098. .bp3-dark .bp3-button-group:not(.bp3-minimal) > .bp3-button:not(:last-child){
  2099. margin-right:1px; }
  2100. .bp3-dark .bp3-button-group.bp3-vertical > .bp3-popover-wrapper:not(:last-child) .bp3-button,
  2101. .bp3-dark .bp3-button-group.bp3-vertical > .bp3-button:not(:last-child){
  2102. margin-bottom:1px; }
  2103. .bp3-callout{
  2104. font-size:14px;
  2105. line-height:1.5;
  2106. background-color:rgba(138, 155, 168, 0.15);
  2107. border-radius:3px;
  2108. padding:10px 12px 9px;
  2109. position:relative;
  2110. width:100%; }
  2111. .bp3-callout[class*="bp3-icon-"]{
  2112. padding-left:40px; }
  2113. .bp3-callout[class*="bp3-icon-"]::before{
  2114. font-family:"Icons20", sans-serif;
  2115. font-size:20px;
  2116. font-style:normal;
  2117. font-weight:400;
  2118. line-height:1;
  2119. -moz-osx-font-smoothing:grayscale;
  2120. -webkit-font-smoothing:antialiased;
  2121. color:#5c7080;
  2122. left:10px;
  2123. position:absolute;
  2124. top:10px; }
  2125. .bp3-callout.bp3-callout-icon{
  2126. padding-left:40px; }
  2127. .bp3-callout.bp3-callout-icon > .bp3-icon:first-child{
  2128. color:#5c7080;
  2129. left:10px;
  2130. position:absolute;
  2131. top:10px; }
  2132. .bp3-callout .bp3-heading{
  2133. line-height:20px;
  2134. margin-bottom:5px;
  2135. margin-top:0; }
  2136. .bp3-callout .bp3-heading:last-child{
  2137. margin-bottom:0; }
  2138. .bp3-dark .bp3-callout{
  2139. background-color:rgba(138, 155, 168, 0.2); }
  2140. .bp3-dark .bp3-callout[class*="bp3-icon-"]::before{
  2141. color:#a7b6c2; }
  2142. .bp3-callout.bp3-intent-primary{
  2143. background-color:rgba(19, 124, 189, 0.15); }
  2144. .bp3-callout.bp3-intent-primary[class*="bp3-icon-"]::before,
  2145. .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,
  2146. .bp3-callout.bp3-intent-primary .bp3-heading{
  2147. color:#106ba3; }
  2148. .bp3-dark .bp3-callout.bp3-intent-primary{
  2149. background-color:rgba(19, 124, 189, 0.25); }
  2150. .bp3-dark .bp3-callout.bp3-intent-primary[class*="bp3-icon-"]::before,
  2151. .bp3-dark .bp3-callout.bp3-intent-primary > .bp3-icon:first-child,
  2152. .bp3-dark .bp3-callout.bp3-intent-primary .bp3-heading{
  2153. color:#48aff0; }
  2154. .bp3-callout.bp3-intent-success{
  2155. background-color:rgba(15, 153, 96, 0.15); }
  2156. .bp3-callout.bp3-intent-success[class*="bp3-icon-"]::before,
  2157. .bp3-callout.bp3-intent-success > .bp3-icon:first-child,
  2158. .bp3-callout.bp3-intent-success .bp3-heading{
  2159. color:#0d8050; }
  2160. .bp3-dark .bp3-callout.bp3-intent-success{
  2161. background-color:rgba(15, 153, 96, 0.25); }
  2162. .bp3-dark .bp3-callout.bp3-intent-success[class*="bp3-icon-"]::before,
  2163. .bp3-dark .bp3-callout.bp3-intent-success > .bp3-icon:first-child,
  2164. .bp3-dark .bp3-callout.bp3-intent-success .bp3-heading{
  2165. color:#3dcc91; }
  2166. .bp3-callout.bp3-intent-warning{
  2167. background-color:rgba(217, 130, 43, 0.15); }
  2168. .bp3-callout.bp3-intent-warning[class*="bp3-icon-"]::before,
  2169. .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,
  2170. .bp3-callout.bp3-intent-warning .bp3-heading{
  2171. color:#bf7326; }
  2172. .bp3-dark .bp3-callout.bp3-intent-warning{
  2173. background-color:rgba(217, 130, 43, 0.25); }
  2174. .bp3-dark .bp3-callout.bp3-intent-warning[class*="bp3-icon-"]::before,
  2175. .bp3-dark .bp3-callout.bp3-intent-warning > .bp3-icon:first-child,
  2176. .bp3-dark .bp3-callout.bp3-intent-warning .bp3-heading{
  2177. color:#ffb366; }
  2178. .bp3-callout.bp3-intent-danger{
  2179. background-color:rgba(219, 55, 55, 0.15); }
  2180. .bp3-callout.bp3-intent-danger[class*="bp3-icon-"]::before,
  2181. .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,
  2182. .bp3-callout.bp3-intent-danger .bp3-heading{
  2183. color:#c23030; }
  2184. .bp3-dark .bp3-callout.bp3-intent-danger{
  2185. background-color:rgba(219, 55, 55, 0.25); }
  2186. .bp3-dark .bp3-callout.bp3-intent-danger[class*="bp3-icon-"]::before,
  2187. .bp3-dark .bp3-callout.bp3-intent-danger > .bp3-icon:first-child,
  2188. .bp3-dark .bp3-callout.bp3-intent-danger .bp3-heading{
  2189. color:#ff7373; }
  2190. .bp3-running-text .bp3-callout{
  2191. margin:20px 0; }
  2192. .bp3-card{
  2193. background-color:#ffffff;
  2194. border-radius:3px;
  2195. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);
  2196. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);
  2197. padding:20px;
  2198. -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2199. transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2200. transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2201. transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }
  2202. .bp3-card.bp3-dark,
  2203. .bp3-dark .bp3-card{
  2204. background-color:#30404d;
  2205. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);
  2206. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }
  2207. .bp3-elevation-0{
  2208. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);
  2209. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.15), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }
  2210. .bp3-elevation-0.bp3-dark,
  2211. .bp3-dark .bp3-elevation-0{
  2212. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0);
  2213. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), 0 0 0 rgba(16, 22, 26, 0), 0 0 0 rgba(16, 22, 26, 0); }
  2214. .bp3-elevation-1{
  2215. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  2216. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2); }
  2217. .bp3-elevation-1.bp3-dark,
  2218. .bp3-dark .bp3-elevation-1{
  2219. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);
  2220. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }
  2221. .bp3-elevation-2{
  2222. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2);
  2223. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 1px 1px rgba(16, 22, 26, 0.2), 0 2px 6px rgba(16, 22, 26, 0.2); }
  2224. .bp3-elevation-2.bp3-dark,
  2225. .bp3-dark .bp3-elevation-2{
  2226. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4);
  2227. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.4), 0 2px 6px rgba(16, 22, 26, 0.4); }
  2228. .bp3-elevation-3{
  2229. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  2230. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }
  2231. .bp3-elevation-3.bp3-dark,
  2232. .bp3-dark .bp3-elevation-3{
  2233. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  2234. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }
  2235. .bp3-elevation-4{
  2236. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  2237. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2); }
  2238. .bp3-elevation-4.bp3-dark,
  2239. .bp3-dark .bp3-elevation-4{
  2240. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);
  2241. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }
  2242. .bp3-card.bp3-interactive:hover{
  2243. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  2244. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  2245. cursor:pointer; }
  2246. .bp3-card.bp3-interactive:hover.bp3-dark,
  2247. .bp3-dark .bp3-card.bp3-interactive:hover{
  2248. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  2249. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }
  2250. .bp3-card.bp3-interactive:active{
  2251. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  2252. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  2253. opacity:0.9;
  2254. -webkit-transition-duration:0;
  2255. transition-duration:0; }
  2256. .bp3-card.bp3-interactive:active.bp3-dark,
  2257. .bp3-dark .bp3-card.bp3-interactive:active{
  2258. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);
  2259. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }
  2260. .bp3-collapse{
  2261. height:0;
  2262. overflow-y:hidden;
  2263. -webkit-transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2264. transition:height 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }
  2265. .bp3-collapse .bp3-collapse-body{
  2266. -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2267. transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2268. transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2269. transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }
  2270. .bp3-collapse .bp3-collapse-body[aria-hidden="true"]{
  2271. display:none; }
  2272. .bp3-context-menu .bp3-popover-target{
  2273. display:block; }
  2274. .bp3-context-menu-popover-target{
  2275. position:fixed; }
  2276. .bp3-divider{
  2277. border-bottom:1px solid rgba(16, 22, 26, 0.15);
  2278. border-right:1px solid rgba(16, 22, 26, 0.15);
  2279. margin:5px; }
  2280. .bp3-dark .bp3-divider{
  2281. border-color:rgba(16, 22, 26, 0.4); }
  2282. .bp3-dialog-container{
  2283. opacity:1;
  2284. -webkit-transform:scale(1);
  2285. transform:scale(1);
  2286. -webkit-box-align:center;
  2287. -ms-flex-align:center;
  2288. align-items:center;
  2289. display:-webkit-box;
  2290. display:-ms-flexbox;
  2291. display:flex;
  2292. -webkit-box-pack:center;
  2293. -ms-flex-pack:center;
  2294. justify-content:center;
  2295. min-height:100%;
  2296. pointer-events:none;
  2297. -webkit-user-select:none;
  2298. -moz-user-select:none;
  2299. -ms-user-select:none;
  2300. user-select:none;
  2301. width:100%; }
  2302. .bp3-dialog-container.bp3-overlay-enter > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear > .bp3-dialog{
  2303. opacity:0;
  2304. -webkit-transform:scale(0.5);
  2305. transform:scale(0.5); }
  2306. .bp3-dialog-container.bp3-overlay-enter-active > .bp3-dialog, .bp3-dialog-container.bp3-overlay-appear-active > .bp3-dialog{
  2307. opacity:1;
  2308. -webkit-transform:scale(1);
  2309. transform:scale(1);
  2310. -webkit-transition-delay:0;
  2311. transition-delay:0;
  2312. -webkit-transition-duration:300ms;
  2313. transition-duration:300ms;
  2314. -webkit-transition-property:opacity, -webkit-transform;
  2315. transition-property:opacity, -webkit-transform;
  2316. transition-property:opacity, transform;
  2317. transition-property:opacity, transform, -webkit-transform;
  2318. -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
  2319. transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }
  2320. .bp3-dialog-container.bp3-overlay-exit > .bp3-dialog{
  2321. opacity:1;
  2322. -webkit-transform:scale(1);
  2323. transform:scale(1); }
  2324. .bp3-dialog-container.bp3-overlay-exit-active > .bp3-dialog{
  2325. opacity:0;
  2326. -webkit-transform:scale(0.5);
  2327. transform:scale(0.5);
  2328. -webkit-transition-delay:0;
  2329. transition-delay:0;
  2330. -webkit-transition-duration:300ms;
  2331. transition-duration:300ms;
  2332. -webkit-transition-property:opacity, -webkit-transform;
  2333. transition-property:opacity, -webkit-transform;
  2334. transition-property:opacity, transform;
  2335. transition-property:opacity, transform, -webkit-transform;
  2336. -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
  2337. transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }
  2338. .bp3-dialog{
  2339. background:#ebf1f5;
  2340. border-radius:6px;
  2341. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  2342. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  2343. display:-webkit-box;
  2344. display:-ms-flexbox;
  2345. display:flex;
  2346. -webkit-box-orient:vertical;
  2347. -webkit-box-direction:normal;
  2348. -ms-flex-direction:column;
  2349. flex-direction:column;
  2350. margin:30px 0;
  2351. padding-bottom:20px;
  2352. pointer-events:all;
  2353. -webkit-user-select:text;
  2354. -moz-user-select:text;
  2355. -ms-user-select:text;
  2356. user-select:text;
  2357. width:500px; }
  2358. .bp3-dialog:focus{
  2359. outline:0; }
  2360. .bp3-dialog.bp3-dark,
  2361. .bp3-dark .bp3-dialog{
  2362. background:#293742;
  2363. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);
  2364. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);
  2365. color:#f5f8fa; }
  2366. .bp3-dialog-header{
  2367. -webkit-box-align:center;
  2368. -ms-flex-align:center;
  2369. align-items:center;
  2370. background:#ffffff;
  2371. border-radius:6px 6px 0 0;
  2372. -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);
  2373. box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);
  2374. display:-webkit-box;
  2375. display:-ms-flexbox;
  2376. display:flex;
  2377. -webkit-box-flex:0;
  2378. -ms-flex:0 0 auto;
  2379. flex:0 0 auto;
  2380. min-height:40px;
  2381. padding-left:20px;
  2382. padding-right:5px; }
  2383. .bp3-dialog-header .bp3-icon-large,
  2384. .bp3-dialog-header .bp3-icon{
  2385. color:#5c7080;
  2386. -webkit-box-flex:0;
  2387. -ms-flex:0 0 auto;
  2388. flex:0 0 auto;
  2389. margin-right:10px; }
  2390. .bp3-dialog-header .bp3-heading{
  2391. overflow:hidden;
  2392. text-overflow:ellipsis;
  2393. white-space:nowrap;
  2394. word-wrap:normal;
  2395. -webkit-box-flex:1;
  2396. -ms-flex:1 1 auto;
  2397. flex:1 1 auto;
  2398. line-height:inherit;
  2399. margin:0; }
  2400. .bp3-dialog-header .bp3-heading:last-child{
  2401. margin-right:20px; }
  2402. .bp3-dark .bp3-dialog-header{
  2403. background:#30404d;
  2404. -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);
  2405. box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }
  2406. .bp3-dark .bp3-dialog-header .bp3-icon-large,
  2407. .bp3-dark .bp3-dialog-header .bp3-icon{
  2408. color:#a7b6c2; }
  2409. .bp3-dialog-body{
  2410. -webkit-box-flex:1;
  2411. -ms-flex:1 1 auto;
  2412. flex:1 1 auto;
  2413. line-height:18px;
  2414. margin:20px; }
  2415. .bp3-dialog-footer{
  2416. -webkit-box-flex:0;
  2417. -ms-flex:0 0 auto;
  2418. flex:0 0 auto;
  2419. margin:0 20px; }
  2420. .bp3-dialog-footer-actions{
  2421. display:-webkit-box;
  2422. display:-ms-flexbox;
  2423. display:flex;
  2424. -webkit-box-pack:end;
  2425. -ms-flex-pack:end;
  2426. justify-content:flex-end; }
  2427. .bp3-dialog-footer-actions .bp3-button{
  2428. margin-left:10px; }
  2429. .bp3-drawer{
  2430. background:#ffffff;
  2431. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  2432. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  2433. display:-webkit-box;
  2434. display:-ms-flexbox;
  2435. display:flex;
  2436. -webkit-box-orient:vertical;
  2437. -webkit-box-direction:normal;
  2438. -ms-flex-direction:column;
  2439. flex-direction:column;
  2440. margin:0;
  2441. padding:0; }
  2442. .bp3-drawer:focus{
  2443. outline:0; }
  2444. .bp3-drawer.bp3-position-top{
  2445. height:50%;
  2446. left:0;
  2447. right:0;
  2448. top:0; }
  2449. .bp3-drawer.bp3-position-top.bp3-overlay-enter, .bp3-drawer.bp3-position-top.bp3-overlay-appear{
  2450. -webkit-transform:translateY(-100%);
  2451. transform:translateY(-100%); }
  2452. .bp3-drawer.bp3-position-top.bp3-overlay-enter-active, .bp3-drawer.bp3-position-top.bp3-overlay-appear-active{
  2453. -webkit-transform:translateY(0);
  2454. transform:translateY(0);
  2455. -webkit-transition-delay:0;
  2456. transition-delay:0;
  2457. -webkit-transition-duration:200ms;
  2458. transition-duration:200ms;
  2459. -webkit-transition-property:-webkit-transform;
  2460. transition-property:-webkit-transform;
  2461. transition-property:transform;
  2462. transition-property:transform, -webkit-transform;
  2463. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2464. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2465. .bp3-drawer.bp3-position-top.bp3-overlay-exit{
  2466. -webkit-transform:translateY(0);
  2467. transform:translateY(0); }
  2468. .bp3-drawer.bp3-position-top.bp3-overlay-exit-active{
  2469. -webkit-transform:translateY(-100%);
  2470. transform:translateY(-100%);
  2471. -webkit-transition-delay:0;
  2472. transition-delay:0;
  2473. -webkit-transition-duration:100ms;
  2474. transition-duration:100ms;
  2475. -webkit-transition-property:-webkit-transform;
  2476. transition-property:-webkit-transform;
  2477. transition-property:transform;
  2478. transition-property:transform, -webkit-transform;
  2479. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2480. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2481. .bp3-drawer.bp3-position-bottom{
  2482. bottom:0;
  2483. height:50%;
  2484. left:0;
  2485. right:0; }
  2486. .bp3-drawer.bp3-position-bottom.bp3-overlay-enter, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear{
  2487. -webkit-transform:translateY(100%);
  2488. transform:translateY(100%); }
  2489. .bp3-drawer.bp3-position-bottom.bp3-overlay-enter-active, .bp3-drawer.bp3-position-bottom.bp3-overlay-appear-active{
  2490. -webkit-transform:translateY(0);
  2491. transform:translateY(0);
  2492. -webkit-transition-delay:0;
  2493. transition-delay:0;
  2494. -webkit-transition-duration:200ms;
  2495. transition-duration:200ms;
  2496. -webkit-transition-property:-webkit-transform;
  2497. transition-property:-webkit-transform;
  2498. transition-property:transform;
  2499. transition-property:transform, -webkit-transform;
  2500. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2501. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2502. .bp3-drawer.bp3-position-bottom.bp3-overlay-exit{
  2503. -webkit-transform:translateY(0);
  2504. transform:translateY(0); }
  2505. .bp3-drawer.bp3-position-bottom.bp3-overlay-exit-active{
  2506. -webkit-transform:translateY(100%);
  2507. transform:translateY(100%);
  2508. -webkit-transition-delay:0;
  2509. transition-delay:0;
  2510. -webkit-transition-duration:100ms;
  2511. transition-duration:100ms;
  2512. -webkit-transition-property:-webkit-transform;
  2513. transition-property:-webkit-transform;
  2514. transition-property:transform;
  2515. transition-property:transform, -webkit-transform;
  2516. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2517. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2518. .bp3-drawer.bp3-position-left{
  2519. bottom:0;
  2520. left:0;
  2521. top:0;
  2522. width:50%; }
  2523. .bp3-drawer.bp3-position-left.bp3-overlay-enter, .bp3-drawer.bp3-position-left.bp3-overlay-appear{
  2524. -webkit-transform:translateX(-100%);
  2525. transform:translateX(-100%); }
  2526. .bp3-drawer.bp3-position-left.bp3-overlay-enter-active, .bp3-drawer.bp3-position-left.bp3-overlay-appear-active{
  2527. -webkit-transform:translateX(0);
  2528. transform:translateX(0);
  2529. -webkit-transition-delay:0;
  2530. transition-delay:0;
  2531. -webkit-transition-duration:200ms;
  2532. transition-duration:200ms;
  2533. -webkit-transition-property:-webkit-transform;
  2534. transition-property:-webkit-transform;
  2535. transition-property:transform;
  2536. transition-property:transform, -webkit-transform;
  2537. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2538. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2539. .bp3-drawer.bp3-position-left.bp3-overlay-exit{
  2540. -webkit-transform:translateX(0);
  2541. transform:translateX(0); }
  2542. .bp3-drawer.bp3-position-left.bp3-overlay-exit-active{
  2543. -webkit-transform:translateX(-100%);
  2544. transform:translateX(-100%);
  2545. -webkit-transition-delay:0;
  2546. transition-delay:0;
  2547. -webkit-transition-duration:100ms;
  2548. transition-duration:100ms;
  2549. -webkit-transition-property:-webkit-transform;
  2550. transition-property:-webkit-transform;
  2551. transition-property:transform;
  2552. transition-property:transform, -webkit-transform;
  2553. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2554. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2555. .bp3-drawer.bp3-position-right{
  2556. bottom:0;
  2557. right:0;
  2558. top:0;
  2559. width:50%; }
  2560. .bp3-drawer.bp3-position-right.bp3-overlay-enter, .bp3-drawer.bp3-position-right.bp3-overlay-appear{
  2561. -webkit-transform:translateX(100%);
  2562. transform:translateX(100%); }
  2563. .bp3-drawer.bp3-position-right.bp3-overlay-enter-active, .bp3-drawer.bp3-position-right.bp3-overlay-appear-active{
  2564. -webkit-transform:translateX(0);
  2565. transform:translateX(0);
  2566. -webkit-transition-delay:0;
  2567. transition-delay:0;
  2568. -webkit-transition-duration:200ms;
  2569. transition-duration:200ms;
  2570. -webkit-transition-property:-webkit-transform;
  2571. transition-property:-webkit-transform;
  2572. transition-property:transform;
  2573. transition-property:transform, -webkit-transform;
  2574. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2575. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2576. .bp3-drawer.bp3-position-right.bp3-overlay-exit{
  2577. -webkit-transform:translateX(0);
  2578. transform:translateX(0); }
  2579. .bp3-drawer.bp3-position-right.bp3-overlay-exit-active{
  2580. -webkit-transform:translateX(100%);
  2581. transform:translateX(100%);
  2582. -webkit-transition-delay:0;
  2583. transition-delay:0;
  2584. -webkit-transition-duration:100ms;
  2585. transition-duration:100ms;
  2586. -webkit-transition-property:-webkit-transform;
  2587. transition-property:-webkit-transform;
  2588. transition-property:transform;
  2589. transition-property:transform, -webkit-transform;
  2590. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2591. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2592. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2593. .bp3-position-right):not(.bp3-vertical){
  2594. bottom:0;
  2595. right:0;
  2596. top:0;
  2597. width:50%; }
  2598. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2599. .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2600. .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear{
  2601. -webkit-transform:translateX(100%);
  2602. transform:translateX(100%); }
  2603. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2604. .bp3-position-right):not(.bp3-vertical).bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2605. .bp3-position-right):not(.bp3-vertical).bp3-overlay-appear-active{
  2606. -webkit-transform:translateX(0);
  2607. transform:translateX(0);
  2608. -webkit-transition-delay:0;
  2609. transition-delay:0;
  2610. -webkit-transition-duration:200ms;
  2611. transition-duration:200ms;
  2612. -webkit-transition-property:-webkit-transform;
  2613. transition-property:-webkit-transform;
  2614. transition-property:transform;
  2615. transition-property:transform, -webkit-transform;
  2616. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2617. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2618. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2619. .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit{
  2620. -webkit-transform:translateX(0);
  2621. transform:translateX(0); }
  2622. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2623. .bp3-position-right):not(.bp3-vertical).bp3-overlay-exit-active{
  2624. -webkit-transform:translateX(100%);
  2625. transform:translateX(100%);
  2626. -webkit-transition-delay:0;
  2627. transition-delay:0;
  2628. -webkit-transition-duration:100ms;
  2629. transition-duration:100ms;
  2630. -webkit-transition-property:-webkit-transform;
  2631. transition-property:-webkit-transform;
  2632. transition-property:transform;
  2633. transition-property:transform, -webkit-transform;
  2634. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2635. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2636. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2637. .bp3-position-right).bp3-vertical{
  2638. bottom:0;
  2639. height:50%;
  2640. left:0;
  2641. right:0; }
  2642. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2643. .bp3-position-right).bp3-vertical.bp3-overlay-enter, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2644. .bp3-position-right).bp3-vertical.bp3-overlay-appear{
  2645. -webkit-transform:translateY(100%);
  2646. transform:translateY(100%); }
  2647. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2648. .bp3-position-right).bp3-vertical.bp3-overlay-enter-active, .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2649. .bp3-position-right).bp3-vertical.bp3-overlay-appear-active{
  2650. -webkit-transform:translateY(0);
  2651. transform:translateY(0);
  2652. -webkit-transition-delay:0;
  2653. transition-delay:0;
  2654. -webkit-transition-duration:200ms;
  2655. transition-duration:200ms;
  2656. -webkit-transition-property:-webkit-transform;
  2657. transition-property:-webkit-transform;
  2658. transition-property:transform;
  2659. transition-property:transform, -webkit-transform;
  2660. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2661. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2662. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2663. .bp3-position-right).bp3-vertical.bp3-overlay-exit{
  2664. -webkit-transform:translateY(0);
  2665. transform:translateY(0); }
  2666. .bp3-drawer:not(.bp3-position-top):not(.bp3-position-bottom):not(.bp3-position-left):not(
  2667. .bp3-position-right).bp3-vertical.bp3-overlay-exit-active{
  2668. -webkit-transform:translateY(100%);
  2669. transform:translateY(100%);
  2670. -webkit-transition-delay:0;
  2671. transition-delay:0;
  2672. -webkit-transition-duration:100ms;
  2673. transition-duration:100ms;
  2674. -webkit-transition-property:-webkit-transform;
  2675. transition-property:-webkit-transform;
  2676. transition-property:transform;
  2677. transition-property:transform, -webkit-transform;
  2678. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  2679. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  2680. .bp3-drawer.bp3-dark,
  2681. .bp3-dark .bp3-drawer{
  2682. background:#30404d;
  2683. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);
  2684. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);
  2685. color:#f5f8fa; }
  2686. .bp3-drawer-header{
  2687. -webkit-box-align:center;
  2688. -ms-flex-align:center;
  2689. align-items:center;
  2690. border-radius:0;
  2691. -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);
  2692. box-shadow:0 1px 0 rgba(16, 22, 26, 0.15);
  2693. display:-webkit-box;
  2694. display:-ms-flexbox;
  2695. display:flex;
  2696. -webkit-box-flex:0;
  2697. -ms-flex:0 0 auto;
  2698. flex:0 0 auto;
  2699. min-height:40px;
  2700. padding:5px;
  2701. padding-left:20px;
  2702. position:relative; }
  2703. .bp3-drawer-header .bp3-icon-large,
  2704. .bp3-drawer-header .bp3-icon{
  2705. color:#5c7080;
  2706. -webkit-box-flex:0;
  2707. -ms-flex:0 0 auto;
  2708. flex:0 0 auto;
  2709. margin-right:10px; }
  2710. .bp3-drawer-header .bp3-heading{
  2711. overflow:hidden;
  2712. text-overflow:ellipsis;
  2713. white-space:nowrap;
  2714. word-wrap:normal;
  2715. -webkit-box-flex:1;
  2716. -ms-flex:1 1 auto;
  2717. flex:1 1 auto;
  2718. line-height:inherit;
  2719. margin:0; }
  2720. .bp3-drawer-header .bp3-heading:last-child{
  2721. margin-right:20px; }
  2722. .bp3-dark .bp3-drawer-header{
  2723. -webkit-box-shadow:0 1px 0 rgba(16, 22, 26, 0.4);
  2724. box-shadow:0 1px 0 rgba(16, 22, 26, 0.4); }
  2725. .bp3-dark .bp3-drawer-header .bp3-icon-large,
  2726. .bp3-dark .bp3-drawer-header .bp3-icon{
  2727. color:#a7b6c2; }
  2728. .bp3-drawer-body{
  2729. -webkit-box-flex:1;
  2730. -ms-flex:1 1 auto;
  2731. flex:1 1 auto;
  2732. line-height:18px;
  2733. overflow:auto; }
  2734. .bp3-drawer-footer{
  2735. -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);
  2736. box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);
  2737. -webkit-box-flex:0;
  2738. -ms-flex:0 0 auto;
  2739. flex:0 0 auto;
  2740. padding:10px 20px;
  2741. position:relative; }
  2742. .bp3-dark .bp3-drawer-footer{
  2743. -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4);
  2744. box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.4); }
  2745. .bp3-editable-text{
  2746. cursor:text;
  2747. display:inline-block;
  2748. max-width:100%;
  2749. position:relative;
  2750. vertical-align:top;
  2751. white-space:nowrap; }
  2752. .bp3-editable-text::before{
  2753. bottom:-3px;
  2754. left:-3px;
  2755. position:absolute;
  2756. right:-3px;
  2757. top:-3px;
  2758. border-radius:3px;
  2759. content:"";
  2760. -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2761. transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2762. transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  2763. transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9), box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9); }
  2764. .bp3-editable-text:hover::before{
  2765. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15);
  2766. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15); }
  2767. .bp3-editable-text.bp3-editable-text-editing::before{
  2768. background-color:#ffffff;
  2769. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  2770. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  2771. .bp3-editable-text.bp3-disabled::before{
  2772. -webkit-box-shadow:none;
  2773. box-shadow:none; }
  2774. .bp3-editable-text.bp3-intent-primary .bp3-editable-text-input,
  2775. .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{
  2776. color:#137cbd; }
  2777. .bp3-editable-text.bp3-intent-primary:hover::before{
  2778. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4);
  2779. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(19, 124, 189, 0.4); }
  2780. .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{
  2781. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  2782. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  2783. .bp3-editable-text.bp3-intent-success .bp3-editable-text-input,
  2784. .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{
  2785. color:#0f9960; }
  2786. .bp3-editable-text.bp3-intent-success:hover::before{
  2787. -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4);
  2788. box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px rgba(15, 153, 96, 0.4); }
  2789. .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{
  2790. -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  2791. box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  2792. .bp3-editable-text.bp3-intent-warning .bp3-editable-text-input,
  2793. .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{
  2794. color:#d9822b; }
  2795. .bp3-editable-text.bp3-intent-warning:hover::before{
  2796. -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4);
  2797. box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px rgba(217, 130, 43, 0.4); }
  2798. .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{
  2799. -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  2800. box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  2801. .bp3-editable-text.bp3-intent-danger .bp3-editable-text-input,
  2802. .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{
  2803. color:#db3737; }
  2804. .bp3-editable-text.bp3-intent-danger:hover::before{
  2805. -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4);
  2806. box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px rgba(219, 55, 55, 0.4); }
  2807. .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{
  2808. -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  2809. box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  2810. .bp3-dark .bp3-editable-text:hover::before{
  2811. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  2812. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15); }
  2813. .bp3-dark .bp3-editable-text.bp3-editable-text-editing::before{
  2814. background-color:rgba(16, 22, 26, 0.3);
  2815. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  2816. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  2817. .bp3-dark .bp3-editable-text.bp3-disabled::before{
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none; }
  2820. .bp3-dark .bp3-editable-text.bp3-intent-primary .bp3-editable-text-content{
  2821. color:#48aff0; }
  2822. .bp3-dark .bp3-editable-text.bp3-intent-primary:hover::before{
  2823. -webkit-box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4);
  2824. box-shadow:0 0 0 0 rgba(72, 175, 240, 0), 0 0 0 0 rgba(72, 175, 240, 0), inset 0 0 0 1px rgba(72, 175, 240, 0.4); }
  2825. .bp3-dark .bp3-editable-text.bp3-intent-primary.bp3-editable-text-editing::before{
  2826. -webkit-box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  2827. box-shadow:0 0 0 1px #48aff0, 0 0 0 3px rgba(72, 175, 240, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  2828. .bp3-dark .bp3-editable-text.bp3-intent-success .bp3-editable-text-content{
  2829. color:#3dcc91; }
  2830. .bp3-dark .bp3-editable-text.bp3-intent-success:hover::before{
  2831. -webkit-box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4);
  2832. box-shadow:0 0 0 0 rgba(61, 204, 145, 0), 0 0 0 0 rgba(61, 204, 145, 0), inset 0 0 0 1px rgba(61, 204, 145, 0.4); }
  2833. .bp3-dark .bp3-editable-text.bp3-intent-success.bp3-editable-text-editing::before{
  2834. -webkit-box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  2835. box-shadow:0 0 0 1px #3dcc91, 0 0 0 3px rgba(61, 204, 145, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  2836. .bp3-dark .bp3-editable-text.bp3-intent-warning .bp3-editable-text-content{
  2837. color:#ffb366; }
  2838. .bp3-dark .bp3-editable-text.bp3-intent-warning:hover::before{
  2839. -webkit-box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4);
  2840. box-shadow:0 0 0 0 rgba(255, 179, 102, 0), 0 0 0 0 rgba(255, 179, 102, 0), inset 0 0 0 1px rgba(255, 179, 102, 0.4); }
  2841. .bp3-dark .bp3-editable-text.bp3-intent-warning.bp3-editable-text-editing::before{
  2842. -webkit-box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  2843. box-shadow:0 0 0 1px #ffb366, 0 0 0 3px rgba(255, 179, 102, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  2844. .bp3-dark .bp3-editable-text.bp3-intent-danger .bp3-editable-text-content{
  2845. color:#ff7373; }
  2846. .bp3-dark .bp3-editable-text.bp3-intent-danger:hover::before{
  2847. -webkit-box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4);
  2848. box-shadow:0 0 0 0 rgba(255, 115, 115, 0), 0 0 0 0 rgba(255, 115, 115, 0), inset 0 0 0 1px rgba(255, 115, 115, 0.4); }
  2849. .bp3-dark .bp3-editable-text.bp3-intent-danger.bp3-editable-text-editing::before{
  2850. -webkit-box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  2851. box-shadow:0 0 0 1px #ff7373, 0 0 0 3px rgba(255, 115, 115, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  2852. .bp3-editable-text-input,
  2853. .bp3-editable-text-content{
  2854. color:inherit;
  2855. display:inherit;
  2856. font:inherit;
  2857. letter-spacing:inherit;
  2858. max-width:inherit;
  2859. min-width:inherit;
  2860. position:relative;
  2861. resize:none;
  2862. text-transform:inherit;
  2863. vertical-align:top; }
  2864. .bp3-editable-text-input{
  2865. background:none;
  2866. border:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. padding:0;
  2870. white-space:pre-wrap;
  2871. width:100%; }
  2872. .bp3-editable-text-input::-webkit-input-placeholder{
  2873. color:rgba(92, 112, 128, 0.6);
  2874. opacity:1; }
  2875. .bp3-editable-text-input::-moz-placeholder{
  2876. color:rgba(92, 112, 128, 0.6);
  2877. opacity:1; }
  2878. .bp3-editable-text-input:-ms-input-placeholder{
  2879. color:rgba(92, 112, 128, 0.6);
  2880. opacity:1; }
  2881. .bp3-editable-text-input::-ms-input-placeholder{
  2882. color:rgba(92, 112, 128, 0.6);
  2883. opacity:1; }
  2884. .bp3-editable-text-input::placeholder{
  2885. color:rgba(92, 112, 128, 0.6);
  2886. opacity:1; }
  2887. .bp3-editable-text-input:focus{
  2888. outline:none; }
  2889. .bp3-editable-text-input::-ms-clear{
  2890. display:none; }
  2891. .bp3-editable-text-content{
  2892. overflow:hidden;
  2893. padding-right:2px;
  2894. text-overflow:ellipsis;
  2895. white-space:pre; }
  2896. .bp3-editable-text-editing > .bp3-editable-text-content{
  2897. left:0;
  2898. position:absolute;
  2899. visibility:hidden; }
  2900. .bp3-editable-text-placeholder > .bp3-editable-text-content{
  2901. color:rgba(92, 112, 128, 0.6); }
  2902. .bp3-dark .bp3-editable-text-placeholder > .bp3-editable-text-content{
  2903. color:rgba(167, 182, 194, 0.6); }
  2904. .bp3-editable-text.bp3-multiline{
  2905. display:block; }
  2906. .bp3-editable-text.bp3-multiline .bp3-editable-text-content{
  2907. overflow:auto;
  2908. white-space:pre-wrap;
  2909. word-wrap:break-word; }
  2910. .bp3-divider{
  2911. border-bottom:1px solid rgba(16, 22, 26, 0.15);
  2912. border-right:1px solid rgba(16, 22, 26, 0.15);
  2913. margin:5px; }
  2914. .bp3-dark .bp3-divider{
  2915. border-color:rgba(16, 22, 26, 0.4); }
  2916. .bp3-control-group{
  2917. -webkit-transform:translateZ(0);
  2918. transform:translateZ(0);
  2919. display:-webkit-box;
  2920. display:-ms-flexbox;
  2921. display:flex;
  2922. -webkit-box-orient:horizontal;
  2923. -webkit-box-direction:normal;
  2924. -ms-flex-direction:row;
  2925. flex-direction:row;
  2926. -webkit-box-align:stretch;
  2927. -ms-flex-align:stretch;
  2928. align-items:stretch; }
  2929. .bp3-control-group > *{
  2930. -webkit-box-flex:0;
  2931. -ms-flex-positive:0;
  2932. flex-grow:0;
  2933. -ms-flex-negative:0;
  2934. flex-shrink:0; }
  2935. .bp3-control-group > .bp3-fill{
  2936. -webkit-box-flex:1;
  2937. -ms-flex-positive:1;
  2938. flex-grow:1;
  2939. -ms-flex-negative:1;
  2940. flex-shrink:1; }
  2941. .bp3-control-group .bp3-button,
  2942. .bp3-control-group .bp3-html-select,
  2943. .bp3-control-group .bp3-input,
  2944. .bp3-control-group .bp3-select{
  2945. position:relative; }
  2946. .bp3-control-group .bp3-input{
  2947. border-radius:inherit;
  2948. z-index:2; }
  2949. .bp3-control-group .bp3-input:focus{
  2950. border-radius:3px;
  2951. z-index:14; }
  2952. .bp3-control-group .bp3-input[class*="bp3-intent"]{
  2953. z-index:13; }
  2954. .bp3-control-group .bp3-input[class*="bp3-intent"]:focus{
  2955. z-index:15; }
  2956. .bp3-control-group .bp3-input[readonly], .bp3-control-group .bp3-input:disabled, .bp3-control-group .bp3-input.bp3-disabled{
  2957. z-index:1; }
  2958. .bp3-control-group .bp3-input-group[class*="bp3-intent"] .bp3-input{
  2959. z-index:13; }
  2960. .bp3-control-group .bp3-input-group[class*="bp3-intent"] .bp3-input:focus{
  2961. z-index:15; }
  2962. .bp3-control-group .bp3-button,
  2963. .bp3-control-group .bp3-html-select select,
  2964. .bp3-control-group .bp3-select select{
  2965. -webkit-transform:translateZ(0);
  2966. transform:translateZ(0);
  2967. border-radius:inherit;
  2968. z-index:4; }
  2969. .bp3-control-group .bp3-button:focus,
  2970. .bp3-control-group .bp3-html-select select:focus,
  2971. .bp3-control-group .bp3-select select:focus{
  2972. z-index:5; }
  2973. .bp3-control-group .bp3-button:hover,
  2974. .bp3-control-group .bp3-html-select select:hover,
  2975. .bp3-control-group .bp3-select select:hover{
  2976. z-index:6; }
  2977. .bp3-control-group .bp3-button:active,
  2978. .bp3-control-group .bp3-html-select select:active,
  2979. .bp3-control-group .bp3-select select:active{
  2980. z-index:7; }
  2981. .bp3-control-group .bp3-button[readonly], .bp3-control-group .bp3-button:disabled, .bp3-control-group .bp3-button.bp3-disabled,
  2982. .bp3-control-group .bp3-html-select select[readonly],
  2983. .bp3-control-group .bp3-html-select select:disabled,
  2984. .bp3-control-group .bp3-html-select select.bp3-disabled,
  2985. .bp3-control-group .bp3-select select[readonly],
  2986. .bp3-control-group .bp3-select select:disabled,
  2987. .bp3-control-group .bp3-select select.bp3-disabled{
  2988. z-index:3; }
  2989. .bp3-control-group .bp3-button[class*="bp3-intent"],
  2990. .bp3-control-group .bp3-html-select select[class*="bp3-intent"],
  2991. .bp3-control-group .bp3-select select[class*="bp3-intent"]{
  2992. z-index:9; }
  2993. .bp3-control-group .bp3-button[class*="bp3-intent"]:focus,
  2994. .bp3-control-group .bp3-html-select select[class*="bp3-intent"]:focus,
  2995. .bp3-control-group .bp3-select select[class*="bp3-intent"]:focus{
  2996. z-index:10; }
  2997. .bp3-control-group .bp3-button[class*="bp3-intent"]:hover,
  2998. .bp3-control-group .bp3-html-select select[class*="bp3-intent"]:hover,
  2999. .bp3-control-group .bp3-select select[class*="bp3-intent"]:hover{
  3000. z-index:11; }
  3001. .bp3-control-group .bp3-button[class*="bp3-intent"]:active,
  3002. .bp3-control-group .bp3-html-select select[class*="bp3-intent"]:active,
  3003. .bp3-control-group .bp3-select select[class*="bp3-intent"]:active{
  3004. z-index:12; }
  3005. .bp3-control-group .bp3-button[class*="bp3-intent"][readonly], .bp3-control-group .bp3-button[class*="bp3-intent"]:disabled, .bp3-control-group .bp3-button[class*="bp3-intent"].bp3-disabled,
  3006. .bp3-control-group .bp3-html-select select[class*="bp3-intent"][readonly],
  3007. .bp3-control-group .bp3-html-select select[class*="bp3-intent"]:disabled,
  3008. .bp3-control-group .bp3-html-select select[class*="bp3-intent"].bp3-disabled,
  3009. .bp3-control-group .bp3-select select[class*="bp3-intent"][readonly],
  3010. .bp3-control-group .bp3-select select[class*="bp3-intent"]:disabled,
  3011. .bp3-control-group .bp3-select select[class*="bp3-intent"].bp3-disabled{
  3012. z-index:8; }
  3013. .bp3-control-group .bp3-input-group > .bp3-icon,
  3014. .bp3-control-group .bp3-input-group > .bp3-button,
  3015. .bp3-control-group .bp3-input-group > .bp3-input-action{
  3016. z-index:16; }
  3017. .bp3-control-group .bp3-select::after,
  3018. .bp3-control-group .bp3-html-select::after,
  3019. .bp3-control-group .bp3-select > .bp3-icon,
  3020. .bp3-control-group .bp3-html-select > .bp3-icon{
  3021. z-index:17; }
  3022. .bp3-control-group .bp3-select:focus-within{
  3023. z-index:5; }
  3024. .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){
  3025. margin-right:-1px; }
  3026. .bp3-control-group:not(.bp3-vertical) > .bp3-divider:not(:first-child){
  3027. margin-left:6px; }
  3028. .bp3-dark .bp3-control-group:not(.bp3-vertical) > *:not(.bp3-divider){
  3029. margin-right:0; }
  3030. .bp3-dark .bp3-control-group:not(.bp3-vertical) > .bp3-button + .bp3-button{
  3031. margin-left:1px; }
  3032. .bp3-control-group .bp3-popover-wrapper,
  3033. .bp3-control-group .bp3-popover-target{
  3034. border-radius:inherit; }
  3035. .bp3-control-group > :first-child{
  3036. border-radius:3px 0 0 3px; }
  3037. .bp3-control-group > :last-child{
  3038. border-radius:0 3px 3px 0;
  3039. margin-right:0; }
  3040. .bp3-control-group > :only-child{
  3041. border-radius:3px;
  3042. margin-right:0; }
  3043. .bp3-control-group .bp3-input-group .bp3-button{
  3044. border-radius:3px; }
  3045. .bp3-control-group .bp3-numeric-input:not(:first-child) .bp3-input-group{
  3046. border-bottom-left-radius:0;
  3047. border-top-left-radius:0; }
  3048. .bp3-control-group.bp3-fill{
  3049. width:100%; }
  3050. .bp3-control-group > .bp3-fill{
  3051. -webkit-box-flex:1;
  3052. -ms-flex:1 1 auto;
  3053. flex:1 1 auto; }
  3054. .bp3-control-group.bp3-fill > *:not(.bp3-fixed){
  3055. -webkit-box-flex:1;
  3056. -ms-flex:1 1 auto;
  3057. flex:1 1 auto; }
  3058. .bp3-control-group.bp3-vertical{
  3059. -webkit-box-orient:vertical;
  3060. -webkit-box-direction:normal;
  3061. -ms-flex-direction:column;
  3062. flex-direction:column; }
  3063. .bp3-control-group.bp3-vertical > *{
  3064. margin-top:-1px; }
  3065. .bp3-control-group.bp3-vertical > :first-child{
  3066. border-radius:3px 3px 0 0;
  3067. margin-top:0; }
  3068. .bp3-control-group.bp3-vertical > :last-child{
  3069. border-radius:0 0 3px 3px; }
  3070. .bp3-control{
  3071. cursor:pointer;
  3072. display:block;
  3073. margin-bottom:10px;
  3074. position:relative;
  3075. text-transform:none; }
  3076. .bp3-control input:checked ~ .bp3-control-indicator{
  3077. background-color:#137cbd;
  3078. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  3079. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  3080. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  3081. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  3082. color:#ffffff; }
  3083. .bp3-control:hover input:checked ~ .bp3-control-indicator{
  3084. background-color:#106ba3;
  3085. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  3086. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }
  3087. .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{
  3088. background:#0e5a8a;
  3089. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3090. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3091. .bp3-control input:disabled:checked ~ .bp3-control-indicator{
  3092. background:rgba(19, 124, 189, 0.5);
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none; }
  3095. .bp3-dark .bp3-control input:checked ~ .bp3-control-indicator{
  3096. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3097. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3098. .bp3-dark .bp3-control:hover input:checked ~ .bp3-control-indicator{
  3099. background-color:#106ba3;
  3100. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3101. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3102. .bp3-dark .bp3-control input:not(:disabled):active:checked ~ .bp3-control-indicator{
  3103. background-color:#0e5a8a;
  3104. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3105. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3106. .bp3-dark .bp3-control input:disabled:checked ~ .bp3-control-indicator{
  3107. background:rgba(14, 90, 138, 0.5);
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none; }
  3110. .bp3-control:not(.bp3-align-right){
  3111. padding-left:26px; }
  3112. .bp3-control:not(.bp3-align-right) .bp3-control-indicator{
  3113. margin-left:-26px; }
  3114. .bp3-control.bp3-align-right{
  3115. padding-right:26px; }
  3116. .bp3-control.bp3-align-right .bp3-control-indicator{
  3117. margin-right:-26px; }
  3118. .bp3-control.bp3-disabled{
  3119. color:rgba(92, 112, 128, 0.6);
  3120. cursor:not-allowed; }
  3121. .bp3-control.bp3-inline{
  3122. display:inline-block;
  3123. margin-right:20px; }
  3124. .bp3-control input{
  3125. left:0;
  3126. opacity:0;
  3127. position:absolute;
  3128. top:0;
  3129. z-index:-1; }
  3130. .bp3-control .bp3-control-indicator{
  3131. background-clip:padding-box;
  3132. background-color:#f5f8fa;
  3133. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  3134. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  3135. border:none;
  3136. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3137. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3138. cursor:pointer;
  3139. display:inline-block;
  3140. font-size:16px;
  3141. height:1em;
  3142. margin-right:10px;
  3143. margin-top:-3px;
  3144. position:relative;
  3145. -webkit-user-select:none;
  3146. -moz-user-select:none;
  3147. -ms-user-select:none;
  3148. user-select:none;
  3149. vertical-align:middle;
  3150. width:1em; }
  3151. .bp3-control .bp3-control-indicator::before{
  3152. content:"";
  3153. display:block;
  3154. height:1em;
  3155. width:1em; }
  3156. .bp3-control:hover .bp3-control-indicator{
  3157. background-color:#ebf1f5; }
  3158. .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{
  3159. background:#d8e1e8;
  3160. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3161. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3162. .bp3-control input:disabled ~ .bp3-control-indicator{
  3163. background:rgba(206, 217, 224, 0.5);
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. cursor:not-allowed; }
  3167. .bp3-control input:focus ~ .bp3-control-indicator{
  3168. outline:rgba(19, 124, 189, 0.6) auto 2px;
  3169. outline-offset:2px;
  3170. -moz-outline-radius:6px; }
  3171. .bp3-control.bp3-align-right .bp3-control-indicator{
  3172. float:right;
  3173. margin-left:10px;
  3174. margin-top:1px; }
  3175. .bp3-control.bp3-large{
  3176. font-size:16px; }
  3177. .bp3-control.bp3-large:not(.bp3-align-right){
  3178. padding-left:30px; }
  3179. .bp3-control.bp3-large:not(.bp3-align-right) .bp3-control-indicator{
  3180. margin-left:-30px; }
  3181. .bp3-control.bp3-large.bp3-align-right{
  3182. padding-right:30px; }
  3183. .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{
  3184. margin-right:-30px; }
  3185. .bp3-control.bp3-large .bp3-control-indicator{
  3186. font-size:20px; }
  3187. .bp3-control.bp3-large.bp3-align-right .bp3-control-indicator{
  3188. margin-top:0; }
  3189. .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{
  3190. background-color:#137cbd;
  3191. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0)));
  3192. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  3193. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  3194. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  3195. color:#ffffff; }
  3196. .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{
  3197. background-color:#106ba3;
  3198. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2);
  3199. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 -1px 0 rgba(16, 22, 26, 0.2); }
  3200. .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{
  3201. background:#0e5a8a;
  3202. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3203. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3204. .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{
  3205. background:rgba(19, 124, 189, 0.5);
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none; }
  3208. .bp3-dark .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator{
  3209. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3210. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3211. .bp3-dark .bp3-control.bp3-checkbox:hover input:indeterminate ~ .bp3-control-indicator{
  3212. background-color:#106ba3;
  3213. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3214. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3215. .bp3-dark .bp3-control.bp3-checkbox input:not(:disabled):active:indeterminate ~ .bp3-control-indicator{
  3216. background-color:#0e5a8a;
  3217. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3218. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3219. .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{
  3220. background:rgba(14, 90, 138, 0.5);
  3221. -webkit-box-shadow:none;
  3222. box-shadow:none; }
  3223. .bp3-control.bp3-checkbox .bp3-control-indicator{
  3224. border-radius:3px; }
  3225. .bp3-control.bp3-checkbox input:checked ~ .bp3-control-indicator::before{
  3226. background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z' fill='white'/%3e%3c/svg%3e"); }
  3227. .bp3-control.bp3-checkbox input:indeterminate ~ .bp3-control-indicator::before{
  3228. background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z' fill='white'/%3e%3c/svg%3e"); }
  3229. .bp3-control.bp3-radio .bp3-control-indicator{
  3230. border-radius:50%; }
  3231. .bp3-control.bp3-radio input:checked ~ .bp3-control-indicator::before{
  3232. background-image:radial-gradient(#ffffff, #ffffff 28%, transparent 32%); }
  3233. .bp3-control.bp3-radio input:checked:disabled ~ .bp3-control-indicator::before{
  3234. opacity:0.5; }
  3235. .bp3-control.bp3-radio input:focus ~ .bp3-control-indicator{
  3236. -moz-outline-radius:16px; }
  3237. .bp3-control.bp3-switch input ~ .bp3-control-indicator{
  3238. background:rgba(167, 182, 194, 0.5); }
  3239. .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{
  3240. background:rgba(115, 134, 148, 0.5); }
  3241. .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{
  3242. background:rgba(92, 112, 128, 0.5); }
  3243. .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{
  3244. background:rgba(206, 217, 224, 0.5); }
  3245. .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{
  3246. background:rgba(255, 255, 255, 0.8); }
  3247. .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{
  3248. background:#137cbd; }
  3249. .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{
  3250. background:#106ba3; }
  3251. .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{
  3252. background:#0e5a8a; }
  3253. .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{
  3254. background:rgba(19, 124, 189, 0.5); }
  3255. .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{
  3256. background:rgba(255, 255, 255, 0.8); }
  3257. .bp3-control.bp3-switch:not(.bp3-align-right){
  3258. padding-left:38px; }
  3259. .bp3-control.bp3-switch:not(.bp3-align-right) .bp3-control-indicator{
  3260. margin-left:-38px; }
  3261. .bp3-control.bp3-switch.bp3-align-right{
  3262. padding-right:38px; }
  3263. .bp3-control.bp3-switch.bp3-align-right .bp3-control-indicator{
  3264. margin-right:-38px; }
  3265. .bp3-control.bp3-switch .bp3-control-indicator{
  3266. border:none;
  3267. border-radius:1.75em;
  3268. -webkit-box-shadow:none !important;
  3269. box-shadow:none !important;
  3270. min-width:1.75em;
  3271. -webkit-transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3272. transition:background-color 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3273. width:auto; }
  3274. .bp3-control.bp3-switch .bp3-control-indicator::before{
  3275. background:#ffffff;
  3276. border-radius:50%;
  3277. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  3278. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  3279. height:calc(1em - 4px);
  3280. left:0;
  3281. margin:2px;
  3282. position:absolute;
  3283. -webkit-transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3284. transition:left 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3285. width:calc(1em - 4px); }
  3286. .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{
  3287. left:calc(100% - 1em); }
  3288. .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right){
  3289. padding-left:45px; }
  3290. .bp3-control.bp3-switch.bp3-large:not(.bp3-align-right) .bp3-control-indicator{
  3291. margin-left:-45px; }
  3292. .bp3-control.bp3-switch.bp3-large.bp3-align-right{
  3293. padding-right:45px; }
  3294. .bp3-control.bp3-switch.bp3-large.bp3-align-right .bp3-control-indicator{
  3295. margin-right:-45px; }
  3296. .bp3-dark .bp3-control.bp3-switch input ~ .bp3-control-indicator{
  3297. background:rgba(16, 22, 26, 0.5); }
  3298. .bp3-dark .bp3-control.bp3-switch:hover input ~ .bp3-control-indicator{
  3299. background:rgba(16, 22, 26, 0.7); }
  3300. .bp3-dark .bp3-control.bp3-switch input:not(:disabled):active ~ .bp3-control-indicator{
  3301. background:rgba(16, 22, 26, 0.9); }
  3302. .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator{
  3303. background:rgba(57, 75, 89, 0.5); }
  3304. .bp3-dark .bp3-control.bp3-switch input:disabled ~ .bp3-control-indicator::before{
  3305. background:rgba(16, 22, 26, 0.4); }
  3306. .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator{
  3307. background:#137cbd; }
  3308. .bp3-dark .bp3-control.bp3-switch:hover input:checked ~ .bp3-control-indicator{
  3309. background:#106ba3; }
  3310. .bp3-dark .bp3-control.bp3-switch input:checked:not(:disabled):active ~ .bp3-control-indicator{
  3311. background:#0e5a8a; }
  3312. .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator{
  3313. background:rgba(14, 90, 138, 0.5); }
  3314. .bp3-dark .bp3-control.bp3-switch input:checked:disabled ~ .bp3-control-indicator::before{
  3315. background:rgba(16, 22, 26, 0.4); }
  3316. .bp3-dark .bp3-control.bp3-switch .bp3-control-indicator::before{
  3317. background:#394b59;
  3318. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3319. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3320. .bp3-dark .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator::before{
  3321. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  3322. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }
  3323. .bp3-control.bp3-switch .bp3-switch-inner-text{
  3324. font-size:0.7em;
  3325. text-align:center; }
  3326. .bp3-control.bp3-switch .bp3-control-indicator-child:first-child{
  3327. line-height:0;
  3328. margin-left:0.5em;
  3329. margin-right:1.2em;
  3330. visibility:hidden; }
  3331. .bp3-control.bp3-switch .bp3-control-indicator-child:last-child{
  3332. line-height:1em;
  3333. margin-left:1.2em;
  3334. margin-right:0.5em;
  3335. visibility:visible; }
  3336. .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:first-child{
  3337. line-height:1em;
  3338. visibility:visible; }
  3339. .bp3-control.bp3-switch input:checked ~ .bp3-control-indicator .bp3-control-indicator-child:last-child{
  3340. line-height:0;
  3341. visibility:hidden; }
  3342. .bp3-dark .bp3-control{
  3343. color:#f5f8fa; }
  3344. .bp3-dark .bp3-control.bp3-disabled{
  3345. color:rgba(167, 182, 194, 0.6); }
  3346. .bp3-dark .bp3-control .bp3-control-indicator{
  3347. background-color:#394b59;
  3348. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  3349. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  3350. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3351. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3352. .bp3-dark .bp3-control:hover .bp3-control-indicator{
  3353. background-color:#30404d; }
  3354. .bp3-dark .bp3-control input:not(:disabled):active ~ .bp3-control-indicator{
  3355. background:#202b33;
  3356. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3357. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3358. .bp3-dark .bp3-control input:disabled ~ .bp3-control-indicator{
  3359. background:rgba(57, 75, 89, 0.5);
  3360. -webkit-box-shadow:none;
  3361. box-shadow:none;
  3362. cursor:not-allowed; }
  3363. .bp3-dark .bp3-control.bp3-checkbox input:disabled:checked ~ .bp3-control-indicator, .bp3-dark .bp3-control.bp3-checkbox input:disabled:indeterminate ~ .bp3-control-indicator{
  3364. color:rgba(167, 182, 194, 0.6); }
  3365. .bp3-file-input{
  3366. cursor:pointer;
  3367. display:inline-block;
  3368. height:30px;
  3369. position:relative; }
  3370. .bp3-file-input input{
  3371. margin:0;
  3372. min-width:200px;
  3373. opacity:0; }
  3374. .bp3-file-input input:disabled + .bp3-file-upload-input,
  3375. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{
  3376. background:rgba(206, 217, 224, 0.5);
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. color:rgba(92, 112, 128, 0.6);
  3380. cursor:not-allowed;
  3381. resize:none; }
  3382. .bp3-file-input input:disabled + .bp3-file-upload-input::after,
  3383. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{
  3384. background-color:rgba(206, 217, 224, 0.5);
  3385. background-image:none;
  3386. -webkit-box-shadow:none;
  3387. box-shadow:none;
  3388. color:rgba(92, 112, 128, 0.6);
  3389. cursor:not-allowed;
  3390. outline:none; }
  3391. .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active:hover,
  3392. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active,
  3393. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active:hover{
  3394. background:rgba(206, 217, 224, 0.7); }
  3395. .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input, .bp3-dark
  3396. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input{
  3397. background:rgba(57, 75, 89, 0.5);
  3398. -webkit-box-shadow:none;
  3399. box-shadow:none;
  3400. color:rgba(167, 182, 194, 0.6); }
  3401. .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after, .bp3-dark
  3402. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after{
  3403. background-color:rgba(57, 75, 89, 0.5);
  3404. background-image:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. color:rgba(167, 182, 194, 0.6); }
  3408. .bp3-dark .bp3-file-input input:disabled + .bp3-file-upload-input::after.bp3-active, .bp3-dark
  3409. .bp3-file-input input.bp3-disabled + .bp3-file-upload-input::after.bp3-active{
  3410. background:rgba(57, 75, 89, 0.7); }
  3411. .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{
  3412. color:#182026; }
  3413. .bp3-dark .bp3-file-input.bp3-file-input-has-selection .bp3-file-upload-input{
  3414. color:#f5f8fa; }
  3415. .bp3-file-input.bp3-fill{
  3416. width:100%; }
  3417. .bp3-file-input.bp3-large,
  3418. .bp3-large .bp3-file-input{
  3419. height:40px; }
  3420. .bp3-file-input .bp3-file-upload-input-custom-text::after{
  3421. content:attr(bp3-button-text); }
  3422. .bp3-file-upload-input{
  3423. -webkit-appearance:none;
  3424. -moz-appearance:none;
  3425. appearance:none;
  3426. background:#ffffff;
  3427. border:none;
  3428. border-radius:3px;
  3429. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3430. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3431. color:#182026;
  3432. font-size:14px;
  3433. font-weight:400;
  3434. height:30px;
  3435. line-height:30px;
  3436. outline:none;
  3437. padding:0 10px;
  3438. -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3439. transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3440. transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3441. transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3442. vertical-align:middle;
  3443. overflow:hidden;
  3444. text-overflow:ellipsis;
  3445. white-space:nowrap;
  3446. word-wrap:normal;
  3447. color:rgba(92, 112, 128, 0.6);
  3448. left:0;
  3449. padding-right:80px;
  3450. position:absolute;
  3451. right:0;
  3452. top:0;
  3453. -webkit-user-select:none;
  3454. -moz-user-select:none;
  3455. -ms-user-select:none;
  3456. user-select:none; }
  3457. .bp3-file-upload-input::-webkit-input-placeholder{
  3458. color:rgba(92, 112, 128, 0.6);
  3459. opacity:1; }
  3460. .bp3-file-upload-input::-moz-placeholder{
  3461. color:rgba(92, 112, 128, 0.6);
  3462. opacity:1; }
  3463. .bp3-file-upload-input:-ms-input-placeholder{
  3464. color:rgba(92, 112, 128, 0.6);
  3465. opacity:1; }
  3466. .bp3-file-upload-input::-ms-input-placeholder{
  3467. color:rgba(92, 112, 128, 0.6);
  3468. opacity:1; }
  3469. .bp3-file-upload-input::placeholder{
  3470. color:rgba(92, 112, 128, 0.6);
  3471. opacity:1; }
  3472. .bp3-file-upload-input:focus, .bp3-file-upload-input.bp3-active{
  3473. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3474. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3475. .bp3-file-upload-input[type="search"], .bp3-file-upload-input.bp3-round{
  3476. border-radius:30px;
  3477. -webkit-box-sizing:border-box;
  3478. box-sizing:border-box;
  3479. padding-left:10px; }
  3480. .bp3-file-upload-input[readonly]{
  3481. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);
  3482. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }
  3483. .bp3-file-upload-input:disabled, .bp3-file-upload-input.bp3-disabled{
  3484. background:rgba(206, 217, 224, 0.5);
  3485. -webkit-box-shadow:none;
  3486. box-shadow:none;
  3487. color:rgba(92, 112, 128, 0.6);
  3488. cursor:not-allowed;
  3489. resize:none; }
  3490. .bp3-file-upload-input::after{
  3491. background-color:#f5f8fa;
  3492. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  3493. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  3494. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3495. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3496. color:#182026;
  3497. min-height:24px;
  3498. min-width:24px;
  3499. overflow:hidden;
  3500. text-overflow:ellipsis;
  3501. white-space:nowrap;
  3502. word-wrap:normal;
  3503. border-radius:3px;
  3504. content:"Browse";
  3505. line-height:24px;
  3506. margin:3px;
  3507. position:absolute;
  3508. right:0;
  3509. text-align:center;
  3510. top:0;
  3511. width:70px; }
  3512. .bp3-file-upload-input::after:hover{
  3513. background-clip:padding-box;
  3514. background-color:#ebf1f5;
  3515. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3516. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }
  3517. .bp3-file-upload-input::after:active, .bp3-file-upload-input::after.bp3-active{
  3518. background-color:#d8e1e8;
  3519. background-image:none;
  3520. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3521. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3522. .bp3-file-upload-input::after:disabled, .bp3-file-upload-input::after.bp3-disabled{
  3523. background-color:rgba(206, 217, 224, 0.5);
  3524. background-image:none;
  3525. -webkit-box-shadow:none;
  3526. box-shadow:none;
  3527. color:rgba(92, 112, 128, 0.6);
  3528. cursor:not-allowed;
  3529. outline:none; }
  3530. .bp3-file-upload-input::after:disabled.bp3-active, .bp3-file-upload-input::after:disabled.bp3-active:hover, .bp3-file-upload-input::after.bp3-disabled.bp3-active, .bp3-file-upload-input::after.bp3-disabled.bp3-active:hover{
  3531. background:rgba(206, 217, 224, 0.7); }
  3532. .bp3-file-upload-input:hover::after{
  3533. background-clip:padding-box;
  3534. background-color:#ebf1f5;
  3535. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3536. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }
  3537. .bp3-file-upload-input:active::after{
  3538. background-color:#d8e1e8;
  3539. background-image:none;
  3540. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3541. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3542. .bp3-large .bp3-file-upload-input{
  3543. font-size:16px;
  3544. height:40px;
  3545. line-height:40px;
  3546. padding-right:95px; }
  3547. .bp3-large .bp3-file-upload-input[type="search"], .bp3-large .bp3-file-upload-input.bp3-round{
  3548. padding:0 15px; }
  3549. .bp3-large .bp3-file-upload-input::after{
  3550. min-height:30px;
  3551. min-width:30px;
  3552. line-height:30px;
  3553. margin:5px;
  3554. width:85px; }
  3555. .bp3-dark .bp3-file-upload-input{
  3556. background:rgba(16, 22, 26, 0.3);
  3557. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3558. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3559. color:#f5f8fa;
  3560. color:rgba(167, 182, 194, 0.6); }
  3561. .bp3-dark .bp3-file-upload-input::-webkit-input-placeholder{
  3562. color:rgba(167, 182, 194, 0.6); }
  3563. .bp3-dark .bp3-file-upload-input::-moz-placeholder{
  3564. color:rgba(167, 182, 194, 0.6); }
  3565. .bp3-dark .bp3-file-upload-input:-ms-input-placeholder{
  3566. color:rgba(167, 182, 194, 0.6); }
  3567. .bp3-dark .bp3-file-upload-input::-ms-input-placeholder{
  3568. color:rgba(167, 182, 194, 0.6); }
  3569. .bp3-dark .bp3-file-upload-input::placeholder{
  3570. color:rgba(167, 182, 194, 0.6); }
  3571. .bp3-dark .bp3-file-upload-input:focus{
  3572. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3573. box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  3574. .bp3-dark .bp3-file-upload-input[readonly]{
  3575. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  3576. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }
  3577. .bp3-dark .bp3-file-upload-input:disabled, .bp3-dark .bp3-file-upload-input.bp3-disabled{
  3578. background:rgba(57, 75, 89, 0.5);
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. color:rgba(167, 182, 194, 0.6); }
  3582. .bp3-dark .bp3-file-upload-input::after{
  3583. background-color:#394b59;
  3584. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  3585. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  3586. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3587. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3588. color:#f5f8fa; }
  3589. .bp3-dark .bp3-file-upload-input::after:hover, .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{
  3590. color:#f5f8fa; }
  3591. .bp3-dark .bp3-file-upload-input::after:hover{
  3592. background-color:#30404d;
  3593. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3594. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3595. .bp3-dark .bp3-file-upload-input::after:active, .bp3-dark .bp3-file-upload-input::after.bp3-active{
  3596. background-color:#202b33;
  3597. background-image:none;
  3598. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3599. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3600. .bp3-dark .bp3-file-upload-input::after:disabled, .bp3-dark .bp3-file-upload-input::after.bp3-disabled{
  3601. background-color:rgba(57, 75, 89, 0.5);
  3602. background-image:none;
  3603. -webkit-box-shadow:none;
  3604. box-shadow:none;
  3605. color:rgba(167, 182, 194, 0.6); }
  3606. .bp3-dark .bp3-file-upload-input::after:disabled.bp3-active, .bp3-dark .bp3-file-upload-input::after.bp3-disabled.bp3-active{
  3607. background:rgba(57, 75, 89, 0.7); }
  3608. .bp3-dark .bp3-file-upload-input::after .bp3-button-spinner .bp3-spinner-head{
  3609. background:rgba(16, 22, 26, 0.5);
  3610. stroke:#8a9ba8; }
  3611. .bp3-dark .bp3-file-upload-input:hover::after{
  3612. background-color:#30404d;
  3613. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  3614. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  3615. .bp3-dark .bp3-file-upload-input:active::after{
  3616. background-color:#202b33;
  3617. background-image:none;
  3618. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  3619. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  3620. .bp3-file-upload-input::after{
  3621. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  3622. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }
  3623. .bp3-form-group{
  3624. display:-webkit-box;
  3625. display:-ms-flexbox;
  3626. display:flex;
  3627. -webkit-box-orient:vertical;
  3628. -webkit-box-direction:normal;
  3629. -ms-flex-direction:column;
  3630. flex-direction:column;
  3631. margin:0 0 15px; }
  3632. .bp3-form-group label.bp3-label{
  3633. margin-bottom:5px; }
  3634. .bp3-form-group .bp3-control{
  3635. margin-top:7px; }
  3636. .bp3-form-group .bp3-form-helper-text{
  3637. color:#5c7080;
  3638. font-size:12px;
  3639. margin-top:5px; }
  3640. .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{
  3641. color:#106ba3; }
  3642. .bp3-form-group.bp3-intent-success .bp3-form-helper-text{
  3643. color:#0d8050; }
  3644. .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{
  3645. color:#bf7326; }
  3646. .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{
  3647. color:#c23030; }
  3648. .bp3-form-group.bp3-inline{
  3649. -webkit-box-align:start;
  3650. -ms-flex-align:start;
  3651. align-items:flex-start;
  3652. -webkit-box-orient:horizontal;
  3653. -webkit-box-direction:normal;
  3654. -ms-flex-direction:row;
  3655. flex-direction:row; }
  3656. .bp3-form-group.bp3-inline.bp3-large label.bp3-label{
  3657. line-height:40px;
  3658. margin:0 10px 0 0; }
  3659. .bp3-form-group.bp3-inline label.bp3-label{
  3660. line-height:30px;
  3661. margin:0 10px 0 0; }
  3662. .bp3-form-group.bp3-disabled .bp3-label,
  3663. .bp3-form-group.bp3-disabled .bp3-text-muted,
  3664. .bp3-form-group.bp3-disabled .bp3-form-helper-text{
  3665. color:rgba(92, 112, 128, 0.6) !important; }
  3666. .bp3-dark .bp3-form-group.bp3-intent-primary .bp3-form-helper-text{
  3667. color:#48aff0; }
  3668. .bp3-dark .bp3-form-group.bp3-intent-success .bp3-form-helper-text{
  3669. color:#3dcc91; }
  3670. .bp3-dark .bp3-form-group.bp3-intent-warning .bp3-form-helper-text{
  3671. color:#ffb366; }
  3672. .bp3-dark .bp3-form-group.bp3-intent-danger .bp3-form-helper-text{
  3673. color:#ff7373; }
  3674. .bp3-dark .bp3-form-group .bp3-form-helper-text{
  3675. color:#a7b6c2; }
  3676. .bp3-dark .bp3-form-group.bp3-disabled .bp3-label,
  3677. .bp3-dark .bp3-form-group.bp3-disabled .bp3-text-muted,
  3678. .bp3-dark .bp3-form-group.bp3-disabled .bp3-form-helper-text{
  3679. color:rgba(167, 182, 194, 0.6) !important; }
  3680. .bp3-input-group{
  3681. display:block;
  3682. position:relative; }
  3683. .bp3-input-group .bp3-input{
  3684. position:relative;
  3685. width:100%; }
  3686. .bp3-input-group .bp3-input:not(:first-child){
  3687. padding-left:30px; }
  3688. .bp3-input-group .bp3-input:not(:last-child){
  3689. padding-right:30px; }
  3690. .bp3-input-group .bp3-input-action,
  3691. .bp3-input-group > .bp3-input-left-container,
  3692. .bp3-input-group > .bp3-button,
  3693. .bp3-input-group > .bp3-icon{
  3694. position:absolute;
  3695. top:0; }
  3696. .bp3-input-group .bp3-input-action:first-child,
  3697. .bp3-input-group > .bp3-input-left-container:first-child,
  3698. .bp3-input-group > .bp3-button:first-child,
  3699. .bp3-input-group > .bp3-icon:first-child{
  3700. left:0; }
  3701. .bp3-input-group .bp3-input-action:last-child,
  3702. .bp3-input-group > .bp3-input-left-container:last-child,
  3703. .bp3-input-group > .bp3-button:last-child,
  3704. .bp3-input-group > .bp3-icon:last-child{
  3705. right:0; }
  3706. .bp3-input-group .bp3-button{
  3707. min-height:24px;
  3708. min-width:24px;
  3709. margin:3px;
  3710. padding:0 7px; }
  3711. .bp3-input-group .bp3-button:empty{
  3712. padding:0; }
  3713. .bp3-input-group > .bp3-input-left-container,
  3714. .bp3-input-group > .bp3-icon{
  3715. z-index:1; }
  3716. .bp3-input-group > .bp3-input-left-container > .bp3-icon,
  3717. .bp3-input-group > .bp3-icon{
  3718. color:#5c7080; }
  3719. .bp3-input-group > .bp3-input-left-container > .bp3-icon:empty,
  3720. .bp3-input-group > .bp3-icon:empty{
  3721. font-family:"Icons16", sans-serif;
  3722. font-size:16px;
  3723. font-style:normal;
  3724. font-weight:400;
  3725. line-height:1;
  3726. -moz-osx-font-smoothing:grayscale;
  3727. -webkit-font-smoothing:antialiased; }
  3728. .bp3-input-group > .bp3-input-left-container > .bp3-icon,
  3729. .bp3-input-group > .bp3-icon,
  3730. .bp3-input-group .bp3-input-action > .bp3-spinner{
  3731. margin:7px; }
  3732. .bp3-input-group .bp3-tag{
  3733. margin:5px; }
  3734. .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus),
  3735. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){
  3736. color:#5c7080; }
  3737. .bp3-dark .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus), .bp3-dark
  3738. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus){
  3739. color:#a7b6c2; }
  3740. .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large,
  3741. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon,
  3742. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-standard,
  3743. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:not(:hover):not(:focus) .bp3-icon-large{
  3744. color:#5c7080; }
  3745. .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled,
  3746. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled{
  3747. color:rgba(92, 112, 128, 0.6) !important; }
  3748. .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-standard, .bp3-input-group .bp3-input:not(:focus) + .bp3-button.bp3-minimal:disabled .bp3-icon-large,
  3749. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon,
  3750. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-standard,
  3751. .bp3-input-group .bp3-input:not(:focus) + .bp3-input-action .bp3-button.bp3-minimal:disabled .bp3-icon-large{
  3752. color:rgba(92, 112, 128, 0.6) !important; }
  3753. .bp3-input-group.bp3-disabled{
  3754. cursor:not-allowed; }
  3755. .bp3-input-group.bp3-disabled .bp3-icon{
  3756. color:rgba(92, 112, 128, 0.6); }
  3757. .bp3-input-group.bp3-large .bp3-button{
  3758. min-height:30px;
  3759. min-width:30px;
  3760. margin:5px; }
  3761. .bp3-input-group.bp3-large > .bp3-input-left-container > .bp3-icon,
  3762. .bp3-input-group.bp3-large > .bp3-icon,
  3763. .bp3-input-group.bp3-large .bp3-input-action > .bp3-spinner{
  3764. margin:12px; }
  3765. .bp3-input-group.bp3-large .bp3-input{
  3766. font-size:16px;
  3767. height:40px;
  3768. line-height:40px; }
  3769. .bp3-input-group.bp3-large .bp3-input[type="search"], .bp3-input-group.bp3-large .bp3-input.bp3-round{
  3770. padding:0 15px; }
  3771. .bp3-input-group.bp3-large .bp3-input:not(:first-child){
  3772. padding-left:40px; }
  3773. .bp3-input-group.bp3-large .bp3-input:not(:last-child){
  3774. padding-right:40px; }
  3775. .bp3-input-group.bp3-small .bp3-button{
  3776. min-height:20px;
  3777. min-width:20px;
  3778. margin:2px; }
  3779. .bp3-input-group.bp3-small .bp3-tag{
  3780. min-height:20px;
  3781. min-width:20px;
  3782. margin:2px; }
  3783. .bp3-input-group.bp3-small > .bp3-input-left-container > .bp3-icon,
  3784. .bp3-input-group.bp3-small > .bp3-icon,
  3785. .bp3-input-group.bp3-small .bp3-input-action > .bp3-spinner{
  3786. margin:4px; }
  3787. .bp3-input-group.bp3-small .bp3-input{
  3788. font-size:12px;
  3789. height:24px;
  3790. line-height:24px;
  3791. padding-left:8px;
  3792. padding-right:8px; }
  3793. .bp3-input-group.bp3-small .bp3-input[type="search"], .bp3-input-group.bp3-small .bp3-input.bp3-round{
  3794. padding:0 12px; }
  3795. .bp3-input-group.bp3-small .bp3-input:not(:first-child){
  3796. padding-left:24px; }
  3797. .bp3-input-group.bp3-small .bp3-input:not(:last-child){
  3798. padding-right:24px; }
  3799. .bp3-input-group.bp3-fill{
  3800. -webkit-box-flex:1;
  3801. -ms-flex:1 1 auto;
  3802. flex:1 1 auto;
  3803. width:100%; }
  3804. .bp3-input-group.bp3-round .bp3-button,
  3805. .bp3-input-group.bp3-round .bp3-input,
  3806. .bp3-input-group.bp3-round .bp3-tag{
  3807. border-radius:30px; }
  3808. .bp3-dark .bp3-input-group .bp3-icon{
  3809. color:#a7b6c2; }
  3810. .bp3-dark .bp3-input-group.bp3-disabled .bp3-icon{
  3811. color:rgba(167, 182, 194, 0.6); }
  3812. .bp3-input-group.bp3-intent-primary .bp3-input{
  3813. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3814. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3815. .bp3-input-group.bp3-intent-primary .bp3-input:focus{
  3816. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3817. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3818. .bp3-input-group.bp3-intent-primary .bp3-input[readonly]{
  3819. -webkit-box-shadow:inset 0 0 0 1px #137cbd;
  3820. box-shadow:inset 0 0 0 1px #137cbd; }
  3821. .bp3-input-group.bp3-intent-primary .bp3-input:disabled, .bp3-input-group.bp3-intent-primary .bp3-input.bp3-disabled{
  3822. -webkit-box-shadow:none;
  3823. box-shadow:none; }
  3824. .bp3-input-group.bp3-intent-primary > .bp3-icon{
  3825. color:#106ba3; }
  3826. .bp3-dark .bp3-input-group.bp3-intent-primary > .bp3-icon{
  3827. color:#48aff0; }
  3828. .bp3-input-group.bp3-intent-success .bp3-input{
  3829. -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3830. box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3831. .bp3-input-group.bp3-intent-success .bp3-input:focus{
  3832. -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3833. box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3834. .bp3-input-group.bp3-intent-success .bp3-input[readonly]{
  3835. -webkit-box-shadow:inset 0 0 0 1px #0f9960;
  3836. box-shadow:inset 0 0 0 1px #0f9960; }
  3837. .bp3-input-group.bp3-intent-success .bp3-input:disabled, .bp3-input-group.bp3-intent-success .bp3-input.bp3-disabled{
  3838. -webkit-box-shadow:none;
  3839. box-shadow:none; }
  3840. .bp3-input-group.bp3-intent-success > .bp3-icon{
  3841. color:#0d8050; }
  3842. .bp3-dark .bp3-input-group.bp3-intent-success > .bp3-icon{
  3843. color:#3dcc91; }
  3844. .bp3-input-group.bp3-intent-warning .bp3-input{
  3845. -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3846. box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3847. .bp3-input-group.bp3-intent-warning .bp3-input:focus{
  3848. -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3849. box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3850. .bp3-input-group.bp3-intent-warning .bp3-input[readonly]{
  3851. -webkit-box-shadow:inset 0 0 0 1px #d9822b;
  3852. box-shadow:inset 0 0 0 1px #d9822b; }
  3853. .bp3-input-group.bp3-intent-warning .bp3-input:disabled, .bp3-input-group.bp3-intent-warning .bp3-input.bp3-disabled{
  3854. -webkit-box-shadow:none;
  3855. box-shadow:none; }
  3856. .bp3-input-group.bp3-intent-warning > .bp3-icon{
  3857. color:#bf7326; }
  3858. .bp3-dark .bp3-input-group.bp3-intent-warning > .bp3-icon{
  3859. color:#ffb366; }
  3860. .bp3-input-group.bp3-intent-danger .bp3-input{
  3861. -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3862. box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3863. .bp3-input-group.bp3-intent-danger .bp3-input:focus{
  3864. -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3865. box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3866. .bp3-input-group.bp3-intent-danger .bp3-input[readonly]{
  3867. -webkit-box-shadow:inset 0 0 0 1px #db3737;
  3868. box-shadow:inset 0 0 0 1px #db3737; }
  3869. .bp3-input-group.bp3-intent-danger .bp3-input:disabled, .bp3-input-group.bp3-intent-danger .bp3-input.bp3-disabled{
  3870. -webkit-box-shadow:none;
  3871. box-shadow:none; }
  3872. .bp3-input-group.bp3-intent-danger > .bp3-icon{
  3873. color:#c23030; }
  3874. .bp3-dark .bp3-input-group.bp3-intent-danger > .bp3-icon{
  3875. color:#ff7373; }
  3876. .bp3-input{
  3877. -webkit-appearance:none;
  3878. -moz-appearance:none;
  3879. appearance:none;
  3880. background:#ffffff;
  3881. border:none;
  3882. border-radius:3px;
  3883. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3884. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3885. color:#182026;
  3886. font-size:14px;
  3887. font-weight:400;
  3888. height:30px;
  3889. line-height:30px;
  3890. outline:none;
  3891. padding:0 10px;
  3892. -webkit-transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3893. transition:-webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3894. transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3895. transition:box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-box-shadow 100ms cubic-bezier(0.4, 1, 0.75, 0.9);
  3896. vertical-align:middle; }
  3897. .bp3-input::-webkit-input-placeholder{
  3898. color:rgba(92, 112, 128, 0.6);
  3899. opacity:1; }
  3900. .bp3-input::-moz-placeholder{
  3901. color:rgba(92, 112, 128, 0.6);
  3902. opacity:1; }
  3903. .bp3-input:-ms-input-placeholder{
  3904. color:rgba(92, 112, 128, 0.6);
  3905. opacity:1; }
  3906. .bp3-input::-ms-input-placeholder{
  3907. color:rgba(92, 112, 128, 0.6);
  3908. opacity:1; }
  3909. .bp3-input::placeholder{
  3910. color:rgba(92, 112, 128, 0.6);
  3911. opacity:1; }
  3912. .bp3-input:focus, .bp3-input.bp3-active{
  3913. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3914. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3915. .bp3-input[type="search"], .bp3-input.bp3-round{
  3916. border-radius:30px;
  3917. -webkit-box-sizing:border-box;
  3918. box-sizing:border-box;
  3919. padding-left:10px; }
  3920. .bp3-input[readonly]{
  3921. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15);
  3922. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.15); }
  3923. .bp3-input:disabled, .bp3-input.bp3-disabled{
  3924. background:rgba(206, 217, 224, 0.5);
  3925. -webkit-box-shadow:none;
  3926. box-shadow:none;
  3927. color:rgba(92, 112, 128, 0.6);
  3928. cursor:not-allowed;
  3929. resize:none; }
  3930. .bp3-input.bp3-large{
  3931. font-size:16px;
  3932. height:40px;
  3933. line-height:40px; }
  3934. .bp3-input.bp3-large[type="search"], .bp3-input.bp3-large.bp3-round{
  3935. padding:0 15px; }
  3936. .bp3-input.bp3-small{
  3937. font-size:12px;
  3938. height:24px;
  3939. line-height:24px;
  3940. padding-left:8px;
  3941. padding-right:8px; }
  3942. .bp3-input.bp3-small[type="search"], .bp3-input.bp3-small.bp3-round{
  3943. padding:0 12px; }
  3944. .bp3-input.bp3-fill{
  3945. -webkit-box-flex:1;
  3946. -ms-flex:1 1 auto;
  3947. flex:1 1 auto;
  3948. width:100%; }
  3949. .bp3-dark .bp3-input{
  3950. background:rgba(16, 22, 26, 0.3);
  3951. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3952. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3953. color:#f5f8fa; }
  3954. .bp3-dark .bp3-input::-webkit-input-placeholder{
  3955. color:rgba(167, 182, 194, 0.6); }
  3956. .bp3-dark .bp3-input::-moz-placeholder{
  3957. color:rgba(167, 182, 194, 0.6); }
  3958. .bp3-dark .bp3-input:-ms-input-placeholder{
  3959. color:rgba(167, 182, 194, 0.6); }
  3960. .bp3-dark .bp3-input::-ms-input-placeholder{
  3961. color:rgba(167, 182, 194, 0.6); }
  3962. .bp3-dark .bp3-input::placeholder{
  3963. color:rgba(167, 182, 194, 0.6); }
  3964. .bp3-dark .bp3-input:focus{
  3965. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3966. box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  3967. .bp3-dark .bp3-input[readonly]{
  3968. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  3969. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }
  3970. .bp3-dark .bp3-input:disabled, .bp3-dark .bp3-input.bp3-disabled{
  3971. background:rgba(57, 75, 89, 0.5);
  3972. -webkit-box-shadow:none;
  3973. box-shadow:none;
  3974. color:rgba(167, 182, 194, 0.6); }
  3975. .bp3-input.bp3-intent-primary{
  3976. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3977. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3978. .bp3-input.bp3-intent-primary:focus{
  3979. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  3980. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  3981. .bp3-input.bp3-intent-primary[readonly]{
  3982. -webkit-box-shadow:inset 0 0 0 1px #137cbd;
  3983. box-shadow:inset 0 0 0 1px #137cbd; }
  3984. .bp3-input.bp3-intent-primary:disabled, .bp3-input.bp3-intent-primary.bp3-disabled{
  3985. -webkit-box-shadow:none;
  3986. box-shadow:none; }
  3987. .bp3-dark .bp3-input.bp3-intent-primary{
  3988. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3989. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px #137cbd, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  3990. .bp3-dark .bp3-input.bp3-intent-primary:focus{
  3991. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  3992. box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  3993. .bp3-dark .bp3-input.bp3-intent-primary[readonly]{
  3994. -webkit-box-shadow:inset 0 0 0 1px #137cbd;
  3995. box-shadow:inset 0 0 0 1px #137cbd; }
  3996. .bp3-dark .bp3-input.bp3-intent-primary:disabled, .bp3-dark .bp3-input.bp3-intent-primary.bp3-disabled{
  3997. -webkit-box-shadow:none;
  3998. box-shadow:none; }
  3999. .bp3-input.bp3-intent-success{
  4000. -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  4001. box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  4002. .bp3-input.bp3-intent-success:focus{
  4003. -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  4004. box-shadow:0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  4005. .bp3-input.bp3-intent-success[readonly]{
  4006. -webkit-box-shadow:inset 0 0 0 1px #0f9960;
  4007. box-shadow:inset 0 0 0 1px #0f9960; }
  4008. .bp3-input.bp3-intent-success:disabled, .bp3-input.bp3-intent-success.bp3-disabled{
  4009. -webkit-box-shadow:none;
  4010. box-shadow:none; }
  4011. .bp3-dark .bp3-input.bp3-intent-success{
  4012. -webkit-box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4013. box-shadow:0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), 0 0 0 0 rgba(15, 153, 96, 0), inset 0 0 0 1px #0f9960, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4014. .bp3-dark .bp3-input.bp3-intent-success:focus{
  4015. -webkit-box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4016. box-shadow:0 0 0 1px #0f9960, 0 0 0 1px #0f9960, 0 0 0 3px rgba(15, 153, 96, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4017. .bp3-dark .bp3-input.bp3-intent-success[readonly]{
  4018. -webkit-box-shadow:inset 0 0 0 1px #0f9960;
  4019. box-shadow:inset 0 0 0 1px #0f9960; }
  4020. .bp3-dark .bp3-input.bp3-intent-success:disabled, .bp3-dark .bp3-input.bp3-intent-success.bp3-disabled{
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none; }
  4023. .bp3-input.bp3-intent-warning{
  4024. -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  4025. box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  4026. .bp3-input.bp3-intent-warning:focus{
  4027. -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  4028. box-shadow:0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  4029. .bp3-input.bp3-intent-warning[readonly]{
  4030. -webkit-box-shadow:inset 0 0 0 1px #d9822b;
  4031. box-shadow:inset 0 0 0 1px #d9822b; }
  4032. .bp3-input.bp3-intent-warning:disabled, .bp3-input.bp3-intent-warning.bp3-disabled{
  4033. -webkit-box-shadow:none;
  4034. box-shadow:none; }
  4035. .bp3-dark .bp3-input.bp3-intent-warning{
  4036. -webkit-box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4037. box-shadow:0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), 0 0 0 0 rgba(217, 130, 43, 0), inset 0 0 0 1px #d9822b, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4038. .bp3-dark .bp3-input.bp3-intent-warning:focus{
  4039. -webkit-box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4040. box-shadow:0 0 0 1px #d9822b, 0 0 0 1px #d9822b, 0 0 0 3px rgba(217, 130, 43, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4041. .bp3-dark .bp3-input.bp3-intent-warning[readonly]{
  4042. -webkit-box-shadow:inset 0 0 0 1px #d9822b;
  4043. box-shadow:inset 0 0 0 1px #d9822b; }
  4044. .bp3-dark .bp3-input.bp3-intent-warning:disabled, .bp3-dark .bp3-input.bp3-intent-warning.bp3-disabled{
  4045. -webkit-box-shadow:none;
  4046. box-shadow:none; }
  4047. .bp3-input.bp3-intent-danger{
  4048. -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  4049. box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.15), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  4050. .bp3-input.bp3-intent-danger:focus{
  4051. -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  4052. box-shadow:0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  4053. .bp3-input.bp3-intent-danger[readonly]{
  4054. -webkit-box-shadow:inset 0 0 0 1px #db3737;
  4055. box-shadow:inset 0 0 0 1px #db3737; }
  4056. .bp3-input.bp3-intent-danger:disabled, .bp3-input.bp3-intent-danger.bp3-disabled{
  4057. -webkit-box-shadow:none;
  4058. box-shadow:none; }
  4059. .bp3-dark .bp3-input.bp3-intent-danger{
  4060. -webkit-box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4061. box-shadow:0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), 0 0 0 0 rgba(219, 55, 55, 0), inset 0 0 0 1px #db3737, inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4062. .bp3-dark .bp3-input.bp3-intent-danger:focus{
  4063. -webkit-box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4064. box-shadow:0 0 0 1px #db3737, 0 0 0 1px #db3737, 0 0 0 3px rgba(219, 55, 55, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4065. .bp3-dark .bp3-input.bp3-intent-danger[readonly]{
  4066. -webkit-box-shadow:inset 0 0 0 1px #db3737;
  4067. box-shadow:inset 0 0 0 1px #db3737; }
  4068. .bp3-dark .bp3-input.bp3-intent-danger:disabled, .bp3-dark .bp3-input.bp3-intent-danger.bp3-disabled{
  4069. -webkit-box-shadow:none;
  4070. box-shadow:none; }
  4071. .bp3-input::-ms-clear{
  4072. display:none; }
  4073. textarea.bp3-input{
  4074. max-width:100%;
  4075. padding:10px; }
  4076. textarea.bp3-input, textarea.bp3-input.bp3-large, textarea.bp3-input.bp3-small{
  4077. height:auto;
  4078. line-height:inherit; }
  4079. textarea.bp3-input.bp3-small{
  4080. padding:8px; }
  4081. .bp3-dark textarea.bp3-input{
  4082. background:rgba(16, 22, 26, 0.3);
  4083. -webkit-box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4084. box-shadow:0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), 0 0 0 0 rgba(19, 124, 189, 0), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4085. color:#f5f8fa; }
  4086. .bp3-dark textarea.bp3-input::-webkit-input-placeholder{
  4087. color:rgba(167, 182, 194, 0.6); }
  4088. .bp3-dark textarea.bp3-input::-moz-placeholder{
  4089. color:rgba(167, 182, 194, 0.6); }
  4090. .bp3-dark textarea.bp3-input:-ms-input-placeholder{
  4091. color:rgba(167, 182, 194, 0.6); }
  4092. .bp3-dark textarea.bp3-input::-ms-input-placeholder{
  4093. color:rgba(167, 182, 194, 0.6); }
  4094. .bp3-dark textarea.bp3-input::placeholder{
  4095. color:rgba(167, 182, 194, 0.6); }
  4096. .bp3-dark textarea.bp3-input:focus{
  4097. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  4098. box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  4099. .bp3-dark textarea.bp3-input[readonly]{
  4100. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4);
  4101. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.4); }
  4102. .bp3-dark textarea.bp3-input:disabled, .bp3-dark textarea.bp3-input.bp3-disabled{
  4103. background:rgba(57, 75, 89, 0.5);
  4104. -webkit-box-shadow:none;
  4105. box-shadow:none;
  4106. color:rgba(167, 182, 194, 0.6); }
  4107. label.bp3-label{
  4108. display:block;
  4109. margin-bottom:15px;
  4110. margin-top:0; }
  4111. label.bp3-label .bp3-html-select,
  4112. label.bp3-label .bp3-input,
  4113. label.bp3-label .bp3-select,
  4114. label.bp3-label .bp3-slider,
  4115. label.bp3-label .bp3-popover-wrapper{
  4116. display:block;
  4117. margin-top:5px;
  4118. text-transform:none; }
  4119. label.bp3-label .bp3-button-group{
  4120. margin-top:5px; }
  4121. label.bp3-label .bp3-select select,
  4122. label.bp3-label .bp3-html-select select{
  4123. font-weight:400;
  4124. vertical-align:top;
  4125. width:100%; }
  4126. label.bp3-label.bp3-disabled,
  4127. label.bp3-label.bp3-disabled .bp3-text-muted{
  4128. color:rgba(92, 112, 128, 0.6); }
  4129. label.bp3-label.bp3-inline{
  4130. line-height:30px; }
  4131. label.bp3-label.bp3-inline .bp3-html-select,
  4132. label.bp3-label.bp3-inline .bp3-input,
  4133. label.bp3-label.bp3-inline .bp3-input-group,
  4134. label.bp3-label.bp3-inline .bp3-select,
  4135. label.bp3-label.bp3-inline .bp3-popover-wrapper{
  4136. display:inline-block;
  4137. margin:0 0 0 5px;
  4138. vertical-align:top; }
  4139. label.bp3-label.bp3-inline .bp3-button-group{
  4140. margin:0 0 0 5px; }
  4141. label.bp3-label.bp3-inline .bp3-input-group .bp3-input{
  4142. margin-left:0; }
  4143. label.bp3-label.bp3-inline.bp3-large{
  4144. line-height:40px; }
  4145. label.bp3-label:not(.bp3-inline) .bp3-popover-target{
  4146. display:block; }
  4147. .bp3-dark label.bp3-label{
  4148. color:#f5f8fa; }
  4149. .bp3-dark label.bp3-label.bp3-disabled,
  4150. .bp3-dark label.bp3-label.bp3-disabled .bp3-text-muted{
  4151. color:rgba(167, 182, 194, 0.6); }
  4152. .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button{
  4153. -webkit-box-flex:1;
  4154. -ms-flex:1 1 14px;
  4155. flex:1 1 14px;
  4156. min-height:0;
  4157. padding:0;
  4158. width:30px; }
  4159. .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:first-child{
  4160. border-radius:0 3px 0 0; }
  4161. .bp3-numeric-input .bp3-button-group.bp3-vertical > .bp3-button:last-child{
  4162. border-radius:0 0 3px 0; }
  4163. .bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:first-child{
  4164. border-radius:3px 0 0 0; }
  4165. .bp3-numeric-input .bp3-button-group.bp3-vertical:first-child > .bp3-button:last-child{
  4166. border-radius:0 0 0 3px; }
  4167. .bp3-numeric-input.bp3-large .bp3-button-group.bp3-vertical > .bp3-button{
  4168. width:40px; }
  4169. form{
  4170. display:block; }
  4171. .bp3-html-select select,
  4172. .bp3-select select{
  4173. display:-webkit-inline-box;
  4174. display:-ms-inline-flexbox;
  4175. display:inline-flex;
  4176. -webkit-box-orient:horizontal;
  4177. -webkit-box-direction:normal;
  4178. -ms-flex-direction:row;
  4179. flex-direction:row;
  4180. -webkit-box-align:center;
  4181. -ms-flex-align:center;
  4182. align-items:center;
  4183. border:none;
  4184. border-radius:3px;
  4185. cursor:pointer;
  4186. font-size:14px;
  4187. -webkit-box-pack:center;
  4188. -ms-flex-pack:center;
  4189. justify-content:center;
  4190. padding:5px 10px;
  4191. text-align:left;
  4192. vertical-align:middle;
  4193. background-color:#f5f8fa;
  4194. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  4195. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  4196. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  4197. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  4198. color:#182026;
  4199. -moz-appearance:none;
  4200. -webkit-appearance:none;
  4201. border-radius:3px;
  4202. height:30px;
  4203. padding:0 25px 0 10px;
  4204. width:100%; }
  4205. .bp3-html-select select > *, .bp3-select select > *{
  4206. -webkit-box-flex:0;
  4207. -ms-flex-positive:0;
  4208. flex-grow:0;
  4209. -ms-flex-negative:0;
  4210. flex-shrink:0; }
  4211. .bp3-html-select select > .bp3-fill, .bp3-select select > .bp3-fill{
  4212. -webkit-box-flex:1;
  4213. -ms-flex-positive:1;
  4214. flex-grow:1;
  4215. -ms-flex-negative:1;
  4216. flex-shrink:1; }
  4217. .bp3-html-select select::before,
  4218. .bp3-select select::before, .bp3-html-select select > *, .bp3-select select > *{
  4219. margin-right:7px; }
  4220. .bp3-html-select select:empty::before,
  4221. .bp3-select select:empty::before,
  4222. .bp3-html-select select > :last-child,
  4223. .bp3-select select > :last-child{
  4224. margin-right:0; }
  4225. .bp3-html-select select:hover,
  4226. .bp3-select select:hover{
  4227. background-clip:padding-box;
  4228. background-color:#ebf1f5;
  4229. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  4230. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }
  4231. .bp3-html-select select:active,
  4232. .bp3-select select:active, .bp3-html-select select.bp3-active,
  4233. .bp3-select select.bp3-active{
  4234. background-color:#d8e1e8;
  4235. background-image:none;
  4236. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  4237. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  4238. .bp3-html-select select:disabled,
  4239. .bp3-select select:disabled, .bp3-html-select select.bp3-disabled,
  4240. .bp3-select select.bp3-disabled{
  4241. background-color:rgba(206, 217, 224, 0.5);
  4242. background-image:none;
  4243. -webkit-box-shadow:none;
  4244. box-shadow:none;
  4245. color:rgba(92, 112, 128, 0.6);
  4246. cursor:not-allowed;
  4247. outline:none; }
  4248. .bp3-html-select select:disabled.bp3-active,
  4249. .bp3-select select:disabled.bp3-active, .bp3-html-select select:disabled.bp3-active:hover,
  4250. .bp3-select select:disabled.bp3-active:hover, .bp3-html-select select.bp3-disabled.bp3-active,
  4251. .bp3-select select.bp3-disabled.bp3-active, .bp3-html-select select.bp3-disabled.bp3-active:hover,
  4252. .bp3-select select.bp3-disabled.bp3-active:hover{
  4253. background:rgba(206, 217, 224, 0.7); }
  4254. .bp3-html-select.bp3-minimal select,
  4255. .bp3-select.bp3-minimal select{
  4256. background:none;
  4257. -webkit-box-shadow:none;
  4258. box-shadow:none; }
  4259. .bp3-html-select.bp3-minimal select:hover,
  4260. .bp3-select.bp3-minimal select:hover{
  4261. background:rgba(167, 182, 194, 0.3);
  4262. -webkit-box-shadow:none;
  4263. box-shadow:none;
  4264. color:#182026;
  4265. text-decoration:none; }
  4266. .bp3-html-select.bp3-minimal select:active,
  4267. .bp3-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal select.bp3-active,
  4268. .bp3-select.bp3-minimal select.bp3-active{
  4269. background:rgba(115, 134, 148, 0.3);
  4270. -webkit-box-shadow:none;
  4271. box-shadow:none;
  4272. color:#182026; }
  4273. .bp3-html-select.bp3-minimal select:disabled,
  4274. .bp3-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal select:disabled:hover,
  4275. .bp3-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal select.bp3-disabled,
  4276. .bp3-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal select.bp3-disabled:hover,
  4277. .bp3-select.bp3-minimal select.bp3-disabled:hover{
  4278. background:none;
  4279. color:rgba(92, 112, 128, 0.6);
  4280. cursor:not-allowed; }
  4281. .bp3-html-select.bp3-minimal select:disabled.bp3-active,
  4282. .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active,
  4283. .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active,
  4284. .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active,
  4285. .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active{
  4286. background:rgba(115, 134, 148, 0.3); }
  4287. .bp3-dark .bp3-html-select.bp3-minimal select, .bp3-html-select.bp3-minimal .bp3-dark select,
  4288. .bp3-dark .bp3-select.bp3-minimal select, .bp3-select.bp3-minimal .bp3-dark select{
  4289. background:none;
  4290. -webkit-box-shadow:none;
  4291. box-shadow:none;
  4292. color:inherit; }
  4293. .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,
  4294. .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover, .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,
  4295. .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,
  4296. .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{
  4297. background:none;
  4298. -webkit-box-shadow:none;
  4299. box-shadow:none; }
  4300. .bp3-dark .bp3-html-select.bp3-minimal select:hover, .bp3-html-select.bp3-minimal .bp3-dark select:hover,
  4301. .bp3-dark .bp3-select.bp3-minimal select:hover, .bp3-select.bp3-minimal .bp3-dark select:hover{
  4302. background:rgba(138, 155, 168, 0.15); }
  4303. .bp3-dark .bp3-html-select.bp3-minimal select:active, .bp3-html-select.bp3-minimal .bp3-dark select:active,
  4304. .bp3-dark .bp3-select.bp3-minimal select:active, .bp3-select.bp3-minimal .bp3-dark select:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-active,
  4305. .bp3-dark .bp3-select.bp3-minimal select.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-active{
  4306. background:rgba(138, 155, 168, 0.3);
  4307. color:#f5f8fa; }
  4308. .bp3-dark .bp3-html-select.bp3-minimal select:disabled, .bp3-html-select.bp3-minimal .bp3-dark select:disabled,
  4309. .bp3-dark .bp3-select.bp3-minimal select:disabled, .bp3-select.bp3-minimal .bp3-dark select:disabled, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover,
  4310. .bp3-dark .bp3-select.bp3-minimal select:disabled:hover, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled,
  4311. .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover,
  4312. .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover{
  4313. background:none;
  4314. color:rgba(167, 182, 194, 0.6);
  4315. cursor:not-allowed; }
  4316. .bp3-dark .bp3-html-select.bp3-minimal select:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled.bp3-active,
  4317. .bp3-dark .bp3-select.bp3-minimal select:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active,
  4318. .bp3-dark .bp3-select.bp3-minimal select:disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select:disabled:hover.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active,
  4319. .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active,
  4320. .bp3-dark .bp3-select.bp3-minimal select.bp3-disabled:hover.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-disabled:hover.bp3-active{
  4321. background:rgba(138, 155, 168, 0.3); }
  4322. .bp3-html-select.bp3-minimal select.bp3-intent-primary,
  4323. .bp3-select.bp3-minimal select.bp3-intent-primary{
  4324. color:#106ba3; }
  4325. .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,
  4326. .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,
  4327. .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,
  4328. .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{
  4329. background:none;
  4330. -webkit-box-shadow:none;
  4331. box-shadow:none;
  4332. color:#106ba3; }
  4333. .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover,
  4334. .bp3-select.bp3-minimal select.bp3-intent-primary:hover{
  4335. background:rgba(19, 124, 189, 0.15);
  4336. color:#106ba3; }
  4337. .bp3-html-select.bp3-minimal select.bp3-intent-primary:active,
  4338. .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active,
  4339. .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active{
  4340. background:rgba(19, 124, 189, 0.3);
  4341. color:#106ba3; }
  4342. .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled,
  4343. .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled,
  4344. .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled{
  4345. background:none;
  4346. color:rgba(16, 107, 163, 0.5); }
  4347. .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active,
  4348. .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active,
  4349. .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active{
  4350. background:rgba(19, 124, 189, 0.3); }
  4351. .bp3-html-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-primary .bp3-button-spinner .bp3-spinner-head{
  4352. stroke:#106ba3; }
  4353. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary,
  4354. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary{
  4355. color:#48aff0; }
  4356. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover,
  4357. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:hover{
  4358. background:rgba(19, 124, 189, 0.2);
  4359. color:#48aff0; }
  4360. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active,
  4361. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active,
  4362. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-active{
  4363. background:rgba(19, 124, 189, 0.3);
  4364. color:#48aff0; }
  4365. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled,
  4366. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled,
  4367. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled{
  4368. background:none;
  4369. color:rgba(72, 175, 240, 0.5); }
  4370. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active,
  4371. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active,
  4372. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-primary.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-primary.bp3-disabled.bp3-active{
  4373. background:rgba(19, 124, 189, 0.3); }
  4374. .bp3-html-select.bp3-minimal select.bp3-intent-success,
  4375. .bp3-select.bp3-minimal select.bp3-intent-success{
  4376. color:#0d8050; }
  4377. .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,
  4378. .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal select.bp3-intent-success:active,
  4379. .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,
  4380. .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{
  4381. background:none;
  4382. -webkit-box-shadow:none;
  4383. box-shadow:none;
  4384. color:#0d8050; }
  4385. .bp3-html-select.bp3-minimal select.bp3-intent-success:hover,
  4386. .bp3-select.bp3-minimal select.bp3-intent-success:hover{
  4387. background:rgba(15, 153, 96, 0.15);
  4388. color:#0d8050; }
  4389. .bp3-html-select.bp3-minimal select.bp3-intent-success:active,
  4390. .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active,
  4391. .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active{
  4392. background:rgba(15, 153, 96, 0.3);
  4393. color:#0d8050; }
  4394. .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled,
  4395. .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled,
  4396. .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled{
  4397. background:none;
  4398. color:rgba(13, 128, 80, 0.5); }
  4399. .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active,
  4400. .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active,
  4401. .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active{
  4402. background:rgba(15, 153, 96, 0.3); }
  4403. .bp3-html-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-success .bp3-button-spinner .bp3-spinner-head{
  4404. stroke:#0d8050; }
  4405. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success,
  4406. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success{
  4407. color:#3dcc91; }
  4408. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover,
  4409. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:hover{
  4410. background:rgba(15, 153, 96, 0.2);
  4411. color:#3dcc91; }
  4412. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:active,
  4413. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active,
  4414. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-active{
  4415. background:rgba(15, 153, 96, 0.3);
  4416. color:#3dcc91; }
  4417. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled,
  4418. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled,
  4419. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled{
  4420. background:none;
  4421. color:rgba(61, 204, 145, 0.5); }
  4422. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active,
  4423. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active,
  4424. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-success.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-success.bp3-disabled.bp3-active{
  4425. background:rgba(15, 153, 96, 0.3); }
  4426. .bp3-html-select.bp3-minimal select.bp3-intent-warning,
  4427. .bp3-select.bp3-minimal select.bp3-intent-warning{
  4428. color:#bf7326; }
  4429. .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,
  4430. .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,
  4431. .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,
  4432. .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{
  4433. background:none;
  4434. -webkit-box-shadow:none;
  4435. box-shadow:none;
  4436. color:#bf7326; }
  4437. .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover,
  4438. .bp3-select.bp3-minimal select.bp3-intent-warning:hover{
  4439. background:rgba(217, 130, 43, 0.15);
  4440. color:#bf7326; }
  4441. .bp3-html-select.bp3-minimal select.bp3-intent-warning:active,
  4442. .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active,
  4443. .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active{
  4444. background:rgba(217, 130, 43, 0.3);
  4445. color:#bf7326; }
  4446. .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled,
  4447. .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled,
  4448. .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled{
  4449. background:none;
  4450. color:rgba(191, 115, 38, 0.5); }
  4451. .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active,
  4452. .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active,
  4453. .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active{
  4454. background:rgba(217, 130, 43, 0.3); }
  4455. .bp3-html-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-warning .bp3-button-spinner .bp3-spinner-head{
  4456. stroke:#bf7326; }
  4457. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning,
  4458. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning{
  4459. color:#ffb366; }
  4460. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover,
  4461. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:hover{
  4462. background:rgba(217, 130, 43, 0.2);
  4463. color:#ffb366; }
  4464. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active,
  4465. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active,
  4466. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-active{
  4467. background:rgba(217, 130, 43, 0.3);
  4468. color:#ffb366; }
  4469. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled,
  4470. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled,
  4471. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled{
  4472. background:none;
  4473. color:rgba(255, 179, 102, 0.5); }
  4474. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active,
  4475. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active,
  4476. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-warning.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-warning.bp3-disabled.bp3-active{
  4477. background:rgba(217, 130, 43, 0.3); }
  4478. .bp3-html-select.bp3-minimal select.bp3-intent-danger,
  4479. .bp3-select.bp3-minimal select.bp3-intent-danger{
  4480. color:#c23030; }
  4481. .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,
  4482. .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,
  4483. .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,
  4484. .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{
  4485. background:none;
  4486. -webkit-box-shadow:none;
  4487. box-shadow:none;
  4488. color:#c23030; }
  4489. .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover,
  4490. .bp3-select.bp3-minimal select.bp3-intent-danger:hover{
  4491. background:rgba(219, 55, 55, 0.15);
  4492. color:#c23030; }
  4493. .bp3-html-select.bp3-minimal select.bp3-intent-danger:active,
  4494. .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active,
  4495. .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active{
  4496. background:rgba(219, 55, 55, 0.3);
  4497. color:#c23030; }
  4498. .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled,
  4499. .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled,
  4500. .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled{
  4501. background:none;
  4502. color:rgba(194, 48, 48, 0.5); }
  4503. .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active,
  4504. .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active,
  4505. .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active{
  4506. background:rgba(219, 55, 55, 0.3); }
  4507. .bp3-html-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head, .bp3-select.bp3-minimal select.bp3-intent-danger .bp3-button-spinner .bp3-spinner-head{
  4508. stroke:#c23030; }
  4509. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger,
  4510. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger{
  4511. color:#ff7373; }
  4512. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover,
  4513. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:hover, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:hover{
  4514. background:rgba(219, 55, 55, 0.2);
  4515. color:#ff7373; }
  4516. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active,
  4517. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active,
  4518. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-active{
  4519. background:rgba(219, 55, 55, 0.3);
  4520. color:#ff7373; }
  4521. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled,
  4522. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled,
  4523. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled{
  4524. background:none;
  4525. color:rgba(255, 115, 115, 0.5); }
  4526. .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active,
  4527. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger:disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger:disabled.bp3-active, .bp3-dark .bp3-html-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-html-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active,
  4528. .bp3-dark .bp3-select.bp3-minimal select.bp3-intent-danger.bp3-disabled.bp3-active, .bp3-select.bp3-minimal .bp3-dark select.bp3-intent-danger.bp3-disabled.bp3-active{
  4529. background:rgba(219, 55, 55, 0.3); }
  4530. .bp3-html-select.bp3-large select,
  4531. .bp3-select.bp3-large select{
  4532. font-size:16px;
  4533. height:40px;
  4534. padding-right:35px; }
  4535. .bp3-dark .bp3-html-select select, .bp3-dark .bp3-select select{
  4536. background-color:#394b59;
  4537. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  4538. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  4539. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  4540. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  4541. color:#f5f8fa; }
  4542. .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover, .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{
  4543. color:#f5f8fa; }
  4544. .bp3-dark .bp3-html-select select:hover, .bp3-dark .bp3-select select:hover{
  4545. background-color:#30404d;
  4546. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  4547. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  4548. .bp3-dark .bp3-html-select select:active, .bp3-dark .bp3-select select:active, .bp3-dark .bp3-html-select select.bp3-active, .bp3-dark .bp3-select select.bp3-active{
  4549. background-color:#202b33;
  4550. background-image:none;
  4551. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  4552. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  4553. .bp3-dark .bp3-html-select select:disabled, .bp3-dark .bp3-select select:disabled, .bp3-dark .bp3-html-select select.bp3-disabled, .bp3-dark .bp3-select select.bp3-disabled{
  4554. background-color:rgba(57, 75, 89, 0.5);
  4555. background-image:none;
  4556. -webkit-box-shadow:none;
  4557. box-shadow:none;
  4558. color:rgba(167, 182, 194, 0.6); }
  4559. .bp3-dark .bp3-html-select select:disabled.bp3-active, .bp3-dark .bp3-select select:disabled.bp3-active, .bp3-dark .bp3-html-select select.bp3-disabled.bp3-active, .bp3-dark .bp3-select select.bp3-disabled.bp3-active{
  4560. background:rgba(57, 75, 89, 0.7); }
  4561. .bp3-dark .bp3-html-select select .bp3-button-spinner .bp3-spinner-head, .bp3-dark .bp3-select select .bp3-button-spinner .bp3-spinner-head{
  4562. background:rgba(16, 22, 26, 0.5);
  4563. stroke:#8a9ba8; }
  4564. .bp3-html-select select:disabled,
  4565. .bp3-select select:disabled{
  4566. background-color:rgba(206, 217, 224, 0.5);
  4567. -webkit-box-shadow:none;
  4568. box-shadow:none;
  4569. color:rgba(92, 112, 128, 0.6);
  4570. cursor:not-allowed; }
  4571. .bp3-html-select .bp3-icon,
  4572. .bp3-select .bp3-icon, .bp3-select::after{
  4573. color:#5c7080;
  4574. pointer-events:none;
  4575. position:absolute;
  4576. right:7px;
  4577. top:7px; }
  4578. .bp3-html-select .bp3-disabled.bp3-icon,
  4579. .bp3-select .bp3-disabled.bp3-icon, .bp3-disabled.bp3-select::after{
  4580. color:rgba(92, 112, 128, 0.6); }
  4581. .bp3-html-select,
  4582. .bp3-select{
  4583. display:inline-block;
  4584. letter-spacing:normal;
  4585. position:relative;
  4586. vertical-align:middle; }
  4587. .bp3-html-select select::-ms-expand,
  4588. .bp3-select select::-ms-expand{
  4589. display:none; }
  4590. .bp3-html-select .bp3-icon,
  4591. .bp3-select .bp3-icon{
  4592. color:#5c7080; }
  4593. .bp3-html-select .bp3-icon:hover,
  4594. .bp3-select .bp3-icon:hover{
  4595. color:#182026; }
  4596. .bp3-dark .bp3-html-select .bp3-icon, .bp3-dark
  4597. .bp3-select .bp3-icon{
  4598. color:#a7b6c2; }
  4599. .bp3-dark .bp3-html-select .bp3-icon:hover, .bp3-dark
  4600. .bp3-select .bp3-icon:hover{
  4601. color:#f5f8fa; }
  4602. .bp3-html-select.bp3-large::after,
  4603. .bp3-html-select.bp3-large .bp3-icon,
  4604. .bp3-select.bp3-large::after,
  4605. .bp3-select.bp3-large .bp3-icon{
  4606. right:12px;
  4607. top:12px; }
  4608. .bp3-html-select.bp3-fill,
  4609. .bp3-html-select.bp3-fill select,
  4610. .bp3-select.bp3-fill,
  4611. .bp3-select.bp3-fill select{
  4612. width:100%; }
  4613. .bp3-dark .bp3-html-select option, .bp3-dark
  4614. .bp3-select option{
  4615. background-color:#30404d;
  4616. color:#f5f8fa; }
  4617. .bp3-dark .bp3-html-select option:disabled, .bp3-dark
  4618. .bp3-select option:disabled{
  4619. color:rgba(167, 182, 194, 0.6); }
  4620. .bp3-dark .bp3-html-select::after, .bp3-dark
  4621. .bp3-select::after{
  4622. color:#a7b6c2; }
  4623. .bp3-select::after{
  4624. font-family:"Icons16", sans-serif;
  4625. font-size:16px;
  4626. font-style:normal;
  4627. font-weight:400;
  4628. line-height:1;
  4629. -moz-osx-font-smoothing:grayscale;
  4630. -webkit-font-smoothing:antialiased;
  4631. content:""; }
  4632. .bp3-running-text table, table.bp3-html-table{
  4633. border-spacing:0;
  4634. font-size:14px; }
  4635. .bp3-running-text table th, table.bp3-html-table th,
  4636. .bp3-running-text table td,
  4637. table.bp3-html-table td{
  4638. padding:11px;
  4639. text-align:left;
  4640. vertical-align:top; }
  4641. .bp3-running-text table th, table.bp3-html-table th{
  4642. color:#182026;
  4643. font-weight:600; }
  4644. .bp3-running-text table td,
  4645. table.bp3-html-table td{
  4646. color:#182026; }
  4647. .bp3-running-text table tbody tr:first-child th, table.bp3-html-table tbody tr:first-child th,
  4648. .bp3-running-text table tbody tr:first-child td,
  4649. table.bp3-html-table tbody tr:first-child td{
  4650. -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);
  4651. box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }
  4652. .bp3-dark .bp3-running-text table th, .bp3-running-text .bp3-dark table th, .bp3-dark table.bp3-html-table th{
  4653. color:#f5f8fa; }
  4654. .bp3-dark .bp3-running-text table td, .bp3-running-text .bp3-dark table td, .bp3-dark table.bp3-html-table td{
  4655. color:#f5f8fa; }
  4656. .bp3-dark .bp3-running-text table tbody tr:first-child th, .bp3-running-text .bp3-dark table tbody tr:first-child th, .bp3-dark table.bp3-html-table tbody tr:first-child th,
  4657. .bp3-dark .bp3-running-text table tbody tr:first-child td,
  4658. .bp3-running-text .bp3-dark table tbody tr:first-child td,
  4659. .bp3-dark table.bp3-html-table tbody tr:first-child td{
  4660. -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  4661. box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }
  4662. table.bp3-html-table.bp3-html-table-condensed th,
  4663. table.bp3-html-table.bp3-html-table-condensed td, table.bp3-html-table.bp3-small th,
  4664. table.bp3-html-table.bp3-small td{
  4665. padding-bottom:6px;
  4666. padding-top:6px; }
  4667. table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{
  4668. background:rgba(191, 204, 214, 0.15); }
  4669. table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){
  4670. -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);
  4671. box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }
  4672. table.bp3-html-table.bp3-html-table-bordered tbody tr td{
  4673. -webkit-box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15);
  4674. box-shadow:inset 0 1px 0 0 rgba(16, 22, 26, 0.15); }
  4675. table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child){
  4676. -webkit-box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15);
  4677. box-shadow:inset 1px 1px 0 0 rgba(16, 22, 26, 0.15); }
  4678. table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{
  4679. -webkit-box-shadow:none;
  4680. box-shadow:none; }
  4681. table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:not(:first-child){
  4682. -webkit-box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15);
  4683. box-shadow:inset 1px 0 0 0 rgba(16, 22, 26, 0.15); }
  4684. table.bp3-html-table.bp3-interactive tbody tr:hover td{
  4685. background-color:rgba(191, 204, 214, 0.3);
  4686. cursor:pointer; }
  4687. table.bp3-html-table.bp3-interactive tbody tr:active td{
  4688. background-color:rgba(191, 204, 214, 0.4); }
  4689. .bp3-dark table.bp3-html-table{ }
  4690. .bp3-dark table.bp3-html-table.bp3-html-table-striped tbody tr:nth-child(odd) td{
  4691. background:rgba(92, 112, 128, 0.15); }
  4692. .bp3-dark table.bp3-html-table.bp3-html-table-bordered th:not(:first-child){
  4693. -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);
  4694. box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }
  4695. .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td{
  4696. -webkit-box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15);
  4697. box-shadow:inset 0 1px 0 0 rgba(255, 255, 255, 0.15); }
  4698. .bp3-dark table.bp3-html-table.bp3-html-table-bordered tbody tr td:not(:first-child){
  4699. -webkit-box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15);
  4700. box-shadow:inset 1px 1px 0 0 rgba(255, 255, 255, 0.15); }
  4701. .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td{
  4702. -webkit-box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15);
  4703. box-shadow:inset 1px 0 0 0 rgba(255, 255, 255, 0.15); }
  4704. .bp3-dark table.bp3-html-table.bp3-html-table-bordered.bp3-html-table-striped tbody tr:not(:first-child) td:first-child{
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none; }
  4707. .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:hover td{
  4708. background-color:rgba(92, 112, 128, 0.3);
  4709. cursor:pointer; }
  4710. .bp3-dark table.bp3-html-table.bp3-interactive tbody tr:active td{
  4711. background-color:rgba(92, 112, 128, 0.4); }
  4712. .bp3-key-combo{
  4713. display:-webkit-box;
  4714. display:-ms-flexbox;
  4715. display:flex;
  4716. -webkit-box-orient:horizontal;
  4717. -webkit-box-direction:normal;
  4718. -ms-flex-direction:row;
  4719. flex-direction:row;
  4720. -webkit-box-align:center;
  4721. -ms-flex-align:center;
  4722. align-items:center; }
  4723. .bp3-key-combo > *{
  4724. -webkit-box-flex:0;
  4725. -ms-flex-positive:0;
  4726. flex-grow:0;
  4727. -ms-flex-negative:0;
  4728. flex-shrink:0; }
  4729. .bp3-key-combo > .bp3-fill{
  4730. -webkit-box-flex:1;
  4731. -ms-flex-positive:1;
  4732. flex-grow:1;
  4733. -ms-flex-negative:1;
  4734. flex-shrink:1; }
  4735. .bp3-key-combo::before,
  4736. .bp3-key-combo > *{
  4737. margin-right:5px; }
  4738. .bp3-key-combo:empty::before,
  4739. .bp3-key-combo > :last-child{
  4740. margin-right:0; }
  4741. .bp3-hotkey-dialog{
  4742. padding-bottom:0;
  4743. top:40px; }
  4744. .bp3-hotkey-dialog .bp3-dialog-body{
  4745. margin:0;
  4746. padding:0; }
  4747. .bp3-hotkey-dialog .bp3-hotkey-label{
  4748. -webkit-box-flex:1;
  4749. -ms-flex-positive:1;
  4750. flex-grow:1; }
  4751. .bp3-hotkey-column{
  4752. margin:auto;
  4753. max-height:80vh;
  4754. overflow-y:auto;
  4755. padding:30px; }
  4756. .bp3-hotkey-column .bp3-heading{
  4757. margin-bottom:20px; }
  4758. .bp3-hotkey-column .bp3-heading:not(:first-child){
  4759. margin-top:40px; }
  4760. .bp3-hotkey{
  4761. -webkit-box-align:center;
  4762. -ms-flex-align:center;
  4763. align-items:center;
  4764. display:-webkit-box;
  4765. display:-ms-flexbox;
  4766. display:flex;
  4767. -webkit-box-pack:justify;
  4768. -ms-flex-pack:justify;
  4769. justify-content:space-between;
  4770. margin-left:0;
  4771. margin-right:0; }
  4772. .bp3-hotkey:not(:last-child){
  4773. margin-bottom:10px; }
  4774. .bp3-icon{
  4775. display:inline-block;
  4776. -webkit-box-flex:0;
  4777. -ms-flex:0 0 auto;
  4778. flex:0 0 auto;
  4779. vertical-align:text-bottom; }
  4780. .bp3-icon:not(:empty)::before{
  4781. content:"" !important;
  4782. content:unset !important; }
  4783. .bp3-icon > svg{
  4784. display:block; }
  4785. .bp3-icon > svg:not([fill]){
  4786. fill:currentColor; }
  4787. .bp3-icon.bp3-intent-primary, .bp3-icon-standard.bp3-intent-primary, .bp3-icon-large.bp3-intent-primary{
  4788. color:#106ba3; }
  4789. .bp3-dark .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-icon-large.bp3-intent-primary{
  4790. color:#48aff0; }
  4791. .bp3-icon.bp3-intent-success, .bp3-icon-standard.bp3-intent-success, .bp3-icon-large.bp3-intent-success{
  4792. color:#0d8050; }
  4793. .bp3-dark .bp3-icon.bp3-intent-success, .bp3-dark .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-icon-large.bp3-intent-success{
  4794. color:#3dcc91; }
  4795. .bp3-icon.bp3-intent-warning, .bp3-icon-standard.bp3-intent-warning, .bp3-icon-large.bp3-intent-warning{
  4796. color:#bf7326; }
  4797. .bp3-dark .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-icon-large.bp3-intent-warning{
  4798. color:#ffb366; }
  4799. .bp3-icon.bp3-intent-danger, .bp3-icon-standard.bp3-intent-danger, .bp3-icon-large.bp3-intent-danger{
  4800. color:#c23030; }
  4801. .bp3-dark .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-icon-large.bp3-intent-danger{
  4802. color:#ff7373; }
  4803. span.bp3-icon-standard{
  4804. font-family:"Icons16", sans-serif;
  4805. font-size:16px;
  4806. font-style:normal;
  4807. font-weight:400;
  4808. line-height:1;
  4809. -moz-osx-font-smoothing:grayscale;
  4810. -webkit-font-smoothing:antialiased;
  4811. display:inline-block; }
  4812. span.bp3-icon-large{
  4813. font-family:"Icons20", sans-serif;
  4814. font-size:20px;
  4815. font-style:normal;
  4816. font-weight:400;
  4817. line-height:1;
  4818. -moz-osx-font-smoothing:grayscale;
  4819. -webkit-font-smoothing:antialiased;
  4820. display:inline-block; }
  4821. span.bp3-icon:empty{
  4822. font-family:"Icons20";
  4823. font-size:inherit;
  4824. font-style:normal;
  4825. font-weight:400;
  4826. line-height:1; }
  4827. span.bp3-icon:empty::before{
  4828. -moz-osx-font-smoothing:grayscale;
  4829. -webkit-font-smoothing:antialiased; }
  4830. .bp3-icon-add::before{
  4831. content:""; }
  4832. .bp3-icon-add-column-left::before{
  4833. content:""; }
  4834. .bp3-icon-add-column-right::before{
  4835. content:""; }
  4836. .bp3-icon-add-row-bottom::before{
  4837. content:""; }
  4838. .bp3-icon-add-row-top::before{
  4839. content:""; }
  4840. .bp3-icon-add-to-artifact::before{
  4841. content:""; }
  4842. .bp3-icon-add-to-folder::before{
  4843. content:""; }
  4844. .bp3-icon-airplane::before{
  4845. content:""; }
  4846. .bp3-icon-align-center::before{
  4847. content:""; }
  4848. .bp3-icon-align-justify::before{
  4849. content:""; }
  4850. .bp3-icon-align-left::before{
  4851. content:""; }
  4852. .bp3-icon-align-right::before{
  4853. content:""; }
  4854. .bp3-icon-alignment-bottom::before{
  4855. content:""; }
  4856. .bp3-icon-alignment-horizontal-center::before{
  4857. content:""; }
  4858. .bp3-icon-alignment-left::before{
  4859. content:""; }
  4860. .bp3-icon-alignment-right::before{
  4861. content:""; }
  4862. .bp3-icon-alignment-top::before{
  4863. content:""; }
  4864. .bp3-icon-alignment-vertical-center::before{
  4865. content:""; }
  4866. .bp3-icon-annotation::before{
  4867. content:""; }
  4868. .bp3-icon-application::before{
  4869. content:""; }
  4870. .bp3-icon-applications::before{
  4871. content:""; }
  4872. .bp3-icon-archive::before{
  4873. content:""; }
  4874. .bp3-icon-arrow-bottom-left::before{
  4875. content:"↙"; }
  4876. .bp3-icon-arrow-bottom-right::before{
  4877. content:"↘"; }
  4878. .bp3-icon-arrow-down::before{
  4879. content:"↓"; }
  4880. .bp3-icon-arrow-left::before{
  4881. content:"←"; }
  4882. .bp3-icon-arrow-right::before{
  4883. content:"→"; }
  4884. .bp3-icon-arrow-top-left::before{
  4885. content:"↖"; }
  4886. .bp3-icon-arrow-top-right::before{
  4887. content:"↗"; }
  4888. .bp3-icon-arrow-up::before{
  4889. content:"↑"; }
  4890. .bp3-icon-arrows-horizontal::before{
  4891. content:"↔"; }
  4892. .bp3-icon-arrows-vertical::before{
  4893. content:"↕"; }
  4894. .bp3-icon-asterisk::before{
  4895. content:"*"; }
  4896. .bp3-icon-automatic-updates::before{
  4897. content:""; }
  4898. .bp3-icon-badge::before{
  4899. content:""; }
  4900. .bp3-icon-ban-circle::before{
  4901. content:""; }
  4902. .bp3-icon-bank-account::before{
  4903. content:""; }
  4904. .bp3-icon-barcode::before{
  4905. content:""; }
  4906. .bp3-icon-blank::before{
  4907. content:""; }
  4908. .bp3-icon-blocked-person::before{
  4909. content:""; }
  4910. .bp3-icon-bold::before{
  4911. content:""; }
  4912. .bp3-icon-book::before{
  4913. content:""; }
  4914. .bp3-icon-bookmark::before{
  4915. content:""; }
  4916. .bp3-icon-box::before{
  4917. content:""; }
  4918. .bp3-icon-briefcase::before{
  4919. content:""; }
  4920. .bp3-icon-bring-data::before{
  4921. content:""; }
  4922. .bp3-icon-build::before{
  4923. content:""; }
  4924. .bp3-icon-calculator::before{
  4925. content:""; }
  4926. .bp3-icon-calendar::before{
  4927. content:""; }
  4928. .bp3-icon-camera::before{
  4929. content:""; }
  4930. .bp3-icon-caret-down::before{
  4931. content:"⌄"; }
  4932. .bp3-icon-caret-left::before{
  4933. content:"〈"; }
  4934. .bp3-icon-caret-right::before{
  4935. content:"〉"; }
  4936. .bp3-icon-caret-up::before{
  4937. content:"⌃"; }
  4938. .bp3-icon-cell-tower::before{
  4939. content:""; }
  4940. .bp3-icon-changes::before{
  4941. content:""; }
  4942. .bp3-icon-chart::before{
  4943. content:""; }
  4944. .bp3-icon-chat::before{
  4945. content:""; }
  4946. .bp3-icon-chevron-backward::before{
  4947. content:""; }
  4948. .bp3-icon-chevron-down::before{
  4949. content:""; }
  4950. .bp3-icon-chevron-forward::before{
  4951. content:""; }
  4952. .bp3-icon-chevron-left::before{
  4953. content:""; }
  4954. .bp3-icon-chevron-right::before{
  4955. content:""; }
  4956. .bp3-icon-chevron-up::before{
  4957. content:""; }
  4958. .bp3-icon-circle::before{
  4959. content:""; }
  4960. .bp3-icon-circle-arrow-down::before{
  4961. content:""; }
  4962. .bp3-icon-circle-arrow-left::before{
  4963. content:""; }
  4964. .bp3-icon-circle-arrow-right::before{
  4965. content:""; }
  4966. .bp3-icon-circle-arrow-up::before{
  4967. content:""; }
  4968. .bp3-icon-citation::before{
  4969. content:""; }
  4970. .bp3-icon-clean::before{
  4971. content:""; }
  4972. .bp3-icon-clipboard::before{
  4973. content:""; }
  4974. .bp3-icon-cloud::before{
  4975. content:"☁"; }
  4976. .bp3-icon-cloud-download::before{
  4977. content:""; }
  4978. .bp3-icon-cloud-upload::before{
  4979. content:""; }
  4980. .bp3-icon-code::before{
  4981. content:""; }
  4982. .bp3-icon-code-block::before{
  4983. content:""; }
  4984. .bp3-icon-cog::before{
  4985. content:""; }
  4986. .bp3-icon-collapse-all::before{
  4987. content:""; }
  4988. .bp3-icon-column-layout::before{
  4989. content:""; }
  4990. .bp3-icon-comment::before{
  4991. content:""; }
  4992. .bp3-icon-comparison::before{
  4993. content:""; }
  4994. .bp3-icon-compass::before{
  4995. content:""; }
  4996. .bp3-icon-compressed::before{
  4997. content:""; }
  4998. .bp3-icon-confirm::before{
  4999. content:""; }
  5000. .bp3-icon-console::before{
  5001. content:""; }
  5002. .bp3-icon-contrast::before{
  5003. content:""; }
  5004. .bp3-icon-control::before{
  5005. content:""; }
  5006. .bp3-icon-credit-card::before{
  5007. content:""; }
  5008. .bp3-icon-cross::before{
  5009. content:"✗"; }
  5010. .bp3-icon-crown::before{
  5011. content:""; }
  5012. .bp3-icon-cube::before{
  5013. content:""; }
  5014. .bp3-icon-cube-add::before{
  5015. content:""; }
  5016. .bp3-icon-cube-remove::before{
  5017. content:""; }
  5018. .bp3-icon-curved-range-chart::before{
  5019. content:""; }
  5020. .bp3-icon-cut::before{
  5021. content:""; }
  5022. .bp3-icon-dashboard::before{
  5023. content:""; }
  5024. .bp3-icon-data-lineage::before{
  5025. content:""; }
  5026. .bp3-icon-database::before{
  5027. content:""; }
  5028. .bp3-icon-delete::before{
  5029. content:""; }
  5030. .bp3-icon-delta::before{
  5031. content:"Δ"; }
  5032. .bp3-icon-derive-column::before{
  5033. content:""; }
  5034. .bp3-icon-desktop::before{
  5035. content:""; }
  5036. .bp3-icon-diagnosis::before{
  5037. content:""; }
  5038. .bp3-icon-diagram-tree::before{
  5039. content:""; }
  5040. .bp3-icon-direction-left::before{
  5041. content:""; }
  5042. .bp3-icon-direction-right::before{
  5043. content:""; }
  5044. .bp3-icon-disable::before{
  5045. content:""; }
  5046. .bp3-icon-document::before{
  5047. content:""; }
  5048. .bp3-icon-document-open::before{
  5049. content:""; }
  5050. .bp3-icon-document-share::before{
  5051. content:""; }
  5052. .bp3-icon-dollar::before{
  5053. content:"$"; }
  5054. .bp3-icon-dot::before{
  5055. content:"•"; }
  5056. .bp3-icon-double-caret-horizontal::before{
  5057. content:""; }
  5058. .bp3-icon-double-caret-vertical::before{
  5059. content:""; }
  5060. .bp3-icon-double-chevron-down::before{
  5061. content:""; }
  5062. .bp3-icon-double-chevron-left::before{
  5063. content:""; }
  5064. .bp3-icon-double-chevron-right::before{
  5065. content:""; }
  5066. .bp3-icon-double-chevron-up::before{
  5067. content:""; }
  5068. .bp3-icon-doughnut-chart::before{
  5069. content:""; }
  5070. .bp3-icon-download::before{
  5071. content:""; }
  5072. .bp3-icon-drag-handle-horizontal::before{
  5073. content:""; }
  5074. .bp3-icon-drag-handle-vertical::before{
  5075. content:""; }
  5076. .bp3-icon-draw::before{
  5077. content:""; }
  5078. .bp3-icon-drive-time::before{
  5079. content:""; }
  5080. .bp3-icon-duplicate::before{
  5081. content:""; }
  5082. .bp3-icon-edit::before{
  5083. content:"✎"; }
  5084. .bp3-icon-eject::before{
  5085. content:"⏏"; }
  5086. .bp3-icon-endorsed::before{
  5087. content:""; }
  5088. .bp3-icon-envelope::before{
  5089. content:"✉"; }
  5090. .bp3-icon-equals::before{
  5091. content:""; }
  5092. .bp3-icon-eraser::before{
  5093. content:""; }
  5094. .bp3-icon-error::before{
  5095. content:""; }
  5096. .bp3-icon-euro::before{
  5097. content:"€"; }
  5098. .bp3-icon-exchange::before{
  5099. content:""; }
  5100. .bp3-icon-exclude-row::before{
  5101. content:""; }
  5102. .bp3-icon-expand-all::before{
  5103. content:""; }
  5104. .bp3-icon-export::before{
  5105. content:""; }
  5106. .bp3-icon-eye-off::before{
  5107. content:""; }
  5108. .bp3-icon-eye-on::before{
  5109. content:""; }
  5110. .bp3-icon-eye-open::before{
  5111. content:""; }
  5112. .bp3-icon-fast-backward::before{
  5113. content:""; }
  5114. .bp3-icon-fast-forward::before{
  5115. content:""; }
  5116. .bp3-icon-feed::before{
  5117. content:""; }
  5118. .bp3-icon-feed-subscribed::before{
  5119. content:""; }
  5120. .bp3-icon-film::before{
  5121. content:""; }
  5122. .bp3-icon-filter::before{
  5123. content:""; }
  5124. .bp3-icon-filter-keep::before{
  5125. content:""; }
  5126. .bp3-icon-filter-list::before{
  5127. content:""; }
  5128. .bp3-icon-filter-open::before{
  5129. content:""; }
  5130. .bp3-icon-filter-remove::before{
  5131. content:""; }
  5132. .bp3-icon-flag::before{
  5133. content:"⚑"; }
  5134. .bp3-icon-flame::before{
  5135. content:""; }
  5136. .bp3-icon-flash::before{
  5137. content:""; }
  5138. .bp3-icon-floppy-disk::before{
  5139. content:""; }
  5140. .bp3-icon-flow-branch::before{
  5141. content:""; }
  5142. .bp3-icon-flow-end::before{
  5143. content:""; }
  5144. .bp3-icon-flow-linear::before{
  5145. content:""; }
  5146. .bp3-icon-flow-review::before{
  5147. content:""; }
  5148. .bp3-icon-flow-review-branch::before{
  5149. content:""; }
  5150. .bp3-icon-flows::before{
  5151. content:""; }
  5152. .bp3-icon-folder-close::before{
  5153. content:""; }
  5154. .bp3-icon-folder-new::before{
  5155. content:""; }
  5156. .bp3-icon-folder-open::before{
  5157. content:""; }
  5158. .bp3-icon-folder-shared::before{
  5159. content:""; }
  5160. .bp3-icon-folder-shared-open::before{
  5161. content:""; }
  5162. .bp3-icon-follower::before{
  5163. content:""; }
  5164. .bp3-icon-following::before{
  5165. content:""; }
  5166. .bp3-icon-font::before{
  5167. content:""; }
  5168. .bp3-icon-fork::before{
  5169. content:""; }
  5170. .bp3-icon-form::before{
  5171. content:""; }
  5172. .bp3-icon-full-circle::before{
  5173. content:""; }
  5174. .bp3-icon-full-stacked-chart::before{
  5175. content:""; }
  5176. .bp3-icon-fullscreen::before{
  5177. content:""; }
  5178. .bp3-icon-function::before{
  5179. content:""; }
  5180. .bp3-icon-gantt-chart::before{
  5181. content:""; }
  5182. .bp3-icon-geolocation::before{
  5183. content:""; }
  5184. .bp3-icon-geosearch::before{
  5185. content:""; }
  5186. .bp3-icon-git-branch::before{
  5187. content:""; }
  5188. .bp3-icon-git-commit::before{
  5189. content:""; }
  5190. .bp3-icon-git-merge::before{
  5191. content:""; }
  5192. .bp3-icon-git-new-branch::before{
  5193. content:""; }
  5194. .bp3-icon-git-pull::before{
  5195. content:""; }
  5196. .bp3-icon-git-push::before{
  5197. content:""; }
  5198. .bp3-icon-git-repo::before{
  5199. content:""; }
  5200. .bp3-icon-glass::before{
  5201. content:""; }
  5202. .bp3-icon-globe::before{
  5203. content:""; }
  5204. .bp3-icon-globe-network::before{
  5205. content:""; }
  5206. .bp3-icon-graph::before{
  5207. content:""; }
  5208. .bp3-icon-graph-remove::before{
  5209. content:""; }
  5210. .bp3-icon-greater-than::before{
  5211. content:""; }
  5212. .bp3-icon-greater-than-or-equal-to::before{
  5213. content:""; }
  5214. .bp3-icon-grid::before{
  5215. content:""; }
  5216. .bp3-icon-grid-view::before{
  5217. content:""; }
  5218. .bp3-icon-group-objects::before{
  5219. content:""; }
  5220. .bp3-icon-grouped-bar-chart::before{
  5221. content:""; }
  5222. .bp3-icon-hand::before{
  5223. content:""; }
  5224. .bp3-icon-hand-down::before{
  5225. content:""; }
  5226. .bp3-icon-hand-left::before{
  5227. content:""; }
  5228. .bp3-icon-hand-right::before{
  5229. content:""; }
  5230. .bp3-icon-hand-up::before{
  5231. content:""; }
  5232. .bp3-icon-header::before{
  5233. content:""; }
  5234. .bp3-icon-header-one::before{
  5235. content:""; }
  5236. .bp3-icon-header-two::before{
  5237. content:""; }
  5238. .bp3-icon-headset::before{
  5239. content:""; }
  5240. .bp3-icon-heart::before{
  5241. content:"♥"; }
  5242. .bp3-icon-heart-broken::before{
  5243. content:""; }
  5244. .bp3-icon-heat-grid::before{
  5245. content:""; }
  5246. .bp3-icon-heatmap::before{
  5247. content:""; }
  5248. .bp3-icon-help::before{
  5249. content:"?"; }
  5250. .bp3-icon-helper-management::before{
  5251. content:""; }
  5252. .bp3-icon-highlight::before{
  5253. content:""; }
  5254. .bp3-icon-history::before{
  5255. content:""; }
  5256. .bp3-icon-home::before{
  5257. content:"⌂"; }
  5258. .bp3-icon-horizontal-bar-chart::before{
  5259. content:""; }
  5260. .bp3-icon-horizontal-bar-chart-asc::before{
  5261. content:""; }
  5262. .bp3-icon-horizontal-bar-chart-desc::before{
  5263. content:""; }
  5264. .bp3-icon-horizontal-distribution::before{
  5265. content:""; }
  5266. .bp3-icon-id-number::before{
  5267. content:""; }
  5268. .bp3-icon-image-rotate-left::before{
  5269. content:""; }
  5270. .bp3-icon-image-rotate-right::before{
  5271. content:""; }
  5272. .bp3-icon-import::before{
  5273. content:""; }
  5274. .bp3-icon-inbox::before{
  5275. content:""; }
  5276. .bp3-icon-inbox-filtered::before{
  5277. content:""; }
  5278. .bp3-icon-inbox-geo::before{
  5279. content:""; }
  5280. .bp3-icon-inbox-search::before{
  5281. content:""; }
  5282. .bp3-icon-inbox-update::before{
  5283. content:""; }
  5284. .bp3-icon-info-sign::before{
  5285. content:"ℹ"; }
  5286. .bp3-icon-inheritance::before{
  5287. content:""; }
  5288. .bp3-icon-inner-join::before{
  5289. content:""; }
  5290. .bp3-icon-insert::before{
  5291. content:""; }
  5292. .bp3-icon-intersection::before{
  5293. content:""; }
  5294. .bp3-icon-ip-address::before{
  5295. content:""; }
  5296. .bp3-icon-issue::before{
  5297. content:""; }
  5298. .bp3-icon-issue-closed::before{
  5299. content:""; }
  5300. .bp3-icon-issue-new::before{
  5301. content:""; }
  5302. .bp3-icon-italic::before{
  5303. content:""; }
  5304. .bp3-icon-join-table::before{
  5305. content:""; }
  5306. .bp3-icon-key::before{
  5307. content:""; }
  5308. .bp3-icon-key-backspace::before{
  5309. content:""; }
  5310. .bp3-icon-key-command::before{
  5311. content:""; }
  5312. .bp3-icon-key-control::before{
  5313. content:""; }
  5314. .bp3-icon-key-delete::before{
  5315. content:""; }
  5316. .bp3-icon-key-enter::before{
  5317. content:""; }
  5318. .bp3-icon-key-escape::before{
  5319. content:""; }
  5320. .bp3-icon-key-option::before{
  5321. content:""; }
  5322. .bp3-icon-key-shift::before{
  5323. content:""; }
  5324. .bp3-icon-key-tab::before{
  5325. content:""; }
  5326. .bp3-icon-known-vehicle::before{
  5327. content:""; }
  5328. .bp3-icon-lab-test::before{
  5329. content:""; }
  5330. .bp3-icon-label::before{
  5331. content:""; }
  5332. .bp3-icon-layer::before{
  5333. content:""; }
  5334. .bp3-icon-layers::before{
  5335. content:""; }
  5336. .bp3-icon-layout::before{
  5337. content:""; }
  5338. .bp3-icon-layout-auto::before{
  5339. content:""; }
  5340. .bp3-icon-layout-balloon::before{
  5341. content:""; }
  5342. .bp3-icon-layout-circle::before{
  5343. content:""; }
  5344. .bp3-icon-layout-grid::before{
  5345. content:""; }
  5346. .bp3-icon-layout-group-by::before{
  5347. content:""; }
  5348. .bp3-icon-layout-hierarchy::before{
  5349. content:""; }
  5350. .bp3-icon-layout-linear::before{
  5351. content:""; }
  5352. .bp3-icon-layout-skew-grid::before{
  5353. content:""; }
  5354. .bp3-icon-layout-sorted-clusters::before{
  5355. content:""; }
  5356. .bp3-icon-learning::before{
  5357. content:""; }
  5358. .bp3-icon-left-join::before{
  5359. content:""; }
  5360. .bp3-icon-less-than::before{
  5361. content:""; }
  5362. .bp3-icon-less-than-or-equal-to::before{
  5363. content:""; }
  5364. .bp3-icon-lifesaver::before{
  5365. content:""; }
  5366. .bp3-icon-lightbulb::before{
  5367. content:""; }
  5368. .bp3-icon-link::before{
  5369. content:""; }
  5370. .bp3-icon-list::before{
  5371. content:"☰"; }
  5372. .bp3-icon-list-columns::before{
  5373. content:""; }
  5374. .bp3-icon-list-detail-view::before{
  5375. content:""; }
  5376. .bp3-icon-locate::before{
  5377. content:""; }
  5378. .bp3-icon-lock::before{
  5379. content:""; }
  5380. .bp3-icon-log-in::before{
  5381. content:""; }
  5382. .bp3-icon-log-out::before{
  5383. content:""; }
  5384. .bp3-icon-manual::before{
  5385. content:""; }
  5386. .bp3-icon-manually-entered-data::before{
  5387. content:""; }
  5388. .bp3-icon-map::before{
  5389. content:""; }
  5390. .bp3-icon-map-create::before{
  5391. content:""; }
  5392. .bp3-icon-map-marker::before{
  5393. content:""; }
  5394. .bp3-icon-maximize::before{
  5395. content:""; }
  5396. .bp3-icon-media::before{
  5397. content:""; }
  5398. .bp3-icon-menu::before{
  5399. content:""; }
  5400. .bp3-icon-menu-closed::before{
  5401. content:""; }
  5402. .bp3-icon-menu-open::before{
  5403. content:""; }
  5404. .bp3-icon-merge-columns::before{
  5405. content:""; }
  5406. .bp3-icon-merge-links::before{
  5407. content:""; }
  5408. .bp3-icon-minimize::before{
  5409. content:""; }
  5410. .bp3-icon-minus::before{
  5411. content:"−"; }
  5412. .bp3-icon-mobile-phone::before{
  5413. content:""; }
  5414. .bp3-icon-mobile-video::before{
  5415. content:""; }
  5416. .bp3-icon-moon::before{
  5417. content:""; }
  5418. .bp3-icon-more::before{
  5419. content:""; }
  5420. .bp3-icon-mountain::before{
  5421. content:""; }
  5422. .bp3-icon-move::before{
  5423. content:""; }
  5424. .bp3-icon-mugshot::before{
  5425. content:""; }
  5426. .bp3-icon-multi-select::before{
  5427. content:""; }
  5428. .bp3-icon-music::before{
  5429. content:""; }
  5430. .bp3-icon-new-drawing::before{
  5431. content:""; }
  5432. .bp3-icon-new-grid-item::before{
  5433. content:""; }
  5434. .bp3-icon-new-layer::before{
  5435. content:""; }
  5436. .bp3-icon-new-layers::before{
  5437. content:""; }
  5438. .bp3-icon-new-link::before{
  5439. content:""; }
  5440. .bp3-icon-new-object::before{
  5441. content:""; }
  5442. .bp3-icon-new-person::before{
  5443. content:""; }
  5444. .bp3-icon-new-prescription::before{
  5445. content:""; }
  5446. .bp3-icon-new-text-box::before{
  5447. content:""; }
  5448. .bp3-icon-ninja::before{
  5449. content:""; }
  5450. .bp3-icon-not-equal-to::before{
  5451. content:""; }
  5452. .bp3-icon-notifications::before{
  5453. content:""; }
  5454. .bp3-icon-notifications-updated::before{
  5455. content:""; }
  5456. .bp3-icon-numbered-list::before{
  5457. content:""; }
  5458. .bp3-icon-numerical::before{
  5459. content:""; }
  5460. .bp3-icon-office::before{
  5461. content:""; }
  5462. .bp3-icon-offline::before{
  5463. content:""; }
  5464. .bp3-icon-oil-field::before{
  5465. content:""; }
  5466. .bp3-icon-one-column::before{
  5467. content:""; }
  5468. .bp3-icon-outdated::before{
  5469. content:""; }
  5470. .bp3-icon-page-layout::before{
  5471. content:""; }
  5472. .bp3-icon-panel-stats::before{
  5473. content:""; }
  5474. .bp3-icon-panel-table::before{
  5475. content:""; }
  5476. .bp3-icon-paperclip::before{
  5477. content:""; }
  5478. .bp3-icon-paragraph::before{
  5479. content:""; }
  5480. .bp3-icon-path::before{
  5481. content:""; }
  5482. .bp3-icon-path-search::before{
  5483. content:""; }
  5484. .bp3-icon-pause::before{
  5485. content:""; }
  5486. .bp3-icon-people::before{
  5487. content:""; }
  5488. .bp3-icon-percentage::before{
  5489. content:""; }
  5490. .bp3-icon-person::before{
  5491. content:""; }
  5492. .bp3-icon-phone::before{
  5493. content:"☎"; }
  5494. .bp3-icon-pie-chart::before{
  5495. content:""; }
  5496. .bp3-icon-pin::before{
  5497. content:""; }
  5498. .bp3-icon-pivot::before{
  5499. content:""; }
  5500. .bp3-icon-pivot-table::before{
  5501. content:""; }
  5502. .bp3-icon-play::before{
  5503. content:""; }
  5504. .bp3-icon-plus::before{
  5505. content:"+"; }
  5506. .bp3-icon-polygon-filter::before{
  5507. content:""; }
  5508. .bp3-icon-power::before{
  5509. content:""; }
  5510. .bp3-icon-predictive-analysis::before{
  5511. content:""; }
  5512. .bp3-icon-prescription::before{
  5513. content:""; }
  5514. .bp3-icon-presentation::before{
  5515. content:""; }
  5516. .bp3-icon-print::before{
  5517. content:"⎙"; }
  5518. .bp3-icon-projects::before{
  5519. content:""; }
  5520. .bp3-icon-properties::before{
  5521. content:""; }
  5522. .bp3-icon-property::before{
  5523. content:""; }
  5524. .bp3-icon-publish-function::before{
  5525. content:""; }
  5526. .bp3-icon-pulse::before{
  5527. content:""; }
  5528. .bp3-icon-random::before{
  5529. content:""; }
  5530. .bp3-icon-record::before{
  5531. content:""; }
  5532. .bp3-icon-redo::before{
  5533. content:""; }
  5534. .bp3-icon-refresh::before{
  5535. content:""; }
  5536. .bp3-icon-regression-chart::before{
  5537. content:""; }
  5538. .bp3-icon-remove::before{
  5539. content:""; }
  5540. .bp3-icon-remove-column::before{
  5541. content:""; }
  5542. .bp3-icon-remove-column-left::before{
  5543. content:""; }
  5544. .bp3-icon-remove-column-right::before{
  5545. content:""; }
  5546. .bp3-icon-remove-row-bottom::before{
  5547. content:""; }
  5548. .bp3-icon-remove-row-top::before{
  5549. content:""; }
  5550. .bp3-icon-repeat::before{
  5551. content:""; }
  5552. .bp3-icon-reset::before{
  5553. content:""; }
  5554. .bp3-icon-resolve::before{
  5555. content:""; }
  5556. .bp3-icon-rig::before{
  5557. content:""; }
  5558. .bp3-icon-right-join::before{
  5559. content:""; }
  5560. .bp3-icon-ring::before{
  5561. content:""; }
  5562. .bp3-icon-rotate-document::before{
  5563. content:""; }
  5564. .bp3-icon-rotate-page::before{
  5565. content:""; }
  5566. .bp3-icon-satellite::before{
  5567. content:""; }
  5568. .bp3-icon-saved::before{
  5569. content:""; }
  5570. .bp3-icon-scatter-plot::before{
  5571. content:""; }
  5572. .bp3-icon-search::before{
  5573. content:""; }
  5574. .bp3-icon-search-around::before{
  5575. content:""; }
  5576. .bp3-icon-search-template::before{
  5577. content:""; }
  5578. .bp3-icon-search-text::before{
  5579. content:""; }
  5580. .bp3-icon-segmented-control::before{
  5581. content:""; }
  5582. .bp3-icon-select::before{
  5583. content:""; }
  5584. .bp3-icon-selection::before{
  5585. content:"⦿"; }
  5586. .bp3-icon-send-to::before{
  5587. content:""; }
  5588. .bp3-icon-send-to-graph::before{
  5589. content:""; }
  5590. .bp3-icon-send-to-map::before{
  5591. content:""; }
  5592. .bp3-icon-series-add::before{
  5593. content:""; }
  5594. .bp3-icon-series-configuration::before{
  5595. content:""; }
  5596. .bp3-icon-series-derived::before{
  5597. content:""; }
  5598. .bp3-icon-series-filtered::before{
  5599. content:""; }
  5600. .bp3-icon-series-search::before{
  5601. content:""; }
  5602. .bp3-icon-settings::before{
  5603. content:""; }
  5604. .bp3-icon-share::before{
  5605. content:""; }
  5606. .bp3-icon-shield::before{
  5607. content:""; }
  5608. .bp3-icon-shop::before{
  5609. content:""; }
  5610. .bp3-icon-shopping-cart::before{
  5611. content:""; }
  5612. .bp3-icon-signal-search::before{
  5613. content:""; }
  5614. .bp3-icon-sim-card::before{
  5615. content:""; }
  5616. .bp3-icon-slash::before{
  5617. content:""; }
  5618. .bp3-icon-small-cross::before{
  5619. content:""; }
  5620. .bp3-icon-small-minus::before{
  5621. content:""; }
  5622. .bp3-icon-small-plus::before{
  5623. content:""; }
  5624. .bp3-icon-small-tick::before{
  5625. content:""; }
  5626. .bp3-icon-snowflake::before{
  5627. content:""; }
  5628. .bp3-icon-social-media::before{
  5629. content:""; }
  5630. .bp3-icon-sort::before{
  5631. content:""; }
  5632. .bp3-icon-sort-alphabetical::before{
  5633. content:""; }
  5634. .bp3-icon-sort-alphabetical-desc::before{
  5635. content:""; }
  5636. .bp3-icon-sort-asc::before{
  5637. content:""; }
  5638. .bp3-icon-sort-desc::before{
  5639. content:""; }
  5640. .bp3-icon-sort-numerical::before{
  5641. content:""; }
  5642. .bp3-icon-sort-numerical-desc::before{
  5643. content:""; }
  5644. .bp3-icon-split-columns::before{
  5645. content:""; }
  5646. .bp3-icon-square::before{
  5647. content:""; }
  5648. .bp3-icon-stacked-chart::before{
  5649. content:""; }
  5650. .bp3-icon-star::before{
  5651. content:"★"; }
  5652. .bp3-icon-star-empty::before{
  5653. content:"☆"; }
  5654. .bp3-icon-step-backward::before{
  5655. content:""; }
  5656. .bp3-icon-step-chart::before{
  5657. content:""; }
  5658. .bp3-icon-step-forward::before{
  5659. content:""; }
  5660. .bp3-icon-stop::before{
  5661. content:""; }
  5662. .bp3-icon-stopwatch::before{
  5663. content:""; }
  5664. .bp3-icon-strikethrough::before{
  5665. content:""; }
  5666. .bp3-icon-style::before{
  5667. content:""; }
  5668. .bp3-icon-swap-horizontal::before{
  5669. content:""; }
  5670. .bp3-icon-swap-vertical::before{
  5671. content:""; }
  5672. .bp3-icon-symbol-circle::before{
  5673. content:""; }
  5674. .bp3-icon-symbol-cross::before{
  5675. content:""; }
  5676. .bp3-icon-symbol-diamond::before{
  5677. content:""; }
  5678. .bp3-icon-symbol-square::before{
  5679. content:""; }
  5680. .bp3-icon-symbol-triangle-down::before{
  5681. content:""; }
  5682. .bp3-icon-symbol-triangle-up::before{
  5683. content:""; }
  5684. .bp3-icon-tag::before{
  5685. content:""; }
  5686. .bp3-icon-take-action::before{
  5687. content:""; }
  5688. .bp3-icon-taxi::before{
  5689. content:""; }
  5690. .bp3-icon-text-highlight::before{
  5691. content:""; }
  5692. .bp3-icon-th::before{
  5693. content:""; }
  5694. .bp3-icon-th-derived::before{
  5695. content:""; }
  5696. .bp3-icon-th-disconnect::before{
  5697. content:""; }
  5698. .bp3-icon-th-filtered::before{
  5699. content:""; }
  5700. .bp3-icon-th-list::before{
  5701. content:""; }
  5702. .bp3-icon-thumbs-down::before{
  5703. content:""; }
  5704. .bp3-icon-thumbs-up::before{
  5705. content:""; }
  5706. .bp3-icon-tick::before{
  5707. content:"✓"; }
  5708. .bp3-icon-tick-circle::before{
  5709. content:""; }
  5710. .bp3-icon-time::before{
  5711. content:"⏲"; }
  5712. .bp3-icon-timeline-area-chart::before{
  5713. content:""; }
  5714. .bp3-icon-timeline-bar-chart::before{
  5715. content:""; }
  5716. .bp3-icon-timeline-events::before{
  5717. content:""; }
  5718. .bp3-icon-timeline-line-chart::before{
  5719. content:""; }
  5720. .bp3-icon-tint::before{
  5721. content:""; }
  5722. .bp3-icon-torch::before{
  5723. content:""; }
  5724. .bp3-icon-tractor::before{
  5725. content:""; }
  5726. .bp3-icon-train::before{
  5727. content:""; }
  5728. .bp3-icon-translate::before{
  5729. content:""; }
  5730. .bp3-icon-trash::before{
  5731. content:""; }
  5732. .bp3-icon-tree::before{
  5733. content:""; }
  5734. .bp3-icon-trending-down::before{
  5735. content:""; }
  5736. .bp3-icon-trending-up::before{
  5737. content:""; }
  5738. .bp3-icon-truck::before{
  5739. content:""; }
  5740. .bp3-icon-two-columns::before{
  5741. content:""; }
  5742. .bp3-icon-unarchive::before{
  5743. content:""; }
  5744. .bp3-icon-underline::before{
  5745. content:"⎁"; }
  5746. .bp3-icon-undo::before{
  5747. content:"⎌"; }
  5748. .bp3-icon-ungroup-objects::before{
  5749. content:""; }
  5750. .bp3-icon-unknown-vehicle::before{
  5751. content:""; }
  5752. .bp3-icon-unlock::before{
  5753. content:""; }
  5754. .bp3-icon-unpin::before{
  5755. content:""; }
  5756. .bp3-icon-unresolve::before{
  5757. content:""; }
  5758. .bp3-icon-updated::before{
  5759. content:""; }
  5760. .bp3-icon-upload::before{
  5761. content:""; }
  5762. .bp3-icon-user::before{
  5763. content:""; }
  5764. .bp3-icon-variable::before{
  5765. content:""; }
  5766. .bp3-icon-vertical-bar-chart-asc::before{
  5767. content:""; }
  5768. .bp3-icon-vertical-bar-chart-desc::before{
  5769. content:""; }
  5770. .bp3-icon-vertical-distribution::before{
  5771. content:""; }
  5772. .bp3-icon-video::before{
  5773. content:""; }
  5774. .bp3-icon-volume-down::before{
  5775. content:""; }
  5776. .bp3-icon-volume-off::before{
  5777. content:""; }
  5778. .bp3-icon-volume-up::before{
  5779. content:""; }
  5780. .bp3-icon-walk::before{
  5781. content:""; }
  5782. .bp3-icon-warning-sign::before{
  5783. content:""; }
  5784. .bp3-icon-waterfall-chart::before{
  5785. content:""; }
  5786. .bp3-icon-widget::before{
  5787. content:""; }
  5788. .bp3-icon-widget-button::before{
  5789. content:""; }
  5790. .bp3-icon-widget-footer::before{
  5791. content:""; }
  5792. .bp3-icon-widget-header::before{
  5793. content:""; }
  5794. .bp3-icon-wrench::before{
  5795. content:""; }
  5796. .bp3-icon-zoom-in::before{
  5797. content:""; }
  5798. .bp3-icon-zoom-out::before{
  5799. content:""; }
  5800. .bp3-icon-zoom-to-fit::before{
  5801. content:""; }
  5802. .bp3-submenu > .bp3-popover-wrapper{
  5803. display:block; }
  5804. .bp3-submenu .bp3-popover-target{
  5805. display:block; }
  5806. .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{ }
  5807. .bp3-submenu.bp3-popover{
  5808. -webkit-box-shadow:none;
  5809. box-shadow:none;
  5810. padding:0 5px; }
  5811. .bp3-submenu.bp3-popover > .bp3-popover-content{
  5812. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  5813. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2); }
  5814. .bp3-dark .bp3-submenu.bp3-popover, .bp3-submenu.bp3-popover.bp3-dark{
  5815. -webkit-box-shadow:none;
  5816. box-shadow:none; }
  5817. .bp3-dark .bp3-submenu.bp3-popover > .bp3-popover-content, .bp3-submenu.bp3-popover.bp3-dark > .bp3-popover-content{
  5818. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  5819. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }
  5820. .bp3-menu{
  5821. background:#ffffff;
  5822. border-radius:3px;
  5823. color:#182026;
  5824. list-style:none;
  5825. margin:0;
  5826. min-width:180px;
  5827. padding:5px;
  5828. text-align:left; }
  5829. .bp3-menu-divider{
  5830. border-top:1px solid rgba(16, 22, 26, 0.15);
  5831. display:block;
  5832. margin:5px; }
  5833. .bp3-dark .bp3-menu-divider{
  5834. border-top-color:rgba(255, 255, 255, 0.15); }
  5835. .bp3-menu-item{
  5836. display:-webkit-box;
  5837. display:-ms-flexbox;
  5838. display:flex;
  5839. -webkit-box-orient:horizontal;
  5840. -webkit-box-direction:normal;
  5841. -ms-flex-direction:row;
  5842. flex-direction:row;
  5843. -webkit-box-align:start;
  5844. -ms-flex-align:start;
  5845. align-items:flex-start;
  5846. border-radius:2px;
  5847. color:inherit;
  5848. line-height:20px;
  5849. padding:5px 7px;
  5850. text-decoration:none;
  5851. -webkit-user-select:none;
  5852. -moz-user-select:none;
  5853. -ms-user-select:none;
  5854. user-select:none; }
  5855. .bp3-menu-item > *{
  5856. -webkit-box-flex:0;
  5857. -ms-flex-positive:0;
  5858. flex-grow:0;
  5859. -ms-flex-negative:0;
  5860. flex-shrink:0; }
  5861. .bp3-menu-item > .bp3-fill{
  5862. -webkit-box-flex:1;
  5863. -ms-flex-positive:1;
  5864. flex-grow:1;
  5865. -ms-flex-negative:1;
  5866. flex-shrink:1; }
  5867. .bp3-menu-item::before,
  5868. .bp3-menu-item > *{
  5869. margin-right:7px; }
  5870. .bp3-menu-item:empty::before,
  5871. .bp3-menu-item > :last-child{
  5872. margin-right:0; }
  5873. .bp3-menu-item > .bp3-fill{
  5874. word-break:break-word; }
  5875. .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{
  5876. background-color:rgba(167, 182, 194, 0.3);
  5877. cursor:pointer;
  5878. text-decoration:none; }
  5879. .bp3-menu-item.bp3-disabled{
  5880. background-color:inherit;
  5881. color:rgba(92, 112, 128, 0.6);
  5882. cursor:not-allowed; }
  5883. .bp3-dark .bp3-menu-item{
  5884. color:inherit; }
  5885. .bp3-dark .bp3-menu-item:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-menu-item{
  5886. background-color:rgba(138, 155, 168, 0.15);
  5887. color:inherit; }
  5888. .bp3-dark .bp3-menu-item.bp3-disabled{
  5889. background-color:inherit;
  5890. color:rgba(167, 182, 194, 0.6); }
  5891. .bp3-menu-item.bp3-intent-primary{
  5892. color:#106ba3; }
  5893. .bp3-menu-item.bp3-intent-primary .bp3-icon{
  5894. color:inherit; }
  5895. .bp3-menu-item.bp3-intent-primary::before, .bp3-menu-item.bp3-intent-primary::after,
  5896. .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{
  5897. color:#106ba3; }
  5898. .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary.bp3-active{
  5899. background-color:#137cbd; }
  5900. .bp3-menu-item.bp3-intent-primary:active{
  5901. background-color:#106ba3; }
  5902. .bp3-menu-item.bp3-intent-primary:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,
  5903. .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,
  5904. .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary:active, .bp3-menu-item.bp3-intent-primary:active::before, .bp3-menu-item.bp3-intent-primary:active::after,
  5905. .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-menu-item.bp3-intent-primary.bp3-active::after,
  5906. .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{
  5907. color:#ffffff; }
  5908. .bp3-menu-item.bp3-intent-success{
  5909. color:#0d8050; }
  5910. .bp3-menu-item.bp3-intent-success .bp3-icon{
  5911. color:inherit; }
  5912. .bp3-menu-item.bp3-intent-success::before, .bp3-menu-item.bp3-intent-success::after,
  5913. .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{
  5914. color:#0d8050; }
  5915. .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success.bp3-active{
  5916. background-color:#0f9960; }
  5917. .bp3-menu-item.bp3-intent-success:active{
  5918. background-color:#0d8050; }
  5919. .bp3-menu-item.bp3-intent-success:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-menu-item.bp3-intent-success:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-menu-item.bp3-intent-success:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,
  5920. .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,
  5921. .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success:active, .bp3-menu-item.bp3-intent-success:active::before, .bp3-menu-item.bp3-intent-success:active::after,
  5922. .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-menu-item.bp3-intent-success.bp3-active::after,
  5923. .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{
  5924. color:#ffffff; }
  5925. .bp3-menu-item.bp3-intent-warning{
  5926. color:#bf7326; }
  5927. .bp3-menu-item.bp3-intent-warning .bp3-icon{
  5928. color:inherit; }
  5929. .bp3-menu-item.bp3-intent-warning::before, .bp3-menu-item.bp3-intent-warning::after,
  5930. .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{
  5931. color:#bf7326; }
  5932. .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning.bp3-active{
  5933. background-color:#d9822b; }
  5934. .bp3-menu-item.bp3-intent-warning:active{
  5935. background-color:#bf7326; }
  5936. .bp3-menu-item.bp3-intent-warning:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,
  5937. .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,
  5938. .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning:active, .bp3-menu-item.bp3-intent-warning:active::before, .bp3-menu-item.bp3-intent-warning:active::after,
  5939. .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-menu-item.bp3-intent-warning.bp3-active::after,
  5940. .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{
  5941. color:#ffffff; }
  5942. .bp3-menu-item.bp3-intent-danger{
  5943. color:#c23030; }
  5944. .bp3-menu-item.bp3-intent-danger .bp3-icon{
  5945. color:inherit; }
  5946. .bp3-menu-item.bp3-intent-danger::before, .bp3-menu-item.bp3-intent-danger::after,
  5947. .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{
  5948. color:#c23030; }
  5949. .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger.bp3-active{
  5950. background-color:#db3737; }
  5951. .bp3-menu-item.bp3-intent-danger:active{
  5952. background-color:#c23030; }
  5953. .bp3-menu-item.bp3-intent-danger:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,
  5954. .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,
  5955. .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger:active, .bp3-menu-item.bp3-intent-danger:active::before, .bp3-menu-item.bp3-intent-danger:active::after,
  5956. .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-menu-item.bp3-intent-danger.bp3-active::after,
  5957. .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{
  5958. color:#ffffff; }
  5959. .bp3-menu-item::before{
  5960. font-family:"Icons16", sans-serif;
  5961. font-size:16px;
  5962. font-style:normal;
  5963. font-weight:400;
  5964. line-height:1;
  5965. -moz-osx-font-smoothing:grayscale;
  5966. -webkit-font-smoothing:antialiased;
  5967. margin-right:7px; }
  5968. .bp3-menu-item::before,
  5969. .bp3-menu-item > .bp3-icon{
  5970. color:#5c7080;
  5971. margin-top:2px; }
  5972. .bp3-menu-item .bp3-menu-item-label{
  5973. color:#5c7080; }
  5974. .bp3-menu-item:hover, .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-menu-item{
  5975. color:inherit; }
  5976. .bp3-menu-item.bp3-active, .bp3-menu-item:active{
  5977. background-color:rgba(115, 134, 148, 0.3); }
  5978. .bp3-menu-item.bp3-disabled{
  5979. background-color:inherit !important;
  5980. color:rgba(92, 112, 128, 0.6) !important;
  5981. cursor:not-allowed !important;
  5982. outline:none !important; }
  5983. .bp3-menu-item.bp3-disabled::before,
  5984. .bp3-menu-item.bp3-disabled > .bp3-icon,
  5985. .bp3-menu-item.bp3-disabled .bp3-menu-item-label{
  5986. color:rgba(92, 112, 128, 0.6) !important; }
  5987. .bp3-large .bp3-menu-item{
  5988. font-size:16px;
  5989. line-height:22px;
  5990. padding:9px 7px; }
  5991. .bp3-large .bp3-menu-item .bp3-icon{
  5992. margin-top:3px; }
  5993. .bp3-large .bp3-menu-item::before{
  5994. font-family:"Icons20", sans-serif;
  5995. font-size:20px;
  5996. font-style:normal;
  5997. font-weight:400;
  5998. line-height:1;
  5999. -moz-osx-font-smoothing:grayscale;
  6000. -webkit-font-smoothing:antialiased;
  6001. margin-right:10px;
  6002. margin-top:1px; }
  6003. button.bp3-menu-item{
  6004. background:none;
  6005. border:none;
  6006. text-align:left;
  6007. width:100%; }
  6008. .bp3-menu-header{
  6009. border-top:1px solid rgba(16, 22, 26, 0.15);
  6010. display:block;
  6011. margin:5px;
  6012. cursor:default;
  6013. padding-left:2px; }
  6014. .bp3-dark .bp3-menu-header{
  6015. border-top-color:rgba(255, 255, 255, 0.15); }
  6016. .bp3-menu-header:first-of-type{
  6017. border-top:none; }
  6018. .bp3-menu-header > h6{
  6019. color:#182026;
  6020. font-weight:600;
  6021. overflow:hidden;
  6022. text-overflow:ellipsis;
  6023. white-space:nowrap;
  6024. word-wrap:normal;
  6025. line-height:17px;
  6026. margin:0;
  6027. padding:10px 7px 0 1px; }
  6028. .bp3-dark .bp3-menu-header > h6{
  6029. color:#f5f8fa; }
  6030. .bp3-menu-header:first-of-type > h6{
  6031. padding-top:0; }
  6032. .bp3-large .bp3-menu-header > h6{
  6033. font-size:18px;
  6034. padding-bottom:5px;
  6035. padding-top:15px; }
  6036. .bp3-large .bp3-menu-header:first-of-type > h6{
  6037. padding-top:0; }
  6038. .bp3-dark .bp3-menu{
  6039. background:#30404d;
  6040. color:#f5f8fa; }
  6041. .bp3-dark .bp3-menu-item{ }
  6042. .bp3-dark .bp3-menu-item.bp3-intent-primary{
  6043. color:#48aff0; }
  6044. .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-icon{
  6045. color:inherit; }
  6046. .bp3-dark .bp3-menu-item.bp3-intent-primary::before, .bp3-dark .bp3-menu-item.bp3-intent-primary::after,
  6047. .bp3-dark .bp3-menu-item.bp3-intent-primary .bp3-menu-item-label{
  6048. color:#48aff0; }
  6049. .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active{
  6050. background-color:#137cbd; }
  6051. .bp3-dark .bp3-menu-item.bp3-intent-primary:active{
  6052. background-color:#106ba3; }
  6053. .bp3-dark .bp3-menu-item.bp3-intent-primary:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item::after,
  6054. .bp3-dark .bp3-menu-item.bp3-intent-primary:hover .bp3-menu-item-label,
  6055. .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label,
  6056. .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-primary.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary:active, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary:active::after,
  6057. .bp3-dark .bp3-menu-item.bp3-intent-primary:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active::after,
  6058. .bp3-dark .bp3-menu-item.bp3-intent-primary.bp3-active .bp3-menu-item-label{
  6059. color:#ffffff; }
  6060. .bp3-dark .bp3-menu-item.bp3-intent-success{
  6061. color:#3dcc91; }
  6062. .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-icon{
  6063. color:inherit; }
  6064. .bp3-dark .bp3-menu-item.bp3-intent-success::before, .bp3-dark .bp3-menu-item.bp3-intent-success::after,
  6065. .bp3-dark .bp3-menu-item.bp3-intent-success .bp3-menu-item-label{
  6066. color:#3dcc91; }
  6067. .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active{
  6068. background-color:#0f9960; }
  6069. .bp3-dark .bp3-menu-item.bp3-intent-success:active{
  6070. background-color:#0d8050; }
  6071. .bp3-dark .bp3-menu-item.bp3-intent-success:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-success:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item::after,
  6072. .bp3-dark .bp3-menu-item.bp3-intent-success:hover .bp3-menu-item-label,
  6073. .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label,
  6074. .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-success.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success:active, .bp3-dark .bp3-menu-item.bp3-intent-success:active::before, .bp3-dark .bp3-menu-item.bp3-intent-success:active::after,
  6075. .bp3-dark .bp3-menu-item.bp3-intent-success:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active::after,
  6076. .bp3-dark .bp3-menu-item.bp3-intent-success.bp3-active .bp3-menu-item-label{
  6077. color:#ffffff; }
  6078. .bp3-dark .bp3-menu-item.bp3-intent-warning{
  6079. color:#ffb366; }
  6080. .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-icon{
  6081. color:inherit; }
  6082. .bp3-dark .bp3-menu-item.bp3-intent-warning::before, .bp3-dark .bp3-menu-item.bp3-intent-warning::after,
  6083. .bp3-dark .bp3-menu-item.bp3-intent-warning .bp3-menu-item-label{
  6084. color:#ffb366; }
  6085. .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active{
  6086. background-color:#d9822b; }
  6087. .bp3-dark .bp3-menu-item.bp3-intent-warning:active{
  6088. background-color:#bf7326; }
  6089. .bp3-dark .bp3-menu-item.bp3-intent-warning:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item::after,
  6090. .bp3-dark .bp3-menu-item.bp3-intent-warning:hover .bp3-menu-item-label,
  6091. .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label,
  6092. .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-warning.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning:active, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning:active::after,
  6093. .bp3-dark .bp3-menu-item.bp3-intent-warning:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active::after,
  6094. .bp3-dark .bp3-menu-item.bp3-intent-warning.bp3-active .bp3-menu-item-label{
  6095. color:#ffffff; }
  6096. .bp3-dark .bp3-menu-item.bp3-intent-danger{
  6097. color:#ff7373; }
  6098. .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-icon{
  6099. color:inherit; }
  6100. .bp3-dark .bp3-menu-item.bp3-intent-danger::before, .bp3-dark .bp3-menu-item.bp3-intent-danger::after,
  6101. .bp3-dark .bp3-menu-item.bp3-intent-danger .bp3-menu-item-label{
  6102. color:#ff7373; }
  6103. .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active{
  6104. background-color:#db3737; }
  6105. .bp3-dark .bp3-menu-item.bp3-intent-danger:active{
  6106. background-color:#c23030; }
  6107. .bp3-dark .bp3-menu-item.bp3-intent-danger:hover, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::before, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:hover::after, .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after, .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item::after,
  6108. .bp3-dark .bp3-menu-item.bp3-intent-danger:hover .bp3-menu-item-label,
  6109. .bp3-dark .bp3-submenu .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label,
  6110. .bp3-submenu .bp3-dark .bp3-popover-target.bp3-popover-open > .bp3-intent-danger.bp3-menu-item .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger:active, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger:active::after,
  6111. .bp3-dark .bp3-menu-item.bp3-intent-danger:active .bp3-menu-item-label, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::before, .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active::after,
  6112. .bp3-dark .bp3-menu-item.bp3-intent-danger.bp3-active .bp3-menu-item-label{
  6113. color:#ffffff; }
  6114. .bp3-dark .bp3-menu-item::before,
  6115. .bp3-dark .bp3-menu-item > .bp3-icon{
  6116. color:#a7b6c2; }
  6117. .bp3-dark .bp3-menu-item .bp3-menu-item-label{
  6118. color:#a7b6c2; }
  6119. .bp3-dark .bp3-menu-item.bp3-active, .bp3-dark .bp3-menu-item:active{
  6120. background-color:rgba(138, 155, 168, 0.3); }
  6121. .bp3-dark .bp3-menu-item.bp3-disabled{
  6122. color:rgba(167, 182, 194, 0.6) !important; }
  6123. .bp3-dark .bp3-menu-item.bp3-disabled::before,
  6124. .bp3-dark .bp3-menu-item.bp3-disabled > .bp3-icon,
  6125. .bp3-dark .bp3-menu-item.bp3-disabled .bp3-menu-item-label{
  6126. color:rgba(167, 182, 194, 0.6) !important; }
  6127. .bp3-dark .bp3-menu-divider,
  6128. .bp3-dark .bp3-menu-header{
  6129. border-color:rgba(255, 255, 255, 0.15); }
  6130. .bp3-dark .bp3-menu-header > h6{
  6131. color:#f5f8fa; }
  6132. .bp3-label .bp3-menu{
  6133. margin-top:5px; }
  6134. .bp3-navbar{
  6135. background-color:#ffffff;
  6136. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  6137. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.2);
  6138. height:50px;
  6139. padding:0 15px;
  6140. position:relative;
  6141. width:100%;
  6142. z-index:10; }
  6143. .bp3-navbar.bp3-dark,
  6144. .bp3-dark .bp3-navbar{
  6145. background-color:#394b59; }
  6146. .bp3-navbar.bp3-dark{
  6147. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);
  6148. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }
  6149. .bp3-dark .bp3-navbar{
  6150. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4);
  6151. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 0 0 rgba(16, 22, 26, 0), 0 1px 1px rgba(16, 22, 26, 0.4); }
  6152. .bp3-navbar.bp3-fixed-top{
  6153. left:0;
  6154. position:fixed;
  6155. right:0;
  6156. top:0; }
  6157. .bp3-navbar-heading{
  6158. font-size:16px;
  6159. margin-right:15px; }
  6160. .bp3-navbar-group{
  6161. -webkit-box-align:center;
  6162. -ms-flex-align:center;
  6163. align-items:center;
  6164. display:-webkit-box;
  6165. display:-ms-flexbox;
  6166. display:flex;
  6167. height:50px; }
  6168. .bp3-navbar-group.bp3-align-left{
  6169. float:left; }
  6170. .bp3-navbar-group.bp3-align-right{
  6171. float:right; }
  6172. .bp3-navbar-divider{
  6173. border-left:1px solid rgba(16, 22, 26, 0.15);
  6174. height:20px;
  6175. margin:0 10px; }
  6176. .bp3-dark .bp3-navbar-divider{
  6177. border-left-color:rgba(255, 255, 255, 0.15); }
  6178. .bp3-non-ideal-state{
  6179. display:-webkit-box;
  6180. display:-ms-flexbox;
  6181. display:flex;
  6182. -webkit-box-orient:vertical;
  6183. -webkit-box-direction:normal;
  6184. -ms-flex-direction:column;
  6185. flex-direction:column;
  6186. -webkit-box-align:center;
  6187. -ms-flex-align:center;
  6188. align-items:center;
  6189. height:100%;
  6190. -webkit-box-pack:center;
  6191. -ms-flex-pack:center;
  6192. justify-content:center;
  6193. text-align:center;
  6194. width:100%; }
  6195. .bp3-non-ideal-state > *{
  6196. -webkit-box-flex:0;
  6197. -ms-flex-positive:0;
  6198. flex-grow:0;
  6199. -ms-flex-negative:0;
  6200. flex-shrink:0; }
  6201. .bp3-non-ideal-state > .bp3-fill{
  6202. -webkit-box-flex:1;
  6203. -ms-flex-positive:1;
  6204. flex-grow:1;
  6205. -ms-flex-negative:1;
  6206. flex-shrink:1; }
  6207. .bp3-non-ideal-state::before,
  6208. .bp3-non-ideal-state > *{
  6209. margin-bottom:20px; }
  6210. .bp3-non-ideal-state:empty::before,
  6211. .bp3-non-ideal-state > :last-child{
  6212. margin-bottom:0; }
  6213. .bp3-non-ideal-state > *{
  6214. max-width:400px; }
  6215. .bp3-non-ideal-state-visual{
  6216. color:rgba(92, 112, 128, 0.6);
  6217. font-size:60px; }
  6218. .bp3-dark .bp3-non-ideal-state-visual{
  6219. color:rgba(167, 182, 194, 0.6); }
  6220. .bp3-overflow-list{
  6221. display:-webkit-box;
  6222. display:-ms-flexbox;
  6223. display:flex;
  6224. -ms-flex-wrap:nowrap;
  6225. flex-wrap:nowrap;
  6226. min-width:0; }
  6227. .bp3-overflow-list-spacer{
  6228. -ms-flex-negative:1;
  6229. flex-shrink:1;
  6230. width:1px; }
  6231. body.bp3-overlay-open{
  6232. overflow:hidden; }
  6233. .bp3-overlay{
  6234. bottom:0;
  6235. left:0;
  6236. position:static;
  6237. right:0;
  6238. top:0;
  6239. z-index:20; }
  6240. .bp3-overlay:not(.bp3-overlay-open){
  6241. pointer-events:none; }
  6242. .bp3-overlay.bp3-overlay-container{
  6243. overflow:hidden;
  6244. position:fixed; }
  6245. .bp3-overlay.bp3-overlay-container.bp3-overlay-inline{
  6246. position:absolute; }
  6247. .bp3-overlay.bp3-overlay-scroll-container{
  6248. overflow:auto;
  6249. position:fixed; }
  6250. .bp3-overlay.bp3-overlay-scroll-container.bp3-overlay-inline{
  6251. position:absolute; }
  6252. .bp3-overlay.bp3-overlay-inline{
  6253. display:inline;
  6254. overflow:visible; }
  6255. .bp3-overlay-content{
  6256. position:fixed;
  6257. z-index:20; }
  6258. .bp3-overlay-inline .bp3-overlay-content,
  6259. .bp3-overlay-scroll-container .bp3-overlay-content{
  6260. position:absolute; }
  6261. .bp3-overlay-backdrop{
  6262. bottom:0;
  6263. left:0;
  6264. position:fixed;
  6265. right:0;
  6266. top:0;
  6267. opacity:1;
  6268. background-color:rgba(16, 22, 26, 0.7);
  6269. overflow:auto;
  6270. -webkit-user-select:none;
  6271. -moz-user-select:none;
  6272. -ms-user-select:none;
  6273. user-select:none;
  6274. z-index:20; }
  6275. .bp3-overlay-backdrop.bp3-overlay-enter, .bp3-overlay-backdrop.bp3-overlay-appear{
  6276. opacity:0; }
  6277. .bp3-overlay-backdrop.bp3-overlay-enter-active, .bp3-overlay-backdrop.bp3-overlay-appear-active{
  6278. opacity:1;
  6279. -webkit-transition-delay:0;
  6280. transition-delay:0;
  6281. -webkit-transition-duration:200ms;
  6282. transition-duration:200ms;
  6283. -webkit-transition-property:opacity;
  6284. transition-property:opacity;
  6285. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  6286. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  6287. .bp3-overlay-backdrop.bp3-overlay-exit{
  6288. opacity:1; }
  6289. .bp3-overlay-backdrop.bp3-overlay-exit-active{
  6290. opacity:0;
  6291. -webkit-transition-delay:0;
  6292. transition-delay:0;
  6293. -webkit-transition-duration:200ms;
  6294. transition-duration:200ms;
  6295. -webkit-transition-property:opacity;
  6296. transition-property:opacity;
  6297. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  6298. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  6299. .bp3-overlay-backdrop:focus{
  6300. outline:none; }
  6301. .bp3-overlay-inline .bp3-overlay-backdrop{
  6302. position:absolute; }
  6303. .bp3-panel-stack{
  6304. overflow:hidden;
  6305. position:relative; }
  6306. .bp3-panel-stack-header{
  6307. -webkit-box-align:center;
  6308. -ms-flex-align:center;
  6309. align-items:center;
  6310. -webkit-box-shadow:0 1px rgba(16, 22, 26, 0.15);
  6311. box-shadow:0 1px rgba(16, 22, 26, 0.15);
  6312. display:-webkit-box;
  6313. display:-ms-flexbox;
  6314. display:flex;
  6315. -ms-flex-negative:0;
  6316. flex-shrink:0;
  6317. height:30px;
  6318. z-index:1; }
  6319. .bp3-dark .bp3-panel-stack-header{
  6320. -webkit-box-shadow:0 1px rgba(255, 255, 255, 0.15);
  6321. box-shadow:0 1px rgba(255, 255, 255, 0.15); }
  6322. .bp3-panel-stack-header > span{
  6323. -webkit-box-align:stretch;
  6324. -ms-flex-align:stretch;
  6325. align-items:stretch;
  6326. display:-webkit-box;
  6327. display:-ms-flexbox;
  6328. display:flex;
  6329. -webkit-box-flex:1;
  6330. -ms-flex:1;
  6331. flex:1; }
  6332. .bp3-panel-stack-header .bp3-heading{
  6333. margin:0 5px; }
  6334. .bp3-button.bp3-panel-stack-header-back{
  6335. margin-left:5px;
  6336. padding-left:0;
  6337. white-space:nowrap; }
  6338. .bp3-button.bp3-panel-stack-header-back .bp3-icon{
  6339. margin:0 2px; }
  6340. .bp3-panel-stack-view{
  6341. bottom:0;
  6342. left:0;
  6343. position:absolute;
  6344. right:0;
  6345. top:0;
  6346. background-color:#ffffff;
  6347. border-right:1px solid rgba(16, 22, 26, 0.15);
  6348. display:-webkit-box;
  6349. display:-ms-flexbox;
  6350. display:flex;
  6351. -webkit-box-orient:vertical;
  6352. -webkit-box-direction:normal;
  6353. -ms-flex-direction:column;
  6354. flex-direction:column;
  6355. margin-right:-1px;
  6356. overflow-y:auto;
  6357. z-index:1; }
  6358. .bp3-dark .bp3-panel-stack-view{
  6359. background-color:#30404d; }
  6360. .bp3-panel-stack-view:nth-last-child(n + 4){
  6361. display:none; }
  6362. .bp3-panel-stack-push .bp3-panel-stack-enter, .bp3-panel-stack-push .bp3-panel-stack-appear{
  6363. -webkit-transform:translateX(100%);
  6364. transform:translateX(100%);
  6365. opacity:0; }
  6366. .bp3-panel-stack-push .bp3-panel-stack-enter-active, .bp3-panel-stack-push .bp3-panel-stack-appear-active{
  6367. -webkit-transform:translate(0%);
  6368. transform:translate(0%);
  6369. opacity:1;
  6370. -webkit-transition-delay:0;
  6371. transition-delay:0;
  6372. -webkit-transition-duration:400ms;
  6373. transition-duration:400ms;
  6374. -webkit-transition-property:opacity, -webkit-transform;
  6375. transition-property:opacity, -webkit-transform;
  6376. transition-property:transform, opacity;
  6377. transition-property:transform, opacity, -webkit-transform;
  6378. -webkit-transition-timing-function:ease;
  6379. transition-timing-function:ease; }
  6380. .bp3-panel-stack-push .bp3-panel-stack-exit{
  6381. -webkit-transform:translate(0%);
  6382. transform:translate(0%);
  6383. opacity:1; }
  6384. .bp3-panel-stack-push .bp3-panel-stack-exit-active{
  6385. -webkit-transform:translateX(-50%);
  6386. transform:translateX(-50%);
  6387. opacity:0;
  6388. -webkit-transition-delay:0;
  6389. transition-delay:0;
  6390. -webkit-transition-duration:400ms;
  6391. transition-duration:400ms;
  6392. -webkit-transition-property:opacity, -webkit-transform;
  6393. transition-property:opacity, -webkit-transform;
  6394. transition-property:transform, opacity;
  6395. transition-property:transform, opacity, -webkit-transform;
  6396. -webkit-transition-timing-function:ease;
  6397. transition-timing-function:ease; }
  6398. .bp3-panel-stack-pop .bp3-panel-stack-enter, .bp3-panel-stack-pop .bp3-panel-stack-appear{
  6399. -webkit-transform:translateX(-50%);
  6400. transform:translateX(-50%);
  6401. opacity:0; }
  6402. .bp3-panel-stack-pop .bp3-panel-stack-enter-active, .bp3-panel-stack-pop .bp3-panel-stack-appear-active{
  6403. -webkit-transform:translate(0%);
  6404. transform:translate(0%);
  6405. opacity:1;
  6406. -webkit-transition-delay:0;
  6407. transition-delay:0;
  6408. -webkit-transition-duration:400ms;
  6409. transition-duration:400ms;
  6410. -webkit-transition-property:opacity, -webkit-transform;
  6411. transition-property:opacity, -webkit-transform;
  6412. transition-property:transform, opacity;
  6413. transition-property:transform, opacity, -webkit-transform;
  6414. -webkit-transition-timing-function:ease;
  6415. transition-timing-function:ease; }
  6416. .bp3-panel-stack-pop .bp3-panel-stack-exit{
  6417. -webkit-transform:translate(0%);
  6418. transform:translate(0%);
  6419. opacity:1; }
  6420. .bp3-panel-stack-pop .bp3-panel-stack-exit-active{
  6421. -webkit-transform:translateX(100%);
  6422. transform:translateX(100%);
  6423. opacity:0;
  6424. -webkit-transition-delay:0;
  6425. transition-delay:0;
  6426. -webkit-transition-duration:400ms;
  6427. transition-duration:400ms;
  6428. -webkit-transition-property:opacity, -webkit-transform;
  6429. transition-property:opacity, -webkit-transform;
  6430. transition-property:transform, opacity;
  6431. transition-property:transform, opacity, -webkit-transform;
  6432. -webkit-transition-timing-function:ease;
  6433. transition-timing-function:ease; }
  6434. .bp3-popover{
  6435. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  6436. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  6437. -webkit-transform:scale(1);
  6438. transform:scale(1);
  6439. border-radius:3px;
  6440. display:inline-block;
  6441. z-index:20; }
  6442. .bp3-popover .bp3-popover-arrow{
  6443. height:30px;
  6444. position:absolute;
  6445. width:30px; }
  6446. .bp3-popover .bp3-popover-arrow::before{
  6447. height:20px;
  6448. margin:5px;
  6449. width:20px; }
  6450. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover{
  6451. margin-bottom:17px;
  6452. margin-top:-17px; }
  6453. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{
  6454. bottom:-11px; }
  6455. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow svg{
  6456. -webkit-transform:rotate(-90deg);
  6457. transform:rotate(-90deg); }
  6458. .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover{
  6459. margin-left:17px; }
  6460. .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{
  6461. left:-11px; }
  6462. .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow svg{
  6463. -webkit-transform:rotate(0);
  6464. transform:rotate(0); }
  6465. .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover{
  6466. margin-top:17px; }
  6467. .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{
  6468. top:-11px; }
  6469. .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow svg{
  6470. -webkit-transform:rotate(90deg);
  6471. transform:rotate(90deg); }
  6472. .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover{
  6473. margin-left:-17px;
  6474. margin-right:17px; }
  6475. .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{
  6476. right:-11px; }
  6477. .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow svg{
  6478. -webkit-transform:rotate(180deg);
  6479. transform:rotate(180deg); }
  6480. .bp3-tether-element-attached-middle > .bp3-popover > .bp3-popover-arrow{
  6481. top:50%;
  6482. -webkit-transform:translateY(-50%);
  6483. transform:translateY(-50%); }
  6484. .bp3-tether-element-attached-center > .bp3-popover > .bp3-popover-arrow{
  6485. right:50%;
  6486. -webkit-transform:translateX(50%);
  6487. transform:translateX(50%); }
  6488. .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-popover > .bp3-popover-arrow{
  6489. top:-0.3934px; }
  6490. .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-popover > .bp3-popover-arrow{
  6491. right:-0.3934px; }
  6492. .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-popover > .bp3-popover-arrow{
  6493. left:-0.3934px; }
  6494. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-popover > .bp3-popover-arrow{
  6495. bottom:-0.3934px; }
  6496. .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-popover{
  6497. -webkit-transform-origin:top left;
  6498. transform-origin:top left; }
  6499. .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-popover{
  6500. -webkit-transform-origin:top center;
  6501. transform-origin:top center; }
  6502. .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-popover{
  6503. -webkit-transform-origin:top right;
  6504. transform-origin:top right; }
  6505. .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-popover{
  6506. -webkit-transform-origin:center left;
  6507. transform-origin:center left; }
  6508. .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-popover{
  6509. -webkit-transform-origin:center center;
  6510. transform-origin:center center; }
  6511. .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-popover{
  6512. -webkit-transform-origin:center right;
  6513. transform-origin:center right; }
  6514. .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-popover{
  6515. -webkit-transform-origin:bottom left;
  6516. transform-origin:bottom left; }
  6517. .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-popover{
  6518. -webkit-transform-origin:bottom center;
  6519. transform-origin:bottom center; }
  6520. .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-popover{
  6521. -webkit-transform-origin:bottom right;
  6522. transform-origin:bottom right; }
  6523. .bp3-popover .bp3-popover-content{
  6524. background:#ffffff;
  6525. color:inherit; }
  6526. .bp3-popover .bp3-popover-arrow::before{
  6527. -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);
  6528. box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }
  6529. .bp3-popover .bp3-popover-arrow-border{
  6530. fill:#10161a;
  6531. fill-opacity:0.1; }
  6532. .bp3-popover .bp3-popover-arrow-fill{
  6533. fill:#ffffff; }
  6534. .bp3-popover-enter > .bp3-popover, .bp3-popover-appear > .bp3-popover{
  6535. -webkit-transform:scale(0.3);
  6536. transform:scale(0.3); }
  6537. .bp3-popover-enter-active > .bp3-popover, .bp3-popover-appear-active > .bp3-popover{
  6538. -webkit-transform:scale(1);
  6539. transform:scale(1);
  6540. -webkit-transition-delay:0;
  6541. transition-delay:0;
  6542. -webkit-transition-duration:300ms;
  6543. transition-duration:300ms;
  6544. -webkit-transition-property:-webkit-transform;
  6545. transition-property:-webkit-transform;
  6546. transition-property:transform;
  6547. transition-property:transform, -webkit-transform;
  6548. -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
  6549. transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }
  6550. .bp3-popover-exit > .bp3-popover{
  6551. -webkit-transform:scale(1);
  6552. transform:scale(1); }
  6553. .bp3-popover-exit-active > .bp3-popover{
  6554. -webkit-transform:scale(0.3);
  6555. transform:scale(0.3);
  6556. -webkit-transition-delay:0;
  6557. transition-delay:0;
  6558. -webkit-transition-duration:300ms;
  6559. transition-duration:300ms;
  6560. -webkit-transition-property:-webkit-transform;
  6561. transition-property:-webkit-transform;
  6562. transition-property:transform;
  6563. transition-property:transform, -webkit-transform;
  6564. -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
  6565. transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }
  6566. .bp3-popover .bp3-popover-content{
  6567. border-radius:3px;
  6568. position:relative; }
  6569. .bp3-popover.bp3-popover-content-sizing .bp3-popover-content{
  6570. max-width:350px;
  6571. padding:20px; }
  6572. .bp3-popover-target + .bp3-overlay .bp3-popover.bp3-popover-content-sizing{
  6573. width:350px; }
  6574. .bp3-popover.bp3-minimal{
  6575. margin:0 !important; }
  6576. .bp3-popover.bp3-minimal .bp3-popover-arrow{
  6577. display:none; }
  6578. .bp3-popover.bp3-minimal.bp3-popover{
  6579. -webkit-transform:scale(1);
  6580. transform:scale(1); }
  6581. .bp3-popover-enter > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear > .bp3-popover.bp3-minimal.bp3-popover{
  6582. -webkit-transform:scale(1);
  6583. transform:scale(1); }
  6584. .bp3-popover-enter-active > .bp3-popover.bp3-minimal.bp3-popover, .bp3-popover-appear-active > .bp3-popover.bp3-minimal.bp3-popover{
  6585. -webkit-transform:scale(1);
  6586. transform:scale(1);
  6587. -webkit-transition-delay:0;
  6588. transition-delay:0;
  6589. -webkit-transition-duration:100ms;
  6590. transition-duration:100ms;
  6591. -webkit-transition-property:-webkit-transform;
  6592. transition-property:-webkit-transform;
  6593. transition-property:transform;
  6594. transition-property:transform, -webkit-transform;
  6595. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  6596. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  6597. .bp3-popover-exit > .bp3-popover.bp3-minimal.bp3-popover{
  6598. -webkit-transform:scale(1);
  6599. transform:scale(1); }
  6600. .bp3-popover-exit-active > .bp3-popover.bp3-minimal.bp3-popover{
  6601. -webkit-transform:scale(1);
  6602. transform:scale(1);
  6603. -webkit-transition-delay:0;
  6604. transition-delay:0;
  6605. -webkit-transition-duration:100ms;
  6606. transition-duration:100ms;
  6607. -webkit-transition-property:-webkit-transform;
  6608. transition-property:-webkit-transform;
  6609. transition-property:transform;
  6610. transition-property:transform, -webkit-transform;
  6611. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  6612. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  6613. .bp3-popover.bp3-dark,
  6614. .bp3-dark .bp3-popover{
  6615. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  6616. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }
  6617. .bp3-popover.bp3-dark .bp3-popover-content,
  6618. .bp3-dark .bp3-popover .bp3-popover-content{
  6619. background:#30404d;
  6620. color:inherit; }
  6621. .bp3-popover.bp3-dark .bp3-popover-arrow::before,
  6622. .bp3-dark .bp3-popover .bp3-popover-arrow::before{
  6623. -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);
  6624. box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }
  6625. .bp3-popover.bp3-dark .bp3-popover-arrow-border,
  6626. .bp3-dark .bp3-popover .bp3-popover-arrow-border{
  6627. fill:#10161a;
  6628. fill-opacity:0.2; }
  6629. .bp3-popover.bp3-dark .bp3-popover-arrow-fill,
  6630. .bp3-dark .bp3-popover .bp3-popover-arrow-fill{
  6631. fill:#30404d; }
  6632. .bp3-popover-arrow::before{
  6633. border-radius:2px;
  6634. content:"";
  6635. display:block;
  6636. position:absolute;
  6637. -webkit-transform:rotate(45deg);
  6638. transform:rotate(45deg); }
  6639. .bp3-tether-pinned .bp3-popover-arrow{
  6640. display:none; }
  6641. .bp3-popover-backdrop{
  6642. background:rgba(255, 255, 255, 0); }
  6643. .bp3-transition-container{
  6644. opacity:1;
  6645. display:-webkit-box;
  6646. display:-ms-flexbox;
  6647. display:flex;
  6648. z-index:20; }
  6649. .bp3-transition-container.bp3-popover-enter, .bp3-transition-container.bp3-popover-appear{
  6650. opacity:0; }
  6651. .bp3-transition-container.bp3-popover-enter-active, .bp3-transition-container.bp3-popover-appear-active{
  6652. opacity:1;
  6653. -webkit-transition-delay:0;
  6654. transition-delay:0;
  6655. -webkit-transition-duration:100ms;
  6656. transition-duration:100ms;
  6657. -webkit-transition-property:opacity;
  6658. transition-property:opacity;
  6659. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  6660. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  6661. .bp3-transition-container.bp3-popover-exit{
  6662. opacity:1; }
  6663. .bp3-transition-container.bp3-popover-exit-active{
  6664. opacity:0;
  6665. -webkit-transition-delay:0;
  6666. transition-delay:0;
  6667. -webkit-transition-duration:100ms;
  6668. transition-duration:100ms;
  6669. -webkit-transition-property:opacity;
  6670. transition-property:opacity;
  6671. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  6672. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  6673. .bp3-transition-container:focus{
  6674. outline:none; }
  6675. .bp3-transition-container.bp3-popover-leave .bp3-popover-content{
  6676. pointer-events:none; }
  6677. .bp3-transition-container[data-x-out-of-boundaries]{
  6678. display:none; }
  6679. span.bp3-popover-target{
  6680. display:inline-block; }
  6681. .bp3-popover-wrapper.bp3-fill{
  6682. width:100%; }
  6683. .bp3-portal{
  6684. left:0;
  6685. position:absolute;
  6686. right:0;
  6687. top:0; }
  6688. @-webkit-keyframes linear-progress-bar-stripes{
  6689. from{
  6690. background-position:0 0; }
  6691. to{
  6692. background-position:30px 0; } }
  6693. @keyframes linear-progress-bar-stripes{
  6694. from{
  6695. background-position:0 0; }
  6696. to{
  6697. background-position:30px 0; } }
  6698. .bp3-progress-bar{
  6699. background:rgba(92, 112, 128, 0.2);
  6700. border-radius:40px;
  6701. display:block;
  6702. height:8px;
  6703. overflow:hidden;
  6704. position:relative;
  6705. width:100%; }
  6706. .bp3-progress-bar .bp3-progress-meter{
  6707. background:linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%);
  6708. background-color:rgba(92, 112, 128, 0.8);
  6709. background-size:30px 30px;
  6710. border-radius:40px;
  6711. height:100%;
  6712. position:absolute;
  6713. -webkit-transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  6714. transition:width 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  6715. width:100%; }
  6716. .bp3-progress-bar:not(.bp3-no-animation):not(.bp3-no-stripes) .bp3-progress-meter{
  6717. animation:linear-progress-bar-stripes 300ms linear infinite reverse; }
  6718. .bp3-progress-bar.bp3-no-stripes .bp3-progress-meter{
  6719. background-image:none; }
  6720. .bp3-dark .bp3-progress-bar{
  6721. background:rgba(16, 22, 26, 0.5); }
  6722. .bp3-dark .bp3-progress-bar .bp3-progress-meter{
  6723. background-color:#8a9ba8; }
  6724. .bp3-progress-bar.bp3-intent-primary .bp3-progress-meter{
  6725. background-color:#137cbd; }
  6726. .bp3-progress-bar.bp3-intent-success .bp3-progress-meter{
  6727. background-color:#0f9960; }
  6728. .bp3-progress-bar.bp3-intent-warning .bp3-progress-meter{
  6729. background-color:#d9822b; }
  6730. .bp3-progress-bar.bp3-intent-danger .bp3-progress-meter{
  6731. background-color:#db3737; }
  6732. @-webkit-keyframes skeleton-glow{
  6733. from{
  6734. background:rgba(206, 217, 224, 0.2);
  6735. border-color:rgba(206, 217, 224, 0.2); }
  6736. to{
  6737. background:rgba(92, 112, 128, 0.2);
  6738. border-color:rgba(92, 112, 128, 0.2); } }
  6739. @keyframes skeleton-glow{
  6740. from{
  6741. background:rgba(206, 217, 224, 0.2);
  6742. border-color:rgba(206, 217, 224, 0.2); }
  6743. to{
  6744. background:rgba(92, 112, 128, 0.2);
  6745. border-color:rgba(92, 112, 128, 0.2); } }
  6746. .bp3-skeleton{
  6747. -webkit-animation:1000ms linear infinite alternate skeleton-glow;
  6748. animation:1000ms linear infinite alternate skeleton-glow;
  6749. background:rgba(206, 217, 224, 0.2);
  6750. background-clip:padding-box !important;
  6751. border-color:rgba(206, 217, 224, 0.2) !important;
  6752. border-radius:2px;
  6753. -webkit-box-shadow:none !important;
  6754. box-shadow:none !important;
  6755. color:transparent !important;
  6756. cursor:default;
  6757. pointer-events:none;
  6758. -webkit-user-select:none;
  6759. -moz-user-select:none;
  6760. -ms-user-select:none;
  6761. user-select:none; }
  6762. .bp3-skeleton::before, .bp3-skeleton::after,
  6763. .bp3-skeleton *{
  6764. visibility:hidden !important; }
  6765. .bp3-slider{
  6766. height:40px;
  6767. min-width:150px;
  6768. width:100%;
  6769. cursor:default;
  6770. outline:none;
  6771. position:relative;
  6772. -webkit-user-select:none;
  6773. -moz-user-select:none;
  6774. -ms-user-select:none;
  6775. user-select:none; }
  6776. .bp3-slider:hover{
  6777. cursor:pointer; }
  6778. .bp3-slider:active{
  6779. cursor:-webkit-grabbing;
  6780. cursor:grabbing; }
  6781. .bp3-slider.bp3-disabled{
  6782. cursor:not-allowed;
  6783. opacity:0.5; }
  6784. .bp3-slider.bp3-slider-unlabeled{
  6785. height:16px; }
  6786. .bp3-slider-track,
  6787. .bp3-slider-progress{
  6788. height:6px;
  6789. left:0;
  6790. right:0;
  6791. top:5px;
  6792. position:absolute; }
  6793. .bp3-slider-track{
  6794. border-radius:3px;
  6795. overflow:hidden; }
  6796. .bp3-slider-progress{
  6797. background:rgba(92, 112, 128, 0.2); }
  6798. .bp3-dark .bp3-slider-progress{
  6799. background:rgba(16, 22, 26, 0.5); }
  6800. .bp3-slider-progress.bp3-intent-primary{
  6801. background-color:#137cbd; }
  6802. .bp3-slider-progress.bp3-intent-success{
  6803. background-color:#0f9960; }
  6804. .bp3-slider-progress.bp3-intent-warning{
  6805. background-color:#d9822b; }
  6806. .bp3-slider-progress.bp3-intent-danger{
  6807. background-color:#db3737; }
  6808. .bp3-slider-handle{
  6809. background-color:#f5f8fa;
  6810. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
  6811. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  6812. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  6813. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  6814. color:#182026;
  6815. border-radius:3px;
  6816. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  6817. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  6818. cursor:pointer;
  6819. height:16px;
  6820. left:0;
  6821. position:absolute;
  6822. top:0;
  6823. width:16px; }
  6824. .bp3-slider-handle:hover{
  6825. background-clip:padding-box;
  6826. background-color:#ebf1f5;
  6827. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  6828. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1); }
  6829. .bp3-slider-handle:active, .bp3-slider-handle.bp3-active{
  6830. background-color:#d8e1e8;
  6831. background-image:none;
  6832. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  6833. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  6834. .bp3-slider-handle:disabled, .bp3-slider-handle.bp3-disabled{
  6835. background-color:rgba(206, 217, 224, 0.5);
  6836. background-image:none;
  6837. -webkit-box-shadow:none;
  6838. box-shadow:none;
  6839. color:rgba(92, 112, 128, 0.6);
  6840. cursor:not-allowed;
  6841. outline:none; }
  6842. .bp3-slider-handle:disabled.bp3-active, .bp3-slider-handle:disabled.bp3-active:hover, .bp3-slider-handle.bp3-disabled.bp3-active, .bp3-slider-handle.bp3-disabled.bp3-active:hover{
  6843. background:rgba(206, 217, 224, 0.7); }
  6844. .bp3-slider-handle:focus{
  6845. z-index:1; }
  6846. .bp3-slider-handle:hover{
  6847. background-clip:padding-box;
  6848. background-color:#ebf1f5;
  6849. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  6850. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 -1px 0 rgba(16, 22, 26, 0.1);
  6851. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  6852. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 1px 1px rgba(16, 22, 26, 0.2);
  6853. cursor:-webkit-grab;
  6854. cursor:grab;
  6855. z-index:2; }
  6856. .bp3-slider-handle.bp3-active{
  6857. background-color:#d8e1e8;
  6858. background-image:none;
  6859. -webkit-box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  6860. box-shadow:inset 0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  6861. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);
  6862. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), inset 0 1px 1px rgba(16, 22, 26, 0.1);
  6863. cursor:-webkit-grabbing;
  6864. cursor:grabbing; }
  6865. .bp3-disabled .bp3-slider-handle{
  6866. background:#bfccd6;
  6867. -webkit-box-shadow:none;
  6868. box-shadow:none;
  6869. pointer-events:none; }
  6870. .bp3-dark .bp3-slider-handle{
  6871. background-color:#394b59;
  6872. background-image:-webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  6873. background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  6874. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  6875. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  6876. color:#f5f8fa; }
  6877. .bp3-dark .bp3-slider-handle:hover, .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{
  6878. color:#f5f8fa; }
  6879. .bp3-dark .bp3-slider-handle:hover{
  6880. background-color:#30404d;
  6881. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4);
  6882. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.4); }
  6883. .bp3-dark .bp3-slider-handle:active, .bp3-dark .bp3-slider-handle.bp3-active{
  6884. background-color:#202b33;
  6885. background-image:none;
  6886. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2);
  6887. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.6), inset 0 1px 2px rgba(16, 22, 26, 0.2); }
  6888. .bp3-dark .bp3-slider-handle:disabled, .bp3-dark .bp3-slider-handle.bp3-disabled{
  6889. background-color:rgba(57, 75, 89, 0.5);
  6890. background-image:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. color:rgba(167, 182, 194, 0.6); }
  6894. .bp3-dark .bp3-slider-handle:disabled.bp3-active, .bp3-dark .bp3-slider-handle.bp3-disabled.bp3-active{
  6895. background:rgba(57, 75, 89, 0.7); }
  6896. .bp3-dark .bp3-slider-handle .bp3-button-spinner .bp3-spinner-head{
  6897. background:rgba(16, 22, 26, 0.5);
  6898. stroke:#8a9ba8; }
  6899. .bp3-dark .bp3-slider-handle, .bp3-dark .bp3-slider-handle:hover{
  6900. background-color:#394b59; }
  6901. .bp3-dark .bp3-slider-handle.bp3-active{
  6902. background-color:#293742; }
  6903. .bp3-dark .bp3-disabled .bp3-slider-handle{
  6904. background:#5c7080;
  6905. border-color:#5c7080;
  6906. -webkit-box-shadow:none;
  6907. box-shadow:none; }
  6908. .bp3-slider-handle .bp3-slider-label{
  6909. background:#394b59;
  6910. border-radius:3px;
  6911. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  6912. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  6913. color:#f5f8fa;
  6914. margin-left:8px; }
  6915. .bp3-dark .bp3-slider-handle .bp3-slider-label{
  6916. background:#e1e8ed;
  6917. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  6918. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  6919. color:#394b59; }
  6920. .bp3-disabled .bp3-slider-handle .bp3-slider-label{
  6921. -webkit-box-shadow:none;
  6922. box-shadow:none; }
  6923. .bp3-slider-handle.bp3-start, .bp3-slider-handle.bp3-end{
  6924. width:8px; }
  6925. .bp3-slider-handle.bp3-start{
  6926. border-bottom-right-radius:0;
  6927. border-top-right-radius:0; }
  6928. .bp3-slider-handle.bp3-end{
  6929. border-bottom-left-radius:0;
  6930. border-top-left-radius:0;
  6931. margin-left:8px; }
  6932. .bp3-slider-handle.bp3-end .bp3-slider-label{
  6933. margin-left:0; }
  6934. .bp3-slider-label{
  6935. -webkit-transform:translate(-50%, 20px);
  6936. transform:translate(-50%, 20px);
  6937. display:inline-block;
  6938. font-size:12px;
  6939. line-height:1;
  6940. padding:2px 5px;
  6941. position:absolute;
  6942. vertical-align:top; }
  6943. .bp3-slider.bp3-vertical{
  6944. height:150px;
  6945. min-width:40px;
  6946. width:40px; }
  6947. .bp3-slider.bp3-vertical .bp3-slider-track,
  6948. .bp3-slider.bp3-vertical .bp3-slider-progress{
  6949. bottom:0;
  6950. height:auto;
  6951. left:5px;
  6952. top:0;
  6953. width:6px; }
  6954. .bp3-slider.bp3-vertical .bp3-slider-progress{
  6955. top:auto; }
  6956. .bp3-slider.bp3-vertical .bp3-slider-label{
  6957. -webkit-transform:translate(20px, 50%);
  6958. transform:translate(20px, 50%); }
  6959. .bp3-slider.bp3-vertical .bp3-slider-handle{
  6960. top:auto; }
  6961. .bp3-slider.bp3-vertical .bp3-slider-handle .bp3-slider-label{
  6962. margin-left:0;
  6963. margin-top:-8px; }
  6964. .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end, .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{
  6965. height:8px;
  6966. margin-left:0;
  6967. width:16px; }
  6968. .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start{
  6969. border-bottom-right-radius:3px;
  6970. border-top-left-radius:0; }
  6971. .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-start .bp3-slider-label{
  6972. -webkit-transform:translate(20px);
  6973. transform:translate(20px); }
  6974. .bp3-slider.bp3-vertical .bp3-slider-handle.bp3-end{
  6975. border-bottom-left-radius:0;
  6976. border-bottom-right-radius:0;
  6977. border-top-left-radius:3px;
  6978. margin-bottom:8px; }
  6979. @-webkit-keyframes pt-spinner-animation{
  6980. from{
  6981. -webkit-transform:rotate(0deg);
  6982. transform:rotate(0deg); }
  6983. to{
  6984. -webkit-transform:rotate(360deg);
  6985. transform:rotate(360deg); } }
  6986. @keyframes pt-spinner-animation{
  6987. from{
  6988. -webkit-transform:rotate(0deg);
  6989. transform:rotate(0deg); }
  6990. to{
  6991. -webkit-transform:rotate(360deg);
  6992. transform:rotate(360deg); } }
  6993. .bp3-spinner{
  6994. -webkit-box-align:center;
  6995. -ms-flex-align:center;
  6996. align-items:center;
  6997. display:-webkit-box;
  6998. display:-ms-flexbox;
  6999. display:flex;
  7000. -webkit-box-pack:center;
  7001. -ms-flex-pack:center;
  7002. justify-content:center;
  7003. overflow:visible;
  7004. vertical-align:middle; }
  7005. .bp3-spinner svg{
  7006. display:block; }
  7007. .bp3-spinner path{
  7008. fill-opacity:0; }
  7009. .bp3-spinner .bp3-spinner-head{
  7010. stroke:rgba(92, 112, 128, 0.8);
  7011. stroke-linecap:round;
  7012. -webkit-transform-origin:center;
  7013. transform-origin:center;
  7014. -webkit-transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  7015. transition:stroke-dashoffset 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }
  7016. .bp3-spinner .bp3-spinner-track{
  7017. stroke:rgba(92, 112, 128, 0.2); }
  7018. .bp3-spinner-animation{
  7019. -webkit-animation:pt-spinner-animation 500ms linear infinite;
  7020. animation:pt-spinner-animation 500ms linear infinite; }
  7021. .bp3-no-spin > .bp3-spinner-animation{
  7022. -webkit-animation:none;
  7023. animation:none; }
  7024. .bp3-dark .bp3-spinner .bp3-spinner-head{
  7025. stroke:#8a9ba8; }
  7026. .bp3-dark .bp3-spinner .bp3-spinner-track{
  7027. stroke:rgba(16, 22, 26, 0.5); }
  7028. .bp3-spinner.bp3-intent-primary .bp3-spinner-head{
  7029. stroke:#137cbd; }
  7030. .bp3-spinner.bp3-intent-success .bp3-spinner-head{
  7031. stroke:#0f9960; }
  7032. .bp3-spinner.bp3-intent-warning .bp3-spinner-head{
  7033. stroke:#d9822b; }
  7034. .bp3-spinner.bp3-intent-danger .bp3-spinner-head{
  7035. stroke:#db3737; }
  7036. .bp3-tabs.bp3-vertical{
  7037. display:-webkit-box;
  7038. display:-ms-flexbox;
  7039. display:flex; }
  7040. .bp3-tabs.bp3-vertical > .bp3-tab-list{
  7041. -webkit-box-align:start;
  7042. -ms-flex-align:start;
  7043. align-items:flex-start;
  7044. -webkit-box-orient:vertical;
  7045. -webkit-box-direction:normal;
  7046. -ms-flex-direction:column;
  7047. flex-direction:column; }
  7048. .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab{
  7049. border-radius:3px;
  7050. padding:0 10px;
  7051. width:100%; }
  7052. .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab[aria-selected="true"]{
  7053. background-color:rgba(19, 124, 189, 0.2);
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none; }
  7056. .bp3-tabs.bp3-vertical > .bp3-tab-list .bp3-tab-indicator-wrapper .bp3-tab-indicator{
  7057. background-color:rgba(19, 124, 189, 0.2);
  7058. border-radius:3px;
  7059. bottom:0;
  7060. height:auto;
  7061. left:0;
  7062. right:0;
  7063. top:0; }
  7064. .bp3-tabs.bp3-vertical > .bp3-tab-panel{
  7065. margin-top:0;
  7066. padding-left:20px; }
  7067. .bp3-tab-list{
  7068. -webkit-box-align:end;
  7069. -ms-flex-align:end;
  7070. align-items:flex-end;
  7071. border:none;
  7072. display:-webkit-box;
  7073. display:-ms-flexbox;
  7074. display:flex;
  7075. -webkit-box-flex:0;
  7076. -ms-flex:0 0 auto;
  7077. flex:0 0 auto;
  7078. list-style:none;
  7079. margin:0;
  7080. padding:0;
  7081. position:relative; }
  7082. .bp3-tab-list > *:not(:last-child){
  7083. margin-right:20px; }
  7084. .bp3-tab{
  7085. overflow:hidden;
  7086. text-overflow:ellipsis;
  7087. white-space:nowrap;
  7088. word-wrap:normal;
  7089. color:#182026;
  7090. cursor:pointer;
  7091. -webkit-box-flex:0;
  7092. -ms-flex:0 0 auto;
  7093. flex:0 0 auto;
  7094. font-size:14px;
  7095. line-height:30px;
  7096. max-width:100%;
  7097. position:relative;
  7098. vertical-align:top; }
  7099. .bp3-tab a{
  7100. color:inherit;
  7101. display:block;
  7102. text-decoration:none; }
  7103. .bp3-tab-indicator-wrapper ~ .bp3-tab{
  7104. background-color:transparent !important;
  7105. -webkit-box-shadow:none !important;
  7106. box-shadow:none !important; }
  7107. .bp3-tab[aria-disabled="true"]{
  7108. color:rgba(92, 112, 128, 0.6);
  7109. cursor:not-allowed; }
  7110. .bp3-tab[aria-selected="true"]{
  7111. border-radius:0;
  7112. -webkit-box-shadow:inset 0 -3px 0 #106ba3;
  7113. box-shadow:inset 0 -3px 0 #106ba3; }
  7114. .bp3-tab[aria-selected="true"], .bp3-tab:not([aria-disabled="true"]):hover{
  7115. color:#106ba3; }
  7116. .bp3-tab:focus{
  7117. -moz-outline-radius:0; }
  7118. .bp3-large > .bp3-tab{
  7119. font-size:16px;
  7120. line-height:40px; }
  7121. .bp3-tab-panel{
  7122. margin-top:20px; }
  7123. .bp3-tab-panel[aria-hidden="true"]{
  7124. display:none; }
  7125. .bp3-tab-indicator-wrapper{
  7126. left:0;
  7127. pointer-events:none;
  7128. position:absolute;
  7129. top:0;
  7130. -webkit-transform:translateX(0), translateY(0);
  7131. transform:translateX(0), translateY(0);
  7132. -webkit-transition:height, width, -webkit-transform;
  7133. transition:height, width, -webkit-transform;
  7134. transition:height, transform, width;
  7135. transition:height, transform, width, -webkit-transform;
  7136. -webkit-transition-duration:200ms;
  7137. transition-duration:200ms;
  7138. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  7139. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  7140. .bp3-tab-indicator-wrapper .bp3-tab-indicator{
  7141. background-color:#106ba3;
  7142. bottom:0;
  7143. height:3px;
  7144. left:0;
  7145. position:absolute;
  7146. right:0; }
  7147. .bp3-tab-indicator-wrapper.bp3-no-animation{
  7148. -webkit-transition:none;
  7149. transition:none; }
  7150. .bp3-dark .bp3-tab{
  7151. color:#f5f8fa; }
  7152. .bp3-dark .bp3-tab[aria-disabled="true"]{
  7153. color:rgba(167, 182, 194, 0.6); }
  7154. .bp3-dark .bp3-tab[aria-selected="true"]{
  7155. -webkit-box-shadow:inset 0 -3px 0 #48aff0;
  7156. box-shadow:inset 0 -3px 0 #48aff0; }
  7157. .bp3-dark .bp3-tab[aria-selected="true"], .bp3-dark .bp3-tab:not([aria-disabled="true"]):hover{
  7158. color:#48aff0; }
  7159. .bp3-dark .bp3-tab-indicator{
  7160. background-color:#48aff0; }
  7161. .bp3-flex-expander{
  7162. -webkit-box-flex:1;
  7163. -ms-flex:1 1;
  7164. flex:1 1; }
  7165. .bp3-tag{
  7166. display:-webkit-inline-box;
  7167. display:-ms-inline-flexbox;
  7168. display:inline-flex;
  7169. -webkit-box-orient:horizontal;
  7170. -webkit-box-direction:normal;
  7171. -ms-flex-direction:row;
  7172. flex-direction:row;
  7173. -webkit-box-align:center;
  7174. -ms-flex-align:center;
  7175. align-items:center;
  7176. background-color:#5c7080;
  7177. border:none;
  7178. border-radius:3px;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. color:#f5f8fa;
  7182. font-size:12px;
  7183. line-height:16px;
  7184. max-width:100%;
  7185. min-height:20px;
  7186. min-width:20px;
  7187. padding:2px 6px;
  7188. position:relative; }
  7189. .bp3-tag.bp3-interactive{
  7190. cursor:pointer; }
  7191. .bp3-tag.bp3-interactive:hover{
  7192. background-color:rgba(92, 112, 128, 0.85); }
  7193. .bp3-tag.bp3-interactive.bp3-active, .bp3-tag.bp3-interactive:active{
  7194. background-color:rgba(92, 112, 128, 0.7); }
  7195. .bp3-tag > *{
  7196. -webkit-box-flex:0;
  7197. -ms-flex-positive:0;
  7198. flex-grow:0;
  7199. -ms-flex-negative:0;
  7200. flex-shrink:0; }
  7201. .bp3-tag > .bp3-fill{
  7202. -webkit-box-flex:1;
  7203. -ms-flex-positive:1;
  7204. flex-grow:1;
  7205. -ms-flex-negative:1;
  7206. flex-shrink:1; }
  7207. .bp3-tag::before,
  7208. .bp3-tag > *{
  7209. margin-right:4px; }
  7210. .bp3-tag:empty::before,
  7211. .bp3-tag > :last-child{
  7212. margin-right:0; }
  7213. .bp3-tag:focus{
  7214. outline:rgba(19, 124, 189, 0.6) auto 2px;
  7215. outline-offset:0;
  7216. -moz-outline-radius:6px; }
  7217. .bp3-tag.bp3-round{
  7218. border-radius:30px;
  7219. padding-left:8px;
  7220. padding-right:8px; }
  7221. .bp3-dark .bp3-tag{
  7222. background-color:#bfccd6;
  7223. color:#182026; }
  7224. .bp3-dark .bp3-tag.bp3-interactive{
  7225. cursor:pointer; }
  7226. .bp3-dark .bp3-tag.bp3-interactive:hover{
  7227. background-color:rgba(191, 204, 214, 0.85); }
  7228. .bp3-dark .bp3-tag.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-interactive:active{
  7229. background-color:rgba(191, 204, 214, 0.7); }
  7230. .bp3-dark .bp3-tag > .bp3-icon, .bp3-dark .bp3-tag .bp3-icon-standard, .bp3-dark .bp3-tag .bp3-icon-large{
  7231. fill:currentColor; }
  7232. .bp3-tag > .bp3-icon, .bp3-tag .bp3-icon-standard, .bp3-tag .bp3-icon-large{
  7233. fill:#ffffff; }
  7234. .bp3-tag.bp3-large,
  7235. .bp3-large .bp3-tag{
  7236. font-size:14px;
  7237. line-height:20px;
  7238. min-height:30px;
  7239. min-width:30px;
  7240. padding:5px 10px; }
  7241. .bp3-tag.bp3-large::before,
  7242. .bp3-tag.bp3-large > *,
  7243. .bp3-large .bp3-tag::before,
  7244. .bp3-large .bp3-tag > *{
  7245. margin-right:7px; }
  7246. .bp3-tag.bp3-large:empty::before,
  7247. .bp3-tag.bp3-large > :last-child,
  7248. .bp3-large .bp3-tag:empty::before,
  7249. .bp3-large .bp3-tag > :last-child{
  7250. margin-right:0; }
  7251. .bp3-tag.bp3-large.bp3-round,
  7252. .bp3-large .bp3-tag.bp3-round{
  7253. padding-left:12px;
  7254. padding-right:12px; }
  7255. .bp3-tag.bp3-intent-primary{
  7256. background:#137cbd;
  7257. color:#ffffff; }
  7258. .bp3-tag.bp3-intent-primary.bp3-interactive{
  7259. cursor:pointer; }
  7260. .bp3-tag.bp3-intent-primary.bp3-interactive:hover{
  7261. background-color:rgba(19, 124, 189, 0.85); }
  7262. .bp3-tag.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-primary.bp3-interactive:active{
  7263. background-color:rgba(19, 124, 189, 0.7); }
  7264. .bp3-tag.bp3-intent-success{
  7265. background:#0f9960;
  7266. color:#ffffff; }
  7267. .bp3-tag.bp3-intent-success.bp3-interactive{
  7268. cursor:pointer; }
  7269. .bp3-tag.bp3-intent-success.bp3-interactive:hover{
  7270. background-color:rgba(15, 153, 96, 0.85); }
  7271. .bp3-tag.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-success.bp3-interactive:active{
  7272. background-color:rgba(15, 153, 96, 0.7); }
  7273. .bp3-tag.bp3-intent-warning{
  7274. background:#d9822b;
  7275. color:#ffffff; }
  7276. .bp3-tag.bp3-intent-warning.bp3-interactive{
  7277. cursor:pointer; }
  7278. .bp3-tag.bp3-intent-warning.bp3-interactive:hover{
  7279. background-color:rgba(217, 130, 43, 0.85); }
  7280. .bp3-tag.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-warning.bp3-interactive:active{
  7281. background-color:rgba(217, 130, 43, 0.7); }
  7282. .bp3-tag.bp3-intent-danger{
  7283. background:#db3737;
  7284. color:#ffffff; }
  7285. .bp3-tag.bp3-intent-danger.bp3-interactive{
  7286. cursor:pointer; }
  7287. .bp3-tag.bp3-intent-danger.bp3-interactive:hover{
  7288. background-color:rgba(219, 55, 55, 0.85); }
  7289. .bp3-tag.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-intent-danger.bp3-interactive:active{
  7290. background-color:rgba(219, 55, 55, 0.7); }
  7291. .bp3-tag.bp3-fill{
  7292. display:-webkit-box;
  7293. display:-ms-flexbox;
  7294. display:flex;
  7295. width:100%; }
  7296. .bp3-tag.bp3-minimal > .bp3-icon, .bp3-tag.bp3-minimal .bp3-icon-standard, .bp3-tag.bp3-minimal .bp3-icon-large{
  7297. fill:#5c7080; }
  7298. .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]){
  7299. background-color:rgba(138, 155, 168, 0.2);
  7300. color:#182026; }
  7301. .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive{
  7302. cursor:pointer; }
  7303. .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:hover{
  7304. background-color:rgba(92, 112, 128, 0.3); }
  7305. .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive.bp3-active, .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:active{
  7306. background-color:rgba(92, 112, 128, 0.4); }
  7307. .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]){
  7308. color:#f5f8fa; }
  7309. .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive{
  7310. cursor:pointer; }
  7311. .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:hover{
  7312. background-color:rgba(191, 204, 214, 0.3); }
  7313. .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]).bp3-interactive:active{
  7314. background-color:rgba(191, 204, 214, 0.4); }
  7315. .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) > .bp3-icon, .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) .bp3-icon-standard, .bp3-dark .bp3-tag.bp3-minimal:not([class*="bp3-intent-"]) .bp3-icon-large{
  7316. fill:#a7b6c2; }
  7317. .bp3-tag.bp3-minimal.bp3-intent-primary{
  7318. background-color:rgba(19, 124, 189, 0.15);
  7319. color:#106ba3; }
  7320. .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{
  7321. cursor:pointer; }
  7322. .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{
  7323. background-color:rgba(19, 124, 189, 0.25); }
  7324. .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{
  7325. background-color:rgba(19, 124, 189, 0.35); }
  7326. .bp3-tag.bp3-minimal.bp3-intent-primary > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-primary .bp3-icon-large{
  7327. fill:#137cbd; }
  7328. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary{
  7329. background-color:rgba(19, 124, 189, 0.25);
  7330. color:#48aff0; }
  7331. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive{
  7332. cursor:pointer; }
  7333. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:hover{
  7334. background-color:rgba(19, 124, 189, 0.35); }
  7335. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-primary.bp3-interactive:active{
  7336. background-color:rgba(19, 124, 189, 0.45); }
  7337. .bp3-tag.bp3-minimal.bp3-intent-success{
  7338. background-color:rgba(15, 153, 96, 0.15);
  7339. color:#0d8050; }
  7340. .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{
  7341. cursor:pointer; }
  7342. .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{
  7343. background-color:rgba(15, 153, 96, 0.25); }
  7344. .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{
  7345. background-color:rgba(15, 153, 96, 0.35); }
  7346. .bp3-tag.bp3-minimal.bp3-intent-success > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-success .bp3-icon-large{
  7347. fill:#0f9960; }
  7348. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success{
  7349. background-color:rgba(15, 153, 96, 0.25);
  7350. color:#3dcc91; }
  7351. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive{
  7352. cursor:pointer; }
  7353. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:hover{
  7354. background-color:rgba(15, 153, 96, 0.35); }
  7355. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-success.bp3-interactive:active{
  7356. background-color:rgba(15, 153, 96, 0.45); }
  7357. .bp3-tag.bp3-minimal.bp3-intent-warning{
  7358. background-color:rgba(217, 130, 43, 0.15);
  7359. color:#bf7326; }
  7360. .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{
  7361. cursor:pointer; }
  7362. .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{
  7363. background-color:rgba(217, 130, 43, 0.25); }
  7364. .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{
  7365. background-color:rgba(217, 130, 43, 0.35); }
  7366. .bp3-tag.bp3-minimal.bp3-intent-warning > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-warning .bp3-icon-large{
  7367. fill:#d9822b; }
  7368. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning{
  7369. background-color:rgba(217, 130, 43, 0.25);
  7370. color:#ffb366; }
  7371. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive{
  7372. cursor:pointer; }
  7373. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:hover{
  7374. background-color:rgba(217, 130, 43, 0.35); }
  7375. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-warning.bp3-interactive:active{
  7376. background-color:rgba(217, 130, 43, 0.45); }
  7377. .bp3-tag.bp3-minimal.bp3-intent-danger{
  7378. background-color:rgba(219, 55, 55, 0.15);
  7379. color:#c23030; }
  7380. .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{
  7381. cursor:pointer; }
  7382. .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{
  7383. background-color:rgba(219, 55, 55, 0.25); }
  7384. .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{
  7385. background-color:rgba(219, 55, 55, 0.35); }
  7386. .bp3-tag.bp3-minimal.bp3-intent-danger > .bp3-icon, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-standard, .bp3-tag.bp3-minimal.bp3-intent-danger .bp3-icon-large{
  7387. fill:#db3737; }
  7388. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger{
  7389. background-color:rgba(219, 55, 55, 0.25);
  7390. color:#ff7373; }
  7391. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive{
  7392. cursor:pointer; }
  7393. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:hover{
  7394. background-color:rgba(219, 55, 55, 0.35); }
  7395. .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive.bp3-active, .bp3-dark .bp3-tag.bp3-minimal.bp3-intent-danger.bp3-interactive:active{
  7396. background-color:rgba(219, 55, 55, 0.45); }
  7397. .bp3-tag-remove{
  7398. background:none;
  7399. border:none;
  7400. color:inherit;
  7401. cursor:pointer;
  7402. display:-webkit-box;
  7403. display:-ms-flexbox;
  7404. display:flex;
  7405. margin-bottom:-2px;
  7406. margin-right:-6px !important;
  7407. margin-top:-2px;
  7408. opacity:0.5;
  7409. padding:2px;
  7410. padding-left:0; }
  7411. .bp3-tag-remove:hover{
  7412. background:none;
  7413. opacity:0.8;
  7414. text-decoration:none; }
  7415. .bp3-tag-remove:active{
  7416. opacity:1; }
  7417. .bp3-tag-remove:empty::before{
  7418. font-family:"Icons16", sans-serif;
  7419. font-size:16px;
  7420. font-style:normal;
  7421. font-weight:400;
  7422. line-height:1;
  7423. -moz-osx-font-smoothing:grayscale;
  7424. -webkit-font-smoothing:antialiased;
  7425. content:""; }
  7426. .bp3-large .bp3-tag-remove{
  7427. margin-right:-10px !important;
  7428. padding:0 5px 0 0; }
  7429. .bp3-large .bp3-tag-remove:empty::before{
  7430. font-family:"Icons20", sans-serif;
  7431. font-size:20px;
  7432. font-style:normal;
  7433. font-weight:400;
  7434. line-height:1; }
  7435. .bp3-tag-input{
  7436. display:-webkit-box;
  7437. display:-ms-flexbox;
  7438. display:flex;
  7439. -webkit-box-orient:horizontal;
  7440. -webkit-box-direction:normal;
  7441. -ms-flex-direction:row;
  7442. flex-direction:row;
  7443. -webkit-box-align:start;
  7444. -ms-flex-align:start;
  7445. align-items:flex-start;
  7446. cursor:text;
  7447. height:auto;
  7448. line-height:inherit;
  7449. min-height:30px;
  7450. padding-left:5px;
  7451. padding-right:0; }
  7452. .bp3-tag-input > *{
  7453. -webkit-box-flex:0;
  7454. -ms-flex-positive:0;
  7455. flex-grow:0;
  7456. -ms-flex-negative:0;
  7457. flex-shrink:0; }
  7458. .bp3-tag-input > .bp3-tag-input-values{
  7459. -webkit-box-flex:1;
  7460. -ms-flex-positive:1;
  7461. flex-grow:1;
  7462. -ms-flex-negative:1;
  7463. flex-shrink:1; }
  7464. .bp3-tag-input .bp3-tag-input-icon{
  7465. color:#5c7080;
  7466. margin-left:2px;
  7467. margin-right:7px;
  7468. margin-top:7px; }
  7469. .bp3-tag-input .bp3-tag-input-values{
  7470. display:-webkit-box;
  7471. display:-ms-flexbox;
  7472. display:flex;
  7473. -webkit-box-orient:horizontal;
  7474. -webkit-box-direction:normal;
  7475. -ms-flex-direction:row;
  7476. flex-direction:row;
  7477. -webkit-box-align:center;
  7478. -ms-flex-align:center;
  7479. align-items:center;
  7480. -ms-flex-item-align:stretch;
  7481. align-self:stretch;
  7482. -ms-flex-wrap:wrap;
  7483. flex-wrap:wrap;
  7484. margin-right:7px;
  7485. margin-top:5px;
  7486. min-width:0; }
  7487. .bp3-tag-input .bp3-tag-input-values > *{
  7488. -webkit-box-flex:0;
  7489. -ms-flex-positive:0;
  7490. flex-grow:0;
  7491. -ms-flex-negative:0;
  7492. flex-shrink:0; }
  7493. .bp3-tag-input .bp3-tag-input-values > .bp3-fill{
  7494. -webkit-box-flex:1;
  7495. -ms-flex-positive:1;
  7496. flex-grow:1;
  7497. -ms-flex-negative:1;
  7498. flex-shrink:1; }
  7499. .bp3-tag-input .bp3-tag-input-values::before,
  7500. .bp3-tag-input .bp3-tag-input-values > *{
  7501. margin-right:5px; }
  7502. .bp3-tag-input .bp3-tag-input-values:empty::before,
  7503. .bp3-tag-input .bp3-tag-input-values > :last-child{
  7504. margin-right:0; }
  7505. .bp3-tag-input .bp3-tag-input-values:first-child .bp3-input-ghost:first-child{
  7506. padding-left:5px; }
  7507. .bp3-tag-input .bp3-tag-input-values > *{
  7508. margin-bottom:5px; }
  7509. .bp3-tag-input .bp3-tag{
  7510. overflow-wrap:break-word; }
  7511. .bp3-tag-input .bp3-tag.bp3-active{
  7512. outline:rgba(19, 124, 189, 0.6) auto 2px;
  7513. outline-offset:0;
  7514. -moz-outline-radius:6px; }
  7515. .bp3-tag-input .bp3-input-ghost{
  7516. -webkit-box-flex:1;
  7517. -ms-flex:1 1 auto;
  7518. flex:1 1 auto;
  7519. line-height:20px;
  7520. width:80px; }
  7521. .bp3-tag-input .bp3-input-ghost:disabled, .bp3-tag-input .bp3-input-ghost.bp3-disabled{
  7522. cursor:not-allowed; }
  7523. .bp3-tag-input .bp3-button,
  7524. .bp3-tag-input .bp3-spinner{
  7525. margin:3px;
  7526. margin-left:0; }
  7527. .bp3-tag-input .bp3-button{
  7528. min-height:24px;
  7529. min-width:24px;
  7530. padding:0 7px; }
  7531. .bp3-tag-input.bp3-large{
  7532. height:auto;
  7533. min-height:40px; }
  7534. .bp3-tag-input.bp3-large::before,
  7535. .bp3-tag-input.bp3-large > *{
  7536. margin-right:10px; }
  7537. .bp3-tag-input.bp3-large:empty::before,
  7538. .bp3-tag-input.bp3-large > :last-child{
  7539. margin-right:0; }
  7540. .bp3-tag-input.bp3-large .bp3-tag-input-icon{
  7541. margin-left:5px;
  7542. margin-top:10px; }
  7543. .bp3-tag-input.bp3-large .bp3-input-ghost{
  7544. line-height:30px; }
  7545. .bp3-tag-input.bp3-large .bp3-button{
  7546. min-height:30px;
  7547. min-width:30px;
  7548. padding:5px 10px;
  7549. margin:5px;
  7550. margin-left:0; }
  7551. .bp3-tag-input.bp3-large .bp3-spinner{
  7552. margin:8px;
  7553. margin-left:0; }
  7554. .bp3-tag-input.bp3-active{
  7555. background-color:#ffffff;
  7556. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  7557. box-shadow:0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  7558. .bp3-tag-input.bp3-active.bp3-intent-primary{
  7559. -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  7560. box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  7561. .bp3-tag-input.bp3-active.bp3-intent-success{
  7562. -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  7563. box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  7564. .bp3-tag-input.bp3-active.bp3-intent-warning{
  7565. -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  7566. box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  7567. .bp3-tag-input.bp3-active.bp3-intent-danger{
  7568. -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2);
  7569. box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.2); }
  7570. .bp3-dark .bp3-tag-input .bp3-tag-input-icon, .bp3-tag-input.bp3-dark .bp3-tag-input-icon{
  7571. color:#a7b6c2; }
  7572. .bp3-dark .bp3-tag-input .bp3-input-ghost, .bp3-tag-input.bp3-dark .bp3-input-ghost{
  7573. color:#f5f8fa; }
  7574. .bp3-dark .bp3-tag-input .bp3-input-ghost::-webkit-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-webkit-input-placeholder{
  7575. color:rgba(167, 182, 194, 0.6); }
  7576. .bp3-dark .bp3-tag-input .bp3-input-ghost::-moz-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-moz-placeholder{
  7577. color:rgba(167, 182, 194, 0.6); }
  7578. .bp3-dark .bp3-tag-input .bp3-input-ghost:-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost:-ms-input-placeholder{
  7579. color:rgba(167, 182, 194, 0.6); }
  7580. .bp3-dark .bp3-tag-input .bp3-input-ghost::-ms-input-placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::-ms-input-placeholder{
  7581. color:rgba(167, 182, 194, 0.6); }
  7582. .bp3-dark .bp3-tag-input .bp3-input-ghost::placeholder, .bp3-tag-input.bp3-dark .bp3-input-ghost::placeholder{
  7583. color:rgba(167, 182, 194, 0.6); }
  7584. .bp3-dark .bp3-tag-input.bp3-active, .bp3-tag-input.bp3-dark.bp3-active{
  7585. background-color:rgba(16, 22, 26, 0.3);
  7586. -webkit-box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  7587. box-shadow:0 0 0 1px #137cbd, 0 0 0 1px #137cbd, 0 0 0 3px rgba(19, 124, 189, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  7588. .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-primary, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-primary{
  7589. -webkit-box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  7590. box-shadow:0 0 0 1px #106ba3, 0 0 0 3px rgba(16, 107, 163, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  7591. .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-success, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-success{
  7592. -webkit-box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  7593. box-shadow:0 0 0 1px #0d8050, 0 0 0 3px rgba(13, 128, 80, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  7594. .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-warning, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-warning{
  7595. -webkit-box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  7596. box-shadow:0 0 0 1px #bf7326, 0 0 0 3px rgba(191, 115, 38, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  7597. .bp3-dark .bp3-tag-input.bp3-active.bp3-intent-danger, .bp3-tag-input.bp3-dark.bp3-active.bp3-intent-danger{
  7598. -webkit-box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4);
  7599. box-shadow:0 0 0 1px #c23030, 0 0 0 3px rgba(194, 48, 48, 0.3), inset 0 0 0 1px rgba(16, 22, 26, 0.3), inset 0 1px 1px rgba(16, 22, 26, 0.4); }
  7600. .bp3-input-ghost{
  7601. background:none;
  7602. border:none;
  7603. -webkit-box-shadow:none;
  7604. box-shadow:none;
  7605. padding:0; }
  7606. .bp3-input-ghost::-webkit-input-placeholder{
  7607. color:rgba(92, 112, 128, 0.6);
  7608. opacity:1; }
  7609. .bp3-input-ghost::-moz-placeholder{
  7610. color:rgba(92, 112, 128, 0.6);
  7611. opacity:1; }
  7612. .bp3-input-ghost:-ms-input-placeholder{
  7613. color:rgba(92, 112, 128, 0.6);
  7614. opacity:1; }
  7615. .bp3-input-ghost::-ms-input-placeholder{
  7616. color:rgba(92, 112, 128, 0.6);
  7617. opacity:1; }
  7618. .bp3-input-ghost::placeholder{
  7619. color:rgba(92, 112, 128, 0.6);
  7620. opacity:1; }
  7621. .bp3-input-ghost:focus{
  7622. outline:none !important; }
  7623. .bp3-toast{
  7624. -webkit-box-align:start;
  7625. -ms-flex-align:start;
  7626. align-items:flex-start;
  7627. background-color:#ffffff;
  7628. border-radius:3px;
  7629. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  7630. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  7631. display:-webkit-box;
  7632. display:-ms-flexbox;
  7633. display:flex;
  7634. margin:20px 0 0;
  7635. max-width:500px;
  7636. min-width:300px;
  7637. pointer-events:all;
  7638. position:relative !important; }
  7639. .bp3-toast.bp3-toast-enter, .bp3-toast.bp3-toast-appear{
  7640. -webkit-transform:translateY(-40px);
  7641. transform:translateY(-40px); }
  7642. .bp3-toast.bp3-toast-enter-active, .bp3-toast.bp3-toast-appear-active{
  7643. -webkit-transform:translateY(0);
  7644. transform:translateY(0);
  7645. -webkit-transition-delay:0;
  7646. transition-delay:0;
  7647. -webkit-transition-duration:300ms;
  7648. transition-duration:300ms;
  7649. -webkit-transition-property:-webkit-transform;
  7650. transition-property:-webkit-transform;
  7651. transition-property:transform;
  7652. transition-property:transform, -webkit-transform;
  7653. -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
  7654. transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }
  7655. .bp3-toast.bp3-toast-enter ~ .bp3-toast, .bp3-toast.bp3-toast-appear ~ .bp3-toast{
  7656. -webkit-transform:translateY(-40px);
  7657. transform:translateY(-40px); }
  7658. .bp3-toast.bp3-toast-enter-active ~ .bp3-toast, .bp3-toast.bp3-toast-appear-active ~ .bp3-toast{
  7659. -webkit-transform:translateY(0);
  7660. transform:translateY(0);
  7661. -webkit-transition-delay:0;
  7662. transition-delay:0;
  7663. -webkit-transition-duration:300ms;
  7664. transition-duration:300ms;
  7665. -webkit-transition-property:-webkit-transform;
  7666. transition-property:-webkit-transform;
  7667. transition-property:transform;
  7668. transition-property:transform, -webkit-transform;
  7669. -webkit-transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11);
  7670. transition-timing-function:cubic-bezier(0.54, 1.12, 0.38, 1.11); }
  7671. .bp3-toast.bp3-toast-exit{
  7672. opacity:1;
  7673. -webkit-filter:blur(0);
  7674. filter:blur(0); }
  7675. .bp3-toast.bp3-toast-exit-active{
  7676. opacity:0;
  7677. -webkit-filter:blur(10px);
  7678. filter:blur(10px);
  7679. -webkit-transition-delay:0;
  7680. transition-delay:0;
  7681. -webkit-transition-duration:300ms;
  7682. transition-duration:300ms;
  7683. -webkit-transition-property:opacity, -webkit-filter;
  7684. transition-property:opacity, -webkit-filter;
  7685. transition-property:opacity, filter;
  7686. transition-property:opacity, filter, -webkit-filter;
  7687. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  7688. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  7689. .bp3-toast.bp3-toast-exit ~ .bp3-toast{
  7690. -webkit-transform:translateY(0);
  7691. transform:translateY(0); }
  7692. .bp3-toast.bp3-toast-exit-active ~ .bp3-toast{
  7693. -webkit-transform:translateY(-40px);
  7694. transform:translateY(-40px);
  7695. -webkit-transition-delay:50ms;
  7696. transition-delay:50ms;
  7697. -webkit-transition-duration:100ms;
  7698. transition-duration:100ms;
  7699. -webkit-transition-property:-webkit-transform;
  7700. transition-property:-webkit-transform;
  7701. transition-property:transform;
  7702. transition-property:transform, -webkit-transform;
  7703. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  7704. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  7705. .bp3-toast .bp3-button-group{
  7706. -webkit-box-flex:0;
  7707. -ms-flex:0 0 auto;
  7708. flex:0 0 auto;
  7709. padding:5px;
  7710. padding-left:0; }
  7711. .bp3-toast > .bp3-icon{
  7712. color:#5c7080;
  7713. margin:12px;
  7714. margin-right:0; }
  7715. .bp3-toast.bp3-dark,
  7716. .bp3-dark .bp3-toast{
  7717. background-color:#394b59;
  7718. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  7719. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }
  7720. .bp3-toast.bp3-dark > .bp3-icon,
  7721. .bp3-dark .bp3-toast > .bp3-icon{
  7722. color:#a7b6c2; }
  7723. .bp3-toast[class*="bp3-intent-"] a{
  7724. color:rgba(255, 255, 255, 0.7); }
  7725. .bp3-toast[class*="bp3-intent-"] a:hover{
  7726. color:#ffffff; }
  7727. .bp3-toast[class*="bp3-intent-"] > .bp3-icon{
  7728. color:#ffffff; }
  7729. .bp3-toast[class*="bp3-intent-"] .bp3-button, .bp3-toast[class*="bp3-intent-"] .bp3-button::before,
  7730. .bp3-toast[class*="bp3-intent-"] .bp3-button .bp3-icon, .bp3-toast[class*="bp3-intent-"] .bp3-button:active{
  7731. color:rgba(255, 255, 255, 0.7) !important; }
  7732. .bp3-toast[class*="bp3-intent-"] .bp3-button:focus{
  7733. outline-color:rgba(255, 255, 255, 0.5); }
  7734. .bp3-toast[class*="bp3-intent-"] .bp3-button:hover{
  7735. background-color:rgba(255, 255, 255, 0.15) !important;
  7736. color:#ffffff !important; }
  7737. .bp3-toast[class*="bp3-intent-"] .bp3-button:active{
  7738. background-color:rgba(255, 255, 255, 0.3) !important;
  7739. color:#ffffff !important; }
  7740. .bp3-toast[class*="bp3-intent-"] .bp3-button::after{
  7741. background:rgba(255, 255, 255, 0.3) !important; }
  7742. .bp3-toast.bp3-intent-primary{
  7743. background-color:#137cbd;
  7744. color:#ffffff; }
  7745. .bp3-toast.bp3-intent-success{
  7746. background-color:#0f9960;
  7747. color:#ffffff; }
  7748. .bp3-toast.bp3-intent-warning{
  7749. background-color:#d9822b;
  7750. color:#ffffff; }
  7751. .bp3-toast.bp3-intent-danger{
  7752. background-color:#db3737;
  7753. color:#ffffff; }
  7754. .bp3-toast-message{
  7755. -webkit-box-flex:1;
  7756. -ms-flex:1 1 auto;
  7757. flex:1 1 auto;
  7758. padding:11px;
  7759. word-break:break-word; }
  7760. .bp3-toast-container{
  7761. -webkit-box-align:center;
  7762. -ms-flex-align:center;
  7763. align-items:center;
  7764. display:-webkit-box !important;
  7765. display:-ms-flexbox !important;
  7766. display:flex !important;
  7767. -webkit-box-orient:vertical;
  7768. -webkit-box-direction:normal;
  7769. -ms-flex-direction:column;
  7770. flex-direction:column;
  7771. left:0;
  7772. overflow:hidden;
  7773. padding:0 20px 20px;
  7774. pointer-events:none;
  7775. position:fixed;
  7776. right:0;
  7777. z-index:40; }
  7778. .bp3-toast-container.bp3-toast-container-top{
  7779. top:0; }
  7780. .bp3-toast-container.bp3-toast-container-bottom{
  7781. bottom:0;
  7782. -webkit-box-orient:vertical;
  7783. -webkit-box-direction:reverse;
  7784. -ms-flex-direction:column-reverse;
  7785. flex-direction:column-reverse;
  7786. top:auto; }
  7787. .bp3-toast-container.bp3-toast-container-left{
  7788. -webkit-box-align:start;
  7789. -ms-flex-align:start;
  7790. align-items:flex-start; }
  7791. .bp3-toast-container.bp3-toast-container-right{
  7792. -webkit-box-align:end;
  7793. -ms-flex-align:end;
  7794. align-items:flex-end; }
  7795. .bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active),
  7796. .bp3-toast-container-bottom .bp3-toast.bp3-toast-enter:not(.bp3-toast-enter-active) ~ .bp3-toast, .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active),
  7797. .bp3-toast-container-bottom .bp3-toast.bp3-toast-appear:not(.bp3-toast-appear-active) ~ .bp3-toast,
  7798. .bp3-toast-container-bottom .bp3-toast.bp3-toast-exit-active ~ .bp3-toast,
  7799. .bp3-toast-container-bottom .bp3-toast.bp3-toast-leave-active ~ .bp3-toast{
  7800. -webkit-transform:translateY(60px);
  7801. transform:translateY(60px); }
  7802. .bp3-tooltip{
  7803. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  7804. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 2px 4px rgba(16, 22, 26, 0.2), 0 8px 24px rgba(16, 22, 26, 0.2);
  7805. -webkit-transform:scale(1);
  7806. transform:scale(1); }
  7807. .bp3-tooltip .bp3-popover-arrow{
  7808. height:22px;
  7809. position:absolute;
  7810. width:22px; }
  7811. .bp3-tooltip .bp3-popover-arrow::before{
  7812. height:14px;
  7813. margin:4px;
  7814. width:14px; }
  7815. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip{
  7816. margin-bottom:11px;
  7817. margin-top:-11px; }
  7818. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{
  7819. bottom:-8px; }
  7820. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow svg{
  7821. -webkit-transform:rotate(-90deg);
  7822. transform:rotate(-90deg); }
  7823. .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip{
  7824. margin-left:11px; }
  7825. .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{
  7826. left:-8px; }
  7827. .bp3-tether-element-attached-left.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow svg{
  7828. -webkit-transform:rotate(0);
  7829. transform:rotate(0); }
  7830. .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip{
  7831. margin-top:11px; }
  7832. .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{
  7833. top:-8px; }
  7834. .bp3-tether-element-attached-top.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow svg{
  7835. -webkit-transform:rotate(90deg);
  7836. transform:rotate(90deg); }
  7837. .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip{
  7838. margin-left:-11px;
  7839. margin-right:11px; }
  7840. .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{
  7841. right:-8px; }
  7842. .bp3-tether-element-attached-right.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow svg{
  7843. -webkit-transform:rotate(180deg);
  7844. transform:rotate(180deg); }
  7845. .bp3-tether-element-attached-middle > .bp3-tooltip > .bp3-popover-arrow{
  7846. top:50%;
  7847. -webkit-transform:translateY(-50%);
  7848. transform:translateY(-50%); }
  7849. .bp3-tether-element-attached-center > .bp3-tooltip > .bp3-popover-arrow{
  7850. right:50%;
  7851. -webkit-transform:translateX(50%);
  7852. transform:translateX(50%); }
  7853. .bp3-tether-element-attached-top.bp3-tether-target-attached-top > .bp3-tooltip > .bp3-popover-arrow{
  7854. top:-0.22183px; }
  7855. .bp3-tether-element-attached-right.bp3-tether-target-attached-right > .bp3-tooltip > .bp3-popover-arrow{
  7856. right:-0.22183px; }
  7857. .bp3-tether-element-attached-left.bp3-tether-target-attached-left > .bp3-tooltip > .bp3-popover-arrow{
  7858. left:-0.22183px; }
  7859. .bp3-tether-element-attached-bottom.bp3-tether-target-attached-bottom > .bp3-tooltip > .bp3-popover-arrow{
  7860. bottom:-0.22183px; }
  7861. .bp3-tether-element-attached-top.bp3-tether-element-attached-left > .bp3-tooltip{
  7862. -webkit-transform-origin:top left;
  7863. transform-origin:top left; }
  7864. .bp3-tether-element-attached-top.bp3-tether-element-attached-center > .bp3-tooltip{
  7865. -webkit-transform-origin:top center;
  7866. transform-origin:top center; }
  7867. .bp3-tether-element-attached-top.bp3-tether-element-attached-right > .bp3-tooltip{
  7868. -webkit-transform-origin:top right;
  7869. transform-origin:top right; }
  7870. .bp3-tether-element-attached-middle.bp3-tether-element-attached-left > .bp3-tooltip{
  7871. -webkit-transform-origin:center left;
  7872. transform-origin:center left; }
  7873. .bp3-tether-element-attached-middle.bp3-tether-element-attached-center > .bp3-tooltip{
  7874. -webkit-transform-origin:center center;
  7875. transform-origin:center center; }
  7876. .bp3-tether-element-attached-middle.bp3-tether-element-attached-right > .bp3-tooltip{
  7877. -webkit-transform-origin:center right;
  7878. transform-origin:center right; }
  7879. .bp3-tether-element-attached-bottom.bp3-tether-element-attached-left > .bp3-tooltip{
  7880. -webkit-transform-origin:bottom left;
  7881. transform-origin:bottom left; }
  7882. .bp3-tether-element-attached-bottom.bp3-tether-element-attached-center > .bp3-tooltip{
  7883. -webkit-transform-origin:bottom center;
  7884. transform-origin:bottom center; }
  7885. .bp3-tether-element-attached-bottom.bp3-tether-element-attached-right > .bp3-tooltip{
  7886. -webkit-transform-origin:bottom right;
  7887. transform-origin:bottom right; }
  7888. .bp3-tooltip .bp3-popover-content{
  7889. background:#394b59;
  7890. color:#f5f8fa; }
  7891. .bp3-tooltip .bp3-popover-arrow::before{
  7892. -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2);
  7893. box-shadow:1px 1px 6px rgba(16, 22, 26, 0.2); }
  7894. .bp3-tooltip .bp3-popover-arrow-border{
  7895. fill:#10161a;
  7896. fill-opacity:0.1; }
  7897. .bp3-tooltip .bp3-popover-arrow-fill{
  7898. fill:#394b59; }
  7899. .bp3-popover-enter > .bp3-tooltip, .bp3-popover-appear > .bp3-tooltip{
  7900. -webkit-transform:scale(0.8);
  7901. transform:scale(0.8); }
  7902. .bp3-popover-enter-active > .bp3-tooltip, .bp3-popover-appear-active > .bp3-tooltip{
  7903. -webkit-transform:scale(1);
  7904. transform:scale(1);
  7905. -webkit-transition-delay:0;
  7906. transition-delay:0;
  7907. -webkit-transition-duration:100ms;
  7908. transition-duration:100ms;
  7909. -webkit-transition-property:-webkit-transform;
  7910. transition-property:-webkit-transform;
  7911. transition-property:transform;
  7912. transition-property:transform, -webkit-transform;
  7913. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  7914. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  7915. .bp3-popover-exit > .bp3-tooltip{
  7916. -webkit-transform:scale(1);
  7917. transform:scale(1); }
  7918. .bp3-popover-exit-active > .bp3-tooltip{
  7919. -webkit-transform:scale(0.8);
  7920. transform:scale(0.8);
  7921. -webkit-transition-delay:0;
  7922. transition-delay:0;
  7923. -webkit-transition-duration:100ms;
  7924. transition-duration:100ms;
  7925. -webkit-transition-property:-webkit-transform;
  7926. transition-property:-webkit-transform;
  7927. transition-property:transform;
  7928. transition-property:transform, -webkit-transform;
  7929. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  7930. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  7931. .bp3-tooltip .bp3-popover-content{
  7932. padding:10px 12px; }
  7933. .bp3-tooltip.bp3-dark,
  7934. .bp3-dark .bp3-tooltip{
  7935. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4);
  7936. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 2px 4px rgba(16, 22, 26, 0.4), 0 8px 24px rgba(16, 22, 26, 0.4); }
  7937. .bp3-tooltip.bp3-dark .bp3-popover-content,
  7938. .bp3-dark .bp3-tooltip .bp3-popover-content{
  7939. background:#e1e8ed;
  7940. color:#394b59; }
  7941. .bp3-tooltip.bp3-dark .bp3-popover-arrow::before,
  7942. .bp3-dark .bp3-tooltip .bp3-popover-arrow::before{
  7943. -webkit-box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4);
  7944. box-shadow:1px 1px 6px rgba(16, 22, 26, 0.4); }
  7945. .bp3-tooltip.bp3-dark .bp3-popover-arrow-border,
  7946. .bp3-dark .bp3-tooltip .bp3-popover-arrow-border{
  7947. fill:#10161a;
  7948. fill-opacity:0.2; }
  7949. .bp3-tooltip.bp3-dark .bp3-popover-arrow-fill,
  7950. .bp3-dark .bp3-tooltip .bp3-popover-arrow-fill{
  7951. fill:#e1e8ed; }
  7952. .bp3-tooltip.bp3-intent-primary .bp3-popover-content{
  7953. background:#137cbd;
  7954. color:#ffffff; }
  7955. .bp3-tooltip.bp3-intent-primary .bp3-popover-arrow-fill{
  7956. fill:#137cbd; }
  7957. .bp3-tooltip.bp3-intent-success .bp3-popover-content{
  7958. background:#0f9960;
  7959. color:#ffffff; }
  7960. .bp3-tooltip.bp3-intent-success .bp3-popover-arrow-fill{
  7961. fill:#0f9960; }
  7962. .bp3-tooltip.bp3-intent-warning .bp3-popover-content{
  7963. background:#d9822b;
  7964. color:#ffffff; }
  7965. .bp3-tooltip.bp3-intent-warning .bp3-popover-arrow-fill{
  7966. fill:#d9822b; }
  7967. .bp3-tooltip.bp3-intent-danger .bp3-popover-content{
  7968. background:#db3737;
  7969. color:#ffffff; }
  7970. .bp3-tooltip.bp3-intent-danger .bp3-popover-arrow-fill{
  7971. fill:#db3737; }
  7972. .bp3-tooltip-indicator{
  7973. border-bottom:dotted 1px;
  7974. cursor:help; }
  7975. .bp3-tree .bp3-icon, .bp3-tree .bp3-icon-standard, .bp3-tree .bp3-icon-large{
  7976. color:#5c7080; }
  7977. .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-tree .bp3-icon-large.bp3-intent-primary{
  7978. color:#137cbd; }
  7979. .bp3-tree .bp3-icon.bp3-intent-success, .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-tree .bp3-icon-large.bp3-intent-success{
  7980. color:#0f9960; }
  7981. .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-tree .bp3-icon-large.bp3-intent-warning{
  7982. color:#d9822b; }
  7983. .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-tree .bp3-icon-large.bp3-intent-danger{
  7984. color:#db3737; }
  7985. .bp3-tree-node-list{
  7986. list-style:none;
  7987. margin:0;
  7988. padding-left:0; }
  7989. .bp3-tree-root{
  7990. background-color:transparent;
  7991. cursor:default;
  7992. padding-left:0;
  7993. position:relative; }
  7994. .bp3-tree-node-content-0{
  7995. padding-left:0px; }
  7996. .bp3-tree-node-content-1{
  7997. padding-left:23px; }
  7998. .bp3-tree-node-content-2{
  7999. padding-left:46px; }
  8000. .bp3-tree-node-content-3{
  8001. padding-left:69px; }
  8002. .bp3-tree-node-content-4{
  8003. padding-left:92px; }
  8004. .bp3-tree-node-content-5{
  8005. padding-left:115px; }
  8006. .bp3-tree-node-content-6{
  8007. padding-left:138px; }
  8008. .bp3-tree-node-content-7{
  8009. padding-left:161px; }
  8010. .bp3-tree-node-content-8{
  8011. padding-left:184px; }
  8012. .bp3-tree-node-content-9{
  8013. padding-left:207px; }
  8014. .bp3-tree-node-content-10{
  8015. padding-left:230px; }
  8016. .bp3-tree-node-content-11{
  8017. padding-left:253px; }
  8018. .bp3-tree-node-content-12{
  8019. padding-left:276px; }
  8020. .bp3-tree-node-content-13{
  8021. padding-left:299px; }
  8022. .bp3-tree-node-content-14{
  8023. padding-left:322px; }
  8024. .bp3-tree-node-content-15{
  8025. padding-left:345px; }
  8026. .bp3-tree-node-content-16{
  8027. padding-left:368px; }
  8028. .bp3-tree-node-content-17{
  8029. padding-left:391px; }
  8030. .bp3-tree-node-content-18{
  8031. padding-left:414px; }
  8032. .bp3-tree-node-content-19{
  8033. padding-left:437px; }
  8034. .bp3-tree-node-content-20{
  8035. padding-left:460px; }
  8036. .bp3-tree-node-content{
  8037. -webkit-box-align:center;
  8038. -ms-flex-align:center;
  8039. align-items:center;
  8040. display:-webkit-box;
  8041. display:-ms-flexbox;
  8042. display:flex;
  8043. height:30px;
  8044. padding-right:5px;
  8045. width:100%; }
  8046. .bp3-tree-node-content:hover{
  8047. background-color:rgba(191, 204, 214, 0.4); }
  8048. .bp3-tree-node-caret,
  8049. .bp3-tree-node-caret-none{
  8050. min-width:30px; }
  8051. .bp3-tree-node-caret{
  8052. color:#5c7080;
  8053. cursor:pointer;
  8054. padding:7px;
  8055. -webkit-transform:rotate(0deg);
  8056. transform:rotate(0deg);
  8057. -webkit-transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  8058. transition:-webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  8059. transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9);
  8060. transition:transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9), -webkit-transform 200ms cubic-bezier(0.4, 1, 0.75, 0.9); }
  8061. .bp3-tree-node-caret:hover{
  8062. color:#182026; }
  8063. .bp3-dark .bp3-tree-node-caret{
  8064. color:#a7b6c2; }
  8065. .bp3-dark .bp3-tree-node-caret:hover{
  8066. color:#f5f8fa; }
  8067. .bp3-tree-node-caret.bp3-tree-node-caret-open{
  8068. -webkit-transform:rotate(90deg);
  8069. transform:rotate(90deg); }
  8070. .bp3-tree-node-caret.bp3-icon-standard::before{
  8071. content:""; }
  8072. .bp3-tree-node-icon{
  8073. margin-right:7px;
  8074. position:relative; }
  8075. .bp3-tree-node-label{
  8076. overflow:hidden;
  8077. text-overflow:ellipsis;
  8078. white-space:nowrap;
  8079. word-wrap:normal;
  8080. -webkit-box-flex:1;
  8081. -ms-flex:1 1 auto;
  8082. flex:1 1 auto;
  8083. position:relative;
  8084. -webkit-user-select:none;
  8085. -moz-user-select:none;
  8086. -ms-user-select:none;
  8087. user-select:none; }
  8088. .bp3-tree-node-label span{
  8089. display:inline; }
  8090. .bp3-tree-node-secondary-label{
  8091. padding:0 5px;
  8092. -webkit-user-select:none;
  8093. -moz-user-select:none;
  8094. -ms-user-select:none;
  8095. user-select:none; }
  8096. .bp3-tree-node-secondary-label .bp3-popover-wrapper,
  8097. .bp3-tree-node-secondary-label .bp3-popover-target{
  8098. -webkit-box-align:center;
  8099. -ms-flex-align:center;
  8100. align-items:center;
  8101. display:-webkit-box;
  8102. display:-ms-flexbox;
  8103. display:flex; }
  8104. .bp3-tree-node.bp3-disabled .bp3-tree-node-content{
  8105. background-color:inherit;
  8106. color:rgba(92, 112, 128, 0.6);
  8107. cursor:not-allowed; }
  8108. .bp3-tree-node.bp3-disabled .bp3-tree-node-caret,
  8109. .bp3-tree-node.bp3-disabled .bp3-tree-node-icon{
  8110. color:rgba(92, 112, 128, 0.6);
  8111. cursor:not-allowed; }
  8112. .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{
  8113. background-color:#137cbd; }
  8114. .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content,
  8115. .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-standard, .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-icon-large{
  8116. color:#ffffff; }
  8117. .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret::before{
  8118. color:rgba(255, 255, 255, 0.7); }
  8119. .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content .bp3-tree-node-caret:hover::before{
  8120. color:#ffffff; }
  8121. .bp3-dark .bp3-tree-node-content:hover{
  8122. background-color:rgba(92, 112, 128, 0.3); }
  8123. .bp3-dark .bp3-tree .bp3-icon, .bp3-dark .bp3-tree .bp3-icon-standard, .bp3-dark .bp3-tree .bp3-icon-large{
  8124. color:#a7b6c2; }
  8125. .bp3-dark .bp3-tree .bp3-icon.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-primary, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-primary{
  8126. color:#137cbd; }
  8127. .bp3-dark .bp3-tree .bp3-icon.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-success, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-success{
  8128. color:#0f9960; }
  8129. .bp3-dark .bp3-tree .bp3-icon.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-warning, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-warning{
  8130. color:#d9822b; }
  8131. .bp3-dark .bp3-tree .bp3-icon.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-standard.bp3-intent-danger, .bp3-dark .bp3-tree .bp3-icon-large.bp3-intent-danger{
  8132. color:#db3737; }
  8133. .bp3-dark .bp3-tree-node.bp3-tree-node-selected > .bp3-tree-node-content{
  8134. background-color:#137cbd; }
  8135. .bp3-omnibar{
  8136. -webkit-filter:blur(0);
  8137. filter:blur(0);
  8138. opacity:1;
  8139. background-color:#ffffff;
  8140. border-radius:3px;
  8141. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  8142. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.1), 0 4px 8px rgba(16, 22, 26, 0.2), 0 18px 46px 6px rgba(16, 22, 26, 0.2);
  8143. left:calc(50% - 250px);
  8144. top:20vh;
  8145. width:500px;
  8146. z-index:21; }
  8147. .bp3-omnibar.bp3-overlay-enter, .bp3-omnibar.bp3-overlay-appear{
  8148. -webkit-filter:blur(20px);
  8149. filter:blur(20px);
  8150. opacity:0.2; }
  8151. .bp3-omnibar.bp3-overlay-enter-active, .bp3-omnibar.bp3-overlay-appear-active{
  8152. -webkit-filter:blur(0);
  8153. filter:blur(0);
  8154. opacity:1;
  8155. -webkit-transition-delay:0;
  8156. transition-delay:0;
  8157. -webkit-transition-duration:200ms;
  8158. transition-duration:200ms;
  8159. -webkit-transition-property:opacity, -webkit-filter;
  8160. transition-property:opacity, -webkit-filter;
  8161. transition-property:filter, opacity;
  8162. transition-property:filter, opacity, -webkit-filter;
  8163. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  8164. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  8165. .bp3-omnibar.bp3-overlay-exit{
  8166. -webkit-filter:blur(0);
  8167. filter:blur(0);
  8168. opacity:1; }
  8169. .bp3-omnibar.bp3-overlay-exit-active{
  8170. -webkit-filter:blur(20px);
  8171. filter:blur(20px);
  8172. opacity:0.2;
  8173. -webkit-transition-delay:0;
  8174. transition-delay:0;
  8175. -webkit-transition-duration:200ms;
  8176. transition-duration:200ms;
  8177. -webkit-transition-property:opacity, -webkit-filter;
  8178. transition-property:opacity, -webkit-filter;
  8179. transition-property:filter, opacity;
  8180. transition-property:filter, opacity, -webkit-filter;
  8181. -webkit-transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9);
  8182. transition-timing-function:cubic-bezier(0.4, 1, 0.75, 0.9); }
  8183. .bp3-omnibar .bp3-input{
  8184. background-color:transparent;
  8185. border-radius:0; }
  8186. .bp3-omnibar .bp3-input, .bp3-omnibar .bp3-input:focus{
  8187. -webkit-box-shadow:none;
  8188. box-shadow:none; }
  8189. .bp3-omnibar .bp3-menu{
  8190. background-color:transparent;
  8191. border-radius:0;
  8192. -webkit-box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);
  8193. box-shadow:inset 0 1px 0 rgba(16, 22, 26, 0.15);
  8194. max-height:calc(60vh - 40px);
  8195. overflow:auto; }
  8196. .bp3-omnibar .bp3-menu:empty{
  8197. display:none; }
  8198. .bp3-dark .bp3-omnibar, .bp3-omnibar.bp3-dark{
  8199. background-color:#30404d;
  8200. -webkit-box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4);
  8201. box-shadow:0 0 0 1px rgba(16, 22, 26, 0.2), 0 4px 8px rgba(16, 22, 26, 0.4), 0 18px 46px 6px rgba(16, 22, 26, 0.4); }
  8202. .bp3-omnibar-overlay .bp3-overlay-backdrop{
  8203. background-color:rgba(16, 22, 26, 0.2); }
  8204. .bp3-select-popover .bp3-popover-content{
  8205. padding:5px; }
  8206. .bp3-select-popover .bp3-input-group{
  8207. margin-bottom:0; }
  8208. .bp3-select-popover .bp3-menu{
  8209. max-height:300px;
  8210. max-width:400px;
  8211. overflow:auto;
  8212. padding:0; }
  8213. .bp3-select-popover .bp3-menu:not(:first-child){
  8214. padding-top:5px; }
  8215. .bp3-multi-select{
  8216. min-width:150px; }
  8217. .bp3-multi-select-popover .bp3-menu{
  8218. max-height:300px;
  8219. max-width:400px;
  8220. overflow:auto; }
  8221. .bp3-select-popover .bp3-popover-content{
  8222. padding:5px; }
  8223. .bp3-select-popover .bp3-input-group{
  8224. margin-bottom:0; }
  8225. .bp3-select-popover .bp3-menu{
  8226. max-height:300px;
  8227. max-width:400px;
  8228. overflow:auto;
  8229. padding:0; }
  8230. .bp3-select-popover .bp3-menu:not(:first-child){
  8231. padding-top:5px; }
  8232. /*-----------------------------------------------------------------------------
  8233. | Copyright (c) Jupyter Development Team.
  8234. | Distributed under the terms of the Modified BSD License.
  8235. |----------------------------------------------------------------------------*/
  8236. /* This file was auto-generated by ensureUiComponents() in @jupyterlab/buildutils */
  8237. /**
  8238. * (DEPRECATED) Support for consuming icons as CSS background images
  8239. */
  8240. /* Icons urls */
  8241. :root {
  8242. --jp-icon-add: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDEzaC02djZoLTJ2LTZINXYtMmg2VjVoMnY2aDZ2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8243. --jp-icon-bug: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDhoLTIuODFjLS40NS0uNzgtMS4wNy0xLjQ1LTEuODItMS45NkwxNyA0LjQxIDE1LjU5IDNsLTIuMTcgMi4xN0MxMi45NiA1LjA2IDEyLjQ5IDUgMTIgNWMtLjQ5IDAtLjk2LjA2LTEuNDEuMTdMOC40MSAzIDcgNC40MWwxLjYyIDEuNjNDNy44OCA2LjU1IDcuMjYgNy4yMiA2LjgxIDhINHYyaDIuMDljLS4wNS4zMy0uMDkuNjYtLjA5IDF2MUg0djJoMnYxYzAgLjM0LjA0LjY3LjA5IDFINHYyaDIuODFjMS4wNCAxLjc5IDIuOTcgMyA1LjE5IDNzNC4xNS0xLjIxIDUuMTktM0gyMHYtMmgtMi4wOWMuMDUtLjMzLjA5LS42Ni4wOS0xdi0xaDJ2LTJoLTJ2LTFjMC0uMzQtLjA0LS42Ny0uMDktMUgyMFY4em0tNiA4aC00di0yaDR2MnptMC00aC00di0yaDR2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8244. --jp-icon-build: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE0LjkgMTcuNDVDMTYuMjUgMTcuNDUgMTcuMzUgMTYuMzUgMTcuMzUgMTVDMTcuMzUgMTMuNjUgMTYuMjUgMTIuNTUgMTQuOSAxMi41NUMxMy41NCAxMi41NSAxMi40NSAxMy42NSAxMi40NSAxNUMxMi40NSAxNi4zNSAxMy41NCAxNy40NSAxNC45IDE3LjQ1Wk0yMC4xIDE1LjY4TDIxLjU4IDE2Ljg0QzIxLjcxIDE2Ljk1IDIxLjc1IDE3LjEzIDIxLjY2IDE3LjI5TDIwLjI2IDE5LjcxQzIwLjE3IDE5Ljg2IDIwIDE5LjkyIDE5LjgzIDE5Ljg2TDE4LjA5IDE5LjE2QzE3LjczIDE5LjQ0IDE3LjMzIDE5LjY3IDE2LjkxIDE5Ljg1TDE2LjY0IDIxLjdDMTYuNjIgMjEuODcgMTYuNDcgMjIgMTYuMyAyMkgxMy41QzEzLjMyIDIyIDEzLjE4IDIxLjg3IDEzLjE1IDIxLjdMMTIuODkgMTkuODVDMTIuNDYgMTkuNjcgMTIuMDcgMTkuNDQgMTEuNzEgMTkuMTZMOS45NjAwMiAxOS44NkM5LjgxMDAyIDE5LjkyIDkuNjIwMDIgMTkuODYgOS41NDAwMiAxOS43MUw4LjE0MDAyIDE3LjI5QzguMDUwMDIgMTcuMTMgOC4wOTAwMiAxNi45NSA4LjIyMDAyIDE2Ljg0TDkuNzAwMDIgMTUuNjhMOS42NTAwMSAxNUw5LjcwMDAyIDE0LjMxTDguMjIwMDIgMTMuMTZDOC4wOTAwMiAxMy4wNSA4LjA1MDAyIDEyLjg2IDguMTQwMDIgMTIuNzFMOS41NDAwMiAxMC4yOUM5LjYyMDAyIDEwLjEzIDkuODEwMDIgMTAuMDcgOS45NjAwMiAxMC4xM0wxMS43MSAxMC44NEMxMi4wNyAxMC41NiAxMi40NiAxMC4zMiAxMi44OSAxMC4xNUwxMy4xNSA4LjI4OTk4QzEzLjE4IDguMTI5OTggMTMuMzIgNy45OTk5OCAxMy41IDcuOTk5OThIMTYuM0MxNi40NyA3Ljk5OTk4IDE2LjYyIDguMTI5OTggMTYuNjQgOC4yODk5OEwxNi45MSAxMC4xNUMxNy4zMyAxMC4zMiAxNy43MyAxMC41NiAxOC4wOSAxMC44NEwxOS44MyAxMC4xM0MyMCAxMC4wNyAyMC4xNyAxMC4xMyAyMC4yNiAxMC4yOUwyMS42NiAxMi43MUMyMS43NSAxMi44NiAyMS43MSAxMy4wNSAyMS41OCAxMy4xNkwyMC4xIDE0LjMxTDIwLjE1IDE1TDIwLjEgMTUuNjhaIi8+CiAgICA8cGF0aCBkPSJNNy4zMjk2NiA3LjQ0NDU0QzguMDgzMSA3LjAwOTU0IDguMzM5MzIgNi4wNTMzMiA3LjkwNDMyIDUuMjk5ODhDNy40NjkzMiA0LjU0NjQzIDYuNTA4MSA0LjI4MTU2IDUuNzU0NjYgNC43MTY1NkM1LjM5MTc2IDQuOTI2MDggNS4xMjY5NSA1LjI3MTE4IDUuMDE4NDkgNS42NzU5NEM0LjkxMDA0IDYuMDgwNzEgNC45NjY4MiA2LjUxMTk4IDUuMTc2MzQgNi44NzQ4OEM1LjYxMTM0IDcuNjI4MzIgNi41NzYyMiA3Ljg3OTU0IDcuMzI5NjYgNy40NDQ1NFpNOS42NTcxOCA0Ljc5NTkzTDEwLjg2NzIgNC45NTE3OUMxMC45NjI4IDQuOTc3NDEgMTEuMDQwMiA1LjA3MTMzIDExLjAzODIgNS4xODc5M0wxMS4wMzg4IDYuOTg4OTNDMTEuMDQ1NSA3LjEwMDU0IDEwLjk2MTYgNy4xOTUxOCAxMC44NTUgNy4yMTA1NEw5LjY2MDAxIDcuMzgwODNMOS4yMzkxNSA4LjEzMTg4TDkuNjY5NjEgOS4yNTc0NUM5LjcwNzI5IDkuMzYyNzEgOS42NjkzNCA5LjQ3Njk5IDkuNTc0MDggOS41MzE5OUw4LjAxNTIzIDEwLjQzMkM3LjkxMTMxIDEwLjQ5MiA3Ljc5MzM3IDEwLjQ2NzcgNy43MjEwNSAxMC4zODI0TDYuOTg3NDggOS40MzE4OEw2LjEwOTMxIDkuNDMwODNMNS4zNDcwNCAxMC4zOTA1QzUuMjg5MDkgMTAuNDcwMiA1LjE3MzgzIDEwLjQ5MDUgNS4wNzE4NyAxMC40MzM5TDMuNTEyNDUgOS41MzI5M0MzLjQxMDQ5IDkuNDc2MzMgMy4zNzY0NyA5LjM1NzQxIDMuNDEwNzUgOS4yNTY3OUwzLjg2MzQ3IDguMTQwOTNMMy42MTc0OSA3Ljc3NDg4TDMuNDIzNDcgNy4zNzg4M0wyLjIzMDc1IDcuMjEyOTdDMi4xMjY0NyA3LjE5MjM1IDIuMDQwNDkgNy4xMDM0MiAyLjA0MjQ1IDYuOTg2ODJMMi4wNDE4NyA1LjE4NTgyQzIuMDQzODMgNS4wNjkyMiAyLjExOTA5IDQuOTc5NTggMi4yMTcwNCA0Ljk2OTIyTDMuNDIwNjUgNC43OTM5M0wzLjg2NzQ5IDQuMDI3ODhMMy40MTEwNSAyLjkxNzMxQzMuMzczMzcgMi44MTIwNCAzLjQxMTMxIDIuNjk3NzYgMy41MTUyMyAyLjYzNzc2TDUuMDc0MDggMS43Mzc3NkM1LjE2OTM0IDEuNjgyNzYgNS4yODcyOSAxLjcwNzA0IDUuMzU5NjEgMS43OTIzMUw2LjExOTE1IDIuNzI3ODhMNi45ODAwMSAyLjczODkzTDcuNzI0OTYgMS43ODkyMkM3Ljc5MTU2IDEuNzA0NTggNy45MTU0OCAxLjY3OTIyIDguMDA4NzkgMS43NDA4Mkw5LjU2ODIxIDIuNjQxODJDOS42NzAxNyAyLjY5ODQyIDkuNzEyODUgMi44MTIzNCA5LjY4NzIzIDIuOTA3OTdMOS4yMTcxOCA0LjAzMzgzTDkuNDYzMTYgNC4zOTk4OEw5LjY1NzE4IDQuNzk1OTNaIi8+CiAgPC9nPgo8L3N2Zz4K);
  8245. --jp-icon-caret-down-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iOS45LDEzLjYgMy42LDcuNCA0LjQsNi42IDkuOSwxMi4yIDE1LjQsNi43IDE2LjEsNy40ICIvPgoJPC9nPgo8L3N2Zz4K);
  8246. --jp-icon-caret-down-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNS45TDksOS43bDMuOC0zLjhsMS4yLDEuMmwtNC45LDVsLTQuOS01TDUuMiw1Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8247. --jp-icon-caret-down: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik01LjIsNy41TDksMTEuMmwzLjgtMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8248. --jp-icon-caret-left: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik0xMC44LDEyLjhMNy4xLDlsMy44LTMuOGwwLDcuNkgxMC44eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8249. --jp-icon-caret-right: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiIHNoYXBlLXJlbmRlcmluZz0iZ2VvbWV0cmljUHJlY2lzaW9uIj4KICAgIDxwYXRoIGQ9Ik03LjIsNS4yTDEwLjksOWwtMy44LDMuOFY1LjJINy4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8250. --jp-icon-caret-up-empty-thin: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwb2x5Z29uIGNsYXNzPSJzdDEiIHBvaW50cz0iMTUuNCwxMy4zIDkuOSw3LjcgNC40LDEzLjIgMy42LDEyLjUgOS45LDYuMyAxNi4xLDEyLjYgIi8+Cgk8L2c+Cjwvc3ZnPgo=);
  8251. --jp-icon-caret-up: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSIgc2hhcGUtcmVuZGVyaW5nPSJnZW9tZXRyaWNQcmVjaXNpb24iPgoJCTxwYXRoIGQ9Ik01LjIsMTAuNUw5LDYuOGwzLjgsMy44SDUuMnoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8252. --jp-icon-case-sensitive: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgogIDxnIGNsYXNzPSJqcC1pY29uLWFjY2VudDIiIGZpbGw9IiNGRkYiPgogICAgPHBhdGggZD0iTTcuNiw4aDAuOWwzLjUsOGgtMS4xTDEwLDE0SDZsLTAuOSwySDRMNy42LDh6IE04LDkuMUw2LjQsMTNoMy4yTDgsOS4xeiIvPgogICAgPHBhdGggZD0iTTE2LjYsOS44Yy0wLjIsMC4xLTAuNCwwLjEtMC43LDAuMWMtMC4yLDAtMC40LTAuMS0wLjYtMC4yYy0wLjEtMC4xLTAuMi0wLjQtMC4yLTAuNyBjLTAuMywwLjMtMC42LDAuNS0wLjksMC43Yy0wLjMsMC4xLTAuNywwLjItMS4xLDAuMmMtMC4zLDAtMC41LDAtMC43LTAuMWMtMC4yLTAuMS0wLjQtMC4yLTAuNi0wLjNjLTAuMi0wLjEtMC4zLTAuMy0wLjQtMC41IGMtMC4xLTAuMi0wLjEtMC40LTAuMS0wLjdjMC0wLjMsMC4xLTAuNiwwLjItMC44YzAuMS0wLjIsMC4zLTAuNCwwLjQtMC41QzEyLDcsMTIuMiw2LjksMTIuNSw2LjhjMC4yLTAuMSwwLjUtMC4xLDAuNy0wLjIgYzAuMy0wLjEsMC41LTAuMSwwLjctMC4xYzAuMiwwLDAuNC0wLjEsMC42LTAuMWMwLjIsMCwwLjMtMC4xLDAuNC0wLjJjMC4xLTAuMSwwLjItMC4yLDAuMi0wLjRjMC0xLTEuMS0xLTEuMy0xIGMtMC40LDAtMS40LDAtMS40LDEuMmgtMC45YzAtMC40LDAuMS0wLjcsMC4yLTFjMC4xLTAuMiwwLjMtMC40LDAuNS0wLjZjMC4yLTAuMiwwLjUtMC4zLDAuOC0wLjNDMTMuMyw0LDEzLjYsNCwxMy45LDQgYzAuMywwLDAuNSwwLDAuOCwwLjFjMC4zLDAsMC41LDAuMSwwLjcsMC4yYzAuMiwwLjEsMC40LDAuMywwLjUsMC41QzE2LDUsMTYsNS4yLDE2LDUuNnYyLjljMCwwLjIsMCwwLjQsMCwwLjUgYzAsMC4xLDAuMSwwLjIsMC4zLDAuMmMwLjEsMCwwLjIsMCwwLjMsMFY5Ljh6IE0xNS4yLDYuOWMtMS4yLDAuNi0zLjEsMC4yLTMuMSwxLjRjMCwxLjQsMy4xLDEsMy4xLTAuNVY2Ljl6Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8253. --jp-icon-check: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTYuMTdMNC44MyAxMmwtMS40MiAxLjQxTDkgMTkgMjEgN2wtMS40MS0xLjQxeiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8254. --jp-icon-circle-empty: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDJDNi40NyAyIDIgNi40NyAyIDEyczQuNDcgMTAgMTAgMTAgMTAtNC40NyAxMC0xMFMxNy41MyAyIDEyIDJ6bTAgMThjLTQuNDEgMC04LTMuNTktOC04czMuNTktOCA4LTggOCAzLjU5IDggOC0zLjU5IDgtOCA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8255. --jp-icon-circle: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iOSIgY3k9IjkiIHI9IjgiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8256. --jp-icon-clear: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8bWFzayBpZD0iZG9udXRIb2xlIj4KICAgIDxyZWN0IHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgZmlsbD0id2hpdGUiIC8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSI4IiBmaWxsPSJibGFjayIvPgogIDwvbWFzaz4KCiAgPGcgY2xhc3M9ImpwLWljb24zIiBmaWxsPSIjNjE2MTYxIj4KICAgIDxyZWN0IGhlaWdodD0iMTgiIHdpZHRoPSIyIiB4PSIxMSIgeT0iMyIgdHJhbnNmb3JtPSJyb3RhdGUoMzE1LCAxMiwgMTIpIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIxMCIgbWFzaz0idXJsKCNkb251dEhvbGUpIi8+CiAgPC9nPgo8L3N2Zz4K);
  8257. --jp-icon-close: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1ub25lIGpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIGpwLWljb24zLWhvdmVyIiBmaWxsPSJub25lIj4KICAgIDxjaXJjbGUgY3g9IjEyIiBjeT0iMTIiIHI9IjExIi8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIGpwLWljb24tYWNjZW50Mi1ob3ZlciIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMTkgNi40MUwxNy41OSA1IDEyIDEwLjU5IDYuNDEgNSA1IDYuNDEgMTAuNTkgMTIgNSAxNy41OSA2LjQxIDE5IDEyIDEzLjQxIDE3LjU5IDE5IDE5IDE3LjU5IDEzLjQxIDEyeiIvPgogIDwvZz4KCiAgPGcgY2xhc3M9ImpwLWljb24tbm9uZSBqcC1pY29uLWJ1c3kiIGZpbGw9Im5vbmUiPgogICAgPGNpcmNsZSBjeD0iMTIiIGN5PSIxMiIgcj0iNyIvPgogIDwvZz4KPC9zdmc+Cg==);
  8258. --jp-icon-code: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTExLjQgMTguNkw2LjggMTRMMTEuNCA5LjRMMTAgOEw0IDE0TDEwIDIwTDExLjQgMTguNlpNMTYuNiAxOC42TDIxLjIgMTRMMTYuNiA5LjRMMTggOEwyNCAxNEwxOCAyMEwxNi42IDE4LjZWMTguNloiLz4KCTwvZz4KPC9zdmc+Cg==);
  8259. --jp-icon-console: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwMCAyMDAiPgogIDxnIGNsYXNzPSJqcC1pY29uLWJyYW5kMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMjg4RDEiPgogICAgPHBhdGggZD0iTTIwIDE5LjhoMTYwdjE1OS45SDIweiIvPgogIDwvZz4KICA8ZyBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNmZmYiPgogICAgPHBhdGggZD0iTTEwNSAxMjcuM2g0MHYxMi44aC00MHpNNTEuMSA3N0w3NCA5OS45bC0yMy4zIDIzLjMgMTAuNSAxMC41IDIzLjMtMjMuM0w5NSA5OS45IDg0LjUgODkuNCA2MS42IDY2LjV6Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8260. --jp-icon-copy: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTExLjksMUgzLjJDMi40LDEsMS43LDEuNywxLjcsMi41djEwLjJoMS41VjIuNWg4LjdWMXogTTE0LjEsMy45aC04Yy0wLjgsMC0xLjUsMC43LTEuNSwxLjV2MTAuMmMwLDAuOCwwLjcsMS41LDEuNSwxLjVoOCBjMC44LDAsMS41LTAuNywxLjUtMS41VjUuNEMxNS41LDQuNiwxNC45LDMuOSwxNC4xLDMuOXogTTE0LjEsMTUuNWgtOFY1LjRoOFYxNS41eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8261. --jp-icon-cut: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkuNjQgNy42NGMuMjMtLjUuMzYtMS4wNS4zNi0xLjY0IDAtMi4yMS0xLjc5LTQtNC00UzIgMy43OSAyIDZzMS43OSA0IDQgNGMuNTkgMCAxLjE0LS4xMyAxLjY0LS4zNkwxMCAxMmwtMi4zNiAyLjM2QzcuMTQgMTQuMTMgNi41OSAxNCA2IDE0Yy0yLjIxIDAtNCAxLjc5LTQgNHMxLjc5IDQgNCA0IDQtMS43OSA0LTRjMC0uNTktLjEzLTEuMTQtLjM2LTEuNjRMMTIgMTRsNyA3aDN2LTFMOS42NCA3LjY0ek02IDhjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTAgMTJjLTEuMSAwLTItLjg5LTItMnMuOS0yIDItMiAyIC44OSAyIDItLjkgMi0yIDJ6bTYtNy41Yy0uMjggMC0uNS0uMjItLjUtLjVzLjIyLS41LjUtLjUuNS4yMi41LjUtLjIyLjUtLjUuNXpNMTkgM2wtNiA2IDIgMiA3LTdWM3oiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8262. --jp-icon-download: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE5IDloLTRWM0g5djZINWw3IDcgNy03ek01IDE4djJoMTR2LTJINXoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8263. --jp-icon-edit: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMgMTcuMjVWMjFoMy43NUwxNy44MSA5Ljk0bC0zLjc1LTMuNzVMMyAxNy4yNXpNMjAuNzEgNy4wNGMuMzktLjM5LjM5LTEuMDIgMC0xLjQxbC0yLjM0LTIuMzRjLS4zOS0uMzktMS4wMi0uMzktMS40MSAwbC0xLjgzIDEuODMgMy43NSAzLjc1IDEuODMtMS44M3oiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8264. --jp-icon-ellipses: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPGNpcmNsZSBjeD0iNSIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIyIi8+CiAgICA8Y2lyY2xlIGN4PSIxOSIgY3k9IjEyIiByPSIyIi8+CiAgPC9nPgo8L3N2Zz4K);
  8265. --jp-icon-extension: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwLjUgMTFIMTlWN2MwLTEuMS0uOS0yLTItMmgtNFYzLjVDMTMgMi4xMiAxMS44OCAxIDEwLjUgMVM4IDIuMTIgOCAzLjVWNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAydjMuOEgzLjVjMS40OSAwIDIuNyAxLjIxIDIuNyAyLjdzLTEuMjEgMi43LTIuNyAyLjdIMlYyMGMwIDEuMS45IDIgMiAyaDMuOHYtMS41YzAtMS40OSAxLjIxLTIuNyAyLjctMi43IDEuNDkgMCAyLjcgMS4yMSAyLjcgMi43VjIySDE3YzEuMSAwIDItLjkgMi0ydi00aDEuNWMxLjM4IDAgMi41LTEuMTIgMi41LTIuNVMyMS44OCAxMSAyMC41IDExeiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8266. --jp-icon-fast-forward: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTQgMThsOC41LTZMNCA2djEyem05LTEydjEybDguNS02TDEzIDZ6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);
  8267. --jp-icon-file-upload: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTkgMTZoNnYtNmg0bC03LTctNyA3aDR6bS00IDJoMTR2Mkg1eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8268. --jp-icon-file: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuMyA4LjJsLTUuNS01LjVjLS4zLS4zLS43LS41LTEuMi0uNUgzLjljLS44LjEtMS42LjktMS42IDEuOHYxNC4xYzAgLjkuNyAxLjYgMS42IDEuNmgxNC4yYy45IDAgMS42LS43IDEuNi0xLjZWOS40Yy4xLS41LS4xLS45LS40LTEuMnptLTUuOC0zLjNsMy40IDMuNmgtMy40VjQuOXptMy45IDEyLjdINC43Yy0uMSAwLS4yIDAtLjItLjJWNC43YzAtLjIuMS0uMy4yLS4zaDcuMnY0LjRzMCAuOC4zIDEuMWMuMy4zIDEuMS4zIDEuMS4zaDQuM3Y3LjJzLS4xLjItLjIuMnoiLz4KPC9zdmc+Cg==);
  8269. --jp-icon-filter-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEwIDE4aDR2LTJoLTR2MnpNMyA2djJoMThWNkgzem0zIDdoMTJ2LTJINnYyeiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8270. --jp-icon-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY4YzAtMS4xLS45LTItMi0yaC04bC0yLTJ6Ii8+Cjwvc3ZnPgo=);
  8271. --jp-icon-html5: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiMwMDAiIGQ9Ik0xMDguNCAwaDIzdjIyLjhoMjEuMlYwaDIzdjY5aC0yM1Y0NmgtMjF2MjNoLTIzLjJNMjA2IDIzaC0yMC4zVjBoNjMuN3YyM0gyMjl2NDZoLTIzbTUzLjUtNjloMjQuMWwxNC44IDI0LjNMMzEzLjIgMGgyNC4xdjY5aC0yM1YzNC44bC0xNi4xIDI0LjgtMTYuMS0yNC44VjY5aC0yMi42bTg5LjItNjloMjN2NDYuMmgzMi42VjY5aC01NS42Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI2U0NGQyNiIgZD0iTTEwNy42IDQ3MWwtMzMtMzcwLjRoMzYyLjhsLTMzIDM3MC4yTDI1NS43IDUxMiIvPgogIDxwYXRoIGNsYXNzPSJqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNmMTY1MjkiIGQ9Ik0yNTYgNDgwLjVWMTMxaDE0OC4zTDM3NiA0NDciLz4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNlYmViZWIiIGQ9Ik0xNDIgMTc2LjNoMTE0djQ1LjRoLTY0LjJsNC4yIDQ2LjVoNjB2NDUuM0gxNTQuNG0yIDIyLjhIMjAybDMuMiAzNi4zIDUwLjggMTMuNnY0Ny40bC05My4yLTI2Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZS1pbnZlcnNlIiBmaWxsPSIjZmZmIiBkPSJNMzY5LjYgMTc2LjNIMjU1Ljh2NDUuNGgxMDkuNm0tNC4xIDQ2LjVIMjU1Ljh2NDUuNGg1NmwtNS4zIDU5LTUwLjcgMTMuNnY0Ny4ybDkzLTI1LjgiLz4KPC9zdmc+Cg==);
  8272. --jp-icon-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1icmFuZDQganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGZpbGw9IiNGRkYiIGQ9Ik0yLjIgMi4yaDE3LjV2MTcuNUgyLjJ6Ii8+CiAgPHBhdGggY2xhc3M9ImpwLWljb24tYnJhbmQwIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzNGNTFCNSIgZD0iTTIuMiAyLjJ2MTcuNWgxNy41bC4xLTE3LjVIMi4yem0xMi4xIDIuMmMxLjIgMCAyLjIgMSAyLjIgMi4ycy0xIDIuMi0yLjIgMi4yLTIuMi0xLTIuMi0yLjIgMS0yLjIgMi4yLTIuMnpNNC40IDE3LjZsMy4zLTguOCAzLjMgNi42IDIuMi0zLjIgNC40IDUuNEg0LjR6Ii8+Cjwvc3ZnPgo=);
  8273. --jp-icon-inspector: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNEg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMThjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY2YzAtMS4xLS45LTItMi0yem0tNSAxNEg0di00aDExdjR6bTAtNUg0VjloMTF2NHptNSA1aC00VjloNHY5eiIvPgo8L3N2Zz4K);
  8274. --jp-icon-json: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMSBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNGOUE4MjUiPgogICAgPHBhdGggZD0iTTIwLjIgMTEuOGMtMS42IDAtMS43LjUtMS43IDEgMCAuNC4xLjkuMSAxLjMuMS41LjEuOS4xIDEuMyAwIDEuNy0xLjQgMi4zLTMuNSAyLjNoLS45di0xLjloLjVjMS4xIDAgMS40IDAgMS40LS44IDAtLjMgMC0uNi0uMS0xIDAtLjQtLjEtLjgtLjEtMS4yIDAtMS4zIDAtMS44IDEuMy0yLTEuMy0uMi0xLjMtLjctMS4zLTIgMC0uNC4xLS44LjEtMS4yLjEtLjQuMS0uNy4xLTEgMC0uOC0uNC0uNy0xLjQtLjhoLS41VjQuMWguOWMyLjIgMCAzLjUuNyAzLjUgMi4zIDAgLjQtLjEuOS0uMSAxLjMtLjEuNS0uMS45LS4xIDEuMyAwIC41LjIgMSAxLjcgMXYxLjh6TTEuOCAxMC4xYzEuNiAwIDEuNy0uNSAxLjctMSAwLS40LS4xLS45LS4xLTEuMy0uMS0uNS0uMS0uOS0uMS0xLjMgMC0xLjYgMS40LTIuMyAzLjUtMi4zaC45djEuOWgtLjVjLTEgMC0xLjQgMC0xLjQuOCAwIC4zIDAgLjYuMSAxIDAgLjIuMS42LjEgMSAwIDEuMyAwIDEuOC0xLjMgMkM2IDExLjIgNiAxMS43IDYgMTNjMCAuNC0uMS44LS4xIDEuMi0uMS4zLS4xLjctLjEgMSAwIC44LjMuOCAxLjQuOGguNXYxLjloLS45Yy0yLjEgMC0zLjUtLjYtMy41LTIuMyAwLS40LjEtLjkuMS0xLjMuMS0uNS4xLS45LjEtMS4zIDAtLjUtLjItMS0xLjctMXYtMS45eiIvPgogICAgPGNpcmNsZSBjeD0iMTEiIGN5PSIxMy44IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY3g9IjExIiBjeT0iOC4yIiByPSIyLjEiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8275. --jp-icon-jupyter-favicon: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTUyIiBoZWlnaHQ9IjE2NSIgdmlld0JveD0iMCAwIDE1MiAxNjUiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA3ODk0NywgMTEwLjU4MjkyNykiIGQ9Ik03NS45NDIyODQyLDI5LjU4MDQ1NjEgQzQzLjMwMjM5NDcsMjkuNTgwNDU2MSAxNC43OTY3ODMyLDE3LjY1MzQ2MzQgMCwwIEM1LjUxMDgzMjExLDE1Ljg0MDY4MjkgMTUuNzgxNTM4OSwyOS41NjY3NzMyIDI5LjM5MDQ5NDcsMzkuMjc4NDE3MSBDNDIuOTk5Nyw0OC45ODk4NTM3IDU5LjI3MzcsNTQuMjA2NzgwNSA3NS45NjA1Nzg5LDU0LjIwNjc4MDUgQzkyLjY0NzQ1NzksNTQuMjA2NzgwNSAxMDguOTIxNDU4LDQ4Ljk4OTg1MzcgMTIyLjUzMDY2MywzOS4yNzg0MTcxIEMxMzYuMTM5NDUzLDI5LjU2Njc3MzIgMTQ2LjQxMDI4NCwxNS44NDA2ODI5IDE1MS45MjExNTgsMCBDMTM3LjA4Nzg2OCwxNy42NTM0NjM0IDEwOC41ODI1ODksMjkuNTgwNDU2MSA3NS45NDIyODQyLDI5LjU4MDQ1NjEgTDc1Ljk0MjI4NDIsMjkuNTgwNDU2MSBaIiAvPgogICAgPHBhdGggdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMzczNjgsIDAuNzA0ODc4KSIgZD0iTTc1Ljk3ODQ1NzksMjQuNjI2NDA3MyBDMTA4LjYxODc2MywyNC42MjY0MDczIDEzNy4xMjQ0NTgsMzYuNTUzNDQxNSAxNTEuOTIxMTU4LDU0LjIwNjc4MDUgQzE0Ni40MTAyODQsMzguMzY2MjIyIDEzNi4xMzk0NTMsMjQuNjQwMTMxNyAxMjIuNTMwNjYzLDE0LjkyODQ4NzggQzEwOC45MjE0NTgsNS4yMTY4NDM5IDkyLjY0NzQ1NzksMCA3NS45NjA1Nzg5LDAgQzU5LjI3MzcsMCA0Mi45OTk3LDUuMjE2ODQzOSAyOS4zOTA0OTQ3LDE0LjkyODQ4NzggQzE1Ljc4MTUzODksMjQuNjQwMTMxNyA1LjUxMDgzMjExLDM4LjM2NjIyMiAwLDU0LjIwNjc4MDUgQzE0LjgzMzA4MTYsMzYuNTg5OTI5MyA0My4zMzg1Njg0LDI0LjYyNjQwNzMgNzUuOTc4NDU3OSwyNC42MjY0MDczIEw3NS45Nzg0NTc5LDI0LjYyNjQwNzMgWiIgLz4KICA8L2c+Cjwvc3ZnPgo=);
  8276. --jp-icon-jupyter: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iNTEiIHZpZXdCb3g9IjAgMCAzOSA1MSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTYzOCAtMjI4MSkiPgogICAgPGcgY2xhc3M9ImpwLWljb24td2FybjAiIGZpbGw9IiNGMzc3MjYiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5Ljc0IDIzMTEuOTgpIiBkPSJNIDE4LjI2NDYgNy4xMzQxMUMgMTAuNDE0NSA3LjEzNDExIDMuNTU4NzIgNC4yNTc2IDAgMEMgMS4zMjUzOSAzLjgyMDQgMy43OTU1NiA3LjEzMDgxIDcuMDY4NiA5LjQ3MzAzQyAxMC4zNDE3IDExLjgxNTIgMTQuMjU1NyAxMy4wNzM0IDE4LjI2OSAxMy4wNzM0QyAyMi4yODIzIDEzLjA3MzQgMjYuMTk2MyAxMS44MTUyIDI5LjQ2OTQgOS40NzMwM0MgMzIuNzQyNCA3LjEzMDgxIDM1LjIxMjYgMy44MjA0IDM2LjUzOCAwQyAzMi45NzA1IDQuMjU3NiAyNi4xMTQ4IDcuMTM0MTEgMTguMjY0NiA3LjEzNDExWiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM5LjczIDIyODUuNDgpIiBkPSJNIDE4LjI3MzMgNS45MzkzMUMgMjYuMTIzNSA1LjkzOTMxIDMyLjk3OTMgOC44MTU4MyAzNi41MzggMTMuMDczNEMgMzUuMjEyNiA5LjI1MzAzIDMyLjc0MjQgNS45NDI2MiAyOS40Njk0IDMuNjAwNEMgMjYuMTk2MyAxLjI1ODE4IDIyLjI4MjMgMCAxOC4yNjkgMEMgMTQuMjU1NyAwIDEwLjM0MTcgMS4yNTgxOCA3LjA2ODYgMy42MDA0QyAzLjc5NTU2IDUuOTQyNjIgMS4zMjUzOSA5LjI1MzAzIDAgMTMuMDczNEMgMy41Njc0NSA4LjgyNDYzIDEwLjQyMzIgNS45MzkzMSAxOC4yNzMzIDUuOTM5MzFaIi8+CiAgICA8L2c+CiAgICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjY5LjMgMjI4MS4zMSkiIGQ9Ik0gNS44OTM1MyAyLjg0NEMgNS45MTg4OSAzLjQzMTY1IDUuNzcwODUgNC4wMTM2NyA1LjQ2ODE1IDQuNTE2NDVDIDUuMTY1NDUgNS4wMTkyMiA0LjcyMTY4IDUuNDIwMTUgNC4xOTI5OSA1LjY2ODUxQyAzLjY2NDMgNS45MTY4OCAzLjA3NDQ0IDYuMDAxNTEgMi40OTgwNSA1LjkxMTcxQyAxLjkyMTY2IDUuODIxOSAxLjM4NDYzIDUuNTYxNyAwLjk1NDg5OCA1LjE2NDAxQyAwLjUyNTE3IDQuNzY2MzMgMC4yMjIwNTYgNC4yNDkwMyAwLjA4MzkwMzcgMy42Nzc1N0MgLTAuMDU0MjQ4MyAzLjEwNjExIC0wLjAyMTIzIDIuNTA2MTcgMC4xNzg3ODEgMS45NTM2NEMgMC4zNzg3OTMgMS40MDExIDAuNzM2ODA5IDAuOTIwODE3IDEuMjA3NTQgMC41NzM1MzhDIDEuNjc4MjYgMC4yMjYyNTkgMi4yNDA1NSAwLjAyNzU5MTkgMi44MjMyNiAwLjAwMjY3MjI5QyAzLjYwMzg5IC0wLjAzMDcxMTUgNC4zNjU3MyAwLjI0OTc4OSA0Ljk0MTQyIDAuNzgyNTUxQyA1LjUxNzExIDEuMzE1MzEgNS44NTk1NiAyLjA1Njc2IDUuODkzNTMgMi44NDRaIi8+CiAgICAgIDxwYXRoIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE2MzkuOCAyMzIzLjgxKSIgZD0iTSA3LjQyNzg5IDMuNTgzMzhDIDcuNDYwMDggNC4zMjQzIDcuMjczNTUgNS4wNTgxOSA2Ljg5MTkzIDUuNjkyMTNDIDYuNTEwMzEgNi4zMjYwNyA1Ljk1MDc1IDYuODMxNTYgNS4yODQxMSA3LjE0NDZDIDQuNjE3NDcgNy40NTc2MyAzLjg3MzcxIDcuNTY0MTQgMy4xNDcwMiA3LjQ1MDYzQyAyLjQyMDMyIDcuMzM3MTIgMS43NDMzNiA3LjAwODcgMS4yMDE4NCA2LjUwNjk1QyAwLjY2MDMyOCA2LjAwNTIgMC4yNzg2MSA1LjM1MjY4IDAuMTA1MDE3IDQuNjMyMDJDIC0wLjA2ODU3NTcgMy45MTEzNSAtMC4wMjYyMzYxIDMuMTU0OTQgMC4yMjY2NzUgMi40NTg1NkMgMC40Nzk1ODcgMS43NjIxNyAwLjkzMTY5NyAxLjE1NzEzIDEuNTI1NzYgMC43MjAwMzNDIDIuMTE5ODMgMC4yODI5MzUgMi44MjkxNCAwLjAzMzQzOTUgMy41NjM4OSAwLjAwMzEzMzQ0QyA0LjU0NjY3IC0wLjAzNzQwMzMgNS41MDUyOSAwLjMxNjcwNiA2LjIyOTYxIDAuOTg3ODM1QyA2Ljk1MzkzIDEuNjU4OTYgNy4zODQ4NCAyLjU5MjM1IDcuNDI3ODkgMy41ODMzOEwgNy40Mjc4OSAzLjU4MzM4WiIvPgogICAgICA8cGF0aCB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNjM4LjM2IDIyODYuMDYpIiBkPSJNIDIuMjc0NzEgNC4zOTYyOUMgMS44NDM2MyA0LjQxNTA4IDEuNDE2NzEgNC4zMDQ0NSAxLjA0Nzk5IDQuMDc4NDNDIDAuNjc5MjY4IDMuODUyNCAwLjM4NTMyOCAzLjUyMTE0IDAuMjAzMzcxIDMuMTI2NTZDIDAuMDIxNDEzNiAyLjczMTk4IC0wLjA0MDM3OTggMi4yOTE4MyAwLjAyNTgxMTYgMS44NjE4MUMgMC4wOTIwMDMxIDEuNDMxOCAwLjI4MzIwNCAxLjAzMTI2IDAuNTc1MjEzIDAuNzEwODgzQyAwLjg2NzIyMiAwLjM5MDUxIDEuMjQ2OTEgMC4xNjQ3MDggMS42NjYyMiAwLjA2MjA1OTJDIDIuMDg1NTMgLTAuMDQwNTg5NyAyLjUyNTYxIC0wLjAxNTQ3MTQgMi45MzA3NiAwLjEzNDIzNUMgMy4zMzU5MSAwLjI4Mzk0MSAzLjY4NzkyIDAuNTUxNTA1IDMuOTQyMjIgMC45MDMwNkMgNC4xOTY1MiAxLjI1NDYyIDQuMzQxNjkgMS42NzQzNiA0LjM1OTM1IDIuMTA5MTZDIDQuMzgyOTkgMi42OTEwNyA0LjE3Njc4IDMuMjU4NjkgMy43ODU5NyAzLjY4NzQ2QyAzLjM5NTE2IDQuMTE2MjQgMi44NTE2NiA0LjM3MTE2IDIuMjc0NzEgNC4zOTYyOUwgMi4yNzQ3MSA0LjM5NjI5WiIvPgogICAgPC9nPgogIDwvZz4+Cjwvc3ZnPgo=);
  8277. --jp-icon-jupyterlab-wordmark: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIHZpZXdCb3g9IjAgMCAxODYwLjggNDc1Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0RTRFNEUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4MC4xMzY0MDEsIDY0LjI3MTQ5MykiPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC4wMDAwMDAsIDU4Ljg3NTU2NikiPgogICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjA4NzYwMywgMC4xNDAyOTQpIj4KICAgICAgICA8cGF0aCBkPSJNLTQyNi45LDE2OS44YzAsNDguNy0zLjcsNjQuNy0xMy42LDc2LjRjLTEwLjgsMTAtMjUsMTUuNS0zOS43LDE1LjVsMy43LDI5IGMyMi44LDAuMyw0NC44LTcuOSw2MS45LTIzLjFjMTcuOC0xOC41LDI0LTQ0LjEsMjQtODMuM1YwSC00Mjd2MTcwLjFMLTQyNi45LDE2OS44TC00MjYuOSwxNjkuOHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTU1LjA0NTI5NiwgNTYuODM3MTA0KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuNTYyNDUzLCAxLjc5OTg0MikiPgogICAgICAgIDxwYXRoIGQ9Ik0tMzEyLDE0OGMwLDIxLDAsMzkuNSwxLjcsNTUuNGgtMzEuOGwtMi4xLTMzLjNoLTAuOGMtNi43LDExLjYtMTYuNCwyMS4zLTI4LDI3LjkgYy0xMS42LDYuNi0yNC44LDEwLTM4LjIsOS44Yy0zMS40LDAtNjktMTcuNy02OS04OVYwaDM2LjR2MTEyLjdjMCwzOC43LDExLjYsNjQuNyw0NC42LDY0LjdjMTAuMy0wLjIsMjAuNC0zLjUsMjguOS05LjQgYzguNS01LjksMTUuMS0xNC4zLDE4LjktMjMuOWMyLjItNi4xLDMuMy0xMi41LDMuMy0xOC45VjAuMmgzNi40VjE0OEgtMzEyTC0zMTIsMTQ4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzOTAuMDEzMzIyLCA1My40Nzk2MzgpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS43MDY0NTgsIDAuMjMxNDI1KSI+CiAgICAgICAgPHBhdGggZD0iTS00NzguNiw3MS40YzAtMjYtMC44LTQ3LTEuNy02Ni43aDMyLjdsMS43LDM0LjhoMC44YzcuMS0xMi41LDE3LjUtMjIuOCwzMC4xLTI5LjcgYzEyLjUtNywyNi43LTEwLjMsNDEtOS44YzQ4LjMsMCw4NC43LDQxLjcsODQuNywxMDMuM2MwLDczLjEtNDMuNywxMDkuMi05MSwxMDkuMmMtMTIuMSwwLjUtMjQuMi0yLjItMzUtNy44IGMtMTAuOC01LjYtMTkuOS0xMy45LTI2LjYtMjQuMmgtMC44VjI5MWgtMzZ2LTIyMEwtNDc4LjYsNzEuNEwtNDc4LjYsNzEuNHogTS00NDIuNiwxMjUuNmMwLjEsNS4xLDAuNiwxMC4xLDEuNywxNS4xIGMzLDEyLjMsOS45LDIzLjMsMTkuOCwzMS4xYzkuOSw3LjgsMjIuMSwxMi4xLDM0LjcsMTIuMWMzOC41LDAsNjAuNy0zMS45LDYwLjctNzguNWMwLTQwLjctMjEuMS03NS42LTU5LjUtNzUuNiBjLTEyLjksMC40LTI1LjMsNS4xLTM1LjMsMTMuNGMtOS45LDguMy0xNi45LDE5LjctMTkuNiwzMi40Yy0xLjUsNC45LTIuMywxMC0yLjUsMTUuMVYxMjUuNkwtNDQyLjYsMTI1LjZMLTQ0Mi42LDEyNS42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2MDYuNzQwNzI2LCA1Ni44MzcxMDQpIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMC43NTEyMjYsIDEuOTg5Mjk5KSI+CiAgICAgICAgPHBhdGggZD0iTS00NDAuOCwwbDQzLjcsMTIwLjFjNC41LDEzLjQsOS41LDI5LjQsMTIuOCw0MS43aDAuOGMzLjctMTIuMiw3LjktMjcuNywxMi44LTQyLjQgbDM5LjctMTE5LjJoMzguNUwtMzQ2LjksMTQ1Yy0yNiw2OS43LTQzLjcsMTA1LjQtNjguNiwxMjcuMmMtMTIuNSwxMS43LTI3LjksMjAtNDQuNiwyMy45bC05LjEtMzEuMSBjMTEuNy0zLjksMjIuNS0xMC4xLDMxLjgtMTguMWMxMy4yLTExLjEsMjMuNy0yNS4yLDMwLjYtNDEuMmMxLjUtMi44LDIuNS01LjcsMi45LTguOGMtMC4zLTMuMy0xLjItNi42LTIuNS05LjdMLTQ4MC4yLDAuMSBoMzkuN0wtNDQwLjgsMEwtNDQwLjgsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODIyLjc0ODEwNCwgMC4wMDAwMDApIj4KICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMS40NjQwNTAsIDAuMzc4OTE0KSI+CiAgICAgICAgPHBhdGggZD0iTS00MTMuNywwdjU4LjNoNTJ2MjguMmgtNTJWMTk2YzAsMjUsNywzOS41LDI3LjMsMzkuNWM3LjEsMC4xLDE0LjItMC43LDIxLjEtMi41IGwxLjcsMjcuN2MtMTAuMywzLjctMjEuMyw1LjQtMzIuMiw1Yy03LjMsMC40LTE0LjYtMC43LTIxLjMtMy40Yy02LjgtMi43LTEyLjktNi44LTE3LjktMTIuMWMtMTAuMy0xMC45LTE0LjEtMjktMTQuMS01Mi45IFY4Ni41aC0zMVY1OC4zaDMxVjkuNkwtNDEzLjcsMEwtNDEzLjcsMHoiLz4KICAgICAgPC9nPgogICAgPC9nPgogICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOTc0LjQzMzI4NiwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuOTkwMDM0LCAwLjYxMDMzOSkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDQ1LjgsMTEzYzAuOCw1MCwzMi4yLDcwLjYsNjguNiw3MC42YzE5LDAuNiwzNy45LTMsNTUuMy0xMC41bDYuMiwyNi40IGMtMjAuOSw4LjktNDMuNSwxMy4xLTY2LjIsMTIuNmMtNjEuNSwwLTk4LjMtNDEuMi05OC4zLTEwMi41Qy00ODAuMiw0OC4yLTQ0NC43LDAtMzg2LjUsMGM2NS4yLDAsODIuNyw1OC4zLDgyLjcsOTUuNyBjLTAuMSw1LjgtMC41LDExLjUtMS4yLDE3LjJoLTE0MC42SC00NDUuOEwtNDQ1LjgsMTEzeiBNLTMzOS4yLDg2LjZjMC40LTIzLjUtOS41LTYwLjEtNTAuNC02MC4xIGMtMzYuOCwwLTUyLjgsMzQuNC01NS43LDYwLjFILTMzOS4yTC0zMzkuMiw4Ni42TC0zMzkuMiw4Ni42eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMjAxLjk2MTA1OCwgNTMuNDc5NjM4KSI+CiAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEuMTc5NjQwLCAwLjcwNTA2OCkiPgogICAgICAgIDxwYXRoIGQ9Ik0tNDc4LjYsNjhjMC0yMy45LTAuNC00NC41LTEuNy02My40aDMxLjhsMS4yLDM5LjloMS43YzkuMS0yNy4zLDMxLTQ0LjUsNTUuMy00NC41IGMzLjUtMC4xLDcsMC40LDEwLjMsMS4ydjM0LjhjLTQuMS0wLjktOC4yLTEuMy0xMi40LTEuMmMtMjUuNiwwLTQzLjcsMTkuNy00OC43LDQ3LjRjLTEsNS43LTEuNiwxMS41LTEuNywxNy4ydjEwOC4zaC0zNlY2OCBMLTQ3OC42LDY4eiIvPgogICAgICA8L2c+CiAgICA8L2c+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCIgZmlsbD0iI0YzNzcyNiI+CiAgICA8cGF0aCBkPSJNMTM1Mi4zLDMyNi4yaDM3VjI4aC0zN1YzMjYuMnogTTE2MDQuOCwzMjYuMmMtMi41LTEzLjktMy40LTMxLjEtMy40LTQ4Ljd2LTc2IGMwLTQwLjctMTUuMS04My4xLTc3LjMtODMuMWMtMjUuNiwwLTUwLDcuMS02Ni44LDE4LjFsOC40LDI0LjRjMTQuMy05LjIsMzQtMTUuMSw1My0xNS4xYzQxLjYsMCw0Ni4yLDMwLjIsNDYuMiw0N3Y0LjIgYy03OC42LTAuNC0xMjIuMywyNi41LTEyMi4zLDc1LjZjMCwyOS40LDIxLDU4LjQsNjIuMiw1OC40YzI5LDAsNTAuOS0xNC4zLDYyLjItMzAuMmgxLjNsMi45LDI1LjZIMTYwNC44eiBNMTU2NS43LDI1Ny43IGMwLDMuOC0wLjgsOC0yLjEsMTEuOGMtNS45LDE3LjItMjIuNywzNC00OS4yLDM0Yy0xOC45LDAtMzQuOS0xMS4zLTM0LjktMzUuM2MwLTM5LjUsNDUuOC00Ni42LDg2LjItNDUuOFYyNTcuN3ogTTE2OTguNSwzMjYuMiBsMS43LTMzLjZoMS4zYzE1LjEsMjYuOSwzOC43LDM4LjIsNjguMSwzOC4yYzQ1LjQsMCw5MS4yLTM2LjEsOTEuMi0xMDguOGMwLjQtNjEuNy0zNS4zLTEwMy43LTg1LjctMTAzLjcgYy0zMi44LDAtNTYuMywxNC43LTY5LjMsMzcuNGgtMC44VjI4aC0zNi42djI0NS43YzAsMTguMS0wLjgsMzguNi0xLjcsNTIuNUgxNjk4LjV6IE0xNzA0LjgsMjA4LjJjMC01LjksMS4zLTEwLjksMi4xLTE1LjEgYzcuNi0yOC4xLDMxLjEtNDUuNCw1Ni4zLTQ1LjRjMzkuNSwwLDYwLjUsMzQuOSw2MC41LDc1LjZjMCw0Ni42LTIzLjEsNzguMS02MS44LDc4LjFjLTI2LjksMC00OC4zLTE3LjYtNTUuNS00My4zIGMtMC44LTQuMi0xLjctOC44LTEuNy0xMy40VjIwOC4yeiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8278. --jp-icon-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgZmlsbD0iIzYxNjE2MSIgZD0iTTE1IDlIOXY2aDZWOXptLTIgNGgtMnYtMmgydjJ6bTgtMlY5aC0yVjdjMC0xLjEtLjktMi0yLTJoLTJWM2gtMnYyaC0yVjNIOXYySDdjLTEuMSAwLTIgLjktMiAydjJIM3YyaDJ2MkgzdjJoMnYyYzAgMS4xLjkgMiAyIDJoMnYyaDJ2LTJoMnYyaDJ2LTJoMmMxLjEgMCAyLS45IDItMnYtMmgydi0yaC0ydi0yaDJ6bS00IDZIN1Y3aDEwdjEweiIvPgo8L3N2Zz4K);
  8279. --jp-icon-keyboard: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMjAgNUg0Yy0xLjEgMC0xLjk5LjktMS45OSAyTDIgMTdjMCAxLjEuOSAyIDIgMmgxNmMxLjEgMCAyLS45IDItMlY3YzAtMS4xLS45LTItMi0yem0tOSAzaDJ2MmgtMlY4em0wIDNoMnYyaC0ydi0yek04IDhoMnYySDhWOHptMCAzaDJ2Mkg4di0yem0tMSAySDV2LTJoMnYyem0wLTNINVY4aDJ2MnptOSA3SDh2LTJoOHYyem0wLTRoLTJ2LTJoMnYyem0wLTNoLTJWOGgydjJ6bTMgM2gtMnYtMmgydjJ6bTAtM2gtMlY4aDJ2MnoiLz4KPC9zdmc+Cg==);
  8280. --jp-icon-launcher: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkgMTlINVY1aDdWM0g1YTIgMiAwIDAwLTIgMnYxNGEyIDIgMCAwMDIgMmgxNGMxLjEgMCAyLS45IDItMnYtN2gtMnY3ek0xNCAzdjJoMy41OWwtOS44MyA5LjgzIDEuNDEgMS40MUwxOSA2LjQxVjEwaDJWM2gtN3oiLz4KPC9zdmc+Cg==);
  8281. --jp-icon-line-form: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGZpbGw9IndoaXRlIiBkPSJNNS44OCA0LjEyTDEzLjc2IDEybC03Ljg4IDcuODhMOCAyMmwxMC0xMEw4IDJ6Ii8+Cjwvc3ZnPgo=);
  8282. --jp-icon-link: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTMuOSAxMmMwLTEuNzEgMS4zOS0zLjEgMy4xLTMuMWg0VjdIN2MtMi43NiAwLTUgMi4yNC01IDVzMi4yNCA1IDUgNWg0di0xLjlIN2MtMS43MSAwLTMuMS0xLjM5LTMuMS0zLjF6TTggMTNoOHYtMkg4djJ6bTktNmgtNHYxLjloNGMxLjcxIDAgMy4xIDEuMzkgMy4xIDMuMXMtMS4zOSAzLjEtMy4xIDMuMWgtNFYxN2g0YzIuNzYgMCA1LTIuMjQgNS01cy0yLjI0LTUtNS01eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8283. --jp-icon-list: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiM2MTYxNjEiIGQ9Ik0xOSA1djE0SDVWNWgxNG0xLjEtMkgzLjljLS41IDAtLjkuNC0uOS45djE2LjJjMCAuNC40LjkuOS45aDE2LjJjLjQgMCAuOS0uNS45LS45VjMuOWMwLS41LS41LS45LS45LS45ek0xMSA3aDZ2MmgtNlY3em0wIDRoNnYyaC02di0yem0wIDRoNnYyaC02ek03IDdoMnYySDd6bTAgNGgydjJIN3ptMCA0aDJ2Mkg3eiIvPgo8L3N2Zz4=);
  8284. --jp-icon-listings-info: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgNTAuOTc4IDUwLjk3OCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTAuOTc4IDUwLjk3ODsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGc+DQoJCTxnPg0KCQkJPHBhdGggc3R5bGU9ImZpbGw6IzAxMDAwMjsiIGQ9Ik00My41Miw3LjQ1OEMzOC43MTEsMi42NDgsMzIuMzA3LDAsMjUuNDg5LDBDMTguNjcsMCwxMi4yNjYsMi42NDgsNy40NTgsNy40NTgNCgkJCQljLTkuOTQzLDkuOTQxLTkuOTQzLDI2LjExOSwwLDM2LjA2MmM0LjgwOSw0LjgwOSwxMS4yMTIsNy40NTYsMTguMDMxLDcuNDU4YzAsMCwwLjAwMSwwLDAuMDAyLDANCgkJCQljNi44MTYsMCwxMy4yMjEtMi42NDgsMTguMDI5LTcuNDU4YzQuODA5LTQuODA5LDcuNDU3LTExLjIxMiw3LjQ1Ny0xOC4wM0M1MC45NzcsMTguNjcsNDguMzI4LDEyLjI2Niw0My41Miw3LjQ1OHoNCgkJCQkgTTQyLjEwNiw0Mi4xMDVjLTQuNDMyLDQuNDMxLTEwLjMzMiw2Ljg3Mi0xNi42MTUsNi44NzJoLTAuMDAyYy02LjI4NS0wLjAwMS0xMi4xODctMi40NDEtMTYuNjE3LTYuODcyDQoJCQkJYy05LjE2Mi05LjE2My05LjE2Mi0yNC4wNzEsMC0zMy4yMzNDMTMuMzAzLDQuNDQsMTkuMjA0LDIsMjUuNDg5LDJjNi4yODQsMCwxMi4xODYsMi40NCwxNi42MTcsNi44NzINCgkJCQljNC40MzEsNC40MzEsNi44NzEsMTAuMzMyLDYuODcxLDE2LjYxN0M0OC45NzcsMzEuNzcyLDQ2LjUzNiwzNy42NzUsNDIuMTA2LDQyLjEwNXoiLz4NCgkJPC9nPg0KCQk8Zz4NCgkJCTxwYXRoIHN0eWxlPSJmaWxsOiMwMTAwMDI7IiBkPSJNMjMuNTc4LDMyLjIxOGMtMC4wMjMtMS43MzQsMC4xNDMtMy4wNTksMC40OTYtMy45NzJjMC4zNTMtMC45MTMsMS4xMS0xLjk5NywyLjI3Mi0zLjI1Mw0KCQkJCWMwLjQ2OC0wLjUzNiwwLjkyMy0xLjA2MiwxLjM2Ny0xLjU3NWMwLjYyNi0wLjc1MywxLjEwNC0xLjQ3OCwxLjQzNi0yLjE3NWMwLjMzMS0wLjcwNywwLjQ5NS0xLjU0MSwwLjQ5NS0yLjUNCgkJCQljMC0xLjA5Ni0wLjI2LTIuMDg4LTAuNzc5LTIuOTc5Yy0wLjU2NS0wLjg3OS0xLjUwMS0xLjMzNi0yLjgwNi0xLjM2OWMtMS44MDIsMC4wNTctMi45ODUsMC42NjctMy41NSwxLjgzMg0KCQkJCWMtMC4zMDEsMC41MzUtMC41MDMsMS4xNDEtMC42MDcsMS44MTRjLTAuMTM5LDAuNzA3LTAuMjA3LDEuNDMyLTAuMjA3LDIuMTc0aC0yLjkzN2MtMC4wOTEtMi4yMDgsMC40MDctNC4xMTQsMS40OTMtNS43MTkNCgkJCQljMS4wNjItMS42NCwyLjg1NS0yLjQ4MSw1LjM3OC0yLjUyN2MyLjE2LDAuMDIzLDMuODc0LDAuNjA4LDUuMTQxLDEuNzU4YzEuMjc4LDEuMTYsMS45MjksMi43NjQsMS45NSw0LjgxMQ0KCQkJCWMwLDEuMTQyLTAuMTM3LDIuMTExLTAuNDEsMi45MTFjLTAuMzA5LDAuODQ1LTAuNzMxLDEuNTkzLTEuMjY4LDIuMjQzYy0wLjQ5MiwwLjY1LTEuMDY4LDEuMzE4LTEuNzMsMi4wMDINCgkJCQljLTAuNjUsMC42OTctMS4zMTMsMS40NzktMS45ODcsMi4zNDZjLTAuMjM5LDAuMzc3LTAuNDI5LDAuNzc3LTAuNTY1LDEuMTk5Yy0wLjE2LDAuOTU5LTAuMjE3LDEuOTUxLTAuMTcxLDIuOTc5DQoJCQkJQzI2LjU4OSwzMi4yMTgsMjMuNTc4LDMyLjIxOCwyMy41NzgsMzIuMjE4eiBNMjMuNTc4LDM4LjIydi0zLjQ4NGgzLjA3NnYzLjQ4NEgyMy41Nzh6Ii8+DQoJCTwvZz4NCgk8L2c+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8L3N2Zz4NCg==);
  8285. --jp-icon-markdown: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjN0IxRkEyIiBkPSJNNSAxNC45aDEybC02LjEgNnptOS40LTYuOGMwLTEuMy0uMS0yLjktLjEtNC41LS40IDEuNC0uOSAyLjktMS4zIDQuM2wtMS4zIDQuM2gtMkw4LjUgNy45Yy0uNC0xLjMtLjctMi45LTEtNC4zLS4xIDEuNi0uMSAzLjItLjIgNC42TDcgMTIuNEg0LjhsLjctMTFoMy4zTDEwIDVjLjQgMS4yLjcgMi43IDEgMy45LjMtMS4yLjctMi42IDEtMy45bDEuMi0zLjdoMy4zbC42IDExaC0yLjRsLS4zLTQuMnoiLz4KPC9zdmc+Cg==);
  8286. --jp-icon-new-folder: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIwIDZoLThsLTItMkg0Yy0xLjExIDAtMS45OS44OS0xLjk5IDJMMiAxOGMwIDEuMTEuODkgMiAyIDJoMTZjMS4xMSAwIDItLjg5IDItMlY4YzAtMS4xMS0uODktMi0yLTJ6bS0xIDhoLTN2M2gtMnYtM2gtM3YtMmgzVjloMnYzaDN2MnoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8287. --jp-icon-not-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI1IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDMgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMTkgMTcuMTg0NCAyLjk2OTY4IDE0LjMwMzIgMS44NjA5NCAxMS40NDA5WiIvPgogICAgPHBhdGggY2xhc3M9ImpwLWljb24yIiBzdHJva2U9IiMzMzMzMzMiIHN0cm9rZS13aWR0aD0iMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOS4zMTU5MiA5LjMyMDMxKSIgZD0iTTcuMzY4NDIgMEwwIDcuMzY0NzkiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDkuMzE1OTIgMTYuNjgzNikgc2NhbGUoMSAtMSkiIGQ9Ik03LjM2ODQyIDBMMCA3LjM2NDc5Ii8+Cjwvc3ZnPgo=);
  8288. --jp-icon-notebook: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi13YXJuMCBqcC1pY29uLXNlbGVjdGFibGUiIGZpbGw9IiNFRjZDMDAiPgogICAgPHBhdGggZD0iTTE4LjcgMy4zdjE1LjRIMy4zVjMuM2gxNS40bTEuNS0xLjVIMS44djE4LjNoMTguM2wuMS0xOC4zeiIvPgogICAgPHBhdGggZD0iTTE2LjUgMTYuNWwtNS40LTQuMy01LjYgNC4zdi0xMWgxMXoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8289. --jp-icon-numbering: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyOCAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTQgMTlINlYxOS41SDVWMjAuNUg2VjIxSDRWMjJIN1YxOEg0VjE5Wk01IDEwSDZWNkg0VjdINVYxMFpNNCAxM0g1LjhMNCAxNS4xVjE2SDdWMTVINS4yTDcgMTIuOVYxMkg0VjEzWk05IDdWOUgyM1Y3SDlaTTkgMjFIMjNWMTlIOVYyMVpNOSAxNUgyM1YxM0g5VjE1WiIvPgoJPC9nPgo8L3N2Zz4K);
  8290. --jp-icon-offline-bolt: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyIDIuMDJjLTUuNTEgMC05Ljk4IDQuNDctOS45OCA5Ljk4czQuNDcgOS45OCA5Ljk4IDkuOTggOS45OC00LjQ3IDkuOTgtOS45OFMxNy41MSAyLjAyIDEyIDIuMDJ6TTExLjQ4IDIwdi02LjI2SDhMMTMgNHY2LjI2aDMuMzVMMTEuNDggMjB6Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8291. --jp-icon-palette: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTE4IDEzVjIwSDRWNkg5LjAyQzkuMDcgNS4yOSA5LjI0IDQuNjIgOS41IDRINEMyLjkgNCAyIDQuOSAyIDZWMjBDMiAyMS4xIDIuOSAyMiA0IDIySDE4QzE5LjEgMjIgMjAgMjEuMSAyMCAyMFYxNUwxOCAxM1pNMTkuMyA4Ljg5QzE5Ljc0IDguMTkgMjAgNy4zOCAyMCA2LjVDMjAgNC4wMSAxNy45OSAyIDE1LjUgMkMxMy4wMSAyIDExIDQuMDEgMTEgNi41QzExIDguOTkgMTMuMDEgMTEgMTUuNDkgMTFDMTYuMzcgMTEgMTcuMTkgMTAuNzQgMTcuODggMTAuM0wyMSAxMy40MkwyMi40MiAxMkwxOS4zIDguODlaTTE1LjUgOUMxNC4xMiA5IDEzIDcuODggMTMgNi41QzEzIDUuMTIgMTQuMTIgNCAxNS41IDRDMTYuODggNCAxOCA1LjEyIDE4IDYuNUMxOCA3Ljg4IDE2Ljg4IDkgMTUuNSA5WiIvPgogICAgPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00IDZIOS4wMTg5NEM5LjAwNjM5IDYuMTY1MDIgOSA2LjMzMTc2IDkgNi41QzkgOC44MTU3NyAxMC4yMTEgMTAuODQ4NyAxMi4wMzQzIDEySDlWMTRIMTZWMTIuOTgxMUMxNi41NzAzIDEyLjkzNzcgMTcuMTIgMTIuODIwNyAxNy42Mzk2IDEyLjYzOTZMMTggMTNWMjBINFY2Wk04IDhINlYxMEg4VjhaTTYgMTJIOFYxNEg2VjEyWk04IDE2SDZWMThIOFYxNlpNOSAxNkgxNlYxOEg5VjE2WiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8292. --jp-icon-paste: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE5IDJoLTQuMThDMTQuNC44NCAxMy4zIDAgMTIgMGMtMS4zIDAtMi40Ljg0LTIuODIgMkg1Yy0xLjEgMC0yIC45LTIgMnYxNmMwIDEuMS45IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjRjMC0xLjEtLjktMi0yLTJ6bS03IDBjLjU1IDAgMSAuNDUgMSAxcy0uNDUgMS0xIDEtMS0uNDUtMS0xIC40NS0xIDEtMXptNyAxOEg1VjRoMnYzaDEwVjRoMnYxNnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);
  8293. --jp-icon-pdf: url(data:image/svg+xml;base64,PHN2ZwogICB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMiAyMiIgd2lkdGg9IjE2Ij4KICAgIDxwYXRoIHRyYW5zZm9ybT0icm90YXRlKDQ1KSIgY2xhc3M9ImpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iI0ZGMkEyQSIKICAgICAgIGQ9Im0gMjIuMzQ0MzY5LC0zLjAxNjM2NDIgaCA1LjYzODYwNCB2IDEuNTc5MjQzMyBoIC0zLjU0OTIyNyB2IDEuNTA4NjkyOTkgaCAzLjMzNzU3NiBWIDEuNjUwODE1NCBoIC0zLjMzNzU3NiB2IDMuNDM1MjYxMyBoIC0yLjA4OTM3NyB6IG0gLTcuMTM2NDQ0LDEuNTc5MjQzMyB2IDQuOTQzOTU0MyBoIDAuNzQ4OTIgcSAxLjI4MDc2MSwwIDEuOTUzNzAzLC0wLjYzNDk1MzUgMC42NzgzNjksLTAuNjM0OTUzNSAwLjY3ODM2OSwtMS44NDUxNjQxIDAsLTEuMjA0NzgzNTUgLTAuNjcyOTQyLC0xLjgzNDMxMDExIC0wLjY3Mjk0MiwtMC42Mjk1MjY1OSAtMS45NTkxMywtMC42Mjk1MjY1OSB6IG0gLTIuMDg5Mzc3LC0xLjU3OTI0MzMgaCAyLjIwMzM0MyBxIDEuODQ1MTY0LDAgMi43NDYwMzksMC4yNjU5MjA3IDAuOTA2MzAxLDAuMjYwNDkzNyAxLjU1MjEwOCwwLjg5MDAyMDMgMC41Njk4MywwLjU0ODEyMjMgMC44NDY2MDUsMS4yNjQ0ODAwNiAwLjI3Njc3NCwwLjcxNjM1NzgxIDAuMjc2Nzc0LDEuNjIyNjU4OTQgMCwwLjkxNzE1NTEgLTAuMjc2Nzc0LDEuNjM4OTM5OSAtMC4yNzY3NzUsMC43MTYzNTc4IC0wLjg0NjYwNSwxLjI2NDQ4IC0wLjY1MTIzNCwwLjYyOTUyNjYgLTEuNTYyOTYyLDAuODk1NDQ3MyAtMC45MTE3MjgsMC4yNjA0OTM3IC0yLjczNTE4NSwwLjI2MDQ5MzcgaCAtMi4yMDMzNDMgeiBtIC04LjE0NTg1NjUsMCBoIDMuNDY3ODIzIHEgMS41NDY2ODE2LDAgMi4zNzE1Nzg1LDAuNjg5MjIzIDAuODMwMzI0LDAuNjgzNzk2MSAwLjgzMDMyNCwxLjk1MzcwMzE0IDAsMS4yNzUzMzM5NyAtMC44MzAzMjQsMS45NjQ1NTcwNiBRIDkuOTg3MTk2MSwyLjI3NDkxNSA4LjQ0MDUxNDUsMi4yNzQ5MTUgSCA3LjA2MjA2ODQgViA1LjA4NjA3NjcgSCA0Ljk3MjY5MTUgWiBtIDIuMDg5Mzc2OSwxLjUxNDExOTkgdiAyLjI2MzAzOTQzIGggMS4xNTU5NDEgcSAwLjYwNzgxODgsMCAwLjkzODg2MjksLTAuMjkzMDU1NDcgMC4zMzEwNDQxLC0wLjI5ODQ4MjQxIDAuMzMxMDQ0MSwtMC44NDExNzc3MiAwLC0wLjU0MjY5NTMxIC0wLjMzMTA0NDEsLTAuODM1NzUwNzQgLTAuMzMxMDQ0MSwtMC4yOTMwNTU1IC0wLjkzODg2MjksLTAuMjkzMDU1NSB6IgovPgo8L3N2Zz4K);
  8294. --jp-icon-python: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1icmFuZDAganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMEQ0N0ExIj4KICAgIDxwYXRoIGQ9Ik0xMS4xIDYuOVY1LjhINi45YzAtLjUgMC0xLjMuMi0xLjYuNC0uNy44LTEuMSAxLjctMS40IDEuNy0uMyAyLjUtLjMgMy45LS4xIDEgLjEgMS45LjkgMS45IDEuOXY0LjJjMCAuNS0uOSAxLjYtMiAxLjZIOC44Yy0xLjUgMC0yLjQgMS40LTIuNCAyLjh2Mi4ySDQuN0MzLjUgMTUuMSAzIDE0IDMgMTMuMVY5Yy0uMS0xIC42LTIgMS44LTIgMS41LS4xIDYuMy0uMSA2LjMtLjF6Ii8+CiAgICA8cGF0aCBkPSJNMTAuOSAxNS4xdjEuMWg0LjJjMCAuNSAwIDEuMy0uMiAxLjYtLjQuNy0uOCAxLjEtMS43IDEuNC0xLjcuMy0yLjUuMy0zLjkuMS0xLS4xLTEuOS0uOS0xLjktMS45di00LjJjMC0uNS45LTEuNiAyLTEuNmgzLjhjMS41IDAgMi40LTEuNCAyLjQtMi44VjYuNmgxLjdDMTguNSA2LjkgMTkgOCAxOSA4LjlWMTNjMCAxLS43IDIuMS0xLjkgMi4xaC02LjJ6Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8295. --jp-icon-r-kernel: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjE5NkYzIiBkPSJNNC40IDIuNWMxLjItLjEgMi45LS4zIDQuOS0uMyAyLjUgMCA0LjEuNCA1LjIgMS4zIDEgLjcgMS41IDEuOSAxLjUgMy41IDAgMi0xLjQgMy41LTIuOSA0LjEgMS4yLjQgMS43IDEuNiAyLjIgMyAuNiAxLjkgMSAzLjkgMS4zIDQuNmgtMy44Yy0uMy0uNC0uOC0xLjctMS4yLTMuN3MtMS4yLTIuNi0yLjYtMi42aC0uOXY2LjRINC40VjIuNXptMy43IDYuOWgxLjRjMS45IDAgMi45LS45IDIuOS0yLjNzLTEtMi4zLTIuOC0yLjNjLS43IDAtMS4zIDAtMS42LjJ2NC41aC4xdi0uMXoiLz4KPC9zdmc+Cg==);
  8296. --jp-icon-react: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMTUwIDE1MCA1NDEuOSAyOTUuMyI+CiAgPGcgY2xhc3M9ImpwLWljb24tYnJhbmQyIGpwLWljb24tc2VsZWN0YWJsZSIgZmlsbD0iIzYxREFGQiI+CiAgICA8cGF0aCBkPSJNNjY2LjMgMjk2LjVjMC0zMi41LTQwLjctNjMuMy0xMDMuMS04Mi40IDE0LjQtNjMuNiA4LTExNC4yLTIwLjItMTMwLjQtNi41LTMuOC0xNC4xLTUuNi0yMi40LTUuNnYyMi4zYzQuNiAwIDguMy45IDExLjQgMi42IDEzLjYgNy44IDE5LjUgMzcuNSAxNC45IDc1LjctMS4xIDkuNC0yLjkgMTkuMy01LjEgMjkuNC0xOS42LTQuOC00MS04LjUtNjMuNS0xMC45LTEzLjUtMTguNS0yNy41LTM1LjMtNDEuNi01MCAzMi42LTMwLjMgNjMuMi00Ni45IDg0LTQ2LjlWNzhjLTI3LjUgMC02My41IDE5LjYtOTkuOSA1My42LTM2LjQtMzMuOC03Mi40LTUzLjItOTkuOS01My4ydjIyLjNjMjAuNyAwIDUxLjQgMTYuNSA4NCA0Ni42LTE0IDE0LjctMjggMzEuNC00MS4zIDQ5LjktMjIuNiAyLjQtNDQgNi4xLTYzLjYgMTEtMi4zLTEwLTQtMTkuNy01LjItMjktNC43LTM4LjIgMS4xLTY3LjkgMTQuNi03NS44IDMtMS44IDYuOS0yLjYgMTEuNS0yLjZWNzguNWMtOC40IDAtMTYgMS44LTIyLjYgNS42LTI4LjEgMTYuMi0zNC40IDY2LjctMTkuOSAxMzAuMS02Mi4yIDE5LjItMTAyLjcgNDkuOS0xMDIuNyA4Mi4zIDAgMzIuNSA0MC43IDYzLjMgMTAzLjEgODIuNC0xNC40IDYzLjYtOCAxMTQuMiAyMC4yIDEzMC40IDYuNSAzLjggMTQuMSA1LjYgMjIuNSA1LjYgMjcuNSAwIDYzLjUtMTkuNiA5OS45LTUzLjYgMzYuNCAzMy44IDcyLjQgNTMuMiA5OS45IDUzLjIgOC40IDAgMTYtMS44IDIyLjYtNS42IDI4LjEtMTYuMiAzNC40LTY2LjcgMTkuOS0xMzAuMSA2Mi0xOS4xIDEwMi41LTQ5LjkgMTAyLjUtODIuM3ptLTEzMC4yLTY2LjdjLTMuNyAxMi45LTguMyAyNi4yLTEzLjUgMzkuNS00LjEtOC04LjQtMTYtMTMuMS0yNC00LjYtOC05LjUtMTUuOC0xNC40LTIzLjQgMTQuMiAyLjEgMjcuOSA0LjcgNDEgNy45em0tNDUuOCAxMDYuNWMtNy44IDEzLjUtMTUuOCAyNi4zLTI0LjEgMzguMi0xNC45IDEuMy0zMCAyLTQ1LjIgMi0xNS4xIDAtMzAuMi0uNy00NS0xLjktOC4zLTExLjktMTYuNC0yNC42LTI0LjItMzgtNy42LTEzLjEtMTQuNS0yNi40LTIwLjgtMzkuOCA2LjItMTMuNCAxMy4yLTI2LjggMjAuNy0zOS45IDcuOC0xMy41IDE1LjgtMjYuMyAyNC4xLTM4LjIgMTQuOS0xLjMgMzAtMiA0NS4yLTIgMTUuMSAwIDMwLjIuNyA0NSAxLjkgOC4zIDExLjkgMTYuNCAyNC42IDI0LjIgMzggNy42IDEzLjEgMTQuNSAyNi40IDIwLjggMzkuOC02LjMgMTMuNC0xMy4yIDI2LjgtMjAuNyAzOS45em0zMi4zLTEzYzUuNCAxMy40IDEwIDI2LjggMTMuOCAzOS44LTEzLjEgMy4yLTI2LjkgNS45LTQxLjIgOCA0LjktNy43IDkuOC0xNS42IDE0LjQtMjMuNyA0LjYtOCA4LjktMTYuMSAxMy0yNC4xek00MjEuMiA0MzBjLTkuMy05LjYtMTguNi0yMC4zLTI3LjgtMzIgOSAuNCAxOC4yLjcgMjcuNS43IDkuNCAwIDE4LjctLjIgMjcuOC0uNy05IDExLjctMTguMyAyMi40LTI3LjUgMzJ6bS03NC40LTU4LjljLTE0LjItMi4xLTI3LjktNC43LTQxLTcuOSAzLjctMTIuOSA4LjMtMjYuMiAxMy41LTM5LjUgNC4xIDggOC40IDE2IDEzLjEgMjQgNC43IDggOS41IDE1LjggMTQuNCAyMy40ek00MjAuNyAxNjNjOS4zIDkuNiAxOC42IDIwLjMgMjcuOCAzMi05LS40LTE4LjItLjctMjcuNS0uNy05LjQgMC0xOC43LjItMjcuOC43IDktMTEuNyAxOC4zLTIyLjQgMjcuNS0zMnptLTc0IDU4LjljLTQuOSA3LjctOS44IDE1LjYtMTQuNCAyMy43LTQuNiA4LTguOSAxNi0xMyAyNC01LjQtMTMuNC0xMC0yNi44LTEzLjgtMzkuOCAxMy4xLTMuMSAyNi45LTUuOCA0MS4yLTcuOXptLTkwLjUgMTI1LjJjLTM1LjQtMTUuMS01OC4zLTM0LjktNTguMy01MC42IDAtMTUuNyAyMi45LTM1LjYgNTguMy01MC42IDguNi0zLjcgMTgtNyAyNy43LTEwLjEgNS43IDE5LjYgMTMuMiA0MCAyMi41IDYwLjktOS4yIDIwLjgtMTYuNiA0MS4xLTIyLjIgNjAuNi05LjktMy4xLTE5LjMtNi41LTI4LTEwLjJ6TTMxMCA0OTBjLTEzLjYtNy44LTE5LjUtMzcuNS0xNC45LTc1LjcgMS4xLTkuNCAyLjktMTkuMyA1LjEtMjkuNCAxOS42IDQuOCA0MSA4LjUgNjMuNSAxMC45IDEzLjUgMTguNSAyNy41IDM1LjMgNDEuNiA1MC0zMi42IDMwLjMtNjMuMiA0Ni45LTg0IDQ2LjktNC41LS4xLTguMy0xLTExLjMtMi43em0yMzcuMi03Ni4yYzQuNyAzOC4yLTEuMSA2Ny45LTE0LjYgNzUuOC0zIDEuOC02LjkgMi42LTExLjUgMi42LTIwLjcgMC01MS40LTE2LjUtODQtNDYuNiAxNC0xNC43IDI4LTMxLjQgNDEuMy00OS45IDIyLjYtMi40IDQ0LTYuMSA2My42LTExIDIuMyAxMC4xIDQuMSAxOS44IDUuMiAyOS4xem0zOC41LTY2LjdjLTguNiAzLjctMTggNy0yNy43IDEwLjEtNS43LTE5LjYtMTMuMi00MC0yMi41LTYwLjkgOS4yLTIwLjggMTYuNi00MS4xIDIyLjItNjAuNiA5LjkgMy4xIDE5LjMgNi41IDI4LjEgMTAuMiAzNS40IDE1LjEgNTguMyAzNC45IDU4LjMgNTAuNi0uMSAxNS43LTIzIDM1LjYtNTguNCA1MC42ek0zMjAuOCA3OC40eiIvPgogICAgPGNpcmNsZSBjeD0iNDIwLjkiIGN5PSIyOTYuNSIgcj0iNDUuNyIvPgogIDwvZz4KPC9zdmc+Cg==);
  8297. --jp-icon-redo: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgd2lkdGg9IjE2Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgICA8cGF0aCBkPSJNMCAwaDI0djI0SDB6IiBmaWxsPSJub25lIi8+PHBhdGggZD0iTTE4LjQgMTAuNkMxNi41NSA4Ljk5IDE0LjE1IDggMTEuNSA4Yy00LjY1IDAtOC41OCAzLjAzLTkuOTYgNy4yMkwzLjkgMTZjMS4wNS0zLjE5IDQuMDUtNS41IDcuNi01LjUgMS45NSAwIDMuNzMuNzIgNS4xMiAxLjg4TDEzIDE2aDlWN2wtMy42IDMuNnoiLz4KICA8L2c+Cjwvc3ZnPgo=);
  8298. --jp-icon-refresh: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDE4IDE4Ij4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTkgMTMuNWMtMi40OSAwLTQuNS0yLjAxLTQuNS00LjVTNi41MSA0LjUgOSA0LjVjMS4yNCAwIDIuMzYuNTIgMy4xNyAxLjMzTDEwIDhoNVYzbC0xLjc2IDEuNzZDMTIuMTUgMy42OCAxMC42NiAzIDkgMyA1LjY5IDMgMy4wMSA1LjY5IDMuMDEgOVM1LjY5IDE1IDkgMTVjMi45NyAwIDUuNDMtMi4xNiA1LjktNWgtMS41MmMtLjQ2IDItMi4yNCAzLjUtNC4zOCAzLjV6Ii8+CiAgICA8L2c+Cjwvc3ZnPgo=);
  8299. --jp-icon-regex: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIwIDIwIj4KICA8ZyBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiM0MTQxNDEiPgogICAgPHJlY3QgeD0iMiIgeT0iMiIgd2lkdGg9IjE2IiBoZWlnaHQ9IjE2Ii8+CiAgPC9nPgoKICA8ZyBjbGFzcz0ianAtaWNvbi1hY2NlbnQyIiBmaWxsPSIjRkZGIj4KICAgIDxjaXJjbGUgY2xhc3M9InN0MiIgY3g9IjUuNSIgY3k9IjE0LjUiIHI9IjEuNSIvPgogICAgPHJlY3QgeD0iMTIiIHk9IjQiIGNsYXNzPSJzdDIiIHdpZHRoPSIxIiBoZWlnaHQ9IjgiLz4KICAgIDxyZWN0IHg9IjguNSIgeT0iNy41IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjg2NiAtMC41IDAuNSAwLjg2NiAtMi4zMjU1IDcuMzIxOSkiIGNsYXNzPSJzdDIiIHdpZHRoPSI4IiBoZWlnaHQ9IjEiLz4KICAgIDxyZWN0IHg9IjEyIiB5PSI0IiB0cmFuc2Zvcm09Im1hdHJpeCgwLjUgLTAuODY2IDAuODY2IDAuNSAtMC42Nzc5IDE0LjgyNTIpIiBjbGFzcz0ic3QyIiB3aWR0aD0iMSIgaGVpZ2h0PSI4Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8300. --jp-icon-run: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTggNXYxNGwxMS03eiIvPgogICAgPC9nPgo8L3N2Zz4K);
  8301. --jp-icon-running: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDUxMiA1MTIiPgogIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICA8cGF0aCBkPSJNMjU2IDhDMTE5IDggOCAxMTkgOCAyNTZzMTExIDI0OCAyNDggMjQ4IDI0OC0xMTEgMjQ4LTI0OFMzOTMgOCAyNTYgOHptOTYgMzI4YzAgOC44LTcuMiAxNi0xNiAxNkgxNzZjLTguOCAwLTE2LTcuMi0xNi0xNlYxNzZjMC04LjggNy4yLTE2IDE2LTE2aDE2MGM4LjggMCAxNiA3LjIgMTYgMTZ2MTYweiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8302. --jp-icon-save: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTE3IDNINWMtMS4xMSAwLTIgLjktMiAydjE0YzAgMS4xLjg5IDIgMiAyaDE0YzEuMSAwIDItLjkgMi0yVjdsLTQtNHptLTUgMTZjLTEuNjYgMC0zLTEuMzQtMy0zczEuMzQtMyAzLTMgMyAxLjM0IDMgMy0xLjM0IDMtMyAzem0zLTEwSDVWNWgxMHY0eiIvPgogICAgPC9nPgo8L3N2Zz4K);
  8303. --jp-icon-search: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8304. --jp-icon-settings: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTkuNDMgMTIuOThjLjA0LS4zMi4wNy0uNjQuMDctLjk4cy0uMDMtLjY2LS4wNy0uOThsMi4xMS0xLjY1Yy4xOS0uMTUuMjQtLjQyLjEyLS42NGwtMi0zLjQ2Yy0uMTItLjIyLS4zOS0uMy0uNjEtLjIybC0yLjQ5IDFjLS41Mi0uNC0xLjA4LS43My0xLjY5LS45OGwtLjM4LTIuNjVBLjQ4OC40ODggMCAwMDE0IDJoLTRjLS4yNSAwLS40Ni4xOC0uNDkuNDJsLS4zOCAyLjY1Yy0uNjEuMjUtMS4xNy41OS0xLjY5Ljk4bC0yLjQ5LTFjLS4yMy0uMDktLjQ5IDAtLjYxLjIybC0yIDMuNDZjLS4xMy4yMi0uMDcuNDkuMTIuNjRsMi4xMSAxLjY1Yy0uMDQuMzItLjA3LjY1LS4wNy45OHMuMDMuNjYuMDcuOThsLTIuMTEgMS42NWMtLjE5LjE1LS4yNC40Mi0uMTIuNjRsMiAzLjQ2Yy4xMi4yMi4zOS4zLjYxLjIybDIuNDktMWMuNTIuNCAxLjA4LjczIDEuNjkuOThsLjM4IDIuNjVjLjAzLjI0LjI0LjQyLjQ5LjQyaDRjLjI1IDAgLjQ2LS4xOC40OS0uNDJsLjM4LTIuNjVjLjYxLS4yNSAxLjE3LS41OSAxLjY5LS45OGwyLjQ5IDFjLjIzLjA5LjQ5IDAgLjYxLS4yMmwyLTMuNDZjLjEyLS4yMi4wNy0uNDktLjEyLS42NGwtMi4xMS0xLjY1ek0xMiAxNS41Yy0xLjkzIDAtMy41LTEuNTctMy41LTMuNXMxLjU3LTMuNSAzLjUtMy41IDMuNSAxLjU3IDMuNSAzLjUtMS41NyAzLjUtMy41IDMuNXoiLz4KPC9zdmc+Cg==);
  8305. --jp-icon-spreadsheet: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8cGF0aCBjbGFzcz0ianAtaWNvbi1jb250cmFzdDEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNENBRjUwIiBkPSJNMi4yIDIuMnYxNy42aDE3LjZWMi4ySDIuMnptMTUuNCA3LjdoLTUuNVY0LjRoNS41djUuNXpNOS45IDQuNHY1LjVINC40VjQuNGg1LjV6bS01LjUgNy43aDUuNXY1LjVINC40di01LjV6bTcuNyA1LjV2LTUuNWg1LjV2NS41aC01LjV6Ii8+Cjwvc3ZnPgo=);
  8306. --jp-icon-stop: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik02IDZoMTJ2MTJINnoiLz4KICAgIDwvZz4KPC9zdmc+Cg==);
  8307. --jp-icon-tab: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTIxIDNIM2MtMS4xIDAtMiAuOS0yIDJ2MTRjMCAxLjEuOSAyIDIgMmgxOGMxLjEgMCAyLS45IDItMlY1YzAtMS4xLS45LTItMi0yem0wIDE2SDNWNWgxMHY0aDh2MTB6Ii8+CiAgPC9nPgo8L3N2Zz4K);
  8308. --jp-icon-table-rows: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMSw4SDNWNGgxOFY4eiBNMjEsMTBIM3Y0aDE4VjEweiBNMjEsMTZIM3Y0aDE4VjE2eiIvPgogICAgPC9nPgo8L3N2Zz4=);
  8309. --jp-icon-tag: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCA0MyAyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KCTxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CgkJPHBhdGggZD0iTTI4LjgzMzIgMTIuMzM0TDMyLjk5OTggMTYuNTAwN0wzNy4xNjY1IDEyLjMzNEgyOC44MzMyWiIvPgoJCTxwYXRoIGQ9Ik0xNi4yMDk1IDIxLjYxMDRDMTUuNjg3MyAyMi4xMjk5IDE0Ljg0NDMgMjIuMTI5OSAxNC4zMjQ4IDIxLjYxMDRMNi45ODI5IDE0LjcyNDVDNi41NzI0IDE0LjMzOTQgNi4wODMxMyAxMy42MDk4IDYuMDQ3ODYgMTMuMDQ4MkM1Ljk1MzQ3IDExLjUyODggNi4wMjAwMiA4LjYxOTQ0IDYuMDY2MjEgNy4wNzY5NUM2LjA4MjgxIDYuNTE0NzcgNi41NTU0OCA2LjA0MzQ3IDcuMTE4MDQgNi4wMzA1NUM5LjA4ODYzIDUuOTg0NzMgMTMuMjYzOCA1LjkzNTc5IDEzLjY1MTggNi4zMjQyNUwyMS43MzY5IDEzLjYzOUMyMi4yNTYgMTQuMTU4NSAyMS43ODUxIDE1LjQ3MjQgMjEuMjYyIDE1Ljk5NDZMMTYuMjA5NSAyMS42MTA0Wk05Ljc3NTg1IDguMjY1QzkuMzM1NTEgNy44MjU2NiA4LjYyMzUxIDcuODI1NjYgOC4xODI4IDguMjY1QzcuNzQzNDYgOC43MDU3MSA3Ljc0MzQ2IDkuNDE3MzMgOC4xODI4IDkuODU2NjdDOC42MjM4MiAxMC4yOTY0IDkuMzM1ODIgMTAuMjk2NCA5Ljc3NTg1IDkuODU2NjdDMTAuMjE1NiA5LjQxNzMzIDEwLjIxNTYgOC43MDUzMyA5Ljc3NTg1IDguMjY1WiIvPgoJPC9nPgo8L3N2Zz4K);
  8310. --jp-icon-terminal: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiA+CiAgICA8cmVjdCBjbGFzcz0ianAtaWNvbjIganAtaWNvbi1zZWxlY3RhYmxlIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMikiIGZpbGw9IiMzMzMzMzMiLz4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uLWFjY2VudDIganAtaWNvbi1zZWxlY3RhYmxlLWludmVyc2UiIGQ9Ik01LjA1NjY0IDguNzYxNzJDNS4wNTY2NCA4LjU5NzY2IDUuMDMxMjUgOC40NTMxMiA0Ljk4MDQ3IDguMzI4MTJDNC45MzM1OSA4LjE5OTIyIDQuODU1NDcgOC4wODIwMyA0Ljc0NjA5IDcuOTc2NTZDNC42NDA2MiA3Ljg3MTA5IDQuNSA3Ljc3NTM5IDQuMzI0MjIgNy42ODk0NUM0LjE1MjM0IDcuNTk5NjEgMy45NDMzNiA3LjUxMTcyIDMuNjk3MjcgNy40MjU3OEMzLjMwMjczIDcuMjg1MTYgMi45NDMzNiA3LjEzNjcyIDIuNjE5MTQgNi45ODA0N0MyLjI5NDkyIDYuODI0MjIgMi4wMTc1OCA2LjY0MjU4IDEuNzg3MTEgNi40MzU1NUMxLjU2MDU1IDYuMjI4NTIgMS4zODQ3NyA1Ljk4ODI4IDEuMjU5NzcgNS43MTQ4NEMxLjEzNDc3IDUuNDM3NSAxLjA3MjI3IDUuMTA5MzggMS4wNzIyNyA0LjczMDQ3QzEuMDcyMjcgNC4zOTg0NCAxLjEyODkxIDQuMDk1NyAxLjI0MjE5IDMuODIyMjdDMS4zNTU0NyAzLjU0NDkyIDEuNTE1NjIgMy4zMDQ2OSAxLjcyMjY2IDMuMTAxNTZDMS45Mjk2OSAyLjg5ODQ0IDIuMTc5NjkgMi43MzQzNyAyLjQ3MjY2IDIuNjA5MzhDMi43NjU2MiAyLjQ4NDM4IDMuMDkxOCAyLjQwNDMgMy40NTExNyAyLjM2OTE0VjEuMTA5MzhINC4zODg2N1YyLjM4MDg2QzQuNzQwMjMgMi40Mjc3MyA1LjA1NjY0IDIuNTIzNDQgNS4zMzc4OSAyLjY2Nzk3QzUuNjE5MTQgMi44MTI1IDUuODU3NDIgMy4wMDE5NSA2LjA1MjczIDMuMjM2MzNDNi4yNTE5NSAzLjQ2NjggNi40MDQzIDMuNzQwMjMgNi41MDk3NyA0LjA1NjY0QzYuNjE5MTQgNC4zNjkxNCA2LjY3MzgzIDQuNzIwNyA2LjY3MzgzIDUuMTExMzNINS4wNDQ5MkM1LjA0NDkyIDQuNjM4NjcgNC45Mzc1IDQuMjgxMjUgNC43MjI2NiA0LjAzOTA2QzQuNTA3ODEgMy43OTI5NyA0LjIxNjggMy42Njk5MiAzLjg0OTYxIDMuNjY5OTJDMy42NTAzOSAzLjY2OTkyIDMuNDc2NTYgMy42OTcyNyAzLjMyODEyIDMuNzUxOTVDMy4xODM1OSAzLjgwMjczIDMuMDY0NDUgMy44NzY5NSAyLjk3MDcgMy45NzQ2MUMyLjg3Njk1IDQuMDY4MzYgMi44MDY2NCA0LjE3OTY5IDIuNzU5NzcgNC4zMDg1OUMyLjcxNjggNC40Mzc1IDIuNjk1MzEgNC41NzgxMiAyLjY5NTMxIDQuNzMwNDdDMi42OTUzMSA0Ljg4MjgxIDIuNzE2OCA1LjAxOTUzIDIuNzU5NzcgNS4xNDA2MkMyLjgwNjY0IDUuMjU3ODEgMi44ODI4MSA1LjM2NzE5IDIuOTg4MjggNS40Njg3NUMzLjA5NzY2IDUuNTcwMzEgMy4yNDAyMyA1LjY2Nzk3IDMuNDE2MDIgNS43NjE3MkMzLjU5MTggNS44NTE1NiAzLjgxMDU1IDUuOTQzMzYgNC4wNzIyNyA2LjAzNzExQzQuNDY2OCA2LjE4NTU1IDQuODI0MjIgNi4zMzk4NCA1LjE0NDUzIDYuNUM1LjQ2NDg0IDYuNjU2MjUgNS43MzgyOCA2LjgzOTg0IDUuOTY0ODQgNy4wNTA3OEM2LjE5NTMxIDcuMjU3ODEgNi4zNzEwOSA3LjUgNi40OTIxOSA3Ljc3NzM0QzYuNjE3MTkgOC4wNTA3OCA2LjY3OTY5IDguMzc1IDYuNjc5NjkgOC43NUM2LjY3OTY5IDkuMDkzNzUgNi42MjMwNSA5LjQwNDMgNi41MDk3NyA5LjY4MTY0QzYuMzk2NDggOS45NTUwOCA2LjIzNDM4IDEwLjE5MTQgNi4wMjM0NCAxMC4zOTA2QzUuODEyNSAxMC41ODk4IDUuNTU4NTkgMTAuNzUgNS4yNjE3MiAxMC44NzExQzQuOTY0ODQgMTAuOTg4MyA0LjYzMjgxIDExLjA2NDUgNC4yNjU2MiAxMS4wOTk2VjEyLjI0OEgzLjMzMzk4VjExLjA5OTZDMy4wMDE5NSAxMS4wNjg0IDIuNjc5NjkgMTAuOTk2MSAyLjM2NzE5IDEwLjg4MjhDMi4wNTQ2OSAxMC43NjU2IDEuNzc3MzQgMTAuNTk3NyAxLjUzNTE2IDEwLjM3ODlDMS4yOTY4OCAxMC4xNjAyIDEuMTA1NDcgOS44ODQ3NyAwLjk2MDkzOCA5LjU1MjczQzAuODE2NDA2IDkuMjE2OCAwLjc0NDE0MSA4LjgxNDQ1IDAuNzQ0MTQxIDguMzQ1N0gyLjM3ODkxQzIuMzc4OTEgOC42MjY5NSAyLjQxOTkyIDguODYzMjggMi41MDE5NSA5LjA1NDY5QzIuNTgzOTggOS4yNDIxOSAyLjY4OTQ1IDkuMzkyNTggMi44MTgzNiA5LjUwNTg2QzIuOTUxMTcgOS42MTUyMyAzLjEwMTU2IDkuNjkzMzYgMy4yNjk1MyA5Ljc0MDIzQzMuNDM3NSA5Ljc4NzExIDMuNjA5MzggOS44MTA1NSAzLjc4NTE2IDkuODEwNTVDNC4yMDMxMiA5LjgxMDU1IDQuNTE5NTMgOS43MTI4OSA0LjczNDM4IDkuNTE3NThDNC45NDkyMiA5LjMyMjI3IDUuMDU2NjQgOS4wNzAzMSA1LjA1NjY0IDguNzYxNzJaTTEzLjQxOCAxMi4yNzE1SDguMDc0MjJWMTFIMTMuNDE4VjEyLjI3MTVaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgzLjk1MjY0IDYpIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
  8311. --jp-icon-text-editor: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI0Ij4KICA8cGF0aCBjbGFzcz0ianAtaWNvbjMganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjNjE2MTYxIiBkPSJNMTUgMTVIM3YyaDEydi0yem0wLThIM3YyaDEyVjd6TTMgMTNoMTh2LTJIM3Yyem0wIDhoMTh2LTJIM3Yyek0zIDN2MmgxOFYzSDN6Ii8+Cjwvc3ZnPgo=);
  8312. --jp-icon-toc: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgoJPHBhdGggZD0iTTcsNUgyMVY3SDdWNU03LDEzVjExSDIxVjEzSDdNNCw0LjVBMS41LDEuNSAwIDAsMSA1LjUsNkExLjUsMS41IDAgMCwxIDQsNy41QTEuNSwxLjUgMCAwLDEgMi41LDZBMS41LDEuNSAwIDAsMSA0LDQuNU00LDEwLjVBMS41LDEuNSAwIDAsMSA1LjUsMTJBMS41LDEuNSAwIDAsMSA0LDEzLjVBMS41LDEuNSAwIDAsMSAyLjUsMTJBMS41LDEuNSAwIDAsMSA0LDEwLjVNNywxOVYxN0gyMVYxOUg3TTQsMTYuNUExLjUsMS41IDAgMCwxIDUuNSwxOEExLjUsMS41IDAgMCwxIDQsMTkuNUExLjUsMS41IDAgMCwxIDIuNSwxOEExLjUsMS41IDAgMCwxIDQsMTYuNVoiIC8+Cjwvc3ZnPgo=);
  8313. --jp-icon-tree-view: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxnIGNsYXNzPSJqcC1pY29uMyIgZmlsbD0iIzYxNjE2MSI+CiAgICAgICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPgogICAgICAgIDxwYXRoIGQ9Ik0yMiAxMVYzaC03djNIOVYzSDJ2OGg3VjhoMnYxMGg0djNoN3YtOGgtN3YzaC0yVjhoMnYzeiIvPgogICAgPC9nPgo8L3N2Zz4=);
  8314. --jp-icon-trusted: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDI0IDI1Ij4KICAgIDxwYXRoIGNsYXNzPSJqcC1pY29uMiIgc3Ryb2tlPSIjMzMzMzMzIiBzdHJva2Utd2lkdGg9IjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDIgMykiIGQ9Ik0xLjg2MDk0IDExLjQ0MDlDMC44MjY0NDggOC43NzAyNyAwLjg2Mzc3OSA2LjA1NzY0IDEuMjQ5MDcgNC4xOTkzMkMyLjQ4MjA2IDMuOTMzNDcgNC4wODA2OCAzLjQwMzQ3IDUuNjAxMDIgMi44NDQ5QzcuMjM1NDkgMi4yNDQ0IDguODU2NjYgMS41ODE1IDkuOTg3NiAxLjA5NTM5QzExLjA1OTcgMS41ODM0MSAxMi42MDk0IDIuMjQ0NCAxNC4yMTggMi44NDMzOUMxNS43NTAzIDMuNDEzOTQgMTcuMzk5NSAzLjk1MjU4IDE4Ljc1MzkgNC4yMTM4NUMxOS4xMzY0IDYuMDcxNzcgMTkuMTcwOSA4Ljc3NzIyIDE4LjEzOSAxMS40NDA5QzE3LjAzMDMgMTQuMzAzMiAxNC42NjY4IDE3LjE4NDQgOS45OTk5OSAxOC45MzU0QzUuMzMzMiAxNy4xODQ0IDIuOTY5NjggMTQuMzAzMiAxLjg2MDk0IDExLjQ0MDlaIi8+CiAgICA8cGF0aCBjbGFzcz0ianAtaWNvbjIiIGZpbGw9IiMzMzMzMzMiIHN0cm9rZT0iIzMzMzMzMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoOCA5Ljg2NzE5KSIgZD0iTTIuODYwMTUgNC44NjUzNUwwLjcyNjU0OSAyLjk5OTU5TDAgMy42MzA0NUwyLjg2MDE1IDYuMTMxNTdMOCAwLjYzMDg3Mkw3LjI3ODU3IDBMMi44NjAxNSA0Ljg2NTM1WiIvPgo8L3N2Zz4K);
  8315. --jp-icon-undo: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjUgOGMtMi42NSAwLTUuMDUuOTktNi45IDIuNkwyIDd2OWg5bC0zLjYyLTMuNjJjMS4zOS0xLjE2IDMuMTYtMS44OCA1LjEyLTEuODggMy41NCAwIDYuNTUgMi4zMSA3LjYgNS41bDIuMzctLjc4QzIxLjA4IDExLjAzIDE3LjE1IDggMTIuNSA4eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8316. --jp-icon-vega: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbjEganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjMjEyMTIxIj4KICAgIDxwYXRoIGQ9Ik0xMC42IDUuNGwyLjItMy4ySDIuMnY3LjNsNC02LjZ6Ii8+CiAgICA8cGF0aCBkPSJNMTUuOCAyLjJsLTQuNCA2LjZMNyA2LjNsLTQuOCA4djUuNWgxNy42VjIuMmgtNHptLTcgMTUuNEg1LjV2LTQuNGgzLjN2NC40em00LjQgMEg5LjhWOS44aDMuNHY3Ljh6bTQuNCAwaC0zLjRWNi41aDMuNHYxMS4xeiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8317. --jp-icon-yaml: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgdmlld0JveD0iMCAwIDIyIDIyIj4KICA8ZyBjbGFzcz0ianAtaWNvbi1jb250cmFzdDIganAtaWNvbi1zZWxlY3RhYmxlIiBmaWxsPSIjRDgxQjYwIj4KICAgIDxwYXRoIGQ9Ik03LjIgMTguNnYtNS40TDMgNS42aDMuM2wxLjQgMy4xYy4zLjkuNiAxLjYgMSAyLjUuMy0uOC42LTEuNiAxLTIuNWwxLjQtMy4xaDMuNGwtNC40IDcuNnY1LjVsLTIuOS0uMXoiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxNi41IiByPSIyLjEiLz4KICAgIDxjaXJjbGUgY2xhc3M9InN0MCIgY3g9IjE3LjYiIGN5PSIxMSIgcj0iMi4xIi8+CiAgPC9nPgo8L3N2Zz4K);
  8318. }
  8319. /* Icon CSS class declarations */
  8320. .jp-AddIcon {
  8321. background-image: var(--jp-icon-add);
  8322. }
  8323. .jp-BugIcon {
  8324. background-image: var(--jp-icon-bug);
  8325. }
  8326. .jp-BuildIcon {
  8327. background-image: var(--jp-icon-build);
  8328. }
  8329. .jp-CaretDownEmptyIcon {
  8330. background-image: var(--jp-icon-caret-down-empty);
  8331. }
  8332. .jp-CaretDownEmptyThinIcon {
  8333. background-image: var(--jp-icon-caret-down-empty-thin);
  8334. }
  8335. .jp-CaretDownIcon {
  8336. background-image: var(--jp-icon-caret-down);
  8337. }
  8338. .jp-CaretLeftIcon {
  8339. background-image: var(--jp-icon-caret-left);
  8340. }
  8341. .jp-CaretRightIcon {
  8342. background-image: var(--jp-icon-caret-right);
  8343. }
  8344. .jp-CaretUpEmptyThinIcon {
  8345. background-image: var(--jp-icon-caret-up-empty-thin);
  8346. }
  8347. .jp-CaretUpIcon {
  8348. background-image: var(--jp-icon-caret-up);
  8349. }
  8350. .jp-CaseSensitiveIcon {
  8351. background-image: var(--jp-icon-case-sensitive);
  8352. }
  8353. .jp-CheckIcon {
  8354. background-image: var(--jp-icon-check);
  8355. }
  8356. .jp-CircleEmptyIcon {
  8357. background-image: var(--jp-icon-circle-empty);
  8358. }
  8359. .jp-CircleIcon {
  8360. background-image: var(--jp-icon-circle);
  8361. }
  8362. .jp-ClearIcon {
  8363. background-image: var(--jp-icon-clear);
  8364. }
  8365. .jp-CloseIcon {
  8366. background-image: var(--jp-icon-close);
  8367. }
  8368. .jp-CodeIcon {
  8369. background-image: var(--jp-icon-code);
  8370. }
  8371. .jp-ConsoleIcon {
  8372. background-image: var(--jp-icon-console);
  8373. }
  8374. .jp-CopyIcon {
  8375. background-image: var(--jp-icon-copy);
  8376. }
  8377. .jp-CutIcon {
  8378. background-image: var(--jp-icon-cut);
  8379. }
  8380. .jp-DownloadIcon {
  8381. background-image: var(--jp-icon-download);
  8382. }
  8383. .jp-EditIcon {
  8384. background-image: var(--jp-icon-edit);
  8385. }
  8386. .jp-EllipsesIcon {
  8387. background-image: var(--jp-icon-ellipses);
  8388. }
  8389. .jp-ExtensionIcon {
  8390. background-image: var(--jp-icon-extension);
  8391. }
  8392. .jp-FastForwardIcon {
  8393. background-image: var(--jp-icon-fast-forward);
  8394. }
  8395. .jp-FileIcon {
  8396. background-image: var(--jp-icon-file);
  8397. }
  8398. .jp-FileUploadIcon {
  8399. background-image: var(--jp-icon-file-upload);
  8400. }
  8401. .jp-FilterListIcon {
  8402. background-image: var(--jp-icon-filter-list);
  8403. }
  8404. .jp-FolderIcon {
  8405. background-image: var(--jp-icon-folder);
  8406. }
  8407. .jp-Html5Icon {
  8408. background-image: var(--jp-icon-html5);
  8409. }
  8410. .jp-ImageIcon {
  8411. background-image: var(--jp-icon-image);
  8412. }
  8413. .jp-InspectorIcon {
  8414. background-image: var(--jp-icon-inspector);
  8415. }
  8416. .jp-JsonIcon {
  8417. background-image: var(--jp-icon-json);
  8418. }
  8419. .jp-JupyterFaviconIcon {
  8420. background-image: var(--jp-icon-jupyter-favicon);
  8421. }
  8422. .jp-JupyterIcon {
  8423. background-image: var(--jp-icon-jupyter);
  8424. }
  8425. .jp-JupyterlabWordmarkIcon {
  8426. background-image: var(--jp-icon-jupyterlab-wordmark);
  8427. }
  8428. .jp-KernelIcon {
  8429. background-image: var(--jp-icon-kernel);
  8430. }
  8431. .jp-KeyboardIcon {
  8432. background-image: var(--jp-icon-keyboard);
  8433. }
  8434. .jp-LauncherIcon {
  8435. background-image: var(--jp-icon-launcher);
  8436. }
  8437. .jp-LineFormIcon {
  8438. background-image: var(--jp-icon-line-form);
  8439. }
  8440. .jp-LinkIcon {
  8441. background-image: var(--jp-icon-link);
  8442. }
  8443. .jp-ListIcon {
  8444. background-image: var(--jp-icon-list);
  8445. }
  8446. .jp-ListingsInfoIcon {
  8447. background-image: var(--jp-icon-listings-info);
  8448. }
  8449. .jp-MarkdownIcon {
  8450. background-image: var(--jp-icon-markdown);
  8451. }
  8452. .jp-NewFolderIcon {
  8453. background-image: var(--jp-icon-new-folder);
  8454. }
  8455. .jp-NotTrustedIcon {
  8456. background-image: var(--jp-icon-not-trusted);
  8457. }
  8458. .jp-NotebookIcon {
  8459. background-image: var(--jp-icon-notebook);
  8460. }
  8461. .jp-NumberingIcon {
  8462. background-image: var(--jp-icon-numbering);
  8463. }
  8464. .jp-OfflineBoltIcon {
  8465. background-image: var(--jp-icon-offline-bolt);
  8466. }
  8467. .jp-PaletteIcon {
  8468. background-image: var(--jp-icon-palette);
  8469. }
  8470. .jp-PasteIcon {
  8471. background-image: var(--jp-icon-paste);
  8472. }
  8473. .jp-PdfIcon {
  8474. background-image: var(--jp-icon-pdf);
  8475. }
  8476. .jp-PythonIcon {
  8477. background-image: var(--jp-icon-python);
  8478. }
  8479. .jp-RKernelIcon {
  8480. background-image: var(--jp-icon-r-kernel);
  8481. }
  8482. .jp-ReactIcon {
  8483. background-image: var(--jp-icon-react);
  8484. }
  8485. .jp-RedoIcon {
  8486. background-image: var(--jp-icon-redo);
  8487. }
  8488. .jp-RefreshIcon {
  8489. background-image: var(--jp-icon-refresh);
  8490. }
  8491. .jp-RegexIcon {
  8492. background-image: var(--jp-icon-regex);
  8493. }
  8494. .jp-RunIcon {
  8495. background-image: var(--jp-icon-run);
  8496. }
  8497. .jp-RunningIcon {
  8498. background-image: var(--jp-icon-running);
  8499. }
  8500. .jp-SaveIcon {
  8501. background-image: var(--jp-icon-save);
  8502. }
  8503. .jp-SearchIcon {
  8504. background-image: var(--jp-icon-search);
  8505. }
  8506. .jp-SettingsIcon {
  8507. background-image: var(--jp-icon-settings);
  8508. }
  8509. .jp-SpreadsheetIcon {
  8510. background-image: var(--jp-icon-spreadsheet);
  8511. }
  8512. .jp-StopIcon {
  8513. background-image: var(--jp-icon-stop);
  8514. }
  8515. .jp-TabIcon {
  8516. background-image: var(--jp-icon-tab);
  8517. }
  8518. .jp-TableRowsIcon {
  8519. background-image: var(--jp-icon-table-rows);
  8520. }
  8521. .jp-TagIcon {
  8522. background-image: var(--jp-icon-tag);
  8523. }
  8524. .jp-TerminalIcon {
  8525. background-image: var(--jp-icon-terminal);
  8526. }
  8527. .jp-TextEditorIcon {
  8528. background-image: var(--jp-icon-text-editor);
  8529. }
  8530. .jp-TocIcon {
  8531. background-image: var(--jp-icon-toc);
  8532. }
  8533. .jp-TreeViewIcon {
  8534. background-image: var(--jp-icon-tree-view);
  8535. }
  8536. .jp-TrustedIcon {
  8537. background-image: var(--jp-icon-trusted);
  8538. }
  8539. .jp-UndoIcon {
  8540. background-image: var(--jp-icon-undo);
  8541. }
  8542. .jp-VegaIcon {
  8543. background-image: var(--jp-icon-vega);
  8544. }
  8545. .jp-YamlIcon {
  8546. background-image: var(--jp-icon-yaml);
  8547. }
  8548. /*-----------------------------------------------------------------------------
  8549. | Copyright (c) Jupyter Development Team.
  8550. | Distributed under the terms of the Modified BSD License.
  8551. |----------------------------------------------------------------------------*/
  8552. /**
  8553. * (DEPRECATED) Support for consuming icons as CSS background images
  8554. */
  8555. :root {
  8556. --jp-icon-search-white: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTggMTgiIHdpZHRoPSIxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZyBjbGFzcz0ianAtaWNvbjMiIGZpbGw9IiM2MTYxNjEiPgogICAgPHBhdGggZD0iTTEyLjEsMTAuOWgtMC43bC0wLjItMC4yYzAuOC0wLjksMS4zLTIuMiwxLjMtMy41YzAtMy0yLjQtNS40LTUuNC01LjRTMS44LDQuMiwxLjgsNy4xczIuNCw1LjQsNS40LDUuNCBjMS4zLDAsMi41LTAuNSwzLjUtMS4zbDAuMiwwLjJ2MC43bDQuMSw0LjFsMS4yLTEuMkwxMi4xLDEwLjl6IE03LjEsMTAuOWMtMi4xLDAtMy43LTEuNy0zLjctMy43czEuNy0zLjcsMy43LTMuN3MzLjcsMS43LDMuNywzLjcgUzkuMiwxMC45LDcuMSwxMC45eiIvPgogIDwvZz4KPC9zdmc+Cg==);
  8557. }
  8558. .jp-Icon,
  8559. .jp-MaterialIcon {
  8560. background-position: center;
  8561. background-repeat: no-repeat;
  8562. background-size: 16px;
  8563. min-width: 16px;
  8564. min-height: 16px;
  8565. }
  8566. .jp-Icon-cover {
  8567. background-position: center;
  8568. background-repeat: no-repeat;
  8569. background-size: cover;
  8570. }
  8571. /**
  8572. * (DEPRECATED) Support for specific CSS icon sizes
  8573. */
  8574. .jp-Icon-16 {
  8575. background-size: 16px;
  8576. min-width: 16px;
  8577. min-height: 16px;
  8578. }
  8579. .jp-Icon-18 {
  8580. background-size: 18px;
  8581. min-width: 18px;
  8582. min-height: 18px;
  8583. }
  8584. .jp-Icon-20 {
  8585. background-size: 20px;
  8586. min-width: 20px;
  8587. min-height: 20px;
  8588. }
  8589. /*-----------------------------------------------------------------------------
  8590. | Copyright (c) Jupyter Development Team.
  8591. | Distributed under the terms of the Modified BSD License.
  8592. |----------------------------------------------------------------------------*/
  8593. /**
  8594. * Support for icons as inline SVG HTMLElements
  8595. */
  8596. /* recolor the primary elements of an icon */
  8597. .jp-icon0[fill] {
  8598. fill: var(--jp-inverse-layout-color0);
  8599. }
  8600. .jp-icon1[fill] {
  8601. fill: var(--jp-inverse-layout-color1);
  8602. }
  8603. .jp-icon2[fill] {
  8604. fill: var(--jp-inverse-layout-color2);
  8605. }
  8606. .jp-icon3[fill] {
  8607. fill: var(--jp-inverse-layout-color3);
  8608. }
  8609. .jp-icon4[fill] {
  8610. fill: var(--jp-inverse-layout-color4);
  8611. }
  8612. .jp-icon0[stroke] {
  8613. stroke: var(--jp-inverse-layout-color0);
  8614. }
  8615. .jp-icon1[stroke] {
  8616. stroke: var(--jp-inverse-layout-color1);
  8617. }
  8618. .jp-icon2[stroke] {
  8619. stroke: var(--jp-inverse-layout-color2);
  8620. }
  8621. .jp-icon3[stroke] {
  8622. stroke: var(--jp-inverse-layout-color3);
  8623. }
  8624. .jp-icon4[stroke] {
  8625. stroke: var(--jp-inverse-layout-color4);
  8626. }
  8627. /* recolor the accent elements of an icon */
  8628. .jp-icon-accent0[fill] {
  8629. fill: var(--jp-layout-color0);
  8630. }
  8631. .jp-icon-accent1[fill] {
  8632. fill: var(--jp-layout-color1);
  8633. }
  8634. .jp-icon-accent2[fill] {
  8635. fill: var(--jp-layout-color2);
  8636. }
  8637. .jp-icon-accent3[fill] {
  8638. fill: var(--jp-layout-color3);
  8639. }
  8640. .jp-icon-accent4[fill] {
  8641. fill: var(--jp-layout-color4);
  8642. }
  8643. .jp-icon-accent0[stroke] {
  8644. stroke: var(--jp-layout-color0);
  8645. }
  8646. .jp-icon-accent1[stroke] {
  8647. stroke: var(--jp-layout-color1);
  8648. }
  8649. .jp-icon-accent2[stroke] {
  8650. stroke: var(--jp-layout-color2);
  8651. }
  8652. .jp-icon-accent3[stroke] {
  8653. stroke: var(--jp-layout-color3);
  8654. }
  8655. .jp-icon-accent4[stroke] {
  8656. stroke: var(--jp-layout-color4);
  8657. }
  8658. /* set the color of an icon to transparent */
  8659. .jp-icon-none[fill] {
  8660. fill: none;
  8661. }
  8662. .jp-icon-none[stroke] {
  8663. stroke: none;
  8664. }
  8665. /* brand icon colors. Same for light and dark */
  8666. .jp-icon-brand0[fill] {
  8667. fill: var(--jp-brand-color0);
  8668. }
  8669. .jp-icon-brand1[fill] {
  8670. fill: var(--jp-brand-color1);
  8671. }
  8672. .jp-icon-brand2[fill] {
  8673. fill: var(--jp-brand-color2);
  8674. }
  8675. .jp-icon-brand3[fill] {
  8676. fill: var(--jp-brand-color3);
  8677. }
  8678. .jp-icon-brand4[fill] {
  8679. fill: var(--jp-brand-color4);
  8680. }
  8681. .jp-icon-brand0[stroke] {
  8682. stroke: var(--jp-brand-color0);
  8683. }
  8684. .jp-icon-brand1[stroke] {
  8685. stroke: var(--jp-brand-color1);
  8686. }
  8687. .jp-icon-brand2[stroke] {
  8688. stroke: var(--jp-brand-color2);
  8689. }
  8690. .jp-icon-brand3[stroke] {
  8691. stroke: var(--jp-brand-color3);
  8692. }
  8693. .jp-icon-brand4[stroke] {
  8694. stroke: var(--jp-brand-color4);
  8695. }
  8696. /* warn icon colors. Same for light and dark */
  8697. .jp-icon-warn0[fill] {
  8698. fill: var(--jp-warn-color0);
  8699. }
  8700. .jp-icon-warn1[fill] {
  8701. fill: var(--jp-warn-color1);
  8702. }
  8703. .jp-icon-warn2[fill] {
  8704. fill: var(--jp-warn-color2);
  8705. }
  8706. .jp-icon-warn3[fill] {
  8707. fill: var(--jp-warn-color3);
  8708. }
  8709. .jp-icon-warn0[stroke] {
  8710. stroke: var(--jp-warn-color0);
  8711. }
  8712. .jp-icon-warn1[stroke] {
  8713. stroke: var(--jp-warn-color1);
  8714. }
  8715. .jp-icon-warn2[stroke] {
  8716. stroke: var(--jp-warn-color2);
  8717. }
  8718. .jp-icon-warn3[stroke] {
  8719. stroke: var(--jp-warn-color3);
  8720. }
  8721. /* icon colors that contrast well with each other and most backgrounds */
  8722. .jp-icon-contrast0[fill] {
  8723. fill: var(--jp-icon-contrast-color0);
  8724. }
  8725. .jp-icon-contrast1[fill] {
  8726. fill: var(--jp-icon-contrast-color1);
  8727. }
  8728. .jp-icon-contrast2[fill] {
  8729. fill: var(--jp-icon-contrast-color2);
  8730. }
  8731. .jp-icon-contrast3[fill] {
  8732. fill: var(--jp-icon-contrast-color3);
  8733. }
  8734. .jp-icon-contrast0[stroke] {
  8735. stroke: var(--jp-icon-contrast-color0);
  8736. }
  8737. .jp-icon-contrast1[stroke] {
  8738. stroke: var(--jp-icon-contrast-color1);
  8739. }
  8740. .jp-icon-contrast2[stroke] {
  8741. stroke: var(--jp-icon-contrast-color2);
  8742. }
  8743. .jp-icon-contrast3[stroke] {
  8744. stroke: var(--jp-icon-contrast-color3);
  8745. }
  8746. /* CSS for icons in selected items in the settings editor */
  8747. #setting-editor .jp-PluginList .jp-mod-selected .jp-icon-selectable[fill] {
  8748. fill: #fff;
  8749. }
  8750. #setting-editor
  8751. .jp-PluginList
  8752. .jp-mod-selected
  8753. .jp-icon-selectable-inverse[fill] {
  8754. fill: var(--jp-brand-color1);
  8755. }
  8756. /* CSS for icons in selected filebrowser listing items */
  8757. .jp-DirListing-item.jp-mod-selected .jp-icon-selectable[fill] {
  8758. fill: #fff;
  8759. }
  8760. .jp-DirListing-item.jp-mod-selected .jp-icon-selectable-inverse[fill] {
  8761. fill: var(--jp-brand-color1);
  8762. }
  8763. /* CSS for icons in selected tabs in the sidebar tab manager */
  8764. #tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable[fill] {
  8765. fill: #fff;
  8766. }
  8767. #tab-manager .lm-TabBar-tab.jp-mod-active .jp-icon-selectable-inverse[fill] {
  8768. fill: var(--jp-brand-color1);
  8769. }
  8770. #tab-manager
  8771. .lm-TabBar-tab.jp-mod-active
  8772. .jp-icon-hover
  8773. :hover
  8774. .jp-icon-selectable[fill] {
  8775. fill: var(--jp-brand-color1);
  8776. }
  8777. #tab-manager
  8778. .lm-TabBar-tab.jp-mod-active
  8779. .jp-icon-hover
  8780. :hover
  8781. .jp-icon-selectable-inverse[fill] {
  8782. fill: #fff;
  8783. }
  8784. /**
  8785. * TODO: come up with non css-hack solution for showing the busy icon on top
  8786. * of the close icon
  8787. * CSS for complex behavior of close icon of tabs in the sidebar tab manager
  8788. */
  8789. #tab-manager
  8790. .lm-TabBar-tab.jp-mod-dirty
  8791. > .lm-TabBar-tabCloseIcon
  8792. > :not(:hover)
  8793. > .jp-icon3[fill] {
  8794. fill: none;
  8795. }
  8796. #tab-manager
  8797. .lm-TabBar-tab.jp-mod-dirty
  8798. > .lm-TabBar-tabCloseIcon
  8799. > :not(:hover)
  8800. > .jp-icon-busy[fill] {
  8801. fill: var(--jp-inverse-layout-color3);
  8802. }
  8803. #tab-manager
  8804. .lm-TabBar-tab.jp-mod-dirty.jp-mod-active
  8805. > .lm-TabBar-tabCloseIcon
  8806. > :not(:hover)
  8807. > .jp-icon-busy[fill] {
  8808. fill: #fff;
  8809. }
  8810. /**
  8811. * TODO: come up with non css-hack solution for showing the busy icon on top
  8812. * of the close icon
  8813. * CSS for complex behavior of close icon of tabs in the main area tabbar
  8814. */
  8815. .lm-DockPanel-tabBar
  8816. .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty
  8817. > .lm-TabBar-tabCloseIcon
  8818. > :not(:hover)
  8819. > .jp-icon3[fill] {
  8820. fill: none;
  8821. }
  8822. .lm-DockPanel-tabBar
  8823. .lm-TabBar-tab.lm-mod-closable.jp-mod-dirty
  8824. > .lm-TabBar-tabCloseIcon
  8825. > :not(:hover)
  8826. > .jp-icon-busy[fill] {
  8827. fill: var(--jp-inverse-layout-color3);
  8828. }
  8829. /* CSS for icons in status bar */
  8830. #jp-main-statusbar .jp-mod-selected .jp-icon-selectable[fill] {
  8831. fill: #fff;
  8832. }
  8833. #jp-main-statusbar .jp-mod-selected .jp-icon-selectable-inverse[fill] {
  8834. fill: var(--jp-brand-color1);
  8835. }
  8836. /* special handling for splash icon CSS. While the theme CSS reloads during
  8837. splash, the splash icon can loose theming. To prevent that, we set a
  8838. default for its color variable */
  8839. :root {
  8840. --jp-warn-color0: var(--md-orange-700);
  8841. }
  8842. /* not sure what to do with this one, used in filebrowser listing */
  8843. .jp-DragIcon {
  8844. margin-right: 4px;
  8845. }
  8846. /*-----------------------------------------------------------------------------
  8847. | Copyright (c) Jupyter Development Team.
  8848. | Distributed under the terms of the Modified BSD License.
  8849. |----------------------------------------------------------------------------*/
  8850. /**
  8851. * Support for alt colors for icons as inline SVG HTMLElements
  8852. */
  8853. /* alt recolor the primary elements of an icon */
  8854. .jp-icon-alt .jp-icon0[fill] {
  8855. fill: var(--jp-layout-color0);
  8856. }
  8857. .jp-icon-alt .jp-icon1[fill] {
  8858. fill: var(--jp-layout-color1);
  8859. }
  8860. .jp-icon-alt .jp-icon2[fill] {
  8861. fill: var(--jp-layout-color2);
  8862. }
  8863. .jp-icon-alt .jp-icon3[fill] {
  8864. fill: var(--jp-layout-color3);
  8865. }
  8866. .jp-icon-alt .jp-icon4[fill] {
  8867. fill: var(--jp-layout-color4);
  8868. }
  8869. .jp-icon-alt .jp-icon0[stroke] {
  8870. stroke: var(--jp-layout-color0);
  8871. }
  8872. .jp-icon-alt .jp-icon1[stroke] {
  8873. stroke: var(--jp-layout-color1);
  8874. }
  8875. .jp-icon-alt .jp-icon2[stroke] {
  8876. stroke: var(--jp-layout-color2);
  8877. }
  8878. .jp-icon-alt .jp-icon3[stroke] {
  8879. stroke: var(--jp-layout-color3);
  8880. }
  8881. .jp-icon-alt .jp-icon4[stroke] {
  8882. stroke: var(--jp-layout-color4);
  8883. }
  8884. /* alt recolor the accent elements of an icon */
  8885. .jp-icon-alt .jp-icon-accent0[fill] {
  8886. fill: var(--jp-inverse-layout-color0);
  8887. }
  8888. .jp-icon-alt .jp-icon-accent1[fill] {
  8889. fill: var(--jp-inverse-layout-color1);
  8890. }
  8891. .jp-icon-alt .jp-icon-accent2[fill] {
  8892. fill: var(--jp-inverse-layout-color2);
  8893. }
  8894. .jp-icon-alt .jp-icon-accent3[fill] {
  8895. fill: var(--jp-inverse-layout-color3);
  8896. }
  8897. .jp-icon-alt .jp-icon-accent4[fill] {
  8898. fill: var(--jp-inverse-layout-color4);
  8899. }
  8900. .jp-icon-alt .jp-icon-accent0[stroke] {
  8901. stroke: var(--jp-inverse-layout-color0);
  8902. }
  8903. .jp-icon-alt .jp-icon-accent1[stroke] {
  8904. stroke: var(--jp-inverse-layout-color1);
  8905. }
  8906. .jp-icon-alt .jp-icon-accent2[stroke] {
  8907. stroke: var(--jp-inverse-layout-color2);
  8908. }
  8909. .jp-icon-alt .jp-icon-accent3[stroke] {
  8910. stroke: var(--jp-inverse-layout-color3);
  8911. }
  8912. .jp-icon-alt .jp-icon-accent4[stroke] {
  8913. stroke: var(--jp-inverse-layout-color4);
  8914. }
  8915. /*-----------------------------------------------------------------------------
  8916. | Copyright (c) Jupyter Development Team.
  8917. | Distributed under the terms of the Modified BSD License.
  8918. |----------------------------------------------------------------------------*/
  8919. .jp-icon-hoverShow:not(:hover) svg {
  8920. display: none !important;
  8921. }
  8922. /**
  8923. * Support for hover colors for icons as inline SVG HTMLElements
  8924. */
  8925. /**
  8926. * regular colors
  8927. */
  8928. /* recolor the primary elements of an icon */
  8929. .jp-icon-hover :hover .jp-icon0-hover[fill] {
  8930. fill: var(--jp-inverse-layout-color0);
  8931. }
  8932. .jp-icon-hover :hover .jp-icon1-hover[fill] {
  8933. fill: var(--jp-inverse-layout-color1);
  8934. }
  8935. .jp-icon-hover :hover .jp-icon2-hover[fill] {
  8936. fill: var(--jp-inverse-layout-color2);
  8937. }
  8938. .jp-icon-hover :hover .jp-icon3-hover[fill] {
  8939. fill: var(--jp-inverse-layout-color3);
  8940. }
  8941. .jp-icon-hover :hover .jp-icon4-hover[fill] {
  8942. fill: var(--jp-inverse-layout-color4);
  8943. }
  8944. .jp-icon-hover :hover .jp-icon0-hover[stroke] {
  8945. stroke: var(--jp-inverse-layout-color0);
  8946. }
  8947. .jp-icon-hover :hover .jp-icon1-hover[stroke] {
  8948. stroke: var(--jp-inverse-layout-color1);
  8949. }
  8950. .jp-icon-hover :hover .jp-icon2-hover[stroke] {
  8951. stroke: var(--jp-inverse-layout-color2);
  8952. }
  8953. .jp-icon-hover :hover .jp-icon3-hover[stroke] {
  8954. stroke: var(--jp-inverse-layout-color3);
  8955. }
  8956. .jp-icon-hover :hover .jp-icon4-hover[stroke] {
  8957. stroke: var(--jp-inverse-layout-color4);
  8958. }
  8959. /* recolor the accent elements of an icon */
  8960. .jp-icon-hover :hover .jp-icon-accent0-hover[fill] {
  8961. fill: var(--jp-layout-color0);
  8962. }
  8963. .jp-icon-hover :hover .jp-icon-accent1-hover[fill] {
  8964. fill: var(--jp-layout-color1);
  8965. }
  8966. .jp-icon-hover :hover .jp-icon-accent2-hover[fill] {
  8967. fill: var(--jp-layout-color2);
  8968. }
  8969. .jp-icon-hover :hover .jp-icon-accent3-hover[fill] {
  8970. fill: var(--jp-layout-color3);
  8971. }
  8972. .jp-icon-hover :hover .jp-icon-accent4-hover[fill] {
  8973. fill: var(--jp-layout-color4);
  8974. }
  8975. .jp-icon-hover :hover .jp-icon-accent0-hover[stroke] {
  8976. stroke: var(--jp-layout-color0);
  8977. }
  8978. .jp-icon-hover :hover .jp-icon-accent1-hover[stroke] {
  8979. stroke: var(--jp-layout-color1);
  8980. }
  8981. .jp-icon-hover :hover .jp-icon-accent2-hover[stroke] {
  8982. stroke: var(--jp-layout-color2);
  8983. }
  8984. .jp-icon-hover :hover .jp-icon-accent3-hover[stroke] {
  8985. stroke: var(--jp-layout-color3);
  8986. }
  8987. .jp-icon-hover :hover .jp-icon-accent4-hover[stroke] {
  8988. stroke: var(--jp-layout-color4);
  8989. }
  8990. /* set the color of an icon to transparent */
  8991. .jp-icon-hover :hover .jp-icon-none-hover[fill] {
  8992. fill: none;
  8993. }
  8994. .jp-icon-hover :hover .jp-icon-none-hover[stroke] {
  8995. stroke: none;
  8996. }
  8997. /**
  8998. * inverse colors
  8999. */
  9000. /* inverse recolor the primary elements of an icon */
  9001. .jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[fill] {
  9002. fill: var(--jp-layout-color0);
  9003. }
  9004. .jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[fill] {
  9005. fill: var(--jp-layout-color1);
  9006. }
  9007. .jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[fill] {
  9008. fill: var(--jp-layout-color2);
  9009. }
  9010. .jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[fill] {
  9011. fill: var(--jp-layout-color3);
  9012. }
  9013. .jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[fill] {
  9014. fill: var(--jp-layout-color4);
  9015. }
  9016. .jp-icon-hover.jp-icon-alt :hover .jp-icon0-hover[stroke] {
  9017. stroke: var(--jp-layout-color0);
  9018. }
  9019. .jp-icon-hover.jp-icon-alt :hover .jp-icon1-hover[stroke] {
  9020. stroke: var(--jp-layout-color1);
  9021. }
  9022. .jp-icon-hover.jp-icon-alt :hover .jp-icon2-hover[stroke] {
  9023. stroke: var(--jp-layout-color2);
  9024. }
  9025. .jp-icon-hover.jp-icon-alt :hover .jp-icon3-hover[stroke] {
  9026. stroke: var(--jp-layout-color3);
  9027. }
  9028. .jp-icon-hover.jp-icon-alt :hover .jp-icon4-hover[stroke] {
  9029. stroke: var(--jp-layout-color4);
  9030. }
  9031. /* inverse recolor the accent elements of an icon */
  9032. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[fill] {
  9033. fill: var(--jp-inverse-layout-color0);
  9034. }
  9035. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[fill] {
  9036. fill: var(--jp-inverse-layout-color1);
  9037. }
  9038. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[fill] {
  9039. fill: var(--jp-inverse-layout-color2);
  9040. }
  9041. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[fill] {
  9042. fill: var(--jp-inverse-layout-color3);
  9043. }
  9044. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[fill] {
  9045. fill: var(--jp-inverse-layout-color4);
  9046. }
  9047. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent0-hover[stroke] {
  9048. stroke: var(--jp-inverse-layout-color0);
  9049. }
  9050. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent1-hover[stroke] {
  9051. stroke: var(--jp-inverse-layout-color1);
  9052. }
  9053. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent2-hover[stroke] {
  9054. stroke: var(--jp-inverse-layout-color2);
  9055. }
  9056. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent3-hover[stroke] {
  9057. stroke: var(--jp-inverse-layout-color3);
  9058. }
  9059. .jp-icon-hover.jp-icon-alt :hover .jp-icon-accent4-hover[stroke] {
  9060. stroke: var(--jp-inverse-layout-color4);
  9061. }
  9062. /*-----------------------------------------------------------------------------
  9063. | Copyright (c) Jupyter Development Team.
  9064. | Distributed under the terms of the Modified BSD License.
  9065. |----------------------------------------------------------------------------*/
  9066. .jp-switch {
  9067. display: flex;
  9068. align-items: center;
  9069. padding-left: 4px;
  9070. padding-right: 4px;
  9071. font-size: var(--jp-ui-font-size1);
  9072. background-color: transparent;
  9073. color: var(--jp-ui-font-color1);
  9074. border: none;
  9075. height: 20px;
  9076. }
  9077. .jp-switch:hover {
  9078. background-color: var(--jp-layout-color2);
  9079. }
  9080. .jp-switch-label {
  9081. margin-right: 5px;
  9082. }
  9083. .jp-switch-track {
  9084. cursor: pointer;
  9085. background-color: var(--jp-border-color1);
  9086. -webkit-transition: 0.4s;
  9087. transition: 0.4s;
  9088. border-radius: 34px;
  9089. height: 16px;
  9090. width: 35px;
  9091. position: relative;
  9092. }
  9093. .jp-switch-track::before {
  9094. content: '';
  9095. position: absolute;
  9096. height: 10px;
  9097. width: 10px;
  9098. margin: 3px;
  9099. left: 0px;
  9100. background-color: var(--jp-ui-inverse-font-color1);
  9101. -webkit-transition: 0.4s;
  9102. transition: 0.4s;
  9103. border-radius: 50%;
  9104. }
  9105. .jp-switch[aria-checked='true'] .jp-switch-track {
  9106. background-color: var(--jp-warn-color0);
  9107. }
  9108. .jp-switch[aria-checked='true'] .jp-switch-track::before {
  9109. /* track width (35) - margins (3 + 3) - thumb width (10) */
  9110. left: 19px;
  9111. }
  9112. /*-----------------------------------------------------------------------------
  9113. | Copyright (c) Jupyter Development Team.
  9114. | Distributed under the terms of the Modified BSD License.
  9115. |----------------------------------------------------------------------------*/
  9116. /* Sibling imports */
  9117. /* Override Blueprint's _reset.scss styles */
  9118. html {
  9119. box-sizing: unset;
  9120. }
  9121. *,
  9122. *::before,
  9123. *::after {
  9124. box-sizing: unset;
  9125. }
  9126. body {
  9127. color: unset;
  9128. font-family: var(--jp-ui-font-family);
  9129. }
  9130. p {
  9131. margin-top: unset;
  9132. margin-bottom: unset;
  9133. }
  9134. small {
  9135. font-size: unset;
  9136. }
  9137. strong {
  9138. font-weight: unset;
  9139. }
  9140. /* Override Blueprint's _typography.scss styles */
  9141. a {
  9142. text-decoration: unset;
  9143. color: unset;
  9144. }
  9145. a:hover {
  9146. text-decoration: unset;
  9147. color: unset;
  9148. }
  9149. /* Override Blueprint's _accessibility.scss styles */
  9150. :focus {
  9151. outline: unset;
  9152. outline-offset: unset;
  9153. -moz-outline-radius: unset;
  9154. }
  9155. /* Styles for ui-components */
  9156. .jp-Button {
  9157. border-radius: var(--jp-border-radius);
  9158. padding: 0px 12px;
  9159. font-size: var(--jp-ui-font-size1);
  9160. }
  9161. /* Use our own theme for hover styles */
  9162. button.jp-Button.bp3-button.bp3-minimal:hover {
  9163. background-color: var(--jp-layout-color2);
  9164. }
  9165. .jp-Button.minimal {
  9166. color: unset !important;
  9167. }
  9168. .jp-Button.jp-ToolbarButtonComponent {
  9169. text-transform: none;
  9170. }
  9171. .jp-InputGroup input {
  9172. box-sizing: border-box;
  9173. border-radius: 0;
  9174. background-color: transparent;
  9175. color: var(--jp-ui-font-color0);
  9176. box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);
  9177. }
  9178. .jp-InputGroup input:focus {
  9179. box-shadow: inset 0 0 0 var(--jp-border-width)
  9180. var(--jp-input-active-box-shadow-color),
  9181. inset 0 0 0 3px var(--jp-input-active-box-shadow-color);
  9182. }
  9183. .jp-InputGroup input::placeholder,
  9184. input::placeholder {
  9185. color: var(--jp-ui-font-color3);
  9186. }
  9187. .jp-BPIcon {
  9188. display: inline-block;
  9189. vertical-align: middle;
  9190. margin: auto;
  9191. }
  9192. /* Stop blueprint futzing with our icon fills */
  9193. .bp3-icon.jp-BPIcon > svg:not([fill]) {
  9194. fill: var(--jp-inverse-layout-color3);
  9195. }
  9196. .jp-InputGroupAction {
  9197. padding: 6px;
  9198. }
  9199. .jp-HTMLSelect.jp-DefaultStyle select {
  9200. background-color: initial;
  9201. border: none;
  9202. border-radius: 0;
  9203. box-shadow: none;
  9204. color: var(--jp-ui-font-color0);
  9205. display: block;
  9206. font-size: var(--jp-ui-font-size1);
  9207. height: 24px;
  9208. line-height: 14px;
  9209. padding: 0 25px 0 10px;
  9210. text-align: left;
  9211. -moz-appearance: none;
  9212. -webkit-appearance: none;
  9213. }
  9214. /* Use our own theme for hover and option styles */
  9215. .jp-HTMLSelect.jp-DefaultStyle select:hover,
  9216. .jp-HTMLSelect.jp-DefaultStyle select > option {
  9217. background-color: var(--jp-layout-color2);
  9218. color: var(--jp-ui-font-color0);
  9219. }
  9220. select {
  9221. box-sizing: border-box;
  9222. }
  9223. /*-----------------------------------------------------------------------------
  9224. | Copyright (c) Jupyter Development Team.
  9225. | Distributed under the terms of the Modified BSD License.
  9226. |----------------------------------------------------------------------------*/
  9227. .jp-Collapse {
  9228. display: flex;
  9229. flex-direction: column;
  9230. align-items: stretch;
  9231. border-top: 1px solid var(--jp-border-color2);
  9232. border-bottom: 1px solid var(--jp-border-color2);
  9233. }
  9234. .jp-Collapse-header {
  9235. padding: 1px 12px;
  9236. color: var(--jp-ui-font-color1);
  9237. background-color: var(--jp-layout-color1);
  9238. font-size: var(--jp-ui-font-size2);
  9239. }
  9240. .jp-Collapse-header:hover {
  9241. background-color: var(--jp-layout-color2);
  9242. }
  9243. .jp-Collapse-contents {
  9244. padding: 0px 12px 0px 12px;
  9245. background-color: var(--jp-layout-color1);
  9246. color: var(--jp-ui-font-color1);
  9247. overflow: auto;
  9248. }
  9249. /*-----------------------------------------------------------------------------
  9250. | Copyright (c) Jupyter Development Team.
  9251. | Distributed under the terms of the Modified BSD License.
  9252. |----------------------------------------------------------------------------*/
  9253. /*-----------------------------------------------------------------------------
  9254. | Variables
  9255. |----------------------------------------------------------------------------*/
  9256. :root {
  9257. --jp-private-commandpalette-search-height: 28px;
  9258. }
  9259. /*-----------------------------------------------------------------------------
  9260. | Overall styles
  9261. |----------------------------------------------------------------------------*/
  9262. .lm-CommandPalette {
  9263. padding-bottom: 0px;
  9264. color: var(--jp-ui-font-color1);
  9265. background: var(--jp-layout-color1);
  9266. /* This is needed so that all font sizing of children done in ems is
  9267. * relative to this base size */
  9268. font-size: var(--jp-ui-font-size1);
  9269. }
  9270. /*-----------------------------------------------------------------------------
  9271. | Modal variant
  9272. |----------------------------------------------------------------------------*/
  9273. .jp-ModalCommandPalette {
  9274. position: absolute;
  9275. z-index: 10000;
  9276. top: 38px;
  9277. left: 30%;
  9278. margin: 0;
  9279. padding: 4px;
  9280. width: 40%;
  9281. box-shadow: var(--jp-elevation-z4);
  9282. border-radius: 4px;
  9283. background: var(--jp-layout-color0);
  9284. }
  9285. .jp-ModalCommandPalette .lm-CommandPalette {
  9286. max-height: 40vh;
  9287. }
  9288. .jp-ModalCommandPalette .lm-CommandPalette .lm-close-icon::after {
  9289. display: none;
  9290. }
  9291. .jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-header {
  9292. display: none;
  9293. }
  9294. .jp-ModalCommandPalette .lm-CommandPalette .lm-CommandPalette-item {
  9295. margin-left: 4px;
  9296. margin-right: 4px;
  9297. }
  9298. .jp-ModalCommandPalette
  9299. .lm-CommandPalette
  9300. .lm-CommandPalette-item.lm-mod-disabled {
  9301. display: none;
  9302. }
  9303. /*-----------------------------------------------------------------------------
  9304. | Search
  9305. |----------------------------------------------------------------------------*/
  9306. .lm-CommandPalette-search {
  9307. padding: 4px;
  9308. background-color: var(--jp-layout-color1);
  9309. z-index: 2;
  9310. }
  9311. .lm-CommandPalette-wrapper {
  9312. overflow: overlay;
  9313. padding: 0px 9px;
  9314. background-color: var(--jp-input-active-background);
  9315. height: 30px;
  9316. box-shadow: inset 0 0 0 var(--jp-border-width) var(--jp-input-border-color);
  9317. }
  9318. .lm-CommandPalette.lm-mod-focused .lm-CommandPalette-wrapper {
  9319. box-shadow: inset 0 0 0 1px var(--jp-input-active-box-shadow-color),
  9320. inset 0 0 0 3px var(--jp-input-active-box-shadow-color);
  9321. }
  9322. .lm-CommandPalette-wrapper::after {
  9323. content: ' ';
  9324. color: white;
  9325. background-color: var(--jp-brand-color1);
  9326. position: absolute;
  9327. top: 4px;
  9328. right: 4px;
  9329. height: 30px;
  9330. width: 10px;
  9331. padding: 0px 10px;
  9332. background-image: var(--jp-icon-search-white);
  9333. background-size: 20px;
  9334. background-repeat: no-repeat;
  9335. background-position: center;
  9336. }
  9337. .lm-CommandPalette-input {
  9338. background: transparent;
  9339. width: calc(100% - 18px);
  9340. float: left;
  9341. border: none;
  9342. outline: none;
  9343. font-size: var(--jp-ui-font-size1);
  9344. color: var(--jp-ui-font-color0);
  9345. line-height: var(--jp-private-commandpalette-search-height);
  9346. }
  9347. .lm-CommandPalette-input::-webkit-input-placeholder,
  9348. .lm-CommandPalette-input::-moz-placeholder,
  9349. .lm-CommandPalette-input:-ms-input-placeholder {
  9350. color: var(--jp-ui-font-color3);
  9351. font-size: var(--jp-ui-font-size1);
  9352. }
  9353. /*-----------------------------------------------------------------------------
  9354. | Results
  9355. |----------------------------------------------------------------------------*/
  9356. .lm-CommandPalette-header:first-child {
  9357. margin-top: 0px;
  9358. }
  9359. .lm-CommandPalette-header {
  9360. border-bottom: solid var(--jp-border-width) var(--jp-border-color2);
  9361. color: var(--jp-ui-font-color1);
  9362. cursor: pointer;
  9363. display: flex;
  9364. font-size: var(--jp-ui-font-size0);
  9365. font-weight: 600;
  9366. letter-spacing: 1px;
  9367. margin-top: 8px;
  9368. padding: 8px 0 8px 12px;
  9369. text-transform: uppercase;
  9370. }
  9371. .lm-CommandPalette-header.lm-mod-active {
  9372. background: var(--jp-layout-color2);
  9373. }
  9374. .lm-CommandPalette-header > mark {
  9375. background-color: transparent;
  9376. font-weight: bold;
  9377. color: var(--jp-ui-font-color1);
  9378. }
  9379. .lm-CommandPalette-item {
  9380. padding: 4px 12px 4px 4px;
  9381. color: var(--jp-ui-font-color1);
  9382. font-size: var(--jp-ui-font-size1);
  9383. font-weight: 400;
  9384. display: flex;
  9385. }
  9386. .lm-CommandPalette-item.lm-mod-disabled {
  9387. color: var(--jp-ui-font-color3);
  9388. }
  9389. .lm-CommandPalette-item.lm-mod-active {
  9390. background: var(--jp-layout-color3);
  9391. }
  9392. .lm-CommandPalette-item.lm-mod-active:hover:not(.lm-mod-disabled) {
  9393. background: var(--jp-layout-color4);
  9394. }
  9395. .lm-CommandPalette-item:hover:not(.lm-mod-active):not(.lm-mod-disabled) {
  9396. background: var(--jp-layout-color2);
  9397. }
  9398. .lm-CommandPalette-itemContent {
  9399. overflow: hidden;
  9400. }
  9401. .lm-CommandPalette-itemLabel > mark {
  9402. color: var(--jp-ui-font-color0);
  9403. background-color: transparent;
  9404. font-weight: bold;
  9405. }
  9406. .lm-CommandPalette-item.lm-mod-disabled mark {
  9407. color: var(--jp-ui-font-color3);
  9408. }
  9409. .lm-CommandPalette-item .lm-CommandPalette-itemIcon {
  9410. margin: 0 4px 0 0;
  9411. position: relative;
  9412. width: 16px;
  9413. top: 2px;
  9414. flex: 0 0 auto;
  9415. }
  9416. .lm-CommandPalette-item.lm-mod-disabled .lm-CommandPalette-itemIcon {
  9417. opacity: 0.4;
  9418. }
  9419. .lm-CommandPalette-item .lm-CommandPalette-itemShortcut {
  9420. flex: 0 0 auto;
  9421. }
  9422. .lm-CommandPalette-itemCaption {
  9423. display: none;
  9424. }
  9425. .lm-CommandPalette-content {
  9426. background-color: var(--jp-layout-color1);
  9427. }
  9428. .lm-CommandPalette-content:empty:after {
  9429. content: 'No results';
  9430. margin: auto;
  9431. margin-top: 20px;
  9432. width: 100px;
  9433. display: block;
  9434. font-size: var(--jp-ui-font-size2);
  9435. font-family: var(--jp-ui-font-family);
  9436. font-weight: lighter;
  9437. }
  9438. .lm-CommandPalette-emptyMessage {
  9439. text-align: center;
  9440. margin-top: 24px;
  9441. line-height: 1.32;
  9442. padding: 0px 8px;
  9443. color: var(--jp-content-font-color3);
  9444. }
  9445. /*-----------------------------------------------------------------------------
  9446. | Copyright (c) 2014-2017, Jupyter Development Team.
  9447. |
  9448. | Distributed under the terms of the Modified BSD License.
  9449. |----------------------------------------------------------------------------*/
  9450. .jp-Dialog {
  9451. position: absolute;
  9452. z-index: 10000;
  9453. display: flex;
  9454. flex-direction: column;
  9455. align-items: center;
  9456. justify-content: center;
  9457. top: 0px;
  9458. left: 0px;
  9459. margin: 0;
  9460. padding: 0;
  9461. width: 100%;
  9462. height: 100%;
  9463. background: var(--jp-dialog-background);
  9464. }
  9465. .jp-Dialog-content {
  9466. display: flex;
  9467. flex-direction: column;
  9468. margin-left: auto;
  9469. margin-right: auto;
  9470. background: var(--jp-layout-color1);
  9471. padding: 24px;
  9472. padding-bottom: 12px;
  9473. min-width: 300px;
  9474. min-height: 150px;
  9475. max-width: 1000px;
  9476. max-height: 500px;
  9477. box-sizing: border-box;
  9478. box-shadow: var(--jp-elevation-z20);
  9479. word-wrap: break-word;
  9480. border-radius: var(--jp-border-radius);
  9481. /* This is needed so that all font sizing of children done in ems is
  9482. * relative to this base size */
  9483. font-size: var(--jp-ui-font-size1);
  9484. color: var(--jp-ui-font-color1);
  9485. resize: both;
  9486. }
  9487. .jp-Dialog-button {
  9488. overflow: visible;
  9489. }
  9490. button.jp-Dialog-button:focus {
  9491. outline: 1px solid var(--jp-brand-color1);
  9492. outline-offset: 4px;
  9493. -moz-outline-radius: 0px;
  9494. }
  9495. button.jp-Dialog-button:focus::-moz-focus-inner {
  9496. border: 0;
  9497. }
  9498. button.jp-Dialog-close-button {
  9499. padding: 0;
  9500. height: 100%;
  9501. min-width: unset;
  9502. min-height: unset;
  9503. }
  9504. .jp-Dialog-header {
  9505. display: flex;
  9506. justify-content: space-between;
  9507. flex: 0 0 auto;
  9508. padding-bottom: 12px;
  9509. font-size: var(--jp-ui-font-size3);
  9510. font-weight: 400;
  9511. color: var(--jp-ui-font-color0);
  9512. }
  9513. .jp-Dialog-body {
  9514. display: flex;
  9515. flex-direction: column;
  9516. flex: 1 1 auto;
  9517. font-size: var(--jp-ui-font-size1);
  9518. background: var(--jp-layout-color1);
  9519. overflow: auto;
  9520. }
  9521. .jp-Dialog-footer {
  9522. display: flex;
  9523. flex-direction: row;
  9524. justify-content: flex-end;
  9525. flex: 0 0 auto;
  9526. margin-left: -12px;
  9527. margin-right: -12px;
  9528. padding: 12px;
  9529. }
  9530. .jp-Dialog-title {
  9531. overflow: hidden;
  9532. white-space: nowrap;
  9533. text-overflow: ellipsis;
  9534. }
  9535. .jp-Dialog-body > .jp-select-wrapper {
  9536. width: 100%;
  9537. }
  9538. .jp-Dialog-body > button {
  9539. padding: 0px 16px;
  9540. }
  9541. .jp-Dialog-body > label {
  9542. line-height: 1.4;
  9543. color: var(--jp-ui-font-color0);
  9544. }
  9545. .jp-Dialog-button.jp-mod-styled:not(:last-child) {
  9546. margin-right: 12px;
  9547. }
  9548. /*-----------------------------------------------------------------------------
  9549. | Copyright (c) 2014-2016, Jupyter Development Team.
  9550. |
  9551. | Distributed under the terms of the Modified BSD License.
  9552. |----------------------------------------------------------------------------*/
  9553. .jp-HoverBox {
  9554. position: fixed;
  9555. }
  9556. .jp-HoverBox.jp-mod-outofview {
  9557. display: none;
  9558. }
  9559. /*-----------------------------------------------------------------------------
  9560. | Copyright (c) Jupyter Development Team.
  9561. | Distributed under the terms of the Modified BSD License.
  9562. |----------------------------------------------------------------------------*/
  9563. .jp-IFrame {
  9564. width: 100%;
  9565. height: 100%;
  9566. }
  9567. .jp-IFrame > iframe {
  9568. border: none;
  9569. }
  9570. /*
  9571. When drag events occur, `p-mod-override-cursor` is added to the body.
  9572. Because iframes steal all cursor events, the following two rules are necessary
  9573. to suppress pointer events while resize drags are occurring. There may be a
  9574. better solution to this problem.
  9575. */
  9576. body.lm-mod-override-cursor .jp-IFrame {
  9577. position: relative;
  9578. }
  9579. body.lm-mod-override-cursor .jp-IFrame:before {
  9580. content: '';
  9581. position: absolute;
  9582. top: 0;
  9583. left: 0;
  9584. right: 0;
  9585. bottom: 0;
  9586. background: transparent;
  9587. }
  9588. /*-----------------------------------------------------------------------------
  9589. | Copyright (c) 2014-2016, Jupyter Development Team.
  9590. |
  9591. | Distributed under the terms of the Modified BSD License.
  9592. |----------------------------------------------------------------------------*/
  9593. .jp-MainAreaWidget > :focus {
  9594. outline: none;
  9595. }
  9596. /**
  9597. * google-material-color v1.2.6
  9598. * https://github.com/danlevan/google-material-color
  9599. */
  9600. :root {
  9601. --md-red-50: #ffebee;
  9602. --md-red-100: #ffcdd2;
  9603. --md-red-200: #ef9a9a;
  9604. --md-red-300: #e57373;
  9605. --md-red-400: #ef5350;
  9606. --md-red-500: #f44336;
  9607. --md-red-600: #e53935;
  9608. --md-red-700: #d32f2f;
  9609. --md-red-800: #c62828;
  9610. --md-red-900: #b71c1c;
  9611. --md-red-A100: #ff8a80;
  9612. --md-red-A200: #ff5252;
  9613. --md-red-A400: #ff1744;
  9614. --md-red-A700: #d50000;
  9615. --md-pink-50: #fce4ec;
  9616. --md-pink-100: #f8bbd0;
  9617. --md-pink-200: #f48fb1;
  9618. --md-pink-300: #f06292;
  9619. --md-pink-400: #ec407a;
  9620. --md-pink-500: #e91e63;
  9621. --md-pink-600: #d81b60;
  9622. --md-pink-700: #c2185b;
  9623. --md-pink-800: #ad1457;
  9624. --md-pink-900: #880e4f;
  9625. --md-pink-A100: #ff80ab;
  9626. --md-pink-A200: #ff4081;
  9627. --md-pink-A400: #f50057;
  9628. --md-pink-A700: #c51162;
  9629. --md-purple-50: #f3e5f5;
  9630. --md-purple-100: #e1bee7;
  9631. --md-purple-200: #ce93d8;
  9632. --md-purple-300: #ba68c8;
  9633. --md-purple-400: #ab47bc;
  9634. --md-purple-500: #9c27b0;
  9635. --md-purple-600: #8e24aa;
  9636. --md-purple-700: #7b1fa2;
  9637. --md-purple-800: #6a1b9a;
  9638. --md-purple-900: #4a148c;
  9639. --md-purple-A100: #ea80fc;
  9640. --md-purple-A200: #e040fb;
  9641. --md-purple-A400: #d500f9;
  9642. --md-purple-A700: #aa00ff;
  9643. --md-deep-purple-50: #ede7f6;
  9644. --md-deep-purple-100: #d1c4e9;
  9645. --md-deep-purple-200: #b39ddb;
  9646. --md-deep-purple-300: #9575cd;
  9647. --md-deep-purple-400: #7e57c2;
  9648. --md-deep-purple-500: #673ab7;
  9649. --md-deep-purple-600: #5e35b1;
  9650. --md-deep-purple-700: #512da8;
  9651. --md-deep-purple-800: #4527a0;
  9652. --md-deep-purple-900: #311b92;
  9653. --md-deep-purple-A100: #b388ff;
  9654. --md-deep-purple-A200: #7c4dff;
  9655. --md-deep-purple-A400: #651fff;
  9656. --md-deep-purple-A700: #6200ea;
  9657. --md-indigo-50: #e8eaf6;
  9658. --md-indigo-100: #c5cae9;
  9659. --md-indigo-200: #9fa8da;
  9660. --md-indigo-300: #7986cb;
  9661. --md-indigo-400: #5c6bc0;
  9662. --md-indigo-500: #3f51b5;
  9663. --md-indigo-600: #3949ab;
  9664. --md-indigo-700: #303f9f;
  9665. --md-indigo-800: #283593;
  9666. --md-indigo-900: #1a237e;
  9667. --md-indigo-A100: #8c9eff;
  9668. --md-indigo-A200: #536dfe;
  9669. --md-indigo-A400: #3d5afe;
  9670. --md-indigo-A700: #304ffe;
  9671. --md-blue-50: #e3f2fd;
  9672. --md-blue-100: #bbdefb;
  9673. --md-blue-200: #90caf9;
  9674. --md-blue-300: #64b5f6;
  9675. --md-blue-400: #42a5f5;
  9676. --md-blue-500: #2196f3;
  9677. --md-blue-600: #1e88e5;
  9678. --md-blue-700: #1976d2;
  9679. --md-blue-800: #1565c0;
  9680. --md-blue-900: #0d47a1;
  9681. --md-blue-A100: #82b1ff;
  9682. --md-blue-A200: #448aff;
  9683. --md-blue-A400: #2979ff;
  9684. --md-blue-A700: #2962ff;
  9685. --md-light-blue-50: #e1f5fe;
  9686. --md-light-blue-100: #b3e5fc;
  9687. --md-light-blue-200: #81d4fa;
  9688. --md-light-blue-300: #4fc3f7;
  9689. --md-light-blue-400: #29b6f6;
  9690. --md-light-blue-500: #03a9f4;
  9691. --md-light-blue-600: #039be5;
  9692. --md-light-blue-700: #0288d1;
  9693. --md-light-blue-800: #0277bd;
  9694. --md-light-blue-900: #01579b;
  9695. --md-light-blue-A100: #80d8ff;
  9696. --md-light-blue-A200: #40c4ff;
  9697. --md-light-blue-A400: #00b0ff;
  9698. --md-light-blue-A700: #0091ea;
  9699. --md-cyan-50: #e0f7fa;
  9700. --md-cyan-100: #b2ebf2;
  9701. --md-cyan-200: #80deea;
  9702. --md-cyan-300: #4dd0e1;
  9703. --md-cyan-400: #26c6da;
  9704. --md-cyan-500: #00bcd4;
  9705. --md-cyan-600: #00acc1;
  9706. --md-cyan-700: #0097a7;
  9707. --md-cyan-800: #00838f;
  9708. --md-cyan-900: #006064;
  9709. --md-cyan-A100: #84ffff;
  9710. --md-cyan-A200: #18ffff;
  9711. --md-cyan-A400: #00e5ff;
  9712. --md-cyan-A700: #00b8d4;
  9713. --md-teal-50: #e0f2f1;
  9714. --md-teal-100: #b2dfdb;
  9715. --md-teal-200: #80cbc4;
  9716. --md-teal-300: #4db6ac;
  9717. --md-teal-400: #26a69a;
  9718. --md-teal-500: #009688;
  9719. --md-teal-600: #00897b;
  9720. --md-teal-700: #00796b;
  9721. --md-teal-800: #00695c;
  9722. --md-teal-900: #004d40;
  9723. --md-teal-A100: #a7ffeb;
  9724. --md-teal-A200: #64ffda;
  9725. --md-teal-A400: #1de9b6;
  9726. --md-teal-A700: #00bfa5;
  9727. --md-green-50: #e8f5e9;
  9728. --md-green-100: #c8e6c9;
  9729. --md-green-200: #a5d6a7;
  9730. --md-green-300: #81c784;
  9731. --md-green-400: #66bb6a;
  9732. --md-green-500: #4caf50;
  9733. --md-green-600: #43a047;
  9734. --md-green-700: #388e3c;
  9735. --md-green-800: #2e7d32;
  9736. --md-green-900: #1b5e20;
  9737. --md-green-A100: #b9f6ca;
  9738. --md-green-A200: #69f0ae;
  9739. --md-green-A400: #00e676;
  9740. --md-green-A700: #00c853;
  9741. --md-light-green-50: #f1f8e9;
  9742. --md-light-green-100: #dcedc8;
  9743. --md-light-green-200: #c5e1a5;
  9744. --md-light-green-300: #aed581;
  9745. --md-light-green-400: #9ccc65;
  9746. --md-light-green-500: #8bc34a;
  9747. --md-light-green-600: #7cb342;
  9748. --md-light-green-700: #689f38;
  9749. --md-light-green-800: #558b2f;
  9750. --md-light-green-900: #33691e;
  9751. --md-light-green-A100: #ccff90;
  9752. --md-light-green-A200: #b2ff59;
  9753. --md-light-green-A400: #76ff03;
  9754. --md-light-green-A700: #64dd17;
  9755. --md-lime-50: #f9fbe7;
  9756. --md-lime-100: #f0f4c3;
  9757. --md-lime-200: #e6ee9c;
  9758. --md-lime-300: #dce775;
  9759. --md-lime-400: #d4e157;
  9760. --md-lime-500: #cddc39;
  9761. --md-lime-600: #c0ca33;
  9762. --md-lime-700: #afb42b;
  9763. --md-lime-800: #9e9d24;
  9764. --md-lime-900: #827717;
  9765. --md-lime-A100: #f4ff81;
  9766. --md-lime-A200: #eeff41;
  9767. --md-lime-A400: #c6ff00;
  9768. --md-lime-A700: #aeea00;
  9769. --md-yellow-50: #fffde7;
  9770. --md-yellow-100: #fff9c4;
  9771. --md-yellow-200: #fff59d;
  9772. --md-yellow-300: #fff176;
  9773. --md-yellow-400: #ffee58;
  9774. --md-yellow-500: #ffeb3b;
  9775. --md-yellow-600: #fdd835;
  9776. --md-yellow-700: #fbc02d;
  9777. --md-yellow-800: #f9a825;
  9778. --md-yellow-900: #f57f17;
  9779. --md-yellow-A100: #ffff8d;
  9780. --md-yellow-A200: #ffff00;
  9781. --md-yellow-A400: #ffea00;
  9782. --md-yellow-A700: #ffd600;
  9783. --md-amber-50: #fff8e1;
  9784. --md-amber-100: #ffecb3;
  9785. --md-amber-200: #ffe082;
  9786. --md-amber-300: #ffd54f;
  9787. --md-amber-400: #ffca28;
  9788. --md-amber-500: #ffc107;
  9789. --md-amber-600: #ffb300;
  9790. --md-amber-700: #ffa000;
  9791. --md-amber-800: #ff8f00;
  9792. --md-amber-900: #ff6f00;
  9793. --md-amber-A100: #ffe57f;
  9794. --md-amber-A200: #ffd740;
  9795. --md-amber-A400: #ffc400;
  9796. --md-amber-A700: #ffab00;
  9797. --md-orange-50: #fff3e0;
  9798. --md-orange-100: #ffe0b2;
  9799. --md-orange-200: #ffcc80;
  9800. --md-orange-300: #ffb74d;
  9801. --md-orange-400: #ffa726;
  9802. --md-orange-500: #ff9800;
  9803. --md-orange-600: #fb8c00;
  9804. --md-orange-700: #f57c00;
  9805. --md-orange-800: #ef6c00;
  9806. --md-orange-900: #e65100;
  9807. --md-orange-A100: #ffd180;
  9808. --md-orange-A200: #ffab40;
  9809. --md-orange-A400: #ff9100;
  9810. --md-orange-A700: #ff6d00;
  9811. --md-deep-orange-50: #fbe9e7;
  9812. --md-deep-orange-100: #ffccbc;
  9813. --md-deep-orange-200: #ffab91;
  9814. --md-deep-orange-300: #ff8a65;
  9815. --md-deep-orange-400: #ff7043;
  9816. --md-deep-orange-500: #ff5722;
  9817. --md-deep-orange-600: #f4511e;
  9818. --md-deep-orange-700: #e64a19;
  9819. --md-deep-orange-800: #d84315;
  9820. --md-deep-orange-900: #bf360c;
  9821. --md-deep-orange-A100: #ff9e80;
  9822. --md-deep-orange-A200: #ff6e40;
  9823. --md-deep-orange-A400: #ff3d00;
  9824. --md-deep-orange-A700: #dd2c00;
  9825. --md-brown-50: #efebe9;
  9826. --md-brown-100: #d7ccc8;
  9827. --md-brown-200: #bcaaa4;
  9828. --md-brown-300: #a1887f;
  9829. --md-brown-400: #8d6e63;
  9830. --md-brown-500: #795548;
  9831. --md-brown-600: #6d4c41;
  9832. --md-brown-700: #5d4037;
  9833. --md-brown-800: #4e342e;
  9834. --md-brown-900: #3e2723;
  9835. --md-grey-50: #fafafa;
  9836. --md-grey-100: #f5f5f5;
  9837. --md-grey-200: #eeeeee;
  9838. --md-grey-300: #e0e0e0;
  9839. --md-grey-400: #bdbdbd;
  9840. --md-grey-500: #9e9e9e;
  9841. --md-grey-600: #757575;
  9842. --md-grey-700: #616161;
  9843. --md-grey-800: #424242;
  9844. --md-grey-900: #212121;
  9845. --md-blue-grey-50: #eceff1;
  9846. --md-blue-grey-100: #cfd8dc;
  9847. --md-blue-grey-200: #b0bec5;
  9848. --md-blue-grey-300: #90a4ae;
  9849. --md-blue-grey-400: #78909c;
  9850. --md-blue-grey-500: #607d8b;
  9851. --md-blue-grey-600: #546e7a;
  9852. --md-blue-grey-700: #455a64;
  9853. --md-blue-grey-800: #37474f;
  9854. --md-blue-grey-900: #263238;
  9855. }
  9856. /*-----------------------------------------------------------------------------
  9857. | Copyright (c) 2017, Jupyter Development Team.
  9858. |
  9859. | Distributed under the terms of the Modified BSD License.
  9860. |----------------------------------------------------------------------------*/
  9861. .jp-Spinner {
  9862. position: absolute;
  9863. display: flex;
  9864. justify-content: center;
  9865. align-items: center;
  9866. z-index: 10;
  9867. left: 0;
  9868. top: 0;
  9869. width: 100%;
  9870. height: 100%;
  9871. background: var(--jp-layout-color0);
  9872. outline: none;
  9873. }
  9874. .jp-SpinnerContent {
  9875. font-size: 10px;
  9876. margin: 50px auto;
  9877. text-indent: -9999em;
  9878. width: 3em;
  9879. height: 3em;
  9880. border-radius: 50%;
  9881. background: var(--jp-brand-color3);
  9882. background: linear-gradient(
  9883. to right,
  9884. #f37626 10%,
  9885. rgba(255, 255, 255, 0) 42%
  9886. );
  9887. position: relative;
  9888. animation: load3 1s infinite linear, fadeIn 1s;
  9889. }
  9890. .jp-SpinnerContent:before {
  9891. width: 50%;
  9892. height: 50%;
  9893. background: #f37626;
  9894. border-radius: 100% 0 0 0;
  9895. position: absolute;
  9896. top: 0;
  9897. left: 0;
  9898. content: '';
  9899. }
  9900. .jp-SpinnerContent:after {
  9901. background: var(--jp-layout-color0);
  9902. width: 75%;
  9903. height: 75%;
  9904. border-radius: 50%;
  9905. content: '';
  9906. margin: auto;
  9907. position: absolute;
  9908. top: 0;
  9909. left: 0;
  9910. bottom: 0;
  9911. right: 0;
  9912. }
  9913. @keyframes fadeIn {
  9914. 0% {
  9915. opacity: 0;
  9916. }
  9917. 100% {
  9918. opacity: 1;
  9919. }
  9920. }
  9921. @keyframes load3 {
  9922. 0% {
  9923. transform: rotate(0deg);
  9924. }
  9925. 100% {
  9926. transform: rotate(360deg);
  9927. }
  9928. }
  9929. /*-----------------------------------------------------------------------------
  9930. | Copyright (c) 2014-2017, Jupyter Development Team.
  9931. |
  9932. | Distributed under the terms of the Modified BSD License.
  9933. |----------------------------------------------------------------------------*/
  9934. button.jp-mod-styled {
  9935. font-size: var(--jp-ui-font-size1);
  9936. color: var(--jp-ui-font-color0);
  9937. border: none;
  9938. box-sizing: border-box;
  9939. text-align: center;
  9940. line-height: 32px;
  9941. height: 32px;
  9942. padding: 0px 12px;
  9943. letter-spacing: 0.8px;
  9944. outline: none;
  9945. appearance: none;
  9946. -webkit-appearance: none;
  9947. -moz-appearance: none;
  9948. }
  9949. input.jp-mod-styled {
  9950. background: var(--jp-input-background);
  9951. height: 28px;
  9952. box-sizing: border-box;
  9953. border: var(--jp-border-width) solid var(--jp-border-color1);
  9954. padding-left: 7px;
  9955. padding-right: 7px;
  9956. font-size: var(--jp-ui-font-size2);
  9957. color: var(--jp-ui-font-color0);
  9958. outline: none;
  9959. appearance: none;
  9960. -webkit-appearance: none;
  9961. -moz-appearance: none;
  9962. }
  9963. input.jp-mod-styled:focus {
  9964. border: var(--jp-border-width) solid var(--md-blue-500);
  9965. box-shadow: inset 0 0 4px var(--md-blue-300);
  9966. }
  9967. .jp-select-wrapper {
  9968. display: flex;
  9969. position: relative;
  9970. flex-direction: column;
  9971. padding: 1px;
  9972. background-color: var(--jp-layout-color1);
  9973. height: 28px;
  9974. box-sizing: border-box;
  9975. margin-bottom: 12px;
  9976. }
  9977. .jp-select-wrapper.jp-mod-focused select.jp-mod-styled {
  9978. border: var(--jp-border-width) solid var(--jp-input-active-border-color);
  9979. box-shadow: var(--jp-input-box-shadow);
  9980. background-color: var(--jp-input-active-background);
  9981. }
  9982. select.jp-mod-styled:hover {
  9983. background-color: var(--jp-layout-color1);
  9984. cursor: pointer;
  9985. color: var(--jp-ui-font-color0);
  9986. background-color: var(--jp-input-hover-background);
  9987. box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.5);
  9988. }
  9989. select.jp-mod-styled {
  9990. flex: 1 1 auto;
  9991. height: 32px;
  9992. width: 100%;
  9993. font-size: var(--jp-ui-font-size2);
  9994. background: var(--jp-input-background);
  9995. color: var(--jp-ui-font-color0);
  9996. padding: 0 25px 0 8px;
  9997. border: var(--jp-border-width) solid var(--jp-input-border-color);
  9998. border-radius: 0px;
  9999. outline: none;
  10000. appearance: none;
  10001. -webkit-appearance: none;
  10002. -moz-appearance: none;
  10003. }
  10004. /*-----------------------------------------------------------------------------
  10005. | Copyright (c) 2014-2016, Jupyter Development Team.
  10006. |
  10007. | Distributed under the terms of the Modified BSD License.
  10008. |----------------------------------------------------------------------------*/
  10009. :root {
  10010. --jp-private-toolbar-height: calc(
  10011. 28px + var(--jp-border-width)
  10012. ); /* leave 28px for content */
  10013. }
  10014. .jp-Toolbar {
  10015. color: var(--jp-ui-font-color1);
  10016. flex: 0 0 auto;
  10017. display: flex;
  10018. flex-direction: row;
  10019. border-bottom: var(--jp-border-width) solid var(--jp-toolbar-border-color);
  10020. box-shadow: var(--jp-toolbar-box-shadow);
  10021. background: var(--jp-toolbar-background);
  10022. min-height: var(--jp-toolbar-micro-height);
  10023. padding: 2px;
  10024. z-index: 1;
  10025. overflow-x: hidden;
  10026. }
  10027. .jp-Toolbar:hover {
  10028. overflow-x: auto;
  10029. }
  10030. /* Toolbar items */
  10031. .jp-Toolbar > .jp-Toolbar-item.jp-Toolbar-spacer {
  10032. flex-grow: 1;
  10033. flex-shrink: 1;
  10034. }
  10035. .jp-Toolbar-item.jp-Toolbar-kernelStatus {
  10036. display: inline-block;
  10037. width: 32px;
  10038. background-repeat: no-repeat;
  10039. background-position: center;
  10040. background-size: 16px;
  10041. }
  10042. .jp-Toolbar > .jp-Toolbar-item {
  10043. flex: 0 0 auto;
  10044. display: flex;
  10045. padding-left: 1px;
  10046. padding-right: 1px;
  10047. font-size: var(--jp-ui-font-size1);
  10048. line-height: var(--jp-private-toolbar-height);
  10049. height: 100%;
  10050. }
  10051. /* Toolbar buttons */
  10052. /* This is the div we use to wrap the react component into a Widget */
  10053. div.jp-ToolbarButton {
  10054. color: transparent;
  10055. border: none;
  10056. box-sizing: border-box;
  10057. outline: none;
  10058. appearance: none;
  10059. -webkit-appearance: none;
  10060. -moz-appearance: none;
  10061. padding: 0px;
  10062. margin: 0px;
  10063. }
  10064. button.jp-ToolbarButtonComponent {
  10065. background: var(--jp-layout-color1);
  10066. border: none;
  10067. box-sizing: border-box;
  10068. outline: none;
  10069. appearance: none;
  10070. -webkit-appearance: none;
  10071. -moz-appearance: none;
  10072. padding: 0px 6px;
  10073. margin: 0px;
  10074. height: 24px;
  10075. border-radius: var(--jp-border-radius);
  10076. display: flex;
  10077. align-items: center;
  10078. text-align: center;
  10079. font-size: 14px;
  10080. min-width: unset;
  10081. min-height: unset;
  10082. }
  10083. button.jp-ToolbarButtonComponent:disabled {
  10084. opacity: 0.4;
  10085. }
  10086. button.jp-ToolbarButtonComponent span {
  10087. padding: 0px;
  10088. flex: 0 0 auto;
  10089. }
  10090. button.jp-ToolbarButtonComponent .jp-ToolbarButtonComponent-label {
  10091. font-size: var(--jp-ui-font-size1);
  10092. line-height: 100%;
  10093. padding-left: 2px;
  10094. color: var(--jp-ui-font-color1);
  10095. }
  10096. #jp-main-dock-panel[data-mode='single-document']
  10097. .jp-MainAreaWidget
  10098. > .jp-Toolbar.jp-Toolbar-micro {
  10099. padding: 0;
  10100. min-height: 0;
  10101. }
  10102. #jp-main-dock-panel[data-mode='single-document']
  10103. .jp-MainAreaWidget
  10104. > .jp-Toolbar {
  10105. border: none;
  10106. box-shadow: none;
  10107. }
  10108. /*-----------------------------------------------------------------------------
  10109. | Copyright (c) 2014-2017, Jupyter Development Team.
  10110. |
  10111. | Distributed under the terms of the Modified BSD License.
  10112. |----------------------------------------------------------------------------*/
  10113. /*-----------------------------------------------------------------------------
  10114. | Copyright (c) Jupyter Development Team.
  10115. | Copyright (c) 2014-2017, PhosphorJS Contributors
  10116. |
  10117. | Distributed under the terms of the BSD 3-Clause License.
  10118. |
  10119. | The full license is in the file LICENSE, distributed with this software.
  10120. |----------------------------------------------------------------------------*/
  10121. /* <DEPRECATED> */ body.p-mod-override-cursor *, /* </DEPRECATED> */
  10122. body.lm-mod-override-cursor * {
  10123. cursor: inherit !important;
  10124. }
  10125. /*-----------------------------------------------------------------------------
  10126. | Copyright (c) 2014-2016, Jupyter Development Team.
  10127. |
  10128. | Distributed under the terms of the Modified BSD License.
  10129. |----------------------------------------------------------------------------*/
  10130. .jp-JSONEditor {
  10131. display: flex;
  10132. flex-direction: column;
  10133. width: 100%;
  10134. }
  10135. .jp-JSONEditor-host {
  10136. flex: 1 1 auto;
  10137. border: var(--jp-border-width) solid var(--jp-input-border-color);
  10138. border-radius: 0px;
  10139. background: var(--jp-layout-color0);
  10140. min-height: 50px;
  10141. padding: 1px;
  10142. }
  10143. .jp-JSONEditor.jp-mod-error .jp-JSONEditor-host {
  10144. border-color: red;
  10145. outline-color: red;
  10146. }
  10147. .jp-JSONEditor-header {
  10148. display: flex;
  10149. flex: 1 0 auto;
  10150. padding: 0 0 0 12px;
  10151. }
  10152. .jp-JSONEditor-header label {
  10153. flex: 0 0 auto;
  10154. }
  10155. .jp-JSONEditor-commitButton {
  10156. height: 16px;
  10157. width: 16px;
  10158. background-size: 18px;
  10159. background-repeat: no-repeat;
  10160. background-position: center;
  10161. }
  10162. .jp-JSONEditor-host.jp-mod-focused {
  10163. background-color: var(--jp-input-active-background);
  10164. border: 1px solid var(--jp-input-active-border-color);
  10165. box-shadow: var(--jp-input-box-shadow);
  10166. }
  10167. .jp-Editor.jp-mod-dropTarget {
  10168. border: var(--jp-border-width) solid var(--jp-input-active-border-color);
  10169. box-shadow: var(--jp-input-box-shadow);
  10170. }
  10171. /* BASICS */
  10172. .CodeMirror {
  10173. /* Set height, width, borders, and global font properties here */
  10174. font-family: monospace;
  10175. height: 300px;
  10176. color: black;
  10177. direction: ltr;
  10178. }
  10179. /* PADDING */
  10180. .CodeMirror-lines {
  10181. padding: 4px 0; /* Vertical padding around content */
  10182. }
  10183. .CodeMirror pre.CodeMirror-line,
  10184. .CodeMirror pre.CodeMirror-line-like {
  10185. padding: 0 4px; /* Horizontal padding of content */
  10186. }
  10187. .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  10188. background-color: white; /* The little square between H and V scrollbars */
  10189. }
  10190. /* GUTTER */
  10191. .CodeMirror-gutters {
  10192. border-right: 1px solid #ddd;
  10193. background-color: #f7f7f7;
  10194. white-space: nowrap;
  10195. }
  10196. .CodeMirror-linenumbers {}
  10197. .CodeMirror-linenumber {
  10198. padding: 0 3px 0 5px;
  10199. min-width: 20px;
  10200. text-align: right;
  10201. color: #999;
  10202. white-space: nowrap;
  10203. }
  10204. .CodeMirror-guttermarker { color: black; }
  10205. .CodeMirror-guttermarker-subtle { color: #999; }
  10206. /* CURSOR */
  10207. .CodeMirror-cursor {
  10208. border-left: 1px solid black;
  10209. border-right: none;
  10210. width: 0;
  10211. }
  10212. /* Shown when moving in bi-directional text */
  10213. .CodeMirror div.CodeMirror-secondarycursor {
  10214. border-left: 1px solid silver;
  10215. }
  10216. .cm-fat-cursor .CodeMirror-cursor {
  10217. width: auto;
  10218. border: 0 !important;
  10219. background: #7e7;
  10220. }
  10221. .cm-fat-cursor div.CodeMirror-cursors {
  10222. z-index: 1;
  10223. }
  10224. .cm-fat-cursor-mark {
  10225. background-color: rgba(20, 255, 20, 0.5);
  10226. -webkit-animation: blink 1.06s steps(1) infinite;
  10227. -moz-animation: blink 1.06s steps(1) infinite;
  10228. animation: blink 1.06s steps(1) infinite;
  10229. }
  10230. .cm-animate-fat-cursor {
  10231. width: auto;
  10232. border: 0;
  10233. -webkit-animation: blink 1.06s steps(1) infinite;
  10234. -moz-animation: blink 1.06s steps(1) infinite;
  10235. animation: blink 1.06s steps(1) infinite;
  10236. background-color: #7e7;
  10237. }
  10238. @-moz-keyframes blink {
  10239. 0% {}
  10240. 50% { background-color: transparent; }
  10241. 100% {}
  10242. }
  10243. @-webkit-keyframes blink {
  10244. 0% {}
  10245. 50% { background-color: transparent; }
  10246. 100% {}
  10247. }
  10248. @keyframes blink {
  10249. 0% {}
  10250. 50% { background-color: transparent; }
  10251. 100% {}
  10252. }
  10253. /* Can style cursor different in overwrite (non-insert) mode */
  10254. .CodeMirror-overwrite .CodeMirror-cursor {}
  10255. .cm-tab { display: inline-block; text-decoration: inherit; }
  10256. .CodeMirror-rulers {
  10257. position: absolute;
  10258. left: 0; right: 0; top: -50px; bottom: 0;
  10259. overflow: hidden;
  10260. }
  10261. .CodeMirror-ruler {
  10262. border-left: 1px solid #ccc;
  10263. top: 0; bottom: 0;
  10264. position: absolute;
  10265. }
  10266. /* DEFAULT THEME */
  10267. .cm-s-default .cm-header {color: blue;}
  10268. .cm-s-default .cm-quote {color: #090;}
  10269. .cm-negative {color: #d44;}
  10270. .cm-positive {color: #292;}
  10271. .cm-header, .cm-strong {font-weight: bold;}
  10272. .cm-em {font-style: italic;}
  10273. .cm-link {text-decoration: underline;}
  10274. .cm-strikethrough {text-decoration: line-through;}
  10275. .cm-s-default .cm-keyword {color: #708;}
  10276. .cm-s-default .cm-atom {color: #219;}
  10277. .cm-s-default .cm-number {color: #164;}
  10278. .cm-s-default .cm-def {color: #00f;}
  10279. .cm-s-default .cm-variable,
  10280. .cm-s-default .cm-punctuation,
  10281. .cm-s-default .cm-property,
  10282. .cm-s-default .cm-operator {}
  10283. .cm-s-default .cm-variable-2 {color: #05a;}
  10284. .cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
  10285. .cm-s-default .cm-comment {color: #a50;}
  10286. .cm-s-default .cm-string {color: #a11;}
  10287. .cm-s-default .cm-string-2 {color: #f50;}
  10288. .cm-s-default .cm-meta {color: #555;}
  10289. .cm-s-default .cm-qualifier {color: #555;}
  10290. .cm-s-default .cm-builtin {color: #30a;}
  10291. .cm-s-default .cm-bracket {color: #997;}
  10292. .cm-s-default .cm-tag {color: #170;}
  10293. .cm-s-default .cm-attribute {color: #00c;}
  10294. .cm-s-default .cm-hr {color: #999;}
  10295. .cm-s-default .cm-link {color: #00c;}
  10296. .cm-s-default .cm-error {color: #f00;}
  10297. .cm-invalidchar {color: #f00;}
  10298. .CodeMirror-composing { border-bottom: 2px solid; }
  10299. /* Default styles for common addons */
  10300. div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
  10301. div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
  10302. .CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
  10303. .CodeMirror-activeline-background {background: #e8f2ff;}
  10304. /* STOP */
  10305. /* The rest of this file contains styles related to the mechanics of
  10306. the editor. You probably shouldn't touch them. */
  10307. .CodeMirror {
  10308. position: relative;
  10309. overflow: hidden;
  10310. background: white;
  10311. }
  10312. .CodeMirror-scroll {
  10313. overflow: scroll !important; /* Things will break if this is overridden */
  10314. /* 50px is the magic margin used to hide the element's real scrollbars */
  10315. /* See overflow: hidden in .CodeMirror */
  10316. margin-bottom: -50px; margin-right: -50px;
  10317. padding-bottom: 50px;
  10318. height: 100%;
  10319. outline: none; /* Prevent dragging from highlighting the element */
  10320. position: relative;
  10321. }
  10322. .CodeMirror-sizer {
  10323. position: relative;
  10324. border-right: 50px solid transparent;
  10325. }
  10326. /* The fake, visible scrollbars. Used to force redraw during scrolling
  10327. before actual scrolling happens, thus preventing shaking and
  10328. flickering artifacts. */
  10329. .CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  10330. position: absolute;
  10331. z-index: 6;
  10332. display: none;
  10333. }
  10334. .CodeMirror-vscrollbar {
  10335. right: 0; top: 0;
  10336. overflow-x: hidden;
  10337. overflow-y: scroll;
  10338. }
  10339. .CodeMirror-hscrollbar {
  10340. bottom: 0; left: 0;
  10341. overflow-y: hidden;
  10342. overflow-x: scroll;
  10343. }
  10344. .CodeMirror-scrollbar-filler {
  10345. right: 0; bottom: 0;
  10346. }
  10347. .CodeMirror-gutter-filler {
  10348. left: 0; bottom: 0;
  10349. }
  10350. .CodeMirror-gutters {
  10351. position: absolute; left: 0; top: 0;
  10352. min-height: 100%;
  10353. z-index: 3;
  10354. }
  10355. .CodeMirror-gutter {
  10356. white-space: normal;
  10357. height: 100%;
  10358. display: inline-block;
  10359. vertical-align: top;
  10360. margin-bottom: -50px;
  10361. }
  10362. .CodeMirror-gutter-wrapper {
  10363. position: absolute;
  10364. z-index: 4;
  10365. background: none !important;
  10366. border: none !important;
  10367. }
  10368. .CodeMirror-gutter-background {
  10369. position: absolute;
  10370. top: 0; bottom: 0;
  10371. z-index: 4;
  10372. }
  10373. .CodeMirror-gutter-elt {
  10374. position: absolute;
  10375. cursor: default;
  10376. z-index: 4;
  10377. }
  10378. .CodeMirror-gutter-wrapper ::selection { background-color: transparent }
  10379. .CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
  10380. .CodeMirror-lines {
  10381. cursor: text;
  10382. min-height: 1px; /* prevents collapsing before first draw */
  10383. }
  10384. .CodeMirror pre.CodeMirror-line,
  10385. .CodeMirror pre.CodeMirror-line-like {
  10386. /* Reset some styles that the rest of the page might have set */
  10387. -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  10388. border-width: 0;
  10389. background: transparent;
  10390. font-family: inherit;
  10391. font-size: inherit;
  10392. margin: 0;
  10393. white-space: pre;
  10394. word-wrap: normal;
  10395. line-height: inherit;
  10396. color: inherit;
  10397. z-index: 2;
  10398. position: relative;
  10399. overflow: visible;
  10400. -webkit-tap-highlight-color: transparent;
  10401. -webkit-font-variant-ligatures: contextual;
  10402. font-variant-ligatures: contextual;
  10403. }
  10404. .CodeMirror-wrap pre.CodeMirror-line,
  10405. .CodeMirror-wrap pre.CodeMirror-line-like {
  10406. word-wrap: break-word;
  10407. white-space: pre-wrap;
  10408. word-break: normal;
  10409. }
  10410. .CodeMirror-linebackground {
  10411. position: absolute;
  10412. left: 0; right: 0; top: 0; bottom: 0;
  10413. z-index: 0;
  10414. }
  10415. .CodeMirror-linewidget {
  10416. position: relative;
  10417. z-index: 2;
  10418. padding: 0.1px; /* Force widget margins to stay inside of the container */
  10419. }
  10420. .CodeMirror-widget {}
  10421. .CodeMirror-rtl pre { direction: rtl; }
  10422. .CodeMirror-code {
  10423. outline: none;
  10424. }
  10425. /* Force content-box sizing for the elements where we expect it */
  10426. .CodeMirror-scroll,
  10427. .CodeMirror-sizer,
  10428. .CodeMirror-gutter,
  10429. .CodeMirror-gutters,
  10430. .CodeMirror-linenumber {
  10431. -moz-box-sizing: content-box;
  10432. box-sizing: content-box;
  10433. }
  10434. .CodeMirror-measure {
  10435. position: absolute;
  10436. width: 100%;
  10437. height: 0;
  10438. overflow: hidden;
  10439. visibility: hidden;
  10440. }
  10441. .CodeMirror-cursor {
  10442. position: absolute;
  10443. pointer-events: none;
  10444. }
  10445. .CodeMirror-measure pre { position: static; }
  10446. div.CodeMirror-cursors {
  10447. visibility: hidden;
  10448. position: relative;
  10449. z-index: 3;
  10450. }
  10451. div.CodeMirror-dragcursors {
  10452. visibility: visible;
  10453. }
  10454. .CodeMirror-focused div.CodeMirror-cursors {
  10455. visibility: visible;
  10456. }
  10457. .CodeMirror-selected { background: #d9d9d9; }
  10458. .CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
  10459. .CodeMirror-crosshair { cursor: crosshair; }
  10460. .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
  10461. .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
  10462. .cm-searching {
  10463. background-color: #ffa;
  10464. background-color: rgba(255, 255, 0, .4);
  10465. }
  10466. /* Used to force a border model for a node */
  10467. .cm-force-border { padding-right: .1px; }
  10468. @media print {
  10469. /* Hide the cursor when printing */
  10470. .CodeMirror div.CodeMirror-cursors {
  10471. visibility: hidden;
  10472. }
  10473. }
  10474. /* See issue #2901 */
  10475. .cm-tab-wrap-hack:after { content: ''; }
  10476. /* Help users use markselection to safely style text background */
  10477. span.CodeMirror-selectedtext { background: none; }
  10478. .CodeMirror-dialog {
  10479. position: absolute;
  10480. left: 0; right: 0;
  10481. background: inherit;
  10482. z-index: 15;
  10483. padding: .1em .8em;
  10484. overflow: hidden;
  10485. color: inherit;
  10486. }
  10487. .CodeMirror-dialog-top {
  10488. border-bottom: 1px solid #eee;
  10489. top: 0;
  10490. }
  10491. .CodeMirror-dialog-bottom {
  10492. border-top: 1px solid #eee;
  10493. bottom: 0;
  10494. }
  10495. .CodeMirror-dialog input {
  10496. border: none;
  10497. outline: none;
  10498. background: transparent;
  10499. width: 20em;
  10500. color: inherit;
  10501. font-family: monospace;
  10502. }
  10503. .CodeMirror-dialog button {
  10504. font-size: 70%;
  10505. }
  10506. .CodeMirror-foldmarker {
  10507. color: blue;
  10508. text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px;
  10509. font-family: arial;
  10510. line-height: .3;
  10511. cursor: pointer;
  10512. }
  10513. .CodeMirror-foldgutter {
  10514. width: .7em;
  10515. }
  10516. .CodeMirror-foldgutter-open,
  10517. .CodeMirror-foldgutter-folded {
  10518. cursor: pointer;
  10519. }
  10520. .CodeMirror-foldgutter-open:after {
  10521. content: "\25BE";
  10522. }
  10523. .CodeMirror-foldgutter-folded:after {
  10524. content: "\25B8";
  10525. }
  10526. /*-----------------------------------------------------------------------------
  10527. | Copyright (c) Jupyter Development Team.
  10528. | Distributed under the terms of the Modified BSD License.
  10529. |----------------------------------------------------------------------------*/
  10530. .CodeMirror {
  10531. line-height: var(--jp-code-line-height);
  10532. font-size: var(--jp-code-font-size);
  10533. font-family: var(--jp-code-font-family);
  10534. border: 0;
  10535. border-radius: 0;
  10536. height: auto;
  10537. /* Changed to auto to autogrow */
  10538. }
  10539. .CodeMirror pre {
  10540. padding: 0 var(--jp-code-padding);
  10541. }
  10542. .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-dialog {
  10543. background-color: var(--jp-layout-color0);
  10544. color: var(--jp-content-font-color1);
  10545. }
  10546. /* This causes https://github.com/jupyter/jupyterlab/issues/522 */
  10547. /* May not cause it not because we changed it! */
  10548. .CodeMirror-lines {
  10549. padding: var(--jp-code-padding) 0;
  10550. }
  10551. .CodeMirror-linenumber {
  10552. padding: 0 8px;
  10553. }
  10554. .jp-CodeMirrorEditor {
  10555. cursor: text;
  10556. }
  10557. .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {
  10558. border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);
  10559. }
  10560. /* When zoomed out 67% and 33% on a screen of 1440 width x 900 height */
  10561. @media screen and (min-width: 2138px) and (max-width: 4319px) {
  10562. .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {
  10563. border-left: var(--jp-code-cursor-width1) solid
  10564. var(--jp-editor-cursor-color);
  10565. }
  10566. }
  10567. /* When zoomed out less than 33% */
  10568. @media screen and (min-width: 4320px) {
  10569. .jp-CodeMirrorEditor[data-type='inline'] .CodeMirror-cursor {
  10570. border-left: var(--jp-code-cursor-width2) solid
  10571. var(--jp-editor-cursor-color);
  10572. }
  10573. }
  10574. .CodeMirror.jp-mod-readOnly .CodeMirror-cursor {
  10575. display: none;
  10576. }
  10577. .CodeMirror-gutters {
  10578. border-right: 1px solid var(--jp-border-color2);
  10579. background-color: var(--jp-layout-color0);
  10580. }
  10581. .jp-CollaboratorCursor {
  10582. border-left: 5px solid transparent;
  10583. border-right: 5px solid transparent;
  10584. border-top: none;
  10585. border-bottom: 3px solid;
  10586. background-clip: content-box;
  10587. margin-left: -5px;
  10588. margin-right: -5px;
  10589. }
  10590. .CodeMirror-selectedtext.cm-searching {
  10591. background-color: var(--jp-search-selected-match-background-color) !important;
  10592. color: var(--jp-search-selected-match-color) !important;
  10593. }
  10594. .cm-searching {
  10595. background-color: var(
  10596. --jp-search-unselected-match-background-color
  10597. ) !important;
  10598. color: var(--jp-search-unselected-match-color) !important;
  10599. }
  10600. .CodeMirror-focused .CodeMirror-selected {
  10601. background-color: var(--jp-editor-selected-focused-background);
  10602. }
  10603. .CodeMirror-selected {
  10604. background-color: var(--jp-editor-selected-background);
  10605. }
  10606. .jp-CollaboratorCursor-hover {
  10607. position: absolute;
  10608. z-index: 1;
  10609. transform: translateX(-50%);
  10610. color: white;
  10611. border-radius: 3px;
  10612. padding-left: 4px;
  10613. padding-right: 4px;
  10614. padding-top: 1px;
  10615. padding-bottom: 1px;
  10616. text-align: center;
  10617. font-size: var(--jp-ui-font-size1);
  10618. white-space: nowrap;
  10619. }
  10620. .jp-CodeMirror-ruler {
  10621. border-left: 1px dashed var(--jp-border-color2);
  10622. }
  10623. /**
  10624. * Here is our jupyter theme for CodeMirror syntax highlighting
  10625. * This is used in our marked.js syntax highlighting and CodeMirror itself
  10626. * The string "jupyter" is set in ../codemirror/widget.DEFAULT_CODEMIRROR_THEME
  10627. * This came from the classic notebook, which came form highlight.js/GitHub
  10628. */
  10629. /**
  10630. * CodeMirror themes are handling the background/color in this way. This works
  10631. * fine for CodeMirror editors outside the notebook, but the notebook styles
  10632. * these things differently.
  10633. */
  10634. .CodeMirror.cm-s-jupyter {
  10635. background: var(--jp-layout-color0);
  10636. color: var(--jp-content-font-color1);
  10637. }
  10638. /* In the notebook, we want this styling to be handled by its container */
  10639. .jp-CodeConsole .CodeMirror.cm-s-jupyter,
  10640. .jp-Notebook .CodeMirror.cm-s-jupyter {
  10641. background: transparent;
  10642. }
  10643. .cm-s-jupyter .CodeMirror-cursor {
  10644. border-left: var(--jp-code-cursor-width0) solid var(--jp-editor-cursor-color);
  10645. }
  10646. .cm-s-jupyter span.cm-keyword {
  10647. color: var(--jp-mirror-editor-keyword-color);
  10648. font-weight: bold;
  10649. }
  10650. .cm-s-jupyter span.cm-atom {
  10651. color: var(--jp-mirror-editor-atom-color);
  10652. }
  10653. .cm-s-jupyter span.cm-number {
  10654. color: var(--jp-mirror-editor-number-color);
  10655. }
  10656. .cm-s-jupyter span.cm-def {
  10657. color: var(--jp-mirror-editor-def-color);
  10658. }
  10659. .cm-s-jupyter span.cm-variable {
  10660. color: var(--jp-mirror-editor-variable-color);
  10661. }
  10662. .cm-s-jupyter span.cm-variable-2 {
  10663. color: var(--jp-mirror-editor-variable-2-color);
  10664. }
  10665. .cm-s-jupyter span.cm-variable-3 {
  10666. color: var(--jp-mirror-editor-variable-3-color);
  10667. }
  10668. .cm-s-jupyter span.cm-punctuation {
  10669. color: var(--jp-mirror-editor-punctuation-color);
  10670. }
  10671. .cm-s-jupyter span.cm-property {
  10672. color: var(--jp-mirror-editor-property-color);
  10673. }
  10674. .cm-s-jupyter span.cm-operator {
  10675. color: var(--jp-mirror-editor-operator-color);
  10676. font-weight: bold;
  10677. }
  10678. .cm-s-jupyter span.cm-comment {
  10679. color: var(--jp-mirror-editor-comment-color);
  10680. font-style: italic;
  10681. }
  10682. .cm-s-jupyter span.cm-string {
  10683. color: var(--jp-mirror-editor-string-color);
  10684. }
  10685. .cm-s-jupyter span.cm-string-2 {
  10686. color: var(--jp-mirror-editor-string-2-color);
  10687. }
  10688. .cm-s-jupyter span.cm-meta {
  10689. color: var(--jp-mirror-editor-meta-color);
  10690. }
  10691. .cm-s-jupyter span.cm-qualifier {
  10692. color: var(--jp-mirror-editor-qualifier-color);
  10693. }
  10694. .cm-s-jupyter span.cm-builtin {
  10695. color: var(--jp-mirror-editor-builtin-color);
  10696. }
  10697. .cm-s-jupyter span.cm-bracket {
  10698. color: var(--jp-mirror-editor-bracket-color);
  10699. }
  10700. .cm-s-jupyter span.cm-tag {
  10701. color: var(--jp-mirror-editor-tag-color);
  10702. }
  10703. .cm-s-jupyter span.cm-attribute {
  10704. color: var(--jp-mirror-editor-attribute-color);
  10705. }
  10706. .cm-s-jupyter span.cm-header {
  10707. color: var(--jp-mirror-editor-header-color);
  10708. }
  10709. .cm-s-jupyter span.cm-quote {
  10710. color: var(--jp-mirror-editor-quote-color);
  10711. }
  10712. .cm-s-jupyter span.cm-link {
  10713. color: var(--jp-mirror-editor-link-color);
  10714. }
  10715. .cm-s-jupyter span.cm-error {
  10716. color: var(--jp-mirror-editor-error-color);
  10717. }
  10718. .cm-s-jupyter span.cm-hr {
  10719. color: #999;
  10720. }
  10721. .cm-s-jupyter span.cm-tab {
  10722. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
  10723. background-position: right;
  10724. background-repeat: no-repeat;
  10725. }
  10726. .cm-s-jupyter .CodeMirror-activeline-background,
  10727. .cm-s-jupyter .CodeMirror-gutter {
  10728. background-color: var(--jp-layout-color2);
  10729. }
  10730. /*-----------------------------------------------------------------------------
  10731. | Copyright (c) Jupyter Development Team.
  10732. | Distributed under the terms of the Modified BSD License.
  10733. |----------------------------------------------------------------------------*/
  10734. /*-----------------------------------------------------------------------------
  10735. | RenderedText
  10736. |----------------------------------------------------------------------------*/
  10737. :root {
  10738. /* This is the padding value to fill the gaps between lines containing spans with background color. */
  10739. --jp-private-code-span-padding: calc(
  10740. (var(--jp-code-line-height) - 1) * var(--jp-code-font-size) / 2
  10741. );
  10742. }
  10743. .jp-RenderedText {
  10744. text-align: left;
  10745. padding-left: var(--jp-code-padding);
  10746. line-height: var(--jp-code-line-height);
  10747. font-family: var(--jp-code-font-family);
  10748. }
  10749. .jp-RenderedText pre,
  10750. .jp-RenderedJavaScript pre,
  10751. .jp-RenderedHTMLCommon pre {
  10752. color: var(--jp-content-font-color1);
  10753. font-size: var(--jp-code-font-size);
  10754. border: none;
  10755. margin: 0px;
  10756. padding: 0px;
  10757. }
  10758. .jp-RenderedText pre a:link {
  10759. text-decoration: none;
  10760. color: var(--jp-content-link-color);
  10761. }
  10762. .jp-RenderedText pre a:hover {
  10763. text-decoration: underline;
  10764. color: var(--jp-content-link-color);
  10765. }
  10766. .jp-RenderedText pre a:visited {
  10767. text-decoration: none;
  10768. color: var(--jp-content-link-color);
  10769. }
  10770. /* console foregrounds and backgrounds */
  10771. .jp-RenderedText pre .ansi-black-fg {
  10772. color: #3e424d;
  10773. }
  10774. .jp-RenderedText pre .ansi-red-fg {
  10775. color: #e75c58;
  10776. }
  10777. .jp-RenderedText pre .ansi-green-fg {
  10778. color: #00a250;
  10779. }
  10780. .jp-RenderedText pre .ansi-yellow-fg {
  10781. color: #ddb62b;
  10782. }
  10783. .jp-RenderedText pre .ansi-blue-fg {
  10784. color: #208ffb;
  10785. }
  10786. .jp-RenderedText pre .ansi-magenta-fg {
  10787. color: #d160c4;
  10788. }
  10789. .jp-RenderedText pre .ansi-cyan-fg {
  10790. color: #60c6c8;
  10791. }
  10792. .jp-RenderedText pre .ansi-white-fg {
  10793. color: #c5c1b4;
  10794. }
  10795. .jp-RenderedText pre .ansi-black-bg {
  10796. background-color: #3e424d;
  10797. padding: var(--jp-private-code-span-padding) 0;
  10798. }
  10799. .jp-RenderedText pre .ansi-red-bg {
  10800. background-color: #e75c58;
  10801. padding: var(--jp-private-code-span-padding) 0;
  10802. }
  10803. .jp-RenderedText pre .ansi-green-bg {
  10804. background-color: #00a250;
  10805. padding: var(--jp-private-code-span-padding) 0;
  10806. }
  10807. .jp-RenderedText pre .ansi-yellow-bg {
  10808. background-color: #ddb62b;
  10809. padding: var(--jp-private-code-span-padding) 0;
  10810. }
  10811. .jp-RenderedText pre .ansi-blue-bg {
  10812. background-color: #208ffb;
  10813. padding: var(--jp-private-code-span-padding) 0;
  10814. }
  10815. .jp-RenderedText pre .ansi-magenta-bg {
  10816. background-color: #d160c4;
  10817. padding: var(--jp-private-code-span-padding) 0;
  10818. }
  10819. .jp-RenderedText pre .ansi-cyan-bg {
  10820. background-color: #60c6c8;
  10821. padding: var(--jp-private-code-span-padding) 0;
  10822. }
  10823. .jp-RenderedText pre .ansi-white-bg {
  10824. background-color: #c5c1b4;
  10825. padding: var(--jp-private-code-span-padding) 0;
  10826. }
  10827. .jp-RenderedText pre .ansi-black-intense-fg {
  10828. color: #282c36;
  10829. }
  10830. .jp-RenderedText pre .ansi-red-intense-fg {
  10831. color: #b22b31;
  10832. }
  10833. .jp-RenderedText pre .ansi-green-intense-fg {
  10834. color: #007427;
  10835. }
  10836. .jp-RenderedText pre .ansi-yellow-intense-fg {
  10837. color: #b27d12;
  10838. }
  10839. .jp-RenderedText pre .ansi-blue-intense-fg {
  10840. color: #0065ca;
  10841. }
  10842. .jp-RenderedText pre .ansi-magenta-intense-fg {
  10843. color: #a03196;
  10844. }
  10845. .jp-RenderedText pre .ansi-cyan-intense-fg {
  10846. color: #258f8f;
  10847. }
  10848. .jp-RenderedText pre .ansi-white-intense-fg {
  10849. color: #a1a6b2;
  10850. }
  10851. .jp-RenderedText pre .ansi-black-intense-bg {
  10852. background-color: #282c36;
  10853. padding: var(--jp-private-code-span-padding) 0;
  10854. }
  10855. .jp-RenderedText pre .ansi-red-intense-bg {
  10856. background-color: #b22b31;
  10857. padding: var(--jp-private-code-span-padding) 0;
  10858. }
  10859. .jp-RenderedText pre .ansi-green-intense-bg {
  10860. background-color: #007427;
  10861. padding: var(--jp-private-code-span-padding) 0;
  10862. }
  10863. .jp-RenderedText pre .ansi-yellow-intense-bg {
  10864. background-color: #b27d12;
  10865. padding: var(--jp-private-code-span-padding) 0;
  10866. }
  10867. .jp-RenderedText pre .ansi-blue-intense-bg {
  10868. background-color: #0065ca;
  10869. padding: var(--jp-private-code-span-padding) 0;
  10870. }
  10871. .jp-RenderedText pre .ansi-magenta-intense-bg {
  10872. background-color: #a03196;
  10873. padding: var(--jp-private-code-span-padding) 0;
  10874. }
  10875. .jp-RenderedText pre .ansi-cyan-intense-bg {
  10876. background-color: #258f8f;
  10877. padding: var(--jp-private-code-span-padding) 0;
  10878. }
  10879. .jp-RenderedText pre .ansi-white-intense-bg {
  10880. background-color: #a1a6b2;
  10881. padding: var(--jp-private-code-span-padding) 0;
  10882. }
  10883. .jp-RenderedText pre .ansi-default-inverse-fg {
  10884. color: var(--jp-ui-inverse-font-color0);
  10885. }
  10886. .jp-RenderedText pre .ansi-default-inverse-bg {
  10887. background-color: var(--jp-inverse-layout-color0);
  10888. padding: var(--jp-private-code-span-padding) 0;
  10889. }
  10890. .jp-RenderedText pre .ansi-bold {
  10891. font-weight: bold;
  10892. }
  10893. .jp-RenderedText pre .ansi-underline {
  10894. text-decoration: underline;
  10895. }
  10896. .jp-RenderedText[data-mime-type='application/vnd.jupyter.stderr'] {
  10897. background: var(--jp-rendermime-error-background);
  10898. padding-top: var(--jp-code-padding);
  10899. }
  10900. /*-----------------------------------------------------------------------------
  10901. | RenderedLatex
  10902. |----------------------------------------------------------------------------*/
  10903. .jp-RenderedLatex {
  10904. color: var(--jp-content-font-color1);
  10905. font-size: var(--jp-content-font-size1);
  10906. line-height: var(--jp-content-line-height);
  10907. }
  10908. /* Left-justify outputs.*/
  10909. .jp-OutputArea-output.jp-RenderedLatex {
  10910. padding: var(--jp-code-padding);
  10911. text-align: left;
  10912. }
  10913. /*-----------------------------------------------------------------------------
  10914. | RenderedHTML
  10915. |----------------------------------------------------------------------------*/
  10916. .jp-RenderedHTMLCommon {
  10917. color: var(--jp-content-font-color1);
  10918. font-family: var(--jp-content-font-family);
  10919. font-size: var(--jp-content-font-size1);
  10920. line-height: var(--jp-content-line-height);
  10921. /* Give a bit more R padding on Markdown text to keep line lengths reasonable */
  10922. padding-right: 20px;
  10923. }
  10924. .jp-RenderedHTMLCommon em {
  10925. font-style: italic;
  10926. }
  10927. .jp-RenderedHTMLCommon strong {
  10928. font-weight: bold;
  10929. }
  10930. .jp-RenderedHTMLCommon u {
  10931. text-decoration: underline;
  10932. }
  10933. .jp-RenderedHTMLCommon a:link {
  10934. text-decoration: none;
  10935. color: var(--jp-content-link-color);
  10936. }
  10937. .jp-RenderedHTMLCommon a:hover {
  10938. text-decoration: underline;
  10939. color: var(--jp-content-link-color);
  10940. }
  10941. .jp-RenderedHTMLCommon a:visited {
  10942. text-decoration: none;
  10943. color: var(--jp-content-link-color);
  10944. }
  10945. /* Headings */
  10946. .jp-RenderedHTMLCommon h1,
  10947. .jp-RenderedHTMLCommon h2,
  10948. .jp-RenderedHTMLCommon h3,
  10949. .jp-RenderedHTMLCommon h4,
  10950. .jp-RenderedHTMLCommon h5,
  10951. .jp-RenderedHTMLCommon h6 {
  10952. line-height: var(--jp-content-heading-line-height);
  10953. font-weight: var(--jp-content-heading-font-weight);
  10954. font-style: normal;
  10955. margin: var(--jp-content-heading-margin-top) 0
  10956. var(--jp-content-heading-margin-bottom) 0;
  10957. }
  10958. .jp-RenderedHTMLCommon h1:first-child,
  10959. .jp-RenderedHTMLCommon h2:first-child,
  10960. .jp-RenderedHTMLCommon h3:first-child,
  10961. .jp-RenderedHTMLCommon h4:first-child,
  10962. .jp-RenderedHTMLCommon h5:first-child,
  10963. .jp-RenderedHTMLCommon h6:first-child {
  10964. margin-top: calc(0.5 * var(--jp-content-heading-margin-top));
  10965. }
  10966. .jp-RenderedHTMLCommon h1:last-child,
  10967. .jp-RenderedHTMLCommon h2:last-child,
  10968. .jp-RenderedHTMLCommon h3:last-child,
  10969. .jp-RenderedHTMLCommon h4:last-child,
  10970. .jp-RenderedHTMLCommon h5:last-child,
  10971. .jp-RenderedHTMLCommon h6:last-child {
  10972. margin-bottom: calc(0.5 * var(--jp-content-heading-margin-bottom));
  10973. }
  10974. .jp-RenderedHTMLCommon h1 {
  10975. font-size: var(--jp-content-font-size5);
  10976. }
  10977. .jp-RenderedHTMLCommon h2 {
  10978. font-size: var(--jp-content-font-size4);
  10979. }
  10980. .jp-RenderedHTMLCommon h3 {
  10981. font-size: var(--jp-content-font-size3);
  10982. }
  10983. .jp-RenderedHTMLCommon h4 {
  10984. font-size: var(--jp-content-font-size2);
  10985. }
  10986. .jp-RenderedHTMLCommon h5 {
  10987. font-size: var(--jp-content-font-size1);
  10988. }
  10989. .jp-RenderedHTMLCommon h6 {
  10990. font-size: var(--jp-content-font-size0);
  10991. }
  10992. /* Lists */
  10993. .jp-RenderedHTMLCommon ul:not(.list-inline),
  10994. .jp-RenderedHTMLCommon ol:not(.list-inline) {
  10995. padding-left: 2em;
  10996. }
  10997. .jp-RenderedHTMLCommon ul {
  10998. list-style: disc;
  10999. }
  11000. .jp-RenderedHTMLCommon ul ul {
  11001. list-style: square;
  11002. }
  11003. .jp-RenderedHTMLCommon ul ul ul {
  11004. list-style: circle;
  11005. }
  11006. .jp-RenderedHTMLCommon ol {
  11007. list-style: decimal;
  11008. }
  11009. .jp-RenderedHTMLCommon ol ol {
  11010. list-style: upper-alpha;
  11011. }
  11012. .jp-RenderedHTMLCommon ol ol ol {
  11013. list-style: lower-alpha;
  11014. }
  11015. .jp-RenderedHTMLCommon ol ol ol ol {
  11016. list-style: lower-roman;
  11017. }
  11018. .jp-RenderedHTMLCommon ol ol ol ol ol {
  11019. list-style: decimal;
  11020. }
  11021. .jp-RenderedHTMLCommon ol,
  11022. .jp-RenderedHTMLCommon ul {
  11023. margin-bottom: 1em;
  11024. }
  11025. .jp-RenderedHTMLCommon ul ul,
  11026. .jp-RenderedHTMLCommon ul ol,
  11027. .jp-RenderedHTMLCommon ol ul,
  11028. .jp-RenderedHTMLCommon ol ol {
  11029. margin-bottom: 0em;
  11030. }
  11031. .jp-RenderedHTMLCommon hr {
  11032. color: var(--jp-border-color2);
  11033. background-color: var(--jp-border-color1);
  11034. margin-top: 1em;
  11035. margin-bottom: 1em;
  11036. }
  11037. .jp-RenderedHTMLCommon > pre {
  11038. margin: 1.5em 2em;
  11039. }
  11040. .jp-RenderedHTMLCommon pre,
  11041. .jp-RenderedHTMLCommon code {
  11042. border: 0;
  11043. background-color: var(--jp-layout-color0);
  11044. color: var(--jp-content-font-color1);
  11045. font-family: var(--jp-code-font-family);
  11046. font-size: inherit;
  11047. line-height: var(--jp-code-line-height);
  11048. padding: 0;
  11049. white-space: pre-wrap;
  11050. }
  11051. .jp-RenderedHTMLCommon :not(pre) > code {
  11052. background-color: var(--jp-layout-color2);
  11053. padding: 1px 5px;
  11054. }
  11055. /* Tables */
  11056. .jp-RenderedHTMLCommon table {
  11057. border-collapse: collapse;
  11058. border-spacing: 0;
  11059. border: none;
  11060. color: var(--jp-ui-font-color1);
  11061. font-size: 12px;
  11062. table-layout: fixed;
  11063. margin-left: auto;
  11064. margin-right: auto;
  11065. }
  11066. .jp-RenderedHTMLCommon thead {
  11067. border-bottom: var(--jp-border-width) solid var(--jp-border-color1);
  11068. vertical-align: bottom;
  11069. }
  11070. .jp-RenderedHTMLCommon td,
  11071. .jp-RenderedHTMLCommon th,
  11072. .jp-RenderedHTMLCommon tr {
  11073. vertical-align: middle;
  11074. padding: 0.5em 0.5em;
  11075. line-height: normal;
  11076. white-space: normal;
  11077. max-width: none;
  11078. border: none;
  11079. }
  11080. .jp-RenderedMarkdown.jp-RenderedHTMLCommon td,
  11081. .jp-RenderedMarkdown.jp-RenderedHTMLCommon th {
  11082. max-width: none;
  11083. }
  11084. :not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon td,
  11085. :not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon th,
  11086. :not(.jp-RenderedMarkdown).jp-RenderedHTMLCommon tr {
  11087. text-align: right;
  11088. }
  11089. .jp-RenderedHTMLCommon th {
  11090. font-weight: bold;
  11091. }
  11092. .jp-RenderedHTMLCommon tbody tr:nth-child(odd) {
  11093. background: var(--jp-layout-color0);
  11094. }
  11095. .jp-RenderedHTMLCommon tbody tr:nth-child(even) {
  11096. background: var(--jp-rendermime-table-row-background);
  11097. }
  11098. .jp-RenderedHTMLCommon tbody tr:hover {
  11099. background: var(--jp-rendermime-table-row-hover-background);
  11100. }
  11101. .jp-RenderedHTMLCommon table {
  11102. margin-bottom: 1em;
  11103. }
  11104. .jp-RenderedHTMLCommon p {
  11105. text-align: left;
  11106. margin: 0px;
  11107. }
  11108. .jp-RenderedHTMLCommon p {
  11109. margin-bottom: 1em;
  11110. }
  11111. .jp-RenderedHTMLCommon img {
  11112. -moz-force-broken-image-icon: 1;
  11113. }
  11114. /* Restrict to direct children as other images could be nested in other content. */
  11115. .jp-RenderedHTMLCommon > img {
  11116. display: block;
  11117. margin-left: 0;
  11118. margin-right: 0;
  11119. margin-bottom: 1em;
  11120. }
  11121. /* Change color behind transparent images if they need it... */
  11122. [data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-light-background {
  11123. background-color: var(--jp-inverse-layout-color1);
  11124. }
  11125. [data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-dark-background {
  11126. background-color: var(--jp-inverse-layout-color1);
  11127. }
  11128. /* ...or leave it untouched if they don't */
  11129. [data-jp-theme-light='false'] .jp-RenderedImage img.jp-needs-dark-background {
  11130. }
  11131. [data-jp-theme-light='true'] .jp-RenderedImage img.jp-needs-light-background {
  11132. }
  11133. .jp-RenderedHTMLCommon img,
  11134. .jp-RenderedImage img,
  11135. .jp-RenderedHTMLCommon svg,
  11136. .jp-RenderedSVG svg {
  11137. max-width: 100%;
  11138. height: auto;
  11139. }
  11140. .jp-RenderedHTMLCommon img.jp-mod-unconfined,
  11141. .jp-RenderedImage img.jp-mod-unconfined,
  11142. .jp-RenderedHTMLCommon svg.jp-mod-unconfined,
  11143. .jp-RenderedSVG svg.jp-mod-unconfined {
  11144. max-width: none;
  11145. }
  11146. .jp-RenderedHTMLCommon .alert {
  11147. padding: var(--jp-notebook-padding);
  11148. border: var(--jp-border-width) solid transparent;
  11149. border-radius: var(--jp-border-radius);
  11150. margin-bottom: 1em;
  11151. }
  11152. .jp-RenderedHTMLCommon .alert-info {
  11153. color: var(--jp-info-color0);
  11154. background-color: var(--jp-info-color3);
  11155. border-color: var(--jp-info-color2);
  11156. }
  11157. .jp-RenderedHTMLCommon .alert-info hr {
  11158. border-color: var(--jp-info-color3);
  11159. }
  11160. .jp-RenderedHTMLCommon .alert-info > p:last-child,
  11161. .jp-RenderedHTMLCommon .alert-info > ul:last-child {
  11162. margin-bottom: 0;
  11163. }
  11164. .jp-RenderedHTMLCommon .alert-warning {
  11165. color: var(--jp-warn-color0);
  11166. background-color: var(--jp-warn-color3);
  11167. border-color: var(--jp-warn-color2);
  11168. }
  11169. .jp-RenderedHTMLCommon .alert-warning hr {
  11170. border-color: var(--jp-warn-color3);
  11171. }
  11172. .jp-RenderedHTMLCommon .alert-warning > p:last-child,
  11173. .jp-RenderedHTMLCommon .alert-warning > ul:last-child {
  11174. margin-bottom: 0;
  11175. }
  11176. .jp-RenderedHTMLCommon .alert-success {
  11177. color: var(--jp-success-color0);
  11178. background-color: var(--jp-success-color3);
  11179. border-color: var(--jp-success-color2);
  11180. }
  11181. .jp-RenderedHTMLCommon .alert-success hr {
  11182. border-color: var(--jp-success-color3);
  11183. }
  11184. .jp-RenderedHTMLCommon .alert-success > p:last-child,
  11185. .jp-RenderedHTMLCommon .alert-success > ul:last-child {
  11186. margin-bottom: 0;
  11187. }
  11188. .jp-RenderedHTMLCommon .alert-danger {
  11189. color: var(--jp-error-color0);
  11190. background-color: var(--jp-error-color3);
  11191. border-color: var(--jp-error-color2);
  11192. }
  11193. .jp-RenderedHTMLCommon .alert-danger hr {
  11194. border-color: var(--jp-error-color3);
  11195. }
  11196. .jp-RenderedHTMLCommon .alert-danger > p:last-child,
  11197. .jp-RenderedHTMLCommon .alert-danger > ul:last-child {
  11198. margin-bottom: 0;
  11199. }
  11200. .jp-RenderedHTMLCommon blockquote {
  11201. margin: 1em 2em;
  11202. padding: 0 1em;
  11203. border-left: 5px solid var(--jp-border-color2);
  11204. }
  11205. a.jp-InternalAnchorLink {
  11206. visibility: hidden;
  11207. margin-left: 8px;
  11208. color: var(--md-blue-800);
  11209. }
  11210. h1:hover .jp-InternalAnchorLink,
  11211. h2:hover .jp-InternalAnchorLink,
  11212. h3:hover .jp-InternalAnchorLink,
  11213. h4:hover .jp-InternalAnchorLink,
  11214. h5:hover .jp-InternalAnchorLink,
  11215. h6:hover .jp-InternalAnchorLink {
  11216. visibility: visible;
  11217. }
  11218. .jp-RenderedHTMLCommon kbd {
  11219. background-color: var(--jp-rendermime-table-row-background);
  11220. border: 1px solid var(--jp-border-color0);
  11221. border-bottom-color: var(--jp-border-color2);
  11222. border-radius: 3px;
  11223. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  11224. display: inline-block;
  11225. font-size: 0.8em;
  11226. line-height: 1em;
  11227. padding: 0.2em 0.5em;
  11228. }
  11229. /* Most direct children of .jp-RenderedHTMLCommon have a margin-bottom of 1.0.
  11230. * At the bottom of cells this is a bit too much as there is also spacing
  11231. * between cells. Going all the way to 0 gets too tight between markdown and
  11232. * code cells.
  11233. */
  11234. .jp-RenderedHTMLCommon > *:last-child {
  11235. margin-bottom: 0.5em;
  11236. }
  11237. /*-----------------------------------------------------------------------------
  11238. | Copyright (c) Jupyter Development Team.
  11239. | Distributed under the terms of the Modified BSD License.
  11240. |----------------------------------------------------------------------------*/
  11241. .jp-MimeDocument {
  11242. outline: none;
  11243. }
  11244. /*-----------------------------------------------------------------------------
  11245. | Copyright (c) Jupyter Development Team.
  11246. | Distributed under the terms of the Modified BSD License.
  11247. |----------------------------------------------------------------------------*/
  11248. /*-----------------------------------------------------------------------------
  11249. | Variables
  11250. |----------------------------------------------------------------------------*/
  11251. :root {
  11252. --jp-private-filebrowser-button-height: 28px;
  11253. --jp-private-filebrowser-button-width: 48px;
  11254. }
  11255. /*-----------------------------------------------------------------------------
  11256. | Copyright (c) Jupyter Development Team.
  11257. | Distributed under the terms of the Modified BSD License.
  11258. |----------------------------------------------------------------------------*/
  11259. .jp-FileBrowser {
  11260. display: flex;
  11261. flex-direction: column;
  11262. color: var(--jp-ui-font-color1);
  11263. background: var(--jp-layout-color1);
  11264. /* This is needed so that all font sizing of children done in ems is
  11265. * relative to this base size */
  11266. font-size: var(--jp-ui-font-size1);
  11267. }
  11268. .jp-FileBrowser-toolbar.jp-Toolbar {
  11269. border-bottom: none;
  11270. height: auto;
  11271. margin: var(--jp-toolbar-header-margin);
  11272. box-shadow: none;
  11273. }
  11274. .jp-BreadCrumbs {
  11275. flex: 0 0 auto;
  11276. margin: 8px 12px 8px 12px;
  11277. }
  11278. .jp-BreadCrumbs-item {
  11279. margin: 0px 2px;
  11280. padding: 0px 2px;
  11281. border-radius: var(--jp-border-radius);
  11282. cursor: pointer;
  11283. }
  11284. .jp-BreadCrumbs-item:hover {
  11285. background-color: var(--jp-layout-color2);
  11286. }
  11287. .jp-BreadCrumbs-item:first-child {
  11288. margin-left: 0px;
  11289. }
  11290. .jp-BreadCrumbs-item.jp-mod-dropTarget {
  11291. background-color: var(--jp-brand-color2);
  11292. opacity: 0.7;
  11293. }
  11294. /*-----------------------------------------------------------------------------
  11295. | Buttons
  11296. |----------------------------------------------------------------------------*/
  11297. .jp-FileBrowser-toolbar.jp-Toolbar {
  11298. padding: 0px;
  11299. margin: 8px 12px 0px 12px;
  11300. }
  11301. .jp-FileBrowser-toolbar.jp-Toolbar {
  11302. justify-content: flex-start;
  11303. }
  11304. .jp-FileBrowser-toolbar.jp-Toolbar .jp-Toolbar-item {
  11305. flex: 0 0 auto;
  11306. padding-left: 0px;
  11307. padding-right: 2px;
  11308. }
  11309. .jp-FileBrowser-toolbar.jp-Toolbar .jp-ToolbarButtonComponent {
  11310. width: 40px;
  11311. }
  11312. .jp-FileBrowser-toolbar.jp-Toolbar
  11313. .jp-Toolbar-item:first-child
  11314. .jp-ToolbarButtonComponent {
  11315. width: 72px;
  11316. background: var(--jp-brand-color1);
  11317. }
  11318. .jp-FileBrowser-toolbar.jp-Toolbar
  11319. .jp-Toolbar-item:first-child
  11320. .jp-ToolbarButtonComponent
  11321. .jp-icon3 {
  11322. fill: white;
  11323. }
  11324. /*-----------------------------------------------------------------------------
  11325. | Other styles
  11326. |----------------------------------------------------------------------------*/
  11327. .jp-FileDialog.jp-mod-conflict input {
  11328. color: red;
  11329. }
  11330. .jp-FileDialog .jp-new-name-title {
  11331. margin-top: 12px;
  11332. }
  11333. .jp-LastModified-hidden {
  11334. display: none;
  11335. }
  11336. .jp-FileBrowser-filterBox {
  11337. padding: 0px;
  11338. flex: 0 0 auto;
  11339. margin: 8px 12px 0px 12px;
  11340. }
  11341. /*-----------------------------------------------------------------------------
  11342. | DirListing
  11343. |----------------------------------------------------------------------------*/
  11344. .jp-DirListing {
  11345. flex: 1 1 auto;
  11346. display: flex;
  11347. flex-direction: column;
  11348. outline: 0;
  11349. }
  11350. .jp-DirListing-header {
  11351. flex: 0 0 auto;
  11352. display: flex;
  11353. flex-direction: row;
  11354. overflow: hidden;
  11355. border-top: var(--jp-border-width) solid var(--jp-border-color2);
  11356. border-bottom: var(--jp-border-width) solid var(--jp-border-color1);
  11357. box-shadow: var(--jp-toolbar-box-shadow);
  11358. z-index: 2;
  11359. }
  11360. .jp-DirListing-headerItem {
  11361. padding: 4px 12px 2px 12px;
  11362. font-weight: 500;
  11363. }
  11364. .jp-DirListing-headerItem:hover {
  11365. background: var(--jp-layout-color2);
  11366. }
  11367. .jp-DirListing-headerItem.jp-id-name {
  11368. flex: 1 0 84px;
  11369. }
  11370. .jp-DirListing-headerItem.jp-id-modified {
  11371. flex: 0 0 112px;
  11372. border-left: var(--jp-border-width) solid var(--jp-border-color2);
  11373. text-align: right;
  11374. }
  11375. .jp-id-narrow {
  11376. display: none;
  11377. flex: 0 0 5px;
  11378. padding: 4px 4px;
  11379. border-left: var(--jp-border-width) solid var(--jp-border-color2);
  11380. text-align: right;
  11381. color: var(--jp-border-color2);
  11382. }
  11383. .jp-DirListing-narrow .jp-id-narrow {
  11384. display: block;
  11385. }
  11386. .jp-DirListing-narrow .jp-id-modified,
  11387. .jp-DirListing-narrow .jp-DirListing-itemModified {
  11388. display: none;
  11389. }
  11390. .jp-DirListing-headerItem.jp-mod-selected {
  11391. font-weight: 600;
  11392. }
  11393. /* increase specificity to override bundled default */
  11394. .jp-DirListing-content {
  11395. flex: 1 1 auto;
  11396. margin: 0;
  11397. padding: 0;
  11398. list-style-type: none;
  11399. overflow: auto;
  11400. background-color: var(--jp-layout-color1);
  11401. }
  11402. .jp-DirListing-content mark {
  11403. color: var(--jp-ui-font-color0);
  11404. background-color: transparent;
  11405. font-weight: bold;
  11406. }
  11407. /* Style the directory listing content when a user drops a file to upload */
  11408. .jp-DirListing.jp-mod-native-drop .jp-DirListing-content {
  11409. outline: 5px dashed rgba(128, 128, 128, 0.5);
  11410. outline-offset: -10px;
  11411. cursor: copy;
  11412. }
  11413. .jp-DirListing-item {
  11414. display: flex;
  11415. flex-direction: row;
  11416. padding: 4px 12px;
  11417. -webkit-user-select: none;
  11418. -moz-user-select: none;
  11419. -ms-user-select: none;
  11420. user-select: none;
  11421. }
  11422. .jp-DirListing-item[data-is-dot] {
  11423. opacity: 75%;
  11424. }
  11425. .jp-DirListing-item.jp-mod-selected {
  11426. color: white;
  11427. background: var(--jp-brand-color1);
  11428. }
  11429. .jp-DirListing-item.jp-mod-dropTarget {
  11430. background: var(--jp-brand-color3);
  11431. }
  11432. .jp-DirListing-item:hover:not(.jp-mod-selected) {
  11433. background: var(--jp-layout-color2);
  11434. }
  11435. .jp-DirListing-itemIcon {
  11436. flex: 0 0 20px;
  11437. margin-right: 4px;
  11438. }
  11439. .jp-DirListing-itemText {
  11440. flex: 1 0 64px;
  11441. white-space: nowrap;
  11442. overflow: hidden;
  11443. text-overflow: ellipsis;
  11444. user-select: none;
  11445. }
  11446. .jp-DirListing-itemModified {
  11447. flex: 0 0 125px;
  11448. text-align: right;
  11449. }
  11450. .jp-DirListing-editor {
  11451. flex: 1 0 64px;
  11452. outline: none;
  11453. border: none;
  11454. }
  11455. .jp-DirListing-item.jp-mod-running .jp-DirListing-itemIcon:before {
  11456. color: limegreen;
  11457. content: '\25CF';
  11458. font-size: 8px;
  11459. position: absolute;
  11460. left: -8px;
  11461. }
  11462. .jp-DirListing-item.lm-mod-drag-image,
  11463. .jp-DirListing-item.jp-mod-selected.lm-mod-drag-image {
  11464. font-size: var(--jp-ui-font-size1);
  11465. padding-left: 4px;
  11466. margin-left: 4px;
  11467. width: 160px;
  11468. background-color: var(--jp-ui-inverse-font-color2);
  11469. box-shadow: var(--jp-elevation-z2);
  11470. border-radius: 0px;
  11471. color: var(--jp-ui-font-color1);
  11472. transform: translateX(-40%) translateY(-58%);
  11473. }
  11474. .jp-DirListing-deadSpace {
  11475. flex: 1 1 auto;
  11476. margin: 0;
  11477. padding: 0;
  11478. list-style-type: none;
  11479. overflow: auto;
  11480. background-color: var(--jp-layout-color1);
  11481. }
  11482. .jp-Document {
  11483. min-width: 120px;
  11484. min-height: 120px;
  11485. outline: none;
  11486. }
  11487. /*-----------------------------------------------------------------------------
  11488. | Copyright (c) Jupyter Development Team.
  11489. | Distributed under the terms of the Modified BSD License.
  11490. |----------------------------------------------------------------------------*/
  11491. /*-----------------------------------------------------------------------------
  11492. | Private CSS variables
  11493. |----------------------------------------------------------------------------*/
  11494. :root {
  11495. }
  11496. /*-----------------------------------------------------------------------------
  11497. | Main OutputArea
  11498. | OutputArea has a list of Outputs
  11499. |----------------------------------------------------------------------------*/
  11500. .jp-OutputArea {
  11501. overflow-y: auto;
  11502. }
  11503. .jp-OutputArea-child {
  11504. display: flex;
  11505. flex-direction: row;
  11506. }
  11507. .jp-OutputPrompt {
  11508. flex: 0 0 var(--jp-cell-prompt-width);
  11509. color: var(--jp-cell-outprompt-font-color);
  11510. font-family: var(--jp-cell-prompt-font-family);
  11511. padding: var(--jp-code-padding);
  11512. letter-spacing: var(--jp-cell-prompt-letter-spacing);
  11513. line-height: var(--jp-code-line-height);
  11514. font-size: var(--jp-code-font-size);
  11515. border: var(--jp-border-width) solid transparent;
  11516. opacity: var(--jp-cell-prompt-opacity);
  11517. /* Right align prompt text, don't wrap to handle large prompt numbers */
  11518. text-align: right;
  11519. white-space: nowrap;
  11520. overflow: hidden;
  11521. text-overflow: ellipsis;
  11522. /* Disable text selection */
  11523. -webkit-user-select: none;
  11524. -moz-user-select: none;
  11525. -ms-user-select: none;
  11526. user-select: none;
  11527. }
  11528. .jp-OutputArea-output {
  11529. height: auto;
  11530. overflow: auto;
  11531. user-select: text;
  11532. -moz-user-select: text;
  11533. -webkit-user-select: text;
  11534. -ms-user-select: text;
  11535. }
  11536. .jp-OutputArea-child .jp-OutputArea-output {
  11537. flex-grow: 1;
  11538. flex-shrink: 1;
  11539. }
  11540. /**
  11541. * Isolated output.
  11542. */
  11543. .jp-OutputArea-output.jp-mod-isolated {
  11544. width: 100%;
  11545. display: block;
  11546. }
  11547. /*
  11548. When drag events occur, `p-mod-override-cursor` is added to the body.
  11549. Because iframes steal all cursor events, the following two rules are necessary
  11550. to suppress pointer events while resize drags are occurring. There may be a
  11551. better solution to this problem.
  11552. */
  11553. body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated {
  11554. position: relative;
  11555. }
  11556. body.lm-mod-override-cursor .jp-OutputArea-output.jp-mod-isolated:before {
  11557. content: '';
  11558. position: absolute;
  11559. top: 0;
  11560. left: 0;
  11561. right: 0;
  11562. bottom: 0;
  11563. background: transparent;
  11564. }
  11565. /* pre */
  11566. .jp-OutputArea-output pre {
  11567. border: none;
  11568. margin: 0px;
  11569. padding: 0px;
  11570. overflow-x: auto;
  11571. overflow-y: auto;
  11572. word-break: break-all;
  11573. word-wrap: break-word;
  11574. white-space: pre-wrap;
  11575. }
  11576. /* tables */
  11577. .jp-OutputArea-output.jp-RenderedHTMLCommon table {
  11578. margin-left: 0;
  11579. margin-right: 0;
  11580. }
  11581. /* description lists */
  11582. .jp-OutputArea-output dl,
  11583. .jp-OutputArea-output dt,
  11584. .jp-OutputArea-output dd {
  11585. display: block;
  11586. }
  11587. .jp-OutputArea-output dl {
  11588. width: 100%;
  11589. overflow: hidden;
  11590. padding: 0;
  11591. margin: 0;
  11592. }
  11593. .jp-OutputArea-output dt {
  11594. font-weight: bold;
  11595. float: left;
  11596. width: 20%;
  11597. padding: 0;
  11598. margin: 0;
  11599. }
  11600. .jp-OutputArea-output dd {
  11601. float: left;
  11602. width: 80%;
  11603. padding: 0;
  11604. margin: 0;
  11605. }
  11606. /* Hide the gutter in case of
  11607. * - nested output areas (e.g. in the case of output widgets)
  11608. * - mirrored output areas
  11609. */
  11610. .jp-OutputArea .jp-OutputArea .jp-OutputArea-prompt {
  11611. display: none;
  11612. }
  11613. /*-----------------------------------------------------------------------------
  11614. | executeResult is added to any Output-result for the display of the object
  11615. | returned by a cell
  11616. |----------------------------------------------------------------------------*/
  11617. .jp-OutputArea-output.jp-OutputArea-executeResult {
  11618. margin-left: 0px;
  11619. flex: 1 1 auto;
  11620. }
  11621. /* Text output with the Out[] prompt needs a top padding to match the
  11622. * alignment of the Out[] prompt itself.
  11623. */
  11624. .jp-OutputArea-executeResult .jp-RenderedText.jp-OutputArea-output {
  11625. padding-top: var(--jp-code-padding);
  11626. border-top: var(--jp-border-width) solid transparent;
  11627. }
  11628. /*-----------------------------------------------------------------------------
  11629. | The Stdin output
  11630. |----------------------------------------------------------------------------*/
  11631. .jp-OutputArea-stdin {
  11632. line-height: var(--jp-code-line-height);
  11633. padding-top: var(--jp-code-padding);
  11634. display: flex;
  11635. }
  11636. .jp-Stdin-prompt {
  11637. color: var(--jp-content-font-color0);
  11638. padding-right: var(--jp-code-padding);
  11639. vertical-align: baseline;
  11640. flex: 0 0 auto;
  11641. }
  11642. .jp-Stdin-input {
  11643. font-family: var(--jp-code-font-family);
  11644. font-size: inherit;
  11645. color: inherit;
  11646. background-color: inherit;
  11647. width: 42%;
  11648. min-width: 200px;
  11649. /* make sure input baseline aligns with prompt */
  11650. vertical-align: baseline;
  11651. /* padding + margin = 0.5em between prompt and cursor */
  11652. padding: 0em 0.25em;
  11653. margin: 0em 0.25em;
  11654. flex: 0 0 70%;
  11655. }
  11656. .jp-Stdin-input:focus {
  11657. box-shadow: none;
  11658. }
  11659. /*-----------------------------------------------------------------------------
  11660. | Output Area View
  11661. |----------------------------------------------------------------------------*/
  11662. .jp-LinkedOutputView .jp-OutputArea {
  11663. height: 100%;
  11664. display: block;
  11665. }
  11666. .jp-LinkedOutputView .jp-OutputArea-output:only-child {
  11667. height: 100%;
  11668. }
  11669. /*-----------------------------------------------------------------------------
  11670. | Copyright (c) Jupyter Development Team.
  11671. | Distributed under the terms of the Modified BSD License.
  11672. |----------------------------------------------------------------------------*/
  11673. .jp-Collapser {
  11674. flex: 0 0 var(--jp-cell-collapser-width);
  11675. padding: 0px;
  11676. margin: 0px;
  11677. border: none;
  11678. outline: none;
  11679. background: transparent;
  11680. border-radius: var(--jp-border-radius);
  11681. opacity: 1;
  11682. }
  11683. .jp-Collapser-child {
  11684. display: block;
  11685. width: 100%;
  11686. box-sizing: border-box;
  11687. /* height: 100% doesn't work because the height of its parent is computed from content */
  11688. position: absolute;
  11689. top: 0px;
  11690. bottom: 0px;
  11691. }
  11692. /*-----------------------------------------------------------------------------
  11693. | Copyright (c) Jupyter Development Team.
  11694. | Distributed under the terms of the Modified BSD License.
  11695. |----------------------------------------------------------------------------*/
  11696. /*-----------------------------------------------------------------------------
  11697. | Header/Footer
  11698. |----------------------------------------------------------------------------*/
  11699. /* Hidden by zero height by default */
  11700. .jp-CellHeader,
  11701. .jp-CellFooter {
  11702. height: 0px;
  11703. width: 100%;
  11704. padding: 0px;
  11705. margin: 0px;
  11706. border: none;
  11707. outline: none;
  11708. background: transparent;
  11709. }
  11710. /*-----------------------------------------------------------------------------
  11711. | Copyright (c) Jupyter Development Team.
  11712. | Distributed under the terms of the Modified BSD License.
  11713. |----------------------------------------------------------------------------*/
  11714. /*-----------------------------------------------------------------------------
  11715. | Input
  11716. |----------------------------------------------------------------------------*/
  11717. /* All input areas */
  11718. .jp-InputArea {
  11719. display: flex;
  11720. flex-direction: row;
  11721. overflow: hidden;
  11722. }
  11723. .jp-InputArea-editor {
  11724. flex: 1 1 auto;
  11725. overflow: hidden;
  11726. }
  11727. .jp-InputArea-editor {
  11728. /* This is the non-active, default styling */
  11729. border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);
  11730. border-radius: 0px;
  11731. background: var(--jp-cell-editor-background);
  11732. }
  11733. .jp-InputPrompt {
  11734. flex: 0 0 var(--jp-cell-prompt-width);
  11735. color: var(--jp-cell-inprompt-font-color);
  11736. font-family: var(--jp-cell-prompt-font-family);
  11737. padding: var(--jp-code-padding);
  11738. letter-spacing: var(--jp-cell-prompt-letter-spacing);
  11739. opacity: var(--jp-cell-prompt-opacity);
  11740. line-height: var(--jp-code-line-height);
  11741. font-size: var(--jp-code-font-size);
  11742. border: var(--jp-border-width) solid transparent;
  11743. opacity: var(--jp-cell-prompt-opacity);
  11744. /* Right align prompt text, don't wrap to handle large prompt numbers */
  11745. text-align: right;
  11746. white-space: nowrap;
  11747. overflow: hidden;
  11748. text-overflow: ellipsis;
  11749. /* Disable text selection */
  11750. -webkit-user-select: none;
  11751. -moz-user-select: none;
  11752. -ms-user-select: none;
  11753. user-select: none;
  11754. }
  11755. /*-----------------------------------------------------------------------------
  11756. | Copyright (c) Jupyter Development Team.
  11757. | Distributed under the terms of the Modified BSD License.
  11758. |----------------------------------------------------------------------------*/
  11759. /*-----------------------------------------------------------------------------
  11760. | Placeholder
  11761. |----------------------------------------------------------------------------*/
  11762. .jp-Placeholder {
  11763. display: flex;
  11764. flex-direction: row;
  11765. flex: 1 1 auto;
  11766. }
  11767. .jp-Placeholder-prompt {
  11768. box-sizing: border-box;
  11769. }
  11770. .jp-Placeholder-content {
  11771. flex: 1 1 auto;
  11772. border: none;
  11773. background: transparent;
  11774. height: 20px;
  11775. box-sizing: border-box;
  11776. }
  11777. .jp-Placeholder-content .jp-MoreHorizIcon {
  11778. width: 32px;
  11779. height: 16px;
  11780. border: 1px solid transparent;
  11781. border-radius: var(--jp-border-radius);
  11782. }
  11783. .jp-Placeholder-content .jp-MoreHorizIcon:hover {
  11784. border: 1px solid var(--jp-border-color1);
  11785. box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  11786. background-color: var(--jp-layout-color0);
  11787. }
  11788. /*-----------------------------------------------------------------------------
  11789. | Copyright (c) Jupyter Development Team.
  11790. | Distributed under the terms of the Modified BSD License.
  11791. |----------------------------------------------------------------------------*/
  11792. /*-----------------------------------------------------------------------------
  11793. | Private CSS variables
  11794. |----------------------------------------------------------------------------*/
  11795. :root {
  11796. --jp-private-cell-scrolling-output-offset: 5px;
  11797. }
  11798. /*-----------------------------------------------------------------------------
  11799. | Cell
  11800. |----------------------------------------------------------------------------*/
  11801. .jp-Cell {
  11802. padding: var(--jp-cell-padding);
  11803. margin: 0px;
  11804. border: none;
  11805. outline: none;
  11806. background: transparent;
  11807. }
  11808. /*-----------------------------------------------------------------------------
  11809. | Common input/output
  11810. |----------------------------------------------------------------------------*/
  11811. .jp-Cell-inputWrapper,
  11812. .jp-Cell-outputWrapper {
  11813. display: flex;
  11814. flex-direction: row;
  11815. padding: 0px;
  11816. margin: 0px;
  11817. /* Added to reveal the box-shadow on the input and output collapsers. */
  11818. overflow: visible;
  11819. }
  11820. /* Only input/output areas inside cells */
  11821. .jp-Cell-inputArea,
  11822. .jp-Cell-outputArea {
  11823. flex: 1 1 auto;
  11824. }
  11825. /*-----------------------------------------------------------------------------
  11826. | Collapser
  11827. |----------------------------------------------------------------------------*/
  11828. /* Make the output collapser disappear when there is not output, but do so
  11829. * in a manner that leaves it in the layout and preserves its width.
  11830. */
  11831. .jp-Cell.jp-mod-noOutputs .jp-Cell-outputCollapser {
  11832. border: none !important;
  11833. background: transparent !important;
  11834. }
  11835. .jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputCollapser {
  11836. min-height: var(--jp-cell-collapser-min-height);
  11837. }
  11838. /*-----------------------------------------------------------------------------
  11839. | Output
  11840. |----------------------------------------------------------------------------*/
  11841. /* Put a space between input and output when there IS output */
  11842. .jp-Cell:not(.jp-mod-noOutputs) .jp-Cell-outputWrapper {
  11843. margin-top: 5px;
  11844. }
  11845. .jp-CodeCell.jp-mod-outputsScrolled .jp-Cell-outputArea {
  11846. overflow-y: auto;
  11847. max-height: 200px;
  11848. box-shadow: inset 0 0 6px 2px rgba(0, 0, 0, 0.3);
  11849. margin-left: var(--jp-private-cell-scrolling-output-offset);
  11850. }
  11851. .jp-CodeCell.jp-mod-outputsScrolled .jp-OutputArea-prompt {
  11852. flex: 0 0
  11853. calc(
  11854. var(--jp-cell-prompt-width) -
  11855. var(--jp-private-cell-scrolling-output-offset)
  11856. );
  11857. }
  11858. /*-----------------------------------------------------------------------------
  11859. | CodeCell
  11860. |----------------------------------------------------------------------------*/
  11861. /*-----------------------------------------------------------------------------
  11862. | MarkdownCell
  11863. |----------------------------------------------------------------------------*/
  11864. .jp-MarkdownOutput {
  11865. flex: 1 1 auto;
  11866. margin-top: 0;
  11867. margin-bottom: 0;
  11868. padding-left: var(--jp-code-padding);
  11869. }
  11870. .jp-MarkdownOutput.jp-RenderedHTMLCommon {
  11871. overflow: auto;
  11872. }
  11873. /*-----------------------------------------------------------------------------
  11874. | Copyright (c) Jupyter Development Team.
  11875. | Distributed under the terms of the Modified BSD License.
  11876. |----------------------------------------------------------------------------*/
  11877. /*-----------------------------------------------------------------------------
  11878. | Copyright (c) Jupyter Development Team.
  11879. | Distributed under the terms of the Modified BSD License.
  11880. |----------------------------------------------------------------------------*/
  11881. /*-----------------------------------------------------------------------------
  11882. | Variables
  11883. |----------------------------------------------------------------------------*/
  11884. /*-----------------------------------------------------------------------------
  11885. /*-----------------------------------------------------------------------------
  11886. | Styles
  11887. |----------------------------------------------------------------------------*/
  11888. .jp-NotebookPanel-toolbar {
  11889. padding: 2px;
  11890. }
  11891. .jp-Toolbar-item.jp-Notebook-toolbarCellType .jp-select-wrapper.jp-mod-focused {
  11892. border: none;
  11893. box-shadow: none;
  11894. }
  11895. .jp-Notebook-toolbarCellTypeDropdown select {
  11896. height: 24px;
  11897. font-size: var(--jp-ui-font-size1);
  11898. line-height: 14px;
  11899. border-radius: 0;
  11900. display: block;
  11901. }
  11902. .jp-Notebook-toolbarCellTypeDropdown span {
  11903. top: 5px !important;
  11904. }
  11905. /*-----------------------------------------------------------------------------
  11906. | Copyright (c) Jupyter Development Team.
  11907. | Distributed under the terms of the Modified BSD License.
  11908. |----------------------------------------------------------------------------*/
  11909. /*-----------------------------------------------------------------------------
  11910. | Private CSS variables
  11911. |----------------------------------------------------------------------------*/
  11912. :root {
  11913. --jp-private-notebook-dragImage-width: 304px;
  11914. --jp-private-notebook-dragImage-height: 36px;
  11915. --jp-private-notebook-selected-color: var(--md-blue-400);
  11916. --jp-private-notebook-active-color: var(--md-green-400);
  11917. }
  11918. /*-----------------------------------------------------------------------------
  11919. | Imports
  11920. |----------------------------------------------------------------------------*/
  11921. /*-----------------------------------------------------------------------------
  11922. | Notebook
  11923. |----------------------------------------------------------------------------*/
  11924. .jp-NotebookPanel {
  11925. display: block;
  11926. height: 100%;
  11927. }
  11928. .jp-NotebookPanel.jp-Document {
  11929. min-width: 240px;
  11930. min-height: 120px;
  11931. }
  11932. .jp-Notebook {
  11933. padding: var(--jp-notebook-padding);
  11934. outline: none;
  11935. overflow: auto;
  11936. background: var(--jp-layout-color0);
  11937. }
  11938. .jp-Notebook.jp-mod-scrollPastEnd::after {
  11939. display: block;
  11940. content: '';
  11941. min-height: var(--jp-notebook-scroll-padding);
  11942. }
  11943. .jp-Notebook .jp-Cell {
  11944. overflow: visible;
  11945. }
  11946. .jp-Notebook .jp-Cell .jp-InputPrompt {
  11947. cursor: move;
  11948. }
  11949. /*-----------------------------------------------------------------------------
  11950. | Notebook state related styling
  11951. |
  11952. | The notebook and cells each have states, here are the possibilities:
  11953. |
  11954. | - Notebook
  11955. | - Command
  11956. | - Edit
  11957. | - Cell
  11958. | - None
  11959. | - Active (only one can be active)
  11960. | - Selected (the cells actions are applied to)
  11961. | - Multiselected (when multiple selected, the cursor)
  11962. | - No outputs
  11963. |----------------------------------------------------------------------------*/
  11964. /* Command or edit modes */
  11965. .jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-InputPrompt {
  11966. opacity: var(--jp-cell-prompt-not-active-opacity);
  11967. color: var(--jp-cell-prompt-not-active-font-color);
  11968. }
  11969. .jp-Notebook .jp-Cell:not(.jp-mod-active) .jp-OutputPrompt {
  11970. opacity: var(--jp-cell-prompt-not-active-opacity);
  11971. color: var(--jp-cell-prompt-not-active-font-color);
  11972. }
  11973. /* cell is active */
  11974. .jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser {
  11975. background: var(--jp-brand-color1);
  11976. }
  11977. /* collapser is hovered */
  11978. .jp-Notebook .jp-Cell .jp-Collapser:hover {
  11979. box-shadow: var(--jp-elevation-z2);
  11980. background: var(--jp-brand-color1);
  11981. opacity: var(--jp-cell-collapser-not-active-hover-opacity);
  11982. }
  11983. /* cell is active and collapser is hovered */
  11984. .jp-Notebook .jp-Cell.jp-mod-active .jp-Collapser:hover {
  11985. background: var(--jp-brand-color0);
  11986. opacity: 1;
  11987. }
  11988. /* Command mode */
  11989. .jp-Notebook.jp-mod-commandMode .jp-Cell.jp-mod-selected {
  11990. background: var(--jp-notebook-multiselected-color);
  11991. }
  11992. .jp-Notebook.jp-mod-commandMode
  11993. .jp-Cell.jp-mod-active.jp-mod-selected:not(.jp-mod-multiSelected) {
  11994. background: transparent;
  11995. }
  11996. /* Edit mode */
  11997. .jp-Notebook.jp-mod-editMode .jp-Cell.jp-mod-active .jp-InputArea-editor {
  11998. border: var(--jp-border-width) solid var(--jp-cell-editor-active-border-color);
  11999. box-shadow: var(--jp-input-box-shadow);
  12000. background-color: var(--jp-cell-editor-active-background);
  12001. }
  12002. /*-----------------------------------------------------------------------------
  12003. | Notebook drag and drop
  12004. |----------------------------------------------------------------------------*/
  12005. .jp-Notebook-cell.jp-mod-dropSource {
  12006. opacity: 0.5;
  12007. }
  12008. .jp-Notebook-cell.jp-mod-dropTarget,
  12009. .jp-Notebook.jp-mod-commandMode
  12010. .jp-Notebook-cell.jp-mod-active.jp-mod-selected.jp-mod-dropTarget {
  12011. border-top-color: var(--jp-private-notebook-selected-color);
  12012. border-top-style: solid;
  12013. border-top-width: 2px;
  12014. }
  12015. .jp-dragImage {
  12016. display: flex;
  12017. flex-direction: row;
  12018. width: var(--jp-private-notebook-dragImage-width);
  12019. height: var(--jp-private-notebook-dragImage-height);
  12020. border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);
  12021. background: var(--jp-cell-editor-background);
  12022. overflow: visible;
  12023. }
  12024. .jp-dragImage-singlePrompt {
  12025. box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);
  12026. }
  12027. .jp-dragImage .jp-dragImage-content {
  12028. flex: 1 1 auto;
  12029. z-index: 2;
  12030. font-size: var(--jp-code-font-size);
  12031. font-family: var(--jp-code-font-family);
  12032. line-height: var(--jp-code-line-height);
  12033. padding: var(--jp-code-padding);
  12034. border: var(--jp-border-width) solid var(--jp-cell-editor-border-color);
  12035. background: var(--jp-cell-editor-background-color);
  12036. color: var(--jp-content-font-color3);
  12037. text-align: left;
  12038. margin: 4px 4px 4px 0px;
  12039. }
  12040. .jp-dragImage .jp-dragImage-prompt {
  12041. flex: 0 0 auto;
  12042. min-width: 36px;
  12043. color: var(--jp-cell-inprompt-font-color);
  12044. padding: var(--jp-code-padding);
  12045. padding-left: 12px;
  12046. font-family: var(--jp-cell-prompt-font-family);
  12047. letter-spacing: var(--jp-cell-prompt-letter-spacing);
  12048. line-height: 1.9;
  12049. font-size: var(--jp-code-font-size);
  12050. border: var(--jp-border-width) solid transparent;
  12051. }
  12052. .jp-dragImage-multipleBack {
  12053. z-index: -1;
  12054. position: absolute;
  12055. height: 32px;
  12056. width: 300px;
  12057. top: 8px;
  12058. left: 8px;
  12059. background: var(--jp-layout-color2);
  12060. border: var(--jp-border-width) solid var(--jp-input-border-color);
  12061. box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.12);
  12062. }
  12063. /*-----------------------------------------------------------------------------
  12064. | Cell toolbar
  12065. |----------------------------------------------------------------------------*/
  12066. .jp-NotebookTools {
  12067. display: block;
  12068. min-width: var(--jp-sidebar-min-width);
  12069. color: var(--jp-ui-font-color1);
  12070. background: var(--jp-layout-color1);
  12071. /* This is needed so that all font sizing of children done in ems is
  12072. * relative to this base size */
  12073. font-size: var(--jp-ui-font-size1);
  12074. overflow: auto;
  12075. }
  12076. .jp-NotebookTools-tool {
  12077. padding: 0px 12px 0 12px;
  12078. }
  12079. .jp-ActiveCellTool {
  12080. padding: 12px;
  12081. background-color: var(--jp-layout-color1);
  12082. border-top: none !important;
  12083. }
  12084. .jp-ActiveCellTool .jp-InputArea-prompt {
  12085. flex: 0 0 auto;
  12086. padding-left: 0px;
  12087. }
  12088. .jp-ActiveCellTool .jp-InputArea-editor {
  12089. flex: 1 1 auto;
  12090. background: var(--jp-cell-editor-background);
  12091. border-color: var(--jp-cell-editor-border-color);
  12092. }
  12093. .jp-ActiveCellTool .jp-InputArea-editor .CodeMirror {
  12094. background: transparent;
  12095. }
  12096. .jp-MetadataEditorTool {
  12097. flex-direction: column;
  12098. padding: 12px 0px 12px 0px;
  12099. }
  12100. .jp-RankedPanel > :not(:first-child) {
  12101. margin-top: 12px;
  12102. }
  12103. .jp-KeySelector select.jp-mod-styled {
  12104. font-size: var(--jp-ui-font-size1);
  12105. color: var(--jp-ui-font-color0);
  12106. border: var(--jp-border-width) solid var(--jp-border-color1);
  12107. }
  12108. .jp-KeySelector label,
  12109. .jp-MetadataEditorTool label {
  12110. line-height: 1.4;
  12111. }
  12112. .jp-NotebookTools .jp-select-wrapper {
  12113. margin-top: 4px;
  12114. margin-bottom: 0px;
  12115. }
  12116. .jp-NotebookTools .jp-Collapse {
  12117. margin-top: 16px;
  12118. }
  12119. /*-----------------------------------------------------------------------------
  12120. | Presentation Mode (.jp-mod-presentationMode)
  12121. |----------------------------------------------------------------------------*/
  12122. .jp-mod-presentationMode .jp-Notebook {
  12123. --jp-content-font-size1: var(--jp-content-presentation-font-size1);
  12124. --jp-code-font-size: var(--jp-code-presentation-font-size);
  12125. }
  12126. .jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-InputPrompt,
  12127. .jp-mod-presentationMode .jp-Notebook .jp-Cell .jp-OutputPrompt {
  12128. flex: 0 0 110px;
  12129. }
  12130. </style>
  12131. <style type="text/css">
  12132. /*-----------------------------------------------------------------------------
  12133. | Copyright (c) Jupyter Development Team.
  12134. | Distributed under the terms of the Modified BSD License.
  12135. |----------------------------------------------------------------------------*/
  12136. /*
  12137. The following CSS variables define the main, public API for styling JupyterLab.
  12138. These variables should be used by all plugins wherever possible. In other
  12139. words, plugins should not define custom colors, sizes, etc unless absolutely
  12140. necessary. This enables users to change the visual theme of JupyterLab
  12141. by changing these variables.
  12142. Many variables appear in an ordered sequence (0,1,2,3). These sequences
  12143. are designed to work well together, so for example, `--jp-border-color1` should
  12144. be used with `--jp-layout-color1`. The numbers have the following meanings:
  12145. * 0: super-primary, reserved for special emphasis
  12146. * 1: primary, most important under normal situations
  12147. * 2: secondary, next most important under normal situations
  12148. * 3: tertiary, next most important under normal situations
  12149. Throughout JupyterLab, we are mostly following principles from Google's
  12150. Material Design when selecting colors. We are not, however, following
  12151. all of MD as it is not optimized for dense, information rich UIs.
  12152. */
  12153. :root {
  12154. /* Elevation
  12155. *
  12156. * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:
  12157. *
  12158. * https://github.com/material-components/material-components-web
  12159. * https://material-components-web.appspot.com/elevation.html
  12160. */
  12161. --jp-shadow-base-lightness: 0;
  12162. --jp-shadow-umbra-color: rgba(
  12163. var(--jp-shadow-base-lightness),
  12164. var(--jp-shadow-base-lightness),
  12165. var(--jp-shadow-base-lightness),
  12166. 0.2
  12167. );
  12168. --jp-shadow-penumbra-color: rgba(
  12169. var(--jp-shadow-base-lightness),
  12170. var(--jp-shadow-base-lightness),
  12171. var(--jp-shadow-base-lightness),
  12172. 0.14
  12173. );
  12174. --jp-shadow-ambient-color: rgba(
  12175. var(--jp-shadow-base-lightness),
  12176. var(--jp-shadow-base-lightness),
  12177. var(--jp-shadow-base-lightness),
  12178. 0.12
  12179. );
  12180. --jp-elevation-z0: none;
  12181. --jp-elevation-z1: 0px 2px 1px -1px var(--jp-shadow-umbra-color),
  12182. 0px 1px 1px 0px var(--jp-shadow-penumbra-color),
  12183. 0px 1px 3px 0px var(--jp-shadow-ambient-color);
  12184. --jp-elevation-z2: 0px 3px 1px -2px var(--jp-shadow-umbra-color),
  12185. 0px 2px 2px 0px var(--jp-shadow-penumbra-color),
  12186. 0px 1px 5px 0px var(--jp-shadow-ambient-color);
  12187. --jp-elevation-z4: 0px 2px 4px -1px var(--jp-shadow-umbra-color),
  12188. 0px 4px 5px 0px var(--jp-shadow-penumbra-color),
  12189. 0px 1px 10px 0px var(--jp-shadow-ambient-color);
  12190. --jp-elevation-z6: 0px 3px 5px -1px var(--jp-shadow-umbra-color),
  12191. 0px 6px 10px 0px var(--jp-shadow-penumbra-color),
  12192. 0px 1px 18px 0px var(--jp-shadow-ambient-color);
  12193. --jp-elevation-z8: 0px 5px 5px -3px var(--jp-shadow-umbra-color),
  12194. 0px 8px 10px 1px var(--jp-shadow-penumbra-color),
  12195. 0px 3px 14px 2px var(--jp-shadow-ambient-color);
  12196. --jp-elevation-z12: 0px 7px 8px -4px var(--jp-shadow-umbra-color),
  12197. 0px 12px 17px 2px var(--jp-shadow-penumbra-color),
  12198. 0px 5px 22px 4px var(--jp-shadow-ambient-color);
  12199. --jp-elevation-z16: 0px 8px 10px -5px var(--jp-shadow-umbra-color),
  12200. 0px 16px 24px 2px var(--jp-shadow-penumbra-color),
  12201. 0px 6px 30px 5px var(--jp-shadow-ambient-color);
  12202. --jp-elevation-z20: 0px 10px 13px -6px var(--jp-shadow-umbra-color),
  12203. 0px 20px 31px 3px var(--jp-shadow-penumbra-color),
  12204. 0px 8px 38px 7px var(--jp-shadow-ambient-color);
  12205. --jp-elevation-z24: 0px 11px 15px -7px var(--jp-shadow-umbra-color),
  12206. 0px 24px 38px 3px var(--jp-shadow-penumbra-color),
  12207. 0px 9px 46px 8px var(--jp-shadow-ambient-color);
  12208. /* Borders
  12209. *
  12210. * The following variables, specify the visual styling of borders in JupyterLab.
  12211. */
  12212. --jp-border-width: 1px;
  12213. --jp-border-color0: var(--md-grey-400);
  12214. --jp-border-color1: var(--md-grey-400);
  12215. --jp-border-color2: var(--md-grey-300);
  12216. --jp-border-color3: var(--md-grey-200);
  12217. --jp-border-radius: 2px;
  12218. /* UI Fonts
  12219. *
  12220. * The UI font CSS variables are used for the typography all of the JupyterLab
  12221. * user interface elements that are not directly user generated content.
  12222. *
  12223. * The font sizing here is done assuming that the body font size of --jp-ui-font-size1
  12224. * is applied to a parent element. When children elements, such as headings, are sized
  12225. * in em all things will be computed relative to that body size.
  12226. */
  12227. --jp-ui-font-scale-factor: 1.2;
  12228. --jp-ui-font-size0: 0.83333em;
  12229. --jp-ui-font-size1: 13px; /* Base font size */
  12230. --jp-ui-font-size2: 1.2em;
  12231. --jp-ui-font-size3: 1.44em;
  12232. --jp-ui-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,
  12233. Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  12234. /*
  12235. * Use these font colors against the corresponding main layout colors.
  12236. * In a light theme, these go from dark to light.
  12237. */
  12238. /* Defaults use Material Design specification */
  12239. --jp-ui-font-color0: rgba(0, 0, 0, 1);
  12240. --jp-ui-font-color1: rgba(0, 0, 0, 0.87);
  12241. --jp-ui-font-color2: rgba(0, 0, 0, 0.54);
  12242. --jp-ui-font-color3: rgba(0, 0, 0, 0.38);
  12243. /*
  12244. * Use these against the brand/accent/warn/error colors.
  12245. * These will typically go from light to darker, in both a dark and light theme.
  12246. */
  12247. --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);
  12248. --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);
  12249. --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);
  12250. --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);
  12251. /* Content Fonts
  12252. *
  12253. * Content font variables are used for typography of user generated content.
  12254. *
  12255. * The font sizing here is done assuming that the body font size of --jp-content-font-size1
  12256. * is applied to a parent element. When children elements, such as headings, are sized
  12257. * in em all things will be computed relative to that body size.
  12258. */
  12259. --jp-content-line-height: 1.6;
  12260. --jp-content-font-scale-factor: 1.2;
  12261. --jp-content-font-size0: 0.83333em;
  12262. --jp-content-font-size1: 14px; /* Base font size */
  12263. --jp-content-font-size2: 1.2em;
  12264. --jp-content-font-size3: 1.44em;
  12265. --jp-content-font-size4: 1.728em;
  12266. --jp-content-font-size5: 2.0736em;
  12267. /* This gives a magnification of about 125% in presentation mode over normal. */
  12268. --jp-content-presentation-font-size1: 17px;
  12269. --jp-content-heading-line-height: 1;
  12270. --jp-content-heading-margin-top: 1.2em;
  12271. --jp-content-heading-margin-bottom: 0.8em;
  12272. --jp-content-heading-font-weight: 500;
  12273. /* Defaults use Material Design specification */
  12274. --jp-content-font-color0: rgba(0, 0, 0, 1);
  12275. --jp-content-font-color1: rgba(0, 0, 0, 0.87);
  12276. --jp-content-font-color2: rgba(0, 0, 0, 0.54);
  12277. --jp-content-font-color3: rgba(0, 0, 0, 0.38);
  12278. --jp-content-link-color: var(--md-blue-700);
  12279. --jp-content-font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
  12280. Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
  12281. 'Segoe UI Symbol';
  12282. /*
  12283. * Code Fonts
  12284. *
  12285. * Code font variables are used for typography of code and other monospaces content.
  12286. */
  12287. --jp-code-font-size: 13px;
  12288. --jp-code-line-height: 1.3077; /* 17px for 13px base */
  12289. --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */
  12290. --jp-code-font-family-default: Menlo, Consolas, 'DejaVu Sans Mono', monospace;
  12291. --jp-code-font-family: var(--jp-code-font-family-default);
  12292. /* This gives a magnification of about 125% in presentation mode over normal. */
  12293. --jp-code-presentation-font-size: 16px;
  12294. /* may need to tweak cursor width if you change font size */
  12295. --jp-code-cursor-width0: 1.4px;
  12296. --jp-code-cursor-width1: 2px;
  12297. --jp-code-cursor-width2: 4px;
  12298. /* Layout
  12299. *
  12300. * The following are the main layout colors use in JupyterLab. In a light
  12301. * theme these would go from light to dark.
  12302. */
  12303. --jp-layout-color0: white;
  12304. --jp-layout-color1: white;
  12305. --jp-layout-color2: var(--md-grey-200);
  12306. --jp-layout-color3: var(--md-grey-400);
  12307. --jp-layout-color4: var(--md-grey-600);
  12308. /* Inverse Layout
  12309. *
  12310. * The following are the inverse layout colors use in JupyterLab. In a light
  12311. * theme these would go from dark to light.
  12312. */
  12313. --jp-inverse-layout-color0: #111111;
  12314. --jp-inverse-layout-color1: var(--md-grey-900);
  12315. --jp-inverse-layout-color2: var(--md-grey-800);
  12316. --jp-inverse-layout-color3: var(--md-grey-700);
  12317. --jp-inverse-layout-color4: var(--md-grey-600);
  12318. /* Brand/accent */
  12319. --jp-brand-color0: var(--md-blue-700);
  12320. --jp-brand-color1: var(--md-blue-500);
  12321. --jp-brand-color2: var(--md-blue-300);
  12322. --jp-brand-color3: var(--md-blue-100);
  12323. --jp-brand-color4: var(--md-blue-50);
  12324. --jp-accent-color0: var(--md-green-700);
  12325. --jp-accent-color1: var(--md-green-500);
  12326. --jp-accent-color2: var(--md-green-300);
  12327. --jp-accent-color3: var(--md-green-100);
  12328. /* State colors (warn, error, success, info) */
  12329. --jp-warn-color0: var(--md-orange-700);
  12330. --jp-warn-color1: var(--md-orange-500);
  12331. --jp-warn-color2: var(--md-orange-300);
  12332. --jp-warn-color3: var(--md-orange-100);
  12333. --jp-error-color0: var(--md-red-700);
  12334. --jp-error-color1: var(--md-red-500);
  12335. --jp-error-color2: var(--md-red-300);
  12336. --jp-error-color3: var(--md-red-100);
  12337. --jp-success-color0: var(--md-green-700);
  12338. --jp-success-color1: var(--md-green-500);
  12339. --jp-success-color2: var(--md-green-300);
  12340. --jp-success-color3: var(--md-green-100);
  12341. --jp-info-color0: var(--md-cyan-700);
  12342. --jp-info-color1: var(--md-cyan-500);
  12343. --jp-info-color2: var(--md-cyan-300);
  12344. --jp-info-color3: var(--md-cyan-100);
  12345. /* Cell specific styles */
  12346. --jp-cell-padding: 5px;
  12347. --jp-cell-collapser-width: 8px;
  12348. --jp-cell-collapser-min-height: 20px;
  12349. --jp-cell-collapser-not-active-hover-opacity: 0.6;
  12350. --jp-cell-editor-background: var(--md-grey-100);
  12351. --jp-cell-editor-border-color: var(--md-grey-300);
  12352. --jp-cell-editor-box-shadow: inset 0 0 2px var(--md-blue-300);
  12353. --jp-cell-editor-active-background: var(--jp-layout-color0);
  12354. --jp-cell-editor-active-border-color: var(--jp-brand-color1);
  12355. --jp-cell-prompt-width: 64px;
  12356. --jp-cell-prompt-font-family: var(--jp-code-font-family-default);
  12357. --jp-cell-prompt-letter-spacing: 0px;
  12358. --jp-cell-prompt-opacity: 1;
  12359. --jp-cell-prompt-not-active-opacity: 0.5;
  12360. --jp-cell-prompt-not-active-font-color: var(--md-grey-700);
  12361. /* A custom blend of MD grey and blue 600
  12362. * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */
  12363. --jp-cell-inprompt-font-color: #307fc1;
  12364. /* A custom blend of MD grey and orange 600
  12365. * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */
  12366. --jp-cell-outprompt-font-color: #bf5b3d;
  12367. /* Notebook specific styles */
  12368. --jp-notebook-padding: 10px;
  12369. --jp-notebook-select-background: var(--jp-layout-color1);
  12370. --jp-notebook-multiselected-color: var(--md-blue-50);
  12371. /* The scroll padding is calculated to fill enough space at the bottom of the
  12372. notebook to show one single-line cell (with appropriate padding) at the top
  12373. when the notebook is scrolled all the way to the bottom. We also subtract one
  12374. pixel so that no scrollbar appears if we have just one single-line cell in the
  12375. notebook. This padding is to enable a 'scroll past end' feature in a notebook.
  12376. */
  12377. --jp-notebook-scroll-padding: calc(
  12378. 100% - var(--jp-code-font-size) * var(--jp-code-line-height) -
  12379. var(--jp-code-padding) - var(--jp-cell-padding) - 1px
  12380. );
  12381. /* Rendermime styles */
  12382. --jp-rendermime-error-background: #fdd;
  12383. --jp-rendermime-table-row-background: var(--md-grey-100);
  12384. --jp-rendermime-table-row-hover-background: var(--md-light-blue-50);
  12385. /* Dialog specific styles */
  12386. --jp-dialog-background: rgba(0, 0, 0, 0.25);
  12387. /* Console specific styles */
  12388. --jp-console-padding: 10px;
  12389. /* Toolbar specific styles */
  12390. --jp-toolbar-border-color: var(--jp-border-color1);
  12391. --jp-toolbar-micro-height: 8px;
  12392. --jp-toolbar-background: var(--jp-layout-color1);
  12393. --jp-toolbar-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.24);
  12394. --jp-toolbar-header-margin: 4px 4px 0px 4px;
  12395. --jp-toolbar-active-background: var(--md-grey-300);
  12396. /* Input field styles */
  12397. --jp-input-box-shadow: inset 0 0 2px var(--md-blue-300);
  12398. --jp-input-active-background: var(--jp-layout-color1);
  12399. --jp-input-hover-background: var(--jp-layout-color1);
  12400. --jp-input-background: var(--md-grey-100);
  12401. --jp-input-border-color: var(--jp-border-color1);
  12402. --jp-input-active-border-color: var(--jp-brand-color1);
  12403. --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);
  12404. /* General editor styles */
  12405. --jp-editor-selected-background: #d9d9d9;
  12406. --jp-editor-selected-focused-background: #d7d4f0;
  12407. --jp-editor-cursor-color: var(--jp-ui-font-color0);
  12408. /* Code mirror specific styles */
  12409. --jp-mirror-editor-keyword-color: #008000;
  12410. --jp-mirror-editor-atom-color: #88f;
  12411. --jp-mirror-editor-number-color: #080;
  12412. --jp-mirror-editor-def-color: #00f;
  12413. --jp-mirror-editor-variable-color: var(--md-grey-900);
  12414. --jp-mirror-editor-variable-2-color: #05a;
  12415. --jp-mirror-editor-variable-3-color: #085;
  12416. --jp-mirror-editor-punctuation-color: #05a;
  12417. --jp-mirror-editor-property-color: #05a;
  12418. --jp-mirror-editor-operator-color: #aa22ff;
  12419. --jp-mirror-editor-comment-color: #408080;
  12420. --jp-mirror-editor-string-color: #ba2121;
  12421. --jp-mirror-editor-string-2-color: #708;
  12422. --jp-mirror-editor-meta-color: #aa22ff;
  12423. --jp-mirror-editor-qualifier-color: #555;
  12424. --jp-mirror-editor-builtin-color: #008000;
  12425. --jp-mirror-editor-bracket-color: #997;
  12426. --jp-mirror-editor-tag-color: #170;
  12427. --jp-mirror-editor-attribute-color: #00c;
  12428. --jp-mirror-editor-header-color: blue;
  12429. --jp-mirror-editor-quote-color: #090;
  12430. --jp-mirror-editor-link-color: #00c;
  12431. --jp-mirror-editor-error-color: #f00;
  12432. --jp-mirror-editor-hr-color: #999;
  12433. /* Vega extension styles */
  12434. --jp-vega-background: white;
  12435. /* Sidebar-related styles */
  12436. --jp-sidebar-min-width: 250px;
  12437. /* Search-related styles */
  12438. --jp-search-toggle-off-opacity: 0.5;
  12439. --jp-search-toggle-hover-opacity: 0.8;
  12440. --jp-search-toggle-on-opacity: 1;
  12441. --jp-search-selected-match-background-color: rgb(245, 200, 0);
  12442. --jp-search-selected-match-color: black;
  12443. --jp-search-unselected-match-background-color: var(
  12444. --jp-inverse-layout-color0
  12445. );
  12446. --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);
  12447. /* Icon colors that work well with light or dark backgrounds */
  12448. --jp-icon-contrast-color0: var(--md-purple-600);
  12449. --jp-icon-contrast-color1: var(--md-green-600);
  12450. --jp-icon-contrast-color2: var(--md-pink-600);
  12451. --jp-icon-contrast-color3: var(--md-blue-600);
  12452. }
  12453. </style>
  12454. <style type="text/css">
  12455. a.anchor-link {
  12456. display: none;
  12457. }
  12458. .highlight {
  12459. margin: 0.4em;
  12460. }
  12461. .jp-Notebook {
  12462. padding: 0;
  12463. }
  12464. :root {
  12465. --jp-ui-font-size1: 20px; /* instead of 14px */
  12466. --jp-content-font-size1: 20px; /* instead of 14px */
  12467. --jp-code-font-size: 19px; /* instead of 13px */
  12468. --jp-cell-prompt-width: 110px; /* instead of 64px */
  12469. }
  12470. @media print {
  12471. body {
  12472. margin: 0;
  12473. }
  12474. }
  12475. </style>
  12476. <style type="text/css">
  12477. /* Overrides of notebook CSS for static HTML export */
  12478. .reveal {
  12479. font-size: 160%;
  12480. }
  12481. .reveal pre {
  12482. width: inherit;
  12483. padding: 0.4em;
  12484. margin: 0px;
  12485. font-family: monospace, sans-serif;
  12486. font-size: 80%;
  12487. box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  12488. }
  12489. .reveal pre code {
  12490. padding: 0px;
  12491. }
  12492. .reveal section img {
  12493. border: 0px solid black;
  12494. box-shadow: 0 0 10px rgba(0, 0, 0, 0);
  12495. }
  12496. .reveal i {
  12497. font-style: normal;
  12498. font-family: FontAwesome;
  12499. font-size: 2em;
  12500. }
  12501. .reveal .slides {
  12502. text-align: left;
  12503. }
  12504. .reveal.fade {
  12505. opacity: 1;
  12506. }
  12507. .reveal .progress {
  12508. position: static;
  12509. }
  12510. div.jp-InputArea-editor {
  12511. padding: 0.06em;
  12512. }
  12513. div.code_cell {
  12514. background-color: transparent;
  12515. }
  12516. div.output_area pre {
  12517. font-family: monospace, sans-serif;
  12518. font-size: 80%;
  12519. }
  12520. div.jp-OutputPrompt {
  12521. /* 5px right shift to account for margin in parent container */
  12522. margin: 5px 5px 0 0;
  12523. }
  12524. /* Reveal navigation controls */
  12525. .reveal .controls .navigate-left,
  12526. .reveal .controls .navigate-left.enabled {
  12527. border-right-color: #727272;
  12528. }
  12529. .reveal .controls .navigate-left.enabled:hover,
  12530. .reveal .controls .navigate-left.enabled.enabled:hover {
  12531. border-right-color: #dfdfdf;
  12532. }
  12533. .reveal .controls .navigate-right,
  12534. .reveal .controls .navigate-right.enabled {
  12535. border-left-color: #727272;
  12536. }
  12537. .reveal .controls .navigate-right.enabled:hover,
  12538. .reveal .controls .navigate-right.enabled.enabled:hover {
  12539. border-left-color: #dfdfdf;
  12540. }
  12541. .reveal .controls .navigate-up,
  12542. .reveal .controls .navigate-up.enabled {
  12543. border-bottom-color: #727272;
  12544. }
  12545. .reveal .controls .navigate-up.enabled:hover,
  12546. .reveal .controls .navigate-up.enabled.enabled:hover {
  12547. border-bottom-color: #dfdfdf;
  12548. }
  12549. .reveal .controls .navigate-down,
  12550. .reveal .controls .navigate-down.enabled {
  12551. border-top-color: #727272;
  12552. }
  12553. .reveal .controls .navigate-down.enabled:hover,
  12554. .reveal .controls .navigate-down.enabled.enabled:hover {
  12555. border-top-color: #dfdfdf;
  12556. }
  12557. .reveal .progress span {
  12558. background: #727272;
  12559. }
  12560. /* Scrollbars */
  12561. ::-webkit-scrollbar
  12562. {
  12563. width: 6px;
  12564. height: 6px;
  12565. }
  12566. ::-webkit-scrollbar *
  12567. {
  12568. background:transparent;
  12569. }
  12570. ::-webkit-scrollbar-thumb
  12571. {
  12572. background: #727272 !important;
  12573. }
  12574. </style>
  12575. </head>
  12576. <body class="jp-Notebook" data-jp-theme-light="true" data-jp-theme-name="JupyterLab Light">
  12577. <div class="reveal">
  12578. <div class="slides"><section><section>
  12579. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12580. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12581. <h1 id="Getting-Real---Investigating-a-published-ephys-dataset">Getting Real - Investigating a published ephys dataset<a class="anchor-link" href="#Getting-Real---Investigating-a-published-ephys-dataset">&#182;</a></h1>
  12582. </div>
  12583. </div></section><section>
  12584. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12585. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12586. <h2 id="The-Reach-2-Grasp-experiment">The Reach-2-Grasp experiment<a class="anchor-link" href="#The-Reach-2-Grasp-experiment">&#182;</a></h2><p><img src="reach_to_grasp_material/R2G_task_overview.png" alt="R2G_overview"></p>
  12587. <p>Full data manuscript and dataset</p>
  12588. <ul>
  12589. <li>Brochier, T., Zehl, L., Hao, Y., Duret, M., Sprenger, J., Denker, M., Grün, S. &amp; Riehle, A. (2018). Massively parallel recordings in macaque motor cortex during an instructed delayed reach-to-grasp task, Scientific Data, 5, 180055. <a href="http://doi.org/10.1038/sdata.2018.55">http://doi.org/10.1038/sdata.2018.55</a></li>
  12590. <li><a href="https://gin.g-node.org/INT/multielectrode_grasp">https://gin.g-node.org/INT/multielectrode_grasp</a></li>
  12591. </ul>
  12592. </div>
  12593. </div></section><section>
  12594. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12595. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12596. <h3 id="Neuronal-data-sources">Neuronal data sources<a class="anchor-link" href="#Neuronal-data-sources">&#182;</a></h3><p><img src="reach_to_grasp_material/R2G_arrays.jpg" width="500"/></p>
  12597. </div>
  12598. </div></section><section>
  12599. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12600. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12601. <h3 id="Data-and-metadata-sources">Data and metadata sources<a class="anchor-link" href="#Data-and-metadata-sources">&#182;</a></h3><p><img src="reach_to_grasp_material/R2G_files.png" width="700"/></p>
  12602. <p><strong>GOOD NEWS!</strong> A compiled version of a part of this dataset including metadata is available as NIX file <a href="https://gin.g-node.org/sprenger/multielectrode_grasp/raw/dataset_nix/datasets_nix/i140703-001_cut_637sec.nix">here</a>.</p>
  12603. </div>
  12604. </div></section><section>
  12605. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12606. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12607. <h3 id="Fetching-the-data-file">Fetching the data file<a class="anchor-link" href="#Fetching-the-data-file">&#182;</a></h3>
  12608. </div>
  12609. </div><div class="fragment">
  12610. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12611. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12612. <p>On Linux you can download the compiled nix file via the command below. On other systems, please download the file manually from <a href="https://gin.g-node.org/sprenger/multielectrode_grasp/raw/dataset_nix/datasets_nix/i140703-001_cut_74sec.nix">here</a> and save it in the same folder as this notebook.</p>
  12613. </div>
  12614. </div></div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12615. <div class="jp-Cell-inputWrapper">
  12616. <div class="jp-InputArea jp-Cell-inputArea">
  12617. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[55]:</div>
  12618. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12619. <div class="CodeMirror cm-s-jupyter">
  12620. <div class=" highlight hl-ipython3"><pre><span></span><span class="o">!</span>wget -O i140703-001.nix https://gin.g-node.org/sprenger/multielectrode_grasp/raw/dataset_nix/datasets_nix/i140703-001_cut_74sec.nix
  12621. </pre></div>
  12622. </div>
  12623. </div>
  12624. </div>
  12625. </div>
  12626. <div class="jp-Cell-outputWrapper">
  12627. <div class="jp-OutputArea jp-Cell-outputArea">
  12628. <div class="jp-OutputArea-child">
  12629. <div class="jp-OutputPrompt jp-OutputArea-prompt"></div>
  12630. <div class="jp-RenderedText jp-OutputArea-output" data-mime-type="text/plain">
  12631. <pre>--2021-08-25 19:36:28-- https://gin.g-node.org/sprenger/multielectrode_grasp/raw/dataset_nix/datasets_nix/i140703-001_cut_74sec.nix
  12632. Resolving gin.g-node.org (gin.g-node.org)... 141.84.41.219
  12633. Connecting to gin.g-node.org (gin.g-node.org)|141.84.41.219|:443... connected.
  12634. HTTP request sent, awaiting response... 200 OK
  12635. Length: 47349440 (45M) [application/octet-stream]
  12636. Saving to: &#39;i140703-001.nix’
  12637. i140703-001.nix 100%[===================&gt;] 45,16M 5,97MB/s in 8,6s
  12638. 2021-08-25 19:36:37 (5,28 MB/s) - &#39;i140703-001.nix’ saved [47349440/47349440]
  12639. </pre>
  12640. </div>
  12641. </div>
  12642. </div>
  12643. </div>
  12644. </div></div></section><section>
  12645. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12646. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12647. <h3 id="Dataset-overview---General">Dataset overview - General<a class="anchor-link" href="#Dataset-overview---General">&#182;</a></h3><p>We can directly get an overview of the contained objects from the <code>neo.Block</code> print</p>
  12648. </div>
  12649. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12650. <div class="jp-Cell-inputWrapper">
  12651. <div class="jp-InputArea jp-Cell-inputArea">
  12652. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[2]:</div>
  12653. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12654. <div class="CodeMirror cm-s-jupyter">
  12655. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="nn">neo</span>
  12656. <span class="n">filename</span> <span class="o">=</span> <span class="s1">&#39;i140703-001.nix&#39;</span>
  12657. <span class="k">with</span> <span class="n">neo</span><span class="o">.</span><span class="n">io</span><span class="o">.</span><span class="n">NixIO</span><span class="p">(</span><span class="n">filename</span><span class="p">,</span> <span class="s1">&#39;ro&#39;</span><span class="p">)</span> <span class="k">as</span> <span class="n">io</span><span class="p">:</span>
  12658. <span class="n">block</span> <span class="o">=</span> <span class="n">io</span><span class="o">.</span><span class="n">read_block</span><span class="p">()</span>
  12659. <span class="n">block</span>
  12660. </pre></div>
  12661. </div>
  12662. </div>
  12663. </div>
  12664. </div>
  12665. <div class="jp-Cell-outputWrapper">
  12666. <div class="jp-OutputArea jp-Cell-outputArea">
  12667. <div class="jp-OutputArea-child">
  12668. <div class="jp-OutputPrompt jp-OutputArea-prompt">Out[2]:</div>
  12669. <div class="jp-RenderedText jp-OutputArea-output jp-OutputArea-executeResult" data-mime-type="text/plain">
  12670. <pre>Block with 1 segments
  12671. name: &#39;Reach2Grasp data&#39;
  12672. annotations: {&#39;nix_name&#39;: &#39;neo.block.6aa7b5491ab74067aee4183310955892&#39;}
  12673. rec_datetime: datetime.datetime(2021, 8, 25, 21, 3, 51)
  12674. # segments (N=1)
  12675. 0: Segment with 1 analogsignals, 1 events, 271 spiketrains
  12676. name: &#39;Segment 0&#39;
  12677. description: &#39;Segment containing data from t_start to t_stop&#39;
  12678. annotations: {&#39;nix_name&#39;: &#39;neo.segment.1c1ad7987ca048efa7b433b4e87e0f71&#39;,
  12679. &#39;condition&#39;: 1}
  12680. # analogsignals (N=1)
  12681. 0: AnalogSignal with 96 channels of length 74455; units uV; datatype float32
  12682. name: &#39;Channel bundle (chan1,chan2,chan3,chan4,chan5,chan6,chan7,chan8,chan9,chan10,chan11,chan12,chan13,chan14,chan15,chan16,chan17,chan18,chan19,chan20,chan21,chan22,chan23,chan24,chan25,chan26,chan27,chan28,chan29,chan30,chan31,chan32,chan33,chan34,chan35,chan36,chan37,chan38,chan39,chan40,chan41,chan42,chan43,chan44,chan45,chan46,chan47,chan48,chan49,chan50,chan51,chan52,chan53,chan54,chan55,chan56,chan57,chan58,chan59,chan60,chan61,chan62,chan63,chan64,chan65,chan66,chan67,chan68,chan69,chan70,chan71,chan72,chan73,chan74,chan75,chan76,chan77,chan78,chan79,chan80,chan81,chan82,chan83,chan84,chan85,chan86,chan87,chan88,chan89,chan90,chan91,chan92,chan93,chan94,chan95,chan96) &#39;
  12683. annotations: {&#39;nix_name&#39;: &#39;neo.analogsignal.18037944fdf2472d9c49cff8ea26e4ff&#39;,
  12684. &#39;neural_signal&#39;: True,
  12685. &#39;filter_shift_correction&#39;: array(2.1) * ms}
  12686. sampling rate: 1000.0 Hz
  12687. time: -0.00010000000000000026 s to 74.4549 s</pre>
  12688. </div>
  12689. </div>
  12690. </div>
  12691. </div>
  12692. </div></div></section><section>
  12693. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12694. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12695. <h3 id="Dataset-overview---SpikeTrains">Dataset overview - SpikeTrains<a class="anchor-link" href="#Dataset-overview---SpikeTrains">&#182;</a></h3><p>This summary already tell us that we only need to take care of a single segment with one event, one analogsignal and multiple spiketrain objects. The 96 continuously sampled channels are sampled a 'low' sampling rate of 1kHz and contain neural data, so data comparable to local-field potential measurements.
  12696. To learn more about the spiketrains, we print the spiketrain annotations:</p>
  12697. </div>
  12698. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12699. <div class="jp-Cell-inputWrapper">
  12700. <div class="jp-InputArea jp-Cell-inputArea">
  12701. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[49]:</div>
  12702. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12703. <div class="CodeMirror cm-s-jupyter">
  12704. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">segment</span> <span class="o">=</span> <span class="n">block</span><span class="o">.</span><span class="n">segments</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
  12705. <span class="n">segment</span><span class="o">.</span><span class="n">spiketrains</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">annotations</span>
  12706. </pre></div>
  12707. </div>
  12708. </div>
  12709. </div>
  12710. </div>
  12711. <div class="jp-Cell-outputWrapper">
  12712. <div class="jp-OutputArea jp-Cell-outputArea">
  12713. <div class="jp-OutputArea-child">
  12714. <div class="jp-OutputPrompt jp-OutputArea-prompt">Out[49]:</div>
  12715. <div class="jp-RenderedText jp-OutputArea-output jp-OutputArea-executeResult" data-mime-type="text/plain">
  12716. <pre>{&#39;nix_name&#39;: &#39;neo.spiketrain.22a41c20c0614a238d32dea2d46673ca&#39;,
  12717. &#39;id&#39;: &#39;Unit 1000&#39;,
  12718. &#39;channel_id&#39;: 1,
  12719. &#39;unit_id&#39;: 0,
  12720. &#39;unit_tag&#39;: &#39;unclassified&#39;,
  12721. &#39;electrode_reject_HFC&#39;: False,
  12722. &#39;electrode_reject_LFC&#39;: False,
  12723. &#39;electrode_reject_IFC&#39;: False,
  12724. &#39;connector_aligned_id&#39;: 93,
  12725. &#39;coordinate_x&#39;: array(0.8) * mm,
  12726. &#39;coordinate_y&#39;: array(3.6) * mm,
  12727. &#39;sua&#39;: False,
  12728. &#39;mua&#39;: False,
  12729. &#39;noise&#39;: True}</pre>
  12730. </div>
  12731. </div>
  12732. </div>
  12733. </div>
  12734. </div></div></section><section>
  12735. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12736. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12737. <h2 id="Dataset-overview---AnalogSignals">Dataset overview - AnalogSignals<a class="anchor-link" href="#Dataset-overview---AnalogSignals">&#182;</a></h2><p>To learn more about the channels of the analogsignal, we print the array_annotations of the single analogsignal object:</p>
  12738. </div>
  12739. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12740. <div class="jp-Cell-inputWrapper">
  12741. <div class="jp-InputArea jp-Cell-inputArea">
  12742. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[50]:</div>
  12743. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12744. <div class="CodeMirror cm-s-jupyter">
  12745. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">segment</span><span class="o">.</span><span class="n">analogsignals</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">array_annotations</span><span class="o">.</span><span class="n">keys</span><span class="p">()</span>
  12746. </pre></div>
  12747. </div>
  12748. </div>
  12749. </div>
  12750. </div>
  12751. <div class="jp-Cell-outputWrapper">
  12752. <div class="jp-OutputArea jp-Cell-outputArea">
  12753. <div class="jp-OutputArea-child">
  12754. <div class="jp-OutputPrompt jp-OutputArea-prompt">Out[50]:</div>
  12755. <div class="jp-RenderedText jp-OutputArea-output jp-OutputArea-executeResult" data-mime-type="text/plain">
  12756. <pre>dict_keys([&#39;channel_names&#39;, &#39;channel_ids&#39;, &#39;file_origin&#39;, &#39;connector_ID&#39;, &#39;connector_pinID&#39;, &#39;nev_dig_factor&#39;, &#39;nb_sorted_units&#39;, &#39;nev_hi_freq_order&#39;, &#39;nev_hi_freq_type&#39;, &#39;nev_lo_freq_order&#39;, &#39;nev_lo_freq_type&#39;, &#39;nsx_hi_freq_order&#39;, &#39;nsx_lo_freq_order&#39;, &#39;nsx_hi_freq_type&#39;, &#39;nsx_lo_freq_type&#39;, &#39;description&#39;, &#39;nsx&#39;, &#39;hi_pass_freq&#39;, &#39;lo_pass_freq&#39;, &#39;hi_pass_order&#39;, &#39;lo_pass_order&#39;, &#39;filter_type&#39;, &#39;electrode_reject_HFC&#39;, &#39;electrode_reject_LFC&#39;, &#39;electrode_reject_IFC&#39;, &#39;connector_aligned_ids&#39;, &#39;coordinates_x&#39;, &#39;coordinates_y&#39;])</pre>
  12757. </div>
  12758. </div>
  12759. </div>
  12760. </div>
  12761. </div></div><div class="fragment">
  12762. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12763. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12764. <p>We see that both, spiketrains as well as channels are annotated with a 'connector_aligned_id', indicating the spatial source of the signal. In addition the coordinates in x and y direction are provided in physical units for each channel and spiketrain. Spiketrains also carry information about 'noise', 'mua' or 'sua' assignment, indicating that the spikes were spikesorted and assigned to on of the three</p>
  12765. <ul>
  12766. <li><em>noise</em>: non-neural threshold crossing events)</li>
  12767. <li><em>mua</em>: multi-unit-activity - neural threshold crossing events that can not be uniquely assigned to a virtual neuron unit</li>
  12768. <li><em>sua</em>: single-unit-activity - neural threshold crossing events that are assigned to a single virtual neuron unit</li>
  12769. </ul>
  12770. </div>
  12771. </div></div></section><section>
  12772. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12773. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12774. <h2 id="Dataset-overview---Events">Dataset overview - Events<a class="anchor-link" href="#Dataset-overview---Events">&#182;</a></h2><p>To learn more about the events, we print the labels and annotations of the single event object:</p>
  12775. </div>
  12776. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12777. <div class="jp-Cell-inputWrapper">
  12778. <div class="jp-InputArea jp-Cell-inputArea">
  12779. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[65]:</div>
  12780. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12781. <div class="CodeMirror cm-s-jupyter">
  12782. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>
  12783. <span class="n">event</span> <span class="o">=</span> <span class="n">segment</span><span class="o">.</span><span class="n">events</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span>
  12784. <span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Event object name: </span><span class="si">{</span><span class="n">event</span><span class="o">.</span><span class="n">name</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
  12785. <span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Number of event times: </span><span class="si">{</span><span class="nb">len</span><span class="p">(</span><span class="n">event</span><span class="p">)</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
  12786. <span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Unique event labels: </span><span class="si">{</span><span class="n">np</span><span class="o">.</span><span class="n">unique</span><span class="p">(</span><span class="n">event</span><span class="o">.</span><span class="n">labels</span><span class="p">)</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
  12787. <span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Event annotation keys: </span><span class="si">{</span><span class="n">event</span><span class="o">.</span><span class="n">array_annotations</span><span class="o">.</span><span class="n">keys</span><span class="p">()</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
  12788. <span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Unique trial_ids: </span><span class="si">{</span><span class="n">np</span><span class="o">.</span><span class="n">unique</span><span class="p">(</span><span class="n">event</span><span class="o">.</span><span class="n">array_annotations</span><span class="p">[</span><span class="s2">&quot;trial_id&quot;</span><span class="p">])</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
  12789. <span class="nb">print</span><span class="p">(</span><span class="sa">f</span><span class="s1">&#39;Number of reward-on events: </span><span class="si">{</span><span class="nb">sum</span><span class="p">(</span><span class="n">event</span><span class="o">.</span><span class="n">labels</span><span class="o">==</span><span class="s2">&quot;RW-ON&quot;</span><span class="p">)</span><span class="si">}</span><span class="s1">&#39;</span><span class="p">)</span>
  12790. </pre></div>
  12791. </div>
  12792. </div>
  12793. </div>
  12794. </div>
  12795. <div class="jp-Cell-outputWrapper">
  12796. <div class="jp-OutputArea jp-Cell-outputArea">
  12797. <div class="jp-OutputArea-child">
  12798. <div class="jp-OutputPrompt jp-OutputArea-prompt"></div>
  12799. <div class="jp-RenderedText jp-OutputArea-output" data-mime-type="text/plain">
  12800. <pre>Event object name: TrialEvents
  12801. Number of event times: 192
  12802. Unique event labels: [&#39;CUE-OFF&#39; &#39;CUE-ON&#39; &#39;DO&#39; &#39;FSRplat-OFF&#39; &#39;FSRplat-ON&#39; &#39;GO-ON&#39; &#39;HEplat-OFF&#39;
  12803. &#39;HEplat-ON&#39; &#39;OBB&#39; &#39;OR&#39; &#39;OT&#39; &#39;RW-OFF&#39; &#39;RW-ON&#39; &#39;RW-ON-REP&#39; &#39;SR&#39; &#39;SR-REP&#39;
  12804. &#39;STOP&#39; &#39;TS-ON&#39; &#39;WS-ON&#39;]
  12805. Event annotation keys: dict_keys([&#39;trial_id&#39;, &#39;trial_timestamp_id&#39;, &#39;performance_in_trial&#39;, &#39;performance_in_trial_str&#39;, &#39;belongs_to_trialtype&#39;, &#39;trial_event_labels&#39;, &#39;trial_reject_HFC&#39;, &#39;trial_reject_LFC&#39;, &#39;trial_reject_IFC&#39;])
  12806. Unique trial_ids: [ 1 2 3 4 5 6 7 8 9 10 11 12 13]
  12807. Number of reward-on events: 11
  12808. </pre>
  12809. </div>
  12810. </div>
  12811. </div>
  12812. </div>
  12813. </div></div></section></section><section><section>
  12814. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12815. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12816. <h1 id="Working-with-a-dataset---Neo-methods-and-utility-functions">Working with a dataset - Neo methods and utility functions<a class="anchor-link" href="#Working-with-a-dataset---Neo-methods-and-utility-functions">&#182;</a></h1>
  12817. </div>
  12818. </div><div class="fragment">
  12819. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12820. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12821. <p>In the following lines we are going to introduce a set of useful features of neo objects while cutting the dataset into individual trial segments. Based on the trial events and their annotations we can identify successful (correct) trials and select the time around the start of the trial.</p>
  12822. </div>
  12823. </div></div></section><section>
  12824. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12825. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12826. <h3 id="Filtering-for-event-objects">Filtering for event objects<a class="anchor-link" href="#Filtering-for-event-objects">&#182;</a></h3>
  12827. </div>
  12828. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs ">
  12829. <div class="jp-Cell-inputWrapper">
  12830. <div class="jp-InputArea jp-Cell-inputArea">
  12831. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[80]:</div>
  12832. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12833. <div class="CodeMirror cm-s-jupyter">
  12834. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">events</span> <span class="o">=</span> <span class="n">block</span><span class="o">.</span><span class="n">filter</span><span class="p">(</span><span class="n">objects</span><span class="o">=</span><span class="s1">&#39;Event&#39;</span><span class="p">,</span> <span class="n">name</span><span class="o">=</span><span class="s1">&#39;TrialEvents&#39;</span><span class="p">)[</span><span class="mi">0</span><span class="p">]</span>
  12835. </pre></div>
  12836. </div>
  12837. </div>
  12838. </div>
  12839. </div>
  12840. </div></div></section><section>
  12841. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12842. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12843. <h3 id="Masking-Neo-objects">Masking Neo objects<a class="anchor-link" href="#Masking-Neo-objects">&#182;</a></h3><p>First we are selecting event times that are occurring during successful trials, marked by the <code>performance_in_trial_str</code> as <code>correct_trial</code>. In addition we also only want to select trial start (<code>TS-ON</code>) events. Based on the array annotations we are creating two masks and apply both to the original event to generate a new event object via slicing.</p>
  12844. </div>
  12845. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12846. <div class="jp-Cell-inputWrapper">
  12847. <div class="jp-InputArea jp-Cell-inputArea">
  12848. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[81]:</div>
  12849. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12850. <div class="CodeMirror cm-s-jupyter">
  12851. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">mask1</span> <span class="o">=</span> <span class="n">event</span><span class="o">.</span><span class="n">array_annotations</span><span class="p">[</span><span class="s1">&#39;performance_in_trial_str&#39;</span><span class="p">]</span> <span class="o">==</span> <span class="s1">&#39;correct_trial&#39;</span>
  12852. <span class="n">mask2</span> <span class="o">=</span> <span class="n">event</span><span class="o">.</span><span class="n">array_annotations</span><span class="p">[</span><span class="s1">&#39;trial_event_labels&#39;</span><span class="p">]</span> <span class="o">==</span> <span class="s1">&#39;TS-ON&#39;</span>
  12853. <span class="n">correct_TS_event</span> <span class="o">=</span> <span class="n">event</span><span class="p">[</span><span class="n">mask1</span> <span class="o">&amp;</span> <span class="n">mask2</span><span class="p">]</span>
  12854. <span class="nb">print</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">correct_TS_event</span><span class="p">))</span>
  12855. </pre></div>
  12856. </div>
  12857. </div>
  12858. </div>
  12859. </div>
  12860. <div class="jp-Cell-outputWrapper">
  12861. <div class="jp-OutputArea jp-Cell-outputArea">
  12862. <div class="jp-OutputArea-child">
  12863. <div class="jp-OutputPrompt jp-OutputArea-prompt"></div>
  12864. <div class="jp-RenderedText jp-OutputArea-output" data-mime-type="text/plain">
  12865. <pre>11
  12866. </pre>
  12867. </div>
  12868. </div>
  12869. </div>
  12870. </div>
  12871. </div></div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs ">
  12872. <div class="jp-Cell-inputWrapper">
  12873. <div class="jp-InputArea jp-Cell-inputArea">
  12874. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[89]:</div>
  12875. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12876. <div class="CodeMirror cm-s-jupyter">
  12877. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">start_event</span> <span class="o">=</span> <span class="n">correct_TS_event</span>
  12878. </pre></div>
  12879. </div>
  12880. </div>
  12881. </div>
  12882. </div>
  12883. </div></div></section><section>
  12884. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12885. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12886. <h3 id="Utility-function:-Epoch-creation">Utility function: Epoch creation<a class="anchor-link" href="#Utility-function:-Epoch-creation">&#182;</a></h3><p>In the next step we are making use of neo utility functions to generate epochs around the time points extracted.</p>
  12887. <p>Construct analysis epochs from 10ms before the TS-ON of a successful behavioral trial to 15ms after TS-ON. The name "analysis_epochs" is given to the resulting Neo Epoch object. The object is not attached to the Neo Segment. The parameter event2 of add_epoch() is left empty, since we are cutting around a single event, as opposed to cutting between two events.</p>
  12888. </div>
  12889. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs ">
  12890. <div class="jp-Cell-inputWrapper">
  12891. <div class="jp-InputArea jp-Cell-inputArea">
  12892. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[90]:</div>
  12893. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12894. <div class="CodeMirror cm-s-jupyter">
  12895. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">from</span> <span class="nn">neo.utils</span> <span class="kn">import</span> <span class="n">add_epoch</span>
  12896. <span class="kn">import</span> <span class="nn">quantities</span> <span class="k">as</span> <span class="nn">pq</span>
  12897. </pre></div>
  12898. </div>
  12899. </div>
  12900. </div>
  12901. </div>
  12902. </div></div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs ">
  12903. <div class="jp-Cell-inputWrapper">
  12904. <div class="jp-InputArea jp-Cell-inputArea">
  12905. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[98]:</div>
  12906. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12907. <div class="CodeMirror cm-s-jupyter">
  12908. <div class=" highlight hl-ipython3"><pre><span></span><span class="n">pre</span> <span class="o">=</span> <span class="o">-</span><span class="mi">10</span> <span class="o">*</span> <span class="n">pq</span><span class="o">.</span><span class="n">ms</span>
  12909. <span class="n">post</span> <span class="o">=</span> <span class="mi">15</span> <span class="o">*</span> <span class="n">pq</span><span class="o">.</span><span class="n">ms</span>
  12910. <span class="n">epoch</span> <span class="o">=</span> <span class="n">add_epoch</span><span class="p">(</span>
  12911. <span class="n">segment</span><span class="p">,</span>
  12912. <span class="n">event1</span><span class="o">=</span><span class="n">start_event</span><span class="p">,</span> <span class="n">event2</span><span class="o">=</span><span class="kc">None</span><span class="p">,</span>
  12913. <span class="n">pre</span><span class="o">=</span><span class="n">pre</span><span class="p">,</span> <span class="n">post</span><span class="o">=</span><span class="n">post</span><span class="p">,</span>
  12914. <span class="n">attach_result</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span>
  12915. <span class="n">name</span><span class="o">=</span><span class="s1">&#39;analysis_epochs&#39;</span><span class="p">)</span>
  12916. </pre></div>
  12917. </div>
  12918. </div>
  12919. </div>
  12920. </div>
  12921. </div></div></section><section>
  12922. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12923. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12924. <p>The number of epochs generated is the same as the number of trial start events and all epochs have the same duration as we extract 25ms of data around each trial start event.</p>
  12925. </div>
  12926. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12927. <div class="jp-Cell-inputWrapper">
  12928. <div class="jp-InputArea jp-Cell-inputArea">
  12929. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[92]:</div>
  12930. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12931. <div class="CodeMirror cm-s-jupyter">
  12932. <div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="s1">&#39;Number of epochs: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="nb">len</span><span class="p">(</span><span class="n">epoch</span><span class="p">)))</span>
  12933. <span class="nb">print</span><span class="p">(</span><span class="s1">&#39;Durations of epochs: </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">(</span><span class="n">epoch</span><span class="o">.</span><span class="n">durations</span><span class="p">))</span>
  12934. </pre></div>
  12935. </div>
  12936. </div>
  12937. </div>
  12938. </div>
  12939. <div class="jp-Cell-outputWrapper">
  12940. <div class="jp-OutputArea jp-Cell-outputArea">
  12941. <div class="jp-OutputArea-child">
  12942. <div class="jp-OutputPrompt jp-OutputArea-prompt"></div>
  12943. <div class="jp-RenderedText jp-OutputArea-output" data-mime-type="text/plain">
  12944. <pre>Number of epochs: 11
  12945. Durations of epochs: [0.025 0.025 0.025 0.025 0.025 0.025 0.025 0.025 0.025 0.025 0.025] s
  12946. </pre>
  12947. </div>
  12948. </div>
  12949. </div>
  12950. </div>
  12951. </div></div></section><section>
  12952. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12953. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12954. <h3 id="Utility-function:-cutting-segment-by-epochs">Utility function: cutting segment by epochs<a class="anchor-link" href="#Utility-function:-cutting-segment-by-epochs">&#182;</a></h3><p>Now we use the previously defined epochs to cut the segment containing the complete dataset into subsets, where each new segment corresponds to the starting epoch of a successful trial. For capturing the newly generated segments, we create a new Neo block.</p>
  12955. <p>Create new segments of data cut according to the analysis epochs of the 'analysis_epochs' Neo Epoch object. The time axes of all segments are aligned such that each segment starts at time 0 (parameter reset_times); annotations describing the analysis epoch are carried over to the segments. A new Neo Block named "data_cut_to_analysis_epochs" is created to capture all cut analysis epochs.</p>
  12956. </div>
  12957. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell jp-mod-noOutputs ">
  12958. <div class="jp-Cell-inputWrapper">
  12959. <div class="jp-InputArea jp-Cell-inputArea">
  12960. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[94]:</div>
  12961. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12962. <div class="CodeMirror cm-s-jupyter">
  12963. <div class=" highlight hl-ipython3"><pre><span></span><span class="kn">from</span> <span class="nn">neo.utils</span> <span class="kn">import</span> <span class="n">cut_segment_by_epoch</span>
  12964. <span class="n">cut_trial_block</span> <span class="o">=</span> <span class="n">neo</span><span class="o">.</span><span class="n">Block</span><span class="p">(</span><span class="n">name</span><span class="o">=</span><span class="s2">&quot;data_cut_to_analysis_epochs&quot;</span><span class="p">)</span>
  12965. <span class="n">cut_trial_block</span><span class="o">.</span><span class="n">segments</span> <span class="o">=</span> <span class="n">cut_segment_by_epoch</span><span class="p">(</span><span class="n">segment</span><span class="p">,</span> <span class="n">epoch</span><span class="p">,</span> <span class="n">reset_time</span><span class="o">=</span><span class="kc">True</span><span class="p">)</span>
  12966. </pre></div>
  12967. </div>
  12968. </div>
  12969. </div>
  12970. </div>
  12971. </div></div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12972. <div class="jp-Cell-inputWrapper">
  12973. <div class="jp-InputArea jp-Cell-inputArea">
  12974. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[95]:</div>
  12975. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  12976. <div class="CodeMirror cm-s-jupyter">
  12977. <div class=" highlight hl-ipython3"><pre><span></span><span class="nb">len</span><span class="p">(</span><span class="n">cut_trial_block</span><span class="o">.</span><span class="n">segments</span><span class="p">)</span>
  12978. </pre></div>
  12979. </div>
  12980. </div>
  12981. </div>
  12982. </div>
  12983. <div class="jp-Cell-outputWrapper">
  12984. <div class="jp-OutputArea jp-Cell-outputArea">
  12985. <div class="jp-OutputArea-child">
  12986. <div class="jp-OutputPrompt jp-OutputArea-prompt">Out[95]:</div>
  12987. <div class="jp-RenderedText jp-OutputArea-output jp-OutputArea-executeResult" data-mime-type="text/plain">
  12988. <pre>11</pre>
  12989. </div>
  12990. </div>
  12991. </div>
  12992. </div>
  12993. </div></div></section><section>
  12994. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  12995. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  12996. <p>We can confirm that the resetting of the times during the segmentation process was successfull by checking the new times of the trial start events in the new segments:</p>
  12997. </div>
  12998. </div><div class="fragment"><div class="jp-Cell jp-CodeCell jp-Notebook-cell ">
  12999. <div class="jp-Cell-inputWrapper">
  13000. <div class="jp-InputArea jp-Cell-inputArea">
  13001. <div class="jp-InputPrompt jp-InputArea-prompt">In&nbsp;[96]:</div>
  13002. <div class="jp-CodeMirrorEditor jp-Editor jp-InputArea-editor" data-type="inline">
  13003. <div class="CodeMirror cm-s-jupyter">
  13004. <div class=" highlight hl-ipython3"><pre><span></span><span class="nb">print</span><span class="p">(</span><span class="s1">&#39;In the new trial TS is happening at </span><span class="si">{}</span><span class="s1">&#39;</span><span class="o">.</span><span class="n">format</span><span class="p">([</span><span class="n">s</span><span class="o">.</span><span class="n">events</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">][</span><span class="mi">0</span><span class="p">]</span> <span class="k">for</span> <span class="n">s</span> <span class="ow">in</span> <span class="n">cut_trial_block</span><span class="o">.</span><span class="n">segments</span><span class="p">]))</span>
  13005. </pre></div>
  13006. </div>
  13007. </div>
  13008. </div>
  13009. </div>
  13010. <div class="jp-Cell-outputWrapper">
  13011. <div class="jp-OutputArea jp-Cell-outputArea">
  13012. <div class="jp-OutputArea-child">
  13013. <div class="jp-OutputPrompt jp-OutputArea-prompt"></div>
  13014. <div class="jp-RenderedText jp-OutputArea-output" data-mime-type="text/plain">
  13015. <pre>In the new trial TS is happening at [array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s, array(0.01) * s]
  13016. </pre>
  13017. </div>
  13018. </div>
  13019. </div>
  13020. </div>
  13021. </div></div></section><section>
  13022. <div class="jp-Cell-inputWrapper"><div class="jp-InputPrompt jp-InputArea-prompt">
  13023. </div><div class="jp-RenderedHTMLCommon jp-RenderedMarkdown jp-MarkdownOutput " data-mime-type="text/markdown">
  13024. <h3 id="More-interesting-features">More interesting features<a class="anchor-link" href="#More-interesting-features">&#182;</a></h3><ul>
  13025. <li><em><code>DataObject</code></em><code>.time_slice()</code> - create a new object containing data in a subset of the original time span</li>
  13026. <li><em><code>Object</code></em><code>.annotate()</code> - adding a custom annotation</li>
  13027. <li><em><code>DataObject</code></em><code>.array_annotate()</code> - adding a custom array annotation (channel / spike based annotation)</li>
  13028. <li><em><code>DataObject</code></em><code>.merge()</code> - merge data values of two DataObjects</li>
  13029. <li><em><code>DataObject</code></em><code>.concatenate()</code> - concatenate data values of two DataObjects</li>
  13030. <li><code>AnalogSignal.downsample()</code> - create an AnalogSignal with a lower sampling rate</li>
  13031. <li><em><code>Object</code></em><code>.parents</code>, e.g. <code>AnalogSignal.segment</code> - to navigate in neo object structure</li>
  13032. <li><em><code>Quantity</code></em><code>.rescale()</code> - rescale the data to a new physical unit</li>
  13033. <li><em><code>Quantity</code></em><code>.dimensionality.latex</code> - get latex representation of physical unit (for plotting)</li>
  13034. </ul>
  13035. </div>
  13036. </div></section></section>
  13037. </div>
  13038. </div>
  13039. </body>
  13040. <script>
  13041. require(
  13042. {
  13043. // it makes sense to wait a little bit when you are loading
  13044. // reveal from a cdn in a slow connection environment
  13045. waitSeconds: 15
  13046. },
  13047. [
  13048. "https://unpkg.com/reveal.js@4.0.2/dist/reveal.js",
  13049. "https://unpkg.com/reveal.js@4.0.2/plugin/notes/notes.js"
  13050. ],
  13051. function(Reveal, RevealNotes){
  13052. // Full list of configuration options available here: https://github.com/hakimel/reveal.js#configuration
  13053. Reveal.initialize({
  13054. controls: true,
  13055. progress: true,
  13056. history: true,
  13057. transition: "slide",
  13058. plugins: [RevealNotes]
  13059. });
  13060. var update = function(event){
  13061. if(MathJax.Hub.getAllJax(Reveal.getCurrentSlide())){
  13062. MathJax.Hub.Rerender(Reveal.getCurrentSlide());
  13063. }
  13064. };
  13065. Reveal.addEventListener('slidechanged', update);
  13066. function setScrollingSlide() {
  13067. var scroll = false
  13068. if (scroll === true) {
  13069. var h = $('.reveal').height() * 0.95;
  13070. $('section.present').find('section')
  13071. .filter(function() {
  13072. return $(this).height() > h;
  13073. })
  13074. .css('height', 'calc(95vh)')
  13075. .css('overflow-y', 'scroll')
  13076. .css('margin-top', '20px');
  13077. }
  13078. }
  13079. // check and set the scrolling slide every time the slide change
  13080. Reveal.addEventListener('slidechanged', setScrollingSlide);
  13081. }
  13082. );
  13083. </script>
  13084. </html>