wanaplan.min.css 148 KB

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