wanaplan.min.css 144 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420
  1. #colorPopup .window-content{
  2. overflow:auto;
  3. text-align:center;
  4. border-bottom:#ccc solid 1px
  5. }
  6. .window p{
  7. margin:0 0 10px
  8. }
  9. .window a{
  10. color:#01585F
  11. }
  12. .window a:hover{
  13. color:#0D8893
  14. }
  15. .window{
  16. position:absolute;
  17. border:1px solid #aaa;
  18. border-radius:2px;
  19. background:#f1f1f1;
  20. box-shadow:0 0 10px rgba(0,0,0,.3);
  21. font-family:Arial,sans-serif;
  22. z-index:1337
  23. }
  24. .window .window-title{
  25. border-radius:2px 2px 0 0;
  26. background:#383838;
  27. border-bottom:#000 solid 1px;
  28. margin:-1px -1px 0;
  29. height:35px;
  30. overflow:hidden
  31. }
  32. .window .window-title h1{
  33. margin:0;
  34. padding:8px 0 8px 10px;
  35. font-size:12pt;
  36. color:#fff;
  37. text-shadow:-1px -1px 0 #000;
  38. overflow:hidden;
  39. white-space:nowrap;
  40. text-overflow:ellipsis;
  41. width:90%;
  42. width:-moz-calc(100% - 50px);
  43. width:-webkit-calc(100% - 50px);
  44. width:calc(100% - 50px);
  45. cursor:default
  46. }
  47. .window .window-title h1:active,.window .window-title:active{
  48. cursor:move
  49. }
  50. .window .window-title h1 img{
  51. width:25px;
  52. height:25px;
  53. float:left;
  54. margin:-3px 5px 0 -5px
  55. }
  56. .window .window-title .window-close{
  57. float:right;
  58. margin:5px 5px 0 0;
  59. width:26px;
  60. height:26px;
  61. font-size:12pt;
  62. color:#fff;
  63. text-shadow:-1px -1px 0 #000;
  64. background:url(../images/close.png) center no-repeat #555;
  65. border-radius:2px;
  66. position:relative;
  67. cursor:pointer
  68. }
  69. .window .window-title .window-close:hover{
  70. background-color:#777
  71. }
  72. .window .window-content{
  73. margin:0 -1px -1px;
  74. padding:10px;
  75. overflow:hidden;
  76. height:calc(100% - 20px - 35px)
  77. }
  78. .window .window-content.scrollable{
  79. overflow:auto
  80. }
  81. .window.window-with-button .window-content{
  82. height:calc(100% - 20px - 35px - 36px)
  83. }
  84. .window .window-action-bar{
  85. margin-top:-11px;
  86. text-align:right;
  87. padding:9px
  88. }
  89. .tabbed{
  90. height:100%
  91. }
  92. .tabbed .tabbed-tabs{
  93. background:#fff;
  94. list-style-type:none;
  95. margin:0;
  96. padding:1px;
  97. box-shadow:inset 0 0 8px rgba(0,0,0,.2),1px 1px 0 #fff,inset 1px 1px 0 #bbb,inset -1px -1px 0 #bbb
  98. }
  99. .tabbed .tabbed-tabs li{
  100. font-size:10pt;
  101. padding:10px 13px;
  102. color:#222;
  103. cursor:pointer
  104. }
  105. .tabbed .tabbed-tabs li:hover{
  106. text-shadow:0 0 3px rgba(0,0,0,.2)
  107. }
  108. .tabbed .tabbed-tabs li.active{
  109. background:#89B808;
  110. color:#fff;
  111. text-shadow:-1px -1px 0 #6E910F;
  112. box-shadow:inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3),1px 0 #6E910F,-1px 0 #6E910F,0 -1px 0 #6E910F,0 1px 0 #6E910F
  113. }
  114. #edit2Dcontent li label
  115. {
  116. width:200px;
  117. }
  118. #edit2Dcontent li .field input[type=number]
  119. {
  120. width: 40px;
  121. min-width: 40px;
  122. margin-left: 5px;
  123. margin-right: 5px;
  124. }
  125. .tabbed-tabcontent
  126. {
  127. padding: 5px;
  128. width: auto;
  129. height: auto;
  130. }
  131. .tabbed .tabbed-tabcontent{
  132. margin-top:9px;
  133. overflow:auto
  134. }
  135. .tabbed .tabbed-tabcontent section{
  136. display:none
  137. }
  138. .tabbed .tabbed-tabcontent section.active{
  139. display:block
  140. }
  141. .tabbed.horizontal .tabbed-tabs{
  142. text-align:center
  143. }
  144. .tabbed.horizontal .tabbed-tabs li{
  145. display:inline-block
  146. }
  147. .tabbed.horizontal .tabbed-tabs li.active{
  148. border-bottom:none;
  149. border-top:none
  150. }
  151. .tabbed.horizontal .tabbed-tabcontent{
  152. height:calc(100% - 47px);
  153. overflow-x:hidden
  154. }
  155. .tabbed.vertical .tabbed-tabs{
  156. text-align:left;
  157. width:170px;
  158. height:100%;
  159. height:calc(100% - 2px);
  160. overflow:auto
  161. }
  162. .tabbed.vertical .tabbed-tabs li{
  163. white-space:nowrap;
  164. overflow:hidden;
  165. text-overflow:ellipsis
  166. }
  167. .tabbed.vertical .tabbed-tabs li.active{
  168. border:none
  169. }
  170. .tabbed.vertical .tabbed-tabcontent{
  171. position:absolute;
  172. top:36px;
  173. height:90%;
  174. height:calc(100% - 55px);
  175. width:calc(100% - 197px);
  176. margin-left:179px
  177. }
  178. .window.window-with-button .tabbed-tabcontent{
  179. height:calc(100% - 55px)
  180. }
  181. .tabbed.notab .tabbed-tabs{
  182. display:none
  183. }
  184. .tabbed.notab .tabbed-tabcontent{
  185. margin:0;
  186. height:100%
  187. }
  188. .window button::-moz-focus-inner,.window input[type=submit]::-moz-focus-inner{
  189. border:0;
  190. padding:0
  191. }
  192. .window .param-item button,.window .param-item input[type=submit]{
  193. border:1px solid #999;
  194. background:#ddd;
  195. background:-moz-linear-gradient(top,#ddd 0,#bbb 100%);
  196. background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ddd),color-stop(100%,#bbb));
  197. background:-webkit-linear-gradient(top,#ddd 0,#bbb 100%);
  198. background:-o-linear-gradient(top,#ddd 0,#bbb 100%);
  199. background:-ms-linear-gradient(top,#ddd 0,#bbb 100%);
  200. background:linear-gradient(to bottom,#ddd 0,#bbb 100%);
  201. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#bbbbbb', GradientType=0);
  202. box-shadow:inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3),1px 1px 1px rgba(0,0,0,.1);
  203. border-radius:2px;
  204. color:#424242;
  205. text-shadow:1px 1px 0 #ddd;
  206. padding:4px 7px;
  207. cursor:pointer;
  208. font-height:16px;
  209. line-height:1em
  210. }
  211. .window .param-item button:active,.window .param-item input[type=submit]:active{
  212. background:#bbb;
  213. background:-moz-linear-gradient(top,#bbb 0,#ddd 100%);
  214. background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#bbb),color-stop(100%,#ddd));
  215. background:-webkit-linear-gradient(top,#bbb 0,#ddd 100%);
  216. background:-o-linear-gradient(top,#bbb 0,#ddd 100%);
  217. background:-ms-linear-gradient(top,#bbb 0,#ddd 100%);
  218. background:linear-gradient(to bottom,#bbb 0,#ddd 100%);
  219. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#dddddd', GradientType=0)
  220. }
  221. .window .window-action-bar button,.window .window-action-bar input[type=submit]{
  222. border:1px solid #6E910F;
  223. background:#89B808;
  224. background:-moz-linear-gradient(top,#89b808 0,#6e910f 100%);
  225. background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#89b808),color-stop(100%,#6e910f));
  226. background:-webkit-linear-gradient(top,#89b808 0,#6e910f 100%);
  227. background:-o-linear-gradient(top,#89b808 0,#6e910f 100%);
  228. background:-ms-linear-gradient(top,#89b808 0,#6e910f 100%);
  229. background:linear-gradient(to bottom,#89b808 0,#6e910f 100%);
  230. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#89b808', endColorstr='#6e910f', GradientType=0);
  231. box-shadow:inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3),1px 1px 1px rgba(0,0,0,.1);
  232. border-radius:2px;
  233. color:#fff;
  234. text-shadow:-1px -1px 0 #6e910f;
  235. padding:6px 10px;
  236. cursor:pointer;
  237. font-height:16px;
  238. line-height:1em;
  239. margin-left:10px
  240. }
  241. .window .window-action-bar button:active,.window .window-action-bar input[type=submit]:active{
  242. background:#6e910f;
  243. background:-moz-linear-gradient(top,#6e910f 0,#89b808 100%);
  244. background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#6e910f),color-stop(100%,#89b808));
  245. background:-webkit-linear-gradient(top,#6e910f 0,#89b808 100%);
  246. background:-o-linear-gradient(top,#6e910f 0,#89b808 100%);
  247. background:-ms-linear-gradient(top,#6e910f 0,#89b808 100%);
  248. background:linear-gradient(to bottom,#6e910f 0,#89b808 100%);
  249. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6e910f', endColorstr='#89b808', GradientType=0)
  250. }
  251. .window .window-action-bar button.remove{
  252. float:left;
  253. margin-left:0;
  254. border:1px solid #999;
  255. background:#ddd;
  256. background:-moz-linear-gradient(top,#ddd 0,#bbb 100%);
  257. background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ddd),color-stop(100%,#bbb));
  258. background:-webkit-linear-gradient(top,#ddd 0,#bbb 100%);
  259. background:-o-linear-gradient(top,#ddd 0,#bbb 100%);
  260. background:-ms-linear-gradient(top,#ddd 0,#bbb 100%);
  261. background:linear-gradient(to bottom,#ddd 0,#bbb 100%);
  262. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#bbbbbb', GradientType=0);
  263. box-shadow:inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3),1px 1px 1px rgba(0,0,0,.1);
  264. color:#424242;
  265. text-shadow:1px 1px 0 #ddd
  266. }
  267. .window .window-action-bar button.remove:active{
  268. background:#bbb;
  269. background:-moz-linear-gradient(top,#bbb 0,#ddd 100%);
  270. background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#bbb),color-stop(100%,#ddd));
  271. background:-webkit-linear-gradient(top,#bbb 0,#ddd 100%);
  272. background:-o-linear-gradient(top,#bbb 0,#ddd 100%);
  273. background:-ms-linear-gradient(top,#bbb 0,#ddd 100%);
  274. background:linear-gradient(to bottom,#bbb 0,#ddd 100%);
  275. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#bbbbbb', endColorstr='#dddddd', GradientType=0)
  276. }
  277. .window .lockedParams :disabled{
  278. background:#aaa!important
  279. }
  280. input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{
  281. -webkit-appearance:none;
  282. margin:0
  283. }
  284. .window input[type=text],.window input[type=number],.window input[type=email],.window input[type=password],.window input[type=tel],.window input[type=url]{
  285. border:1px solid #bbb;
  286. margin:0;
  287. border-radius:2px;
  288. outline:0;
  289. box-shadow:inset 0 0 8px rgba(0,0,0,.1);
  290. padding:2px 5px;
  291. -webkit-appearance:textfield;
  292. min-width:100px;
  293. line-height:1.3em;
  294. font-size:14px;
  295. background:#fff
  296. }
  297. .window input[type=number].unit{
  298. padding-right:27px
  299. }
  300. .window input[type=text]:focus,.window input[type=number]:focus,.window input[type=email]:focus,.window input[type=password]:focus,.window input[type=tel]:focus,.window input[type=url]:focus{
  301. border-color:#6E910F;
  302. box-shadow:1px 1px 1px rgba(0,0,0,.1),inset 0 0 8px rgba(0,0,0,.1)
  303. }
  304. .window input[type=checkbox].cb-switch{
  305. display:inline-block;
  306. width:52px;
  307. height:24px;
  308. opacity:0;
  309. cursor:pointer;
  310. -moz-appearance:none;
  311. -webkit-appearance:none;
  312. margin:2px 0 0;
  313. z-index:40;
  314. position:relative
  315. }
  316. .window input[type=checkbox].cb-switch+span{
  317. position:relative;
  318. display:block;
  319. width:50px;
  320. height:20px;
  321. margin-top:-26px;
  322. margin-left:calc(100% - 52px);
  323. background:url(../images/ui/switch-bg.png) center no-repeat #fff;
  324. border:1px solid #aaa;
  325. border-radius:3px;
  326. outline:0;
  327. box-shadow:inset 0 0 8px rgba(0,0,0,.2);
  328. -webkit-transition:all .3s;
  329. transition:all .3s
  330. }
  331. .window input[type=checkbox].cb-switch+span:after{
  332. content:"";
  333. position:relative;
  334. display:block;
  335. width:22px;
  336. height:16px;
  337. border:1px solid #aaa;
  338. margin-top:1px;
  339. margin-left:1px;
  340. border-radius:3px;
  341. background:url(../images/ui/switch-btn-bg.png) center no-repeat #ddd;
  342. box-shadow:inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  343. -webkit-transition:all .2s;
  344. transition:all .2s
  345. }
  346. .window input[type=checkbox].cb-switch:checked+span{
  347. background-color:#89B808;
  348. border-color:#5D7814;
  349. box-shadow:inset 0 0 8px rgba(0,0,0,.2),0 0 7px rgba(137,184,8,.5)
  350. }
  351. .window input[type=checkbox].cb-switch:checked+span:after{
  352. border-color:#5D7814 #5D7814 #5D7814 #637F17;
  353. margin-left:25px
  354. }
  355. .window hr{
  356. border:none;
  357. border-top:#bbb solid 1px;
  358. border-bottom:#fff solid 1px
  359. }
  360. .window .separator{
  361. border-bottom:#bbb solid 1px;
  362. box-shadow:0 1px 0 #fff
  363. }
  364. .window .separator hr{
  365. margin-top:0;
  366. display:none
  367. }
  368. .window .separator label{
  369. color:#888;
  370. text-shadow:1px 1px 0 #fff;
  371. cursor:default
  372. }
  373. .window .separator label:after{
  374. content:""
  375. }
  376. .window label{
  377. color:#222;
  378. text-shadow:1px 1px 0 #fff
  379. }
  380. .window label:after{
  381. //content:" :"
  382. }
  383. .window label:empty:after{
  384. content:""
  385. }
  386. .window .product-item{
  387. display:inline-block;
  388. width:130px;
  389. margin:1px 6px 8px 7px;
  390. box-shadow:-1px 0 0 #aaa,1px 0 0 #aaa,0 -1px 0 #aaa,0 1px 0 #aaa;
  391. box-shadow:1px 1px 2px rgba(0,0,0,.3),-1px 0 0 #aaa,1px 0 0 #aaa,0 -1px 0 #aaa,0 1px 0 #aaa;
  392. cursor:pointer;
  393. transition:box-shadow .2s;
  394. -webkit-transition:box-shadow .2s
  395. }
  396. .window .product-item:hover{
  397. box-shadow:0 0 5px rgba(0,0,0,.4),-1px 0 0 #555,1px 0 0 #555,0 -1px 0 #555,0 1px 0 #555
  398. }
  399. .window .product-item span{
  400. display:block;
  401. margin:0;
  402. padding:0
  403. }
  404. .window .product-item .product-item-image{
  405. display:inline-block;
  406. width:100%;
  407. height:95px;
  408. overflow:hidden;
  409. background:0 0;
  410. text-align:center
  411. }
  412. .window .product-item .product-item-image img{
  413. max-width:102%
  414. }
  415. .window .product-item .selected{
  416. border-radius:2px;
  417. opacity:0;
  418. position:absolute;
  419. background:#89B808;
  420. margin:4px 0 0 -6px;
  421. padding:3px 5px;
  422. color:#fff;
  423. text-shadow:-1px -1px 0 #6E910F;
  424. border:1px solid #6E910F;
  425. font-size:14px;
  426. box-shadow:inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  427. }
  428. .window .product-item .selected.show{
  429. opacity:1;
  430. animation:bubble-in .5s;
  431. -webkit-animation:bubble-in .5s
  432. }
  433. .window .product-item .product-item-purchase{
  434. display:none
  435. }
  436. .window .product-item .product-item-description{
  437. margin-top:-5px;
  438. text-align:center;
  439. padding:4px 5px 1px;
  440. font-size:11px;
  441. background:#393939;
  442. white-space:nowrap;
  443. overflow:hidden;
  444. text-overflow:ellipsis;
  445. width:100%;
  446. width:calc(100% - 10px);
  447. color:#fff;
  448. text-shadow:-1px -1px 0 #000;
  449. z-index:100;
  450. transition:background .1s;
  451. -webkit-transition:background .1s;
  452. box-shadow:0 1px 0 #555,1px 0 0 #555,-1px 0 0 #555,inset 0 1px 0 rgba(255,255,255,1)
  453. }
  454. .window ul{
  455. list-style-type:none;
  456. margin:0;
  457. padding:0;
  458. width:100%
  459. }
  460. .window .tabbed-tabcontent ul{
  461. display:table;
  462. border-collapse:collapse
  463. }
  464. .window li.param-item,.window li.separator{
  465. display:table-row
  466. }
  467. .window li.param-item div{
  468. display:table-cell;
  469. vertical-align:middle
  470. }
  471. .window .param-item label,.window .separator label{
  472. display:table-cell;
  473. vertical-align:middle;
  474. padding:3px 10px 3px 0;
  475. white-space:nowrap
  476. }
  477. .window .param-item .field,.window .separator .field{
  478. display:table-cell;
  479. vertical-align:middle;
  480. text-align:right;
  481. padding:5px 0;
  482. white-space:nowrap;
  483. max-width:200px
  484. }
  485. .window .param-item .field input[type=text],.window .param-item .field input[type=number],.window .param-item .field input[type=email],.window .param-item .field input[type=password],.window .param-item .field input[type=tel],.window .param-item .field input[type=url],.window .param-item .field input[type=range]{
  486. min-width:100px;
  487. max-width:80%;
  488. max-width:calc(100% - 50px);
  489. width:100%
  490. }
  491. .window .param-item .field span.unit{
  492. display:inline-block;
  493. width:25px;
  494. padding-left:5px;
  495. font-size:10pt;
  496. overflow:hidden;
  497. color:#666;
  498. cursor:default;
  499. text-align:left;
  500. margin-left:-30px;
  501. margin-bottom:-3px;
  502. pointer-events:none
  503. }
  504. .window .param-item button,.window .param-item input[type=submit]{
  505. min-width:100px;
  506. margin:-1px 0 0
  507. }
  508. .window .param-item .field input[type=range]{
  509. width:90px;
  510. width:calc(100% - 90px);
  511. margin:-3px 0 0;
  512. vertical-align:middle
  513. }
  514. .window .param-item .field input[type=range]+input{
  515. width:62px;
  516. min-width:62px;
  517. margin-left:5px
  518. }
  519. .window .param-item .field input[type=range]+input.unit{
  520. width:40px;
  521. min-width:40px;
  522. margin-left:5px
  523. }
  524. .photonui-window-title-close-button,.pull-right {
  525. float: right
  526. }
  527. #main-ui ul,.fa-ul {
  528. list-style-type: none
  529. }
  530. .photonui-widget {
  531. display: inline-block;
  532. box-sizing: border-box;
  533. margin: 0;
  534. font-family: Arial,sans-serif;
  535. font-size: 11pt;
  536. }
  537. .photonui-container-expand-child-horizontal>.photonui-widget:not(.photonui-widget-fixed-width),.photonui-container-expand-child>.photonui-widget:not(.photonui-widget-fixed-width) {
  538. width: 100%!important
  539. }
  540. .photonui-container-expand-child-vertical>.photonui-widget:not(.photonui-widget-fixed-height),.photonui-container-expand-child>.photonui-widget:not(.photonui-widget-fixed-height) {
  541. height: 100%!important
  542. }
  543. .photonui-widget button::-moz-focus-inner,.photonui-widget input[type=submit]::-moz-focus-inner,button.photonui-widget::-moz-focus-inner,input[type=submit].photonui-widget::-moz-focus-inner {
  544. border: 0;
  545. padding: 0
  546. }
  547. .photonui-popupmenu {
  548. overflow-y: auto!important
  549. }
  550. .photonui-popupmenu>div>.photonui-menu {
  551. min-width: 75px
  552. }
  553. .photonui-colorbutton {
  554. min-height: 30px
  555. }
  556. .photonui-colorbutton span {
  557. display: inline-block;
  558. min-width: 50px;
  559. min-height: 18px
  560. }
  561. .photonui-select {
  562. min-width: 75px;
  563. min-height: 30px;
  564. box-sizing: border-box;
  565. outline: 0;
  566. display: flex;
  567. align-items: center;
  568. flex-direction: row
  569. }
  570. .photonui-select .photonui-menuitem {
  571. flex-grow: 1
  572. }
  573. .photonui-select .photonui-menuitem .photonui-menuitem-icon {
  574. width: auto;
  575. min-width: 0;
  576. max-width: 30px;
  577. margin: 0
  578. }
  579. .photonui-button span+span,.photonui-menuitem .photonui-menuitem-widget {
  580. margin-left: 5px
  581. }
  582. .photonui-select .photonui-menuitem .photonui-menuitem-icon>* {
  583. margin-right: 5px!important
  584. }
  585. .photonui-select.photonui-select-noicon .photonui-menuitem .photonui-menuitem-icon {
  586. display: none
  587. }
  588. .photonui-basewindow {
  589. position: absolute;
  590. user-select: none;
  591. min-width: -webkit-max-content;
  592. min-width: -moz-max-content;
  593. min-width: -ms-max-content;
  594. min-width: max-content
  595. }
  596. .photonui-menuitem {
  597. box-sizing: border-box;
  598. user-select: none;
  599. display: flex;
  600. align-items: center;
  601. height: 30px;
  602. padding: 0 5px;
  603. text-align: left
  604. }
  605. .photonui-menuitem .photonui-menuitem-icon {
  606. box-sizing: border-box;
  607. width: 16px;
  608. min-width: 16px;
  609. max-width: 16px;
  610. overflow: hidden;
  611. margin-right: 5px;
  612. font-size: 16px
  613. }
  614. .photonui-menuitem .photonui-menuitem-icon>* {
  615. color: inherit
  616. }
  617. .photonui-menuitem .photonui-menuitem-text {
  618. flex-grow: 1;
  619. overflow: hidden;
  620. white-space: nowrap;
  621. text-overflow: ellipsis
  622. }
  623. .photonui-popupwindow {
  624. z-index: 4000;
  625. box-sizing: border-box
  626. }
  627. .photonui-window-title-text {
  628. display: block;
  629. width: 100%;
  630. overflow: hidden;
  631. text-overflow: ellipsis;
  632. white-space: nowrap;
  633. pointer-events: none
  634. }
  635. .photonui-window-have-button .photonui-window-title-text {
  636. width: calc(100% - 40px)
  637. }
  638. .photonui-window-content {
  639. overflow: hidden
  640. }
  641. .photonui-window-modalbox {
  642. position: fixed;
  643. top: 0;
  644. left: 0;
  645. bottom: 0;
  646. right: 0;
  647. z-index: 3000
  648. }
  649. .photonui-window.photonui-window-fullscreen {
  650. top: 0!important;
  651. left: 0!important;
  652. bottom: 0!important;
  653. right: 0!important
  654. }
  655. .photonui-window.photonui-window-fullscreen .photonui-window-content {
  656. width: 100%!important;
  657. min-width: 100%!important;
  658. max-width: 100%!important
  659. }
  660. .photonui-viewport {
  661. box-sizing: border-box;
  662. vertical-align: middle
  663. }
  664. .photonui-viewport>* {
  665. height: auto!important
  666. }
  667. .photonui-boxlayout {
  668. display: -webkit-flex!important;
  669. display: flex!important;
  670. box-sizing: border-box;
  671. height: 100%
  672. }
  673. .photonui-boxlayout.photonui-layout-orientation-horizontal {
  674. -webkit-flex-direction: row;
  675. flex-direction: row
  676. }
  677. .photonui-boxlayout.photonui-layout-orientation-vertical {
  678. -webkit-flex-direction: column;
  679. flex-direction: column
  680. }
  681. .photonui-boxlayout>.photonui-boxlayout-item {
  682. -webit-flex-grow: 1;
  683. flex-grow: 1;
  684. display: flex;
  685. -webkit-flex-direction: row;
  686. flex-direction: row
  687. }
  688. .photonui-boxlayout>.photonui-boxlayout-item>* {
  689. display: block;
  690. width: 100%
  691. }
  692. .photonui-boxlayout>.photonui-layout-align-stretch {
  693. -webkit-align-self: stretch;
  694. align-self: stretch
  695. }
  696. .photonui-boxlayout>.photonui-layout-align-start {
  697. -webkit-align-self: flex-start;
  698. align-self: flex-start
  699. }
  700. .photonui-boxlayout>.photonui-layout-align-center {
  701. -webkit-align-self: center;
  702. align-self: center
  703. }
  704. .photonui-boxlayout>.photonui-layout-align-end {
  705. -webkit-align-self: flex-end;
  706. align-self: flex-end
  707. }
  708. .photonui-fluidlayout {
  709. overflow: hidden;
  710. display: flex;
  711. align-items: stretch
  712. }
  713. .photonui-fluidlayout>.photonui-fluidlayout-innerbox {
  714. display: flex;
  715. flex-wrap: wrap;
  716. height: 100%;
  717. width: 100%;
  718. align-content: flex-start
  719. }
  720. .photonui-fluidlayout>.photonui-fluidlayout-innerbox>.photonui-container.photonui-layout-align-stretch {
  721. align-self: stretch;
  722. height: 100%
  723. }
  724. .photonui-fluidlayout>.photonui-fluidlayout-innerbox>.photonui-container.photonui-layout-align-stretch>* {
  725. height: 100%!important
  726. }
  727. .photonui-fluidlayout>.photonui-fluidlayout-innerbox>.photonui-container.photonui-layout-align-start {
  728. align-self: flex-start
  729. }
  730. .photonui-fluidlayout>.photonui-fluidlayout-innerbox>.photonui-container.photonui-layout-align-center {
  731. align-self: center
  732. }
  733. .photonui-fluidlayout>.photonui-fluidlayout-innerbox>.photonui-container.photonui-layout-align-end {
  734. align-self: flex-end
  735. }
  736. .photonui-gridlayout {
  737. display: inline-block;
  738. box-sizing: border-box
  739. }
  740. .photonui-gridlayout>table {
  741. box-sizing: border-box;
  742. border-collapse: collapse;
  743. width: 100%;
  744. height: 100%
  745. }
  746. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell {
  747. padding: 0;
  748. box-sizing: border-box
  749. }
  750. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell>.photonui-gridlayout-wrapper {
  751. display: inline-block;
  752. vertical-align: middle;
  753. text-align: left
  754. }
  755. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell>.photonui-gridlayout-wrapper>:not(.photonui-widget-fixed-width) {
  756. width: 100%!important
  757. }
  758. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-horizontalalign-stretch>.photonui-gridlayout-wrapper,.photonui-menu>* {
  759. width: 100%
  760. }
  761. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell>.photonui-gridlayout-wrapper>:not(.photonui-widget-fixed-height) {
  762. height: 100%!important
  763. }
  764. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-verticalalign-stretch>.photonui-gridlayout-wrapper {
  765. height: 100%
  766. }
  767. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-verticalalign-start {
  768. vertical-align: top
  769. }
  770. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-verticalalign-center {
  771. vertical-align: middle
  772. }
  773. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-verticalalign-end {
  774. vertical-align: bottom
  775. }
  776. .photonui-canvas>canvas,.photonui-image img,.photonui-menu {
  777. vertical-align: middle
  778. }
  779. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-horizontalalign-start {
  780. text-align: left
  781. }
  782. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-horizontalalign-center {
  783. text-align: center
  784. }
  785. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-layout-horizontalalign-end {
  786. text-align: right
  787. }
  788. .photonui-button,.photonui-colorpicker {
  789. text-align: center
  790. }
  791. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-gridlayout-lastcol {
  792. padding-right: 0!important
  793. }
  794. .photonui-gridlayout>table>tbody>tr>td.photonui-gridlayout-cell.photonui-gridlayout-lastrow {
  795. padding-bottom: 0!important
  796. }
  797. .photonui-menu {
  798. box-sizing: border-box
  799. }
  800. .photonui-menu.photonui-menu-noicon .photonui-menuitem .photonui-menuitem-icon {
  801. display: none
  802. }
  803. .photonui-button {
  804. user-select: none;
  805. overflow: hidden;
  806. text-overflow: ellipsis;
  807. white-space: nowrap
  808. }
  809. .photonui-button>span {
  810. display: inline-block!important
  811. }
  812. .photonui-colorpicker .photonui-colorpicker-preview,.photonui-colorpicker .photonui-colorpicker-previewouter {
  813. display: block;
  814. height: 35px;
  815. width: 100%;
  816. box-sizing: border-box
  817. }
  818. .photonui-button>span i {
  819. margin-bottom: -1px
  820. }
  821. .photonui-colorpicker .photonui-colorpicker-previewouter {
  822. padding: 0 10px 5px
  823. }
  824. .photonui-field {
  825. min-height: 30px
  826. }
  827. .photonui-slider {
  828. display: flex!important;
  829. flex-direction: row;
  830. flew-wrap: nowrap;
  831. align-items: center
  832. }
  833. .photonui-slider .photonui-slider-slider {
  834. box-sizing: border-box;
  835. flex-grow: 1
  836. }
  837. .photonui-slider .photonui-slider-slider .photonui-slider-grip {
  838. position: relative;
  839. display: block;
  840. box-sizing: border-box
  841. }
  842. .photonui-slider .photonui-field {
  843. width: 25%;
  844. min-width: 50px;
  845. max-width: 75px
  846. }
  847. .photonui-switch {
  848. display: inline-block
  849. }
  850. .photonui-switch input {
  851. display: none
  852. }
  853. .photonui-switch span,.photonui-switch span:after {
  854. display: block;
  855. box-sizing: border-box
  856. }
  857. .photonui-switch span:after {
  858. content: "";
  859. width: 50%;
  860. height: 100%
  861. }
  862. .photonui-field-textarea {
  863. resize: none;
  864. min-height: 50px
  865. }
  866. .photonui-togglebutton {
  867. display: inline-block
  868. }
  869. .photonui-togglebutton input {
  870. display: none
  871. }
  872. .photonui-canvas,.photonui-image {
  873. display: inline-block;
  874. text-align: center
  875. }
  876. .photonui-togglebutton button {
  877. width: 100%;
  878. height: 100%
  879. }
  880. .photonui-progressbar.photonui-progressbar-pulsate.photonui-progressbar-horizontal .photonui-progressbar-text,.photonui-progressbar.photonui-progressbar-pulsate.photonui-progressbar-vertical .photonui-progressbar-text {
  881. display: none
  882. }
  883. .photonui-progressbar {
  884. position: relative;
  885. box-sizing: border-box;
  886. min-height: 26px;
  887. min-width: 26px;
  888. cursor: default;
  889. overflow: hidden
  890. }
  891. .photonui-progressbar .photonui-progressbar-bar {
  892. z-index: 1;
  893. box-sizing: border-box;
  894. position: absolute;
  895. top: 0;
  896. left: 0
  897. }
  898. .photonui-progressbar .photonui-progressbar-text {
  899. z-index: 2;
  900. position: absolute;
  901. box-sizing: border-box;
  902. white-space: nowrap;
  903. text-align: center;
  904. width: 100%;
  905. height: 26px;
  906. line-height: 26px;
  907. top: calc(50% - 13px);
  908. left: 0
  909. }
  910. .photonui-progressbar.photonui-progressbar-horizontal {
  911. min-width: 75px
  912. }
  913. .photonui-progressbar.photonui-progressbar-horizontal .photonui-progressbar-bar {
  914. height: 100%
  915. }
  916. .photonui-progressbar.photonui-progressbar-vertical {
  917. min-height: 75px
  918. }
  919. .photonui-progressbar.photonui-progressbar-vertical .photonui-progressbar-bar {
  920. width: 100%
  921. }
  922. @keyframes photonui-progressbar-pulsate-horizontal {
  923. 0% {
  924. width: 0;
  925. left: 0
  926. }
  927. 25% {
  928. width: 30%;
  929. left: 0
  930. }
  931. 75% {
  932. width: 30%;
  933. left: 70%
  934. }
  935. 100% {
  936. width: 0;
  937. left: 100%
  938. }
  939. }
  940. @-webkit-keyframes photonui-progressbar-pulsate-horizontal {
  941. 0% {
  942. width: 0;
  943. left: 0
  944. }
  945. 33% {
  946. width: 30%;
  947. left: 0
  948. }
  949. 75% {
  950. width: 30%;
  951. left: 70%
  952. }
  953. 100% {
  954. width: 0;
  955. left: 100%
  956. }
  957. }
  958. @keyframes photonui-progressbar-pulsate-vertical {
  959. 0% {
  960. height: 0;
  961. bottom: 0
  962. }
  963. 25% {
  964. height: 30%;
  965. bottom: 0
  966. }
  967. 75% {
  968. height: 30%;
  969. bottom: 70%
  970. }
  971. 100% {
  972. height: 0;
  973. bottom: 100%
  974. }
  975. }
  976. @-webkit-keyframes photonui-progressbar-pulsate-vertical {
  977. 0% {
  978. height: 0;
  979. bottom: 0
  980. }
  981. 25% {
  982. height: 30%;
  983. bottom: 0
  984. }
  985. 75% {
  986. height: 30%;
  987. bottom: 70%
  988. }
  989. 100% {
  990. height: 0;
  991. bottom: 100%
  992. }
  993. }
  994. .photonui-progressbar.photonui-progressbar-pulsate.photonui-progressbar-horizontal .photonui-progressbar-bar {
  995. width: 20%;
  996. animation: photonui-progressbar-pulsate-horizontal linear 1.5s infinite
  997. }
  998. .fa,.fa-stack,.photonui-separator,.photonui-tablayout {
  999. display: inline-block
  1000. }
  1001. .photonui-progressbar.photonui-progressbar-pulsate.photonui-progressbar-vertical .photonui-progressbar-bar {
  1002. height: 20%;
  1003. animation: photonui-progressbar-pulsate-vertical linear 1.5s infinite
  1004. }
  1005. .photonui-separator {
  1006. padding: 0
  1007. }
  1008. .photonui-separator hr {
  1009. vertical-align: middle;
  1010. width: 0;
  1011. height: 0;
  1012. margin: 0
  1013. }
  1014. .photonui-separator.photonui-separator-horizontal {
  1015. width: 100%
  1016. }
  1017. .photonui-separator.photonui-separator-horizontal hr {
  1018. width: 100%;
  1019. min-width: 20px
  1020. }
  1021. .photonui-separator.photonui-separator-vertical hr {
  1022. height: 100%;
  1023. min-height: 20px
  1024. }
  1025. .photonui-spriteicon>span {
  1026. font-size: 1px;
  1027. line-height: inherit;
  1028. display: inline-block;
  1029. width: 16px;
  1030. height: 16px;
  1031. vertical-align: text-bottom;
  1032. background: gray
  1033. }
  1034. /*!
  1035. * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
  1036. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  1037. */
  1038. @font-face {
  1039. font-family: FontAwesome;
  1040. src: url(./assets/fontawesome-webfont.eot?v=4.3.0);
  1041. src: url(./assets/fontawesome-webfont.eot?#iefix&v=4.3.0) format('embedded-opentype'),url(./assets/fontawesome-webfont.woff2?v=4.3.0) format('woff2'),url(./assets/fontawesome-webfont.woff?v=4.3.0) format('woff'),url(./assets/fontawesome-webfont.ttf?v=4.3.0) format('truetype'),url(./assets/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular) format('svg');
  1042. font-weight: 400;
  1043. font-style: normal
  1044. }
  1045. .fa {
  1046. font: normal normal normal 14px/1 FontAwesome;
  1047. font-size: inherit;
  1048. text-rendering: auto;
  1049. -webkit-font-smoothing: antialiased;
  1050. -moz-osx-font-smoothing: grayscale;
  1051. transform: translate(0,0)
  1052. }
  1053. .fa-lg {
  1054. font-size: 1.33333333em;
  1055. line-height: .75em;
  1056. vertical-align: -15%
  1057. }
  1058. .fa-2x {
  1059. font-size: 2em
  1060. }
  1061. .fa-3x {
  1062. font-size: 3em
  1063. }
  1064. .fa-4x {
  1065. font-size: 4em
  1066. }
  1067. .fa-5x {
  1068. font-size: 5em
  1069. }
  1070. .fa-fw {
  1071. width: 1.28571429em;
  1072. text-align: center
  1073. }
  1074. .fa-ul {
  1075. padding-left: 0;
  1076. margin-left: 2.14285714em
  1077. }
  1078. .fa-ul>li {
  1079. position: relative
  1080. }
  1081. .fa-li {
  1082. position: absolute;
  1083. left: -2.14285714em;
  1084. width: 2.14285714em;
  1085. top: .14285714em;
  1086. text-align: center
  1087. }
  1088. .fa-li.fa-lg {
  1089. left: -1.85714286em
  1090. }
  1091. .fa-border {
  1092. padding: .2em .25em .15em;
  1093. border: .08em solid #eee;
  1094. border-radius: .1em
  1095. }
  1096. .pull-left {
  1097. float: left
  1098. }
  1099. .fa.pull-left {
  1100. margin-right: .3em
  1101. }
  1102. .fa.pull-right {
  1103. margin-left: .3em
  1104. }
  1105. .photonui-dialog-buttons>*,.photonui-tabitem-tab span+span {
  1106. margin-left: 5px
  1107. }
  1108. .fa-spin {
  1109. -webkit-animation: fa-spin 2s infinite linear;
  1110. animation: fa-spin 2s infinite linear
  1111. }
  1112. .fa-pulse {
  1113. -webkit-animation: fa-spin 1s infinite steps(8);
  1114. animation: fa-spin 1s infinite steps(8)
  1115. }
  1116. @-webkit-keyframes fa-spin {
  1117. 0% {
  1118. -webkit-transform: rotate(0);
  1119. transform: rotate(0)
  1120. }
  1121. 100% {
  1122. -webkit-transform: rotate(359deg);
  1123. transform: rotate(359deg)
  1124. }
  1125. }
  1126. @keyframes fa-spin {
  1127. 0% {
  1128. -webkit-transform: rotate(0);
  1129. transform: rotate(0)
  1130. }
  1131. 100% {
  1132. -webkit-transform: rotate(359deg);
  1133. transform: rotate(359deg)
  1134. }
  1135. }
  1136. .fa-rotate-90 {
  1137. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  1138. -webkit-transform: rotate(90deg);
  1139. -ms-transform: rotate(90deg);
  1140. transform: rotate(90deg)
  1141. }
  1142. .fa-rotate-180 {
  1143. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  1144. -webkit-transform: rotate(180deg);
  1145. -ms-transform: rotate(180deg);
  1146. transform: rotate(180deg)
  1147. }
  1148. .fa-rotate-270 {
  1149. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  1150. -webkit-transform: rotate(270deg);
  1151. -ms-transform: rotate(270deg);
  1152. transform: rotate(270deg)
  1153. }
  1154. .fa-flip-horizontal {
  1155. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  1156. -webkit-transform: scale(-1,1);
  1157. -ms-transform: scale(-1,1);
  1158. transform: scale(-1,1)
  1159. }
  1160. .fa-flip-vertical {
  1161. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  1162. -webkit-transform: scale(1,-1);
  1163. -ms-transform: scale(1,-1);
  1164. transform: scale(1,-1)
  1165. }
  1166. :root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90 {
  1167. filter: none
  1168. }
  1169. .fa-stack {
  1170. position: relative;
  1171. width: 2em;
  1172. height: 2em;
  1173. line-height: 2em;
  1174. vertical-align: middle
  1175. }
  1176. .fa-stack-1x,.fa-stack-2x {
  1177. position: absolute;
  1178. left: 0;
  1179. width: 100%;
  1180. text-align: center
  1181. }
  1182. .fa-stack-1x {
  1183. line-height: inherit
  1184. }
  1185. .fa-stack-2x {
  1186. font-size: 2em
  1187. }
  1188. .fa-inverse {
  1189. color: #fff
  1190. }
  1191. .fa-glass:before {
  1192. content: "\f000"
  1193. }
  1194. .fa-music:before {
  1195. content: "\f001"
  1196. }
  1197. .fa-search:before {
  1198. content: "\f002"
  1199. }
  1200. .fa-envelope-o:before {
  1201. content: "\f003"
  1202. }
  1203. .fa-heart:before {
  1204. content: "\f004"
  1205. }
  1206. .fa-star:before {
  1207. content: "\f005"
  1208. }
  1209. .fa-star-o:before {
  1210. content: "\f006"
  1211. }
  1212. .fa-user:before {
  1213. content: "\f007"
  1214. }
  1215. .fa-film:before {
  1216. content: "\f008"
  1217. }
  1218. .fa-th-large:before {
  1219. content: "\f009"
  1220. }
  1221. .fa-th:before {
  1222. content: "\f00a"
  1223. }
  1224. .fa-th-list:before {
  1225. content: "\f00b"
  1226. }
  1227. .fa-check:before {
  1228. content: "\f00c"
  1229. }
  1230. .fa-close:before,.fa-remove:before,.fa-times:before {
  1231. content: "\f00d"
  1232. }
  1233. .fa-search-plus:before {
  1234. content: "\f00e"
  1235. }
  1236. .fa-search-minus:before {
  1237. content: "\f010"
  1238. }
  1239. .fa-power-off:before {
  1240. content: "\f011"
  1241. }
  1242. .fa-signal:before {
  1243. content: "\f012"
  1244. }
  1245. .fa-cog:before,.fa-gear:before {
  1246. content: "\f013"
  1247. }
  1248. .fa-trash-o:before {
  1249. content: "\f014"
  1250. }
  1251. .fa-home:before {
  1252. content: "\f015"
  1253. }
  1254. .fa-file-o:before {
  1255. content: "\f016"
  1256. }
  1257. .fa-clock-o:before {
  1258. content: "\f017"
  1259. }
  1260. .fa-road:before {
  1261. content: "\f018"
  1262. }
  1263. .fa-download:before {
  1264. content: "\f019"
  1265. }
  1266. .fa-arrow-circle-o-down:before {
  1267. content: "\f01a"
  1268. }
  1269. .fa-arrow-circle-o-up:before {
  1270. content: "\f01b"
  1271. }
  1272. .fa-inbox:before {
  1273. content: "\f01c"
  1274. }
  1275. .fa-play-circle-o:before {
  1276. content: "\f01d"
  1277. }
  1278. .fa-repeat:before,.fa-rotate-right:before {
  1279. content: "\f01e"
  1280. }
  1281. .fa-refresh:before {
  1282. content: "\f021"
  1283. }
  1284. .fa-list-alt:before {
  1285. content: "\f022"
  1286. }
  1287. .fa-lock:before {
  1288. content: "\f023"
  1289. }
  1290. .fa-flag:before {
  1291. content: "\f024"
  1292. }
  1293. .fa-headphones:before {
  1294. content: "\f025"
  1295. }
  1296. .fa-volume-off:before {
  1297. content: "\f026"
  1298. }
  1299. .fa-volume-down:before {
  1300. content: "\f027"
  1301. }
  1302. .fa-volume-up:before {
  1303. content: "\f028"
  1304. }
  1305. .fa-qrcode:before {
  1306. content: "\f029"
  1307. }
  1308. .fa-barcode:before {
  1309. content: "\f02a"
  1310. }
  1311. .fa-tag:before {
  1312. content: "\f02b"
  1313. }
  1314. .fa-tags:before {
  1315. content: "\f02c"
  1316. }
  1317. .fa-book:before {
  1318. content: "\f02d"
  1319. }
  1320. .fa-bookmark:before {
  1321. content: "\f02e"
  1322. }
  1323. .fa-print:before {
  1324. content: "\f02f"
  1325. }
  1326. .fa-camera:before {
  1327. content: "\f030"
  1328. }
  1329. .fa-font:before {
  1330. content: "\f031"
  1331. }
  1332. .fa-bold:before {
  1333. content: "\f032"
  1334. }
  1335. .fa-italic:before {
  1336. content: "\f033"
  1337. }
  1338. .fa-text-height:before {
  1339. content: "\f034"
  1340. }
  1341. .fa-text-width:before {
  1342. content: "\f035"
  1343. }
  1344. .fa-align-left:before {
  1345. content: "\f036"
  1346. }
  1347. .fa-align-center:before {
  1348. content: "\f037"
  1349. }
  1350. .fa-align-right:before {
  1351. content: "\f038"
  1352. }
  1353. .fa-align-justify:before {
  1354. content: "\f039"
  1355. }
  1356. .fa-list:before {
  1357. content: "\f03a"
  1358. }
  1359. .fa-dedent:before,.fa-outdent:before {
  1360. content: "\f03b"
  1361. }
  1362. .fa-indent:before {
  1363. content: "\f03c"
  1364. }
  1365. .fa-video-camera:before {
  1366. content: "\f03d"
  1367. }
  1368. .fa-image:before,.fa-photo:before,.fa-picture-o:before {
  1369. content: "\f03e"
  1370. }
  1371. .fa-pencil:before {
  1372. content: "\f040"
  1373. }
  1374. .fa-map-marker:before {
  1375. content: "\f041"
  1376. }
  1377. .fa-adjust:before {
  1378. content: "\f042"
  1379. }
  1380. .fa-tint:before {
  1381. content: "\f043"
  1382. }
  1383. .fa-edit:before,.fa-pencil-square-o:before {
  1384. content: "\f044"
  1385. }
  1386. .fa-share-square-o:before {
  1387. content: "\f045"
  1388. }
  1389. .fa-check-square-o:before {
  1390. content: "\f046"
  1391. }
  1392. .fa-arrows:before {
  1393. content: "\f047"
  1394. }
  1395. .fa-step-backward:before {
  1396. content: "\f048"
  1397. }
  1398. .fa-fast-backward:before {
  1399. content: "\f049"
  1400. }
  1401. .fa-backward:before {
  1402. content: "\f04a"
  1403. }
  1404. .fa-play:before {
  1405. content: "\f04b"
  1406. }
  1407. .fa-pause:before {
  1408. content: "\f04c"
  1409. }
  1410. .fa-stop:before {
  1411. content: "\f04d"
  1412. }
  1413. .fa-forward:before {
  1414. content: "\f04e"
  1415. }
  1416. .fa-fast-forward:before {
  1417. content: "\f050"
  1418. }
  1419. .fa-step-forward:before {
  1420. content: "\f051"
  1421. }
  1422. .fa-eject:before {
  1423. content: "\f052"
  1424. }
  1425. .fa-chevron-left:before {
  1426. content: "\f053"
  1427. }
  1428. .fa-chevron-right:before {
  1429. content: "\f054"
  1430. }
  1431. .fa-plus-circle:before {
  1432. content: "\f055"
  1433. }
  1434. .fa-minus-circle:before {
  1435. content: "\f056"
  1436. }
  1437. .fa-times-circle:before {
  1438. content: "\f057"
  1439. }
  1440. .fa-check-circle:before {
  1441. content: "\f058"
  1442. }
  1443. .fa-question-circle:before {
  1444. content: "\f059"
  1445. }
  1446. .fa-info-circle:before {
  1447. content: "\f05a"
  1448. }
  1449. .fa-crosshairs:before {
  1450. content: "\f05b"
  1451. }
  1452. .fa-times-circle-o:before {
  1453. content: "\f05c"
  1454. }
  1455. .fa-check-circle-o:before {
  1456. content: "\f05d"
  1457. }
  1458. .fa-ban:before {
  1459. content: "\f05e"
  1460. }
  1461. .fa-arrow-left:before {
  1462. content: "\f060"
  1463. }
  1464. .fa-arrow-right:before {
  1465. content: "\f061"
  1466. }
  1467. .fa-arrow-up:before {
  1468. content: "\f062"
  1469. }
  1470. .fa-arrow-down:before {
  1471. content: "\f063"
  1472. }
  1473. .fa-mail-forward:before,.fa-share:before {
  1474. content: "\f064"
  1475. }
  1476. .fa-expand:before {
  1477. content: "\f065"
  1478. }
  1479. .fa-compress:before {
  1480. content: "\f066"
  1481. }
  1482. .fa-plus:before {
  1483. content: "\f067"
  1484. }
  1485. .fa-minus:before {
  1486. content: "\f068"
  1487. }
  1488. .fa-asterisk:before {
  1489. content: "\f069"
  1490. }
  1491. .fa-exclamation-circle:before {
  1492. content: "\f06a"
  1493. }
  1494. .fa-gift:before {
  1495. content: "\f06b"
  1496. }
  1497. .fa-leaf:before {
  1498. content: "\f06c"
  1499. }
  1500. .fa-fire:before {
  1501. content: "\f06d"
  1502. }
  1503. .fa-eye:before {
  1504. content: "\f06e"
  1505. }
  1506. .fa-eye-slash:before {
  1507. content: "\f070"
  1508. }
  1509. .fa-exclamation-triangle:before,.fa-warning:before {
  1510. content: "\f071"
  1511. }
  1512. .fa-plane:before {
  1513. content: "\f072"
  1514. }
  1515. .fa-calendar:before {
  1516. content: "\f073"
  1517. }
  1518. .fa-random:before {
  1519. content: "\f074"
  1520. }
  1521. .fa-comment:before {
  1522. content: "\f075"
  1523. }
  1524. .fa-magnet:before {
  1525. content: "\f076"
  1526. }
  1527. .fa-chevron-up:before {
  1528. content: "\f077"
  1529. }
  1530. .fa-chevron-down:before {
  1531. content: "\f078"
  1532. }
  1533. .fa-retweet:before {
  1534. content: "\f079"
  1535. }
  1536. .fa-shopping-cart:before {
  1537. content: "\f07a"
  1538. }
  1539. .fa-folder:before {
  1540. content: "\f07b"
  1541. }
  1542. .fa-folder-open:before {
  1543. content: "\f07c"
  1544. }
  1545. .fa-arrows-v:before {
  1546. content: "\f07d"
  1547. }
  1548. .fa-arrows-h:before {
  1549. content: "\f07e"
  1550. }
  1551. .fa-bar-chart-o:before,.fa-bar-chart:before {
  1552. content: "\f080"
  1553. }
  1554. .fa-twitter-square:before {
  1555. content: "\f081"
  1556. }
  1557. .fa-facebook-square:before {
  1558. content: "\f082"
  1559. }
  1560. .fa-camera-retro:before {
  1561. content: "\f083"
  1562. }
  1563. .fa-key:before {
  1564. content: "\f084"
  1565. }
  1566. .fa-cogs:before,.fa-gears:before {
  1567. content: "\f085"
  1568. }
  1569. .fa-comments:before {
  1570. content: "\f086"
  1571. }
  1572. .fa-thumbs-o-up:before {
  1573. content: "\f087"
  1574. }
  1575. .fa-thumbs-o-down:before {
  1576. content: "\f088"
  1577. }
  1578. .fa-star-half:before {
  1579. content: "\f089"
  1580. }
  1581. .fa-heart-o:before {
  1582. content: "\f08a"
  1583. }
  1584. .fa-sign-out:before {
  1585. content: "\f08b"
  1586. }
  1587. .fa-linkedin-square:before {
  1588. content: "\f08c"
  1589. }
  1590. .fa-thumb-tack:before {
  1591. content: "\f08d"
  1592. }
  1593. .fa-external-link:before {
  1594. content: "\f08e"
  1595. }
  1596. .fa-sign-in:before {
  1597. content: "\f090"
  1598. }
  1599. .fa-trophy:before {
  1600. content: "\f091"
  1601. }
  1602. .fa-github-square:before {
  1603. content: "\f092"
  1604. }
  1605. .fa-upload:before {
  1606. content: "\f093"
  1607. }
  1608. .fa-lemon-o:before {
  1609. content: "\f094"
  1610. }
  1611. .fa-phone:before {
  1612. content: "\f095"
  1613. }
  1614. .fa-square-o:before {
  1615. content: "\f096"
  1616. }
  1617. .fa-bookmark-o:before {
  1618. content: "\f097"
  1619. }
  1620. .fa-phone-square:before {
  1621. content: "\f098"
  1622. }
  1623. .fa-twitter:before {
  1624. content: "\f099"
  1625. }
  1626. .fa-facebook-f:before,.fa-facebook:before {
  1627. content: "\f09a"
  1628. }
  1629. .fa-github:before {
  1630. content: "\f09b"
  1631. }
  1632. .fa-unlock:before {
  1633. content: "\f09c"
  1634. }
  1635. .fa-credit-card:before {
  1636. content: "\f09d"
  1637. }
  1638. .fa-rss:before {
  1639. content: "\f09e"
  1640. }
  1641. .fa-hdd-o:before {
  1642. content: "\f0a0"
  1643. }
  1644. .fa-bullhorn:before {
  1645. content: "\f0a1"
  1646. }
  1647. .fa-bell:before {
  1648. content: "\f0f3"
  1649. }
  1650. .fa-certificate:before {
  1651. content: "\f0a3"
  1652. }
  1653. .fa-hand-o-right:before {
  1654. content: "\f0a4"
  1655. }
  1656. .fa-hand-o-left:before {
  1657. content: "\f0a5"
  1658. }
  1659. .fa-hand-o-up:before {
  1660. content: "\f0a6"
  1661. }
  1662. .fa-hand-o-down:before {
  1663. content: "\f0a7"
  1664. }
  1665. .fa-arrow-circle-left:before {
  1666. content: "\f0a8"
  1667. }
  1668. .fa-arrow-circle-right:before {
  1669. content: "\f0a9"
  1670. }
  1671. .fa-arrow-circle-up:before {
  1672. content: "\f0aa"
  1673. }
  1674. .fa-arrow-circle-down:before {
  1675. content: "\f0ab"
  1676. }
  1677. .fa-globe:before {
  1678. content: "\f0ac"
  1679. }
  1680. .fa-wrench:before {
  1681. content: "\f0ad"
  1682. }
  1683. .fa-tasks:before {
  1684. content: "\f0ae"
  1685. }
  1686. .fa-filter:before {
  1687. content: "\f0b0"
  1688. }
  1689. .fa-briefcase:before {
  1690. content: "\f0b1"
  1691. }
  1692. .fa-arrows-alt:before {
  1693. content: "\f0b2"
  1694. }
  1695. .fa-group:before,.fa-users:before {
  1696. content: "\f0c0"
  1697. }
  1698. .fa-chain:before,.fa-link:before {
  1699. content: "\f0c1"
  1700. }
  1701. .fa-cloud:before {
  1702. content: "\f0c2"
  1703. }
  1704. .fa-flask:before {
  1705. content: "\f0c3"
  1706. }
  1707. .fa-cut:before,.fa-scissors:before {
  1708. content: "\f0c4"
  1709. }
  1710. .fa-copy:before,.fa-files-o:before {
  1711. content: "\f0c5"
  1712. }
  1713. .fa-paperclip:before {
  1714. content: "\f0c6"
  1715. }
  1716. .fa-floppy-o:before,.fa-save:before {
  1717. content: "\f0c7"
  1718. }
  1719. .fa-square:before {
  1720. content: "\f0c8"
  1721. }
  1722. .fa-bars:before,.fa-navicon:before,.fa-reorder:before {
  1723. content: "\f0c9"
  1724. }
  1725. .fa-list-ul:before {
  1726. content: "\f0ca"
  1727. }
  1728. .fa-list-ol:before {
  1729. content: "\f0cb"
  1730. }
  1731. .fa-strikethrough:before {
  1732. content: "\f0cc"
  1733. }
  1734. .fa-underline:before {
  1735. content: "\f0cd"
  1736. }
  1737. .fa-table:before {
  1738. content: "\f0ce"
  1739. }
  1740. .fa-magic:before {
  1741. content: "\f0d0"
  1742. }
  1743. .fa-truck:before {
  1744. content: "\f0d1"
  1745. }
  1746. .fa-pinterest:before {
  1747. content: "\f0d2"
  1748. }
  1749. .fa-pinterest-square:before {
  1750. content: "\f0d3"
  1751. }
  1752. .fa-google-plus-square:before {
  1753. content: "\f0d4"
  1754. }
  1755. .fa-google-plus:before {
  1756. content: "\f0d5"
  1757. }
  1758. .fa-money:before {
  1759. content: "\f0d6"
  1760. }
  1761. .fa-caret-down:before {
  1762. content: "\f0d7"
  1763. }
  1764. .fa-caret-up:before {
  1765. content: "\f0d8"
  1766. }
  1767. .fa-caret-left:before {
  1768. content: "\f0d9"
  1769. }
  1770. .fa-caret-right:before {
  1771. content: "\f0da"
  1772. }
  1773. .fa-columns:before {
  1774. content: "\f0db"
  1775. }
  1776. .fa-sort:before,.fa-unsorted:before {
  1777. content: "\f0dc"
  1778. }
  1779. .fa-sort-desc:before,.fa-sort-down:before {
  1780. content: "\f0dd"
  1781. }
  1782. .fa-sort-asc:before,.fa-sort-up:before {
  1783. content: "\f0de"
  1784. }
  1785. .fa-envelope:before {
  1786. content: "\f0e0"
  1787. }
  1788. .fa-linkedin:before {
  1789. content: "\f0e1"
  1790. }
  1791. .fa-rotate-left:before,.fa-undo:before {
  1792. content: "\f0e2"
  1793. }
  1794. .fa-gavel:before,.fa-legal:before {
  1795. content: "\f0e3"
  1796. }
  1797. .fa-dashboard:before,.fa-tachometer:before {
  1798. content: "\f0e4"
  1799. }
  1800. .fa-comment-o:before {
  1801. content: "\f0e5"
  1802. }
  1803. .fa-comments-o:before {
  1804. content: "\f0e6"
  1805. }
  1806. .fa-bolt:before,.fa-flash:before {
  1807. content: "\f0e7"
  1808. }
  1809. .fa-sitemap:before {
  1810. content: "\f0e8"
  1811. }
  1812. .fa-umbrella:before {
  1813. content: "\f0e9"
  1814. }
  1815. .fa-clipboard:before,.fa-paste:before {
  1816. content: "\f0ea"
  1817. }
  1818. .fa-lightbulb-o:before {
  1819. content: "\f0eb"
  1820. }
  1821. .fa-exchange:before {
  1822. content: "\f0ec"
  1823. }
  1824. .fa-cloud-download:before {
  1825. content: "\f0ed"
  1826. }
  1827. .fa-cloud-upload:before {
  1828. content: "\f0ee"
  1829. }
  1830. .fa-user-md:before {
  1831. content: "\f0f0"
  1832. }
  1833. .fa-stethoscope:before {
  1834. content: "\f0f1"
  1835. }
  1836. .fa-suitcase:before {
  1837. content: "\f0f2"
  1838. }
  1839. .fa-bell-o:before {
  1840. content: "\f0a2"
  1841. }
  1842. .fa-coffee:before {
  1843. content: "\f0f4"
  1844. }
  1845. .fa-cutlery:before {
  1846. content: "\f0f5"
  1847. }
  1848. .fa-file-text-o:before {
  1849. content: "\f0f6"
  1850. }
  1851. .fa-building-o:before {
  1852. content: "\f0f7"
  1853. }
  1854. .fa-hospital-o:before {
  1855. content: "\f0f8"
  1856. }
  1857. .fa-ambulance:before {
  1858. content: "\f0f9"
  1859. }
  1860. .fa-medkit:before {
  1861. content: "\f0fa"
  1862. }
  1863. .fa-fighter-jet:before {
  1864. content: "\f0fb"
  1865. }
  1866. .fa-beer:before {
  1867. content: "\f0fc"
  1868. }
  1869. .fa-h-square:before {
  1870. content: "\f0fd"
  1871. }
  1872. .fa-plus-square:before {
  1873. content: "\f0fe"
  1874. }
  1875. .fa-angle-double-left:before {
  1876. content: "\f100"
  1877. }
  1878. .fa-angle-double-right:before {
  1879. content: "\f101"
  1880. }
  1881. .fa-angle-double-up:before {
  1882. content: "\f102"
  1883. }
  1884. .fa-angle-double-down:before {
  1885. content: "\f103"
  1886. }
  1887. .fa-angle-left:before {
  1888. content: "\f104"
  1889. }
  1890. .fa-angle-right:before {
  1891. content: "\f105"
  1892. }
  1893. .fa-angle-up:before {
  1894. content: "\f106"
  1895. }
  1896. .fa-angle-down:before {
  1897. content: "\f107"
  1898. }
  1899. .fa-desktop:before {
  1900. content: "\f108"
  1901. }
  1902. .fa-laptop:before {
  1903. content: "\f109"
  1904. }
  1905. .fa-tablet:before {
  1906. content: "\f10a"
  1907. }
  1908. .fa-mobile-phone:before,.fa-mobile:before {
  1909. content: "\f10b"
  1910. }
  1911. .fa-circle-o:before {
  1912. content: "\f10c"
  1913. }
  1914. .fa-quote-left:before {
  1915. content: "\f10d"
  1916. }
  1917. .fa-quote-right:before {
  1918. content: "\f10e"
  1919. }
  1920. .fa-spinner:before {
  1921. content: "\f110"
  1922. }
  1923. .fa-circle:before {
  1924. content: "\f111"
  1925. }
  1926. .fa-mail-reply:before,.fa-reply:before {
  1927. content: "\f112"
  1928. }
  1929. .fa-github-alt:before {
  1930. content: "\f113"
  1931. }
  1932. .fa-folder-o:before {
  1933. content: "\f114"
  1934. }
  1935. .fa-folder-open-o:before {
  1936. content: "\f115"
  1937. }
  1938. .fa-smile-o:before {
  1939. content: "\f118"
  1940. }
  1941. .fa-frown-o:before {
  1942. content: "\f119"
  1943. }
  1944. .fa-meh-o:before {
  1945. content: "\f11a"
  1946. }
  1947. .fa-gamepad:before {
  1948. content: "\f11b"
  1949. }
  1950. .fa-keyboard-o:before {
  1951. content: "\f11c"
  1952. }
  1953. .fa-flag-o:before {
  1954. content: "\f11d"
  1955. }
  1956. .fa-flag-checkered:before {
  1957. content: "\f11e"
  1958. }
  1959. .fa-terminal:before {
  1960. content: "\f120"
  1961. }
  1962. .fa-code:before {
  1963. content: "\f121"
  1964. }
  1965. .fa-mail-reply-all:before,.fa-reply-all:before {
  1966. content: "\f122"
  1967. }
  1968. .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before {
  1969. content: "\f123"
  1970. }
  1971. .fa-location-arrow:before {
  1972. content: "\f124"
  1973. }
  1974. .fa-crop:before {
  1975. content: "\f125"
  1976. }
  1977. .fa-code-fork:before {
  1978. content: "\f126"
  1979. }
  1980. .fa-chain-broken:before,.fa-unlink:before {
  1981. content: "\f127"
  1982. }
  1983. .fa-question:before {
  1984. content: "\f128"
  1985. }
  1986. .fa-info:before {
  1987. content: "\f129"
  1988. }
  1989. .fa-exclamation:before {
  1990. content: "\f12a"
  1991. }
  1992. .fa-superscript:before {
  1993. content: "\f12b"
  1994. }
  1995. .fa-subscript:before {
  1996. content: "\f12c"
  1997. }
  1998. .fa-eraser:before {
  1999. content: "\f12d"
  2000. }
  2001. .fa-puzzle-piece:before {
  2002. content: "\f12e"
  2003. }
  2004. .fa-microphone:before {
  2005. content: "\f130"
  2006. }
  2007. .fa-microphone-slash:before {
  2008. content: "\f131"
  2009. }
  2010. .fa-shield:before {
  2011. content: "\f132"
  2012. }
  2013. .fa-calendar-o:before {
  2014. content: "\f133"
  2015. }
  2016. .fa-fire-extinguisher:before {
  2017. content: "\f134"
  2018. }
  2019. .fa-rocket:before {
  2020. content: "\f135"
  2021. }
  2022. .fa-maxcdn:before {
  2023. content: "\f136"
  2024. }
  2025. .fa-chevron-circle-left:before {
  2026. content: "\f137"
  2027. }
  2028. .fa-chevron-circle-right:before {
  2029. content: "\f138"
  2030. }
  2031. .fa-chevron-circle-up:before {
  2032. content: "\f139"
  2033. }
  2034. .fa-chevron-circle-down:before {
  2035. content: "\f13a"
  2036. }
  2037. .fa-html5:before {
  2038. content: "\f13b"
  2039. }
  2040. .fa-css3:before {
  2041. content: "\f13c"
  2042. }
  2043. .fa-anchor:before {
  2044. content: "\f13d"
  2045. }
  2046. .fa-unlock-alt:before {
  2047. content: "\f13e"
  2048. }
  2049. .fa-bullseye:before {
  2050. content: "\f140"
  2051. }
  2052. .fa-ellipsis-h:before {
  2053. content: "\f141"
  2054. }
  2055. .fa-ellipsis-v:before {
  2056. content: "\f142"
  2057. }
  2058. .fa-rss-square:before {
  2059. content: "\f143"
  2060. }
  2061. .fa-play-circle:before {
  2062. content: "\f144"
  2063. }
  2064. .fa-ticket:before {
  2065. content: "\f145"
  2066. }
  2067. .fa-minus-square:before {
  2068. content: "\f146"
  2069. }
  2070. .fa-minus-square-o:before {
  2071. content: "\f147"
  2072. }
  2073. .fa-level-up:before {
  2074. content: "\f148"
  2075. }
  2076. .fa-level-down:before {
  2077. content: "\f149"
  2078. }
  2079. .fa-check-square:before {
  2080. content: "\f14a"
  2081. }
  2082. .fa-pencil-square:before {
  2083. content: "\f14b"
  2084. }
  2085. .fa-external-link-square:before {
  2086. content: "\f14c"
  2087. }
  2088. .fa-share-square:before {
  2089. content: "\f14d"
  2090. }
  2091. .fa-compass:before {
  2092. content: "\f14e"
  2093. }
  2094. .fa-caret-square-o-down:before,.fa-toggle-down:before {
  2095. content: "\f150"
  2096. }
  2097. .fa-caret-square-o-up:before,.fa-toggle-up:before {
  2098. content: "\f151"
  2099. }
  2100. .fa-caret-square-o-right:before,.fa-toggle-right:before {
  2101. content: "\f152"
  2102. }
  2103. .fa-eur:before,.fa-euro:before {
  2104. content: "\f153"
  2105. }
  2106. .fa-gbp:before {
  2107. content: "\f154"
  2108. }
  2109. .fa-dollar:before,.fa-usd:before {
  2110. content: "\f155"
  2111. }
  2112. .fa-inr:before,.fa-rupee:before {
  2113. content: "\f156"
  2114. }
  2115. .fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before {
  2116. content: "\f157"
  2117. }
  2118. .fa-rouble:before,.fa-rub:before,.fa-ruble:before {
  2119. content: "\f158"
  2120. }
  2121. .fa-krw:before,.fa-won:before {
  2122. content: "\f159"
  2123. }
  2124. .fa-bitcoin:before,.fa-btc:before {
  2125. content: "\f15a"
  2126. }
  2127. .fa-file:before {
  2128. content: "\f15b"
  2129. }
  2130. .fa-file-text:before {
  2131. content: "\f15c"
  2132. }
  2133. .fa-sort-alpha-asc:before {
  2134. content: "\f15d"
  2135. }
  2136. .fa-sort-alpha-desc:before {
  2137. content: "\f15e"
  2138. }
  2139. .fa-sort-amount-asc:before {
  2140. content: "\f160"
  2141. }
  2142. .fa-sort-amount-desc:before {
  2143. content: "\f161"
  2144. }
  2145. .fa-sort-numeric-asc:before {
  2146. content: "\f162"
  2147. }
  2148. .fa-sort-numeric-desc:before {
  2149. content: "\f163"
  2150. }
  2151. .fa-thumbs-up:before {
  2152. content: "\f164"
  2153. }
  2154. .fa-thumbs-down:before {
  2155. content: "\f165"
  2156. }
  2157. .fa-youtube-square:before {
  2158. content: "\f166"
  2159. }
  2160. .fa-youtube:before {
  2161. content: "\f167"
  2162. }
  2163. .fa-xing:before {
  2164. content: "\f168"
  2165. }
  2166. .fa-xing-square:before {
  2167. content: "\f169"
  2168. }
  2169. .fa-youtube-play:before {
  2170. content: "\f16a"
  2171. }
  2172. .fa-dropbox:before {
  2173. content: "\f16b"
  2174. }
  2175. .fa-stack-overflow:before {
  2176. content: "\f16c"
  2177. }
  2178. .fa-instagram:before {
  2179. content: "\f16d"
  2180. }
  2181. .fa-flickr:before {
  2182. content: "\f16e"
  2183. }
  2184. .fa-adn:before {
  2185. content: "\f170"
  2186. }
  2187. .fa-bitbucket:before {
  2188. content: "\f171"
  2189. }
  2190. .fa-bitbucket-square:before {
  2191. content: "\f172"
  2192. }
  2193. .fa-tumblr:before {
  2194. content: "\f173"
  2195. }
  2196. .fa-tumblr-square:before {
  2197. content: "\f174"
  2198. }
  2199. .fa-long-arrow-down:before {
  2200. content: "\f175"
  2201. }
  2202. .fa-long-arrow-up:before {
  2203. content: "\f176"
  2204. }
  2205. .fa-long-arrow-left:before {
  2206. content: "\f177"
  2207. }
  2208. .fa-long-arrow-right:before {
  2209. content: "\f178"
  2210. }
  2211. .fa-apple:before {
  2212. content: "\f179"
  2213. }
  2214. .fa-windows:before {
  2215. content: "\f17a"
  2216. }
  2217. .fa-android:before {
  2218. content: "\f17b"
  2219. }
  2220. .fa-linux:before {
  2221. content: "\f17c"
  2222. }
  2223. .fa-dribbble:before {
  2224. content: "\f17d"
  2225. }
  2226. .fa-skype:before {
  2227. content: "\f17e"
  2228. }
  2229. .fa-foursquare:before {
  2230. content: "\f180"
  2231. }
  2232. .fa-trello:before {
  2233. content: "\f181"
  2234. }
  2235. .fa-female:before {
  2236. content: "\f182"
  2237. }
  2238. .fa-male:before {
  2239. content: "\f183"
  2240. }
  2241. .fa-gittip:before,.fa-gratipay:before {
  2242. content: "\f184"
  2243. }
  2244. .fa-sun-o:before {
  2245. content: "\f185"
  2246. }
  2247. .fa-moon-o:before {
  2248. content: "\f186"
  2249. }
  2250. .fa-archive:before {
  2251. content: "\f187"
  2252. }
  2253. .fa-bug:before {
  2254. content: "\f188"
  2255. }
  2256. .fa-vk:before {
  2257. content: "\f189"
  2258. }
  2259. .fa-weibo:before {
  2260. content: "\f18a"
  2261. }
  2262. .fa-renren:before {
  2263. content: "\f18b"
  2264. }
  2265. .fa-pagelines:before {
  2266. content: "\f18c"
  2267. }
  2268. .fa-stack-exchange:before {
  2269. content: "\f18d"
  2270. }
  2271. .fa-arrow-circle-o-right:before {
  2272. content: "\f18e"
  2273. }
  2274. .fa-arrow-circle-o-left:before {
  2275. content: "\f190"
  2276. }
  2277. .fa-caret-square-o-left:before,.fa-toggle-left:before {
  2278. content: "\f191"
  2279. }
  2280. .fa-dot-circle-o:before {
  2281. content: "\f192"
  2282. }
  2283. .fa-wheelchair:before {
  2284. content: "\f193"
  2285. }
  2286. .fa-vimeo-square:before {
  2287. content: "\f194"
  2288. }
  2289. .fa-try:before,.fa-turkish-lira:before {
  2290. content: "\f195"
  2291. }
  2292. .fa-plus-square-o:before {
  2293. content: "\f196"
  2294. }
  2295. .fa-space-shuttle:before {
  2296. content: "\f197"
  2297. }
  2298. .fa-slack:before {
  2299. content: "\f198"
  2300. }
  2301. .fa-envelope-square:before {
  2302. content: "\f199"
  2303. }
  2304. .fa-wordpress:before {
  2305. content: "\f19a"
  2306. }
  2307. .fa-openid:before {
  2308. content: "\f19b"
  2309. }
  2310. .fa-bank:before,.fa-institution:before,.fa-university:before {
  2311. content: "\f19c"
  2312. }
  2313. .fa-graduation-cap:before,.fa-mortar-board:before {
  2314. content: "\f19d"
  2315. }
  2316. .fa-yahoo:before {
  2317. content: "\f19e"
  2318. }
  2319. .fa-google:before {
  2320. content: "\f1a0"
  2321. }
  2322. .fa-reddit:before {
  2323. content: "\f1a1"
  2324. }
  2325. .fa-reddit-square:before {
  2326. content: "\f1a2"
  2327. }
  2328. .fa-stumbleupon-circle:before {
  2329. content: "\f1a3"
  2330. }
  2331. .fa-stumbleupon:before {
  2332. content: "\f1a4"
  2333. }
  2334. .fa-delicious:before {
  2335. content: "\f1a5"
  2336. }
  2337. .fa-digg:before {
  2338. content: "\f1a6"
  2339. }
  2340. .fa-pied-piper:before {
  2341. content: "\f1a7"
  2342. }
  2343. .fa-pied-piper-alt:before {
  2344. content: "\f1a8"
  2345. }
  2346. .fa-drupal:before {
  2347. content: "\f1a9"
  2348. }
  2349. .fa-joomla:before {
  2350. content: "\f1aa"
  2351. }
  2352. .fa-language:before {
  2353. content: "\f1ab"
  2354. }
  2355. .fa-fax:before {
  2356. content: "\f1ac"
  2357. }
  2358. .fa-building:before {
  2359. content: "\f1ad"
  2360. }
  2361. .fa-child:before {
  2362. content: "\f1ae"
  2363. }
  2364. .fa-paw:before {
  2365. content: "\f1b0"
  2366. }
  2367. .fa-spoon:before {
  2368. content: "\f1b1"
  2369. }
  2370. .fa-cube:before {
  2371. content: "\f1b2"
  2372. }
  2373. .fa-cubes:before {
  2374. content: "\f1b3"
  2375. }
  2376. .fa-behance:before {
  2377. content: "\f1b4"
  2378. }
  2379. .fa-behance-square:before {
  2380. content: "\f1b5"
  2381. }
  2382. .fa-steam:before {
  2383. content: "\f1b6"
  2384. }
  2385. .fa-steam-square:before {
  2386. content: "\f1b7"
  2387. }
  2388. .fa-recycle:before {
  2389. content: "\f1b8"
  2390. }
  2391. .fa-automobile:before,.fa-car:before {
  2392. content: "\f1b9"
  2393. }
  2394. .fa-cab:before,.fa-taxi:before {
  2395. content: "\f1ba"
  2396. }
  2397. .fa-tree:before {
  2398. content: "\f1bb"
  2399. }
  2400. .fa-spotify:before {
  2401. content: "\f1bc"
  2402. }
  2403. .fa-deviantart:before {
  2404. content: "\f1bd"
  2405. }
  2406. .fa-soundcloud:before {
  2407. content: "\f1be"
  2408. }
  2409. .fa-database:before {
  2410. content: "\f1c0"
  2411. }
  2412. .fa-file-pdf-o:before {
  2413. content: "\f1c1"
  2414. }
  2415. .fa-file-word-o:before {
  2416. content: "\f1c2"
  2417. }
  2418. .fa-file-excel-o:before {
  2419. content: "\f1c3"
  2420. }
  2421. .fa-file-powerpoint-o:before {
  2422. content: "\f1c4"
  2423. }
  2424. .fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before {
  2425. content: "\f1c5"
  2426. }
  2427. .fa-file-archive-o:before,.fa-file-zip-o:before {
  2428. content: "\f1c6"
  2429. }
  2430. .fa-file-audio-o:before,.fa-file-sound-o:before {
  2431. content: "\f1c7"
  2432. }
  2433. .fa-file-movie-o:before,.fa-file-video-o:before {
  2434. content: "\f1c8"
  2435. }
  2436. .fa-file-code-o:before {
  2437. content: "\f1c9"
  2438. }
  2439. .fa-vine:before {
  2440. content: "\f1ca"
  2441. }
  2442. .fa-codepen:before {
  2443. content: "\f1cb"
  2444. }
  2445. .fa-jsfiddle:before {
  2446. content: "\f1cc"
  2447. }
  2448. .fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before {
  2449. content: "\f1cd"
  2450. }
  2451. .fa-circle-o-notch:before {
  2452. content: "\f1ce"
  2453. }
  2454. .fa-ra:before,.fa-rebel:before {
  2455. content: "\f1d0"
  2456. }
  2457. .fa-empire:before,.fa-ge:before {
  2458. content: "\f1d1"
  2459. }
  2460. .fa-git-square:before {
  2461. content: "\f1d2"
  2462. }
  2463. .fa-git:before {
  2464. content: "\f1d3"
  2465. }
  2466. .fa-hacker-news:before {
  2467. content: "\f1d4"
  2468. }
  2469. .fa-tencent-weibo:before {
  2470. content: "\f1d5"
  2471. }
  2472. .fa-qq:before {
  2473. content: "\f1d6"
  2474. }
  2475. .fa-wechat:before,.fa-weixin:before {
  2476. content: "\f1d7"
  2477. }
  2478. .fa-paper-plane:before,.fa-send:before {
  2479. content: "\f1d8"
  2480. }
  2481. .fa-paper-plane-o:before,.fa-send-o:before {
  2482. content: "\f1d9"
  2483. }
  2484. .fa-history:before {
  2485. content: "\f1da"
  2486. }
  2487. .fa-circle-thin:before,.fa-genderless:before {
  2488. content: "\f1db"
  2489. }
  2490. .fa-header:before {
  2491. content: "\f1dc"
  2492. }
  2493. .fa-paragraph:before {
  2494. content: "\f1dd"
  2495. }
  2496. .fa-sliders:before {
  2497. content: "\f1de"
  2498. }
  2499. .fa-share-alt:before {
  2500. content: "\f1e0"
  2501. }
  2502. .fa-share-alt-square:before {
  2503. content: "\f1e1"
  2504. }
  2505. .fa-bomb:before {
  2506. content: "\f1e2"
  2507. }
  2508. .fa-futbol-o:before,.fa-soccer-ball-o:before {
  2509. content: "\f1e3"
  2510. }
  2511. .fa-tty:before {
  2512. content: "\f1e4"
  2513. }
  2514. .fa-binoculars:before {
  2515. content: "\f1e5"
  2516. }
  2517. .fa-plug:before {
  2518. content: "\f1e6"
  2519. }
  2520. .fa-slideshare:before {
  2521. content: "\f1e7"
  2522. }
  2523. .fa-twitch:before {
  2524. content: "\f1e8"
  2525. }
  2526. .fa-yelp:before {
  2527. content: "\f1e9"
  2528. }
  2529. .fa-newspaper-o:before {
  2530. content: "\f1ea"
  2531. }
  2532. .fa-wifi:before {
  2533. content: "\f1eb"
  2534. }
  2535. .fa-calculator:before {
  2536. content: "\f1ec"
  2537. }
  2538. .fa-paypal:before {
  2539. content: "\f1ed"
  2540. }
  2541. .fa-google-wallet:before {
  2542. content: "\f1ee"
  2543. }
  2544. .fa-cc-visa:before {
  2545. content: "\f1f0"
  2546. }
  2547. .fa-cc-mastercard:before {
  2548. content: "\f1f1"
  2549. }
  2550. .fa-cc-discover:before {
  2551. content: "\f1f2"
  2552. }
  2553. .fa-cc-amex:before {
  2554. content: "\f1f3"
  2555. }
  2556. .fa-cc-paypal:before {
  2557. content: "\f1f4"
  2558. }
  2559. .fa-cc-stripe:before {
  2560. content: "\f1f5"
  2561. }
  2562. .fa-bell-slash:before {
  2563. content: "\f1f6"
  2564. }
  2565. .fa-bell-slash-o:before {
  2566. content: "\f1f7"
  2567. }
  2568. .fa-trash:before {
  2569. content: "\f1f8"
  2570. }
  2571. .fa-copyright:before {
  2572. content: "\f1f9"
  2573. }
  2574. .fa-at:before {
  2575. content: "\f1fa"
  2576. }
  2577. .fa-eyedropper:before {
  2578. content: "\f1fb"
  2579. }
  2580. .fa-paint-brush:before {
  2581. content: "\f1fc"
  2582. }
  2583. .fa-birthday-cake:before {
  2584. content: "\f1fd"
  2585. }
  2586. .fa-area-chart:before {
  2587. content: "\f1fe"
  2588. }
  2589. .fa-pie-chart:before {
  2590. content: "\f200"
  2591. }
  2592. .fa-line-chart:before {
  2593. content: "\f201"
  2594. }
  2595. .fa-lastfm:before {
  2596. content: "\f202"
  2597. }
  2598. .fa-lastfm-square:before {
  2599. content: "\f203"
  2600. }
  2601. .fa-toggle-off:before {
  2602. content: "\f204"
  2603. }
  2604. .fa-toggle-on:before {
  2605. content: "\f205"
  2606. }
  2607. .fa-bicycle:before {
  2608. content: "\f206"
  2609. }
  2610. .fa-bus:before {
  2611. content: "\f207"
  2612. }
  2613. .fa-ioxhost:before {
  2614. content: "\f208"
  2615. }
  2616. .fa-angellist:before {
  2617. content: "\f209"
  2618. }
  2619. .fa-cc:before {
  2620. content: "\f20a"
  2621. }
  2622. .fa-ils:before,.fa-shekel:before,.fa-sheqel:before {
  2623. content: "\f20b"
  2624. }
  2625. .fa-meanpath:before {
  2626. content: "\f20c"
  2627. }
  2628. .fa-buysellads:before {
  2629. content: "\f20d"
  2630. }
  2631. .fa-connectdevelop:before {
  2632. content: "\f20e"
  2633. }
  2634. .fa-dashcube:before {
  2635. content: "\f210"
  2636. }
  2637. .fa-forumbee:before {
  2638. content: "\f211"
  2639. }
  2640. .fa-leanpub:before {
  2641. content: "\f212"
  2642. }
  2643. .fa-sellsy:before {
  2644. content: "\f213"
  2645. }
  2646. .fa-shirtsinbulk:before {
  2647. content: "\f214"
  2648. }
  2649. .fa-simplybuilt:before {
  2650. content: "\f215"
  2651. }
  2652. .fa-skyatlas:before {
  2653. content: "\f216"
  2654. }
  2655. .fa-cart-plus:before {
  2656. content: "\f217"
  2657. }
  2658. .fa-cart-arrow-down:before {
  2659. content: "\f218"
  2660. }
  2661. .fa-diamond:before {
  2662. content: "\f219"
  2663. }
  2664. .fa-ship:before {
  2665. content: "\f21a"
  2666. }
  2667. .fa-user-secret:before {
  2668. content: "\f21b"
  2669. }
  2670. .fa-motorcycle:before {
  2671. content: "\f21c"
  2672. }
  2673. .fa-street-view:before {
  2674. content: "\f21d"
  2675. }
  2676. .fa-heartbeat:before {
  2677. content: "\f21e"
  2678. }
  2679. .fa-venus:before {
  2680. content: "\f221"
  2681. }
  2682. .fa-mars:before {
  2683. content: "\f222"
  2684. }
  2685. .fa-mercury:before {
  2686. content: "\f223"
  2687. }
  2688. .fa-transgender:before {
  2689. content: "\f224"
  2690. }
  2691. .fa-transgender-alt:before {
  2692. content: "\f225"
  2693. }
  2694. .fa-venus-double:before {
  2695. content: "\f226"
  2696. }
  2697. .fa-mars-double:before {
  2698. content: "\f227"
  2699. }
  2700. .fa-venus-mars:before {
  2701. content: "\f228"
  2702. }
  2703. .fa-mars-stroke:before {
  2704. content: "\f229"
  2705. }
  2706. .fa-mars-stroke-v:before {
  2707. content: "\f22a"
  2708. }
  2709. .fa-mars-stroke-h:before {
  2710. content: "\f22b"
  2711. }
  2712. .fa-neuter:before {
  2713. content: "\f22c"
  2714. }
  2715. .fa-facebook-official:before {
  2716. content: "\f230"
  2717. }
  2718. .fa-pinterest-p:before {
  2719. content: "\f231"
  2720. }
  2721. .fa-whatsapp:before {
  2722. content: "\f232"
  2723. }
  2724. .fa-server:before {
  2725. content: "\f233"
  2726. }
  2727. .fa-user-plus:before {
  2728. content: "\f234"
  2729. }
  2730. .fa-user-times:before {
  2731. content: "\f235"
  2732. }
  2733. .fa-bed:before,.fa-hotel:before {
  2734. content: "\f236"
  2735. }
  2736. .fa-viacoin:before {
  2737. content: "\f237"
  2738. }
  2739. .fa-train:before {
  2740. content: "\f238"
  2741. }
  2742. .fa-subway:before {
  2743. content: "\f239"
  2744. }
  2745. .fa-medium:before {
  2746. content: "\f23a"
  2747. }
  2748. .photonui-tablayout {
  2749. height: 100%;
  2750. box-sizing: border-box
  2751. }
  2752. .photonui-tablayout .photonui-tablayout-innerbox {
  2753. display: flex;
  2754. flex-wrap: nowrap;
  2755. width: 100%;
  2756. height: 100%
  2757. }
  2758. .photonui-tablayout .photonui-tablayout-innerbox .photonui-tablayout-tabs {
  2759. display: flex;
  2760. box-sizing: border-box
  2761. }
  2762. .photonui-tablayout .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  2763. box-sizing: border-box;
  2764. min-width: 10px;
  2765. max-width: 150px;
  2766. overflow: hidden;
  2767. text-overflow: ellipsis;
  2768. white-space: nowrap;
  2769. -wibkit-user-select: none;
  2770. -moz-user-select: none;
  2771. user-select: none
  2772. }
  2773. .photonui-tablayout .photonui-tablayout-innerbox .photonui-tablayout-content {
  2774. box-sizing: border-box;
  2775. min-height: 20px;
  2776. min-width: 20px;
  2777. flex-grow: 1
  2778. }
  2779. .photonui-tablayout .photonui-tablayout-innerbox .photonui-tablayout-content>* {
  2780. height: 100%;
  2781. width: 100%
  2782. }
  2783. .photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox {
  2784. flex-direction: column
  2785. }
  2786. .photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox .photonui-tablayout-tabs {
  2787. flex-direction: row
  2788. }
  2789. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox {
  2790. flex-direction: column-reverse
  2791. }
  2792. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox .photonui-tablayout-tabs,.photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox {
  2793. flex-direction: row
  2794. }
  2795. .photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-tabs {
  2796. flex-direction: column
  2797. }
  2798. .photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox {
  2799. flex-direction: row-reverse
  2800. }
  2801. .photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-tabs {
  2802. flex-direction: column
  2803. }
  2804. .photonui-widget {
  2805. color: #333
  2806. }
  2807. .photonui-widget::selection {
  2808. background: #89b808;
  2809. color: #fff
  2810. }
  2811. .photonui-widget::-moz-selection {
  2812. background: #89b808;
  2813. color: #fff
  2814. }
  2815. .photonui-widget::-o-selection {
  2816. background: #89b808;
  2817. color: #fff
  2818. }
  2819. .photonui-widget::-ms-selection {
  2820. background: #89b808;
  2821. color: #fff
  2822. }
  2823. .photonui-widget::-webkit-selection {
  2824. background: #89b808;
  2825. color: #fff
  2826. }
  2827. .photonui-menu.photonui-menu-style-popupmenu .photonui-menuitem {
  2828. cursor: pointer
  2829. }
  2830. .photonui-dialog-buttons {
  2831. white-space: nowrap;
  2832. padding: 6px 5px 5px;
  2833. text-align: right;
  2834. box-sizing: border-box;
  2835. box-shadow: inset 0 7px 3px -7px rgba(0,0,0,.4);
  2836. background: #e4e4e4
  2837. }
  2838. .photonui-dialog-buttons>:first-child {
  2839. margin-left: 0
  2840. }
  2841. .photonui-window.photonui-dialog.photonui-window-fullscreen .photonui-window-content {
  2842. height: calc(5%)!important;
  2843. min-height: calc(5%)!important;
  2844. max-height: calc(5%)!important
  2845. }
  2846. .photonui-window.photonui-dialog.photonui-window-fullscreen .photonui-dialog-buttons {
  2847. height: 55px
  2848. }
  2849. .photonui-window {
  2850. min-width: 100px;
  2851. background: #f1f1f1;
  2852. border-radius: 2px;
  2853. box-shadow: 0 0 10px rgba(0,0,0,.3)
  2854. }
  2855. .photonui-window .photonui-window-title {
  2856. height: 40px;
  2857. border-radius: 2px 2px 0 0;
  2858. background: #555;
  2859. transition: all 150ms;
  2860. text-shadow: -1px -1px 0 #2f2f2f
  2861. }
  2862. .photonui-window .photonui-window-title-text {
  2863. margin-top: 2px;
  2864. padding: 8px 10px;
  2865. font-size: 120%;
  2866. font-weight: 700;
  2867. color: #fff
  2868. }
  2869. .photonui-window .photonui-window-title-close-button {
  2870. display: block;
  2871. margin: 6px 6px 0 0;
  2872. padding: 0;
  2873. height: 26px;
  2874. width: 22px;
  2875. border: none;
  2876. border-radius: 3px;
  2877. outline: 0;
  2878. background: 0 0;
  2879. color: rgba(255,255,255,.3);
  2880. cursor: pointer;
  2881. font-size: 26px
  2882. }
  2883. .photonui-window .photonui-window-title-close-button:before {
  2884. transition: color 150ms
  2885. }
  2886. .photonui-window .photonui-window-title-close-button:hover:before {
  2887. color: rgba(255,255,255,.7)
  2888. }
  2889. .photonui-window.photonui-active .photonui-window-title {
  2890. background: #333;
  2891. text-shadow: -1px -1px 0 #2f2f2f
  2892. }
  2893. .photonui-window.photonui-active .photonui-window-title-text {
  2894. color: #fff
  2895. }
  2896. .photonui-window.photonui-active .photonui-window-title-close-button:before {
  2897. color: rgba(255,255,255,.3)
  2898. }
  2899. .photonui-window.photonui-active .photonui-window-title-close-button:hover:before {
  2900. color: rgba(255,255,255,.7)
  2901. }
  2902. .photonui-window.photonui-window-have-button .photonui-window-title-text {
  2903. padding: 8px 0 8px 10px;
  2904. width: calc(58%)
  2905. }
  2906. .photonui-window.photonui-window-fullscreen .photonui-window-content {
  2907. height: calc(60%)!important;
  2908. min-height: calc(60%)!important;
  2909. max-height: calc(60%)!important
  2910. }
  2911. .photonui-popupwindow {
  2912. border: none;
  2913. background: #fff;
  2914. border-radius: 2px;
  2915. box-shadow: 0 0 5px rgba(0,0,0,.3)
  2916. }
  2917. .photonui-menu>.photonui-menu {
  2918. margin-left: 26px;
  2919. width: calc(74%)
  2920. }
  2921. .photonui-menu .photonui-menuitem {
  2922. color: #333;
  2923. cursor: default;
  2924. transition: all 150ms
  2925. }
  2926. .photonui-menu .photonui-menuitem.photonui-menuitem-active,.photonui-menu .photonui-menuitem:hover {
  2927. background: #89b808;
  2928. color: #fff
  2929. }
  2930. .photonui-menu .photonui-submenuitem .photonui-menuitem-widget:before {
  2931. box-sizing: border-box;
  2932. content: "";
  2933. display: inline-block;
  2934. border: 6px solid transparent;
  2935. border-top-color: #333;
  2936. -webkit-transform: rotate(-90deg) translate(0,4px);
  2937. transform: rotate(-90deg) translate(0,4px);
  2938. transition: -webkit-transform 150ms;
  2939. transition: transform 150ms
  2940. }
  2941. .photonui-menu .photonui-submenuitem.photonui-menuitem-active {
  2942. background: #bbb;
  2943. color: #fff
  2944. }
  2945. .photonui-menu .photonui-submenuitem.photonui-menuitem-active .photonui-menuitem-widget:before {
  2946. -webkit-transform: rotate(0) translate(0,4px);
  2947. transform: rotate(0) translate(0,4px)
  2948. }
  2949. .photonui-menu .photonui-submenuitem.photonui-menuitem-active .photonui-menuitem-widget:before,.photonui-menu .photonui-submenuitem:hover .photonui-menuitem-widget:before {
  2950. border-top-color: #fff
  2951. }
  2952. .photonui-menu .photonui-submenuitem:hover {
  2953. background: #89b808
  2954. }
  2955. .photonui-particle-button-default {
  2956. color: #333;
  2957. border-color: #a5a5a5;
  2958. background: linear-gradient(to bottom,#f7f7f7 0,#c4c4c4 100%)
  2959. }
  2960. .photonui-particle-button-default .photonui-faicon {
  2961. color: #333
  2962. }
  2963. .photonui-particle-button-alternative-colors.photonui-button-color-blue {
  2964. background: linear-gradient(to bottom,#089ab8 0,#077d96 100%);
  2965. border-color: #055d6f;
  2966. outline: 0;
  2967. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  2968. color: #fff;
  2969. text-shadow: -1px -1px 0 #05697d
  2970. }
  2971. .photonui-particle-button-alternative-colors.photonui-button-color-blue:active:focus,.photonui-particle-button-alternative-colors.photonui-button-color-blue:focus {
  2972. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  2973. }
  2974. .photonui-particle-button-alternative-colors.photonui-button-color-blue .photonui-faicon {
  2975. color: #fff
  2976. }
  2977. .photonui-particle-button-alternative-colors.photonui-button-color-blue:active {
  2978. background: linear-gradient(to top,#089ab8 0,#077d96 100%)
  2979. }
  2980. .photonui-particle-button-alternative-colors.photonui-button-color-red {
  2981. background: linear-gradient(to bottom,#de313f 0,#cb202e 100%);
  2982. border-color: #a81b26;
  2983. outline: 0;
  2984. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  2985. color: #fff;
  2986. text-shadow: -1px -1px 0 #b51d29
  2987. }
  2988. .photonui-particle-button-alternative-colors.photonui-button-color-red:active:focus,.photonui-particle-button-alternative-colors.photonui-button-color-red:focus {
  2989. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  2990. }
  2991. .photonui-particle-button-alternative-colors.photonui-button-color-red .photonui-faicon {
  2992. color: #fff
  2993. }
  2994. .photonui-particle-button-alternative-colors.photonui-button-color-red:active {
  2995. background: linear-gradient(to top,#de313f 0,#cb202e 100%)
  2996. }
  2997. .photonui-particle-button-alternative-colors.photonui-button-color-yellow {
  2998. background: linear-gradient(to bottom,#f3c518 0,#dcb00b 100%);
  2999. border-color: #b59109;
  3000. outline: 0;
  3001. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3002. color: #fff;
  3003. text-shadow: -1px -1px 0 #c49d0a
  3004. }
  3005. .photonui-particle-button-alternative-colors.photonui-button-color-yellow:active:focus,.photonui-particle-button-alternative-colors.photonui-button-color-yellow:focus {
  3006. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3007. }
  3008. .photonui-particle-button-alternative-colors.photonui-button-color-yellow .photonui-faicon {
  3009. color: #fff
  3010. }
  3011. .photonui-particle-button-alternative-colors.photonui-button-color-yellow:active {
  3012. background: linear-gradient(to top,#f3c518 0,#dcb00b 100%)
  3013. }
  3014. .photonui-particle-button-alternative-colors.photonui-button-color-green {
  3015. background: linear-gradient(to bottom,#89b808 0,#709607 100%);
  3016. border-color: #526f05;
  3017. outline: 0;
  3018. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3019. color: #fff;
  3020. text-shadow: -1px -1px 0 #5d7d05
  3021. }
  3022. .photonui-particle-button-alternative-colors-active.photonui-button-color-blue:focus,.photonui-particle-button-alternative-colors-active.photonui-button-color-green:focus,.photonui-particle-button-alternative-colors-active.photonui-button-color-red:focus,.photonui-particle-button-alternative-colors-active.photonui-button-color-wanaplan-toggle:focus,.photonui-particle-button-alternative-colors-active.photonui-button-color-yellow:focus,.photonui-particle-button-alternative-colors.photonui-button-color-green:active:focus,.photonui-particle-button-alternative-colors.photonui-button-color-green:focus {
  3023. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3024. }
  3025. .photonui-particle-button-alternative-colors.photonui-button-color-green .photonui-faicon {
  3026. color: #fff
  3027. }
  3028. .photonui-particle-button-alternative-colors.photonui-button-color-green:active {
  3029. background: linear-gradient(to top,#89b808 0,#709607 100%)
  3030. }
  3031. .photonui-particle-button-alternative-colors-active.photonui-button-color-blue {
  3032. background: linear-gradient(to top,#089ab8 0,#077d96 100%)
  3033. }
  3034. .photonui-particle-button-alternative-colors-active.photonui-button-color-red {
  3035. background: linear-gradient(to top,#de313f 0,#cb202e 100%)
  3036. }
  3037. .photonui-particle-button-alternative-colors-active.photonui-button-color-yellow {
  3038. background: linear-gradient(to top,#f3c518 0,#dcb00b 100%)
  3039. }
  3040. .photonui-particle-button-alternative-colors-active.photonui-button-color-green {
  3041. background: linear-gradient(to top,#89b808 0,#709607 100%)
  3042. }
  3043. .photonui-particle-button-alternative-colors-active.photonui-button-color-wanaplan-toggle {
  3044. background: linear-gradient(to top,#89b808 0,#709607 100%);
  3045. text-shadow: -1px -1px 0 #5d7d05;
  3046. color: #fff
  3047. }
  3048. .photonui-particle-button-alternative-colors-active.photonui-button-color-wanaplan-toggle .photonui-faicon {
  3049. color: #fff
  3050. }
  3051. .photonui-button {
  3052. outline: 0;
  3053. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3054. text-shadow: 1px 1px 0 #fff;
  3055. color: #333;
  3056. border-color: #a5a5a5;
  3057. background: linear-gradient(to bottom,#f7f7f7 0,#c4c4c4 100%);
  3058. border-style: solid;
  3059. border-width: 1px;
  3060. min-width: 32px;
  3061. line-height: 2em;
  3062. padding: 0 10px;
  3063. text-decoration: none!important;
  3064. vertical-align: middle;
  3065. cursor: pointer;
  3066. border-radius: 2px
  3067. }
  3068. .photonui-button:active:focus,.photonui-button:focus {
  3069. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3070. }
  3071. .photonui-button:active {
  3072. background: linear-gradient(to top,#ddd 0,#cbcbcb 100%)
  3073. }
  3074. .photonui-button .photonui-faicon {
  3075. color: #333
  3076. }
  3077. .photonui-button.photonui-button-color-blue {
  3078. background: linear-gradient(to bottom,#089ab8 0,#077d96 100%);
  3079. border-color: #055d6f;
  3080. outline: 0;
  3081. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3082. color: #fff;
  3083. text-shadow: -1px -1px 0 #05697d
  3084. }
  3085. .photonui-button.photonui-button-color-blue:active:focus,.photonui-button.photonui-button-color-blue:focus {
  3086. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3087. }
  3088. .photonui-button.photonui-button-color-blue .photonui-faicon {
  3089. color: #fff
  3090. }
  3091. .photonui-button.photonui-button-color-blue:active {
  3092. background: linear-gradient(to top,#089ab8 0,#077d96 100%)
  3093. }
  3094. .photonui-button.photonui-button-color-red {
  3095. background: linear-gradient(to bottom,#de313f 0,#cb202e 100%);
  3096. border-color: #a81b26;
  3097. outline: 0;
  3098. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3099. color: #fff;
  3100. text-shadow: -1px -1px 0 #b51d29
  3101. }
  3102. .photonui-button.photonui-button-color-red:active:focus,.photonui-button.photonui-button-color-red:focus {
  3103. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3104. }
  3105. .photonui-button.photonui-button-color-red .photonui-faicon {
  3106. color: #fff
  3107. }
  3108. .photonui-button.photonui-button-color-red:active {
  3109. background: linear-gradient(to top,#de313f 0,#cb202e 100%)
  3110. }
  3111. .photonui-button.photonui-button-color-yellow {
  3112. background: linear-gradient(to bottom,#f3c518 0,#dcb00b 100%);
  3113. border-color: #b59109;
  3114. outline: 0;
  3115. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3116. color: #fff;
  3117. text-shadow: -1px -1px 0 #c49d0a
  3118. }
  3119. .photonui-button.photonui-button-color-yellow:active:focus,.photonui-button.photonui-button-color-yellow:focus {
  3120. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3121. }
  3122. .photonui-button.photonui-button-color-yellow .photonui-faicon {
  3123. color: #fff
  3124. }
  3125. .photonui-button.photonui-button-color-yellow:active {
  3126. background: linear-gradient(to top,#f3c518 0,#dcb00b 100%)
  3127. }
  3128. .photonui-button.photonui-button-color-green {
  3129. background: linear-gradient(to bottom,#89b808 0,#709607 100%);
  3130. border-color: #526f05;
  3131. outline: 0;
  3132. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3133. color: #fff;
  3134. text-shadow: -1px -1px 0 #5d7d05
  3135. }
  3136. .photonui-button.photonui-button-color-green:active:focus,.photonui-button.photonui-button-color-green:focus {
  3137. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3138. }
  3139. .photonui-button.photonui-button-color-green .photonui-faicon {
  3140. color: #fff
  3141. }
  3142. .photonui-button.photonui-button-color-green:active {
  3143. background: linear-gradient(to top,#89b808 0,#709607 100%)
  3144. }
  3145. .photonui-button.photonui-button-appearance-flat,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button {
  3146. box-shadow: none;
  3147. border-color: transparent;
  3148. background: 0 0;
  3149. color: #333;
  3150. text-shadow: none
  3151. }
  3152. .photonui-button.photonui-button-appearance-flat .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button .photonui-faicon {
  3153. color: #333
  3154. }
  3155. .photonui-button.photonui-button-appearance-flat:focus:not(:hover),.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:not(:hover) {
  3156. box-shadow: inset 1px 1px 0 #b2e81e,inset -1px -1px 0 #b2e81e;
  3157. border-bottom: none;
  3158. padding-top: 0;
  3159. border-radius: 0
  3160. }
  3161. .photonui-button.photonui-button-appearance-flat:focus:hover,.photonui-button.photonui-button-appearance-flat:hover,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover {
  3162. outline: 0;
  3163. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3164. text-shadow: 1px 1px 0 #fff;
  3165. color: #333;
  3166. border-color: #a5a5a5;
  3167. background: linear-gradient(to bottom,#f7f7f7 0,#c4c4c4 100%)
  3168. }
  3169. .photonui-button.photonui-button-appearance-flat:focus:hover:active:focus,.photonui-button.photonui-button-appearance-flat:focus:hover:focus,.photonui-button.photonui-button-appearance-flat:hover:active:focus,.photonui-button.photonui-button-appearance-flat:hover:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover:focus {
  3170. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3171. }
  3172. .photonui-button.photonui-button-appearance-flat:focus:hover:active,.photonui-button.photonui-button-appearance-flat:hover:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover:active {
  3173. background: linear-gradient(to top,#ddd 0,#cbcbcb 100%)
  3174. }
  3175. .photonui-button.photonui-button-appearance-flat:focus:hover .photonui-faicon,.photonui-button.photonui-button-appearance-flat:hover .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover .photonui-faicon {
  3176. color: #333
  3177. }
  3178. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-blue,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-blue,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-blue,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-blue {
  3179. background: linear-gradient(to bottom,#089ab8 0,#077d96 100%);
  3180. border-color: #055d6f;
  3181. outline: 0;
  3182. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3183. color: #fff;
  3184. text-shadow: -1px -1px 0 #05697d
  3185. }
  3186. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-blue:active:focus,.photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-blue:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-blue:active:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-blue:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-blue:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-blue:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-blue:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-blue:focus {
  3187. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3188. }
  3189. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-blue .photonui-faicon,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-blue .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-blue .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-blue .photonui-faicon {
  3190. color: #fff
  3191. }
  3192. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-blue:active,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-blue:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-blue:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-blue:active {
  3193. background: linear-gradient(to top,#089ab8 0,#077d96 100%)
  3194. }
  3195. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-red,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-red,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-red,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-red {
  3196. background: linear-gradient(to bottom,#de313f 0,#cb202e 100%);
  3197. border-color: #a81b26;
  3198. outline: 0;
  3199. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3200. color: #fff;
  3201. text-shadow: -1px -1px 0 #b51d29
  3202. }
  3203. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-red:active:focus,.photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-red:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-red:active:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-red:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-red:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-red:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-red:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-red:focus {
  3204. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3205. }
  3206. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-red .photonui-faicon,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-red .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-red .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-red .photonui-faicon {
  3207. color: #fff
  3208. }
  3209. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-red:active,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-red:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-red:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-red:active {
  3210. background: linear-gradient(to top,#de313f 0,#cb202e 100%)
  3211. }
  3212. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-yellow,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-yellow,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-yellow,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-yellow {
  3213. background: linear-gradient(to bottom,#f3c518 0,#dcb00b 100%);
  3214. border-color: #b59109;
  3215. outline: 0;
  3216. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3217. color: #fff;
  3218. text-shadow: -1px -1px 0 #c49d0a
  3219. }
  3220. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-yellow:active:focus,.photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-yellow:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-yellow:active:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-yellow:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-yellow:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-yellow:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-yellow:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-yellow:focus {
  3221. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3222. }
  3223. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-yellow .photonui-faicon,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-yellow .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-yellow .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-yellow .photonui-faicon {
  3224. color: #fff
  3225. }
  3226. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-yellow:active,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-yellow:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-yellow:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-yellow:active {
  3227. background: linear-gradient(to top,#f3c518 0,#dcb00b 100%)
  3228. }
  3229. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-green,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-green,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-green,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-green {
  3230. background: linear-gradient(to bottom,#89b808 0,#709607 100%);
  3231. border-color: #526f05;
  3232. outline: 0;
  3233. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3);
  3234. color: #fff;
  3235. text-shadow: -1px -1px 0 #5d7d05
  3236. }
  3237. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-green:active:focus,.photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-green:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-green:active:focus,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-green:focus,.photonui-togglebutton input:checked+button.photonui-button-color-blue:focus,.photonui-togglebutton input:checked+button.photonui-button-color-green:focus,.photonui-togglebutton input:checked+button.photonui-button-color-red:focus,.photonui-togglebutton input:checked+button.photonui-button-color-wanaplan-toggle:focus,.photonui-togglebutton input:checked+button.photonui-button-color-yellow:focus,.photonui-togglebutton input:checked+button:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-green:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-green:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-green:active:focus,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-green:focus {
  3238. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  3239. }
  3240. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-green .photonui-faicon,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-green .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-green .photonui-faicon,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-green .photonui-faicon {
  3241. color: #fff
  3242. }
  3243. .photonui-button.photonui-button-appearance-flat:focus:hover.photonui-button-color-green:active,.photonui-button.photonui-button-appearance-flat:hover.photonui-button-color-green:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:focus:hover.photonui-button-color-green:active,.photonui-togglebutton.photonui-button-appearance-flat input:not(:checked)+button:hover.photonui-button-color-green:active {
  3244. background: linear-gradient(to top,#89b808 0,#709607 100%)
  3245. }
  3246. .photonui-togglebutton input:checked+button {
  3247. background: linear-gradient(to top,#ddd 0,#cbcbcb 100%)
  3248. }
  3249. .photonui-togglebutton input:checked+button.photonui-button-color-blue {
  3250. background: linear-gradient(to top,#089ab8 0,#077d96 100%)
  3251. }
  3252. .photonui-togglebutton input:checked+button.photonui-button-color-red {
  3253. background: linear-gradient(to top,#de313f 0,#cb202e 100%)
  3254. }
  3255. .photonui-togglebutton input:checked+button.photonui-button-color-yellow {
  3256. background: linear-gradient(to top,#f3c518 0,#dcb00b 100%)
  3257. }
  3258. .photonui-togglebutton input:checked+button.photonui-button-color-green {
  3259. background: linear-gradient(to top,#89b808 0,#709607 100%)
  3260. }
  3261. .photonui-togglebutton input:checked+button.photonui-button-color-wanaplan-toggle {
  3262. background: linear-gradient(to top,#89b808 0,#709607 100%);
  3263. text-shadow: -1px -1px 0 #5d7d05;
  3264. color: #fff
  3265. }
  3266. .photonui-togglebutton input:checked+button.photonui-button-color-wanaplan-toggle .photonui-faicon {
  3267. color: #fff
  3268. }
  3269. .photonui-checkbox {
  3270. display: inline-block
  3271. }
  3272. .photonui-checkbox input {
  3273. display: none
  3274. }
  3275. .photonui-checkbox input+span {
  3276. cursor: pointer;
  3277. outline: 0;
  3278. display: block;
  3279. box-sizing: border-box;
  3280. width: 20px;
  3281. height: 20px;
  3282. border: 2px solid #a5a5a5;
  3283. border-radius: 3px;
  3284. transition: all 150ms;
  3285. overflow: hidden
  3286. }
  3287. .photonui-checkbox input:checked+span {
  3288. border-color: #89b808;
  3289. background: #89b808
  3290. }
  3291. .photonui-checkbox input:checked+span:after {
  3292. content: "";
  3293. display: block;
  3294. width: 10px;
  3295. height: 6px;
  3296. border: 3px solid #fff;
  3297. border-top: none;
  3298. border-right: none;
  3299. -webkit-transform: rotate(-50deg);
  3300. transform: rotate(-50deg);
  3301. margin: 1px 0 0 2px
  3302. }
  3303. .photonui-checkbox input+span:focus,.photonui-checkbox input:checked+span:focus {
  3304. border-color: #6e910f;
  3305. box-shadow: 0 0 3px rgba(0,0,0,.4)
  3306. }
  3307. .photonui-checkbox input[disabled]+span {
  3308. border-color: #cbcbcb;
  3309. box-shadow: none
  3310. }
  3311. .photonui-checkbox input[disabled]:checked+span,.photonui-checkbox input[disabled]:checked+span:focus {
  3312. border-color: #bbb;
  3313. background-color: #bbb
  3314. }
  3315. .photonui-checkbox input[disabled]:checked+span:after,.photonui-checkbox input[disabled]:checked+span:focus:after {
  3316. border-color: #959595
  3317. }
  3318. .photonui-colorbutton {
  3319. padding-left: 5px;
  3320. padding-right: 5px
  3321. }
  3322. .photonui-colorbutton span {
  3323. margin-top: -2px;
  3324. box-sizing: border-box;
  3325. border-radius: 2px;
  3326. text-shadow: none;
  3327. vertical-align: middle;
  3328. height: calc(72%);
  3329. width: 100%;
  3330. box-shadow: inset 1px 1px 0 rgba(0,0,0,.3),inset -1px -1px 0 rgba(0,0,0,.3)
  3331. }
  3332. .photonui-colorbutton-custombutton {
  3333. margin: 0!important;
  3334. width: 100%!important;
  3335. line-height: 1.4em!important
  3336. }
  3337. .photonui-colorpalette {
  3338. border-collapse: separate;
  3339. border-spacing: 4px
  3340. }
  3341. .photonui-colorpalette tr td {
  3342. width: 20px;
  3343. height: 20px;
  3344. cursor: pointer
  3345. }
  3346. .photonui-colorpicker .photonui-colorpicker-preview {
  3347. text-align: center;
  3348. color: rgba(255,255,255,.8);
  3349. font-size: 14px;
  3350. text-shadow: 1px 1px 0 rgba(0,0,0,.1),1px 1px 1px rgba(0,0,0,.7);
  3351. outline: 0;
  3352. box-shadow: inset 1px 1px 0 #fff,inset -1px -1px 0 #fff;
  3353. border: 1px solid #bbb
  3354. }
  3355. .photonui-colorpicker .photonui-colorpicker-preview:focus {
  3356. color: #fff;
  3357. border-color: #6e910f;
  3358. box-shadow: inset 1px 1px 0 #fff,inset -1px -1px 0 #fff,0 0 3px rgba(0,0,0,.4)
  3359. }
  3360. .photonui-field {
  3361. border: 1px solid #bbb;
  3362. background: #fff;
  3363. color: #333;
  3364. outline: 0;
  3365. padding: 5px;
  3366. transition: all 150ms;
  3367. box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
  3368. border-radius: 2px;
  3369. box-sizing: border-box;
  3370. width: 100%
  3371. }
  3372. .photonui-field:focus {
  3373. background: #fff;
  3374. border-color: #6e910f;
  3375. color: #333;
  3376. box-shadow: inset 0 0 7px rgba(0,0,0,.1),0 0 3px rgba(0,0,0,.4)
  3377. }
  3378. .photonui-field::-webkit-input-placeholder {
  3379. color: #b3b3b3;
  3380. opacity: 1;
  3381. font-style: italic
  3382. }
  3383. .photonui-field::-moz-placeholder {
  3384. color: #b3b3b3;
  3385. opacity: 1;
  3386. font-style: italic
  3387. }
  3388. .photonui-field:-moz-placeholder {
  3389. color: #b3b3b3;
  3390. opacity: 1;
  3391. font-style: italic
  3392. }
  3393. .photonui-field:-ms-input-placeholder {
  3394. color: #b3b3b3;
  3395. opacity: 1;
  3396. font-style: italic
  3397. }
  3398. .photonui-field[disabled] {
  3399. background: #f2f2f2;
  3400. color: #a6a6a6
  3401. }
  3402. .photonui-field[disabled]::-webkit-input-placeholder {
  3403. color: #b3b3b3
  3404. }
  3405. .photonui-field[disabled]::-moz-placeholder {
  3406. color: #b3b3b3
  3407. }
  3408. .photonui-field[disabled]:-moz-placeholder {
  3409. color: #b3b3b3
  3410. }
  3411. .photonui-field[disabled]:-ms-input-placeholder {
  3412. color: #b3b3b3
  3413. }
  3414. .photonui-select:focus>*,.photonui-select>* {
  3415. color: #333
  3416. }
  3417. .photonui-slider .photonui-slider-slider {
  3418. margin-right: 8px;
  3419. cursor: pointer;
  3420. outline: 0;
  3421. min-width: 50px
  3422. }
  3423. .photonui-slider .photonui-slider-slider:before {
  3424. box-sizing: border-box;
  3425. content: "";
  3426. display: block;
  3427. height: 4px;
  3428. margin-top: 8px;
  3429. background: #d8d8d8
  3430. }
  3431. .photonui-slider .photonui-slider-slider .photonui-slider-grip {
  3432. width: 10px;
  3433. height: 20px;
  3434. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAHAQMAAAAVq36TAAAABlBMVEWYl5eblIr+5X3NAAAAAXRSTlMAQObYZgAAAA5JREFUCNdj+MAAAlASABO+AtEd8dlIAAAAAElFTkSuQmCC) center no-repeat #ddd;
  3435. border: 1px solid #a5a5a5;
  3436. margin-top: -12px;
  3437. box-shadow: 0 1px 3px rgba(0,0,0,.1),inset 0 2px 7px -2px #fff
  3438. }
  3439. .photonui-slider .photonui-slider-slider:focus .photonui-slider-grip {
  3440. box-shadow: 0 0 3px rgba(0,0,0,.4),inset 0 2px 7px -2px #fff
  3441. }
  3442. .photonui-slider.photonui-slider-nofield .photonui-slider-slider {
  3443. margin-right: 0
  3444. }
  3445. .photonui-switch {
  3446. padding-bottom: 0
  3447. }
  3448. .photonui-switch input+span {
  3449. width: 52px;
  3450. cursor: pointer;
  3451. outline: 0
  3452. }
  3453. .photonui-switch input+span:before {
  3454. box-sizing: border-box;
  3455. content: "";
  3456. display: block;
  3457. height: 22px;
  3458. width: 52px;
  3459. outline: 0;
  3460. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAWCAYAAACPHL/WAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3QcKCSsuGp5SDAAAAMtJREFUWMPtlkEKgzAQRZ9tN4Kkya736jl7rrqLiOCqpJtZxBDRUhcjzIOBMZmEfId8AoZhGBnNrwtSSs/FBk3zOvA8LRCATr4nIALz3g1uin7sA/DF+F1iAHogbW10USKoJibHS80pOtQWYnpglNxlQrx0atbeoVCIicBHIspYrVatoC7Lx8r8uFKr+g4dhgZBU5a7yrxbqVUrKBZuF4CrRCjcLZ7B5WZxL5+Jqln0psNpukO9HHiNoXA79S+FBLzl4H89fQzDMBZ8AQdPKCm3y2IwAAAAAElFTkSuQmCC) center no-repeat #fff;
  3461. transition: all 150ms;
  3462. box-shadow: inset 0 0 8px rgba(0,0,0,.2);
  3463. border-radius: 3px;
  3464. border: 1px solid #aeaeae
  3465. }
  3466. .photonui-switch input+span:after {
  3467. content: "";
  3468. display: block;
  3469. margin-top: -20px;
  3470. margin-left: 2px;
  3471. width: 24px;
  3472. height: 18px;
  3473. background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAWCAYAAADTlvzyAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAHVJREFUSIntlTEKQCEMQ6P8xfvfyDM4eZc2f3Xxt4sZ5Ac6BAKP0lrLnJMQqiphP/CIHjPTAknpkqKaGaIaY6C1lvZfle6QJNZs5HdKz9DdsWYjvwW6ewpIEms28lugvMP7Z6jusPTepS9ffmnkt/T+7+l+4AuK5e348NG/wQAAAABJRU5ErkJggg==) center no-repeat #ddd;
  3474. outline: 0;
  3475. transition: all 150ms;
  3476. border-radius: 3px;
  3477. border: 1px solid #aeaeae;
  3478. box-shadow: 1px 1px 0 rgba(255,255,255,.3) inset,-1px -1px 0 rgba(255,255,255,.3) inset
  3479. }
  3480. .photonui-switch input:checked+span:before {
  3481. background-color: #89b808;
  3482. box-shadow: inset 0 0 8px rgba(0,0,0,.2),0 0 7px rgba(137,184,8,.5);
  3483. border: 1px solid #5c7a0d
  3484. }
  3485. .photonui-switch input:checked+span:after {
  3486. margin-left: 26px;
  3487. border: 1px solid #7b7b7b
  3488. }
  3489. .photonui-label {
  3490. white-space: nowrap;
  3491. color: #333;
  3492. padding: 2px 0
  3493. }
  3494. .photonui-progressbar {
  3495. border-radius: 0;
  3496. box-shadow: inset 1px 1px 0 #a5a5a5,inset -1px -1px 0 #a5a5a5,inset -1px 1px 0 #a5a5a5,inset 1px -1px 0 #a5a5a5;
  3497. background: #fff
  3498. }
  3499. .photonui-progressbar .photonui-progressbar-bar {
  3500. border-radius: 0;
  3501. box-shadow: inset 1px 1px 0 #6e910f,inset -1px -1px 0 #6e910f,inset -1px 1px 0 #6e910f,inset 1px -1px 0 #6e910f;
  3502. background: #89b808
  3503. }
  3504. .photonui-progressbar.photonui-progressbar-vertical .photonui-progressbar-bar {
  3505. top: auto;
  3506. bottom: 0
  3507. }
  3508. .photonui-progressbar.photonui-progressbar-vertical .photonui-progressbar-text {
  3509. -webkit-transform: rotate(-90deg);
  3510. transform: rotate(-90deg)
  3511. }
  3512. .photonui-separator hr {
  3513. border: none
  3514. }
  3515. .photonui-separator.photonui-separator-horizontal {
  3516. padding: 5px 0
  3517. }
  3518. .photonui-separator.photonui-separator-horizontal hr {
  3519. border-bottom: 1px solid #a5a5a5
  3520. }
  3521. .photonui-separator.photonui-separator-vertical {
  3522. padding: 0 5px;
  3523. background: linear-gradient(to right,transparent 0,transparent 5px,#a5a5a5 5px,#a5a5a5 6px,transparent 6px,transparent 100%)
  3524. }
  3525. .photonui-separator.photonui-separator-vertical hr {
  3526. border-right: 1px solid transparent
  3527. }
  3528. .photonui-select {
  3529. cursor: pointer;
  3530. border: 1px solid #bbb;
  3531. background: #fff;
  3532. box-shadow: 0 0 8px rgba(0,0,0,.1) inset;
  3533. border-radius: 2px
  3534. }
  3535. .photonui-select:focus {
  3536. border-color: #6e910f;
  3537. background: #fff;
  3538. box-shadow: inset 0 0 7px rgba(0,0,0,.1),0 0 3px rgba(0,0,0,.4)
  3539. }
  3540. .photonui-select .photonui-menuitem.photonui-select-placeholder {
  3541. color: #b3b3b3;
  3542. font-style: italic
  3543. }
  3544. .photonui-select .photonui-menuitem .photonui-menuitem-icon>* {
  3545. color: inherit
  3546. }
  3547. .photonui-select .photonui-menuitem .photonui-menuitem-widget:before {
  3548. box-sizing: border-box;
  3549. content: "";
  3550. display: inline-block;
  3551. border: 6px solid transparent;
  3552. border-top-color: #333;
  3553. -webkit-transform: translate(0,4px);
  3554. transform: translate(0,4px);
  3555. transition: -webkit-transform 150ms;
  3556. transition: transform 150ms
  3557. }
  3558. .photonui-select.photonui-widget-disabled {
  3559. border-color: #bbb;
  3560. background: #f2f2f2
  3561. }
  3562. .photonui-select.photonui-widget-disabled>* {
  3563. color: #a6a6a6
  3564. }
  3565. .photonui-select.photonui-widget-disabled .photonui-menuitem.photonui-select-placeholder {
  3566. color: #b3b3b3
  3567. }
  3568. .photonui-select.photonui-widget-disabled .photonui-menuitem .photonui-menuitem-widget:before {
  3569. border-top-color: #919191
  3570. }
  3571. .photonui-tablayout .photonui-tablayout-tabs .photonui-tabitem-tab {
  3572. border: 1px solid #a5a5a5;
  3573. vertical-align: middle;
  3574. padding: 0 8px;
  3575. cursor: pointer;
  3576. background: #ddd;
  3577. transition: all 150ms
  3578. }
  3579. .photonui-tablayout .photonui-tablayout-tabs .photonui-tabitem-tab:hover {
  3580. background: #fff
  3581. }
  3582. .photonui-tablayout .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3583. background: #fff;
  3584. z-index: 10
  3585. }
  3586. .photonui-tablayout .photonui-tablayout-content {
  3587. background: #fff;
  3588. border: 1px solid #a5a5a5;
  3589. box-shadow: 0 0 2px rgba(0,0,0,.2)
  3590. }
  3591. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox .photonui-tablayout-tabs,.photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox .photonui-tablayout-tabs {
  3592. height: 36px;
  3593. min-height: 36px;
  3594. max-height: 36px
  3595. }
  3596. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab,.photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  3597. line-height: 30px;
  3598. height: 30px;
  3599. text-align: center;
  3600. margin-right: -1px
  3601. }
  3602. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active,.photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3603. height: 36px;
  3604. line-height: 36px
  3605. }
  3606. .photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-tabs,.photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-tabs {
  3607. width: 120px;
  3608. min-width: 120px;
  3609. max-width: 120px;
  3610. padding-top: 1px
  3611. }
  3612. .photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab,.photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  3613. width: calc(94%);
  3614. line-height: 32px;
  3615. height: 32px;
  3616. text-align: 32px;
  3617. text-align: left;
  3618. margin-top: -1px
  3619. }
  3620. .photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-content,.photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active,.photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-content,.photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3621. width: 100%
  3622. }
  3623. .photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  3624. -webkit-align-self: flex-end;
  3625. -ms-flex-item-align: end;
  3626. align-self: flex-end;
  3627. border-bottom: none;
  3628. border-radius: 2px 2px 0 0
  3629. }
  3630. .photonui-tablayout.photonui-tablayout-tabposition-top .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3631. margin-bottom: -1px;
  3632. box-shadow: -1px 0 0 rgba(0,0,0,.05),1px 0 0 rgba(0,0,0,.05),0 -1px 0 rgba(0,0,0,.05),-2px -2px 0 rgba(0,0,0,.01),2px -2px 0 rgba(0,0,0,.01)
  3633. }
  3634. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  3635. -webkit-align-self: flex-start;
  3636. -ms-flex-item-align: start;
  3637. align-self: flex-start;
  3638. border-top: none;
  3639. border-radius: 0 0 2px 2px
  3640. }
  3641. .photonui-tablayout.photonui-tablayout-tabposition-bottom .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3642. margin-top: -1px;
  3643. box-shadow: -1px 0 0 rgba(0,0,0,.05),1px 0 0 rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05),-2px 2px 0 rgba(0,0,0,.01),2px 2px 0 rgba(0,0,0,.01)
  3644. }
  3645. .photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  3646. -webkit-align-self: flex-end;
  3647. -ms-flex-item-align: end;
  3648. align-self: flex-end;
  3649. border-right: none;
  3650. text-align: right;
  3651. border-radius: 2px 0 0 2px
  3652. }
  3653. .photonui-tablayout.photonui-tablayout-tabposition-left .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3654. margin-right: -1px;
  3655. padding-right: 9px;
  3656. box-shadow: 0 -1px 0 rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05),-1px 0 0 rgba(0,0,0,.05),-2px -2px 0 rgba(0,0,0,.01),-2px 2px 0 rgba(0,0,0,.01)
  3657. }
  3658. .photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab {
  3659. -webkit-align-self: flex-start;
  3660. -ms-flex-item-align: start;
  3661. align-self: flex-start;
  3662. border-left: none;
  3663. border-radius: 0 2px 2px 0
  3664. }
  3665. .photonui-tablayout.photonui-tablayout-tabposition-right .photonui-tablayout-innerbox .photonui-tablayout-tabs .photonui-tabitem-tab.photonui-tabitem-active {
  3666. margin-left: -1px;
  3667. padding-left: 9px;
  3668. box-shadow: 0 -1px 0 rgba(0,0,0,.05),0 1px 0 rgba(0,0,0,.05),1px 0 0 rgba(0,0,0,.05),2px -2px 0 rgba(0,0,0,.01),2px 2px 0 rgba(0,0,0,.01)
  3669. }
  3670. .photonui-window-title {
  3671. overflow: hidden;
  3672. background: #383838!important
  3673. }
  3674. .photonui-button-color-green {
  3675. background: #89b808!important;
  3676. border-color: #6e910f!important;
  3677. color: #fff!important
  3678. }
  3679. .photonui-window.headless .photonui-window-title {
  3680. display: none
  3681. }
  3682. #mainMenuTabsContainer {
  3683. overflow: auto
  3684. }
  3685. #mainMenu {
  3686. height: 100%;
  3687. background: #f1f1f1;
  3688. box-shadow: 0 0 8px rgba(0,0,0,.4);
  3689. border-left: #bbb solid 1px
  3690. }
  3691. #mainMenu ul#mainMenuTabs {
  3692. padding-left: 10px;
  3693. margin-top: 48px;
  3694. white-space: nowrap
  3695. }
  3696. #mainMenu ul#mainMenuTabs li {
  3697. display: inline-block;
  3698. text-align: center;
  3699. cursor: pointer;
  3700. width: 76px;
  3701. padding: 5px 0;
  3702. margin: 0;
  3703. border: 1px solid #f1f1f1;
  3704. border-top: none;
  3705. border-bottom: none;
  3706. position: relative
  3707. }
  3708. #mainMenu ul#mainMenuTabs li img {
  3709. vertical-align: middle;
  3710. max-width: 40px
  3711. }
  3712. #mainMenu ul#mainMenuTabs li span {
  3713. display: block
  3714. }
  3715. #mainMenu ul#mainMenuTabs li span.menu-title {
  3716. color: #222;
  3717. font-size: 9pt;
  3718. text-shadow: 1px 1px 0 #fff
  3719. }
  3720. #mainMenu ul#mainMenuTabs>li:hover {
  3721. background: #fff;
  3722. border-color: #ddd;
  3723. box-shadow: inset 0 0 10px rgba(0,0,0,.1)
  3724. }
  3725. #mainMenu ul#mainMenuTabs>li.selected {
  3726. background: #89b808;
  3727. border-color: #6e910f;
  3728. box-shadow: inset 1px 0 0 rgba(255,255,255,.3),inset -1px 0 0 rgba(255,255,255,.3)
  3729. }
  3730. #mainMenu ul#mainMenuTabs>li.selected span.menu-title {
  3731. color: #fff;
  3732. text-shadow: -1px -1px 0 #6e910f
  3733. }
  3734. #mainMenu ul#mainMenuTabs li.label-2D:before,#mainMenu ul#mainMenuTabs li.label-3D:before {
  3735. background: #fff;
  3736. position: absolute;
  3737. padding: 0 2px;
  3738. font-size: 8pt;
  3739. border-radius: 2px;
  3740. margin-left: 15px;
  3741. color: #888;
  3742. border: 1px solid #bbb;
  3743. box-shadow: inset 0 0 5px rgba(0,0,0,.2)
  3744. }
  3745. #mainMenu ul#mainMenuTabs>li.selected.label-2D:before,#mainMenu>ul#mainMenuTabs li.selected.label-3D:before {
  3746. background: #C3E75F;
  3747. border-color: #6e910f;
  3748. color: #566F13;
  3749. box-shadow: inset 0 0 5px rgba(0,0,0,.3)
  3750. }
  3751. #mainMenu ul#mainMenuTabs li.label-2D:before {
  3752. content: "2D"
  3753. }
  3754. #mainMenu ul#mainMenuTabs li.label-3D:before {
  3755. content: "3D"
  3756. }
  3757. #mainMenu #mainMenuTitle {
  3758. background: #383838;
  3759. margin: 0;
  3760. padding: 5px;
  3761. color: #f1f1f1;
  3762. text-shadow: -1px -1px 0 #000;
  3763. cursor: default
  3764. }
  3765. #mainMenu #mainMenuContent {
  3766. overflow: auto;
  3767. padding-top: 1px;
  3768. height: 90%;
  3769. height: -moz-calc(100% - 140px);
  3770. height: -webkit-calc(100% - 140px);
  3771. height: calc(100% - 140px)
  3772. }
  3773. .menu-item.hidden {
  3774. display: none!important
  3775. }
  3776. #mainMenu li.menu-item.hidden,#mainMenu li.menu-subitem ul {
  3777. display: none
  3778. }
  3779. #mainMenu li.menu-subitem ul.visible,#mainMenu li.menu-subitem.opened ul {
  3780. display: block
  3781. }
  3782. #mainMenu li {
  3783. cursor: pointer
  3784. }
  3785. #mainMenu li.menu-subitem>ul {
  3786. box-shadow: -1px 0 0 #999;
  3787. margin-left: 8px!important;
  3788. margin-top: -1px;
  3789. padding-top: 2px
  3790. }
  3791. #mainMenu ul.mainList li .menu-title {
  3792. margin-left: 9px
  3793. }
  3794. #mainMenu ul.mainList li span.menu-icon,#mainMenu ul.sublist li span.menu-icon {
  3795. background: #e1e1e1;
  3796. float: left;
  3797. display: inline-block;
  3798. width: 23px;
  3799. height: 23px;
  3800. margin: 0;
  3801. border: 2px solid #fff;
  3802. overflow: hidden;
  3803. box-shadow: 0 0 1px rgba(0,0,0,.3);
  3804. outline-color: #89b808
  3805. }
  3806. #mainMenu ul.mainList li span.menu-icon .colorChooser,#mainMenu ul.sublist li span.menu-icon .colorChooser {
  3807. position: absolute;
  3808. margin: -28px 0 0 35px;
  3809. display: block;
  3810. z-index: 2;
  3811. height: 20px;
  3812. width: 20px;
  3813. border: 1px solid #fff;
  3814. box-shadow: 0 0 3px rgba(0,0,0,.3);
  3815. overflow: hidden
  3816. }
  3817. #mainMenu ul.mainList li span.menu-icon .menu-topIcon,#mainMenu ul.sublist li span.menu-icon .menu-topIcon {
  3818. position: absolute;
  3819. margin: -63px 0 0;
  3820. display: block;
  3821. background: #89B808;
  3822. color: #FFF;
  3823. text-overflow: ellipsis;
  3824. border-radius: 0 0 2px;
  3825. padding: 2px;
  3826. font-size: 13px;
  3827. text-shadow: -1px -1px 0 #6e910f;
  3828. border: 1px solid #6e910f;
  3829. box-shadow: inset 1px 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(255,255,255,.2)
  3830. }
  3831. #mainMenu ul.mainList li span.menu-icon .info,#mainMenu ul.sublist li span.menu-icon .info {
  3832. position: relative;
  3833. padding: 14px 0;
  3834. text-align: center;
  3835. width: 100%;
  3836. height: 30px;
  3837. bottom: 131px;
  3838. font-size: 12px;
  3839. background: rgba(56,56,56,.4);
  3840. color: #fff;
  3841. text-shadow: -1px -1px 0 #000;
  3842. transition: .5s;
  3843. -webkit-transition: .5s;
  3844. text-overflow: ellipsis
  3845. }
  3846. #mainMenu ul.mainList li span.menu-icon:hover .info,#mainMenu ul.sublist li span.menu-icon:hover .info {
  3847. bottom: 62px
  3848. }
  3849. #mainMenu ul.mainList li span.menu-icon .colorChooser:hover,#mainMenu ul.sublist li span.menu-icon .colorChooser:hover {
  3850. transition: all .1s;
  3851. -webkit-transition: all .1s;
  3852. transform: scale(1.1);
  3853. -webkit-transform: scale(1.1)
  3854. }
  3855. #mainMenu ul.mainList li span.menu-icon.sprite .colorChooser,#mainMenu ul.sublist li span.menu-icon.sprite .colorChooser {
  3856. margin-top: 35px
  3857. }
  3858. #mainMenu ul.mainList li span.menu-icon .colorChooser:after,#mainMenu ul.sublist li span.menu-icon .colorChooser:after {
  3859. content: "";
  3860. display: block;
  3861. width: 10px;
  3862. height: 10px;
  3863. background: #fff;
  3864. transform: rotate(45deg);
  3865. -webkit-transform: rotate(45deg);
  3866. margin: 14px 0 0 14px;
  3867. border: 1px solid #fff;
  3868. pointer-events: none
  3869. }
  3870. #mainMenu ul.mainList li span.menu-label {
  3871. display: inline-block;
  3872. height: 20px;
  3873. font-size: 15px;
  3874. padding-top: 4px;
  3875. margin-left: 5px
  3876. }
  3877. #mainMenu ul.layout-list-icon>li,#mainMenu ul.layout-list>li {
  3878. width: 100%
  3879. }
  3880. #mainMenu ul.layout-list li.menu-item,#mainMenu ul.layout-list-icon li.menu-item {
  3881. padding: 9px 0;
  3882. white-space: normal;
  3883. overflow: hidden;
  3884. border-bottom: #ccc solid 1px;
  3885. box-shadow: 0 1px 0 #fff;
  3886. color: #333;
  3887. text-shadow: 1px 1px 0 #fff
  3888. }
  3889. #mainMenu ul.layout-list li.selected,#mainMenu ul.layout-list>li.menu-subitem.opened {
  3890. color: #fff;
  3891. box-shadow: inset 1px 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(255,255,255,.2)
  3892. }
  3893. #mainMenu ul.layout-list-icon>li.menu-subitem,#mainMenu ul.layout-list>li.menu-subitem {
  3894. background: url(../images/menu-closed.png) right no-repeat
  3895. }
  3896. #mainMenu ul.layout-list-icon>li.menu-subitem.opened,#mainMenu ul.layout-list>li.menu-subitem.opened {
  3897. background: url(../images/menu-opened.png) right 6px no-repeat
  3898. }
  3899. #mainMenu ul.layout-list>li.menu-subitem.opened ul {
  3900. margin-top: 9px;
  3901. background: #eee
  3902. }
  3903. #mainMenu ul.layout-list li:hover,#mainMenu ul.layout-list-icon li:hover {
  3904. background-color: #fff
  3905. }
  3906. #mainMenu ul.layout-list>li.menu-subitem.opened {
  3907. padding-bottom: 0;
  3908. background-color: #bbb;
  3909. text-shadow: -1px -1px 0 #999;
  3910. border: 1px solid #999;
  3911. border-right: none;
  3912. margin-top: -2px
  3913. }
  3914. #mainMenu ul.layout-list li.selected {
  3915. background-color: #89b808;
  3916. text-shadow: -1px -1px 0 #6e910f;
  3917. border: 1px solid #6e910f;
  3918. border-right: none;
  3919. margin-top: -2px
  3920. }
  3921. #mainMenu ul.layout-list>li>div>span.menu-icon {
  3922. display: none
  3923. }
  3924. #mainMenu ul.layout-list-icon>li>div>span.menu-icon {
  3925. display: inline-block
  3926. }
  3927. #mainMenu ul.layout-table,#mainMenu ul.layout-table-26,#mainMenu ul.layout-table-60 {
  3928. padding: 8px 0!important;
  3929. text-align: center;
  3930. border-bottom: #ccc solid 1px
  3931. }
  3932. #mainMenu ul.layout-table-26>li,#mainMenu ul.layout-table-26>li>div,#mainMenu ul.layout-table-60>li,#mainMenu ul.layout-table-60>li>div,#mainMenu ul.layout-table>li {
  3933. display: inline-block;
  3934. width: auto;
  3935. border: none;
  3936. box-shadow: none
  3937. }
  3938. #mainMenu ul.layout-table-26>li,#mainMenu ul.layout-table-60>li,#mainMenu ul.layout-table>li {
  3939. margin: 0 2px
  3940. }
  3941. #mainMenu ul.layout-table-26>li span.menu-icon,#mainMenu ul.layout-table-60>li span.menu-icon,#mainMenu ul.layout-table>li span.menu-icon {
  3942. margin: 0;
  3943. transition: all .1s;
  3944. -webkit-transition: all .1s
  3945. }
  3946. #mainMenu ul.layout-table-26>li>span.menu-label,#mainMenu ul.layout-table-60>li>span.menu-label,#mainMenu ul.layout-table>li>span.menu-label {
  3947. display: none
  3948. }
  3949. #mainMenu ul.layout-table-26>li,#mainMenu ul.layout-table-60>li,#mainMenu ul.layout-table>li {
  3950. transition: all .1s;
  3951. -webkit-transition: all .1s
  3952. }
  3953. #mainMenu ul.layout-table-26>li.menu-item,#mainMenu ul.layout-table-60>li.menu-item,#mainMenu ul.layout-table>li.menu-item {
  3954. padding: 0;
  3955. border-bottom: none;
  3956. box-shadow: none
  3957. }
  3958. #mainMenu ul.layout-table-26>li span.menu-icon.colorable,#mainMenu ul.layout-table-60>li span.menu-icon.colorable,#mainMenu ul.layout-table>li span.menu-icon.colorable {
  3959. position: relative
  3960. }
  3961. #mainMenu ul.layout-table-26>li span.menu-icon.colorable img,#mainMenu ul.layout-table-60>li span.menu-icon.colorable img,#mainMenu ul.layout-table>li span.menu-icon.colorable img {
  3962. width: 60px;
  3963. height: 60px
  3964. }
  3965. #mainMenu ul.layout-table-26>li span.menu-icon {
  3966. width: 28px;
  3967. height: 28px
  3968. }
  3969. #luxens ul.layout-table-26>li span.menu-icon {
  3970. width: 28px;
  3971. height: 28px;
  3972. border: 1px solid transparent
  3973. }
  3974. #luxens ul.layout-table-26>li span.menu-icon:hover {
  3975. border: 1px solid #666
  3976. }
  3977. #mainMenu ul.layout-table-26>li.selected span.menu-icon {
  3978. transform: scale(1.4);
  3979. -webkit-transform: scale(1.4);
  3980. outline: #89b808 solid 2px;
  3981. box-shadow: none
  3982. }
  3983. #mainMenu ul.layout-table-60>li span.menu-icon {
  3984. position: relative;
  3985. width: 60px;
  3986. height: 60px;
  3987. margin: 2px
  3988. }
  3989. #mainMenu ul.layout-table-60>li:hover span.menu-icon {
  3990. box-shadow: 0 0 3px rgba(0,0,0,.6)
  3991. }
  3992. #mainMenu ul.layout-table-60>li.selected span.menu-icon {
  3993. box-shadow: none;
  3994. outline: #89b808 solid 2px
  3995. }
  3996. #mainMenu ul.layout-table-60>li span.menu-icon img {
  3997. max-width: 64px;
  3998. width: 60px;
  3999. height: 60px
  4000. }
  4001. #toolbar {
  4002. position: absolute;
  4003. width: 300px;
  4004. right: 0
  4005. }
  4006. #toolbar #toolbar-bar {
  4007. background: #383838;
  4008. border-radius: 0 0 0 46px;
  4009. text-align: right;
  4010. box-shadow: 0 0 8px rgba(0,0,0,.4);
  4011. height: 48px
  4012. }
  4013. #subMenuList li.menu-subitem ul,#toolbar li.menu-subitem ul {
  4014. display: none;
  4015. position: absolute;
  4016. background: #fff;
  4017. border: 5px solid #eee;
  4018. z-index: 100000
  4019. }
  4020. #subMenuList li.menu-subitem.opened>ul,#toolbar li.menu-subitem.opened>ul {
  4021. display: block
  4022. }
  4023. #toolbar #toolbar-bar>ul {
  4024. display: table;
  4025. width: 259px;
  4026. text-align: center;
  4027. margin-left: 41px
  4028. }
  4029. #subMenuList {
  4030. display: table;
  4031. min-width: 50px;
  4032. text-align: center;
  4033. margin: 0;
  4034. padding: 0;
  4035. font-size: 14px
  4036. }
  4037. #subMenuList>li,#toolbar #toolbar-bar>ul>li {
  4038. display: table-cell;
  4039. text-align: center;
  4040. min-width: 54px;
  4041. height: 48px;
  4042. cursor: pointer;
  4043. vertical-align: middle
  4044. }
  4045. #subMenuList>li>span,#toolbar #toolbar-bar>ul>li>span {
  4046. display: block;
  4047. transition: all .2s;
  4048. -webkit-transition: all .2s
  4049. }
  4050. #subMenuList>li>span.menu-icon,#toolbar #toolbar-bar>ul>li>span.menu-icon {
  4051. margin-top: 7px;
  4052. width: 100%;
  4053. opacity: .9
  4054. }
  4055. #subMenuList>li>span.menu-icon img,#toolbar #toolbar-bar>ul>li>span.menu-icon img {
  4056. max-width: 32px;
  4057. max-height: 32px;
  4058. transition: all .2s;
  4059. -webkit-transition: all .2s;
  4060. vertical-align: middle;
  4061. -webkit-transform-origin: top
  4062. }
  4063. #subMenuList>li>span.menu-title,#toolbar #toolbar-bar>ul>li>span.menu-title {
  4064. color: #eee;
  4065. font-size: 10px;
  4066. display: block;
  4067. text-align: center;
  4068. max-height: 13px;
  4069. margin-top: -10px;
  4070. overflow: hidden;
  4071. text-overflow: ellipsis;
  4072. opacity: 0;
  4073. font-family: Arial,sans-serif
  4074. }
  4075. #subMenuList>li:not(.opened):hover>span.menu-icon,#toolbar #toolbar-bar>ul>li:not(.opened):hover>span.menu-icon {
  4076. transform: scale(.8) translate(0,-3px);
  4077. -webkit-transform: scale(.8) translate(0,-3px);
  4078. transform-origin: top;
  4079. -webkit-transform-origin: top
  4080. }
  4081. #subMenuList>li.opened>span.menu-title,#subMenuList>li:hover>span.menu-title,#toolbar #toolbar-bar>ul>li.opened>span.menu-title,#toolbar #toolbar-bar>ul>li:hover>span.menu-title {
  4082. opacity: 1
  4083. }
  4084. #subMenuList .menu-item .loader,#toolbar #toolbar-bar ul .menu-item .loader {
  4085. display: none
  4086. }
  4087. #subMenuList .menu-item.loading .loader,#toolbar #toolbar-bar ul .menu-item.loading .loader {
  4088. display: block
  4089. }
  4090. #subMenuList>.menu-item i,#toolbar #toolbar-bar>ul>.menu-item i {
  4091. color: #fff;
  4092. font-size: 1.8em;
  4093. padding: 6px 4px;
  4094. position: relative
  4095. }
  4096. #subMenuList>.locked,#toolbar #toolbar-bar>ul>.menu-item i.locked {
  4097. opacity: .5
  4098. }
  4099. #subMenuList .menu-item i.special,#toolbar #toolbar-bar ul .menu-item i.special {
  4100. color: #C3E75F
  4101. }
  4102. #subMenu {
  4103. height: 35px;
  4104. min-width: 75px;
  4105. position: relative
  4106. }
  4107. #subMenuContainer {
  4108. background: silver;
  4109. position: absolute;
  4110. right: 260px;
  4111. padding: 0 50px 13px 30px;
  4112. z-index: 42;
  4113. overflow: hidden;
  4114. color: #fff;
  4115. font-size: 18pt;
  4116. font-family: Arial,sans-serif;
  4117. border-radius: 0 0 0 46px
  4118. }
  4119. .subMenuButton,.subMenuButtonImage {
  4120. float: left;
  4121. z-index: 43;
  4122. font-size: 24px!important;
  4123. cursor: pointer
  4124. }
  4125. .subMenuButton {
  4126. margin: 5px 15px -2px 5px!important;
  4127. color: #fff
  4128. }
  4129. .subMenuButton:hover {
  4130. color: #333!important
  4131. }
  4132. .subMenuButtonImage {
  4133. margin-top: 0!important;
  4134. color: #fff
  4135. }
  4136. .subMenuButtonTransparency {
  4137. background-image: url(../images/icon-transparency.png)
  4138. }
  4139. .subMenuButtonOpacity {
  4140. background-image: url(../images/icon-opacity.png)
  4141. }
  4142. .subMenuButtonImage:hover {
  4143. background-image: url(../images/icon-transparency-hover.png)
  4144. }
  4145. #toolbar-bar li.menu-subitem {
  4146. position: relative;
  4147. text-align: left
  4148. }
  4149. #toolbar-bar li.menu-subitem ul {
  4150. position: absolute;
  4151. background: #111;
  4152. z-index: 420000000;
  4153. top: 47px;
  4154. right: 10px;
  4155. padding: 5px 0;
  4156. pointer-events: auto;
  4157. border-radius: 5px;
  4158. opacity: .94;
  4159. min-width: 200px;
  4160. transition: all .3s;
  4161. box-shadow: 0 0 10px rgba(0,0,0,.5);
  4162. border: 2px solid #fff
  4163. }
  4164. #toolbar-bar li.menu-subitem ul:after,#toolbar-bar li.menu-subitem ul:before {
  4165. bottom: 100%;
  4166. border: solid transparent;
  4167. content: " ";
  4168. height: 0;
  4169. width: 0;
  4170. position: absolute;
  4171. pointer-events: none;
  4172. opacity: .94
  4173. }
  4174. #toolbar-bar li.menu-subitem ul:after {
  4175. border-color: transparent transparent #000;
  4176. border-width: 10px;
  4177. right: 10px;
  4178. margin-left: -10px
  4179. }
  4180. #toolbar-bar li.menu-subitem ul:before {
  4181. border-color: rgba(255,255,255,0);
  4182. border-bottom-color: #fff;
  4183. border-width: 13px;
  4184. right: 7px;
  4185. margin-left: -13px
  4186. }
  4187. #toolbar-bar li.menu-subitem ul li {
  4188. color: rgba(255,255,255,.9);
  4189. clear: both;
  4190. padding: 3px 0 3px 10px;
  4191. text-align: left
  4192. }
  4193. #toolbar-bar li.menu-subitem ul li:hover {
  4194. background: #444
  4195. }
  4196. #toolbar-bar li.menu-subitem ul li.separator {
  4197. padding: 3px 10px
  4198. }
  4199. #toolbar-bar li.menu-subitem ul li.separator:hover {
  4200. background: 0 0
  4201. }
  4202. #toolbar-bar li.menu-subitem ul li button::-moz-focus-inner {
  4203. border: 0;
  4204. padding: 0
  4205. }
  4206. #toolbar-bar li.menu-subitem ul li button {
  4207. width: 100%;
  4208. margin: 0;
  4209. padding: 5px 10px;
  4210. text-align: left;
  4211. border: none;
  4212. background: 0 0;
  4213. color: rgba(255,255,255,.9);
  4214. cursor: pointer;
  4215. font-family: Arial,sans-serif;
  4216. font-size: 11pt;
  4217. border-radius: 2px
  4218. }
  4219. #toolbar-bar li.menu-subitem ul li hr {
  4220. margin: 3px 0;
  4221. border: none;
  4222. border-bottom: rgba(255,255,255,.2) solid 1px
  4223. }
  4224. #toolbar-bar li.menu-subitem ul.hidden {
  4225. opacity: 0;
  4226. pointer-events: none;
  4227. -webkit-transform: translate(0,5px);
  4228. transform: translate(0,7px)
  4229. }
  4230. #toolbar-bar li.menu-subitem ul li label {
  4231. line-height: 30px;
  4232. font-family: Arial,sans-serif;
  4233. font-size: 11pt;
  4234. padding: 0 15px 0 10px;
  4235. cursor: pointer;
  4236. width: 100%;
  4237. width: calc(100% - 25px);
  4238. display: inline-block
  4239. }
  4240. #toolbar-bar li.menu-subitem ul li label:empty {
  4241. display: none
  4242. }
  4243. #toolbar-bar li.menu-subitem ul li input {
  4244. float: right;
  4245. margin-left: 5px
  4246. }
  4247. #toolbar-bar li.menu-subitem input[type=checkbox] {
  4248. display: inline-block;
  4249. width: 48px;
  4250. height: 30px;
  4251. -moz-appearance: none;
  4252. -webkit-appearance: none;
  4253. margin: -30px 10px 0 0;
  4254. cursor: pointer;
  4255. opacity: 0
  4256. }
  4257. #toolbar-bar li.menu-subitem input[type=checkbox]+span {
  4258. margin: -26px 10px 0 -10px;
  4259. float: right;
  4260. display: inline-block;
  4261. width: 45px;
  4262. height: 20px;
  4263. border: 1px solid #fff;
  4264. border-radius: 3px;
  4265. pointer-events: none;
  4266. opacity: .9;
  4267. transition: all .2s;
  4268. background: url(../images/ui/menu-switch-bg.png) center no-repeat #000
  4269. }
  4270. #toolbar-bar li.menu-subitem input[type=checkbox]+span:before {
  4271. display: block;
  4272. content: "";
  4273. width: 20px;
  4274. height: 16px;
  4275. margin-top: 1px;
  4276. margin-left: 1px;
  4277. border: 1px solid #fff;
  4278. border-radius: 2px;
  4279. background: url(../images/ui/menu-switch-btn-bg.png) center no-repeat #fff;
  4280. pointer-events: none;
  4281. box-shadow: 0 0 2px rgba(0,0,0,.6);
  4282. transition: all .13s
  4283. }
  4284. #toolbar-bar li.menu-subitem input[type=checkbox]:checked+span {
  4285. background-color: #777;
  4286. box-shadow: inset 0 0 2px rgba(0,0,0,.6)
  4287. }
  4288. #toolbar-bar li.menu-subitem input[type=checkbox]:checked+span:before {
  4289. margin-left: 22px
  4290. }
  4291. #waiter,.photonui-wnpephemeralinfowidget {
  4292. width: 400px;
  4293. height: 30px;
  4294. padding: 5px 5px 5px 40px;
  4295. line-height: 35px;
  4296. background: #FEF86C;
  4297. color: #F4661B;
  4298. position: absolute;
  4299. bottom: 0;
  4300. left: 50%;
  4301. margin-left: -200px
  4302. }
  4303. #waiter.hidden,.photonui-wnpephemeralinfowidget.hidden {
  4304. display: none
  4305. }
  4306. .photonui-wnpephemeralinfowidget {
  4307. background: #eee;
  4308. color: #999;
  4309. text-align: center;
  4310. padding: 0
  4311. }
  4312. .photonui-wnpephemeralinfowidget span {
  4313. text-align: center
  4314. }
  4315. #userConnectionForm .visible,#userConnectionForm.visible {
  4316. display: block
  4317. }
  4318. #userConnectionForm .hide,#userConnectionForm.hide {
  4319. display: none
  4320. }
  4321. #userConnectionToggle {
  4322. text-decoration: none;
  4323. color: #555;
  4324. margin-right: 5px;
  4325. font-size: 9pt;
  4326. font-family: Arial
  4327. }
  4328. #userConnectionToggle:hover {
  4329. text-decoration: underline
  4330. }
  4331. #userConnectionForm .error {
  4332. display: none;
  4333. border-radius: 2px;
  4334. padding: 5px;
  4335. border-left: 3px solid #DFB5B4;
  4336. background: #FCF2F2
  4337. }
  4338. #userConnectionForm .loader {
  4339. display: none;
  4340. position: absolute;
  4341. bottom: 5px
  4342. }
  4343. #userConnectionForm .check {
  4344. margin: 5px 0 0 5px;
  4345. visibility: hidden
  4346. }
  4347. #helpbubble {
  4348. position: absolute;
  4349. bottom: 20px;
  4350. right: 280px;
  4351. min-width: 200px;
  4352. min-height: 100px;
  4353. max-width: 520px;
  4354. background: #000;
  4355. z-index: 420;
  4356. pointer-events: none;
  4357. border-radius: 3px;
  4358. box-shadow: 0 0 7px rgba(0,0,0,.6);
  4359. padding: 10px;
  4360. opacity: 0;
  4361. -moz-filter: blur(7px);
  4362. -webkit-filter: blur(7px);
  4363. filter: blur(7px);
  4364. transition: all .6s;
  4365. line-height: 1.3em
  4366. }
  4367. #helpbubble .close {
  4368. position: absolute;
  4369. top: 3px;
  4370. right: 3px;
  4371. background: url(../images/helpbubble-close.png) center no-repeat;
  4372. width: 16px;
  4373. height: 16px;
  4374. pointer-events: none;
  4375. cursor: pointer;
  4376. border-radius: 2px;
  4377. border: 0
  4378. }
  4379. #helpbubble .close:hover {
  4380. background-color: rgba(255,255,255,.1)
  4381. }
  4382. #helpbubble .wrapper {
  4383. display: table
  4384. }
  4385. #helpbubble .wrapper .content,#helpbubble .wrapper .image {
  4386. display: table-cell;
  4387. vertical-align: middle;
  4388. padding: 5px
  4389. }
  4390. #helpbubble .wrapper .image img {
  4391. vertical-align: middle
  4392. }
  4393. #helpbubble .wrapper .content {
  4394. font-size: 13pt;
  4395. line-height: 1.4em;
  4396. vertical-align: top
  4397. }
  4398. #helpbubble .wrapper .content strong {
  4399. display: block;
  4400. border-bottom: rgba(255,255,255,.3) solid 1px;
  4401. margin-bottom: .5em;
  4402. color: #fff
  4403. }
  4404. #helpbubble .wrapper .content ul {
  4405. margin: 0;
  4406. padding: 0 0 0 15px
  4407. }
  4408. #helpbubble .wrapper .content ul li {
  4409. margin-bottom: 5px;
  4410. color: #fff
  4411. }
  4412. #helpbubble.visible {
  4413. opacity: .8;
  4414. -moz-filter: blur(0);
  4415. -webkit-filter: blur(0);
  4416. filter: blur(0)
  4417. }
  4418. #helpbubble.visible .close {
  4419. pointer-events: auto
  4420. }
  4421. .photonui-wnpfloorcontrollerbutton {
  4422. width: 120px;
  4423. height: 17px;
  4424. cursor: pointer;
  4425. border-radius: 5px;
  4426. border: 1px solid #aaa;
  4427. font-size: 10px;
  4428. padding: 3px;
  4429. float: left;
  4430. margin-right: 5px;
  4431. margin-bottom: 3px;
  4432. text-align: center;
  4433. position: relative;
  4434. overflow: hidden;
  4435. text-overflow: ellipsis;
  4436. background: silver;
  4437. color: #fff!important
  4438. }
  4439. .photonui-wnpfloorcontrollerbutton.selected,.photonui-wnpfloorcontrollerbutton:hover {
  4440. background: #454545;
  4441. border: 1px solid #000
  4442. }
  4443. .photonui-wnpfloorcontrollerbutton:hover .delete,.photonui-wnpfloorcontrollerbutton:hover .settings {
  4444. opacity: .5
  4445. }
  4446. .photonui-wnpfloorcontrollerbutton:hover .delete:hover,.photonui-wnpfloorcontrollerbutton:hover .settings:hover {
  4447. opacity: 1
  4448. }
  4449. .photonui-wnpfloorcontrollerbutton.dragover {
  4450. background: #89b808
  4451. }
  4452. .photonui-wnpfloorcontrollerbutton .delete,.photonui-wnpfloorcontrollerbutton .settings {
  4453. position: absolute;
  4454. width: 10px;
  4455. opacity: 0;
  4456. display: none
  4457. }
  4458. .photonui-wnpfloorcontrollerbutton .delete {
  4459. right: 5px;
  4460. top: 2px
  4461. }
  4462. .photonui-wnpfloorcontrollerbutton .settings {
  4463. left: 5px;
  4464. top: 2px;
  4465. border-radius: 5px;
  4466. opacity: .5;
  4467. border: 1px solid #0C0
  4468. }
  4469. .photonui-wnpfloorcontrollerbutton.deletable .delete,.photonui-wnpfloorcontrollerbutton.editable .settings {
  4470. display: block
  4471. }
  4472. .photonui-wnpiframe .photonui-window-title {
  4473. display: none
  4474. }
  4475. .photonui-wnpproductitem {
  4476. width: 130px;
  4477. height: 110px;
  4478. position: relative;
  4479. margin: 1px 6px 8px 7px;
  4480. cursor: pointer;
  4481. box-shadow: 1px 1px 2px rgba(0,0,0,.3),-1px 0 0 #aaa,1px 0 0 #aaa,0 -1px 0 #aaa,0 1px 0 #aaa;
  4482. transition: box-shadow .2s;
  4483. -webkit-transition: box-shadow .2s
  4484. }
  4485. .photonui-wnpproductitem span {
  4486. display: block;
  4487. margin: 0;
  4488. padding: 0
  4489. }
  4490. .photonui-wnpproductitem:hover {
  4491. box-shadow: 0 0 5px rgba(0,0,0,.4),-1px 0 0 #555,1px 0 0 #555,0 -1px 0 #555,0 1px 0 #555
  4492. }
  4493. .photonui-wnpproductitem .photonui-wnpproductitem-container {
  4494. width: 100%;
  4495. height: 100%;
  4496. overflow: hidden
  4497. }
  4498. .photonui-wnpproductitem .photonui-wnpproductitem-container .photonui-wnpproductitem-image {
  4499. background: 0 0;
  4500. position: absolute;
  4501. top: 0;
  4502. display: inline-block;
  4503. width: 100%;
  4504. height: 95px;
  4505. overflow: hidden;
  4506. text-align: center
  4507. }
  4508. .photonui-wnpproductitem .photonui-wnpproductitem-container .photonui-wnpproductitem-image img {
  4509. max-width: 102%
  4510. }
  4511. .photonui-wnpproductitem .photonui-wnpproductitem-container .photonui-wnpproductitem-purchase {
  4512. display: none
  4513. }
  4514. .photonui-wnpproductitem .photonui-wnpproductitem-container .photonui-wnpproductitem-description {
  4515. position: absolute;
  4516. bottom: 0;
  4517. padding: 4px 5px 1px;
  4518. font-size: 11px;
  4519. white-space: nowrap;
  4520. overflow: hidden;
  4521. width: calc(100% - 10px);
  4522. z-index: 100;
  4523. text-align: center;
  4524. background: #383838;
  4525. text-overflow: ellipsis;
  4526. color: #fff;
  4527. text-shadow: -1px -1px 0 #000;
  4528. transition: background .1s;
  4529. -webkit-transition: background .1s;
  4530. box-shadow: 0 1px 0 #555,1px 0 0 #555,-1px 0 0 #555,inset 0 1px 0 #fff
  4531. }
  4532. .photonui-wnpproductitem .photonui-wnpproductitem-container .photonui-wnpproductitem-icon {
  4533. position: absolute;
  4534. top: 1px;
  4535. left: -1px;
  4536. background: #89B808;
  4537. color: #FFF;
  4538. text-overflow: ellipsis;
  4539. border-radius: 4px 0;
  4540. padding: 3px;
  4541. text-shadow: -1px -1px 0 #6e910f;
  4542. border: 1px solid #6e910f;
  4543. margin-top: -2px;
  4544. box-shadow: inset 1px 1px 0 rgba(255,255,255,.2),inset 0 -1px 0 rgba(255,255,255,.2)
  4545. }
  4546. .photonui-wnpproductitem .photonui-wnpproductitem-container .photonui-wnpproductitem-info {
  4547. position: relative;
  4548. top: -110px;
  4549. z-index: 1;
  4550. padding: 20px 0;
  4551. text-align: center;
  4552. width: 100%;
  4553. height: 70px;
  4554. font-size: 18px;
  4555. background: rgba(56,56,56,.4);
  4556. color: #fff;
  4557. text-shadow: -1px -1px 0 #000;
  4558. transition: .5s;
  4559. -webkit-transition: .5s;
  4560. text-overflow: ellipsis
  4561. }
  4562. .photonui-wnpproductitem .selected {
  4563. opacity: 0;
  4564. position: absolute;
  4565. top: 5px;
  4566. z-index: 2;
  4567. margin: 4px 0 0 -6px;
  4568. padding: 3px 5px;
  4569. font-size: 14px;
  4570. border-radius: 2px;
  4571. background: #89B808;
  4572. color: #fff;
  4573. text-shadow: -1px -1px 0 #6E910F;
  4574. border: 1px solid #6E910F;
  4575. box-shadow: inset 1px 1px 0 rgba(255,255,255,.3),inset -1px -1px 0 rgba(255,255,255,.3)
  4576. }
  4577. .photonui-wnpproductitem .selected.show {
  4578. animation: bubble-in .5s;
  4579. -webkit-animation: bubble-in .5s;
  4580. opacity: 1
  4581. }
  4582. .photonui-wnpproductitem:hover .photonui-wnpproductitem-container .photonui-wnpproductitem-info {
  4583. top: 0
  4584. }
  4585. .photonui-wnpremotecameracontroller {
  4586. width: 50px;
  4587. height: 50px;
  4588. background-color: transparent;
  4589. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAADSCAYAAAAIe5MzAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAGtQAABrUBXo2HFwAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAABFGSURBVHic7V1bbFtHev4OD2+iSJuMSNlSRFl3BesAEVD4pUaRFtikizxsHyw1tbduEqEVkgAukKKLPiRtFtv2ZbdbA/vQGNradYEFlKxSBFlgixYB3KZNCwdOUMOIHV9km5Rk60JSvJPnzMw50weTgiTzci5zZCnY7408c2bOd2b+mf8y8x+Jcw4RuHDhQsjv95/0+Xy/7fF4Qh6PJyjLcsjlcoUAQNf1ImOsxBgrUkqLqqr+p6Ioc9PT00UR7Ut2iFy4cKE3GAz+SSAQ+K1wODzS19fXHwqFJCP3FotFvry8vJjL5RYqlcp/l0qln01PTz+0+iyWiMzOzvZHo9G/7+np+c3+/v4ev9/ftCznHLquQ5blpmUURcHi4uLKysrK/6bT6T+bmZlZNPtMpoi89957ke7u7h8fPnz4hdHR0f5WD1dHMpkEABw5cqRtWU3TcOfOncXV1dVP1tfXv//GG29kjT6bYSJzc3OvRKPRd5599tkRr9dr6B5VVXHv3j3Isoynn34anZ2dhu4jhOCrr75aSKfTf3Py5Ml/NnKPISIffvjhj4eHh1/r7+/vMvQkNdy5cwcejwfAo7c9PDxs5nYsLi5m7t69+0+Tk5Pfb1e2JZGLFy/6g8Hg+xMTE78biUSaC0ID5HI5rK2twefzAQAYY4hEIujqMvUukM1mlatXr/57qVT6g1dffVVpVq4pkYsXL/rD4fAnx44dO+73+w3NRFtx8+ZN7JwEVFXF+Pi42aqgKAq/cuXK/+RyuReakXE1uzkUCs1ZJbGysrI5pLbC6/XiwYMHZquD3++Xjh07djwUCs01K9OQyPz8/I8mJia+Y4WEruvIZrMNp1tJklAqlUApNVst/H6/NDEx8Z35+fkfNbr+GJG5ublXRkdHp8PhsCmZqCOZTCIQCDS97vP5LPUKAITDYf/o6Oj03NzcKzuvbSNy/vz5p2Kx2DvxeNycRNZQqVSgKE3lcROEEJRKJStNIB6Pd8VisXfOnz//1Nb/txEJh8M/OXr06IilFgAsLy+jo6OjbTmv14vV1VWrzeDo0aMj4XD4J1v/2yRy7ty5gUOHDn3b6GK3ExsbG6bKS5KEdDptqS2v14tDhw59+9y5cwP1/zaJxGKxn46NjfVZqhnA2toazLwEWZaRyWRgVWkdGxvri8ViP63/ljjnOHfu3NMTExNfjo6OHrJSaSKRQD6fh8vVdDZvio6ODoyMWBvNd+7cWbt69epvvP766w/cABCNRv/4yJEjlkgAwMDAgNVbbSEejx9aWlqaAfCuCwACgcBxK7JhR2BF1OX3+xEIBI4DgNzV1XVgcHDwnWg0GjZaQS6XQzKZRKVSQSwWM/0AjZBMJpHNZuF2ux9TbVqhWCy6P/744wvuaDR6sq+vr9/ITYqiYHl5Gbquw+fzQVVVyw++E7Isw+fzYX19Hel0Gn19fYYI9fX1xZeWlk66vV7v88FgsKUqwjnH4uIiKpWKoXXCDupDPJFIoKOjA/39/ZCk5o8XCoUkr9f7vMvj8YRaVby6uoqvv/4anHPHSWyF3+8H5xw3b97E2tpay7IejyfkdrvdDYkUCgU8fPgQbre7pe7kNDo6OlAqlZDL5dDT04MDBw48VsbtdofcsixvI6KqKpaWlqBpmimhcxKyLEOWZaysrCCVSiEej29bfGVZDrllWQ7W/0gmkyiXywgEAnC73U/koVuhbm3evXsXnZ2d6O9/NEfJshzcXIoVRQEhxJSa8aTg8XhACNk2a7o1TSsCj4RrdHQU2WwW6+vr8Hq9LWeLJwHOOSiliMViiEQim/9rmlZ067q+zWUZiUQQiUTw8OFDFAqFPSMniqLg4MGDGBwcfOyarutFFyGkoe+1t7d3U5kjhDj7lC1ACIEkSRgZGUFPT0+zMkU3Y6ypE9ntdmNgYADlcnlTFzLiXRQBTdMAwJBjjzFWdKmqeqlQKOitCnZ2dmJ4eBjhcBiqqlq2IYyAcw5CCCKRCIaHh9uSKBQKuqqql1yapr2/uLi4ZKSRrq4ujI+PC9ez6iCEwOfzYWxsDE899VT7GwAsLi4uaZr2vuv06dPlUql020yDvb29GBwcbOi7sgqv14vBwUH09vaauq9QKCycPn267AaAcrn8X4qivGBmhvJ6vRgaGgLwyB1aH9Nm4XK54PF4Nusyg0qlgnK5/CkAuAEgnU7/YzKZfGN8fNzc66hhdXUVGxsbprUBzjk6OzstW5jJZHJlY2PjZ8AW3+9HH330wfHjx3/f6qzUyNfbDlZ9wcCjUfDZZ5/9y4kTJyaBLV6UbDb71q1bt5KWagVw+PBhUxMAY8yWdXn79u1kPp//0/rvTSLT09MP19fX/9XqbBQOh02tMZIkGZ6ZdkJVVaysrPzb1pjjNv9NPp//ixs3btyyVDuAeDyOarVq6EGardJGcOPGjVulUmlb8Gcbkenp6eL6+voPEomEJRegz+dDIBBou2DWvB9WmkAikUivr6//YGdY+zGP2qlTp96/f//+bCaTaf9qG6C/v79lr6iqir4+aw7NTCZTvX///uypU6fe33mtoWtwcnLy7WvXrv2qWq2a1kUkSUI0GgVj7LFruq7jwIEDlvS1arXKr1279qvJycm3G11v6uPknH/vypUrn1ar1ZZ6WCN0d3c3XCAZY5Zko1qt6leuXPmUc/69ZmWaEpmamiKpVOrFy5cv/yKTyZTNNt7b27stVsIYQ3d3t9lqkMlkypcvX/5FKpV6cWpqqqk9YSg8PT8//1dDQ0NvDgwMmPIPLywsbK72uq6bVkMSicTavXv3/mFqauqH7coa3jDwwQcf/F44HP7bo0ePfqujo8OQDcwYw+3bt+F2u9Hf32945a9Wq/z69es3crnc2y+//PLHRu4xtYVjdnY2EIlE/joWi333mWeeGTGi/S4tLUHXdUNbOCiluHnz5kIqlfplNpv9y5mZmYrRZ7O6qSba1dX1d7FY7PmBgYEjnZ2dbV2urRwZ5XKZJxKJZCqV+jSTyfz5zMyM6XXM1jan2dnZaCgU+sNgMPhCMBgcicfjg+Fw2NPO+8I5Ry6Xo0tLS/dLpdJCqVT6pFgs/twKgTpsEdmKs2fPdnR1dX03EAj8jsfjOeh2uw94PJ6DsiwfAABN0wqMsQKlNE8pzVcqlf/IZDK/fOuttywtvDshjMiThvmg3x7Fr4nsNXxjiNiOHczPz3sZY3+k67qtuggh//faa699bvV+20RWV1el8fHxH46NjVk3+QB88cUXPwfw5IicOXNGvXTpUjkUahmKbInallpr24VqECIjuq6339vUAjUjzNyunB0QRcSWI5hSCl3XLasnwB7qEcbYup06hBDhnNvuEUpp62B6Gwghomma3R5RCCE5O3XsiaFFCFFcLlfBTh17goiqqiql9MkTYYzZkhFCCHG73U+eCOe8oOum3V+boJRSM/Z5I4gS9oyV3dV12J31AHEysmaHiN0FFRBERFGU1Ua+XqMQ0SNCtgDpuu5NJBJ6MBi09GLy+fzBs2fPdthxRAghwjn/OhqNlvr6+h7fFWYA6XR6ya43RcjQopQWKKWWhwfn3NY6BIibtfKEEMtENE3bG8J+5syZIqXU8hYiTdNsbz8S5Xzgdh7GrooDCPSiWNWANU2Drut5u+0LI2JVYGvrjy3rEBDbI5YEtmbmpuy2L4yI1XFOKQUhxJaZC+wBIowxrVKp7P+hRQip2rUOgT3QI5RSRZblPUXEkq6kqiohhOwdIpqmZa2o8oQQGo1GbRMRtpOfEOK7deuW6Q2bmUwmkM1mnwZgOj3CVggjIknSl/F4vOH5jlYol8trJ06csEUCEDi0FEVZYYyZjqyKMHMBscKeU1XV9MwlQmEEBBKRZblAKTU9c4mw1wGBRFwulyXjStd1IUchhBEJBoN5RVFMP9SeG1pTU1PEinElwswFBIenrdgke27WAswTqQVBbfl86xBKxOwwEREEreOJ9gilFIwx27YIIJgIY8wUERFB0DpE94ipoSUiCFrHE+0RSqmqaZrhHFqtIPRArqIoBxYWFgyX39jY4Jqm9QH40m7bQom43e57Q0NDhrNxLCwsFB48eHBZRNtCh5au6ykzkStCCNl5xNYqRK8jKTPmLmOM2A2C1iGUiKIoq2Z6RJR6AggmQilNEUIMd8meJeJyuQqEEMNDRZRRBQgmIklSnhBieC3Zs0TMWomibBFAMJHp6ekSY8ywtIuyDgHx+365mcjVnu0RwNxMtGdnLcDccNnTPWLUuKod77MdBK1DeDqaSqUiG0mSV0vQYn2T1w44scnf0HCphaUzohoV3iMulysTjUbblstms+Cc3xDWrqiK6jC6v5ExpquqajssXYcTwm7IkU0IqWqaZjtSVYcT0++GEZtExF7frXCCSNqITUIIUb1e794lwhgztL+REEI7OzuFmLmAA0QIIauU0rYhOF3XydTUlLWsMA3gRI/kjYTgROpZgDMLYp5S2tZK3BdEVAPJVURah4ADRCKRSMHI/kaRRhXgAJGpqSlikIjQfHCOnAw1osqL7hFHskoWi8WOds7scrlsKRN6MzhCxO/3rw0NDY22KrO8vGw5c1QjOJXnU2nlka8lAxC2qgMOyUi7TWiUUnDOhQR46nCKSEtBruWsE2aLAA4RaWdc1XpESBC0DqeItO2RcrksJAhah1NDq9TqFByllIgKgtbh1IKYbmWTEEKqIrbIboVTQ2u9lZVICLF9EnQnHCFCCFlpQ4RUq9W9v44QQjK0BRPGGBWVaqcOp9KJtDSuRNsigHPC3tLcFa35Ag4R8Xq9BVVVm9obom0RwCGlMRQKsUwm422myhcKhQMXL170t/pSmFk4lpbq0qVL15977rlvNbr2+eeff/LSSy+9KLI9x3IHtbISRXtQAAeJtAqKigy51eFkjzR92H0z/QJte2R/TL9A87VC0zRwzoUFQetwskcaDh8ReYIaYdeHFmNMyEnQnXCSSEOlkFIKVVWFWoeAs7NWw1NwlFKuKMr+6RHO+XoTIkJOgu6EY0QIIQ1zpRBCFNHWIeAgkWq1utYoBEcIUe3mCWoEJ9eRHCHkMYGnlNKVlRWhZi7gnO8Xsiy7l5aWeKGw/eWnUqlAT09PH2yeBN0Jx4hwzu+Hw+H86Ojotk+6VCqVtcnJSaEkAGdTgOZJg68UOWHmAg4SmZmZoY1OwTlhiwAOJ2Vt9PadsEWAJ0DECVsEcJhII3P3G9Mj+1JGGqny+27WAh4fRpxzcM5Nf3DCCHZ1aNWsQyEnQXfCUSI7Q3CMMUiSJNzMBZzvkdJWT2btSKvQIGgdThPZtr+RMeaImQs4qDQCAKW0lM/nN7/HWygUqJkzWGbgNJFcsVjc/F5PsVikmqY58iFSR4noun47FArRWCzmAYByuVz2+XzXnWjL6XWksDUERwghkiQJtw4B53WtbSE4xhgRGdzZCqdnrW2n4JzSswCHibz55ptlQsjm/OuU5gs4/7ULvlWVd8oWAXbhsx1b9S0RyVebYVeJ7FsZAbYT2c8yss242u9Etk6/v5aRdtg1IrVYia0PQbSCo0ojAKiq2plIJEApRaVSsfbFUwNwnAjnPNnd3Y1qtQpZlh3RfIFdGFoul+uhy+WCy+UCpVS4F36zHacqrqMegnMqCFqH40RUVV1ljPFa6kPhOx7qcJxI7RRclRAiJB1uM+yGsOcppRVVVVm1Wt2/RHRdz6uqqjLGtI2NDVtfD2sFx4l4PJ5CLWuT9u677wrLKLATjsvIzMwMZYwRJ9UTYBd6BHhkUOm67ohjro5dIaLrusI5F3bAuBF2s0cckw9gl4homqZomubod293bWg53CG71yPfJCKOeOHr2BUijDEqSZL1L3YZwG7JSFGSJCFpDJtht4ikvylE1lwul9AzVTuxK0QIISuSJDmqa/0/gq0PU/5dNbkAAAAASUVORK5CYII=)
  4590. }
  4591. .photonui-wnpremotecameracontroller:hover {
  4592. cursor: pointer
  4593. }
  4594. .photonui-wnpremotecameracontroller .wnp-rcc-icon-container {
  4595. width: 16px;
  4596. height: 16px;
  4597. top: 17px;
  4598. background: 0 0;
  4599. position: relative;
  4600. left: 17px
  4601. }
  4602. .photonui-wnpremotecameracontroller .wnp-rcc-icon-container.visible {
  4603. background-size: 100%;
  4604. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAADxUlEQVRYhe2YQW8aVxDH/28xi8NiA64rbFexqUyrYlWBWonqpIdsLzlUiop66i2WMLvHkm/AN6iPBWzJ+QbprSc3yamHLgYf4lY1EuA4sYuLF2MgsOy+HsAbaOPsboirtspIHObxn9nf6r03M1rgX2ZkmGBBEO4AiFBKPXpCQrKqqq6ur68X/zEgQRDcDNu8z03t82Nz+YH/lIYLJ/mP5Jb8TjyVSt2zmtv2OkCLi4vfzXy2GfF88AvsXH3g5/AcY/z930ZrxflI6ONPs5lM5lcruRmrMLFY7JuJhe3lS+8evlLnDebAMMyq1fyWgRi2nZgI5gx143N5sO6KPxaL3bwwIFEUQw73scdY2bVLkwcghPAXBqRpmmkYAGBYxYq8G2NJzDCyFb3WtlujgUWgZDKZa1e9BdXkg+rPZkEpfXBhQACgKY5ENb9gqDspzqPTcBXS6fRDK/kt1yFJknILs1/4QUiYdVfA2LS/aZplHyrbV2W1zX6dyWQsVWzLQKIohiilo8+Ppn5qHL7HE5sKTWHRabjQabhQ3Q2ivLWUVRV2mRDiD4fD8tbWVtVsfkutQxCEb1l3Jc7Y22iWfTKAAgA/IUS/fZTSLACZEMKPTh5AbXCy0hgz3UZMAwmCcMc5XdqYvv4AAKC27aiVAqg/vTygY+xtcDN7GO/rccUfvoJS53gz52nELBCABDezpzs2VoEnsANPYMcwcGwuj8rjKwkAnxtpTd2ylZWVL0ecp/7+t/795xvn6luyF/JuUPfd849hYxVeFMXQGwEihCSmln7U/frTy6iVAufqNYXFH9vXcFavbKwCbroETdP4oYGi0eicjVXCDs+xvnZSnDcKA4AB6N52Lw8NxDBMZHTyQPfVth2NZ7PmgPrAuZk92FglbLRtZrYs0j/79NpB1iiIUpptVyeg1LkXUN1tiw8FRAjhuemS7ld3gyCEmBm8ZErpRrXvcPfGXf9QQGdvCnRbQkv2yoSQ7IjzVNcodQ4t2av7I85TEEL8ADZqpYB+uHs1qzAsUOJo+xr2H91CWbohE0LimqZ5+oGOd0J4snn7/lHuKgDAztUBwJ9Opx9qCrv6ZPM29h/dQq0UMBxrDYHW1ta+V+oc3yz7+E5znH9ZC+jdppeeq1QqdfcsnnYc4WQy+cr511SlNjtCnDchWhlBLM9DF21vgYzsLZCR/T+AGIaROw0XgG6zpZTKAArNsu+va5bttb5+SJJ0+MmV655m2bdUK3woqy1nPJVK3QsFbw6sSZJk/BHgTZooiqFoNDpntPaftj8BRtKXENACsR4AAAAASUVORK5CYII=)
  4605. }
  4606. .photonui-slider.photonui-wnpverticalslider {
  4607. flex-direction: column;
  4608. width: 30px;
  4609. height: 50px;
  4610. position: relative
  4611. }
  4612. .photonui-slider.photonui-wnpverticalslider .photonui-slider-slider {
  4613. width: 8px;
  4614. height: 100%;
  4615. min-width: 1px;
  4616. min-height: 10px
  4617. }
  4618. .photonui-slider.photonui-wnpverticalslider .photonui-slider-slider .photonui-slider-grip {
  4619. width: 29px;
  4620. height: 15px;
  4621. background-image: none;
  4622. border-radius: 4px
  4623. }
  4624. .photonui-slider.photonui-wnpverticalslider .photonui-slider-slider:before {
  4625. margin: 0 0 0 8px;
  4626. width: 100%;
  4627. height: 100%
  4628. }
  4629. .photonui-slider.photonui-wnpverticalslider .photonui-numericfield {
  4630. min-width: 30px;
  4631. margin: auto
  4632. }
  4633. .photonui-wnpstartscreentile {
  4634. width: 150px;
  4635. position: relative;
  4636. box-shadow: none;
  4637. border: 1px solid #ccc;
  4638. transition: all .2s;
  4639. -webkit-transition: all .2s
  4640. }
  4641. .photonui-wnpstartscreentile:hover {
  4642. cursor: pointer;
  4643. box-shadow: 0 0 5px #ccc;
  4644. border: 1px solid #89b808
  4645. }
  4646. .photonui-wnpstartscreentile .title {
  4647. display: block;
  4648. text-align: center;
  4649. font-weight: 600;
  4650. font-size: small;
  4651. color: #666;
  4652. padding: 14px;
  4653. border-top: 1px solid #ccc;
  4654. background: #fff;
  4655. min-height: 23px;
  4656. vertical-align: middle
  4657. }
  4658. .photonui-wnpstartscreentile div {
  4659. background: #fff
  4660. }
  4661. .photonui-wnpstartscreentile img {
  4662. max-width: 100%;
  4663. max-height: 100%;
  4664. vertical-align: middle
  4665. }
  4666. .wnp-standalone #sa_loadList .sa_screenshot img {
  4667. width: 100px!important;
  4668. height: 60px!important;
  4669. border: 1px solid #ddd
  4670. }
  4671. .wnp-standalone #sa_loadList .sa_label {
  4672. display: inline-block!important;
  4673. width: 300px!important;
  4674. overflow: hidden;
  4675. text-align: center;
  4676. max-height: 30px
  4677. }
  4678. .wnp-standalone #sa_loadList .sa_load-item {
  4679. -webkit-transition: all .3s;
  4680. transition: all .3s;
  4681. padding: 10px 5px;
  4682. cursor: pointer
  4683. }
  4684. .wnp-standalone #sa_loadList .sa_load-item:hover {
  4685. -webkit-transition: all .3s;
  4686. transition: all .3s;
  4687. background-color: #ccc
  4688. }
  4689. .wnp-standalone #sa_loadList .sa_close {
  4690. width: 32px;
  4691. height: 32px;
  4692. border: 0;
  4693. background: 0 0;
  4694. -webkit-transition: all .3s;
  4695. transition: all .3s
  4696. }
  4697. .wnp-standalone #sa_loadList .sa_close:hover {
  4698. transition: all .3s;
  4699. -webkit-transition: rotateZ(90deg);
  4700. transform: rotateZ(90deg)
  4701. }
  4702. #debugArea {
  4703. background: rgba(0,0,0,.7);
  4704. color: #fff;
  4705. position: fixed;
  4706. bottom: 0;
  4707. height: auto;
  4708. z-index: 999999;
  4709. width: 100%;
  4710. font-style: normal;
  4711. box-shadow: 0 -1px 10px rgba(0,0,0,.5);
  4712. max-height: 150px;
  4713. overflow: auto
  4714. }
  4715. #debugArea div {
  4716. padding: 5px;
  4717. border-bottom: rgba(255,255,255,.5) dashed 1px
  4718. }
  4719. #debugArea div:last-child {
  4720. border-bottom: none
  4721. }
  4722. .scrollable {
  4723. overflow-x: hidden;
  4724. overflow-y: auto
  4725. }
  4726. .wnp-iframeWindow.noTopbar .photonui-window-title {
  4727. display: none
  4728. }
  4729. #wnp-savedialog-saveoverlay {
  4730. width: 100%;
  4731. height: 100%;
  4732. z-index: 1001;
  4733. position: absolute;
  4734. background-color: rgba(10,10,10,.5);
  4735. top: 0;
  4736. left: 0
  4737. }
  4738. #wnp-savedialog-saveoverlay img {
  4739. position: absolute;
  4740. top: 45%;
  4741. left: 45%
  4742. }
  4743. #wnp-material-parameters-icon {
  4744. z-index: 999999
  4745. }
  4746. .lockComponent-icon-mobile {
  4747. position: absolute;
  4748. top: 45px;
  4749. left: 25px;
  4750. display: block;
  4751. width: 42px
  4752. }
  4753. .lockComponent-icon-mobile:hover {
  4754. transform: scale(1.1);
  4755. transition: all .2s;
  4756. -webkit-transition: all .2s
  4757. }
  4758. #wnp-remotecontroller {
  4759. background-color: transparent!important
  4760. }
  4761. #wnp-remotecontroller .photonui-slider-grip {
  4762. width: 25px;
  4763. height: 12px;
  4764. margin-left: 4px;
  4765. border: 1px solid #6e910f;
  4766. background: #89b808
  4767. }
  4768. #wnp-remotecontroller-slider .photonui-slider-slider {
  4769. width: 20px
  4770. }
  4771. #wnp-remotecontroller-slider .photonui-slider-slider:before {
  4772. background: url(../images/remote-controller/bg.png) no-repeat;
  4773. background-position: 58% 92%!important
  4774. }
  4775. #wnp-edition-controller {
  4776. width: 57px;
  4777. min-height: 150px;
  4778. border-radius: 46px 0 0 46px;
  4779. border: 1px solid;
  4780. opacity: .5;
  4781. position: absolute;
  4782. transition: all .2s;
  4783. -webkit-transition: all .2s;
  4784. margin-left: 0;
  4785. top: 25%;
  4786. z-index: -1
  4787. }
  4788. #wnp-edition-controller .photonui-button:hover {
  4789. background: 0 0;
  4790. border: 0!important;
  4791. box-shadow: none
  4792. }
  4793. #wnp-edition-controller .photonui-button:hover span {
  4794. border: 0!important;
  4795. border-radius: 0!important
  4796. }
  4797. #wnp-edition-controller:hover {
  4798. opacity: 1
  4799. }
  4800. #wnp-edition-controller .icon {
  4801. font-size: 25px
  4802. }
  4803. #wnp-edition-controller .photonui-slider-slider {
  4804. margin: 0 0 0 6px
  4805. }
  4806. #wnp-edition-controller .photonui-slider-slider:before {
  4807. width: 14px;
  4808. border-radius: 5px;
  4809. background-color: #eee
  4810. }
  4811. #wnp-edition-controller .photonui-slider-grip {
  4812. margin-left: 1px
  4813. }
  4814. #wnp-edition-controller.single {
  4815. border-color: #6e910f;
  4816. background-color: #89b808;
  4817. height: 350px
  4818. }
  4819. #wnp-edition-controller.single .wnp-edc-group {
  4820. display: none
  4821. }
  4822. #wnp-edition-controller.show {
  4823. margin-left: -59px
  4824. }
  4825. #wnp-edition-controller.group {
  4826. border-color: #af6b00;
  4827. background-color: #d08c00;
  4828. height: 400px
  4829. }
  4830. #wnp-edition-controller.group .wnp-edc-group {
  4831. display: block
  4832. }
  4833. #wnp-backgroundWindow-canvas canvas {
  4834. background-color: #fff;
  4835. border: 1px solid #bbb;
  4836. border-radius: 2px;
  4837. margin: 0 0 10px 10px
  4838. }
  4839. .warning {
  4840. background: #f6f5d5;
  4841. color: #e88d5c;
  4842. border: 1px solid #e88d5c;
  4843. border-radius: 5px;
  4844. padding: 10px
  4845. }
  4846. #colorWindow .photonui-container.photonui-window-content {
  4847. overflow-y: auto;
  4848. text-align: center;
  4849. border-bottom: #ccc solid 1px
  4850. }
  4851. #colorWindow .luxens {
  4852. display: inline-block;
  4853. cursor: pointer;
  4854. margin-right: 3px;
  4855. margin-bottom: 3px;
  4856. width: 22px;
  4857. height: 22px;
  4858. border: 2px solid #fff;
  4859. box-shadow: 0 0 1px rgba(0,0,0,.3);
  4860. transition: all .1s;
  4861. -webkit-transition: all .1s
  4862. }
  4863. #colorWindow .luxens:hover {
  4864. transform: scale(1.4);
  4865. -webkit-transform: scale(1.4)
  4866. }
  4867. #colorWindow .luxens .selected {
  4868. transform: scale(1.4);
  4869. -webkit-transform: scale(1.4);
  4870. outline: #89b808 solid 2px;
  4871. box-shadow: none
  4872. }
  4873. .wnp-floor-controller {
  4874. /* max-width:80% */
  4875. }
  4876. .wnp-infocomponent2D-container {
  4877. cursor: pointer;
  4878. background: #89b808;
  4879. border-top: none;
  4880. padding: 5px 10px 5px 30px;
  4881. overflow: hidden;
  4882. color: #fff;
  4883. font-size: 10pt;
  4884. line-height: 20px;
  4885. font-family: Arial,sans-serif;
  4886. border-radius: 0 0 0 46px;
  4887. box-shadow: 0 0 8px rgba(0,0,0,.4);
  4888. position: absolute;
  4889. top: 47px;
  4890. right: 260px
  4891. }
  4892. .wnp-infocomponent2D-container .photonui-label {
  4893. text-shadow: none;
  4894. color: #fff;
  4895. cursor: pointer
  4896. }
  4897. #wnp-infos2D-window {
  4898. background-color: #dedede
  4899. }
  4900. #wnp-infos2D-window .wnp-infos2D-header,#wnp-infos2D-window table {
  4901. border: 1px solid #999
  4902. }
  4903. #wnp-infos2D-window .wnp-infos2D-header {
  4904. padding: 15px;
  4905. background: 1px #fff
  4906. }
  4907. #wnp-infos2D-window .bold {
  4908. font-weight: 700
  4909. }
  4910. #wnp-infos2D-window table td {
  4911. background-color: #fff;
  4912. padding: 10px!important
  4913. }
  4914. #wnp-infos2D-window table tr:first-child {
  4915. border-bottom: 1px solid #ccc;
  4916. font-weight: 700
  4917. }
  4918. #wnp-infos2D-window .photonui-gridlayout-lastrow {
  4919. background-color: #dedede;
  4920. border-top: 1px solid #ccc
  4921. }
  4922. #printComponentDialog .photonui-tablayout-content {
  4923. background-color: #797979
  4924. }
  4925. #printComponentDialog canvas,body,html {
  4926. background-color: #fff
  4927. }
  4928. body,html {
  4929. overflow: hidden;
  4930. margin: 0;
  4931. padding: 0;
  4932. border: 0;
  4933. width: 100%;
  4934. height: 100%;
  4935. -webkit-user-select: none;
  4936. -khtml-user-select: none;
  4937. -moz-user-select: -moz-none;
  4938. -ms-user-select: none;
  4939. user-select: none;
  4940. -ms-touch-action: none;
  4941. font-family: arial;
  4942. font-size: 14px
  4943. }
  4944. body:-moz-full-screen,body:-webkit-full-screen {
  4945. position: fixed;
  4946. top: 0;
  4947. right: 0;
  4948. bottom: 0;
  4949. left: 0;
  4950. margin: 0;
  4951. box-sizing: border-box;
  4952. width: 100%;
  4953. height: 100%;
  4954. object-fit: contain;
  4955. background-color: #fff;
  4956. text-align: center
  4957. }
  4958. #scripts {
  4959. display: none
  4960. }
  4961. .clear {
  4962. clear: both
  4963. }
  4964. .left {
  4965. float: left
  4966. }
  4967. .right {
  4968. float: right
  4969. }
  4970. .drawableSurface canvas {
  4971. position: absolute;
  4972. top: 0;
  4973. left: 0;
  4974. width: 100%;
  4975. height: 100%
  4976. }
  4977. .drawableSurface.with-menu canvas {
  4978. -webkit-width: calc(100% - 260px);
  4979. width: calc(100% - 260px);
  4980. height: 100%
  4981. }
  4982. canvas.brush {
  4983. cursor: url(../images/cursor_brush.cur),auto!important
  4984. }
  4985. canvas.lockedbrush {
  4986. cursor: url(../images/cursor_locked_brush.cur),auto!important
  4987. }
  4988. canvas.eraser {
  4989. cursor: url(../images/cursor_eraser.cur),auto!important
  4990. }
  4991. #main-ui {
  4992. position: absolute;
  4993. right: 0;
  4994. width: 260px;
  4995. height: 100%;
  4996. top: 0;
  4997. z-index: 1000
  4998. }
  4999. #main-ui ul {
  5000. margin: 0;
  5001. padding: 0
  5002. }
  5003. #screenshot-flash {
  5004. position: absolute;
  5005. top: 0;
  5006. bottom: 0;
  5007. left: 0;
  5008. right: 0;
  5009. height: 100%;
  5010. width: 100%;
  5011. z-index: 99999;
  5012. background: #fff;
  5013. opacity: 0;
  5014. pointer-events: none;
  5015. transition: opacity ease-in 200ms
  5016. }
  5017. @keyframes loading {
  5018. 0%,20% {
  5019. width: 0
  5020. }
  5021. 70% {
  5022. width: 70%
  5023. }
  5024. 80%,90% {
  5025. width: 80%
  5026. }
  5027. 100% {
  5028. width: 100%
  5029. }
  5030. }
  5031. @-webkit-keyframes loading {
  5032. 0%,20% {
  5033. width: 0
  5034. }
  5035. 30% {
  5036. width: 10%
  5037. }
  5038. 40%,45% {
  5039. width: 50%
  5040. }
  5041. 70% {
  5042. width: 70%
  5043. }
  5044. 80%,90% {
  5045. width: 80%
  5046. }
  5047. 100% {
  5048. width: 100%
  5049. }
  5050. }
  5051. #splashscreen {
  5052. position: absolute;
  5053. top: 0;
  5054. bottom: 0;
  5055. left: 0;
  5056. right: 0;
  5057. background: rgba(255,255,255,.9);
  5058. z-index: 42000
  5059. }
  5060. #splashscreen .splash-text {
  5061. position: absolute;
  5062. width: 400px;
  5063. top: 40%;
  5064. left: 50%;
  5065. margin-left: -234px;
  5066. border: 4px solid #fff;
  5067. padding: 30px;
  5068. text-align: center;
  5069. font-size: 22pt;
  5070. box-shadow: 0 0 10px rgba(0,0,0,.3);
  5071. border-radius: 5px;
  5072. color: #333;
  5073. pointer-events: none;
  5074. background: #f1f1f1;
  5075. background: -moz-linear-gradient(top,#f1f1f1 0,#e5e5e5 100%);
  5076. background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f1f1f1),color-stop(100%,#e5e5e5));
  5077. background: -webkit-linear-gradient(top,#f1f1f1 0,#e5e5e5 100%);
  5078. background: -o-linear-gradient(top,#f1f1f1 0,#e5e5e5 100%);
  5079. background: -ms-linear-gradient(top,#f1f1f1 0,#e5e5e5 100%);
  5080. background: linear-gradient(to bottom,#f1f1f1 0,#e5e5e5 100%);
  5081. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@wanaplan-header-textColor', endColorstr='#e5e5e5', GradientType=0)
  5082. }
  5083. #splashscreen .splash-bar {
  5084. height: 12px;
  5085. border: 1px solid #6e910f;
  5086. margin-top: 20px;
  5087. border-radius: 3px;
  5088. padding: 1px;
  5089. background: #f1f1f1
  5090. }
  5091. #splashscreen .splash-bar div {
  5092. background: #89b808;
  5093. height: 100%;
  5094. border-radius: 2px;
  5095. width: 100%;
  5096. animation: loading 5s linear;
  5097. -webkit-animation: loading 5s linear
  5098. }
  5099. .photonui-switch .green input:disabled+span:after,.photonui-switch .green input:disabled+span:before {
  5100. background: #ddd;
  5101. border-color: #aaa;
  5102. cursor: default;
  5103. box-shadow: none
  5104. }
  5105. #splashscreen .splash-error-message {
  5106. position: absolute;
  5107. left: 38%;
  5108. top: 90%;
  5109. font-size: 16px
  5110. }
  5111. .photonui-switch .green input:disabled+span:focus {
  5112. cursor: default
  5113. }
  5114. .photonui-button-appearance-flat.invisible:focus:hover,.photonui-button-appearance-flat.invisible:focus:hover:focus,.photonui-button-appearance-flat.invisible:hover,.photonui-button-appearance-flat.invisible:hover:focus {
  5115. border-color: transparent;
  5116. background: 0 0;
  5117. box-shadow: none;
  5118. transition: border-color 0,box-shadow .1s;
  5119. outline: #ccc dashed 1px
  5120. }
  5121. .photonui-button-appearance-flat.invisible:focus,.photonui-button-appearance-flat.invisible:focus:not(:hover) {
  5122. border-color: transparent;
  5123. background: 0 0;
  5124. box-shadow: none;
  5125. transition: border-color 0,box-shadow .1s;
  5126. outline: 0
  5127. }
  5128. .photonui-button-appearance-flat.invisible span span i:before {
  5129. color: #666
  5130. }
  5131. #info2D {
  5132. height: 40px;
  5133. padding: 0 40px;
  5134. line-height: 45px;
  5135. position: absolute;
  5136. bottom: 0;
  5137. left: 50%;
  5138. text-align: center;
  5139. transition: height .1s;
  5140. color: #fff
  5141. }
  5142. #info2D.manualOpposite {
  5143. background: #333;
  5144. color: #eee
  5145. }
  5146. #info2D.nonParallel {
  5147. background: #FEF86C;
  5148. color: #F4661B
  5149. }
  5150. #info2D.hidden {
  5151. height: 0
  5152. }
  5153. #wnp-startscreen {
  5154. background: #eee
  5155. }
  5156. #wnp-startscreen .photonui-window-title {
  5157. font-size: 100%
  5158. }
  5159. #wnp-startscreen .title1 {
  5160. text-align: center
  5161. }
  5162. .photonui-window-modalbox {
  5163. background: rgba(0,0,0,.7)
  5164. }
  5165. .wnp-shoppinglist-subproduct {
  5166. margin-left: 5px;
  5167. padding-left: 5px;
  5168. border-left: #CCC solid 4px;
  5169. height: 100%;
  5170. font-style: italic
  5171. }
  5172. i.tooltip {
  5173. outline: 0;
  5174. position: absolute;
  5175. z-index: 0;
  5176. margin-top: -80px;
  5177. margin-left: -30px
  5178. }
  5179. .wnp-shoppinglist-subproduct i.tooltip {
  5180. margin-top: -40px;
  5181. margin-left: -35px
  5182. }
  5183. i.tooltip:hover {
  5184. text-decoration: none;
  5185. z-index: 10
  5186. }
  5187. i.tooltip span {
  5188. display: none;
  5189. padding: 14px 20px;
  5190. margin-top: 40px;
  5191. margin-left: -160px;
  5192. width: 400px;
  5193. line-height: 16px;
  5194. background: #fff;
  5195. box-shadow: 5px 5px 8px #CCC
  5196. }
  5197. i.tooltip:hover span {
  5198. display: inline-block;
  5199. position: absolute;
  5200. color: #111;
  5201. border: 1px solid #A5A5A5;
  5202. background: #fff
  5203. }