static.css 333 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962
  1. /* Button Block Base Style
  2. =================================================*/
  3. .sqs-block-button-container {
  4. text-align: center;
  5. }
  6. .sqs-block-button.sqs-stretched .sqs-block-content,
  7. .sqs-block-button.sqs-stretched .sqs-block-button-element {
  8. height: 100%;
  9. display: flex;
  10. }
  11. .sqs-block-button.sqs-stretched .sqs-block-button-container {
  12. flex: 1;
  13. }
  14. .sqs-block-button.sqs-stretched .sqs-block-button-element {
  15. align-items: center;
  16. box-sizing: border-box;
  17. justify-content: center;
  18. }
  19. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container {
  20. display: flex;
  21. }
  22. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container--left {
  23. justify-content: flex-start;
  24. }
  25. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container--center {
  26. justify-content: center;
  27. }
  28. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container--right {
  29. justify-content: flex-end;
  30. }
  31. .sqs-block-button-element,
  32. .image-button a,
  33. .list-item-content__button {
  34. display: inline-block;
  35. -webkit-font-smoothing: antialiased;
  36. line-height: normal;
  37. padding: var(--primaryButtonPadding) calc(var(--primaryButtonPadding) * 1.67);
  38. }
  39. @media (hover: hover) {
  40. .sqs-block-button-element:hover,
  41. .image-button a:hover,
  42. .list-item-content__button:hover {
  43. opacity: 1;
  44. }
  45. }
  46. .sqs-button-element--primary[disabled],
  47. .sqs-button-element--secondary[disabled],
  48. .sqs-button-element--tertiary[disabled] {
  49. pointer-events: none !important;
  50. opacity: 0.8 !important;
  51. }
  52. /* Universal Button Variant Styles
  53. =================================================*/
  54. #siteWrapper.site-wrapper .sqs-button-element--primary,
  55. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--primary,
  56. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary {
  57. padding: var(--primary-button-padding-y) var(--primary-button-padding-x);
  58. }
  59. #siteWrapper.site-wrapper .sqs-button-element--primary,
  60. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--primary,
  61. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary,
  62. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  63. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  64. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary {
  65. border-width: var(--primary-button-stroke);
  66. }
  67. #siteWrapper.site-wrapper .sqs-button-element--secondary,
  68. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--secondary,
  69. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--secondary {
  70. padding: var(--secondary-button-padding-y) var(--secondary-button-padding-x);
  71. }
  72. #siteWrapper.site-wrapper .sqs-button-element--secondary,
  73. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--secondary,
  74. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--secondary,
  75. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  76. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  77. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  78. border-width: var(--secondary-button-stroke);
  79. }
  80. #siteWrapper.site-wrapper .sqs-button-element--tertiary,
  81. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--tertiary,
  82. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--tertiary {
  83. padding: var(--tertiary-button-padding-y) var(--tertiary-button-padding-x);
  84. }
  85. #siteWrapper.site-wrapper .sqs-button-element--tertiary,
  86. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--tertiary,
  87. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--tertiary,
  88. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  89. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  90. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  91. border-width: var(--tertiary-button-stroke);
  92. }
  93. #siteWrapper.site-wrapper .sqs-button-element--primary,
  94. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--primary,
  95. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary,
  96. #siteWrapper.site-wrapper .sqs-button-element--secondary,
  97. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--secondary,
  98. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--secondary,
  99. #siteWrapper.site-wrapper .sqs-button-element--tertiary,
  100. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--tertiary,
  101. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--tertiary,
  102. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  103. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  104. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  105. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  106. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  107. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  108. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  109. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  110. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  111. line-height: normal;
  112. border-style: solid;
  113. }
  114. /* Specific Button Style Overrides
  115. =================================================*/
  116. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockButton {
  117. height: auto;
  118. line-height: 0;
  119. }
  120. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockButtonWidgetContainer,
  121. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockButton-buttonContainer,
  122. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockInlineButton-container {
  123. width: auto;
  124. }
  125. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockSearchBar-container {
  126. align-items: center;
  127. }
  128. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockInlineButton-container {
  129. overflow: hidden;
  130. display: flex;
  131. align-items: center;
  132. justify-content: center;
  133. height: 49px;
  134. min-width: 180px;
  135. padding: 0px;
  136. border-radius: 0 3px 3px 0;
  137. }
  138. #siteWrapper.site-wrapper div#Tock_widget_container.Tock_widget_container-columnLayout > div.TockWidgetWrapper .TockInlineButton-container {
  139. border-radius: 3px;
  140. }
  141. #siteWrapper.site-wrapper .product-purchase-controls-wrapper .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--primary {
  142. border-width: clamp(0px, var(--primary-button-stroke, 1px), 2px);
  143. }
  144. #siteWrapper.site-wrapper .product-purchase-controls-wrapper .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--secondary {
  145. border-width: clamp(0px, var(--secondary-button-stroke, 1px), 2px);
  146. }
  147. #siteWrapper.site-wrapper .product-purchase-controls-wrapper .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--tertiary {
  148. border-width: clamp(0px, var(--tertiary-button-stroke, 1px), 2px);
  149. }
  150. /* Button Block Style Tweak: Solid
  151. =================================================*/
  152. body.primary-button-style-solid .sqs-button-element--primary,
  153. body.primary-button-style-solid .sqs-editable-button.sqs-button-element--primary {
  154. transition: 0.1s opacity linear;
  155. -webkit-backface-visibility: hidden;
  156. }
  157. @media (hover: hover) {
  158. body.primary-button-style-solid .sqs-button-element--primary:hover,
  159. body.primary-button-style-solid .sqs-editable-button.sqs-button-element--primary:hover {
  160. opacity: 0.8;
  161. }
  162. }
  163. /* Button Block Style Tweak: Outline
  164. =================================================*/
  165. .primary-button-style-outline .sqs-button-element--primary,
  166. .primary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--primary,
  167. .primary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--primary,
  168. .primary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--primary,
  169. .primary-button-style-outline .header-menu-cta .btn.sqs-button-element--primary,
  170. .primary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  171. .primary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--primary {
  172. transition: 0.1s background-color linear, 0.1s color linear;
  173. }
  174. .primary-button-style-outline .sqs-button-element--primary:not(:hover),
  175. .primary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--primary:not(:hover),
  176. .primary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--primary:not(:hover),
  177. .primary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--primary:not(:hover),
  178. .primary-button-style-outline .header-menu-cta .btn.sqs-button-element--primary:not(:hover),
  179. .primary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:not(:hover),
  180. .primary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--primary:not(:hover) {
  181. background: transparent;
  182. }
  183. .primary-button-style-outline .newsletter-form-button.sqs-system-button.sqs-button-element--primary:not(:hover) {
  184. background: transparent !important;
  185. }
  186. /* Primary Button Shape Tweak: Square
  187. =================================================*/
  188. .primary-button-shape-square .sqs-button-element--primary,
  189. .primary-button-shape-square #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  190. border-radius: 0;
  191. }
  192. /* Primary Button Shape Tweak: Rounded
  193. =================================================*/
  194. .primary-button-shape-rounded .sqs-button-element--primary,
  195. .primary-button-shape-rounded #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  196. border-radius: 0.4rem;
  197. }
  198. /* Primary Button Shape Tweak: Pill
  199. =================================================*/
  200. .primary-button-shape-pill .sqs-button-element--primary,
  201. .primary-button-shape-pill #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  202. border-radius: 300px;
  203. }
  204. /* Primary Button Shape Tweak: Oval
  205. =================================================*/
  206. .primary-button-shape-oval .sqs-button-element--primary,
  207. .primary-button-shape-oval #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  208. border-radius: 100%;
  209. }
  210. /* Primary Button Shape Tweak: Petal
  211. =================================================*/
  212. .primary-button-shape-petal .sqs-button-element--primary,
  213. .primary-button-shape-petal #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  214. border-radius: 16px 0px;
  215. }
  216. /* Button Block Shape Tweak: Underline
  217. =================================================*/
  218. body.primary-button-shape-underline #siteWrapper .sqs-button-element--primary:not(.ma-pricing-option-button),
  219. body.primary-button-shape-underline .sqs-block-form-lightbox .sqs-button-element--primary:not(.ma-pricing-option-button),
  220. body.primary-button-shape-underline #siteWrapper .comment-btn-wrapper .comment-btn.sqs-button-element--primary,
  221. body.primary-button-shape-underline .sqs-block-form-lightbox .comment-btn-wrapper .comment-btn.sqs-button-element--primary,
  222. body.primary-button-shape-underline #siteWrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  223. body.primary-button-shape-underline .sqs-block-form-lightbox .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary {
  224. border-top: none;
  225. border-right: none;
  226. border-left: none;
  227. border-bottom-style: solid;
  228. border-radius: 0;
  229. border-bottom-width: var(--primary-button-stroke);
  230. }
  231. /* Primary Button Shape Tweak: Custom
  232. =================================================*/
  233. .primary-button-shape-custom .sqs-button-element--primary,
  234. .primary-button-shape-custom .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary {
  235. border-top-left-radius: var(--primary-button-rounded-border-top-left-radius);
  236. border-top-right-radius: var(--primary-button-rounded-border-top-right-radius);
  237. border-bottom-left-radius: var(--primary-button-rounded-border-bottom-left-radius);
  238. border-bottom-right-radius: var(--primary-button-rounded-border-bottom-right-radius);
  239. }
  240. .secondary-button-style-solid .sqs-button-element--secondary,
  241. .secondary-button-style-solid .sqs-editable-button.sqs-button-element--secondary,
  242. .secondary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  243. transition: 0.1s opacity linear;
  244. -webkit-backface-visibility: hidden;
  245. }
  246. .secondary-button-style-solid .sqs-button-element--secondary:hover,
  247. .secondary-button-style-solid .sqs-editable-button.sqs-button-element--secondary:hover,
  248. .secondary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:hover {
  249. opacity: 0.8;
  250. }
  251. .secondary-button-style-outline .sqs-button-element--secondary,
  252. .secondary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary,
  253. .secondary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary,
  254. .secondary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,
  255. .secondary-button-style-outline .header-menu-cta .btn.sqs-button-element--secondary,
  256. .secondary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  257. .secondary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--secondary {
  258. transition: 0.1s background-color linear, 0.1s color linear;
  259. }
  260. .secondary-button-style-outline .sqs-button-element--secondary:not(:hover),
  261. .secondary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary:not(:hover),
  262. .secondary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary:not(:hover),
  263. .secondary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--secondary:not(:hover),
  264. .secondary-button-style-outline .header-menu-cta .btn.sqs-button-element--secondary:not(:hover),
  265. .secondary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:not(:hover),
  266. .secondary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--secondary:not(:hover) {
  267. background: transparent;
  268. }
  269. .secondary-button-style-outline .newsletter-form-button.sqs-system-button.sqs-button-element--secondary {
  270. background: transparent !important;
  271. }
  272. /* Secondary Button Shape Tweak: Square
  273. =================================================*/
  274. .secondary-button-shape-square .sqs-button-element--secondary,
  275. .secondary-button-shape-square .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  276. border-radius: 0;
  277. }
  278. /* Secondary Button Shape Tweak: Rounded
  279. =================================================*/
  280. .secondary-button-shape-rounded .sqs-button-element--secondary,
  281. .secondary-button-shape-rounded .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  282. border-radius: 0.4rem;
  283. }
  284. /* Secondary Button Shape Tweak: Pill
  285. =================================================*/
  286. .secondary-button-shape-pill .sqs-button-element--secondary,
  287. .secondary-button-shape-pill .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  288. border-radius: 300px;
  289. }
  290. /* Secondary Button Shape Tweak: Oval
  291. =================================================*/
  292. .secondary-button-shape-oval .sqs-button-element--secondary,
  293. .secondary-button-shape-oval .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  294. border-radius: 100%;
  295. }
  296. /* Secondary Button Shape Tweak: Underline
  297. =================================================*/
  298. body.secondary-button-shape-underline #siteWrapper .sqs-button-element--secondary,
  299. body.secondary-button-shape-underline .sqs-block-form-lightbox .sqs-button-element--secondary,
  300. body.secondary-button-shape-underline #siteWrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  301. body.secondary-button-shape-underline .sqs-block-form-lightbox .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  302. border-top: none;
  303. border-right: none;
  304. border-left: none;
  305. border-bottom-style: solid;
  306. border-radius: 0;
  307. border-bottom-width: var(--secondary-button-stroke);
  308. }
  309. /* Secondary Button Shape Tweak: Petal
  310. =================================================*/
  311. .secondary-button-shape-petal .sqs-button-element--secondary,
  312. .secondary-button-shape-petal .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  313. border-radius: 16px 0px;
  314. }
  315. /* Secondary Button Shape Tweak: Custom
  316. =================================================*/
  317. .secondary-button-shape-custom .sqs-button-element--secondary,
  318. .secondary-button-shape-custom .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  319. border-top-left-radius: var(--secondary-button-rounded-border-top-left-radius);
  320. border-top-right-radius: var(--secondary-button-rounded-border-top-right-radius);
  321. border-bottom-left-radius: var(--secondary-button-rounded-border-bottom-left-radius);
  322. border-bottom-right-radius: var(--secondary-button-rounded-border-bottom-right-radius);
  323. }
  324. .tertiary-button-style-solid .sqs-button-element--tertiary,
  325. .tertiary-button-style-solid .sqs-editable-button.sqs-button-element--tertiary,
  326. .tertiary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  327. transition: 0.1s opacity linear;
  328. -webkit-backface-visibility: hidden;
  329. }
  330. .tertiary-button-style-solid .sqs-button-element--tertiary:hover,
  331. .tertiary-button-style-solid .sqs-editable-button.sqs-button-element--tertiary:hover,
  332. .tertiary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:hover {
  333. opacity: 0.8;
  334. }
  335. .tertiary-button-style-outline .sqs-button-element--tertiary,
  336. .tertiary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary,
  337. .tertiary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary,
  338. .tertiary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary,
  339. .tertiary-button-style-outline .header-menu-cta .btn.sqs-button-element--tertiary,
  340. .tertiary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  341. .tertiary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--tertiary {
  342. transition: 0.1s background-color linear, 0.1s color linear;
  343. }
  344. .tertiary-button-style-outline .sqs-button-element--tertiary:not(:hover),
  345. .tertiary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary:not(:hover),
  346. .tertiary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary:not(:hover),
  347. .tertiary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:not(:hover),
  348. .tertiary-button-style-outline .header-menu-cta .btn.sqs-button-element--tertiary:not(:hover),
  349. .tertiary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:not(:hover),
  350. .tertiary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--tertiary:not(:hover) {
  351. background: transparent;
  352. }
  353. .tertiary-button-style-outline .newsletter-form-button.sqs-system-button.sqs-button-element--tertiary {
  354. background: transparent !important;
  355. }
  356. /* Tertiary Button Shape Tweak: Square
  357. =================================================*/
  358. .tertiary-button-shape-square .sqs-button-element--tertiary,
  359. .tertiary-button-shape-square .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  360. border-radius: 0;
  361. }
  362. /* Tertiary Button Shape Tweak: Rounded
  363. =================================================*/
  364. .tertiary-button-shape-rounded .sqs-button-element--tertiary,
  365. .tertiary-button-shape-rounded .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  366. border-radius: 0.4rem;
  367. }
  368. /* Tertiary Button Shape Tweak: Pill
  369. =================================================*/
  370. .tertiary-button-shape-pill .sqs-button-element--tertiary,
  371. .tertiary-button-shape-pill .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  372. border-radius: 300px;
  373. }
  374. /* Tertiary Button Shape Tweak: Oval
  375. =================================================*/
  376. .tertiary-button-shape-oval .sqs-button-element--tertiary,
  377. .tertiary-button-shape-oval .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  378. border-radius: 100%;
  379. }
  380. /* Tertiry Button Shape Tweak: Underline
  381. =================x================================*/
  382. body.tertiary-button-shape-underline #siteWrapper .sqs-button-element--tertiary,
  383. body.tertiary-button-shape-underline .sqs-block-form-lightbox .sqs-button-element--tertiary,
  384. body.tertiary-button-shape-underline #siteWrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  385. body.tertiary-button-shape-underline .sqs-block-form-lightbox .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  386. border-top: none;
  387. border-right: none;
  388. border-left: none;
  389. border-bottom-style: solid;
  390. border-radius: 0;
  391. border-bottom-width: var(--tertiary-button-stroke);
  392. }
  393. /* Tertiary Button Shape Tweak: Petal
  394. =================================================*/
  395. .tertiary-button-shape-petal .sqs-button-element--tertiary,
  396. .tertiary-button-shape-petal .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  397. border-radius: 16px 0px;
  398. }
  399. /* Tertiary Button Shape Tweak: Custom
  400. =================================================*/
  401. .tertiary-button-shape-custom .sqs-button-element--tertiary,
  402. .tertiary-button-shape-custom .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  403. border-top-left-radius: var(--tertiary-button-rounded-border-top-left-radius);
  404. border-top-right-radius: var(--tertiary-button-rounded-border-top-right-radius);
  405. border-bottom-left-radius: var(--tertiary-button-rounded-border-bottom-left-radius);
  406. border-bottom-right-radius: var(--tertiary-button-rounded-border-bottom-right-radius);
  407. }
  408. @media (hover: hover) {
  409. .tweak-global-animations-animation-type-flex.primary-button-style-outline .image-button a:hover,
  410. .tweak-global-animations-animation-type-flex.primary-button-style-outline .sqs-add-to-cart-button:hover,
  411. .tweak-global-animations-animation-type-flex.primary-button-style-outline .sqs-editable-button:not(input):hover,
  412. .tweak-global-animations-animation-type-flex.primary-button-style-outline .sqs-block-button-element.sqs-block-button-element--primary:hover,
  413. .tweak-global-animations-animation-type-flex.primary-button-style-outline .ma-pricing-toggle-wrapper .ma-pricing-option-button:hover,
  414. .tweak-global-animations-animation-type-flex.primary-button-style-outline [data-animation-role="header-element"] .btn:hover {
  415. background-color: transparent !important;
  416. }
  417. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-simple {
  418. background: transparent;
  419. }
  420. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-simple:hover {
  421. background-color: transparent;
  422. }
  423. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-carousel {
  424. background: transparent;
  425. }
  426. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-carousel:hover {
  427. background-color: transparent;
  428. }
  429. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-banner-slideshow {
  430. background: transparent;
  431. }
  432. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-banner-slideshow:hover {
  433. background-color: transparent;
  434. }
  435. }
  436. @media (hover: hover) {
  437. .tweak-global-animations-animation-type-flex.secondary-button-style-outline .sqs-button-element--secondary:hover,
  438. .tweak-global-animations-animation-type-flex.tertiary-button-style-outline .sqs-button-element--tertiary:hover {
  439. background: transparent;
  440. }
  441. }
  442. .sqs-announcement-bar .sqs-announcement-bar-close {
  443. background: transparent;
  444. }
  445. div#Tock_widget_container > div.TockWidgetWrapper .InlineWidgetDropDown-NoRightBorder {
  446. border-right: 1px solid #e7e7e7;
  447. }
  448. /* Extended styling for Form block with support for tweaks
  449. =================================================*/
  450. body .sqs-block-form {
  451. --fallback-white-hsl: 0,0%,98%;
  452. --fallback-black-hsl: 0,0%,0%;
  453. --solid-alpha-modifier: 1;
  454. --solid-hover-alpha-modifier: 0.6;
  455. --outline-hover-alpha-modifier: 0.4;
  456. --inverted-solid-hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  457. --inverted-outline-hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  458. --solid-focus-alpha-modifier: 1;
  459. --outline-focus-alpha-modifier: 0.4;
  460. --fill-hover-transition: 0.15s background-color cubic-bezier(0.33, 1, 0.68, 1);
  461. }
  462. body.form-use-theme-colors .sqs-block-form {
  463. --dynamic-fill-color: var(--tweak-form-block-field-fill-color);
  464. --dynamic-fill-color-hsl: var(--tweak-form-block-field-fill-color-hsl);
  465. --dynamic-fill-color-a: var(--tweak-form-block-field-fill-color-a);
  466. --dynamic-border-color: var(--tweak-form-block-field-border-color);
  467. --dynamic-border-color-hsl: var(--tweak-form-block-field-border-color-hsl);
  468. --dynamic-border-color-a: var(--tweak-form-block-field-border-color-a);
  469. --dynamic-input-text-color: var(--tweak-form-block-field-input-color);
  470. --dynamic-input-text-color-hsl: var(--tweak-form-block-field-input-color-hsl);
  471. --dynamic-input-text-color-a: var(--tweak-form-block-field-input-color-a);
  472. --dynamic-accessory-color: var(--tweak-form-block-field-accessory-color);
  473. }
  474. body.form-use-theme-colors .sqs-block-form.sqs-background-enabled {
  475. --dynamic-fill-color: var(--tweak-form-block-field-fill-color-on-background);
  476. --dynamic-fill-color-hsl: var(--tweak-form-block-field-fill-color-on-background-hsl);
  477. --dynamic-fill-color-a: var(--tweak-form-block-field-fill-color-on-background-a);
  478. --dynamic-border-color: var(--tweak-form-block-field-border-color-on-background);
  479. --dynamic-border-color-hsl: var(--tweak-form-block-field-border-color-on-background-hsl);
  480. --dynamic-border-color-a: var(--tweak-form-block-field-border-color-on-background-a);
  481. --dynamic-input-text-color: var(--tweak-form-block-field-input-color-on-background);
  482. --dynamic-input-text-color-hsl: var(--tweak-form-block-field-input-color-on-background-hsl);
  483. --dynamic-input-text-color-a: var(--tweak-form-block-field-input-color-a);
  484. --dynamic-accessory-color: var(--tweak-form-block-field-accessory-color-on-background);
  485. }
  486. /* Form Field Padding */
  487. .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  488. .sqs-block-form .form-item textarea,
  489. .sqs-block-form .form-item .file-display,
  490. .sqs-block-form .form-item select {
  491. padding: var(--form-field-padding-vertical) var(--form-field-padding-horizontal);
  492. }
  493. .sqs-block-form .form-item select {
  494. padding-right: calc(var(--form-field-padding-horizontal) + var(--form-field-dropdown-icon-size) + 4px);
  495. }
  496. /* Form Field Fill Tweak: Solid
  497. =================================================*/
  498. .form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  499. .form-field-style-solid .sqs-block-form .form-item textarea,
  500. .form-field-style-solid .sqs-block-form .form-item .file-display,
  501. .form-field-style-solid .sqs-block-form .form-item select {
  502. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-alpha-modifier)));
  503. transition: var(--fill-hover-transition);
  504. }
  505. @media (hover: hover) {
  506. .form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover,
  507. .form-field-style-solid .sqs-block-form .form-item textarea:hover,
  508. .form-field-style-solid .sqs-block-form .form-item .file-display:hover,
  509. .form-field-style-solid .sqs-block-form .form-item select:hover {
  510. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-hover-alpha-modifier)));
  511. }
  512. }
  513. .form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus,
  514. .form-field-style-solid .sqs-block-form .form-item textarea:focus,
  515. .form-field-style-solid .sqs-block-form .form-item .file-display:focus,
  516. .form-field-style-solid .sqs-block-form .form-item select:focus {
  517. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-focus-alpha-modifier)));
  518. }
  519. /* Form Field Fill Tweak: Outline
  520. =================================================*/
  521. .form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  522. .form-field-style-outline .sqs-block-form .form-item textarea,
  523. .form-field-style-outline .sqs-block-form .form-item .file-display,
  524. .form-field-style-outline .sqs-block-form .form-item select {
  525. border-color: var(--dynamic-border-color, #A9A9A9);
  526. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), 0);
  527. transition: var(--fill-hover-transition);
  528. }
  529. @media (hover: hover) {
  530. .form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover,
  531. .form-field-style-outline .sqs-block-form .form-item textarea:hover,
  532. .form-field-style-outline .sqs-block-form .form-item .file-display:hover,
  533. .form-field-style-outline .sqs-block-form .form-item select:hover {
  534. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--outline-hover-alpha-modifier)));
  535. }
  536. }
  537. .form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus,
  538. .form-field-style-outline .sqs-block-form .form-item textarea:focus,
  539. .form-field-style-outline .sqs-block-form .form-item .file-display:focus,
  540. .form-field-style-outline .sqs-block-form .form-item select:focus {
  541. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--outline-focus-alpha-modifier)));
  542. }
  543. /* Form Field Shape Tweak: Square
  544. =================================================*/
  545. .form-field-shape-square {
  546. /* Form Field Border Tweak: None
  547. =================================================*/
  548. /* Form Field Border Tweak: All
  549. =================================================*/
  550. /* Form Field Border Tweak: Bottom
  551. =================================================*/
  552. }
  553. .form-field-shape-square.form-field-border-none .sqs-block-form .form-item input,
  554. .form-field-shape-square.form-field-border-none .sqs-block-form .form-item textarea,
  555. .form-field-shape-square.form-field-border-none .sqs-block-form .form-item .file-display,
  556. .form-field-shape-square.form-field-border-none .sqs-block-form .form-item select {
  557. border: 1px solid transparent;
  558. box-shadow: 0 0 0 1px transparent;
  559. }
  560. .form-field-shape-square.form-field-border-all .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  561. .form-field-shape-square.form-field-border-all .sqs-block-form .form-item textarea,
  562. .form-field-shape-square.form-field-border-all .sqs-block-form .form-item .file-display,
  563. .form-field-shape-square.form-field-border-all .sqs-block-form .form-item select {
  564. border: solid var(--form-field-border-thickness) var(--dynamic-border-color, #A9A9A9);
  565. border-radius: 0;
  566. box-shadow: 0 0 0 1px transparent;
  567. }
  568. .form-field-shape-square.form-field-border-bottom .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  569. .form-field-shape-square.form-field-border-bottom .sqs-block-form .form-item textarea,
  570. .form-field-shape-square.form-field-border-bottom .sqs-block-form .form-item .file-display,
  571. .form-field-shape-square.form-field-border-bottom .sqs-block-form .form-item select {
  572. border-bottom: var(--form-field-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  573. border-top: 0;
  574. border-right: 0;
  575. border-left: 0;
  576. border-bottom-left-radius: 0;
  577. border-bottom-right-radius: 0;
  578. }
  579. /* Form Field Shape Tweak: Rounded
  580. =================================================*/
  581. .form-field-shape-rounded {
  582. /* Form Field Border Tweak: None
  583. =================================================*/
  584. /* Form Field Border Tweak: All
  585. =================================================*/
  586. /* Form Field Border Tweak: Bottom
  587. =================================================*/
  588. }
  589. .form-field-shape-rounded .sqs-block-form input:not([type="checkbox"]):not([type="radio"]),
  590. .form-field-shape-rounded .sqs-block-form textarea,
  591. .form-field-shape-rounded .sqs-block-form .file-upload,
  592. .form-field-shape-rounded .sqs-block-form .file-display,
  593. .form-field-shape-rounded .sqs-block-form select,
  594. .form-field-shape-rounded .sqs-block-form .form-field-error {
  595. border-radius: 0.4rem;
  596. }
  597. .form-field-shape-rounded .sqs-block-form .form-input-effects {
  598. --fx-input-border-radius: 0.4rem;
  599. }
  600. .form-field-shape-rounded.form-field-border-none .sqs-block-form .form-item input,
  601. .form-field-shape-rounded.form-field-border-none .sqs-block-form .form-item textarea,
  602. .form-field-shape-rounded.form-field-border-none .sqs-block-form .form-item .file-display,
  603. .form-field-shape-rounded.form-field-border-none .sqs-block-form .form-item select {
  604. border: 1px solid transparent;
  605. box-shadow: 0 0 0 1px transparent;
  606. }
  607. .form-field-shape-rounded.form-field-border-all .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  608. .form-field-shape-rounded.form-field-border-all .sqs-block-form .form-item textarea,
  609. .form-field-shape-rounded.form-field-border-all .sqs-block-form .form-item .file-display,
  610. .form-field-shape-rounded.form-field-border-all .sqs-block-form .form-item select {
  611. border: solid var(--form-field-border-thickness) var(--dynamic-border-color, #A9A9A9);
  612. box-shadow: 0 0 0 1px transparent;
  613. }
  614. .form-field-shape-rounded.form-field-border-bottom .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  615. .form-field-shape-rounded.form-field-border-bottom .sqs-block-form .form-item textarea,
  616. .form-field-shape-rounded.form-field-border-bottom .sqs-block-form .form-item .file-display,
  617. .form-field-shape-rounded.form-field-border-bottom .sqs-block-form .form-item select {
  618. border-bottom: var(--form-field-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  619. border-top: 0;
  620. border-right: 0;
  621. border-left: 0;
  622. border-bottom-left-radius: 0;
  623. border-bottom-right-radius: 0;
  624. }
  625. /* Form Field Shape Tweak: Pill
  626. =================================================*/
  627. .form-field-shape-pill {
  628. --pill-border-radius: calc(var(--form-field-padding-vertical) + var(--form-block-input-text-font-line-height) * 0.66);
  629. /* Form Field Border Tweak: None
  630. =================================================*/
  631. /* Form Field Border Tweak: All
  632. =================================================*/
  633. /* Form Field Border Tweak: Bottom
  634. =================================================*/
  635. }
  636. .form-field-shape-pill .sqs-block-form input:not([type="checkbox"]):not([type="radio"]),
  637. .form-field-shape-pill .sqs-block-form textarea,
  638. .form-field-shape-pill .sqs-block-form .file-upload,
  639. .form-field-shape-pill .sqs-block-form .file-display,
  640. .form-field-shape-pill .sqs-block-form select,
  641. .form-field-shape-pill .sqs-block-form .form-field-error {
  642. border-radius: var(--pill-border-radius);
  643. }
  644. .form-field-shape-pill .sqs-block-form .form-input-effects {
  645. --fx-input-border-radius: var(--pill-border-radius);
  646. }
  647. .form-field-shape-pill.form-field-border-none .sqs-block-form .form-item input,
  648. .form-field-shape-pill.form-field-border-none .sqs-block-form .form-item textarea,
  649. .form-field-shape-pill.form-field-border-none .sqs-block-form .form-item .file-display,
  650. .form-field-shape-pill.form-field-border-none .sqs-block-form .form-item select {
  651. border: 1px solid transparent;
  652. box-shadow: 0 0 0 1px transparent;
  653. }
  654. .form-field-shape-pill.form-field-border-all .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  655. .form-field-shape-pill.form-field-border-all .sqs-block-form .form-item textarea,
  656. .form-field-shape-pill.form-field-border-all .sqs-block-form .form-item .file-display,
  657. .form-field-shape-pill.form-field-border-all .sqs-block-form .form-item select {
  658. border: solid var(--form-field-border-thickness) var(--dynamic-border-color, #A9A9A9);
  659. box-shadow: 0 0 0 1px transparent;
  660. }
  661. .form-field-shape-pill.form-field-border-bottom .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  662. .form-field-shape-pill.form-field-border-bottom .sqs-block-form .form-item textarea,
  663. .form-field-shape-pill.form-field-border-bottom .sqs-block-form .form-item .file-display,
  664. .form-field-shape-pill.form-field-border-bottom .sqs-block-form .form-item select {
  665. border-bottom: var(--form-field-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  666. border-top: 0;
  667. border-right: 0;
  668. border-left: 0;
  669. border-bottom-left-radius: 0;
  670. border-bottom-right-radius: 0;
  671. }
  672. /* Form Field Shape Tweak: Custom
  673. =================================================*/
  674. .form-field-shape-custom {
  675. /* Form Field Border Tweak: None
  676. =================================================*/
  677. /* Form Field Border Tweak: All
  678. =================================================*/
  679. /* Form Field Border Tweak: Bottom
  680. =================================================*/
  681. }
  682. .form-field-shape-custom .sqs-block-form input:not([type="checkbox"]):not([type="radio"]),
  683. .form-field-shape-custom .sqs-block-form textarea,
  684. .form-field-shape-custom .sqs-block-form .file-upload,
  685. .form-field-shape-custom .sqs-block-form .file-display,
  686. .form-field-shape-custom .sqs-block-form select,
  687. .form-field-shape-custom .sqs-block-form .form-field-error {
  688. border-top-left-radius: var(--form-field-shape-border-top-left-radius);
  689. border-top-right-radius: var(--form-field-shape-border-top-right-radius);
  690. border-bottom-right-radius: var(--form-field-shape-border-bottom-right-radius);
  691. border-bottom-left-radius: var(--form-field-shape-border-bottom-left-radius);
  692. }
  693. .form-field-shape-custom .sqs-block-form .form-input-effects {
  694. --fx-input-border-radius: var(--form-field-shape-border-top-left-radius) var(--form-field-shape-border-top-right-radius) var(--form-field-shape-border-bottom-right-radius) var(--form-field-shape-border-bottom-left-radius);
  695. }
  696. .form-field-shape-custom.form-field-border-none .sqs-block-form .form-item input,
  697. .form-field-shape-custom.form-field-border-none .sqs-block-form .form-item textarea,
  698. .form-field-shape-custom.form-field-border-none .sqs-block-form .form-item .file-display,
  699. .form-field-shape-custom.form-field-border-none .sqs-block-form .form-item select {
  700. border: 1px solid transparent;
  701. box-shadow: 0 0 0 1px transparent;
  702. }
  703. .form-field-shape-custom.form-field-border-all .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  704. .form-field-shape-custom.form-field-border-all .sqs-block-form .form-item textarea,
  705. .form-field-shape-custom.form-field-border-all .sqs-block-form .form-item .file-display,
  706. .form-field-shape-custom.form-field-border-all .sqs-block-form .form-item select {
  707. border: solid var(--form-field-border-thickness) var(--dynamic-border-color, #A9A9A9);
  708. box-shadow: 0 0 0 1px transparent;
  709. }
  710. .form-field-shape-custom.form-field-border-bottom .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  711. .form-field-shape-custom.form-field-border-bottom .sqs-block-form .form-item textarea,
  712. .form-field-shape-custom.form-field-border-bottom .sqs-block-form .form-item .file-display,
  713. .form-field-shape-custom.form-field-border-bottom .sqs-block-form .form-item select {
  714. border-bottom: var(--form-field-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  715. border-top: 0;
  716. border-right: 0;
  717. border-left: 0;
  718. }
  719. /* Correct padding and border width for prefix element
  720. =================================================*/
  721. .form-field-border-all .sqs-block-form .form-item .form-input-prefix {
  722. padding: var(--form-field-padding-vertical) 10px var(--form-field-padding-vertical) var(--form-field-padding-horizontal);
  723. border-width: var(--form-field-border-thickness) 0;
  724. left: var(--form-field-border-thickness);
  725. }
  726. .form-field-border-bottom .sqs-block-form .form-item .form-input-prefix {
  727. padding: var(--form-field-padding-vertical) 10px var(--form-field-padding-vertical) var(--form-field-padding-horizontal);
  728. border-width: 0 0 var(--form-field-border-thickness) 0;
  729. left: 0;
  730. }
  731. .form-field-border-none .sqs-block-form .form-item .form-input-prefix {
  732. padding: var(--form-field-padding-vertical) 10px var(--form-field-padding-vertical) var(--form-field-padding-horizontal);
  733. border-width: 1px 0;
  734. left: 1px;
  735. }
  736. /* Form accessory
  737. =================================================*/
  738. .sqs-block-form .form-item.select svg path,
  739. .sqs-block-form .form-item.time svg path,
  740. .sqs-block-form .form-item.date svg path {
  741. fill: var(--dynamic-accessory-color, #000);
  742. }
  743. .sqs-block-form .form-item.select select ~ div {
  744. right: var(--form-field-padding-horizontal);
  745. }
  746. .sqs-block-form .form-item.date input ~ div,
  747. .sqs-block-form .form-item.time input ~ div {
  748. right: var(--form-field-padding-horizontal);
  749. }
  750. .form-field-border-all .sqs-block-form .form-item select ~ div {
  751. right: calc(var(--form-field-border-thickness) + var(--form-field-padding-horizontal));
  752. }
  753. /* Checkbox field */
  754. .form-field-checkbox-shape-square .sqs-block-form .form-item.checkbox input[type="checkbox"],
  755. .form-field-checkbox-shape-square .sqs-block-form .form-item.email input[type="checkbox"],
  756. .form-field-checkbox-shape-square .sqs-block-form .form-item.cover-the-fees input[type="checkbox"] {
  757. border-radius: 0;
  758. }
  759. .form-field-checkbox-shape-pill .sqs-block-form .form-item.checkbox input[type="checkbox"],
  760. .form-field-checkbox-shape-pill .sqs-block-form .form-item.email input[type="checkbox"],
  761. .form-field-checkbox-shape-pill .sqs-block-form .form-item.cover-the-fees input[type="checkbox"] {
  762. border-radius: 300px;
  763. }
  764. .form-field-checkbox-shape-rounded .sqs-block-form .form-item.checkbox input[type="checkbox"],
  765. .form-field-checkbox-shape-rounded .sqs-block-form .form-item.email input[type="checkbox"],
  766. .form-field-checkbox-shape-rounded .sqs-block-form .form-item.cover-the-fees input[type="checkbox"] {
  767. border-radius: 25%;
  768. }
  769. .form-field-checkbox-shape-custom .sqs-block-form .form-item.checkbox input[type="checkbox"],
  770. .form-field-checkbox-shape-custom .sqs-block-form .form-item.email input[type="checkbox"],
  771. .form-field-checkbox-shape-custom .sqs-block-form .form-item.cover-the-fees input[type="checkbox"],
  772. .form-field-checkbox-shape-custom .sqs-block-form .form-item.checkbox label span,
  773. .form-field-checkbox-shape-custom .sqs-block-form .form-item.email label span,
  774. .form-field-checkbox-shape-custom .sqs-block-form .form-item.cover-the-fees label span {
  775. border-top-left-radius: var(--form-field-checkbox-shape-border-top-left-radius);
  776. border-top-right-radius: var(--form-field-checkbox-shape-border-top-right-radius);
  777. border-bottom-right-radius: var(--form-field-checkbox-shape-border-bottom-right-radius);
  778. border-bottom-left-radius: var(--form-field-checkbox-shape-border-bottom-left-radius);
  779. }
  780. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox,
  781. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email,
  782. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees {
  783. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  784. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  785. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  786. --checked-background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  787. --checked-background-color-alpha: var(--dynamic-fill-color-a, 1);
  788. --checked-background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  789. --checked-foreground-color: var(--dynamic-border-color, #000);
  790. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  791. }
  792. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label,
  793. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email label,
  794. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees label {
  795. column-gap: var(--form-field-checkbox-space-between-icon-and-text);
  796. cursor: pointer;
  797. }
  798. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"],
  799. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"],
  800. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"] {
  801. cursor: pointer;
  802. transition: var(--fill-hover-transition);
  803. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  804. border: var(--form-field-checkbox-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  805. width: var(--form-field-checkbox-size);
  806. height: var(--form-field-checkbox-size);
  807. flex-shrink: 0;
  808. margin-right: 0px;
  809. }
  810. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]::before,
  811. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]::before,
  812. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]::before {
  813. width: 75%;
  814. height: 75%;
  815. background-color: var(--checked-foreground-color) !important;
  816. }
  817. @media (hover: hover) {
  818. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]:hover,
  819. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]:hover,
  820. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]:hover {
  821. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  822. }
  823. }
  824. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked,
  825. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]:checked,
  826. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]:checked {
  827. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  828. }
  829. @media (hover: hover) {
  830. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked:hover,
  831. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]:checked:hover,
  832. .form-field-checkbox-fill-solid.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]:checked:hover {
  833. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  834. }
  835. }
  836. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox,
  837. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email,
  838. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees {
  839. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  840. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  841. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  842. --checked-background-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  843. --checked-background-color-alpha: var(--dynamic-border-color-a, 1);
  844. --checked-background-color-alpha-default: var(--dynamic-border-color-a, 1);
  845. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  846. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  847. --checked-hover-alpha-modifier: var(--inverted-solid-hover-alpha-modifier);
  848. }
  849. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label,
  850. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email label,
  851. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees label {
  852. column-gap: var(--form-field-checkbox-space-between-icon-and-text);
  853. cursor: pointer;
  854. }
  855. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"],
  856. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"],
  857. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"] {
  858. cursor: pointer;
  859. transition: var(--fill-hover-transition);
  860. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  861. border: var(--form-field-checkbox-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  862. width: var(--form-field-checkbox-size);
  863. height: var(--form-field-checkbox-size);
  864. flex-shrink: 0;
  865. margin-right: 0px;
  866. }
  867. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]::before,
  868. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]::before,
  869. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]::before {
  870. width: 75%;
  871. height: 75%;
  872. background-color: var(--checked-foreground-color) !important;
  873. }
  874. @media (hover: hover) {
  875. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]:hover,
  876. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]:hover,
  877. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]:hover {
  878. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  879. }
  880. }
  881. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked,
  882. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]:checked,
  883. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]:checked {
  884. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  885. }
  886. @media (hover: hover) {
  887. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked:hover,
  888. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]:checked:hover,
  889. .form-field-checkbox-fill-solid.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]:checked:hover {
  890. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  891. }
  892. }
  893. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox,
  894. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email,
  895. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees {
  896. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  897. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  898. --background-color-alpha-default: 0;
  899. --checked-background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  900. --checked-background-color-alpha: var(--dynamic-fill-color-a, 1);
  901. --checked-background-color-alpha-default: 0;
  902. --checked-foreground-color: var(--dynamic-border-color, #000);
  903. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  904. }
  905. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label,
  906. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email label,
  907. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees label {
  908. column-gap: var(--form-field-checkbox-space-between-icon-and-text);
  909. cursor: pointer;
  910. }
  911. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"],
  912. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"],
  913. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"] {
  914. cursor: pointer;
  915. transition: var(--fill-hover-transition);
  916. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  917. border: var(--form-field-checkbox-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  918. width: var(--form-field-checkbox-size);
  919. height: var(--form-field-checkbox-size);
  920. flex-shrink: 0;
  921. margin-right: 0px;
  922. }
  923. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]::before,
  924. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]::before,
  925. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]::before {
  926. width: 75%;
  927. height: 75%;
  928. background-color: var(--checked-foreground-color) !important;
  929. }
  930. @media (hover: hover) {
  931. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]:hover,
  932. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]:hover,
  933. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]:hover {
  934. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  935. }
  936. }
  937. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked,
  938. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]:checked,
  939. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]:checked {
  940. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  941. }
  942. @media (hover: hover) {
  943. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked:hover,
  944. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.email label input[type="checkbox"]:checked:hover,
  945. .form-field-checkbox-fill-outline.form-field-checkbox-color-normal .form-item.cover-the-fees label input[type="checkbox"]:checked:hover {
  946. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  947. }
  948. }
  949. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox,
  950. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email,
  951. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees {
  952. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  953. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  954. --background-color-alpha-default: 0;
  955. --checked-background-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  956. --checked-background-color-alpha: var(--dynamic-border-color-a, 1);
  957. --checked-background-color-alpha-default: var(--dynamic-border-color-a, 1);
  958. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  959. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  960. --checked-hover-alpha-modifier: var(--inverted-outline-hover-alpha-modifier);
  961. }
  962. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label,
  963. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email label,
  964. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees label {
  965. column-gap: var(--form-field-checkbox-space-between-icon-and-text);
  966. cursor: pointer;
  967. }
  968. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"],
  969. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"],
  970. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"] {
  971. cursor: pointer;
  972. transition: var(--fill-hover-transition);
  973. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  974. border: var(--form-field-checkbox-border-thickness) solid var(--dynamic-border-color, #A9A9A9);
  975. width: var(--form-field-checkbox-size);
  976. height: var(--form-field-checkbox-size);
  977. flex-shrink: 0;
  978. margin-right: 0px;
  979. }
  980. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]::before,
  981. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]::before,
  982. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]::before {
  983. width: 75%;
  984. height: 75%;
  985. background-color: var(--checked-foreground-color) !important;
  986. }
  987. @media (hover: hover) {
  988. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]:hover,
  989. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]:hover,
  990. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]:hover {
  991. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  992. }
  993. }
  994. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked,
  995. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]:checked,
  996. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]:checked {
  997. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  998. }
  999. @media (hover: hover) {
  1000. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked:hover,
  1001. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.email label input[type="checkbox"]:checked:hover,
  1002. .form-field-checkbox-fill-outline.form-field-checkbox-color-inverted .form-item.cover-the-fees label input[type="checkbox"]:checked:hover {
  1003. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1004. }
  1005. }
  1006. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox {
  1007. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1008. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1009. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1010. --foreground-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1011. --foreground-color-alpha: var(--dynamic-border-color-a, 1);
  1012. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1013. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  1014. --checked-hover-alpha-modifier: var(--inverted-solid-hover-alpha-modifier);
  1015. }
  1016. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox input[type="checkbox"] {
  1017. position: absolute;
  1018. opacity: 0;
  1019. pointer-events: none;
  1020. }
  1021. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox label {
  1022. cursor: pointer;
  1023. user-select: none;
  1024. display: inline-flex;
  1025. }
  1026. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox label span {
  1027. transition: var(--fill-hover-transition);
  1028. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1029. color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1030. padding: var(--form-field-checkbox-padding-vertical) var(--form-field-checkbox-padding-horizontal);
  1031. border: var(--form-field-checkbox-border-thickness) solid hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1032. }
  1033. @media (hover: hover) {
  1034. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox label span:hover {
  1035. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1036. }
  1037. }
  1038. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked ~ span {
  1039. background-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1040. color: var(--checked-foreground-color);
  1041. border-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1042. }
  1043. @media (hover: hover) {
  1044. .form-field-checkbox-type-button.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked ~ span:hover {
  1045. background-color: hsla(var(--foreground-color-hsl), calc(var(--foreground-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier))));
  1046. }
  1047. }
  1048. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox {
  1049. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1050. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1051. --background-color-alpha-default: 0;
  1052. --foreground-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1053. --foreground-color-alpha: var(--dynamic-border-color-a, 1);
  1054. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1055. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  1056. --checked-hover-alpha-modifier: var(--inverted-outline-hover-alpha-modifier);
  1057. }
  1058. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox input[type="checkbox"] {
  1059. position: absolute;
  1060. opacity: 0;
  1061. pointer-events: none;
  1062. }
  1063. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox label {
  1064. cursor: pointer;
  1065. user-select: none;
  1066. display: inline-flex;
  1067. }
  1068. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox label span {
  1069. transition: var(--fill-hover-transition);
  1070. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1071. color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1072. padding: var(--form-field-checkbox-padding-vertical) var(--form-field-checkbox-padding-horizontal);
  1073. border: var(--form-field-checkbox-border-thickness) solid hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1074. }
  1075. @media (hover: hover) {
  1076. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox label span:hover {
  1077. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1078. }
  1079. }
  1080. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked ~ span {
  1081. background-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1082. color: var(--checked-foreground-color);
  1083. border-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1084. }
  1085. @media (hover: hover) {
  1086. .form-field-checkbox-type-button.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox label input[type="checkbox"]:checked ~ span:hover {
  1087. background-color: hsla(var(--foreground-color-hsl), calc(var(--foreground-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier))));
  1088. }
  1089. }
  1090. .form-field-checkbox-type-button.form-field-checkbox-shape-square .sqs-block-form .form-item.checkbox label span {
  1091. border-radius: 0;
  1092. }
  1093. .form-field-checkbox-type-button.form-field-checkbox-shape-pill {
  1094. --checkbox-pill-border-radius: calc(var(--form-field-checkbox-padding-vertical) + var(--form-block-option-text-font-line-height) * 0.66);
  1095. }
  1096. .form-field-checkbox-type-button.form-field-checkbox-shape-pill .sqs-block-form .form-item.checkbox label span {
  1097. border-radius: var(--checkbox-pill-border-radius);
  1098. }
  1099. .form-field-checkbox-type-button.form-field-checkbox-shape-rounded .sqs-block-form .form-item.checkbox label span {
  1100. border-radius: 0.4rem;
  1101. }
  1102. .form-field-checkbox-layout-stack .sqs-block-form .form-item.checkbox {
  1103. display: flex;
  1104. flex-direction: column;
  1105. flex-wrap: wrap;
  1106. gap: var(--form-field-checkbox-row-gap) var(--form-field-checkbox-column-gap);
  1107. }
  1108. .form-field-checkbox-layout-fit .sqs-block-form .form-item.checkbox {
  1109. display: flex;
  1110. flex-direction: row;
  1111. flex-wrap: wrap;
  1112. gap: var(--form-field-checkbox-row-gap) var(--form-field-checkbox-column-gap);
  1113. }
  1114. /* Radio field */
  1115. .form-field-radio-shape-square .sqs-block-form .form-item.radio .radio-mark,
  1116. .form-field-radio-shape-square .sqs-block-form .form-item.radio .radio-mark::after,
  1117. .form-field-radio-shape-square .sqs-block-form .form-item.radio .radio-label,
  1118. .form-field-radio-shape-square .sqs-block-form .form-item.radio .radio-outline {
  1119. border-radius: 0;
  1120. }
  1121. .form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-mark,
  1122. .form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-mark::after,
  1123. .form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-label,
  1124. .form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-outline {
  1125. border-radius: 300px;
  1126. }
  1127. .form-field-radio-shape-custom .sqs-block-form .form-item.radio .radio-mark,
  1128. .form-field-radio-shape-custom .sqs-block-form .form-item.radio .radio-mark::after,
  1129. .form-field-radio-shape-custom .sqs-block-form .form-item.radio .radio-label,
  1130. .form-field-radio-shape-custom .sqs-block-form .form-item.radio .radio-outline {
  1131. border-top-left-radius: var(--form-field-radio-shape-border-top-left-radius);
  1132. border-top-right-radius: var(--form-field-radio-shape-border-top-right-radius);
  1133. border-bottom-right-radius: var(--form-field-radio-shape-border-bottom-right-radius);
  1134. border-bottom-left-radius: var(--form-field-radio-shape-border-bottom-left-radius);
  1135. }
  1136. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio {
  1137. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1138. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1139. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1140. --checked-background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1141. --checked-background-color-alpha: var(--dynamic-fill-color-a, 1);
  1142. --checked-background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1143. --checked-foreground-color: var(--dynamic-border-color, #000);
  1144. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  1145. }
  1146. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label {
  1147. column-gap: var(--form-field-radio-space-between-icon-and-text);
  1148. }
  1149. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"] {
  1150. width: var(--form-field-radio-size);
  1151. height: var(--form-field-radio-size);
  1152. margin-right: 0px;
  1153. cursor: pointer;
  1154. }
  1155. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label .radio-mark {
  1156. transition: var(--fill-hover-transition);
  1157. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1158. border: var(--form-field-radio-border-thickness) solid var(--dynamic-border-color, #000);
  1159. width: var(--form-field-radio-size);
  1160. height: var(--form-field-radio-size);
  1161. }
  1162. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label .radio-mark::after {
  1163. background-color: var(--checked-foreground-color) !important;
  1164. position: absolute;
  1165. width: 50%;
  1166. height: 50%;
  1167. left: 50%;
  1168. top: 50%;
  1169. transform: translate(-50%, -50%) scale(0);
  1170. }
  1171. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label .radio-outline {
  1172. width: var(--form-field-radio-size);
  1173. height: var(--form-field-radio-size);
  1174. }
  1175. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark {
  1176. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1177. }
  1178. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark::after {
  1179. transform: translate(-50%, -50%) scale(1);
  1180. }
  1181. @media (hover: hover) {
  1182. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label:hover input[type="radio"] ~ .radio-mark {
  1183. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1184. }
  1185. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label:hover input[type="radio"]:checked ~ .radio-mark {
  1186. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1187. }
  1188. }
  1189. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"] {
  1190. flex-shrink: 0;
  1191. }
  1192. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio {
  1193. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1194. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1195. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1196. --checked-background-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1197. --checked-background-color-alpha: var(--dynamic-border-color-a, 1);
  1198. --checked-background-color-alpha-default: var(--dynamic-border-color-a, 1);
  1199. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1200. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  1201. --checked-hover-alpha-modifier: var(--inverted-solid-hover-alpha-modifier);
  1202. }
  1203. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label {
  1204. column-gap: var(--form-field-radio-space-between-icon-and-text);
  1205. }
  1206. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"] {
  1207. width: var(--form-field-radio-size);
  1208. height: var(--form-field-radio-size);
  1209. margin-right: 0px;
  1210. cursor: pointer;
  1211. }
  1212. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label .radio-mark {
  1213. transition: var(--fill-hover-transition);
  1214. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1215. border: var(--form-field-radio-border-thickness) solid var(--dynamic-border-color, #000);
  1216. width: var(--form-field-radio-size);
  1217. height: var(--form-field-radio-size);
  1218. }
  1219. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label .radio-mark::after {
  1220. background-color: var(--checked-foreground-color) !important;
  1221. position: absolute;
  1222. width: 50%;
  1223. height: 50%;
  1224. left: 50%;
  1225. top: 50%;
  1226. transform: translate(-50%, -50%) scale(0);
  1227. }
  1228. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label .radio-outline {
  1229. width: var(--form-field-radio-size);
  1230. height: var(--form-field-radio-size);
  1231. }
  1232. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark {
  1233. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1234. }
  1235. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark::after {
  1236. transform: translate(-50%, -50%) scale(1);
  1237. }
  1238. @media (hover: hover) {
  1239. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label:hover input[type="radio"] ~ .radio-mark {
  1240. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1241. }
  1242. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label:hover input[type="radio"]:checked ~ .radio-mark {
  1243. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1244. }
  1245. }
  1246. .form-field-radio-type-icon.form-field-radio-fill-solid.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"] {
  1247. flex-shrink: 0;
  1248. }
  1249. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio {
  1250. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1251. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1252. --background-color-alpha-default: 0;
  1253. --checked-background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1254. --checked-background-color-alpha: var(--dynamic-fill-color-a, 1);
  1255. --checked-background-color-alpha-default: 0;
  1256. --checked-foreground-color: var(--dynamic-border-color, #000);
  1257. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  1258. }
  1259. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label {
  1260. column-gap: var(--form-field-radio-space-between-icon-and-text);
  1261. }
  1262. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"] {
  1263. width: var(--form-field-radio-size);
  1264. height: var(--form-field-radio-size);
  1265. margin-right: 0px;
  1266. cursor: pointer;
  1267. }
  1268. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label .radio-mark {
  1269. transition: var(--fill-hover-transition);
  1270. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1271. border: var(--form-field-radio-border-thickness) solid var(--dynamic-border-color, #000);
  1272. width: var(--form-field-radio-size);
  1273. height: var(--form-field-radio-size);
  1274. }
  1275. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label .radio-mark::after {
  1276. background-color: var(--checked-foreground-color) !important;
  1277. position: absolute;
  1278. width: 50%;
  1279. height: 50%;
  1280. left: 50%;
  1281. top: 50%;
  1282. transform: translate(-50%, -50%) scale(0);
  1283. }
  1284. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label .radio-outline {
  1285. width: var(--form-field-radio-size);
  1286. height: var(--form-field-radio-size);
  1287. }
  1288. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark {
  1289. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1290. }
  1291. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark::after {
  1292. transform: translate(-50%, -50%) scale(1);
  1293. }
  1294. @media (hover: hover) {
  1295. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label:hover input[type="radio"] ~ .radio-mark {
  1296. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1297. }
  1298. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label:hover input[type="radio"]:checked ~ .radio-mark {
  1299. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1300. }
  1301. }
  1302. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-normal .sqs-block-form .form-item.radio label input[type="radio"] {
  1303. flex-shrink: 0;
  1304. }
  1305. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio {
  1306. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1307. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1308. --background-color-alpha-default: 0;
  1309. --checked-background-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1310. --checked-background-color-alpha: var(--dynamic-border-color-a, 1);
  1311. --checked-background-color-alpha-default: var(--dynamic-border-color-a, 1);
  1312. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1313. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  1314. --checked-hover-alpha-modifier: var(--inverted-outline-hover-alpha-modifier);
  1315. }
  1316. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label {
  1317. column-gap: var(--form-field-radio-space-between-icon-and-text);
  1318. }
  1319. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"] {
  1320. width: var(--form-field-radio-size);
  1321. height: var(--form-field-radio-size);
  1322. margin-right: 0px;
  1323. cursor: pointer;
  1324. }
  1325. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label .radio-mark {
  1326. transition: var(--fill-hover-transition);
  1327. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1328. border: var(--form-field-radio-border-thickness) solid var(--dynamic-border-color, #000);
  1329. width: var(--form-field-radio-size);
  1330. height: var(--form-field-radio-size);
  1331. }
  1332. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label .radio-mark::after {
  1333. background-color: var(--checked-foreground-color) !important;
  1334. position: absolute;
  1335. width: 50%;
  1336. height: 50%;
  1337. left: 50%;
  1338. top: 50%;
  1339. transform: translate(-50%, -50%) scale(0);
  1340. }
  1341. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label .radio-outline {
  1342. width: var(--form-field-radio-size);
  1343. height: var(--form-field-radio-size);
  1344. }
  1345. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark {
  1346. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1347. }
  1348. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ .radio-mark::after {
  1349. transform: translate(-50%, -50%) scale(1);
  1350. }
  1351. @media (hover: hover) {
  1352. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label:hover input[type="radio"] ~ .radio-mark {
  1353. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1354. }
  1355. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label:hover input[type="radio"]:checked ~ .radio-mark {
  1356. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1357. }
  1358. }
  1359. .form-field-radio-type-icon.form-field-radio-fill-outline.form-field-radio-color-inverted .sqs-block-form .form-item.radio label input[type="radio"] {
  1360. flex-shrink: 0;
  1361. }
  1362. .form-field-radio-type-icon.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-mark,
  1363. .form-field-radio-type-icon.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-mark::after,
  1364. .form-field-radio-type-icon.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-label,
  1365. .form-field-radio-type-icon.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-outline {
  1366. border-radius: 25%;
  1367. }
  1368. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio {
  1369. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1370. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1371. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1372. --foreground-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1373. --foreground-color-alpha: var(--dynamic-border-color-a, 1);
  1374. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1375. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  1376. --checked-hover-alpha-modifier: var(--inverted-solid-hover-alpha-modifier);
  1377. }
  1378. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio input[type="radio"] {
  1379. position: absolute;
  1380. opacity: 0;
  1381. cursor: pointer;
  1382. /* hover states on the input rather than siblings as that's what obtains hover/focus from label */
  1383. }
  1384. @media (hover: hover) {
  1385. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio input[type="radio"]:hover ~ span {
  1386. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1387. }
  1388. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio input[type="radio"]:checked:hover ~ span {
  1389. background-color: hsla(var(--foreground-color-hsl), calc(var(--foreground-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier))));
  1390. }
  1391. }
  1392. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio label span:empty {
  1393. display: none;
  1394. }
  1395. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio label {
  1396. cursor: pointer;
  1397. user-select: none;
  1398. display: inline-flex;
  1399. align-items: center;
  1400. justify-content: center;
  1401. }
  1402. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio label span {
  1403. transition: var(--fill-hover-transition);
  1404. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1405. color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1406. padding: var(--form-field-radio-padding-vertical) var(--form-field-radio-padding-horizontal);
  1407. border: var(--form-field-radio-border-thickness) solid hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1408. }
  1409. .form-field-radio-type-button.form-field-radio-fill-solid .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ span {
  1410. background-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1411. color: var(--checked-foreground-color);
  1412. border-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1413. }
  1414. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio {
  1415. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1416. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1417. --background-color-alpha-default: 0;
  1418. --foreground-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1419. --foreground-color-alpha: var(--dynamic-border-color-a, 1);
  1420. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1421. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  1422. --checked-hover-alpha-modifier: var(--inverted-outline-hover-alpha-modifier);
  1423. }
  1424. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio input[type="radio"] {
  1425. position: absolute;
  1426. opacity: 0;
  1427. cursor: pointer;
  1428. /* hover states on the input rather than siblings as that's what obtains hover/focus from label */
  1429. }
  1430. @media (hover: hover) {
  1431. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio input[type="radio"]:hover ~ span {
  1432. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1433. }
  1434. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio input[type="radio"]:checked:hover ~ span {
  1435. background-color: hsla(var(--foreground-color-hsl), calc(var(--foreground-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier))));
  1436. }
  1437. }
  1438. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio label span:empty {
  1439. display: none;
  1440. }
  1441. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio label {
  1442. cursor: pointer;
  1443. user-select: none;
  1444. display: inline-flex;
  1445. align-items: center;
  1446. justify-content: center;
  1447. }
  1448. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio label span {
  1449. transition: var(--fill-hover-transition);
  1450. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1451. color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1452. padding: var(--form-field-radio-padding-vertical) var(--form-field-radio-padding-horizontal);
  1453. border: var(--form-field-radio-border-thickness) solid hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1454. }
  1455. .form-field-radio-type-button.form-field-radio-fill-outline .sqs-block-form .form-item.radio label input[type="radio"]:checked ~ span {
  1456. background-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1457. color: var(--checked-foreground-color);
  1458. border-color: hsla(var(--foreground-color-hsl), var(--foreground-color-alpha));
  1459. }
  1460. .form-field-radio-type-button.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-mark,
  1461. .form-field-radio-type-button.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-mark::after,
  1462. .form-field-radio-type-button.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-label,
  1463. .form-field-radio-type-button.form-field-radio-shape-rounded .sqs-block-form .form-item.radio .radio-outline {
  1464. border-radius: 0.4rem;
  1465. }
  1466. .form-field-radio-type-button.form-field-radio-shape-pill .sqs-block-form .form-item.radio {
  1467. --radio-pill-border-radius: calc(var(--form-field-radio-padding-vertical) + var(--form-block-option-text-font-line-height) * 0.66);
  1468. }
  1469. .form-field-radio-type-button.form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-mark,
  1470. .form-field-radio-type-button.form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-mark::after,
  1471. .form-field-radio-type-button.form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-label,
  1472. .form-field-radio-type-button.form-field-radio-shape-pill .sqs-block-form .form-item.radio .radio-outline {
  1473. border-radius: var(--radio-pill-border-radius);
  1474. }
  1475. .form-field-radio-layout-stack .sqs-block-form .form-item.radio {
  1476. display: flex;
  1477. flex-direction: column;
  1478. flex-wrap: wrap;
  1479. gap: var(--form-field-radio-row-gap) var(--form-field-radio-column-gap);
  1480. }
  1481. .form-field-radio-layout-stack .sqs-block-form .form-item.radio .radio-mark {
  1482. left: unset;
  1483. }
  1484. .form-field-radio-layout-fit .sqs-block-form .form-item.radio {
  1485. display: flex;
  1486. flex-direction: row;
  1487. flex-wrap: wrap;
  1488. gap: var(--form-field-radio-row-gap) var(--form-field-radio-column-gap);
  1489. }
  1490. .form-field-radio-layout-fit .sqs-block-form .form-item.radio .radio-mark {
  1491. left: unset;
  1492. }
  1493. /* Survey field */
  1494. .form-field-survey-shape-square .sqs-block-form .form-item.likert .radio-mark,
  1495. .form-field-survey-shape-square .sqs-block-form .form-item.likert .radio-mark::after,
  1496. .form-field-survey-shape-square .sqs-block-form .form-item.likert .radio-label,
  1497. .form-field-survey-shape-square .sqs-block-form .form-item.likert .radio-outline {
  1498. border-radius: 0;
  1499. }
  1500. .form-field-survey-shape-rounded .sqs-block-form .form-item.likert .radio-mark,
  1501. .form-field-survey-shape-rounded .sqs-block-form .form-item.likert .radio-mark::after,
  1502. .form-field-survey-shape-rounded .sqs-block-form .form-item.likert .radio-label,
  1503. .form-field-survey-shape-rounded .sqs-block-form .form-item.likert .radio-outline {
  1504. border-radius: 25%;
  1505. }
  1506. .form-field-survey-shape-pill .sqs-block-form .form-item.likert .radio-mark,
  1507. .form-field-survey-shape-pill .sqs-block-form .form-item.likert .radio-mark::after,
  1508. .form-field-survey-shape-pill .sqs-block-form .form-item.likert .radio-label,
  1509. .form-field-survey-shape-pill .sqs-block-form .form-item.likert .radio-outline {
  1510. border-radius: 300px;
  1511. }
  1512. .form-field-survey-shape-custom .sqs-block-form .form-item.likert .radio-mark,
  1513. .form-field-survey-shape-custom .sqs-block-form .form-item.likert .radio-mark::after,
  1514. .form-field-survey-shape-custom .sqs-block-form .form-item.likert .radio-label,
  1515. .form-field-survey-shape-custom .sqs-block-form .form-item.likert .radio-outline {
  1516. border-top-left-radius: var(--form-field-survey-shape-border-top-left-radius);
  1517. border-top-right-radius: var(--form-field-survey-shape-border-top-right-radius);
  1518. border-bottom-right-radius: var(--form-field-survey-shape-border-bottom-right-radius);
  1519. border-bottom-left-radius: var(--form-field-survey-shape-border-bottom-left-radius);
  1520. }
  1521. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert {
  1522. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1523. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1524. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1525. --checked-background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1526. --checked-background-color-alpha: var(--dynamic-fill-color-a, 1);
  1527. --checked-background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1528. --checked-foreground-color: var(--dynamic-border-color, #000);
  1529. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  1530. }
  1531. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) input[type="radio"] {
  1532. width: var(--form-field-survey-size);
  1533. height: var(--form-field-survey-size);
  1534. margin-right: 0px;
  1535. cursor: pointer;
  1536. }
  1537. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) .radio-mark {
  1538. transition: var(--fill-hover-transition);
  1539. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1540. border: var(--form-field-survey-border-thickness) solid var(--dynamic-border-color, #000);
  1541. width: var(--form-field-survey-size);
  1542. height: var(--form-field-survey-size);
  1543. }
  1544. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) .radio-mark::after {
  1545. background-color: var(--checked-foreground-color) !important;
  1546. position: absolute;
  1547. width: 50%;
  1548. height: 50%;
  1549. left: 50%;
  1550. top: 50%;
  1551. transform: translate(-50%, -50%) scale(0);
  1552. }
  1553. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) .radio-outline {
  1554. width: var(--form-field-survey-size);
  1555. height: var(--form-field-survey-size);
  1556. }
  1557. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark {
  1558. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1559. }
  1560. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark::after {
  1561. transform: translate(-50%, -50%) scale(1);
  1562. }
  1563. @media (hover: hover) {
  1564. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"] ~ .radio-mark {
  1565. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1566. }
  1567. .form-field-survey-fill-solid.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"]:checked ~ .radio-mark {
  1568. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1569. }
  1570. }
  1571. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert {
  1572. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1573. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1574. --background-color-alpha-default: var(--dynamic-fill-color-a, 1);
  1575. --checked-background-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1576. --checked-background-color-alpha: var(--dynamic-border-color-a, 1);
  1577. --checked-background-color-alpha-default: var(--dynamic-border-color-a, 1);
  1578. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1579. --hover-alpha-modifier: var(--solid-hover-alpha-modifier);
  1580. --checked-hover-alpha-modifier: var(--inverted-solid-hover-alpha-modifier);
  1581. }
  1582. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) input[type="radio"] {
  1583. width: var(--form-field-survey-size);
  1584. height: var(--form-field-survey-size);
  1585. margin-right: 0px;
  1586. cursor: pointer;
  1587. }
  1588. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) .radio-mark {
  1589. transition: var(--fill-hover-transition);
  1590. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1591. border: var(--form-field-survey-border-thickness) solid var(--dynamic-border-color, #000);
  1592. width: var(--form-field-survey-size);
  1593. height: var(--form-field-survey-size);
  1594. }
  1595. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) .radio-mark::after {
  1596. background-color: var(--checked-foreground-color) !important;
  1597. position: absolute;
  1598. width: 50%;
  1599. height: 50%;
  1600. left: 50%;
  1601. top: 50%;
  1602. transform: translate(-50%, -50%) scale(0);
  1603. }
  1604. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) .radio-outline {
  1605. width: var(--form-field-survey-size);
  1606. height: var(--form-field-survey-size);
  1607. }
  1608. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark {
  1609. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1610. }
  1611. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark::after {
  1612. transform: translate(-50%, -50%) scale(1);
  1613. }
  1614. @media (hover: hover) {
  1615. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"] ~ .radio-mark {
  1616. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1617. }
  1618. .form-field-survey-fill-solid.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"]:checked ~ .radio-mark {
  1619. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1620. }
  1621. }
  1622. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert {
  1623. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1624. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1625. --background-color-alpha-default: 0;
  1626. --checked-background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1627. --checked-background-color-alpha: var(--dynamic-fill-color-a, 1);
  1628. --checked-background-color-alpha-default: 0;
  1629. --checked-foreground-color: var(--dynamic-border-color, #000);
  1630. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  1631. }
  1632. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) input[type="radio"] {
  1633. width: var(--form-field-survey-size);
  1634. height: var(--form-field-survey-size);
  1635. margin-right: 0px;
  1636. cursor: pointer;
  1637. }
  1638. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) .radio-mark {
  1639. transition: var(--fill-hover-transition);
  1640. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1641. border: var(--form-field-survey-border-thickness) solid var(--dynamic-border-color, #000);
  1642. width: var(--form-field-survey-size);
  1643. height: var(--form-field-survey-size);
  1644. }
  1645. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) .radio-mark::after {
  1646. background-color: var(--checked-foreground-color) !important;
  1647. position: absolute;
  1648. width: 50%;
  1649. height: 50%;
  1650. left: 50%;
  1651. top: 50%;
  1652. transform: translate(-50%, -50%) scale(0);
  1653. }
  1654. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) .radio-outline {
  1655. width: var(--form-field-survey-size);
  1656. height: var(--form-field-survey-size);
  1657. }
  1658. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark {
  1659. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1660. }
  1661. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark::after {
  1662. transform: translate(-50%, -50%) scale(1);
  1663. }
  1664. @media (hover: hover) {
  1665. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"] ~ .radio-mark {
  1666. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1667. }
  1668. .form-field-survey-fill-outline.form-field-survey-color-normal .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"]:checked ~ .radio-mark {
  1669. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1670. }
  1671. }
  1672. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert {
  1673. --background-color-hsl: var(--dynamic-fill-color-hsl, var(--fallback-white-hsl));
  1674. --background-color-alpha: var(--dynamic-fill-color-a, 1);
  1675. --background-color-alpha-default: 0;
  1676. --checked-background-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  1677. --checked-background-color-alpha: var(--dynamic-border-color-a, 1);
  1678. --checked-background-color-alpha-default: var(--dynamic-border-color-a, 1);
  1679. --checked-foreground-color: var(--dynamic-fill-color, #FAFAFA);
  1680. --hover-alpha-modifier: var(--outline-hover-alpha-modifier);
  1681. --checked-hover-alpha-modifier: var(--inverted-outline-hover-alpha-modifier);
  1682. }
  1683. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) input[type="radio"] {
  1684. width: var(--form-field-survey-size);
  1685. height: var(--form-field-survey-size);
  1686. margin-right: 0px;
  1687. cursor: pointer;
  1688. }
  1689. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) .radio-mark {
  1690. transition: var(--fill-hover-transition);
  1691. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha-default) * var(--solid-alpha-modifier)));
  1692. border: var(--form-field-survey-border-thickness) solid var(--dynamic-border-color, #000);
  1693. width: var(--form-field-survey-size);
  1694. height: var(--form-field-survey-size);
  1695. }
  1696. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) .radio-mark::after {
  1697. background-color: var(--checked-foreground-color) !important;
  1698. position: absolute;
  1699. width: 50%;
  1700. height: 50%;
  1701. left: 50%;
  1702. top: 50%;
  1703. transform: translate(-50%, -50%) scale(0);
  1704. }
  1705. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) .radio-outline {
  1706. width: var(--form-field-survey-size);
  1707. height: var(--form-field-survey-size);
  1708. }
  1709. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark {
  1710. background-color: hsla(var(--checked-background-color-hsl), var(--checked-background-color-alpha-default)) !important;
  1711. }
  1712. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title) input[type="radio"]:checked ~ .radio-mark::after {
  1713. transform: translate(-50%, -50%) scale(1);
  1714. }
  1715. @media (hover: hover) {
  1716. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"] ~ .radio-mark {
  1717. background-color: hsla(var(--background-color-hsl), calc(var(--background-color-alpha) * var(--hover-alpha-modifier)));
  1718. }
  1719. .form-field-survey-fill-outline.form-field-survey-color-inverted .sqs-block-form .form-item.likert label:not(.title):hover input[type="radio"]:checked ~ .radio-mark {
  1720. background-color: hsla(var(--checked-background-color-hsl), calc(var(--checked-background-color-alpha) * var(--checked-hover-alpha-modifier, var(--hover-alpha-modifier)))) !important;
  1721. }
  1722. }
  1723. /* Form Spacing
  1724. =================================================*/
  1725. .form-wrapper .react-form-contents .field-list .title {
  1726. padding-bottom: var(--form-label-spacing-bottom);
  1727. }
  1728. .form-wrapper .react-form-contents .field-list p.description {
  1729. margin-bottom: var(--form-description-spacing-bottom) !important;
  1730. }
  1731. .form-wrapper .react-form-contents .field-list .description.required {
  1732. padding: 0px;
  1733. }
  1734. .form-wrapper .react-form-contents .field-list .caption-text:not(:empty) {
  1735. padding-bottom: var(--form-caption-spacing-bottom);
  1736. margin-top: 4px;
  1737. }
  1738. .form-wrapper .react-form-contents .field-list .address .field .caption-text {
  1739. padding-top: 0px;
  1740. }
  1741. .form-wrapper .react-form-contents .field-list .address .field:first-of-type .caption-text {
  1742. padding-top: 4px;
  1743. }
  1744. .form-wrapper .react-form-contents .field-list .field {
  1745. margin: 0 0 var(--form-field-spacing-bottom) !important;
  1746. }
  1747. .form-wrapper .react-form-contents .field-list .field.likert {
  1748. margin-bottom: 0px !important;
  1749. padding-bottom: 12px;
  1750. }
  1751. .form-wrapper .react-form-contents .field-list .field.likert .item {
  1752. margin: var(--form-field-spacing-bottom) 0;
  1753. }
  1754. .form-wrapper .react-form-contents .field-list .field.likert .item:first-of-type {
  1755. margin: calc(var(--form-field-spacing-bottom) / 2) 0;
  1756. }
  1757. .form-wrapper .react-form-contents .field-list .field.likert .question {
  1758. margin-bottom: 4px;
  1759. }
  1760. .form-wrapper .react-form-contents .field-list .field .option {
  1761. margin-top: 4px;
  1762. }
  1763. .form-wrapper .react-form-contents .field-list .field .option label {
  1764. padding: 0px 4px 0px 0px;
  1765. }
  1766. .form-wrapper .react-form-contents .field-list .field.radio .option,
  1767. .form-wrapper .react-form-contents .field-list .field.checkbox .option {
  1768. margin-bottom: 0px;
  1769. }
  1770. .form-wrapper .react-form-contents .field-list .line-field {
  1771. margin: calc(var(--form-field-spacing-bottom) + 12px) 0 !important;
  1772. }
  1773. .form-wrapper .react-form-contents .field-list .section {
  1774. padding-bottom: 0px;
  1775. margin: 0px;
  1776. }
  1777. .form-wrapper .react-form-contents .field-list .fields {
  1778. column-gap: var(--form-field-column-gap);
  1779. }
  1780. .form-wrapper .react-form-contents .field-list fieldset {
  1781. row-gap: 0px;
  1782. }
  1783. .form-wrapper .react-form-contents .field-list legend {
  1784. padding: 0 !important;
  1785. }
  1786. /* Form focus outlines
  1787. =================================================*/
  1788. input:focus,
  1789. select:focus,
  1790. textarea:focus,
  1791. input[type="radio"]:focus-visible ~ .radio-outline,
  1792. .form-field-checkbox-type-button .field.checkbox input[type="checkbox"]:focus-visible + span,
  1793. .form-field-radio-type-button input[type="radio"]:focus-visible + .radio-label {
  1794. outline-style: solid;
  1795. outline-color: var(--dynamic-border-color, var(--navigationLinkColor));
  1796. outline-width: 2px;
  1797. outline-offset: 2px !important;
  1798. }
  1799. /* Form input color
  1800. =================================================*/
  1801. .form-wrapper .react-form-contents .field-list input:not([type="checkbox"]):not([type="radio"]),
  1802. .form-wrapper .react-form-contents .field-list textarea,
  1803. .form-wrapper .react-form-contents .field-list select {
  1804. color: var(--dynamic-input-text-color, #000);
  1805. }
  1806. .form-wrapper .react-form-contents .field-list input::placeholder,
  1807. .form-wrapper .react-form-contents .field-list textarea::placeholder,
  1808. .form-wrapper .react-form-contents .field-list select.show-placeholder {
  1809. color: hsla(var(--dynamic-input-text-color-hsl, var(--fallback-black-hsl)), calc(var(--dynamic-input-text-color-a, 1) * 0.55));
  1810. }
  1811. .form-wrapper .react-form-contents .field-list .form-input-prefix {
  1812. color: var(--dynamic-input-text-color, #000);
  1813. opacity: 0.55;
  1814. pointer-events: none;
  1815. }
  1816. /* Line color (Survey field and Line field)
  1817. =================================================*/
  1818. .sqs-block-form .form-item.likert .option,
  1819. .sqs-block-form .form-item.line-field {
  1820. border-color: var(--dynamic-border-color) !important;
  1821. }
  1822. /* Form lightbox background color
  1823. =================================================*/
  1824. .form-use-theme-colors .sqs-modal-lightbox-content .lightbox-inner .lightbox-content.lightbox-form-content-background {
  1825. background-color: var(--tweak-form-block-background-color);
  1826. }
  1827. .form-use-theme-colors .sqs-modal-lightbox-content .lightbox-inner .lightbox-content.lightbox-form-content-background .sqs-block-form {
  1828. background-color: transparent;
  1829. }
  1830. .form-use-theme-colors .sqs-modal-lightbox-content .lightbox-inner .lightbox-content.lightbox-form-content-background .form-title,
  1831. .form-use-theme-colors .sqs-modal-lightbox-content .lightbox-inner .lightbox-content.lightbox-form-content-background .lightbox-close {
  1832. color: var(--tweak-form-block-title-color-on-background);
  1833. }
  1834. .form-use-theme-colors .sqs-modal-lightbox-content .lightbox-inner .lightbox-content.lightbox-form-content-background .lightbox-close {
  1835. top: 18px;
  1836. right: 18px;
  1837. }
  1838. /* Override theme colors for the lightbox form if use-theme-color is toggled off
  1839. =================================================*/
  1840. body:not(.form-use-theme-colors) .sqs-modal-lightbox-content .lightbox-inner .sqs-block-form {
  1841. --tweak-form-block-title-color-on-background: #000;
  1842. --tweak-form-block-description-color-on-background: #000;
  1843. --tweak-form-block-caption-color-on-background: #000;
  1844. --tweak-form-block-option-color-on-background: #000;
  1845. --tweak-form-block-survey-title-color-on-background: #000;
  1846. --tweak-form-block-button-text-color-on-background: #fff;
  1847. --tweak-form-block-button-background-color-on-background: #000;
  1848. background-color: #fff;
  1849. }
  1850. .sqs-block-form * {
  1851. -webkit-tap-highlight-color: transparent;
  1852. }
  1853. /* Override text area height
  1854. =================================================*/
  1855. .sqs-block-form textarea {
  1856. height: 4em;
  1857. }
  1858. /* Product Block Quantity Stepper Overrides
  1859. These only apply a subset of the Form Theme styles to specific Product Block elements.
  1860. The Product Block components will default to styles defined in the website-component-definitions repo if the Product Block is used on a 7.0 site
  1861. that does not support themes/CSS variables.
  1862. =================================================*/
  1863. /* Product Block Quantity Stepper Fill Tweak: Solid
  1864. =================================================*/
  1865. .form-field-style-solid .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1866. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-alpha-modifier)));
  1867. transition: var(--fill-hover-transition);
  1868. }
  1869. @media (hover: hover) {
  1870. .form-field-style-solid .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input:hover {
  1871. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-hover-alpha-modifier)));
  1872. }
  1873. }
  1874. .form-field-style-solid .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input:focus {
  1875. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-focus-alpha-modifier)));
  1876. }
  1877. /* Product Block Quantity Stepper Fill Tweak: Outline
  1878. =================================================*/
  1879. .form-field-style-outline .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1880. border-color: var(--dynamic-border-color, #A9A9A9);
  1881. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), 0);
  1882. transition: var(--fill-hover-transition);
  1883. }
  1884. @media (hover: hover) {
  1885. .form-field-style-outline .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input:hover {
  1886. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--outline-hover-alpha-modifier)));
  1887. }
  1888. }
  1889. .form-field-style-outline .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input:focus {
  1890. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--outline-focus-alpha-modifier)));
  1891. }
  1892. /* Product Block Quantity Stepper Shape Tweak: Square
  1893. =================================================*/
  1894. .form-field-shape-square {
  1895. /* Product Block Quantity Stepper Border Tweak: None
  1896. =================================================*/
  1897. /* Product Block Quantity Stepper Border Tweak: All
  1898. =================================================*/
  1899. /* Product Block Quantity Stepper Border Tweak: Bottom
  1900. =================================================*/
  1901. }
  1902. .form-field-shape-square.form-field-border-none .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1903. border: 1px solid transparent;
  1904. box-shadow: 0 0 0 1px transparent;
  1905. }
  1906. .form-field-shape-square.form-field-border-all .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1907. border: solid 2px var(--dynamic-border-color, #A9A9A9);
  1908. border-radius: 0;
  1909. box-shadow: 0 0 0 1px transparent;
  1910. }
  1911. .form-field-shape-square.form-field-border-bottom .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1912. border-bottom: 2px solid var(--dynamic-border-color, #A9A9A9);
  1913. border-top: 0;
  1914. border-right: 0;
  1915. border-left: 0;
  1916. border-bottom-left-radius: 0;
  1917. border-bottom-right-radius: 0;
  1918. }
  1919. /* Product Block Quantity Stepper Shape Tweak: Rounded
  1920. =================================================*/
  1921. .form-field-shape-rounded {
  1922. /* Product Block Quantity Stepper Border Tweak: None
  1923. =================================================*/
  1924. /* Product Block Quantity Stepper Border Tweak: All
  1925. =================================================*/
  1926. /* Product Block Quantity Stepper Border Tweak: Bottom
  1927. =================================================*/
  1928. }
  1929. .form-field-shape-rounded .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1930. border-radius: 0.4rem;
  1931. }
  1932. .form-field-shape-rounded .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input .form-input-effects {
  1933. --fx-input-border-radius: 0.4rem;
  1934. }
  1935. .form-field-shape-rounded.form-field-border-none .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1936. border: 1px solid transparent;
  1937. box-shadow: 0 0 0 1px transparent;
  1938. }
  1939. .form-field-shape-rounded.form-field-border-all .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1940. border: solid 2px var(--dynamic-border-color, #A9A9A9);
  1941. box-shadow: 0 0 0 1px transparent;
  1942. }
  1943. .form-field-shape-rounded.form-field-border-bottom .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1944. border-bottom: 2px solid var(--dynamic-border-color, #A9A9A9);
  1945. border-top: 0;
  1946. border-right: 0;
  1947. border-left: 0;
  1948. border-bottom-left-radius: 0;
  1949. border-bottom-right-radius: 0;
  1950. }
  1951. /* Product Block Quantity Stepper Shape Tweak: Pill
  1952. =================================================*/
  1953. .form-field-shape-pill {
  1954. --pill-border-radius: calc(var(--form-field-padding-vertical) + var(--form-block-input-text-font-line-height) * 0.66);
  1955. /* Product Block Quantity Stepper Border Tweak: None
  1956. =================================================*/
  1957. /* Product Block Quantity Stepper Border Tweak: All
  1958. =================================================*/
  1959. /* Product Block Quantity Stepper Border Tweak: Bottom
  1960. =================================================*/
  1961. }
  1962. .form-field-shape-pill .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1963. border-radius: var(--pill-border-radius);
  1964. }
  1965. .form-field-shape-pill .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input .form-input-effects {
  1966. --fx-input-border-radius: var(--pill-border-radius);
  1967. }
  1968. .form-field-shape-pill.form-field-border-none .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1969. border: 1px solid transparent;
  1970. box-shadow: 0 0 0 1px transparent;
  1971. }
  1972. .form-field-shape-pill.form-field-border-all .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1973. border: solid 2px var(--dynamic-border-color, #A9A9A9);
  1974. box-shadow: 0 0 0 1px transparent;
  1975. }
  1976. .form-field-shape-pill.form-field-border-bottom .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1977. border-bottom: 2px solid var(--dynamic-border-color, #A9A9A9);
  1978. border-top: 0;
  1979. border-right: 0;
  1980. border-left: 0;
  1981. border-bottom-left-radius: 0;
  1982. border-bottom-right-radius: 0;
  1983. }
  1984. /* Product Block Quantity Stepper Shape Tweak: Custom
  1985. =================================================*/
  1986. .form-field-shape-custom {
  1987. /* Product Block Quantity Stepper Border Tweak: None
  1988. =================================================*/
  1989. /* Product Block Quantity Stepper Border Tweak: All
  1990. =================================================*/
  1991. /* Product Block Quantity Stepper Border Tweak: Bottom
  1992. =================================================*/
  1993. }
  1994. .form-field-shape-custom .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  1995. border-top-left-radius: var(--form-field-shape-border-top-left-radius);
  1996. border-top-right-radius: var(--form-field-shape-border-top-right-radius);
  1997. border-bottom-right-radius: var(--form-field-shape-border-bottom-right-radius);
  1998. border-bottom-left-radius: var(--form-field-shape-border-bottom-left-radius);
  1999. }
  2000. .form-field-shape-custom .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input .form-input-effects {
  2001. --fx-input-border-radius: var(--form-field-shape-border-top-left-radius) var(--form-field-shape-border-top-right-radius) var(--form-field-shape-border-bottom-right-radius) var(--form-field-shape-border-bottom-left-radius);
  2002. }
  2003. .form-field-shape-custom.form-field-border-none .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  2004. border: 1px solid transparent;
  2005. box-shadow: 0 0 0 1px transparent;
  2006. }
  2007. .form-field-shape-custom.form-field-border-all .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  2008. border: solid 2px var(--dynamic-border-color, #A9A9A9);
  2009. box-shadow: 0 0 0 1px transparent;
  2010. }
  2011. .form-field-shape-custom.form-field-border-bottom .product-purchase-controls-wrapper.sqs-block-form .form-item.product-quantity-input {
  2012. border-bottom: 2px solid var(--dynamic-border-color, #A9A9A9);
  2013. border-top: 0;
  2014. border-right: 0;
  2015. border-left: 0;
  2016. }
  2017. /* Effects configuration
  2018. ================================================= */
  2019. /* Grid Normalization
  2020. ================================================= */
  2021. .sqs-block-form .field-list {
  2022. /* disable pointer events on non-input radio elements */
  2023. }
  2024. .sqs-block-form .field-list .field:not(.checkbox, .radio, .likert) {
  2025. display: grid;
  2026. align-content: flex-start;
  2027. align-items: flex-start;
  2028. grid-auto-flow: row;
  2029. grid-template-columns: min-content auto;
  2030. grid-template-rows: auto;
  2031. }
  2032. .sqs-block-form .field-list .field:not(.checkbox, .radio, .likert) > * {
  2033. grid-column: 1 / span 2;
  2034. }
  2035. .sqs-block-form .field-list .field:not(.checkbox, .radio, .likert) .form-input-prefix,
  2036. .sqs-block-form .field-list .field:not(.checkbox, .radio, .likert) .form-input-effects {
  2037. grid-row: 2 / span 1;
  2038. }
  2039. .sqs-block-form .field-list .field:not(.checkbox, .radio, .likert) .description ~ .form-input-prefix,
  2040. .sqs-block-form .field-list .field:not(.checkbox, .radio, .likert) .description ~ .form-input-effects {
  2041. grid-row: 3;
  2042. }
  2043. .sqs-block-form .field-list .caption,
  2044. .sqs-block-form .field-list .caption > * {
  2045. display: block;
  2046. height: auto;
  2047. word-break: break-word;
  2048. }
  2049. .sqs-block-form .field-list .caption .caption-text:empty {
  2050. display: none;
  2051. }
  2052. .sqs-block-form .field-list .radio-label,
  2053. .sqs-block-form .field-list .radio-mark,
  2054. .sqs-block-form .field-list .radio-outline {
  2055. pointer-events: none;
  2056. }
  2057. /* Effects base config
  2058. ================================================= */
  2059. .sqs-block-form {
  2060. /* easing variables */
  2061. --fx-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  2062. /* input fx variables */
  2063. --fx-input-border-width: 0px;
  2064. --fx-input-border-width-increase: 1px;
  2065. --fx-input-border-width-active: 0px;
  2066. --fx-input-border-radius: 0px;
  2067. /* border color variables */
  2068. --fx-border-color-hsl: var(--dynamic-border-color-hsl, var(--fallback-black-hsl));
  2069. --fx-border-color-a: var(--dynamic-border-color-a, 1);
  2070. /* accent color */
  2071. --fx-border-color-accent-hsl: var(--tweak-form-block-field-accent-color-hsl);
  2072. --fx-border-color-accent-a: var(--tweak-form-block-field-accent-color-a);
  2073. /* radio variables */
  2074. --fx-radio-border-width-default: var(--form-field-radio-border-thickness);
  2075. --fx-radio-border-width: var(--fx-radio-border-width-default);
  2076. --fx-radio-border-width-active: var(--fx-radio-border-width-default);
  2077. /* checkbox variables */
  2078. --fx-checkbox-border-width-default: var(--form-field-checkbox-border-thickness);
  2079. --fx-checkbox-border-width: var(--fx-checkbox-border-width-default);
  2080. --fx-checkbox-border-width-active: var(--fx-checkbox-border-width-default);
  2081. /* animation variables */
  2082. --fx-border-transition-duration-border-width: 0.075s;
  2083. --fx-border-transition-transform: transform 0.15s var(--fx-ease-out);
  2084. --fx-border-transition-border-width: border-width var(--fx-border-transition-duration-border-width) var(--fx-ease-out);
  2085. --fx-border-transition-border-color: border-color 0.2s var(--fx-ease-out);
  2086. --fx-border-transition-opacity: opacity 0.2s var(--fx-ease-out);
  2087. --fx-radio-transition-transform: transform 0.1s 0.1s var(--fx-ease-out);
  2088. --fx-checkbox-transition-mask-position: mask-position 0.2s 0.1s var(--fx-ease-out),
  2089. -webkit-mask-position 0.2s 0.1s var(--fx-ease-out);
  2090. /* highlight variables */
  2091. --fx-highlight-input-border-width-increase: 1px;
  2092. --fx-highlight-input-border-width: calc(var(--form-field-border-thickness) + var(--fx-highlight-input-border-width-increase));
  2093. --fx-highlight-input-color: var(--dynamic-border-color, var(--navigationLinkColor));
  2094. --fx-highlight-input-single-trace-animation-duration: 5s;
  2095. --fx-highlight-input-double-trace-animation-duration: 6s;
  2096. --fx-highlight-input-border-bottom-single-trace-animation-duration: 3s;
  2097. --fx-highlight-input-border-bottom-double-trace-animation-duration: 4s;
  2098. --fx-highlight-input-glow-animation-duration: 2.5s;
  2099. }
  2100. .sqs-block-form.sqs-background-enabled {
  2101. --fx-border-color-accent-hsl: var(--tweak-form-block-field-accent-color-on-background-hsl);
  2102. --fx-border-color-accent-a: var(--tweak-form-block-field-accent-color-on-background-a);
  2103. }
  2104. .form-item .form-input-effects {
  2105. position: absolute;
  2106. inset: 0 !important;
  2107. pointer-events: none;
  2108. content-visibility: auto;
  2109. display: block;
  2110. }
  2111. /* Hover/Focus states global config
  2112. ================================================= */
  2113. .form-field-border-all .sqs-block-form {
  2114. --fx-input-border-width: var(--form-field-border-thickness);
  2115. --fx-input-border-width-active: var(--form-field-border-thickness);
  2116. }
  2117. .form-field-border-bottom .sqs-block-form {
  2118. --fx-input-border-width: 0 0 var(--form-field-border-thickness) 0;
  2119. --fx-input-border-width-active: 0 0 var(--form-field-border-thickness) 0;
  2120. }
  2121. /* Hover/Focus states opacity config (3 available types - accent, opacity, scale-up)
  2122. ================================================= */
  2123. .form-field-hover-focus-accent,
  2124. .form-field-hover-focus-opacity,
  2125. .form-field-hover-focus-scale-up {
  2126. /* disable checkbox & radio hover backgrounds when outline */
  2127. /* disable input hover backgrounds when outline */
  2128. }
  2129. .form-field-hover-focus-accent .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  2130. .form-field-hover-focus-opacity .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  2131. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]),
  2132. .form-field-hover-focus-accent .sqs-block-form .form-item textarea,
  2133. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea,
  2134. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea,
  2135. .form-field-hover-focus-accent .sqs-block-form .form-item select,
  2136. .form-field-hover-focus-opacity .sqs-block-form .form-item select,
  2137. .form-field-hover-focus-scale-up .sqs-block-form .form-item select {
  2138. /* disable input backgrounds */
  2139. /* used to allow border to control background to avoid subpixel rendering issues */
  2140. z-index: 1;
  2141. background: transparent !important;
  2142. }
  2143. .form-field-hover-focus-accent .sqs-block-form .form-item input,
  2144. .form-field-hover-focus-opacity .sqs-block-form .form-item input,
  2145. .form-field-hover-focus-scale-up .sqs-block-form .form-item input,
  2146. .form-field-hover-focus-accent .sqs-block-form .form-item textarea,
  2147. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea,
  2148. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea,
  2149. .form-field-hover-focus-accent .sqs-block-form .form-item select,
  2150. .form-field-hover-focus-opacity .sqs-block-form .form-item select,
  2151. .form-field-hover-focus-scale-up .sqs-block-form .form-item select {
  2152. border-color: transparent !important;
  2153. }
  2154. @media (hover: hover) {
  2155. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover ~ *:not(.option),
  2156. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover ~ *:not(.option),
  2157. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover ~ *:not(.option),
  2158. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover ~ *:not(.option),
  2159. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover ~ *:not(.option),
  2160. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover ~ *:not(.option),
  2161. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover ~ *:not(.option),
  2162. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover ~ *:not(.option),
  2163. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover ~ *:not(.option),
  2164. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover[type="checkbox"]::after,
  2165. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover[type="checkbox"]::after,
  2166. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover[type="checkbox"]::after,
  2167. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover[type="checkbox"]::after,
  2168. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover[type="checkbox"]::after,
  2169. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover[type="checkbox"]::after,
  2170. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover[type="checkbox"]::after,
  2171. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover[type="checkbox"]::after,
  2172. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover[type="checkbox"]::after,
  2173. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover[type="checkbox"] ~ *,
  2174. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover[type="checkbox"] ~ *,
  2175. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover[type="checkbox"] ~ *,
  2176. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover[type="checkbox"] ~ *,
  2177. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover[type="checkbox"] ~ *,
  2178. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover[type="checkbox"] ~ *,
  2179. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover[type="checkbox"] ~ *,
  2180. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover[type="checkbox"] ~ *,
  2181. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover[type="checkbox"] ~ * {
  2182. --fx-input-border-width: var(--fx-input-border-width-active);
  2183. --fx-radio-border-width: var(--fx-radio-border-width-active);
  2184. --fx-checkbox-border-width: var(--fx-checkbox-border-width-active);
  2185. }
  2186. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover ~ .form-input-effects .form-input-effects-border,
  2187. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover ~ .form-input-effects .form-input-effects-border,
  2188. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover ~ .form-input-effects .form-input-effects-border,
  2189. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2190. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2191. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2192. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2193. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2194. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2195. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover[type="radio"] ~ *,
  2196. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover[type="radio"] ~ *,
  2197. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover[type="radio"] ~ *,
  2198. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover[type="radio"] ~ *,
  2199. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover[type="radio"] ~ *,
  2200. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover[type="radio"] ~ *,
  2201. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover[type="radio"] ~ *,
  2202. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover[type="radio"] ~ *,
  2203. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover[type="radio"] ~ *,
  2204. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover[type="checkbox"]::after,
  2205. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover[type="checkbox"]::after,
  2206. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover[type="checkbox"]::after,
  2207. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover[type="checkbox"]::after,
  2208. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover[type="checkbox"]::after,
  2209. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover[type="checkbox"]::after,
  2210. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover[type="checkbox"]::after,
  2211. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover[type="checkbox"]::after,
  2212. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover[type="checkbox"]::after,
  2213. .form-field-hover-focus-accent .sqs-block-form .form-item input:hover[type="checkbox"] ~ *,
  2214. .form-field-hover-focus-opacity .sqs-block-form .form-item input:hover[type="checkbox"] ~ *,
  2215. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover[type="checkbox"] ~ *,
  2216. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:hover[type="checkbox"] ~ *,
  2217. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:hover[type="checkbox"] ~ *,
  2218. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover[type="checkbox"] ~ *,
  2219. .form-field-hover-focus-accent .sqs-block-form .form-item select:hover[type="checkbox"] ~ *,
  2220. .form-field-hover-focus-opacity .sqs-block-form .form-item select:hover[type="checkbox"] ~ *,
  2221. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover[type="checkbox"] ~ * {
  2222. --fx-border-alpha: var(--fx-border-alpha-hover, 1);
  2223. }
  2224. }
  2225. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus,
  2226. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus,
  2227. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus,
  2228. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus,
  2229. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus,
  2230. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus,
  2231. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus,
  2232. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus,
  2233. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus,
  2234. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus-visible,
  2235. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus-visible,
  2236. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus-visible,
  2237. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus-visible,
  2238. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus-visible,
  2239. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus-visible,
  2240. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus-visible,
  2241. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus-visible,
  2242. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus-visible,
  2243. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="radio"] ~ *,
  2244. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="radio"] ~ *,
  2245. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="radio"] ~ *,
  2246. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="radio"] ~ *,
  2247. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="radio"] ~ *,
  2248. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="radio"] ~ *,
  2249. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="radio"] ~ *,
  2250. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="radio"] ~ *,
  2251. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="radio"] ~ *,
  2252. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus-visible[type="radio"] ~ *,
  2253. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus-visible[type="radio"] ~ *,
  2254. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus-visible[type="radio"] ~ *,
  2255. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus-visible[type="radio"] ~ *,
  2256. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus-visible[type="radio"] ~ *,
  2257. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus-visible[type="radio"] ~ *,
  2258. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus-visible[type="radio"] ~ *,
  2259. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus-visible[type="radio"] ~ *,
  2260. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus-visible[type="radio"] ~ *,
  2261. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2262. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2263. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2264. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2265. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2266. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2267. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2268. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2269. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2270. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus-visible[type="checkbox"] ~ *,
  2271. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus-visible[type="checkbox"] ~ *,
  2272. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus-visible[type="checkbox"] ~ *,
  2273. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus-visible[type="checkbox"] ~ *,
  2274. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus-visible[type="checkbox"] ~ *,
  2275. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus-visible[type="checkbox"] ~ *,
  2276. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus-visible[type="checkbox"] ~ *,
  2277. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus-visible[type="checkbox"] ~ *,
  2278. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus-visible[type="checkbox"] ~ * {
  2279. outline-color: transparent !important;
  2280. }
  2281. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus ~ *:not(.option),
  2282. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus ~ *:not(.option),
  2283. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus ~ *:not(.option),
  2284. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus ~ *:not(.option),
  2285. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus ~ *:not(.option),
  2286. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus ~ *:not(.option),
  2287. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus ~ *:not(.option),
  2288. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus ~ *:not(.option),
  2289. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus ~ *:not(.option),
  2290. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2291. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2292. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2293. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2294. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2295. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2296. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="checkbox"]::after,
  2297. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="checkbox"]::after,
  2298. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="checkbox"]::after,
  2299. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2300. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2301. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2302. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2303. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2304. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2305. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2306. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2307. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="checkbox"] ~ * {
  2308. --fx-input-border-width: var(--fx-input-border-width-active);
  2309. --fx-radio-border-width: var(--fx-radio-border-width-active);
  2310. --fx-checkbox-border-width: var(--fx-checkbox-border-width-active);
  2311. }
  2312. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus ~ .form-input-effects .form-input-effects-border,
  2313. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus ~ .form-input-effects .form-input-effects-border,
  2314. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus ~ .form-input-effects .form-input-effects-border,
  2315. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2316. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2317. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2318. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2319. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2320. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2321. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="radio"] ~ *,
  2322. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="radio"] ~ *,
  2323. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="radio"] ~ *,
  2324. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="radio"] ~ *,
  2325. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="radio"] ~ *,
  2326. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="radio"] ~ *,
  2327. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="radio"] ~ *,
  2328. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="radio"] ~ *,
  2329. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="radio"] ~ *,
  2330. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2331. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2332. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2333. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2334. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2335. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2336. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="checkbox"]::after,
  2337. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="checkbox"]::after,
  2338. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="checkbox"]::after,
  2339. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2340. .form-field-hover-focus-opacity .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2341. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus[type="checkbox"] ~ *,
  2342. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2343. .form-field-hover-focus-opacity .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2344. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus[type="checkbox"] ~ *,
  2345. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2346. .form-field-hover-focus-opacity .sqs-block-form .form-item select:focus[type="checkbox"] ~ *,
  2347. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus[type="checkbox"] ~ * {
  2348. --fx-border-alpha: var(--fx-border-alpha-focus, 1);
  2349. }
  2350. .form-field-hover-focus-accent .sqs-block-form .form-item .radio-mark,
  2351. .form-field-hover-focus-opacity .sqs-block-form .form-item .radio-mark,
  2352. .form-field-hover-focus-scale-up .sqs-block-form .form-item .radio-mark {
  2353. border-width: var(--fx-radio-border-width-active) !important;
  2354. border-color: transparent !important;
  2355. }
  2356. .form-field-hover-focus-accent .sqs-block-form .form-item .radio-mark::before,
  2357. .form-field-hover-focus-opacity .sqs-block-form .form-item .radio-mark::before,
  2358. .form-field-hover-focus-scale-up .sqs-block-form .form-item .radio-mark::before {
  2359. position: absolute;
  2360. border-style: solid;
  2361. border-width: var(--fx-radio-border-width);
  2362. border-color: hsla(var(--fx-border-color-hsl), calc(var(--fx-border-color-a) * var(--fx-border-alpha, 1)));
  2363. border-radius: inherit;
  2364. content: "";
  2365. inset: calc(var(--fx-radio-border-width-active) * -1);
  2366. transition: var(--fx-border-transition-border-width), var(--fx-border-transition-border-color), var(--fx-border-transition-transform);
  2367. }
  2368. .form-field-hover-focus-accent .sqs-block-form .form-item .radio-mark::after,
  2369. .form-field-hover-focus-opacity .sqs-block-form .form-item .radio-mark::after,
  2370. .form-field-hover-focus-scale-up .sqs-block-form .form-item .radio-mark::after {
  2371. transition: var(--fx-radio-transition-transform);
  2372. }
  2373. .form-field-hover-focus-accent .sqs-block-form .form-item input[type="checkbox"],
  2374. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="checkbox"],
  2375. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="checkbox"] {
  2376. border-width: var(--fx-checkbox-border-width-active) !important;
  2377. overflow: visible;
  2378. }
  2379. .form-field-hover-focus-accent .sqs-block-form .form-item input[type="checkbox"]::before,
  2380. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="checkbox"]::before,
  2381. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="checkbox"]::before {
  2382. -webkit-mask-image: linear-gradient(90deg, transparent 0 50%, #fff 50%);
  2383. -webkit-mask-position: 0 0;
  2384. -webkit-mask-size: 200% 100%;
  2385. mask-image: linear-gradient(90deg, transparent 0 50%, #fff 50%);
  2386. mask-position: 0 0;
  2387. mask-size: 200% 100%;
  2388. transform: scale(1);
  2389. transition: var(--fx-checkbox-transition-mask-position);
  2390. }
  2391. .form-field-hover-focus-accent .sqs-block-form .form-item input[type="checkbox"]::after,
  2392. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="checkbox"]::after,
  2393. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="checkbox"]::after {
  2394. position: absolute;
  2395. border: solid var(--fx-checkbox-border-width) hsla(var(--fx-border-color-hsl), calc(var(--fx-border-color-a) * var(--fx-border-alpha, 1)));
  2396. border-radius: inherit;
  2397. content: "";
  2398. inset: calc(var(--fx-checkbox-border-width-active) * -1);
  2399. transition: var(--fx-border-transition-border-width), var(--fx-border-transition-border-color), var(--fx-border-transition-transform);
  2400. }
  2401. .form-field-hover-focus-accent .sqs-block-form .form-item input[type="checkbox"]:checked::before,
  2402. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="checkbox"]:checked::before,
  2403. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="checkbox"]:checked::before {
  2404. -webkit-mask-position: -100% 0;
  2405. mask-position: -100% 0;
  2406. }
  2407. .form-field-hover-focus-accent .sqs-block-form .form-item .form-input-effects-border,
  2408. .form-field-hover-focus-opacity .sqs-block-form .form-item .form-input-effects-border,
  2409. .form-field-hover-focus-scale-up .sqs-block-form .form-item .form-input-effects-border {
  2410. /* style the border effect node */
  2411. position: absolute;
  2412. border-radius: var(--fx-input-border-radius);
  2413. inset: 0;
  2414. border-width: var(--fx-input-border-width);
  2415. border-style: solid;
  2416. border-color: hsla(var(--fx-border-color-hsl), calc(var(--fx-border-color-a) * var(--fx-border-alpha, 1)));
  2417. transition: var(--fx-border-transition-border-width), var(--fx-border-transition-border-color), var(--fill-hover-transition);
  2418. }
  2419. .form-field-hover-focus-accent.form-field-radio-type-button .sqs-block-form .form-item .radio-label,
  2420. .form-field-hover-focus-opacity.form-field-radio-type-button .sqs-block-form .form-item .radio-label,
  2421. .form-field-hover-focus-scale-up.form-field-radio-type-button .sqs-block-form .form-item .radio-label {
  2422. position: relative;
  2423. border-color: transparent !important;
  2424. }
  2425. .form-field-hover-focus-accent.form-field-radio-type-button .sqs-block-form .form-item .radio-label::before,
  2426. .form-field-hover-focus-opacity.form-field-radio-type-button .sqs-block-form .form-item .radio-label::before,
  2427. .form-field-hover-focus-scale-up.form-field-radio-type-button .sqs-block-form .form-item .radio-label::before {
  2428. position: absolute;
  2429. border: solid var(--fx-radio-border-width) hsla(var(--fx-border-color-hsl), calc(var(--fx-border-color-a) * var(--fx-border-alpha, 1)));
  2430. border-radius: inherit;
  2431. content: "";
  2432. inset: calc(var(--fx-radio-border-width-default) * -1);
  2433. transition: var(--fx-border-transition-border-width), var(--fx-border-transition-border-color), var(--fx-border-transition-transform);
  2434. }
  2435. .form-field-hover-focus-accent.form-field-checkbox-type-button .sqs-block-form .form-item.checkbox label span,
  2436. .form-field-hover-focus-opacity.form-field-checkbox-type-button .sqs-block-form .form-item.checkbox label span,
  2437. .form-field-hover-focus-scale-up.form-field-checkbox-type-button .sqs-block-form .form-item.checkbox label span {
  2438. position: relative;
  2439. border-color: transparent !important;
  2440. }
  2441. .form-field-hover-focus-accent.form-field-checkbox-type-button .sqs-block-form .form-item.checkbox label span::before,
  2442. .form-field-hover-focus-opacity.form-field-checkbox-type-button .sqs-block-form .form-item.checkbox label span::before,
  2443. .form-field-hover-focus-scale-up.form-field-checkbox-type-button .sqs-block-form .form-item.checkbox label span::before {
  2444. position: absolute;
  2445. border: solid var(--fx-checkbox-border-width) hsla(var(--fx-border-color-hsl), calc(var(--fx-border-color-a) * var(--fx-border-alpha, 1)));
  2446. border-radius: inherit;
  2447. content: "";
  2448. inset: calc(var(--fx-checkbox-border-width-default) * -1);
  2449. transition: var(--fx-border-transition-border-width), var(--fx-border-transition-border-color), var(--fx-border-transition-transform);
  2450. }
  2451. .form-field-hover-focus-accent.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox,
  2452. .form-field-hover-focus-opacity.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox,
  2453. .form-field-hover-focus-scale-up.form-field-checkbox-fill-outline .sqs-block-form .form-item.checkbox,
  2454. .form-field-hover-focus-accent.form-field-checkbox-fill-outline .sqs-block-form .form-item.email,
  2455. .form-field-hover-focus-opacity.form-field-checkbox-fill-outline .sqs-block-form .form-item.email,
  2456. .form-field-hover-focus-scale-up.form-field-checkbox-fill-outline .sqs-block-form .form-item.email,
  2457. .form-field-hover-focus-accent.form-field-radio-fill-outline .sqs-block-form .form-item.radio,
  2458. .form-field-hover-focus-opacity.form-field-radio-fill-outline .sqs-block-form .form-item.radio,
  2459. .form-field-hover-focus-scale-up.form-field-radio-fill-outline .sqs-block-form .form-item.radio,
  2460. .form-field-hover-focus-accent.form-field-survey-fill-outline .sqs-block-form .form-item.likert,
  2461. .form-field-hover-focus-opacity.form-field-survey-fill-outline .sqs-block-form .form-item.likert,
  2462. .form-field-hover-focus-scale-up.form-field-survey-fill-outline .sqs-block-form .form-item.likert {
  2463. --outline-hover-alpha-modifier: 0;
  2464. --outline-focus-alpha-modifier: 0;
  2465. }
  2466. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2467. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2468. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2469. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2470. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2471. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2472. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border,
  2473. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border,
  2474. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border {
  2475. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-alpha-modifier)));
  2476. }
  2477. @media (hover: hover) {
  2478. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover ~ .form-input-effects .form-input-effects-border,
  2479. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover ~ .form-input-effects .form-input-effects-border,
  2480. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover ~ .form-input-effects .form-input-effects-border,
  2481. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2482. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2483. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2484. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2485. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2486. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border {
  2487. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-hover-alpha-modifier)));
  2488. }
  2489. }
  2490. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus ~ .form-input-effects .form-input-effects-border,
  2491. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus ~ .form-input-effects .form-input-effects-border,
  2492. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus ~ .form-input-effects .form-input-effects-border,
  2493. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2494. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2495. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2496. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2497. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2498. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border {
  2499. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--solid-focus-alpha-modifier)));
  2500. }
  2501. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2502. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2503. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2504. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2505. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2506. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2507. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border,
  2508. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border,
  2509. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border {
  2510. --outline-hover-alpha-modifier: 0;
  2511. --outline-focus-alpha-modifier: 0;
  2512. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), 0);
  2513. }
  2514. @media (hover: hover) {
  2515. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover ~ .form-input-effects .form-input-effects-border,
  2516. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover ~ .form-input-effects .form-input-effects-border,
  2517. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):hover ~ .form-input-effects .form-input-effects-border,
  2518. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2519. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2520. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item textarea:hover ~ .form-input-effects .form-input-effects-border,
  2521. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2522. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border,
  2523. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item select:hover ~ .form-input-effects .form-input-effects-border {
  2524. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--outline-hover-alpha-modifier)));
  2525. }
  2526. }
  2527. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus ~ .form-input-effects .form-input-effects-border,
  2528. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus ~ .form-input-effects .form-input-effects-border,
  2529. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]):focus ~ .form-input-effects .form-input-effects-border,
  2530. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2531. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2532. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item textarea:focus ~ .form-input-effects .form-input-effects-border,
  2533. .form-field-hover-focus-accent.form-field-style-outline .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2534. .form-field-hover-focus-opacity.form-field-style-outline .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border,
  2535. .form-field-hover-focus-scale-up.form-field-style-outline .sqs-block-form .form-item select:focus ~ .form-input-effects .form-input-effects-border {
  2536. background-color: hsla(var(--dynamic-fill-color-hsl, var(--fallback-white-hsl)), calc(var(--dynamic-fill-color-a, 1) * var(--outline-focus-alpha-modifier)));
  2537. }
  2538. /* Border thickness increase effect
  2539. ================================================= */
  2540. .form-field-hover-focus-accent .sqs-block-form,
  2541. .form-field-hover-focus-opacity .sqs-block-form {
  2542. --fx-input-border-width-active: var(--fx-input-border-width-increase);
  2543. --fx-radio-border-width-active: calc(var(--fx-radio-border-width-default) + var(--fx-input-border-width-increase));
  2544. --fx-checkbox-border-width-active: calc(var(--fx-checkbox-border-width-default) + var(--fx-input-border-width-increase));
  2545. }
  2546. .form-field-hover-focus-accent.form-field-border-all .sqs-block-form,
  2547. .form-field-hover-focus-opacity.form-field-border-all .sqs-block-form {
  2548. --fx-input-border-width-active: calc(var(--form-field-border-thickness) + var(--fx-input-border-width-increase));
  2549. }
  2550. .form-field-hover-focus-accent.form-field-border-bottom .sqs-block-form,
  2551. .form-field-hover-focus-opacity.form-field-border-bottom .sqs-block-form {
  2552. --fx-input-border-width-active: 0 0 calc(var(--form-field-border-thickness) + var(--fx-input-border-width-increase)) 0;
  2553. }
  2554. /* Opacity change effect
  2555. ================================================= */
  2556. .form-field-hover-focus-opacity .sqs-block-form .form-item .form-input-effects-border,
  2557. .form-field-hover-focus-scale-up .sqs-block-form .form-item .form-input-effects-border,
  2558. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="radio"] ~ *,
  2559. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="radio"] ~ *,
  2560. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="checkbox"]::after,
  2561. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="checkbox"]::after,
  2562. .form-field-hover-focus-opacity .sqs-block-form .form-item input[type="checkbox"] ~ *,
  2563. .form-field-hover-focus-scale-up .sqs-block-form .form-item input[type="checkbox"] ~ * {
  2564. --fx-border-alpha: 0.55;
  2565. --fx-border-alpha-hover: 0.55;
  2566. --fx-border-alpha-focus: 1;
  2567. }
  2568. .form-field-hover-focus-opacity.form-field-border-none .sqs-block-form .form-item .form-input-effects-border,
  2569. .form-field-hover-focus-scale-up.form-field-border-none .sqs-block-form .form-item .form-input-effects-border {
  2570. --fx-border-alpha: 0;
  2571. --fx-border-alpha-hover: 0.55;
  2572. --fx-border-alpha-focus: 1;
  2573. }
  2574. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2575. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2576. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2577. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2578. .form-field-hover-focus-opacity.form-field-style-solid .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border,
  2579. .form-field-hover-focus-scale-up.form-field-style-solid .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border {
  2580. --solid-alpha-modifier: 0.8;
  2581. --solid-hover-alpha-modifier: 1;
  2582. }
  2583. .form-field-hover-focus-opacity.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox,
  2584. .form-field-hover-focus-scale-up.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox,
  2585. .form-field-hover-focus-opacity.form-field-checkbox-fill-solid .sqs-block-form .form-item.email,
  2586. .form-field-hover-focus-scale-up.form-field-checkbox-fill-solid .sqs-block-form .form-item.email,
  2587. .form-field-hover-focus-opacity.form-field-radio-fill-solid .sqs-block-form .form-item.radio,
  2588. .form-field-hover-focus-scale-up.form-field-radio-fill-solid .sqs-block-form .form-item.radio,
  2589. .form-field-hover-focus-opacity.form-field-survey-fill-solid .sqs-block-form .form-item.likert,
  2590. .form-field-hover-focus-scale-up.form-field-survey-fill-solid .sqs-block-form .form-item.likert {
  2591. --solid-alpha-modifier: 0.8;
  2592. --solid-hover-alpha-modifier: 1;
  2593. }
  2594. /* Accent color effect (transform)
  2595. ================================================= */
  2596. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus ~ *:not(.option),
  2597. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus ~ *:not(.option),
  2598. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus ~ *:not(.option),
  2599. .form-field-hover-focus-accent .sqs-block-form .form-item input:focus[type="checkbox"]::after,
  2600. .form-field-hover-focus-accent .sqs-block-form .form-item textarea:focus[type="checkbox"]::after,
  2601. .form-field-hover-focus-accent .sqs-block-form .form-item select:focus[type="checkbox"]::after {
  2602. --fx-border-color-hsl: var(--fx-border-color-accent-hsl);
  2603. --fx-border-color-a: var(--fx-border-color-accent-a);
  2604. }
  2605. .form-field-hover-focus-accent.form-field-border-none .sqs-block-form .form-item .form-input-effects-border {
  2606. --fx-border-alpha: 0;
  2607. }
  2608. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item input:not([type="checkbox"]):not([type="radio"]) ~ .form-input-effects .form-input-effects-border,
  2609. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item textarea ~ .form-input-effects .form-input-effects-border,
  2610. .form-field-hover-focus-accent.form-field-style-solid .sqs-block-form .form-item select ~ .form-input-effects .form-input-effects-border {
  2611. --solid-alpha-modifier: 1;
  2612. --solid-hover-alpha-modifier: 1;
  2613. }
  2614. .form-field-hover-focus-accent.form-field-checkbox-fill-solid .sqs-block-form .form-item.checkbox,
  2615. .form-field-hover-focus-accent.form-field-checkbox-fill-solid .sqs-block-form .form-item.email,
  2616. .form-field-hover-focus-accent.form-field-radio-fill-solid .sqs-block-form .form-item.radio,
  2617. .form-field-hover-focus-accent.form-field-survey-fill-solid .sqs-block-form .form-item.likert {
  2618. --solid-alpha-modifier: 1;
  2619. --solid-hover-alpha-modifier: 1;
  2620. }
  2621. /* Scale up effect (transform)
  2622. ================================================= */
  2623. .form-field-hover-focus-scale-up .sqs-block-form .form-item {
  2624. --inverted-solid-hover-alpha-modifier: 1;
  2625. --inverted-outline-hover-alpha-modifier: 1;
  2626. }
  2627. .form-field-hover-focus-scale-up .sqs-block-form .form-item .form-input-effects {
  2628. transition: var(--fx-border-transition-transform);
  2629. }
  2630. .form-field-hover-focus-scale-up .sqs-block-form .form-item input,
  2631. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea,
  2632. .form-field-hover-focus-scale-up .sqs-block-form .form-item select {
  2633. transition: var(--fill-hover-transition), var(--fx-border-transition-transform) !important;
  2634. }
  2635. @media (hover: hover) {
  2636. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover ~ .form-input-effects,
  2637. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover ~ .form-input-effects,
  2638. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover ~ .form-input-effects {
  2639. transform: scale(1.025);
  2640. }
  2641. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover ~ .radio-mark,
  2642. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover ~ .radio-mark,
  2643. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover ~ .radio-mark,
  2644. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:hover[type="checkbox"],
  2645. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:hover[type="checkbox"],
  2646. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:hover[type="checkbox"] {
  2647. transform: scale(1.1);
  2648. }
  2649. }
  2650. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus ~ .form-input-effects,
  2651. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus ~ .form-input-effects,
  2652. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus ~ .form-input-effects {
  2653. transform: scale(1.025);
  2654. }
  2655. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus-visible ~ .radio-mark,
  2656. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus-visible ~ .radio-mark,
  2657. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus-visible ~ .radio-mark,
  2658. .form-field-hover-focus-scale-up .sqs-block-form .form-item input:focus-visible[type="checkbox"],
  2659. .form-field-hover-focus-scale-up .sqs-block-form .form-item textarea:focus-visible[type="checkbox"],
  2660. .form-field-hover-focus-scale-up .sqs-block-form .form-item select:focus-visible[type="checkbox"] {
  2661. transform: scale(1.1);
  2662. }
  2663. .form-field-hover-focus-scale-up.form-field-checkbox-type-button .sqs-block-form .form-item:not(.email) input[type="checkbox"] ~ span {
  2664. transition: var(--fill-hover-transition), var(--fx-border-transition-transform) !important;
  2665. }
  2666. @media (hover: hover) {
  2667. .form-field-hover-focus-scale-up.form-field-checkbox-type-button .sqs-block-form .form-item:not(.email) input[type="checkbox"]:hover ~ span {
  2668. transform: scale(1.05);
  2669. }
  2670. }
  2671. .form-field-hover-focus-scale-up.form-field-checkbox-type-button .sqs-block-form .form-item:not(.email) input[type="checkbox"]:focus-visible ~ span {
  2672. transform: scale(1.05);
  2673. }
  2674. .form-field-hover-focus-scale-up.form-field-radio-type-button .sqs-block-form .form-item input[type="radio"] ~ .radio-label {
  2675. transition: var(--fill-hover-transition), var(--fx-border-transition-transform) !important;
  2676. }
  2677. @media (hover: hover) {
  2678. .form-field-hover-focus-scale-up.form-field-radio-type-button .sqs-block-form .form-item input[type="radio"]:hover ~ .radio-label {
  2679. transform: scale(1.05);
  2680. }
  2681. }
  2682. .form-field-hover-focus-scale-up.form-field-radio-type-button .sqs-block-form .form-item input[type="radio"]:focus-visible ~ .radio-label {
  2683. transform: scale(1.05);
  2684. }
  2685. /* Highlight base config (3 available types - single-trace, double-trace, glow)
  2686. ================================================= */
  2687. .sqs-block-form .field-list {
  2688. /* target valid first fields */
  2689. }
  2690. .sqs-block-form .field-list .form-input-effects-highlight {
  2691. position: absolute;
  2692. display: none;
  2693. border-radius: var(--fx-input-border-radius);
  2694. inset: 0;
  2695. transition: var(--fx-border-transition-opacity);
  2696. }
  2697. .sqs-block-form .field-list > .form-item.field:first-child input[value=""] ~ .form-input-effects .form-input-effects-highlight,
  2698. .sqs-block-form .field-list > .form-item.field:first-child select.show-placeholder ~ .form-input-effects .form-input-effects-highlight,
  2699. .sqs-block-form .field-list > .form-item.field:first-child textarea:empty ~ .form-input-effects .form-input-effects-highlight,
  2700. .sqs-block-form .field-list > .form-item.fields.name:first-child > .field:first-of-type input[value=""] ~ .form-input-effects .form-input-effects-highlight,
  2701. .sqs-block-form .field-list > .form-item.fields.address:first-child > .field:nth-of-type(3) input[value=""] ~ .form-input-effects .form-input-effects-highlight {
  2702. display: block;
  2703. --fx-highlight-input-animation-play-state: running;
  2704. }
  2705. @media (prefers-reduced-motion) {
  2706. .sqs-block-form .field-list > .form-item.field:first-child input[value=""] ~ .form-input-effects .form-input-effects-highlight,
  2707. .sqs-block-form .field-list > .form-item.field:first-child select.show-placeholder ~ .form-input-effects .form-input-effects-highlight,
  2708. .sqs-block-form .field-list > .form-item.field:first-child textarea:empty ~ .form-input-effects .form-input-effects-highlight,
  2709. .sqs-block-form .field-list > .form-item.fields.name:first-child > .field:first-of-type input[value=""] ~ .form-input-effects .form-input-effects-highlight,
  2710. .sqs-block-form .field-list > .form-item.fields.address:first-child > .field:nth-of-type(3) input[value=""] ~ .form-input-effects .form-input-effects-highlight {
  2711. display: none;
  2712. --fx-highlight-input-animation-play-state: paused;
  2713. }
  2714. }
  2715. .sqs-block-form .field-list > .form-item.field:first-child input[value=""]:focus ~ .form-input-effects .form-input-effects-highlight,
  2716. .sqs-block-form .field-list > .form-item.field:first-child select.show-placeholder:focus ~ .form-input-effects .form-input-effects-highlight,
  2717. .sqs-block-form .field-list > .form-item.field:first-child textarea:empty:focus ~ .form-input-effects .form-input-effects-highlight,
  2718. .sqs-block-form .field-list > .form-item.fields.name:first-child > .field:first-of-type input[value=""]:focus ~ .form-input-effects .form-input-effects-highlight,
  2719. .sqs-block-form .field-list > .form-item.fields.address:first-child > .field:nth-of-type(3) input[value=""]:focus ~ .form-input-effects .form-input-effects-highlight {
  2720. opacity: 0;
  2721. }
  2722. /* Single & Double Trace Highlight Styles
  2723. ================================================= */
  2724. @keyframes animation-form-field-fx-highlight-trace {
  2725. 0% {
  2726. left: 50%;
  2727. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(0deg);
  2728. }
  2729. 25% {
  2730. left: min(50%, 2.5em);
  2731. transform: translate3d(-50%, -50%, 0) scaleY(1.5) scaleX(1) rotate(90deg);
  2732. }
  2733. 50% {
  2734. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(180deg);
  2735. }
  2736. 75% {
  2737. left: calc(100% - min(2.5em, 50%));
  2738. transform: translate3d(-50%, -50%, 0) scaleY(1.5) scaleX(1) rotate(270deg);
  2739. }
  2740. 100% {
  2741. left: 50%;
  2742. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(360deg);
  2743. }
  2744. }
  2745. /* Note: Separate namespace for double trace so animation progress is not retained on switch */
  2746. @keyframes animation-form-field-fx-highlight-double-trace {
  2747. 0% {
  2748. left: 50%;
  2749. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(0deg);
  2750. }
  2751. 25% {
  2752. left: min(50%, 2.5em);
  2753. transform: translate3d(-50%, -50%, 0) scaleY(1.5) scaleX(1) rotate(90deg);
  2754. }
  2755. 50% {
  2756. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(180deg);
  2757. }
  2758. 75% {
  2759. left: calc(100% - min(2.5em, 50%));
  2760. transform: translate3d(-50%, -50%, 0) scaleY(1.5) scaleX(1) rotate(270deg);
  2761. }
  2762. 100% {
  2763. left: 50%;
  2764. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(360deg);
  2765. }
  2766. }
  2767. @keyframes animation-form-field-fx-highlight-trace-bottom {
  2768. 0% {
  2769. left: calc(100% + 2.5em);
  2770. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(0deg);
  2771. }
  2772. 100% {
  2773. left: -2.5em;
  2774. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(0deg);
  2775. }
  2776. }
  2777. /* Note: Separate namespace for double trace so animation progress is not retained on switch */
  2778. @keyframes animation-form-field-fx-highlight-double-trace-bottom {
  2779. 0% {
  2780. left: calc(100% + 2.5em);
  2781. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(0deg);
  2782. }
  2783. 100% {
  2784. left: -2.5em;
  2785. transform: translate3d(-50%, -50%, 0) scaleY(1) scaleX(3) rotate(0deg);
  2786. }
  2787. }
  2788. .form-field-border-all .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-single-trace,
  2789. .form-field-border-none .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-single-trace,
  2790. .form-field-border-all .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace,
  2791. .form-field-border-none .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace {
  2792. --fx-animation-form-field-fx-highlight-trace: animation-form-field-fx-highlight-trace;
  2793. --fx-animation-form-field-fx-highlight-double-trace: animation-form-field-fx-highlight-double-trace;
  2794. /* Generates a masked border when all sides */
  2795. overflow: hidden;
  2796. padding: var(--fx-highlight-input-border-width);
  2797. border: solid 0 transparent;
  2798. inset: 0;
  2799. mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  2800. -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  2801. -webkit-mask-composite: xor;
  2802. mask-composite: exclude;
  2803. transition: padding var(--fx-border-transition-duration-border-width) var(--fx-ease-out), var(--fx-border-transition-opacity);
  2804. }
  2805. .form-field-border-bottom .sqs-block-form {
  2806. /* use the border-bottom animation duration */
  2807. --fx-highlight-input-single-trace-animation-duration: var(--fx-highlight-input-border-bottom-single-trace-animation-duration);
  2808. --fx-highlight-input-double-trace-animation-duration: var(--fx-highlight-input-border-bottom-double-trace-animation-duration);
  2809. /* generates a clipped border-bottom while retaining the standard field size */
  2810. }
  2811. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-single-trace,
  2812. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace {
  2813. --fx-animation-form-field-fx-highlight-trace: animation-form-field-fx-highlight-trace-bottom;
  2814. --fx-animation-form-field-fx-highlight-double-trace: animation-form-field-fx-highlight-double-trace-bottom;
  2815. overflow: hidden;
  2816. clip-path: polygon(0% calc(100% - var(--fx-highlight-input-border-width)), 100% calc(100% - var(--fx-highlight-input-border-width)), 100% 100%, 0% 100%);
  2817. inset: 0;
  2818. transition: clip-path var(--fx-border-transition-duration-border-width) var(--fx-ease-out), var(--fx-border-transition-opacity);
  2819. }
  2820. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-single-trace::before,
  2821. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace::before,
  2822. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-single-trace::after,
  2823. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace::after {
  2824. animation-direction: reverse;
  2825. }
  2826. .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-single-trace::before {
  2827. position: absolute;
  2828. top: 50%;
  2829. left: 50%;
  2830. height: max(20em, 300%);
  2831. aspect-ratio: 1 / 1;
  2832. background: transparent;
  2833. background: conic-gradient(from 0deg at 50% 50%, transparent 40%, var(--fx-highlight-input-color), transparent 60%);
  2834. content: "";
  2835. mask-image: linear-gradient(to right, transparent 40%, var(--fx-highlight-input-color), transparent 60%);
  2836. -webkit-mask-image: linear-gradient(to right, transparent 40%, var(--fx-highlight-input-color), transparent 60%);
  2837. transform: translate3d(-50%, -50%, 0) rotate(0deg);
  2838. transform-origin: 50% 50%;
  2839. animation: var(--fx-highlight-input-single-trace-animation-duration) linear infinite var(--fx-animation-form-field-fx-highlight-trace);
  2840. animation-play-state: var(--fx-highlight-input-animation-play-state, paused);
  2841. }
  2842. .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace::before,
  2843. .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace::after {
  2844. position: absolute;
  2845. top: 50%;
  2846. left: 50%;
  2847. height: max(20em, 300%);
  2848. aspect-ratio: 1 / 1;
  2849. background: transparent;
  2850. background: conic-gradient(from 0deg at 50% 50%, transparent 40%, var(--fx-highlight-input-color), transparent 60%);
  2851. content: "";
  2852. mask-image: linear-gradient(to right, transparent 40%, var(--fx-highlight-input-color), transparent 60%);
  2853. -webkit-mask-image: linear-gradient(to right, transparent 40%, var(--fx-highlight-input-color), transparent 60%);
  2854. transform: translate3d(-50%, -50%, 0) rotate(0deg);
  2855. transform-origin: 50% 50%;
  2856. }
  2857. .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace::before {
  2858. animation: var(--fx-highlight-input-double-trace-animation-duration) linear infinite var(--fx-animation-form-field-fx-highlight-double-trace);
  2859. animation-play-state: var(--fx-highlight-input-animation-play-state, paused);
  2860. }
  2861. .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-double-trace::after {
  2862. animation: var(--fx-highlight-input-double-trace-animation-duration) calc(var(--fx-highlight-input-double-trace-animation-duration) * -0.5) linear infinite var(--fx-animation-form-field-fx-highlight-double-trace);
  2863. animation-play-state: var(--fx-highlight-input-animation-play-state, paused);
  2864. }
  2865. /* Glow Highlight Styles
  2866. ================================================= */
  2867. @keyframes animation-form-field-fx-highlight-glow {
  2868. 0% {
  2869. opacity: 0.1;
  2870. }
  2871. 50% {
  2872. opacity: 1;
  2873. }
  2874. 100% {
  2875. opacity: 0.1;
  2876. }
  2877. }
  2878. .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-glow::before {
  2879. position: absolute;
  2880. border: solid var(--fx-highlight-input-border-width) var(--fx-highlight-input-color);
  2881. border-radius: inherit;
  2882. animation: var(--fx-highlight-input-glow-animation-duration) linear infinite animation-form-field-fx-highlight-glow;
  2883. animation-play-state: var(--fx-highlight-input-animation-play-state, paused);
  2884. content: "";
  2885. inset: 0;
  2886. }
  2887. .form-field-border-bottom .sqs-block-form .form-item .form-input-effects-highlight.form-field-highlight-glow::before {
  2888. border-width: 0 0 var(--fx-highlight-input-border-width);
  2889. }
  2890. @keyframes shake-three {
  2891. 0% {
  2892. transform: translate3d(0, 0, 0);
  2893. }
  2894. 16.666% {
  2895. transform: translate3d(0.333rem, 0, 0);
  2896. }
  2897. 33.333% {
  2898. transform: translate3d(-0.333rem, 0, 0);
  2899. }
  2900. 50% {
  2901. transform: translate3d(0.333rem, 0, 0);
  2902. }
  2903. 66.666% {
  2904. transform: translate3d(-0.333rem, 0, 0);
  2905. }
  2906. 83.333% {
  2907. transform: translate3d(0.333rem, 0, 0);
  2908. }
  2909. 100% {
  2910. transform: translate3d(0, 0, 0);
  2911. }
  2912. }
  2913. .form-submit-button-state {
  2914. display: none;
  2915. }
  2916. .form-submit-button-style-spinner .form-submit-button-label,
  2917. .form-submit-button-style-ellipsis .form-submit-button-label,
  2918. .form-submit-button-style-bar .form-submit-button-label,
  2919. .form-submit-button-style-circle .form-submit-button-label {
  2920. display: none;
  2921. }
  2922. .form-submit-button-style-spinner .form-submit-button.error,
  2923. .form-submit-button-style-ellipsis .form-submit-button.error,
  2924. .form-submit-button-style-bar .form-submit-button.error,
  2925. .form-submit-button-style-circle .form-submit-button.error {
  2926. animation: shake-three 0.4s cubic-bezier(0.37, 0, 0.63, 1) forwards;
  2927. }
  2928. .form-submit-button-style-spinner .form-submit-button.none .form-submit-button-state > :nth-child(1),
  2929. .form-submit-button-style-ellipsis .form-submit-button.none .form-submit-button-state > :nth-child(1),
  2930. .form-submit-button-style-bar .form-submit-button.none .form-submit-button-state > :nth-child(1),
  2931. .form-submit-button-style-circle .form-submit-button.none .form-submit-button-state > :nth-child(1),
  2932. .form-submit-button-style-spinner .form-submit-button.error .form-submit-button-state > :nth-child(1),
  2933. .form-submit-button-style-ellipsis .form-submit-button.error .form-submit-button-state > :nth-child(1),
  2934. .form-submit-button-style-bar .form-submit-button.error .form-submit-button-state > :nth-child(1),
  2935. .form-submit-button-style-circle .form-submit-button.error .form-submit-button-state > :nth-child(1),
  2936. .form-submit-button-style-spinner .form-submit-button.submitting .form-submit-button-state > :nth-child(2),
  2937. .form-submit-button-style-ellipsis .form-submit-button.submitting .form-submit-button-state > :nth-child(2),
  2938. .form-submit-button-style-bar .form-submit-button.submitting .form-submit-button-state > :nth-child(2),
  2939. .form-submit-button-style-circle .form-submit-button.submitting .form-submit-button-state > :nth-child(2),
  2940. .form-submit-button-style-spinner .form-submit-button.submitted .form-submit-button-state > :nth-child(3),
  2941. .form-submit-button-style-ellipsis .form-submit-button.submitted .form-submit-button-state > :nth-child(3),
  2942. .form-submit-button-style-bar .form-submit-button.submitted .form-submit-button-state > :nth-child(3),
  2943. .form-submit-button-style-circle .form-submit-button.submitted .form-submit-button-state > :nth-child(3) {
  2944. animation-play-state: running;
  2945. opacity: 1;
  2946. visibility: visible;
  2947. transition-delay: 0.1s;
  2948. }
  2949. .form-submit-button-style-spinner .form-submit-button-state,
  2950. .form-submit-button-style-ellipsis .form-submit-button-state,
  2951. .form-submit-button-style-bar .form-submit-button-state,
  2952. .form-submit-button-style-circle .form-submit-button-state {
  2953. display: grid;
  2954. align-items: center;
  2955. justify-content: center;
  2956. grid-template-areas: "state";
  2957. pointer-events: none;
  2958. }
  2959. .form-submit-button-style-spinner .form-submit-button-state > span,
  2960. .form-submit-button-style-ellipsis .form-submit-button-state > span,
  2961. .form-submit-button-style-bar .form-submit-button-state > span,
  2962. .form-submit-button-style-circle .form-submit-button-state > span {
  2963. display: flex;
  2964. align-items: center;
  2965. justify-content: center;
  2966. animation-play-state: paused;
  2967. align-self: center;
  2968. justify-self: center;
  2969. grid-area: state;
  2970. opacity: 0;
  2971. visibility: hidden;
  2972. transition: opacity 0.2s cubic-bezier(0.61, 1, 0.88, 1), visibility 0.2s cubic-bezier(0.61, 1, 0.88, 1);
  2973. }
  2974. .form-submit-button-style-spinner .form-submit-button-state > span span,
  2975. .form-submit-button-style-ellipsis .form-submit-button-state > span span,
  2976. .form-submit-button-style-bar .form-submit-button-state > span span,
  2977. .form-submit-button-style-circle .form-submit-button-state > span span {
  2978. animation-play-state: inherit;
  2979. }
  2980. /* SPINNER button (conic gradient)
  2981. =================================================*/
  2982. .form-submit-button-style-spinner .form-submit-button-state {
  2983. --thickness: 0.12em;
  2984. /* submitting state */
  2985. /* submitted state */
  2986. }
  2987. @keyframes keyframes-spinner {
  2988. from {
  2989. transform: rotate(0deg);
  2990. }
  2991. to {
  2992. transform: rotate(360deg);
  2993. }
  2994. }
  2995. @keyframes keyframes-spinner-check {
  2996. from {
  2997. transform: translate3d(-100%, 0, 0);
  2998. }
  2999. to {
  3000. transform: translate3d(0%, 0, 0);
  3001. }
  3002. }
  3003. .form-submit-button-style-spinner .form-submit-button-state :nth-child(2) span {
  3004. position: relative;
  3005. width: 1.3em;
  3006. height: 1.3em;
  3007. border-radius: 50%;
  3008. animation: keyframes-spinner 0.75s linear infinite;
  3009. animation-play-state: inherit;
  3010. background: conic-gradient(from 0.25turn, transparent, currentcolor 75%);
  3011. mask-image: radial-gradient(closest-side, transparent 0% calc(100% - var(--thickness) - 1px), currentcolor calc(100% - var(--thickness)));
  3012. -webkit-mask-image: radial-gradient(closest-side, transparent 0% calc(100% - var(--thickness) - 1px), currentcolor calc(100% - var(--thickness)));
  3013. pointer-events: none !important;
  3014. }
  3015. .form-submit-button-style-spinner .form-submit-button-state :nth-child(3) {
  3016. position: relative;
  3017. width: 1.3em;
  3018. height: 1.3em;
  3019. }
  3020. .form-submit-button-style-spinner .form-submit-button-state :nth-child(3)::before {
  3021. position: absolute;
  3022. border: solid var(--thickness) currentcolor;
  3023. border-radius: 50%;
  3024. content: "";
  3025. inset: 0;
  3026. }
  3027. .form-submit-button-style-spinner .form-submit-button-state :nth-child(3) span {
  3028. position: absolute;
  3029. border-radius: 50%;
  3030. inset: 0;
  3031. mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><polyline points='26.7,45.1 45.7,63.7 73.3,36.3' fill='none' stroke='black' stroke-width='8' /></svg>");
  3032. -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><polyline points='26.7,45.1 45.7,63.7 73.3,36.3' fill='none' stroke='black' stroke-width='8' /></svg>");
  3033. mask-size: 100%;
  3034. -webkit-mask-size: 100%;
  3035. }
  3036. .form-submit-button-style-spinner .form-submit-button-state :nth-child(3) span::before {
  3037. position: absolute;
  3038. animation: keyframes-spinner-check 0.25s 0.15s cubic-bezier(0.61, 1, 0.88, 1) forwards;
  3039. animation-play-state: inherit;
  3040. background-color: currentcolor;
  3041. content: "";
  3042. inset: 0;
  3043. transform: translate3d(-100%, 0, 0);
  3044. }
  3045. /* CIRCLE button (spinning circle)
  3046. =================================================*/
  3047. .form-submit-button-style-circle .form-submit-button-state {
  3048. /* submitting state */
  3049. /* submitted state */
  3050. }
  3051. @keyframes keyframes-circle {
  3052. from,
  3053. to {
  3054. animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
  3055. }
  3056. from {
  3057. transform: rotateY(0deg);
  3058. }
  3059. to {
  3060. transform: rotateY(1440deg);
  3061. }
  3062. }
  3063. @keyframes keyframes-circle-check {
  3064. from {
  3065. transform: translate3d(0%, 0, 0);
  3066. }
  3067. to {
  3068. transform: translate3d(100%, 0, 0);
  3069. }
  3070. }
  3071. .form-submit-button-style-circle .form-submit-button-state :nth-child(2) span {
  3072. width: 1.3em;
  3073. height: 1.3em;
  3074. border-radius: 50%;
  3075. animation: keyframes-circle 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  3076. animation-play-state: inherit;
  3077. background: currentcolor;
  3078. }
  3079. .form-submit-button-style-circle .form-submit-button-state :nth-child(3) span {
  3080. position: relative;
  3081. overflow: hidden;
  3082. width: 1.3em;
  3083. height: 1.3em;
  3084. border-radius: 50%;
  3085. }
  3086. .form-submit-button-style-circle .form-submit-button-state :nth-child(3) span::before,
  3087. .form-submit-button-style-circle .form-submit-button-state :nth-child(3) span::after {
  3088. position: absolute;
  3089. content: "";
  3090. inset: 0;
  3091. }
  3092. .form-submit-button-style-circle .form-submit-button-state :nth-child(3) span::before {
  3093. animation: keyframes-circle-check 0.25s 0.15s cubic-bezier(0.61, 1, 0.88, 1) forwards;
  3094. animation-play-state: inherit;
  3095. background-color: currentcolor;
  3096. }
  3097. .form-submit-button-style-circle .form-submit-button-state :nth-child(3) span::after {
  3098. background-color: currentcolor;
  3099. inset: 0;
  3100. -webkit-mask-image: url("data:image/svg+xml;utf8,<svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><defs><mask id='check'><rect width='100%' height='100%' fill='white' /><polyline points='26.7,45.1 45.7,63.7 73.3,36.3' fill='none' stroke='black' stroke-width='8' /></mask></defs><rect width='100%' height='100%' fill='black' mask='url(%23check)' /></svg>");
  3101. -webkit-mask-size: 100%;
  3102. mask-image: url("data:image/svg+xml;utf8,<svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><defs><mask id='check'><rect width='100%' height='100%' fill='white' /><polyline points='26.7,45.1 45.7,63.7 73.3,36.3' fill='none' stroke='black' stroke-width='8' /></mask></defs><rect width='100%' height='100%' fill='black' mask='url(%23check)' /></svg>");
  3103. mask-size: 100%;
  3104. }
  3105. /* BAR & ELLIPSIS button submitted state style (shared)
  3106. =================================================*/
  3107. .form-submit-button-style-bar .form-submit-button-state,
  3108. .form-submit-button-style-ellipsis .form-submit-button-state {
  3109. /* submitted state */
  3110. }
  3111. @keyframes keyframes-check {
  3112. from {
  3113. transform: translate3d(-100%, 0, 0);
  3114. }
  3115. to {
  3116. transform: translate3d(0%, 0, 0);
  3117. }
  3118. }
  3119. .form-submit-button-style-bar .form-submit-button-state :nth-child(3) span,
  3120. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(3) span {
  3121. position: relative;
  3122. width: 1.3em;
  3123. height: 1.3em;
  3124. -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpolyline points='10.3,41.6 42.6,73.3 89.7,26.7' fill='none' stroke='black' stroke-width='8' /%3E%3C/svg%3E");
  3125. -webkit-mask-size: 100%;
  3126. mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpolyline points='10.3,41.6 42.6,73.3 89.7,26.7' fill='none' stroke='black' stroke-width='8' /%3E%3C/svg%3E");
  3127. mask-size: 100%;
  3128. }
  3129. .form-submit-button-style-bar .form-submit-button-state :nth-child(3) span::before,
  3130. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(3) span::before {
  3131. position: absolute;
  3132. animation: keyframes-check 0.25s 0.15s cubic-bezier(0.61, 1, 0.88, 1) forwards;
  3133. animation-play-state: inherit;
  3134. background-color: currentcolor;
  3135. content: "";
  3136. inset: 0;
  3137. transform: translate3d(-100%, 0, 0);
  3138. }
  3139. /* BAR button (indeterminate progress)
  3140. =================================================*/
  3141. .form-submit-button-style-bar .form-submit-button-state {
  3142. /* submitting state */
  3143. }
  3144. @keyframes keyframes-bar {
  3145. from {
  3146. transform: translate3d(-200%, 0, 0);
  3147. }
  3148. to {
  3149. transform: translate3d(100%, 0, 0);
  3150. }
  3151. }
  3152. .form-submit-button-style-bar .form-submit-button-state :nth-child(2) {
  3153. width: 100%;
  3154. }
  3155. .form-submit-button-style-bar .form-submit-button-state :nth-child(2) span {
  3156. position: relative;
  3157. overflow: hidden;
  3158. width: 100%;
  3159. height: max(2px, 0.12em);
  3160. border-radius: 1em;
  3161. }
  3162. .form-submit-button-style-bar .form-submit-button-state :nth-child(2) span::before,
  3163. .form-submit-button-style-bar .form-submit-button-state :nth-child(2) span::after {
  3164. position: absolute;
  3165. border-radius: inherit;
  3166. background: currentcolor;
  3167. content: "";
  3168. }
  3169. .form-submit-button-style-bar .form-submit-button-state :nth-child(2) span::before {
  3170. inset: 0;
  3171. opacity: 0.5;
  3172. }
  3173. .form-submit-button-style-bar .form-submit-button-state :nth-child(2) span::after {
  3174. position: absolute;
  3175. top: 0;
  3176. bottom: 0;
  3177. left: 50%;
  3178. width: 50%;
  3179. animation: keyframes-bar 0.75s linear infinite;
  3180. animation-play-state: inherit;
  3181. }
  3182. /* ELLIPSIS button (3 dots)
  3183. =================================================*/
  3184. .form-submit-button-style-ellipsis .form-submit-button-state {
  3185. /* submitting state */
  3186. }
  3187. @keyframes keyframes-ellipsis-grow {
  3188. from {
  3189. transform: scale(0);
  3190. }
  3191. to {
  3192. transform: scale(1);
  3193. }
  3194. }
  3195. @keyframes keyframes-ellipsis-shrink {
  3196. from {
  3197. transform: scale(1);
  3198. }
  3199. to {
  3200. transform: scale(0);
  3201. }
  3202. }
  3203. @keyframes keyframes-ellipsis-shift {
  3204. from {
  3205. transform: translate(0, 0);
  3206. }
  3207. to {
  3208. transform: translate(calc(0.35em * 2), 0);
  3209. }
  3210. }
  3211. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) {
  3212. position: relative;
  3213. display: flex;
  3214. width: calc(0.35em * 5);
  3215. justify-content: space-between;
  3216. }
  3217. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span {
  3218. position: absolute;
  3219. inset: 0;
  3220. }
  3221. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2)::before {
  3222. animation: keyframes-ellipsis-grow 0.75s infinite;
  3223. }
  3224. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2)::after {
  3225. animation: keyframes-ellipsis-shrink 0.75s infinite;
  3226. }
  3227. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span::before,
  3228. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span::after {
  3229. position: absolute;
  3230. animation: keyframes-ellipsis-shift 0.75s infinite;
  3231. }
  3232. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2)::before,
  3233. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2)::after,
  3234. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span::before,
  3235. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span::after {
  3236. display: block;
  3237. width: 0.35em;
  3238. height: 0.35em;
  3239. border-radius: 50%;
  3240. animation-play-state: inherit;
  3241. background: currentcolor;
  3242. content: "";
  3243. }
  3244. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span::before {
  3245. left: 0;
  3246. }
  3247. .form-submit-button-style-ellipsis .form-submit-button-state :nth-child(2) span::after {
  3248. right: calc(0.35em * 2);
  3249. }
  3250. @keyframes anim-form-post-submit {
  3251. from {
  3252. opacity: 0;
  3253. transform: translate3d(0, 0.5rem, 0);
  3254. }
  3255. to {
  3256. opacity: 1;
  3257. transform: translate3d(0, 0, 0);
  3258. }
  3259. }
  3260. body .sqs-block-form {
  3261. --form-post-submit-animation-duration: 0.25s;
  3262. --form-post-submit-animation-delay: 0.25s;
  3263. }
  3264. .form-wrapper .form-submission-text,
  3265. .form-wrapper .form-submission-html {
  3266. opacity: 0;
  3267. transform: translate3d(0, 0.5rem, 0);
  3268. animation: anim-form-post-submit var(--form-post-submit-animation-duration) var(--form-post-submit-animation-delay) cubic-bezier(0.61, 1, 0.88, 1) forwards;
  3269. }
  3270. @media (prefers-reduced-motion: reduce) {
  3271. .form-wrapper .form-submission-text,
  3272. .form-wrapper .form-submission-html {
  3273. opacity: 1;
  3274. transform: initial;
  3275. animation: none;
  3276. }
  3277. }
  3278. .sqs-block-form.sqs-edit-dialog-open .form-wrapper .form-submission-text,
  3279. .sqs-block-form.sqs-edit-dialog-open .form-wrapper .form-submission-html {
  3280. opacity: 1;
  3281. transform: initial;
  3282. animation: none;
  3283. }
  3284. /* Button Block Base Style
  3285. =================================================*/
  3286. .sqs-block-button-container {
  3287. text-align: center;
  3288. }
  3289. .sqs-block-button.sqs-stretched .sqs-block-content,
  3290. .sqs-block-button.sqs-stretched .sqs-block-button-element {
  3291. height: 100%;
  3292. display: flex;
  3293. }
  3294. .sqs-block-button.sqs-stretched .sqs-block-button-container {
  3295. flex: 1;
  3296. }
  3297. .sqs-block-button.sqs-stretched .sqs-block-button-element {
  3298. align-items: center;
  3299. box-sizing: border-box;
  3300. justify-content: center;
  3301. }
  3302. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container {
  3303. display: flex;
  3304. }
  3305. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container--left {
  3306. justify-content: flex-start;
  3307. }
  3308. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container--center {
  3309. justify-content: center;
  3310. }
  3311. .sqs-block-button:not(.sqs-stretched) .sqs-block-button-container--right {
  3312. justify-content: flex-end;
  3313. }
  3314. .sqs-block-button-element,
  3315. .image-button a,
  3316. .list-item-content__button {
  3317. display: inline-block;
  3318. -webkit-font-smoothing: antialiased;
  3319. line-height: normal;
  3320. padding: var(--primaryButtonPadding) calc(var(--primaryButtonPadding) * 1.67);
  3321. }
  3322. @media (hover: hover) {
  3323. .sqs-block-button-element:hover,
  3324. .image-button a:hover,
  3325. .list-item-content__button:hover {
  3326. opacity: 1;
  3327. }
  3328. }
  3329. .sqs-button-element--primary[disabled],
  3330. .sqs-button-element--secondary[disabled],
  3331. .sqs-button-element--tertiary[disabled] {
  3332. pointer-events: none !important;
  3333. opacity: 0.8 !important;
  3334. }
  3335. /* Universal Button Variant Styles
  3336. =================================================*/
  3337. #siteWrapper.site-wrapper .sqs-button-element--primary,
  3338. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--primary,
  3339. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary {
  3340. padding: var(--primary-button-padding-y) var(--primary-button-padding-x);
  3341. }
  3342. #siteWrapper.site-wrapper .sqs-button-element--primary,
  3343. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--primary,
  3344. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary,
  3345. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3346. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3347. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary {
  3348. border-width: var(--primary-button-stroke);
  3349. }
  3350. #siteWrapper.site-wrapper .sqs-button-element--secondary,
  3351. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--secondary,
  3352. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--secondary {
  3353. padding: var(--secondary-button-padding-y) var(--secondary-button-padding-x);
  3354. }
  3355. #siteWrapper.site-wrapper .sqs-button-element--secondary,
  3356. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--secondary,
  3357. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--secondary,
  3358. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3359. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3360. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3361. border-width: var(--secondary-button-stroke);
  3362. }
  3363. #siteWrapper.site-wrapper .sqs-button-element--tertiary,
  3364. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--tertiary,
  3365. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--tertiary {
  3366. padding: var(--tertiary-button-padding-y) var(--tertiary-button-padding-x);
  3367. }
  3368. #siteWrapper.site-wrapper .sqs-button-element--tertiary,
  3369. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--tertiary,
  3370. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--tertiary,
  3371. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  3372. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  3373. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3374. border-width: var(--tertiary-button-stroke);
  3375. }
  3376. #siteWrapper.site-wrapper .sqs-button-element--primary,
  3377. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--primary,
  3378. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--primary,
  3379. #siteWrapper.site-wrapper .sqs-button-element--secondary,
  3380. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--secondary,
  3381. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--secondary,
  3382. #siteWrapper.site-wrapper .sqs-button-element--tertiary,
  3383. body .sqs-block-form-lightbox .form-button-wrapper .sqs-button-element--tertiary,
  3384. .sqs-modal-lightbox .sqs-modal-lightbox-content .sqs-button-element--tertiary,
  3385. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3386. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3387. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3388. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3389. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3390. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3391. #siteWrapper.site-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  3392. body .sqs-block-form-lightbox .form-button-wrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  3393. .sqs-modal-lightbox .sqs-modal-lightbox-content .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3394. line-height: normal;
  3395. border-style: solid;
  3396. }
  3397. /* Specific Button Style Overrides
  3398. =================================================*/
  3399. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockButton {
  3400. height: auto;
  3401. line-height: 0;
  3402. }
  3403. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockButtonWidgetContainer,
  3404. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockButton-buttonContainer,
  3405. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockInlineButton-container {
  3406. width: auto;
  3407. }
  3408. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockSearchBar-container {
  3409. align-items: center;
  3410. }
  3411. #siteWrapper.site-wrapper div#Tock_widget_container > div.TockWidgetWrapper .TockInlineButton-container {
  3412. overflow: hidden;
  3413. display: flex;
  3414. align-items: center;
  3415. justify-content: center;
  3416. height: 49px;
  3417. min-width: 180px;
  3418. padding: 0px;
  3419. border-radius: 0 3px 3px 0;
  3420. }
  3421. #siteWrapper.site-wrapper div#Tock_widget_container.Tock_widget_container-columnLayout > div.TockWidgetWrapper .TockInlineButton-container {
  3422. border-radius: 3px;
  3423. }
  3424. #siteWrapper.site-wrapper .product-purchase-controls-wrapper .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--primary {
  3425. border-width: clamp(0px, var(--primary-button-stroke, 1px), 2px);
  3426. }
  3427. #siteWrapper.site-wrapper .product-purchase-controls-wrapper .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--secondary {
  3428. border-width: clamp(0px, var(--secondary-button-stroke, 1px), 2px);
  3429. }
  3430. #siteWrapper.site-wrapper .product-purchase-controls-wrapper .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--tertiary {
  3431. border-width: clamp(0px, var(--tertiary-button-stroke, 1px), 2px);
  3432. }
  3433. /* Button Block Style Tweak: Solid
  3434. =================================================*/
  3435. body.primary-button-style-solid .sqs-button-element--primary,
  3436. body.primary-button-style-solid .sqs-editable-button.sqs-button-element--primary {
  3437. transition: 0.1s opacity linear;
  3438. -webkit-backface-visibility: hidden;
  3439. }
  3440. @media (hover: hover) {
  3441. body.primary-button-style-solid .sqs-button-element--primary:hover,
  3442. body.primary-button-style-solid .sqs-editable-button.sqs-button-element--primary:hover {
  3443. opacity: 0.8;
  3444. }
  3445. }
  3446. /* Button Block Style Tweak: Outline
  3447. =================================================*/
  3448. .primary-button-style-outline .sqs-button-element--primary,
  3449. .primary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--primary,
  3450. .primary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--primary,
  3451. .primary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--primary,
  3452. .primary-button-style-outline .header-menu-cta .btn.sqs-button-element--primary,
  3453. .primary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3454. .primary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--primary {
  3455. transition: 0.1s background-color linear, 0.1s color linear;
  3456. }
  3457. .primary-button-style-outline .sqs-button-element--primary:not(:hover),
  3458. .primary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--primary:not(:hover),
  3459. .primary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--primary:not(:hover),
  3460. .primary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--primary:not(:hover),
  3461. .primary-button-style-outline .header-menu-cta .btn.sqs-button-element--primary:not(:hover),
  3462. .primary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary:not(:hover),
  3463. .primary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--primary:not(:hover) {
  3464. background: transparent;
  3465. }
  3466. .primary-button-style-outline .newsletter-form-button.sqs-system-button.sqs-button-element--primary:not(:hover) {
  3467. background: transparent !important;
  3468. }
  3469. /* Primary Button Shape Tweak: Square
  3470. =================================================*/
  3471. .primary-button-shape-square .sqs-button-element--primary,
  3472. .primary-button-shape-square #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  3473. border-radius: 0;
  3474. }
  3475. /* Primary Button Shape Tweak: Rounded
  3476. =================================================*/
  3477. .primary-button-shape-rounded .sqs-button-element--primary,
  3478. .primary-button-shape-rounded #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  3479. border-radius: 0.4rem;
  3480. }
  3481. /* Primary Button Shape Tweak: Pill
  3482. =================================================*/
  3483. .primary-button-shape-pill .sqs-button-element--primary,
  3484. .primary-button-shape-pill #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  3485. border-radius: 300px;
  3486. }
  3487. /* Primary Button Shape Tweak: Oval
  3488. =================================================*/
  3489. .primary-button-shape-oval .sqs-button-element--primary,
  3490. .primary-button-shape-oval #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  3491. border-radius: 100%;
  3492. }
  3493. /* Primary Button Shape Tweak: Petal
  3494. =================================================*/
  3495. .primary-button-shape-petal .sqs-button-element--primary,
  3496. .primary-button-shape-petal #Tock_widget_container .sqs-button-element--primary.TockButton-blue {
  3497. border-radius: 16px 0px;
  3498. }
  3499. /* Button Block Shape Tweak: Underline
  3500. =================================================*/
  3501. body.primary-button-shape-underline #siteWrapper .sqs-button-element--primary:not(.ma-pricing-option-button),
  3502. body.primary-button-shape-underline .sqs-block-form-lightbox .sqs-button-element--primary:not(.ma-pricing-option-button),
  3503. body.primary-button-shape-underline #siteWrapper .comment-btn-wrapper .comment-btn.sqs-button-element--primary,
  3504. body.primary-button-shape-underline .sqs-block-form-lightbox .comment-btn-wrapper .comment-btn.sqs-button-element--primary,
  3505. body.primary-button-shape-underline #siteWrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary,
  3506. body.primary-button-shape-underline .sqs-block-form-lightbox .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary {
  3507. border-top: none;
  3508. border-right: none;
  3509. border-left: none;
  3510. border-bottom-style: solid;
  3511. border-radius: 0;
  3512. border-bottom-width: var(--primary-button-stroke);
  3513. }
  3514. /* Primary Button Shape Tweak: Custom
  3515. =================================================*/
  3516. .primary-button-shape-custom .sqs-button-element--primary,
  3517. .primary-button-shape-custom .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--primary {
  3518. border-top-left-radius: var(--primary-button-rounded-border-top-left-radius);
  3519. border-top-right-radius: var(--primary-button-rounded-border-top-right-radius);
  3520. border-bottom-left-radius: var(--primary-button-rounded-border-bottom-left-radius);
  3521. border-bottom-right-radius: var(--primary-button-rounded-border-bottom-right-radius);
  3522. }
  3523. .secondary-button-style-solid .sqs-button-element--secondary,
  3524. .secondary-button-style-solid .sqs-editable-button.sqs-button-element--secondary,
  3525. .secondary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3526. transition: 0.1s opacity linear;
  3527. -webkit-backface-visibility: hidden;
  3528. }
  3529. .secondary-button-style-solid .sqs-button-element--secondary:hover,
  3530. .secondary-button-style-solid .sqs-editable-button.sqs-button-element--secondary:hover,
  3531. .secondary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:hover {
  3532. opacity: 0.8;
  3533. }
  3534. .secondary-button-style-outline .sqs-button-element--secondary,
  3535. .secondary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary,
  3536. .secondary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary,
  3537. .secondary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--secondary,
  3538. .secondary-button-style-outline .header-menu-cta .btn.sqs-button-element--secondary,
  3539. .secondary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3540. .secondary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--secondary {
  3541. transition: 0.1s background-color linear, 0.1s color linear;
  3542. }
  3543. .secondary-button-style-outline .sqs-button-element--secondary:not(:hover),
  3544. .secondary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary:not(:hover),
  3545. .secondary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--secondary:not(:hover),
  3546. .secondary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--secondary:not(:hover),
  3547. .secondary-button-style-outline .header-menu-cta .btn.sqs-button-element--secondary:not(:hover),
  3548. .secondary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary:not(:hover),
  3549. .secondary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--secondary:not(:hover) {
  3550. background: transparent;
  3551. }
  3552. .secondary-button-style-outline .newsletter-form-button.sqs-system-button.sqs-button-element--secondary {
  3553. background: transparent !important;
  3554. }
  3555. /* Secondary Button Shape Tweak: Square
  3556. =================================================*/
  3557. .secondary-button-shape-square .sqs-button-element--secondary,
  3558. .secondary-button-shape-square .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3559. border-radius: 0;
  3560. }
  3561. /* Secondary Button Shape Tweak: Rounded
  3562. =================================================*/
  3563. .secondary-button-shape-rounded .sqs-button-element--secondary,
  3564. .secondary-button-shape-rounded .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3565. border-radius: 0.4rem;
  3566. }
  3567. /* Secondary Button Shape Tweak: Pill
  3568. =================================================*/
  3569. .secondary-button-shape-pill .sqs-button-element--secondary,
  3570. .secondary-button-shape-pill .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3571. border-radius: 300px;
  3572. }
  3573. /* Secondary Button Shape Tweak: Oval
  3574. =================================================*/
  3575. .secondary-button-shape-oval .sqs-button-element--secondary,
  3576. .secondary-button-shape-oval .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3577. border-radius: 100%;
  3578. }
  3579. /* Secondary Button Shape Tweak: Underline
  3580. =================================================*/
  3581. body.secondary-button-shape-underline #siteWrapper .sqs-button-element--secondary,
  3582. body.secondary-button-shape-underline .sqs-block-form-lightbox .sqs-button-element--secondary,
  3583. body.secondary-button-shape-underline #siteWrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary,
  3584. body.secondary-button-shape-underline .sqs-block-form-lightbox .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3585. border-top: none;
  3586. border-right: none;
  3587. border-left: none;
  3588. border-bottom-style: solid;
  3589. border-radius: 0;
  3590. border-bottom-width: var(--secondary-button-stroke);
  3591. }
  3592. /* Secondary Button Shape Tweak: Petal
  3593. =================================================*/
  3594. .secondary-button-shape-petal .sqs-button-element--secondary,
  3595. .secondary-button-shape-petal .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3596. border-radius: 16px 0px;
  3597. }
  3598. /* Secondary Button Shape Tweak: Custom
  3599. =================================================*/
  3600. .secondary-button-shape-custom .sqs-button-element--secondary,
  3601. .secondary-button-shape-custom .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--secondary {
  3602. border-top-left-radius: var(--secondary-button-rounded-border-top-left-radius);
  3603. border-top-right-radius: var(--secondary-button-rounded-border-top-right-radius);
  3604. border-bottom-left-radius: var(--secondary-button-rounded-border-bottom-left-radius);
  3605. border-bottom-right-radius: var(--secondary-button-rounded-border-bottom-right-radius);
  3606. }
  3607. .tertiary-button-style-solid .sqs-button-element--tertiary,
  3608. .tertiary-button-style-solid .sqs-editable-button.sqs-button-element--tertiary,
  3609. .tertiary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3610. transition: 0.1s opacity linear;
  3611. -webkit-backface-visibility: hidden;
  3612. }
  3613. .tertiary-button-style-solid .sqs-button-element--tertiary:hover,
  3614. .tertiary-button-style-solid .sqs-editable-button.sqs-button-element--tertiary:hover,
  3615. .tertiary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:hover {
  3616. opacity: 0.8;
  3617. }
  3618. .tertiary-button-style-outline .sqs-button-element--tertiary,
  3619. .tertiary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary,
  3620. .tertiary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary,
  3621. .tertiary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary,
  3622. .tertiary-button-style-outline .header-menu-cta .btn.sqs-button-element--tertiary,
  3623. .tertiary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  3624. .tertiary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--tertiary {
  3625. transition: 0.1s background-color linear, 0.1s color linear;
  3626. }
  3627. .tertiary-button-style-outline .sqs-button-element--tertiary:not(:hover),
  3628. .tertiary-button-style-outline .list-item .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary:not(:hover),
  3629. .tertiary-button-style-outline .list-item[data-is-card-enabled="true"] .sqs-block-button-element.list-item-content__button.sqs-button-element--tertiary:not(:hover),
  3630. .tertiary-button-style-outline .sqs-block-form .sqs-editable-button.sqs-button-element--tertiary:not(:hover),
  3631. .tertiary-button-style-outline .header-menu-cta .btn.sqs-button-element--tertiary:not(:hover),
  3632. .tertiary-button-style-outline .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary:not(:hover),
  3633. .tertiary-button-style-outline .sqs-modal-lightbox-content .sqs-button-element--tertiary:not(:hover) {
  3634. background: transparent;
  3635. }
  3636. .tertiary-button-style-outline .newsletter-form-button.sqs-system-button.sqs-button-element--tertiary {
  3637. background: transparent !important;
  3638. }
  3639. /* Tertiary Button Shape Tweak: Square
  3640. =================================================*/
  3641. .tertiary-button-shape-square .sqs-button-element--tertiary,
  3642. .tertiary-button-shape-square .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3643. border-radius: 0;
  3644. }
  3645. /* Tertiary Button Shape Tweak: Rounded
  3646. =================================================*/
  3647. .tertiary-button-shape-rounded .sqs-button-element--tertiary,
  3648. .tertiary-button-shape-rounded .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3649. border-radius: 0.4rem;
  3650. }
  3651. /* Tertiary Button Shape Tweak: Pill
  3652. =================================================*/
  3653. .tertiary-button-shape-pill .sqs-button-element--tertiary,
  3654. .tertiary-button-shape-pill .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3655. border-radius: 300px;
  3656. }
  3657. /* Tertiary Button Shape Tweak: Oval
  3658. =================================================*/
  3659. .tertiary-button-shape-oval .sqs-button-element--tertiary,
  3660. .tertiary-button-shape-oval .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3661. border-radius: 100%;
  3662. }
  3663. /* Tertiry Button Shape Tweak: Underline
  3664. =================x================================*/
  3665. body.tertiary-button-shape-underline #siteWrapper .sqs-button-element--tertiary,
  3666. body.tertiary-button-shape-underline .sqs-block-form-lightbox .sqs-button-element--tertiary,
  3667. body.tertiary-button-shape-underline #siteWrapper .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary,
  3668. body.tertiary-button-shape-underline .sqs-block-form-lightbox .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3669. border-top: none;
  3670. border-right: none;
  3671. border-left: none;
  3672. border-bottom-style: solid;
  3673. border-radius: 0;
  3674. border-bottom-width: var(--tertiary-button-stroke);
  3675. }
  3676. /* Tertiary Button Shape Tweak: Petal
  3677. =================================================*/
  3678. .tertiary-button-shape-petal .sqs-button-element--tertiary,
  3679. .tertiary-button-shape-petal .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3680. border-radius: 16px 0px;
  3681. }
  3682. /* Tertiary Button Shape Tweak: Custom
  3683. =================================================*/
  3684. .tertiary-button-shape-custom .sqs-button-element--tertiary,
  3685. .tertiary-button-shape-custom .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockButton-blue.sqs-button-element--tertiary {
  3686. border-top-left-radius: var(--tertiary-button-rounded-border-top-left-radius);
  3687. border-top-right-radius: var(--tertiary-button-rounded-border-top-right-radius);
  3688. border-bottom-left-radius: var(--tertiary-button-rounded-border-bottom-left-radius);
  3689. border-bottom-right-radius: var(--tertiary-button-rounded-border-bottom-right-radius);
  3690. }
  3691. @media (hover: hover) {
  3692. .tweak-global-animations-animation-type-flex.primary-button-style-outline .image-button a:hover,
  3693. .tweak-global-animations-animation-type-flex.primary-button-style-outline .sqs-add-to-cart-button:hover,
  3694. .tweak-global-animations-animation-type-flex.primary-button-style-outline .sqs-editable-button:not(input):hover,
  3695. .tweak-global-animations-animation-type-flex.primary-button-style-outline .sqs-block-button-element.sqs-block-button-element--primary:hover,
  3696. .tweak-global-animations-animation-type-flex.primary-button-style-outline .ma-pricing-toggle-wrapper .ma-pricing-option-button:hover,
  3697. .tweak-global-animations-animation-type-flex.primary-button-style-outline [data-animation-role="header-element"] .btn:hover {
  3698. background-color: transparent !important;
  3699. }
  3700. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-simple {
  3701. background: transparent;
  3702. }
  3703. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-simple:hover {
  3704. background-color: transparent;
  3705. }
  3706. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-carousel {
  3707. background: transparent;
  3708. }
  3709. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-carousel:hover {
  3710. background-color: transparent;
  3711. }
  3712. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-banner-slideshow {
  3713. background: transparent;
  3714. }
  3715. .tweak-global-animations-animation-type-flex.primary-button-style-outline .user-items-list-banner-slideshow:hover {
  3716. background-color: transparent;
  3717. }
  3718. }
  3719. @media (hover: hover) {
  3720. .tweak-global-animations-animation-type-flex.secondary-button-style-outline .sqs-button-element--secondary:hover,
  3721. .tweak-global-animations-animation-type-flex.tertiary-button-style-outline .sqs-button-element--tertiary:hover {
  3722. background: transparent;
  3723. }
  3724. }
  3725. .sqs-announcement-bar .sqs-announcement-bar-close {
  3726. background: transparent;
  3727. }
  3728. div#Tock_widget_container > div.TockWidgetWrapper .InlineWidgetDropDown-NoRightBorder {
  3729. border-right: 1px solid #e7e7e7;
  3730. }
  3731. /*
  3732. Constants
  3733. Role: A single location to organize variables that are utilized globally
  3734. */
  3735. /*
  3736. ================
  3737. Z-index
  3738. Role: Organize z-index overrides
  3739. ================
  3740. */
  3741. /*
  3742. ================
  3743. Breakpoints
  3744. Role: Organize global breakpoint ranges
  3745. ================
  3746. */
  3747. /*
  3748. ================
  3749. Padding
  3750. Role: Organize consistent padding
  3751. ================
  3752. */
  3753. /*
  3754. ================
  3755. Button
  3756. Role: Organize button configurations
  3757. ================
  3758. */
  3759. /* These appear to be deprecated. */
  3760. /*
  3761. ================
  3762. Container
  3763. Role: Container max width configuration
  3764. ================
  3765. */
  3766. /*
  3767. ================
  3768. Gallery Caption
  3769. Role: gallery caption configuration
  3770. ================
  3771. */
  3772. /*===================================================
  3773. GLOBAL ANIMATIONS
  3774. Notes:
  3775. - The reason why we want to use static CSS for pre-animation
  3776. styling is because we want the pre-animation styling to be
  3777. applied strictly before the post-animation styling is applied
  3778. through the controller. This avoids a whole class of
  3779. asynchronous issues.
  3780. - tweak-global-animations-animation-curve: custom cubic-bezier value is so we can have easeOutExpo CSS style (https://easings.net/en#easeOutExpo)
  3781. ===================================================*/
  3782. /*
  3783. * Rule needed in order for clip and flex animations to work consistently for all image animation targets.
  3784. * There are known edge cases in both Safari and Firefox's Intersection Observer when image or its parent container's
  3785. * height is 0. Adding minimum height will allow the Intersection Observer to work in these 2 browsers.
  3786. * This also fixes an issue in Chrome 97 where images with shapes in card/collage/overlap/stack layout do not render
  3787. */
  3788. [data-animation-role="image"] {
  3789. min-height: 1px;
  3790. }
  3791. /*
  3792. keyframes are used here not for animation but as a max-timeout for a temporary hiding style to apply, without relying on JS to unapply it.
  3793. */
  3794. @keyframes hideContent {
  3795. 0%,
  3796. 99% {
  3797. opacity: 0;
  3798. }
  3799. }
  3800. @keyframes clipAnimation {
  3801. 0% {
  3802. -webkit-clip-path: polygon(0 0, 10% 0, 0% 100%, 0% 100%);
  3803. clip-path: polygon(0 0, 10% 0, 0% 100%, 0% 100%);
  3804. }
  3805. 100% {
  3806. -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  3807. clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  3808. }
  3809. }
  3810. .preClip {
  3811. clip-path: ellipse(0% 100% at 0 0);
  3812. -webkit-clip-path: ellipse(0% 100% at 0 0);
  3813. transition-property: clip-path, -webkit-clip-path;
  3814. transform: translateZ(0);
  3815. }
  3816. .clipIn {
  3817. animation: clipAnimation;
  3818. animation-fill-mode: forwards;
  3819. transform: translateZ(0);
  3820. }
  3821. _:-ms-fullscreen .preClip,
  3822. :root .ie11up .preClip {
  3823. opacity: 0;
  3824. transition-property: opacity;
  3825. }
  3826. _:-ms-fullscreen .clipIn:not([data-override-initial-global-animation]),
  3827. :root .ie11up .clipIn:not([data-override-initial-global-animation]) {
  3828. opacity: 1 !important;
  3829. }
  3830. @supports not (clip-path: ellipse(0% 100% at 0 0)) {
  3831. .preClip {
  3832. opacity: 0;
  3833. transition-property: opacity;
  3834. }
  3835. .clipIn:not([data-override-initial-global-animation]) {
  3836. opacity: 1 !important;
  3837. }
  3838. }
  3839. .preFade {
  3840. opacity: 0;
  3841. transition-property: opacity;
  3842. }
  3843. .fadeIn:not([data-override-initial-global-animation]) {
  3844. opacity: 1 !important;
  3845. }
  3846. .preScale {
  3847. opacity: 0;
  3848. transform: scale(0.9);
  3849. transition-property: transform, opacity;
  3850. }
  3851. .scaleIn {
  3852. transform: scale(1) !important;
  3853. }
  3854. .scaleIn:not([data-override-initial-global-animation]) {
  3855. opacity: 1 !important;
  3856. }
  3857. .preSlide {
  3858. opacity: 0;
  3859. transform: translate(0%, 30%);
  3860. transition-property: transform, opacity;
  3861. }
  3862. .slideIn {
  3863. transform: translate(0, 0) !important;
  3864. }
  3865. .slideIn:not([data-override-initial-global-animation]) {
  3866. opacity: 1 !important;
  3867. }
  3868. .tweak-global-animations-animation-type-fade header,
  3869. .tweak-global-animations-animation-type-slide header,
  3870. .tweak-global-animations-animation-type-scale header,
  3871. .tweak-global-animations-animation-type-clip header,
  3872. .tweak-global-animations-animation-type-flex header,
  3873. .tweak-global-animations-animation-type-fade footer,
  3874. .tweak-global-animations-animation-type-slide footer,
  3875. .tweak-global-animations-animation-type-scale footer,
  3876. .tweak-global-animations-animation-type-clip footer,
  3877. .tweak-global-animations-animation-type-flex footer,
  3878. .tweak-global-animations-animation-type-fade section > .content-wrapper,
  3879. .tweak-global-animations-animation-type-slide section > .content-wrapper,
  3880. .tweak-global-animations-animation-type-scale section > .content-wrapper,
  3881. .tweak-global-animations-animation-type-clip section > .content-wrapper,
  3882. .tweak-global-animations-animation-type-flex section > .content-wrapper {
  3883. animation: hideContent 2s;
  3884. }
  3885. .tweak-global-animations-animation-type-fade[data-animation-state="booted"] header,
  3886. .tweak-global-animations-animation-type-slide[data-animation-state="booted"] header,
  3887. .tweak-global-animations-animation-type-scale[data-animation-state="booted"] header,
  3888. .tweak-global-animations-animation-type-clip[data-animation-state="booted"] header,
  3889. .tweak-global-animations-animation-type-flex[data-animation-state="booted"] header,
  3890. .tweak-global-animations-animation-type-fade[data-animation-state="booted"] footer,
  3891. .tweak-global-animations-animation-type-slide[data-animation-state="booted"] footer,
  3892. .tweak-global-animations-animation-type-scale[data-animation-state="booted"] footer,
  3893. .tweak-global-animations-animation-type-clip[data-animation-state="booted"] footer,
  3894. .tweak-global-animations-animation-type-flex[data-animation-state="booted"] footer,
  3895. .tweak-global-animations-animation-type-fade[data-animation-state="booted"] section > .content-wrapper,
  3896. .tweak-global-animations-animation-type-slide[data-animation-state="booted"] section > .content-wrapper,
  3897. .tweak-global-animations-animation-type-scale[data-animation-state="booted"] section > .content-wrapper,
  3898. .tweak-global-animations-animation-type-clip[data-animation-state="booted"] section > .content-wrapper,
  3899. .tweak-global-animations-animation-type-flex[data-animation-state="booted"] section > .content-wrapper {
  3900. opacity: 1;
  3901. animation: none;
  3902. }
  3903. .tweak-global-animations-animation-type-flex {
  3904. /* Individual element or element behaviors */
  3905. /* Non-CTA hovers */
  3906. /*
  3907. * Segmented text (currently only available with "Flex")
  3908. */
  3909. }
  3910. .tweak-global-animations-animation-type-flex .preFlex {
  3911. opacity: 0;
  3912. transition-property: transform, opacity, clip-path;
  3913. transform: translate(0%, 2vh);
  3914. }
  3915. .tweak-global-animations-animation-type-flex .flexIn {
  3916. opacity: 1;
  3917. transform: translate(0%, 0%);
  3918. }
  3919. .tweak-global-animations-animation-type-flex [data-animation-role="image"].preFlex {
  3920. transform: none;
  3921. clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  3922. }
  3923. .tweak-global-animations-animation-type-flex [data-animation-role="image"].flexIn {
  3924. transform: none;
  3925. clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  3926. }
  3927. .tweak-global-animations-animation-type-flex .image-position-right [data-animation-role="image"].preFlex {
  3928. clip-path: polygon(101% 0%, 99.9% 0%, 101% 100%, calc(100% + 25%) 100%);
  3929. }
  3930. .tweak-global-animations-animation-type-flex .image-position-right [data-animation-role="image"].flexIn {
  3931. clip-path: polygon(0% 0%, 101% 0%, 101% 101%, 0% 101%);
  3932. }
  3933. .tweak-global-animations-animation-type-flex .image-position-left [data-animation-role="image"].preFlex {
  3934. clip-path: polygon(-1% 0%, 0.1% 0%, -25% 100%, 0% 100%);
  3935. }
  3936. .tweak-global-animations-animation-type-flex .image-position-left [data-animation-role="image"].flexIn {
  3937. clip-path: polygon(0% 0%, 101% 0%, 101% 101%, 0% 101%);
  3938. }
  3939. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"],
  3940. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper,
  3941. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper {
  3942. overflow: hidden;
  3943. }
  3944. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].preFlex .sqs-button-element--primary,
  3945. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.preFlex .sqs-button-element--primary,
  3946. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.preFlex .sqs-button-element--primary,
  3947. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].preFlex .sqs-add-to-cart-button,
  3948. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.preFlex .sqs-add-to-cart-button,
  3949. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.preFlex .sqs-add-to-cart-button,
  3950. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].preFlex .sqs-editable-button:not(input),
  3951. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.preFlex .sqs-editable-button:not(input),
  3952. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.preFlex .sqs-editable-button:not(input),
  3953. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].preFlex .image-button,
  3954. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.preFlex .image-button,
  3955. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.preFlex .image-button {
  3956. transition: inherit;
  3957. transform: translate(0%, 100%);
  3958. }
  3959. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].flexIn .sqs-button-element--primary,
  3960. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.flexIn .sqs-button-element--primary,
  3961. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.flexIn .sqs-button-element--primary,
  3962. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].flexIn .sqs-add-to-cart-button,
  3963. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.flexIn .sqs-add-to-cart-button,
  3964. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.flexIn .sqs-add-to-cart-button,
  3965. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].flexIn .sqs-editable-button:not(input),
  3966. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.flexIn .sqs-editable-button:not(input),
  3967. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.flexIn .sqs-editable-button:not(input),
  3968. .tweak-global-animations-animation-type-flex.primary-button-style-solid [data-button-type="primary"].flexIn .image-button,
  3969. .tweak-global-animations-animation-type-flex.primary-button-style-solid .add-to-cart-button-wrapper.flexIn .image-button,
  3970. .tweak-global-animations-animation-type-flex.primary-button-style-solid .image-button-wrapper.flexIn .image-button {
  3971. transform: translate(0%, 0%);
  3972. }
  3973. .tweak-global-animations-animation-type-flex.primary-button-style-solid .header-actions-action--cta {
  3974. overflow: hidden;
  3975. }
  3976. .tweak-global-animations-animation-type-flex.primary-button-style-solid .header-actions-action--cta.preFlex .btn {
  3977. transition: inherit;
  3978. transform: translate(0%, 100%);
  3979. }
  3980. .tweak-global-animations-animation-type-flex.primary-button-style-solid .header-actions-action--cta.flexIn .btn {
  3981. transform: translate(0%, 0%);
  3982. }
  3983. .tweak-global-animations-animation-type-flex.secondary-button-style-solid [data-button-type="secondary"] {
  3984. overflow: hidden;
  3985. }
  3986. .tweak-global-animations-animation-type-flex.secondary-button-style-solid [data-button-type="secondary"].preFlex .sqs-button-element--secondary {
  3987. transition: inherit;
  3988. transform: translate(0%, 100%);
  3989. }
  3990. .tweak-global-animations-animation-type-flex.secondary-button-style-solid [data-button-type="secondary"].flexIn .sqs-button-element--secondary {
  3991. transform: translate(0%, 0%);
  3992. }
  3993. .tweak-global-animations-animation-type-flex.tertiary-button-styled-solid [data-button-type="tertiary"] {
  3994. overflow: hidden;
  3995. }
  3996. .tweak-global-animations-animation-type-flex.tertiary-button-styled-solid [data-button-type="tertiary"].preFlex .sqs-button-element--tertiary {
  3997. transition: inherit;
  3998. transform: translate(0%, 100%);
  3999. }
  4000. .tweak-global-animations-animation-type-flex.tertiary-button-styled-solid [data-button-type="tertiary"].flexIn .sqs-button-element--tertiary {
  4001. transform: translate(0%, 0%);
  4002. }
  4003. @media (hover: hover) {
  4004. .tweak-global-animations-animation-type-flex {
  4005. /* Buttons */
  4006. }
  4007. .tweak-global-animations-animation-type-flex a[data-animation-role="image"] {
  4008. overflow: hidden;
  4009. }
  4010. .tweak-global-animations-animation-type-flex a[data-animation-role="image"] img {
  4011. transition: inherit;
  4012. transform: translate(0%, 0%);
  4013. transform-origin: top;
  4014. }
  4015. .tweak-global-animations-animation-type-flex a[data-animation-role="image"]:hover img {
  4016. transform: scale(1.05) translate(0%, -2.5%);
  4017. }
  4018. .tweak-global-animations-animation-type-flex .sqs-button-element--primary:not(input),
  4019. .tweak-global-animations-animation-type-flex .sqs-button-element--secondary:not(input),
  4020. .tweak-global-animations-animation-type-flex .sqs-button-element--tertiary:not(input) {
  4021. transform: scaleY(1);
  4022. transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1) color;
  4023. position: relative;
  4024. }
  4025. .tweak-global-animations-animation-type-flex .sqs-button-element--primary:not(input)::before,
  4026. .tweak-global-animations-animation-type-flex .sqs-button-element--secondary:not(input)::before,
  4027. .tweak-global-animations-animation-type-flex .sqs-button-element--tertiary:not(input)::before {
  4028. z-index: -1;
  4029. position: absolute;
  4030. content: '';
  4031. bottom: 0;
  4032. left: 0;
  4033. right: 0;
  4034. top: 0;
  4035. border-style: solid;
  4036. border-width: 2px;
  4037. transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1) clip-path;
  4038. clip-path: polygon(-2% 102%, 102% 102%, 102% 102%, -2% 102%);
  4039. transform: translateZ(0);
  4040. }
  4041. .tweak-global-animations-animation-type-flex .sqs-button-element--primary:not(input):hover,
  4042. .tweak-global-animations-animation-type-flex .sqs-button-element--secondary:not(input):hover,
  4043. .tweak-global-animations-animation-type-flex .sqs-button-element--tertiary:not(input):hover {
  4044. opacity: 1;
  4045. }
  4046. .tweak-global-animations-animation-type-flex .sqs-button-element--primary:not(input):hover::before,
  4047. .tweak-global-animations-animation-type-flex .sqs-button-element--secondary:not(input):hover::before,
  4048. .tweak-global-animations-animation-type-flex .sqs-button-element--tertiary:not(input):hover::before {
  4049. clip-path: polygon(-2% -2%, 102% -2%, 102% 102%, -2% 102%);
  4050. }
  4051. .tweak-global-animations-animation-type-flex .sqs-button-element--primary:not(input).ma-pricing-option-button.right-button::before {
  4052. border-radius: 0px 300px 300px 0px;
  4053. border-width: var(--primary-button-stroke);
  4054. }
  4055. .tweak-global-animations-animation-type-flex .sqs-button-element--primary:not(input).ma-pricing-option-button.left-button::before {
  4056. border-radius: 300px 0px 0px 300px;
  4057. border-width: var(--primary-button-stroke);
  4058. }
  4059. .tweak-global-animations-animation-type-flex .has-background .sqs-button-element--primary:not(input)::before,
  4060. .tweak-global-animations-animation-type-flex .has-background .sqs-button-element--secondary:not(input)::before,
  4061. .tweak-global-animations-animation-type-flex .has-background .sqs-button-element--tertiary:not(input)::before {
  4062. border-width: 0;
  4063. }
  4064. .tweak-global-animations-animation-type-flex .has-background .sqs-button-element--primary:not(input)::before {
  4065. inset: calc(-1 * var(--primary-button-stroke));
  4066. }
  4067. .tweak-global-animations-animation-type-flex .has-background .sqs-button-element--secondary:not(input)::before {
  4068. inset: calc(-1 * var(--secondary-button-stroke));
  4069. }
  4070. .tweak-global-animations-animation-type-flex .has-background .sqs-button-element--tertiary:not(input)::before {
  4071. inset: calc(-1 * var(--tertiary-button-stroke));
  4072. }
  4073. .tweak-global-animations-animation-type-flex.primary-button-style-solid .tock-block div#Tock_widget_container > div.TockWidgetWrapper .TockInlineButton-container.sqs-button-element--primary .MainLabelSpan {
  4074. background: transparent !important;
  4075. }
  4076. .tweak-global-animations-animation-type-flex.primary-button-shape-rounded .sqs-button-element--primary:not(.ma-pricing-option-button)::before {
  4077. border-radius: 0.4rem;
  4078. }
  4079. .tweak-global-animations-animation-type-flex.secondary-button-shape-rounded .sqs-button-element--secondary::before,
  4080. .tweak-global-animations-animation-type-flex.tertiary-button-shape-rounded .sqs-button-element--tertiary::before {
  4081. border-radius: 0.4rem;
  4082. }
  4083. .tweak-global-animations-animation-type-flex.primary-button-shape-pill .sqs-button-element--primary:not(.ma-pricing-option-button)::before {
  4084. border-radius: 300px;
  4085. }
  4086. .tweak-global-animations-animation-type-flex.secondary-button-shape-pill .sqs-button-element--secondary::before,
  4087. .tweak-global-animations-animation-type-flex.tertiary-button-shape-pill .sqs-button-element--tertiary::before {
  4088. border-radius: 300px;
  4089. }
  4090. .tweak-global-animations-animation-type-flex.primary-button-shape-oval .sqs-button-element--primary:not(.ma-pricing-option-button)::before {
  4091. border-radius: 100%;
  4092. }
  4093. .tweak-global-animations-animation-type-flex.secondary-button-shape-oval .sqs-button-element--secondary::before,
  4094. .tweak-global-animations-animation-type-flex.tertiary-button-shape-oval .sqs-button-element--tertiary::before {
  4095. border-radius: 100%;
  4096. }
  4097. .tweak-global-animations-animation-type-flex.primary-button-shape-petal .sqs-button-element--primary:not(.ma-pricing-option-button)::before {
  4098. border-radius: 16px 0px;
  4099. }
  4100. .tweak-global-animations-animation-type-flex.secondary-button-shape-petal .sqs-button-element--secondary::before,
  4101. .tweak-global-animations-animation-type-flex.tertiary-button-shape-petal .sqs-button-element--tertiary::before {
  4102. border-radius: 16px 0px;
  4103. }
  4104. .tweak-global-animations-animation-type-flex.primary-button-style-outline:not(.primary-button-shape-underline) .image-button a::before,
  4105. .tweak-global-animations-animation-type-flex.primary-button-style-outline:not(.primary-button-shape-underline) .sqs-add-to-cart-button::before,
  4106. .tweak-global-animations-animation-type-flex.primary-button-style-outline:not(.primary-button-shape-underline) .sqs-editable-button:not(input):not(.ma-pricing-option-button)::before,
  4107. .tweak-global-animations-animation-type-flex.primary-button-style-outline:not(.primary-button-shape-underline) .sqs-button-element--primary:not(.ma-pricing-option-button)::before,
  4108. .tweak-global-animations-animation-type-flex.primary-button-style-outline:not(.primary-button-shape-underline) [data-animation-role="header-element"] .btn::before {
  4109. border-width: 0;
  4110. bottom: -2px;
  4111. left: -2px;
  4112. right: -2px;
  4113. top: -2px;
  4114. }
  4115. .tweak-global-animations-animation-type-flex.secondary-button-style-outline .sqs-button-element--secondary:not(input)::before {
  4116. border-width: 0;
  4117. bottom: -2px;
  4118. left: -2px;
  4119. right: -2px;
  4120. top: -2px;
  4121. }
  4122. .tweak-global-animations-animation-type-flex.tertiary-button-style-outline .sqs-button-element--tertiary:not(input)::before {
  4123. border-width: 0;
  4124. bottom: -2px;
  4125. left: -2px;
  4126. right: -2px;
  4127. top: -2px;
  4128. }
  4129. .tweak-global-animations-animation-type-flex.primary-button-shape-custom .sqs-button-element--primary:not(.ma-pricing-option-button)::before {
  4130. border-top-left-radius: var(--primary-button-rounded-border-top-left-radius);
  4131. border-top-right-radius: var(--primary-button-rounded-border-top-right-radius);
  4132. border-bottom-left-radius: var(--primary-button-rounded-border-bottom-left-radius);
  4133. border-bottom-right-radius: var(--primary-button-rounded-border-bottom-right-radius);
  4134. }
  4135. .tweak-global-animations-animation-type-flex.secondary-button-shape-custom .sqs-button-element--secondary::before {
  4136. border-top-left-radius: var(--secondary-button-rounded-border-top-left-radius);
  4137. border-top-right-radius: var(--secondary-button-rounded-border-top-right-radius);
  4138. border-bottom-left-radius: var(--secondary-button-rounded-border-bottom-left-radius);
  4139. border-bottom-right-radius: var(--secondary-button-rounded-border-bottom-right-radius);
  4140. }
  4141. .tweak-global-animations-animation-type-flex.tertiary-button-shape-custom .sqs-button-element--tertiary::before {
  4142. border-top-left-radius: var(--tertiary-button-rounded-border-top-left-radius);
  4143. border-top-right-radius: var(--tertiary-button-rounded-border-top-right-radius);
  4144. border-bottom-left-radius: var(--tertiary-button-rounded-border-bottom-left-radius);
  4145. border-bottom-right-radius: var(--tertiary-button-rounded-border-bottom-right-radius);
  4146. }
  4147. }
  4148. .tweak-global-animations-animation-type-flex .animation-segment-parent-hidden {
  4149. opacity: 0;
  4150. }
  4151. .tweak-global-animations-animation-type-flex .animation-segment-wrapper {
  4152. display: inline-flex;
  4153. overflow: hidden;
  4154. }
  4155. .tweak-global-animations-animation-type-flex .animation-segment-wrapper .animation-segment-interior {
  4156. display: inline-block;
  4157. }
  4158. .tweak-global-animations-animation-type-flex .animation-segmented-flex-primed .animation-segment-interior {
  4159. opacity: 0;
  4160. transition-property: transform, opacity, clip-path;
  4161. transform: translate(0%, 2vh);
  4162. transform: translate(0%, 100%);
  4163. }
  4164. .tweak-global-animations-animation-type-flex .animation-segmented-flex-fired .animation-segment-interior {
  4165. opacity: 1;
  4166. transform: translate(0%, 0%);
  4167. }
  4168. .sqs-announcement-bar {
  4169. position: relative;
  4170. top: 0;
  4171. left: 0;
  4172. z-index: 10000;
  4173. text-align: center;
  4174. }
  4175. .sqs-announcement-bar-url {
  4176. position: absolute;
  4177. top: 0;
  4178. left: 0;
  4179. width: 100%;
  4180. height: 100%;
  4181. }
  4182. .sqs-announcement-bar-text {
  4183. padding: 0.8em 3em;
  4184. }
  4185. .sqs-announcement-bar-text p {
  4186. margin: 0;
  4187. }
  4188. .sqs-announcement-bar-text a {
  4189. position: relative;
  4190. text-decoration: underline !important;
  4191. }
  4192. .sqs-announcement-bar-close {
  4193. cursor: pointer;
  4194. position: absolute;
  4195. top: 0;
  4196. right: 0;
  4197. width: 2.8em;
  4198. height: 2.78em;
  4199. background: rgba(0, 0, 0, 0.15);
  4200. }
  4201. .sqs-announcement-bar-close:after {
  4202. content: '×';
  4203. display: block;
  4204. font-family: helvetica, arial, sans-serif;
  4205. font-size: 1em;
  4206. font-weight: 100;
  4207. line-height: 2.7em;
  4208. letter-spacing: normal;
  4209. padding: 0;
  4210. }
  4211. .sqs-announcement-bar-hidden {
  4212. display: none;
  4213. }
  4214. @media screen and (max-width: 1024px) {
  4215. .sqs-announcement-bar-text,
  4216. .sqs-announcement-bar-text p {
  4217. font-size: 13px;
  4218. }
  4219. }
  4220. .gdpr-cookie-banner,
  4221. .manage-cookies-overlay,
  4222. .manage-cookies-bar {
  4223. background-color: var(--siteBackgroundColor);
  4224. }
  4225. .gdpr-cookie-banner p,
  4226. .manage-cookies-overlay p,
  4227. .manage-cookies-bar p {
  4228. color: var(--paragraphSmallColor);
  4229. }
  4230. .gdpr-cookie-banner .close-icon svg > path,
  4231. .manage-cookies-overlay .close-icon svg > path,
  4232. .manage-cookies-bar .close-icon svg > path {
  4233. fill: var(--paragraphSmallColor);
  4234. }
  4235. .gdpr-cookie-banner hr,
  4236. .manage-cookies-overlay hr,
  4237. .manage-cookies-bar hr {
  4238. background-color: var(--paragraphSmallColor);
  4239. }
  4240. .manage-cookies-bar .manage-bar-action {
  4241. color: var(--paragraphSmallColor);
  4242. }
  4243. .fluid-engine .sqs-block-button.sqs-stretched .sqs-block-button-element,
  4244. .fluid-engine [data-website-component-name="website.components.button"] .sqs-stretched .sqs-block-button-element {
  4245. padding-top: 0 !important;
  4246. padding-bottom: 0 !important;
  4247. }
  4248. .product-list {
  4249. padding-top: var(--sqs-site-gutter);
  4250. padding-bottom: var(--sqs-site-gutter);
  4251. }
  4252. .product-list [data-product-list-layout="grid"] {
  4253. padding: 0;
  4254. }
  4255. .product-list [data-product-list-layout="grid"][data-section-width="full"] {
  4256. padding-left: var(--sqs-site-gutter);
  4257. padding-right: var(--sqs-site-gutter);
  4258. }
  4259. .product-list [data-product-list-layout="grid"][data-section-width="inset"] {
  4260. max-width: var(--sqs-site-max-width);
  4261. padding-left: var(--sqs-site-gutter);
  4262. padding-right: var(--sqs-site-gutter);
  4263. margin: 0 auto;
  4264. }
  4265. .product-list [data-product-list-layout="grid"][data-meta-text-alignment="left"] .product-list-item-meta {
  4266. flex-direction: row;
  4267. justify-content: space-between;
  4268. text-align: left;
  4269. }
  4270. .product-list [data-product-list-layout="grid"][data-meta-text-alignment="center"] .product-list-item-meta {
  4271. flex-direction: column;
  4272. align-items: center;
  4273. text-align: center;
  4274. }
  4275. .product-list [data-product-list-layout="grid"][data-meta-text-alignment="right"] .product-list-item-meta {
  4276. flex-direction: row-reverse;
  4277. justify-content: space-between;
  4278. text-align: right;
  4279. }
  4280. .product-list [data-product-list-layout="grid"][data-category-display-type="sidebar"] .nested-category-children {
  4281. display: none;
  4282. }
  4283. @media screen and (min-width: 576px ) {
  4284. .product-list [data-product-list-layout="grid"][data-header-text-alignment="left"] .nested-category-title {
  4285. text-align: left;
  4286. }
  4287. .product-list [data-product-list-layout="grid"][data-header-text-alignment="left"] .nested-category-children {
  4288. justify-content: start;
  4289. }
  4290. .product-list [data-product-list-layout="grid"][data-header-text-alignment="left"] .nested-category-breadcrumb-list-item:first-child .nested-category-breadcrumb-link {
  4291. margin-left: 0;
  4292. }
  4293. .product-list [data-product-list-layout="grid"][data-header-text-alignment="center"] .nested-category-title,
  4294. .product-list [data-product-list-layout="grid"][data-header-text-alignment="center"] .nested-category-breadcrumb {
  4295. justify-content: center;
  4296. text-align: center;
  4297. }
  4298. .product-list [data-product-list-layout="grid"][data-header-text-alignment="center"] .nested-category-children {
  4299. justify-content: center;
  4300. }
  4301. }
  4302. @media screen and (max-width: 767px ) {
  4303. .product-list [data-product-list-layout="grid"][data-section-width="full"] {
  4304. padding-left: var(--sqs-mobile-site-gutter);
  4305. padding-right: var(--sqs-mobile-site-gutter);
  4306. }
  4307. .product-list [data-product-list-layout="grid"][data-section-width="inset"] {
  4308. padding-left: var(--sqs-mobile-site-gutter);
  4309. padding-right: var(--sqs-mobile-site-gutter);
  4310. }
  4311. }
  4312. @media screen and (max-width: 575px ) {
  4313. .product-list [data-product-list-layout="grid"][data-category-display-type="sidebar"] .nested-category-children {
  4314. display: flex;
  4315. }
  4316. }
  4317. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper {
  4318. float: left;
  4319. min-width: 220px;
  4320. max-width: 300px;
  4321. margin-right: 40px;
  4322. }
  4323. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper ul {
  4324. padding-inline-start: 20px;
  4325. margin-top: 0;
  4326. }
  4327. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper > ul {
  4328. padding-left: 0;
  4329. }
  4330. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper > ul > li:first-child a {
  4331. padding-top: 0;
  4332. }
  4333. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper li {
  4334. list-style: none;
  4335. }
  4336. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper .category-link {
  4337. position: relative;
  4338. display: block;
  4339. padding: 6px 0;
  4340. color: var(--tweak-product-grid-text-below-list-category-nav-color);
  4341. }
  4342. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper .category-link.active {
  4343. font-weight: 700;
  4344. }
  4345. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper .category-link.activeParent {
  4346. font-weight: 700;
  4347. }
  4348. @media screen and (max-width: 575px ) {
  4349. .product-list [data-product-list-layout="grid"] .nested-category-tree-wrapper {
  4350. display: none;
  4351. }
  4352. }
  4353. .product-list .product-list-container {
  4354. display: grid;
  4355. padding: 0;
  4356. }
  4357. @media screen and (min-width: 768px ) {
  4358. .product-list .product-list-container {
  4359. grid-template-columns: repeat(var(--product-list-num-columns-desktop), minmax(0, 1fr));
  4360. grid-row-gap: var(--product-list-row-spacing);
  4361. grid-column-gap: var(--product-list-column-spacing);
  4362. }
  4363. }
  4364. @media screen and (max-width: 767px ) {
  4365. .product-list .product-list-container {
  4366. grid-template-columns: repeat(var(--product-list-num-columns-mobile), minmax(0, 1fr));
  4367. grid-row-gap: 30px;
  4368. grid-column-gap: 30px;
  4369. }
  4370. }
  4371. .product-list .product-list-item {
  4372. display: flex;
  4373. flex-direction: column;
  4374. justify-content: space-between;
  4375. position: relative;
  4376. transform: translateY(-15px);
  4377. transition: opacity 1s ease, transform 1s ease;
  4378. }
  4379. .product-list .product-list-item.is-loaded {
  4380. opacity: 1;
  4381. transform: translateY(0);
  4382. }
  4383. .product-list .product-list-item .product-list-item-link {
  4384. display: flex;
  4385. flex-direction: column;
  4386. gap: 1vw;
  4387. }
  4388. .product-list .product-list-item .product-list-item-link .product-list-image-wrapper {
  4389. position: relative;
  4390. }
  4391. .product-list .product-list-item .product-list-item-link .product-list-image-wrapper:hover .sqs-product-quick-view-button {
  4392. opacity: 1;
  4393. }
  4394. .product-list .product-list-item .product-list-item-link .product-list-image-wrapper .sqs-product-quick-view-button-wrapper {
  4395. display: flex;
  4396. position: absolute;
  4397. top: 0;
  4398. bottom: 0;
  4399. right: 0;
  4400. left: 0;
  4401. width: 100%;
  4402. height: 100%;
  4403. text-align: center;
  4404. z-index: auto;
  4405. padding-bottom: 0;
  4406. align-items: center;
  4407. justify-content: center;
  4408. }
  4409. .sqs-tweak-overlays-active .product-list .product-list-item .product-list-item-link {
  4410. pointer-events: none;
  4411. }
  4412. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-image-wrapper {
  4413. position: relative;
  4414. aspect-ratio: var(--product-list-image-aspect-ratio);
  4415. }
  4416. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-item-image {
  4417. height: 100%;
  4418. width: 100%;
  4419. object-fit: cover;
  4420. position: absolute;
  4421. top: 0;
  4422. left: 0;
  4423. transition: opacity 1s ease, transform 1s ease;
  4424. }
  4425. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-item-additional-image {
  4426. opacity: 0;
  4427. }
  4428. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-image-selected {
  4429. opacity: 1 !important;
  4430. }
  4431. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-image-not-selected {
  4432. opacity: 0 !important;
  4433. }
  4434. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-image-cover {
  4435. opacity: 1;
  4436. }
  4437. .product-list .product-list-item .product-list-item-link .product-list-item-image .grid-image-hover {
  4438. opacity: 0;
  4439. }
  4440. @media (hover: hover) {
  4441. .product-list .product-list-item .product-list-item-link .product-list-item-image:hover .has-hover-img .grid-image-cover {
  4442. opacity: 0;
  4443. }
  4444. .product-list .product-list-item .product-list-item-link .product-list-item-image:hover .grid-image-hover.loaded {
  4445. opacity: 1;
  4446. }
  4447. }
  4448. .product-list .product-list-item .product-list-item-link .product-list-item-meta {
  4449. display: flex;
  4450. flex-wrap: wrap;
  4451. column-gap: 16px;
  4452. row-gap: 4px;
  4453. margin-top: var(--product-list-image-text-spacing);
  4454. }
  4455. .product-list .product-list-item .product-list-item-link .product-list-item-meta .product-list-item-title {
  4456. color: var(--tweak-product-grid-text-below-list-title-color);
  4457. }
  4458. .product-list .product-list-item .product-list-item-link .product-list-item-meta .product-list-item-price {
  4459. color: var(--tweak-product-grid-text-below-list-price-color);
  4460. margin-top: 0.5rem;
  4461. }
  4462. .product-list .product-list-item .product-list-item-link .product-list-item-meta .product-list-item-price .original-price {
  4463. text-decoration: line-through;
  4464. }
  4465. .product-list .product-list-item .product-list-item-link .product-list-item-meta .product-list-item-status {
  4466. display: flex;
  4467. flex-direction: column;
  4468. row-gap: 4px;
  4469. color: var(--tweak-product-grid-text-below-list-status-color);
  4470. }
  4471. .product-list .product-list-item .product-list-item-link .product-list-item-meta .product-list-item-status .product-mark.sale {
  4472. color: var(--tweak-product-grid-text-below-list-sale-price-color);
  4473. }
  4474. .product-list .product-list-item .product-list-item-link .product-list-item-meta .product-list-item-status .product-scarcity {
  4475. color: var(--tweak-product-grid-text-below-list-scarcity-color);
  4476. }
  4477. .product-list .product-list-item .product-variants {
  4478. display: flex;
  4479. flex-direction: column;
  4480. gap: 11px;
  4481. width: var(--product-content-form-width, "100%");
  4482. margin-top: 22px;
  4483. }
  4484. .product-list .product-list-item .product-variants .variant-option {
  4485. display: flex;
  4486. flex-direction: column;
  4487. gap: 6px;
  4488. box-sizing: border-box;
  4489. width: 100%;
  4490. color: var(--tweak-product-basic-item-variant-fields-color);
  4491. }
  4492. .product-list .product-list-item .product-variants .variant-option .variant-option-title {
  4493. display: none;
  4494. }
  4495. .product-list .product-list-item .product-variants .variant-select-wrapper {
  4496. position: relative;
  4497. display: flex;
  4498. align-items: center;
  4499. font-size: 1rem;
  4500. min-height: 48px;
  4501. text-align: left;
  4502. box-sizing: border-box;
  4503. padding: 0 1.3rem;
  4504. line-height: normal;
  4505. color: inherit;
  4506. }
  4507. .product-list .product-list-item .product-variants .variant-select-wrapper:before {
  4508. content: attr(data-selected-value);
  4509. display: inline-block;
  4510. z-index: 1;
  4511. pointer-events: none;
  4512. max-width: 100%;
  4513. word-break: break-word;
  4514. padding-right: 20px;
  4515. }
  4516. .product-list .product-list-item .product-variants .variant-select-wrapper:after {
  4517. content: '';
  4518. position: absolute;
  4519. right: 1.3rem;
  4520. transform: rotate(45deg);
  4521. border-bottom: 1px solid;
  4522. border-right: 1px solid;
  4523. height: 0.6rem;
  4524. width: 0.6rem;
  4525. transform-origin: top;
  4526. pointer-events: none;
  4527. font-size: 1rem;
  4528. }
  4529. .product-list .product-list-item .product-variants .variant-select-wrapper select {
  4530. -webkit-appearance: none;
  4531. -moz-appearance: none;
  4532. appearance: none;
  4533. border: 0;
  4534. border-radius: 0;
  4535. padding: 0;
  4536. background: transparent;
  4537. position: absolute;
  4538. top: 0;
  4539. right: 0;
  4540. width: 100%;
  4541. height: 100%;
  4542. font-size: 1rem;
  4543. color: rgba(0, 0, 0, 0);
  4544. border: 1px solid grey;
  4545. }
  4546. .product-list .product-list-item .product-variants .variant-select-wrapper select::-ms-expand {
  4547. display: none;
  4548. }
  4549. .product-list .product-list-item .product-variants .variant-select-wrapper select:focus option {
  4550. color: black;
  4551. }
  4552. .product-list .product-list-item .product-variants .variant-radiobtn-wrapper {
  4553. display: flex;
  4554. flex-wrap: wrap;
  4555. gap: 6px;
  4556. width: 100%;
  4557. }
  4558. .product-list .product-list-item .sqs-add-to-cart-button-wrapper {
  4559. width: var(--product-content-form-width, "100%");
  4560. display: flex;
  4561. flex-direction: column;
  4562. }
  4563. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-view-options-button {
  4564. width: 100%;
  4565. align-items: center;
  4566. margin-top: 22px;
  4567. padding-left: 1.2rem !important;
  4568. padding-right: 1.2rem !important;
  4569. cursor: pointer;
  4570. }
  4571. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-view-options-button .sqs-view-options-button-inner {
  4572. display: flex;
  4573. justify-content: center;
  4574. }
  4575. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button {
  4576. width: 100%;
  4577. align-items: center;
  4578. margin-top: 22px;
  4579. padding-left: 1.2rem !important;
  4580. padding-right: 1.2rem !important;
  4581. cursor: pointer;
  4582. }
  4583. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .sqs-add-to-cart-button-inner {
  4584. display: flex;
  4585. justify-content: center;
  4586. }
  4587. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .cart-loader {
  4588. border: 3px solid transparent;
  4589. border-radius: 50%;
  4590. border-top: 3px solid currentColor;
  4591. animation: spin 1s linear infinite;
  4592. }
  4593. @keyframes spin {
  4594. 0% {
  4595. transform: rotate(0deg);
  4596. }
  4597. 100% {
  4598. transform: rotate(360deg);
  4599. }
  4600. }
  4601. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--primary .cart-loader {
  4602. width: calc((var(--primary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  4603. height: calc((var(--primary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  4604. }
  4605. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element-secondary .cart-loader {
  4606. width: calc((var(--secondary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  4607. height: calc((var(--secondary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  4608. }
  4609. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element-tertiary .cart-loader {
  4610. width: calc((var(--tertiary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  4611. height: calc((var(--tertiary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  4612. }
  4613. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .add-to-cart-text {
  4614. display: block;
  4615. }
  4616. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .cart-loader {
  4617. display: none;
  4618. }
  4619. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .cart-added-text {
  4620. display: none;
  4621. }
  4622. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-adding .add-to-cart-text {
  4623. display: none;
  4624. }
  4625. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-adding .cart-loader {
  4626. display: block;
  4627. }
  4628. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-adding .cart-added-text {
  4629. display: none;
  4630. }
  4631. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-added .add-to-cart-text {
  4632. display: none;
  4633. }
  4634. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-added .cart-loader {
  4635. display: none;
  4636. }
  4637. .product-list .product-list-item .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-added .cart-added-text {
  4638. display: block;
  4639. }
  4640. @media screen and (max-width: 767px ) {
  4641. .product-list .category-filter-container {
  4642. height: 35px;
  4643. overflow: hidden;
  4644. margin-bottom: 10px;
  4645. width: calc(100% + (var(--sqs-site-gutter) * 2));
  4646. position: relative;
  4647. left: calc(-1 * var(--sqs-site-gutter));
  4648. }
  4649. }
  4650. .product-list .category-filter-wrapper {
  4651. padding-bottom: 6vw;
  4652. }
  4653. @media screen and (max-width: 767px ) {
  4654. .product-list .category-filter-wrapper {
  4655. height: 60px;
  4656. position: relative;
  4657. width: 100%;
  4658. overflow-x: scroll;
  4659. }
  4660. .product-list .category-filter-wrapper:before {
  4661. content: "";
  4662. display: block;
  4663. width: var(--sqs-site-gutter);
  4664. height: 1px;
  4665. position: relative;
  4666. float: left;
  4667. }
  4668. }
  4669. .product-list .category-filter-list {
  4670. display: flex;
  4671. flex-direction: row;
  4672. justify-content: center;
  4673. align-content: center;
  4674. }
  4675. @media screen and (min-width: 768px ) {
  4676. .product-list .category-filter-list {
  4677. flex-wrap: wrap;
  4678. }
  4679. }
  4680. @media screen and (max-width: 767px ) {
  4681. .product-list .category-filter-list {
  4682. justify-content: left;
  4683. }
  4684. }
  4685. .product-list .category-filter-item {
  4686. padding: 0 1.5vw;
  4687. text-transform: capitalize;
  4688. }
  4689. .product-list .category-filter-item:first-child {
  4690. padding-left: 0;
  4691. }
  4692. @media screen and (max-width: 767px ) {
  4693. .product-list .category-filter-item {
  4694. padding: 0 20px;
  4695. }
  4696. }
  4697. .product-list .category-filter-delimiter {
  4698. color: var(--tweak-product-grid-text-below-list-category-nav-color);
  4699. opacity: 0;
  4700. }
  4701. .product-list .category-filter-delimiter.has-category {
  4702. opacity: 1;
  4703. }
  4704. .product-list .category-filter-link {
  4705. position: relative;
  4706. transition: opacity 0.3s ease;
  4707. white-space: nowrap;
  4708. }
  4709. .product-list .category-filter-link::after {
  4710. content: "";
  4711. position: absolute;
  4712. width: 0px;
  4713. height: 1px;
  4714. left: 50%;
  4715. bottom: -2px;
  4716. transition: all 0.3s ease;
  4717. background: var(--tweak-product-grid-text-below-list-category-nav-color);
  4718. }
  4719. .product-list .category-filter-link:hover,
  4720. .product-list .category-filter-link.category-filter-link-all,
  4721. .product-list .category-filter-link.active {
  4722. opacity: 1;
  4723. color: var(--tweak-product-grid-text-below-list-category-nav-color);
  4724. }
  4725. .product-list .category-filter-link:hover::after,
  4726. .product-list .category-filter-link.category-filter-link-all::after,
  4727. .product-list .category-filter-link.active::after {
  4728. width: 100%;
  4729. left: 0;
  4730. }
  4731. .product-list .category-filter-list.other-active .category-filter-link {
  4732. opacity: 0.3;
  4733. color: var(--tweak-product-grid-text-below-list-category-nav-color);
  4734. }
  4735. .product-list .category-filter-list.other-active .category-filter-link.category-filter-link-all:after {
  4736. width: 0;
  4737. left: 50%;
  4738. }
  4739. .product-list .category-filter-list.other-active .category-filter-link:hover,
  4740. .product-list .category-filter-list.other-active .category-filter-link.active {
  4741. opacity: 1;
  4742. color: var(--tweak-product-grid-text-below-list-category-nav-color);
  4743. }
  4744. .product-list .category-filter-list.other-active .category-filter-link:hover::after,
  4745. .product-list .category-filter-list.other-active .category-filter-link.active::after {
  4746. width: 100%;
  4747. left: 0;
  4748. }
  4749. .product-list .nested-category-children {
  4750. padding-bottom: 54px;
  4751. padding-top: 54px;
  4752. padding-left: 0;
  4753. margin-bottom: 37px;
  4754. margin-top: 0;
  4755. text-align: center;
  4756. display: flex;
  4757. flex-wrap: wrap;
  4758. flex-direction: row;
  4759. align-content: center;
  4760. position: relative;
  4761. }
  4762. .product-list .nested-category-children .active {
  4763. text-decoration: underline;
  4764. font-weight: 700;
  4765. }
  4766. @media screen and (min-width: 576px ) {
  4767. .product-list .nested-category-children::after {
  4768. content: "";
  4769. opacity: 0.2;
  4770. border-bottom: 1px solid;
  4771. position: absolute;
  4772. bottom: 0;
  4773. left: 0;
  4774. width: 100%;
  4775. }
  4776. }
  4777. @media screen and (min-width: 576px ) and screen and (max-width: 575px ) {
  4778. .product-list .nested-category-children::after {
  4779. content: none;
  4780. }
  4781. }
  4782. @media screen and (max-width: 575px ) {
  4783. .product-list .nested-category-children {
  4784. padding-top: 44px;
  4785. padding-bottom: 30px;
  4786. margin-bottom: 0;
  4787. flex-wrap: nowrap;
  4788. overflow-x: scroll;
  4789. justify-content: start;
  4790. }
  4791. }
  4792. .product-list .nested-category-title-padding {
  4793. padding-bottom: 54px;
  4794. margin-bottom: 37px;
  4795. position: relative;
  4796. display: flex;
  4797. flex-direction: row;
  4798. }
  4799. .product-list .nested-category-title-padding::after {
  4800. content: "";
  4801. opacity: 0.2;
  4802. border-bottom: 1px solid;
  4803. position: absolute;
  4804. bottom: 0;
  4805. left: 0;
  4806. width: 100%;
  4807. }
  4808. @media screen and (max-width: 575px ) {
  4809. .product-list .nested-category-title-padding::after {
  4810. content: none;
  4811. }
  4812. }
  4813. @media screen and (max-width: 575px ) {
  4814. .product-list .nested-category-title-padding {
  4815. padding-bottom: 30px;
  4816. margin-bottom: 0;
  4817. }
  4818. }
  4819. .product-list .nested-category-title {
  4820. margin-top: 0;
  4821. margin-bottom: 0;
  4822. }
  4823. .product-list .nested-category-title.nested-category-title-padding {
  4824. padding-bottom: 54px;
  4825. margin-bottom: 37px;
  4826. position: relative;
  4827. display: flex;
  4828. flex-direction: row;
  4829. }
  4830. .product-list .nested-category-title.nested-category-title-padding::after {
  4831. content: "";
  4832. opacity: 0.2;
  4833. border-bottom: 1px solid;
  4834. position: absolute;
  4835. bottom: 0;
  4836. left: 0;
  4837. width: 100%;
  4838. }
  4839. @media screen and (max-width: 575px ) {
  4840. .product-list .nested-category-title.nested-category-title-padding::after {
  4841. content: none;
  4842. }
  4843. }
  4844. @media screen and (max-width: 575px ) {
  4845. .product-list .nested-category-title.nested-category-title-padding {
  4846. padding-bottom: 30px;
  4847. margin-bottom: 0;
  4848. }
  4849. }
  4850. @media screen and (min-width: 576px ) {
  4851. .product-list .nested-category-title.sidebar-title-padding {
  4852. padding-bottom: 54px;
  4853. margin-bottom: 37px;
  4854. position: relative;
  4855. display: flex;
  4856. flex-direction: row;
  4857. }
  4858. .product-list .nested-category-title.sidebar-title-padding::after {
  4859. content: "";
  4860. opacity: 0.2;
  4861. border-bottom: 1px solid;
  4862. position: absolute;
  4863. bottom: 0;
  4864. left: 0;
  4865. width: 100%;
  4866. }
  4867. }
  4868. @media screen and (min-width: 576px ) and screen and (max-width: 575px ) {
  4869. .product-list .nested-category-title.sidebar-title-padding::after {
  4870. content: none;
  4871. }
  4872. }
  4873. @media screen and (min-width: 576px ) and screen and (max-width: 575px ) {
  4874. .product-list .nested-category-title.sidebar-title-padding {
  4875. padding-bottom: 30px;
  4876. margin-bottom: 0;
  4877. }
  4878. }
  4879. @media screen and (max-width: 575px ) {
  4880. .product-list .nested-category-title {
  4881. text-align: left;
  4882. }
  4883. }
  4884. .product-list .nested-category-breadcrumb-list-item {
  4885. display: flex;
  4886. }
  4887. .product-list .nested-category-breadcrumb-list-item .nested-category-breadcrumb-link {
  4888. color: var(--tweak-product-grid-text-below-list-category-nav-color);
  4889. margin: 0 1.5vw;
  4890. }
  4891. .product-list .nested-category-breadcrumb-list-item .nested-category-breadcrumb-link.bold {
  4892. font-weight: 700;
  4893. }
  4894. .product-list .nested-category-breadcrumb-list-item:last-child .breadcrumb-separator {
  4895. display: none;
  4896. }
  4897. @media screen and (max-width: 575px ) {
  4898. .product-list .nested-category-breadcrumb-list-item {
  4899. flex: 0 0 auto;
  4900. }
  4901. }
  4902. .product-list .products-flex-container {
  4903. display: flex;
  4904. flex-direction: column;
  4905. }
  4906. .product-list .breadcrumb-separator {
  4907. opacity: 0.2;
  4908. }
  4909. @media screen and (min-width: 576px ) {
  4910. .product-list .nested-category-breadcrumb.extra-padding {
  4911. padding-bottom: 54px;
  4912. margin-bottom: 37px;
  4913. position: relative;
  4914. display: flex;
  4915. flex-direction: row;
  4916. gap: 4px;
  4917. }
  4918. .product-list .nested-category-breadcrumb.extra-padding::after {
  4919. content: "";
  4920. opacity: 0.2;
  4921. border-bottom: 1px solid;
  4922. position: absolute;
  4923. bottom: 0;
  4924. left: 0;
  4925. width: 100%;
  4926. }
  4927. }
  4928. @media screen and (min-width: 576px ) and screen and (max-width: 575px ) {
  4929. .product-list .nested-category-breadcrumb.extra-padding::after {
  4930. content: none;
  4931. }
  4932. }
  4933. @media screen and (min-width: 576px ) and screen and (max-width: 575px ) {
  4934. .product-list .nested-category-breadcrumb.extra-padding {
  4935. padding-bottom: 30px;
  4936. margin-bottom: 0;
  4937. }
  4938. }
  4939. @media screen and (max-width: 575px ) {
  4940. .product-list .nested-category-breadcrumb {
  4941. text-align: left;
  4942. text-transform: uppercase;
  4943. opacity: 0.3;
  4944. }
  4945. }
  4946. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-breadcrumb-link {
  4947. position: relative;
  4948. display: inline-block;
  4949. text-decoration: none;
  4950. }
  4951. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-breadcrumb-link::after {
  4952. content: '';
  4953. position: absolute;
  4954. width: 100%;
  4955. height: 1px;
  4956. left: 0;
  4957. bottom: 0px;
  4958. background-color: currentColor;
  4959. transform: scaleX(0);
  4960. transform-origin: right;
  4961. transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  4962. }
  4963. @media (hover: hover) {
  4964. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-breadcrumb-link:hover::after {
  4965. transform: scaleX(1);
  4966. transform-origin: left;
  4967. }
  4968. }
  4969. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-tree-wrapper .category-link {
  4970. position: relative;
  4971. display: inline-block;
  4972. text-decoration: none;
  4973. }
  4974. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-tree-wrapper .category-link::after {
  4975. content: '';
  4976. position: absolute;
  4977. width: 100%;
  4978. height: 1px;
  4979. left: 0;
  4980. bottom: 6px;
  4981. background-color: currentColor;
  4982. transform: scaleX(0);
  4983. transform-origin: right;
  4984. transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  4985. }
  4986. @media (hover: hover) {
  4987. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-tree-wrapper .category-link:hover::after {
  4988. transform: scaleX(1);
  4989. transform-origin: left;
  4990. }
  4991. }
  4992. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-tree-wrapper .category-link.active::after,
  4993. .product-list .tweak-global-animations-animation-type-flex .products .nested-category-tree-wrapper .category-link.activeParent::after {
  4994. transform: scaleX(1);
  4995. }
  4996. .product-list .list-pagination {
  4997. padding-top: 6vw;
  4998. width: 100%;
  4999. display: flex;
  5000. justify-content: space-between;
  5001. }
  5002. .product-list .list-pagination a {
  5003. display: flex;
  5004. flex: 1 0 50%;
  5005. }
  5006. .product-list .list-pagination a.list-pagination-next {
  5007. justify-content: flex-end;
  5008. }
  5009. .product-list .list-pagination-nested-categories {
  5010. text-transform: uppercase;
  5011. }
  5012. .product-list .list-pagination-nested-categories .product-list-pagination-icon {
  5013. height: 15px;
  5014. width: 15px;
  5015. }
  5016. .product-list .list-pagination-nested-categories .list-pagination-next {
  5017. text-align: right;
  5018. align-items: center;
  5019. }
  5020. .product-list .list-pagination-nested-categories .list-pagination-prev {
  5021. align-items: center;
  5022. }
  5023. .mixin-clear-input-styles {
  5024. -webkit-appearance: none;
  5025. -moz-appearance: none;
  5026. appearance: none;
  5027. border: 0;
  5028. border-radius: 0;
  5029. padding: 0;
  5030. background: transparent;
  5031. }
  5032. .mixin-clear-input-styles::-ms-expand {
  5033. display: none;
  5034. }
  5035. .product-detail [hidden] {
  5036. display: none !important;
  5037. }
  5038. @media screen and (min-width: 576px ) {
  5039. .product-detail .hidden-up-sm {
  5040. display: none !important;
  5041. }
  5042. }
  5043. @media screen and (max-width: 575px ) {
  5044. .product-detail .hidden-down-sm {
  5045. display: none !important;
  5046. }
  5047. }
  5048. @media screen and (min-width: 768px ) {
  5049. .product-detail .hidden-up-md {
  5050. display: none !important;
  5051. }
  5052. }
  5053. @media screen and (max-width: 767px ) {
  5054. .product-detail .hidden-down-md {
  5055. display: none !important;
  5056. }
  5057. }
  5058. .product-detail .sr-only:not(:focus):not(:active) {
  5059. clip: rect(0 0 0 0);
  5060. clip-path: inset(50%);
  5061. height: 1px;
  5062. overflow: hidden;
  5063. position: absolute;
  5064. white-space: nowrap;
  5065. width: 1px;
  5066. }
  5067. .product-detail > [data-product-detail-layout="simple"] {
  5068. display: flex;
  5069. flex-direction: column;
  5070. gap: 22px;
  5071. padding: 3vw var(--sqs-site-gutter);
  5072. }
  5073. @media screen and (max-width: 767px ) {
  5074. .product-detail > [data-product-detail-layout="simple"] {
  5075. padding-left: var(--sqs-mobile-site-gutter);
  5076. padding-right: var(--sqs-mobile-site-gutter);
  5077. padding-top: 24px;
  5078. }
  5079. .product-detail > [data-product-detail-layout="simple"] .product-content-wrapper {
  5080. display: flex;
  5081. flex-direction: column;
  5082. gap: 22px;
  5083. }
  5084. }
  5085. @media screen and (min-width: 768px ) {
  5086. .product-detail > [data-product-detail-layout="simple"] .product-content-wrapper {
  5087. display: flex;
  5088. flex-direction: row;
  5089. align-items: start;
  5090. gap: var(--product-content-horizontal-spacing);
  5091. }
  5092. .product-detail > [data-product-detail-layout="simple"] .product-content-wrapper .product-meta {
  5093. flex: 1;
  5094. }
  5095. }
  5096. .product-detail > [data-product-detail-layout="simple"][data-section-width="inset"] {
  5097. max-width: var(--sqs-site-max-width);
  5098. margin: 0 auto;
  5099. }
  5100. @media screen and (min-width: 768px ) {
  5101. .product-detail > [data-product-detail-layout="simple"][data-gallery-placement="right"] .product-content-wrapper {
  5102. flex-direction: row-reverse;
  5103. }
  5104. }
  5105. @media screen and (min-width: 768px ) {
  5106. .product-detail > [data-product-detail-layout="simple"][data-gallery-design="stacked"] .product-meta {
  5107. position: -webkit-sticky;
  5108. position: sticky;
  5109. top: calc(var(--header-fixed-top-offset, 0px) + 20px);
  5110. }
  5111. }
  5112. .product-detail > [data-product-detail-layout="simple"][data-content-vertical-alignment="center"]:not([data-gallery-design="stacked"]) .product-content-wrapper {
  5113. align-items: center;
  5114. }
  5115. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .product-meta {
  5116. text-align: left;
  5117. }
  5118. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .product-variants,
  5119. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .sqs-add-to-cart-button-wrapper,
  5120. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .quick-view-item-link {
  5121. align-self: start;
  5122. }
  5123. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .variant-radiobtn-wrapper,
  5124. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .product-add-to-cart-layout-wrapper,
  5125. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="left"] .product-review-summary {
  5126. justify-content: start;
  5127. }
  5128. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .product-meta {
  5129. text-align: center;
  5130. }
  5131. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .product-variants,
  5132. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .sqs-add-to-cart-button-wrapper,
  5133. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .quick-view-item-link {
  5134. align-self: center;
  5135. }
  5136. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .variant-radiobtn-wrapper,
  5137. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .product-add-to-cart-layout-wrapper,
  5138. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="center"] .product-review-summary {
  5139. justify-content: center;
  5140. }
  5141. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .product-meta {
  5142. text-align: right;
  5143. }
  5144. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .product-variants,
  5145. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .sqs-add-to-cart-button-wrapper,
  5146. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .quick-view-item-link {
  5147. align-self: end;
  5148. }
  5149. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .variant-radiobtn-wrapper,
  5150. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .product-add-to-cart-layout-wrapper,
  5151. .product-detail > [data-product-detail-layout="simple"][data-content-horizontal-alignment="right"] .product-review-summary {
  5152. justify-content: end;
  5153. }
  5154. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="pill"] .subs-otp-radio-wrapper {
  5155. border-radius: 33px;
  5156. }
  5157. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="pill"] .subs-otp-radio-wrapper .one-time-purchase-option.otp-button-wrapper .subs-otp-button-label {
  5158. border-radius: 33px;
  5159. }
  5160. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="pill"] .subs-otp-radio-wrapper .subscription-option.subs-button-wrapper .subs-otp-button-label {
  5161. border-radius: 33px;
  5162. }
  5163. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="petal"] .subs-otp-radio-wrapper {
  5164. border-radius: 16px 0px;
  5165. }
  5166. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="petal"] .subs-otp-radio-wrapper .one-time-purchase-option.otp-button-wrapper .subs-otp-button-label {
  5167. border-radius: 16px 0px;
  5168. }
  5169. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="petal"] .subs-otp-radio-wrapper .subscription-option.subs-button-wrapper .subs-otp-button-label {
  5170. border-radius: 16px 0px;
  5171. }
  5172. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="rounded-rectangle"] .subs-otp-radio-wrapper {
  5173. border-radius: 10px;
  5174. }
  5175. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="rounded-rectangle"] .subs-otp-radio-wrapper .one-time-purchase-option.otp-button-wrapper .subs-otp-button-label {
  5176. border-radius: 10px;
  5177. }
  5178. .product-detail > [data-product-detail-layout="simple"][data-payment-plan-select-border-shape="rounded-rectangle"] .subs-otp-radio-wrapper .subscription-option.subs-button-wrapper .subs-otp-button-label {
  5179. border-radius: 10px;
  5180. }
  5181. .product-detail > [data-product-detail-layout="simple"] .quick-view-item-link {
  5182. width: fit-content;
  5183. opacity: 0.6;
  5184. margin-top: 22px;
  5185. border-bottom: 1px solid #b3b3b3;
  5186. display: inline-block;
  5187. }
  5188. .product-detail > [data-product-detail-layout="half"] {
  5189. display: flex;
  5190. flex-direction: row;
  5191. width: 100%;
  5192. }
  5193. @media screen and (max-width: 767px ) {
  5194. .product-detail > [data-product-detail-layout="half"] {
  5195. flex-direction: column;
  5196. }
  5197. .product-detail > [data-product-detail-layout="half"] > * {
  5198. width: 100% !important;
  5199. }
  5200. }
  5201. .product-detail > [data-product-detail-layout="half"] > * {
  5202. width: 50%;
  5203. }
  5204. .product-detail > [data-product-detail-layout="half"] .product-content-wrapper {
  5205. display: flex;
  5206. flex-direction: column;
  5207. gap: 22px;
  5208. padding: 22px 2rem;
  5209. box-sizing: border-box;
  5210. }
  5211. @media screen and (max-width: 767px ) {
  5212. .product-detail > [data-product-detail-layout="half"] .product-content-wrapper {
  5213. padding: var(--sqs-mobile-site-gutter);
  5214. }
  5215. }
  5216. .product-detail > [data-product-detail-layout="full"] .product-meta {
  5217. display: flex;
  5218. flex-direction: row;
  5219. justify-content: space-between;
  5220. padding: var(--sqs-site-gutter);
  5221. }
  5222. @media screen and (max-width: 767px ) {
  5223. .product-detail > [data-product-detail-layout="full"] .product-meta {
  5224. flex-direction: column;
  5225. padding: var(--sqs-mobile-site-gutter);
  5226. }
  5227. }
  5228. .product-detail > [data-product-detail-layout="full"] .product-meta .product-meta-section {
  5229. display: flex;
  5230. flex-direction: column;
  5231. gap: 11px;
  5232. }
  5233. .product-detail > [data-product-detail-layout="full"] .product-meta .product-meta-section:first-child {
  5234. width: 50%;
  5235. }
  5236. @media screen and (max-width: 767px ) {
  5237. .product-detail > [data-product-detail-layout="full"] .product-meta .product-meta-section:first-child {
  5238. width: 100%;
  5239. }
  5240. }
  5241. @media screen and (min-width: 768px ) {
  5242. .product-detail > [data-product-detail-layout="full"] .product-meta .product-meta-section:last-child {
  5243. padding-left: 2rem;
  5244. }
  5245. }
  5246. @media screen and (min-width: 992px ) {
  5247. .product-detail > [data-product-detail-layout="full"] .product-meta .product-meta-section:last-child {
  5248. min-width: 450px;
  5249. }
  5250. }
  5251. .product-detail > [data-product-detail-layout="wrap"][data-is-mobile] .pdp-form-wrapper {
  5252. padding: var(--sqs-mobile-site-gutter);
  5253. }
  5254. .product-detail > [data-product-detail-layout="wrap"] .product-nav {
  5255. margin: 22px 0;
  5256. }
  5257. .product-detail > [data-product-detail-layout="wrap"] .pdp-form-wrapper {
  5258. display: flex;
  5259. flex-direction: column;
  5260. }
  5261. .product-detail .product-meta {
  5262. display: flex;
  5263. flex-direction: column;
  5264. gap: 11px;
  5265. box-sizing: border-box;
  5266. }
  5267. .product-detail .product-meta .product-review-summary {
  5268. display: flex;
  5269. align-items: center;
  5270. gap: 9px;
  5271. }
  5272. .product-detail .product-meta .product-review-summary .avgStars {
  5273. display: flex;
  5274. gap: 6px;
  5275. }
  5276. .product-detail .product-meta .product-review-summary .summaryLink {
  5277. font-size: 1rem;
  5278. padding: 0;
  5279. margin: 0;
  5280. text-decoration: underline;
  5281. text-transform: capitalize;
  5282. white-space: nowrap;
  5283. }
  5284. .product-detail .product-meta .product-review-summary .summaryText {
  5285. margin: 0px;
  5286. }
  5287. .product-detail .product-meta .product-title {
  5288. color: var(--tweak-product-basic-item-title-color);
  5289. margin: 0;
  5290. }
  5291. .product-detail .product-meta .product-payment-method-messaging {
  5292. color: var(--tweak-product-basic-item-description-color);
  5293. background-color: var(--siteBackgroundColor);
  5294. margin-top: 11px;
  5295. }
  5296. .product-detail .product-meta .product-price {
  5297. color: var(--tweak-product-basic-item-price-color);
  5298. margin-bottom: 5px;
  5299. }
  5300. .product-detail .product-meta .product-price .original-price {
  5301. text-decoration: line-through;
  5302. }
  5303. .product-detail .product-meta .product-scarcity {
  5304. margin-bottom: 5px;
  5305. color: var(--tweak-product-basic-item-scarcity-color);
  5306. }
  5307. .product-detail .product-meta .product-status {
  5308. color: var(--tweak-product-basic-item-description-color);
  5309. font-weight: bold;
  5310. text-transform: uppercase;
  5311. }
  5312. .product-detail .product-meta .product-description {
  5313. color: var(--tweak-product-basic-item-description-color);
  5314. margin-bottom: 5px;
  5315. }
  5316. .product-detail .product-meta .product-description > :first-child {
  5317. margin-top: 0;
  5318. }
  5319. .product-detail .product-meta .product-description > :last-child {
  5320. margin-bottom: 0;
  5321. }
  5322. .product-detail .product-meta .product-variants {
  5323. display: flex;
  5324. flex-direction: column;
  5325. gap: 11px;
  5326. width: var(--product-content-form-width, "100%");
  5327. }
  5328. .product-detail .product-meta .product-variants .variant-option {
  5329. display: flex;
  5330. flex-direction: column;
  5331. gap: 6px;
  5332. box-sizing: border-box;
  5333. width: 100%;
  5334. color: var(--tweak-product-basic-item-variant-fields-color);
  5335. }
  5336. .product-detail .product-meta .product-variants .variant-select-wrapper {
  5337. position: relative;
  5338. display: flex;
  5339. align-items: center;
  5340. font-size: 1rem;
  5341. min-height: 66px;
  5342. text-align: left;
  5343. box-sizing: border-box;
  5344. padding: 0 1.3rem;
  5345. line-height: normal;
  5346. color: inherit;
  5347. }
  5348. .product-detail .product-meta .product-variants .variant-select-wrapper:before {
  5349. content: attr(data-selected-value);
  5350. display: inline-block;
  5351. z-index: 1;
  5352. pointer-events: none;
  5353. max-width: 100%;
  5354. word-break: break-word;
  5355. padding-right: 20px;
  5356. }
  5357. .product-detail .product-meta .product-variants .variant-select-wrapper:after {
  5358. content: '';
  5359. position: absolute;
  5360. right: 1.3rem;
  5361. transform: rotate(45deg);
  5362. border-bottom: 1px solid;
  5363. border-right: 1px solid;
  5364. height: 0.6rem;
  5365. width: 0.6rem;
  5366. transform-origin: top;
  5367. pointer-events: none;
  5368. font-size: 1rem;
  5369. }
  5370. .product-detail .product-meta .product-variants .variant-select-wrapper select {
  5371. -webkit-appearance: none;
  5372. -moz-appearance: none;
  5373. appearance: none;
  5374. border: 0;
  5375. border-radius: 0;
  5376. padding: 0;
  5377. background: transparent;
  5378. position: absolute;
  5379. top: 0;
  5380. right: 0;
  5381. width: 100%;
  5382. height: 100%;
  5383. font-size: 1rem;
  5384. color: rgba(0, 0, 0, 0);
  5385. border: 1px solid grey;
  5386. }
  5387. .product-detail .product-meta .product-variants .variant-select-wrapper select::-ms-expand {
  5388. display: none;
  5389. }
  5390. .product-detail .product-meta .product-variants .variant-select-wrapper select:focus option {
  5391. color: black;
  5392. }
  5393. .product-detail .product-meta .product-variants .variant-radiobtn-wrapper {
  5394. display: flex;
  5395. flex-wrap: wrap;
  5396. gap: 6px;
  5397. width: 100%;
  5398. }
  5399. .product-detail .product-meta .product-variants .variant-radiobtn-wrapper input[type="radio"] {
  5400. display: none;
  5401. }
  5402. .product-detail .product-meta .product-variants .variant-radiobtn-wrapper input[type="radio"]:disabled + label {
  5403. opacity: 30%;
  5404. cursor: not-allowed;
  5405. }
  5406. .product-detail .product-meta .product-variants .variant-radiobtn-wrapper input[type="radio"]:checked + label {
  5407. cursor: default;
  5408. }
  5409. .secondary-button-style-solid .product-detail .product-meta .product-variants .variant-radiobtn-wrapper input[type="radio"]:checked + label {
  5410. background: var(--secondaryButtonTextColor);
  5411. color: var(--secondaryButtonBackgroundColor);
  5412. }
  5413. .secondary-button-style-outline .product-detail .product-meta .product-variants .variant-radiobtn-wrapper input[type="radio"]:checked + label,
  5414. .secondary-button-style-solid.secondary-button-shape-underline .product-detail .product-meta .product-variants .variant-radiobtn-wrapper input[type="radio"]:checked + label {
  5415. background: var(--secondaryButtonBackgroundColor);
  5416. color: var(--secondaryButtonTextColor);
  5417. }
  5418. .product-detail .product-meta .product-variants .variant-radiobtn-wrapper label {
  5419. cursor: pointer;
  5420. }
  5421. .product-detail .product-meta .product-restock-notification {
  5422. display: flex;
  5423. flex-direction: column;
  5424. gap: 11px;
  5425. margin-top: 16px;
  5426. margin-bottom: 5px;
  5427. }
  5428. .product-detail .product-meta .product-restock-notification:not([hidden]) ~ .product-add-to-cart {
  5429. display: none !important;
  5430. }
  5431. .product-detail .product-meta .product-restock-notification .product-restock-cta {
  5432. line-height: 1;
  5433. font-size: 1rem;
  5434. color: var(--tweak-product-basic-item-description-color);
  5435. }
  5436. .product-detail .product-meta .product-restock-notification .product-restock-form {
  5437. display: flex;
  5438. flex-direction: row;
  5439. align-items: center;
  5440. gap: 0.5rem;
  5441. }
  5442. @media screen and (max-width: 575px ) {
  5443. .product-detail .product-meta .product-restock-notification .product-restock-form {
  5444. display: block;
  5445. }
  5446. .product-detail .product-meta .product-restock-notification .product-restock-form input[type="submit"] {
  5447. margin-top: 1rem;
  5448. }
  5449. }
  5450. .product-detail .product-meta .product-restock-notification .product-restock-form input {
  5451. font-size: 1rem;
  5452. border: 1px solid;
  5453. padding: 0.75rem;
  5454. }
  5455. .product-detail .product-meta .product-restock-notification .product-restock-form input[type="text"] {
  5456. min-width: 250px;
  5457. width: 100%;
  5458. border: 1px solid rgba(0, 0, 0, 0.12);
  5459. padding: 1.2rem 2rem;
  5460. box-sizing: border-box;
  5461. }
  5462. .product-detail .product-meta .product-restock-notification .product-restock-form input[type="text"]::placeholder {
  5463. color: rgba(0, 0, 0, 0.3);
  5464. }
  5465. .product-detail .product-meta .product-restock-notification .product-restock-form input[type="submit"] {
  5466. line-height: 1.25;
  5467. padding: 1.2rem 2rem;
  5468. }
  5469. .product-detail .product-meta .product-restock-notification .product-restock-mailing-list {
  5470. line-height: normal;
  5471. font-size: 0.75rem;
  5472. }
  5473. .product-detail .product-meta .product-restock-notification .product-restock-mailing-list input {
  5474. margin-right: 0.3rem;
  5475. vertical-align: text-bottom;
  5476. }
  5477. .product-detail .product-meta .product-restock-notification .product-restock-success-message {
  5478. padding: 14px;
  5479. background-color: rgba(0, 0, 0, 0.05);
  5480. font-size: 1rem;
  5481. text-align: center;
  5482. word-wrap: break-word;
  5483. }
  5484. .product-detail .product-meta .product-restock-notification .product-restock-error-message {
  5485. font-size: 1rem;
  5486. line-height: normal;
  5487. color: #F0523D;
  5488. }
  5489. .product-detail .product-meta .product-restock-notification .captcha-container:empty {
  5490. display: none;
  5491. }
  5492. .product-detail .product-meta .product-add-ons {
  5493. display: flex;
  5494. flex-direction: column;
  5495. gap: 6px;
  5496. margin: 5px 0;
  5497. }
  5498. .product-detail .product-meta .product-add-ons .add-on-card {
  5499. display: flex;
  5500. align-items: center;
  5501. flex-wrap: wrap;
  5502. gap: 11px;
  5503. border: 1px solid grey;
  5504. padding: 16px;
  5505. }
  5506. .product-detail .product-meta .product-add-ons .product-variants {
  5507. flex: 1;
  5508. align-self: auto;
  5509. }
  5510. @media screen and (max-width: 767px ) {
  5511. .product-detail .product-meta .product-add-ons .product-variants {
  5512. flex-basis: 100%;
  5513. order: 100;
  5514. }
  5515. }
  5516. .product-detail .product-meta .product-add-ons .product-variants .variant-option {
  5517. margin-bottom: 0;
  5518. }
  5519. .product-detail .product-meta .product-add-ons .product-variants .variant-option-title,
  5520. .product-detail .product-meta .product-add-ons .product-variants .variant-out-of-stock {
  5521. display: none;
  5522. }
  5523. .product-detail .product-meta .product-add-ons .product-variants .variant-select-wrapper {
  5524. padding: 0 13px;
  5525. min-height: 50px;
  5526. font-size: 15px;
  5527. }
  5528. .product-detail .product-meta .product-add-ons .product-variants .variant-select-wrapper:after {
  5529. right: 13px;
  5530. }
  5531. .product-detail .product-meta .product-add-ons .add-on-details {
  5532. flex: 1;
  5533. text-align: start;
  5534. }
  5535. .product-detail .product-meta .product-add-ons .add-on-details .add-on-title-link {
  5536. display: block;
  5537. }
  5538. .product-detail .product-meta .product-add-ons .add-on-details .add-on-title {
  5539. font-size: 18px;
  5540. margin-bottom: 6px;
  5541. color: var(--tweak-product-basic-item-description-color);
  5542. }
  5543. .product-detail .product-meta .product-add-ons .add-on-details .product-price {
  5544. font-size: 15px;
  5545. color: var(--tweak-product-basic-item-description-color);
  5546. margin: 0;
  5547. }
  5548. .product-detail .product-meta .product-add-ons .add-on-thumbnail {
  5549. width: 66px;
  5550. height: 66px;
  5551. object-fit: cover;
  5552. }
  5553. .product-detail .product-meta .product-add-ons .add-on-thumbnail.add-on-thumbnail-not-selected {
  5554. display: none !important;
  5555. }
  5556. .product-detail .product-meta .product-add-ons .sqs-add-to-cart-button-wrapper {
  5557. margin: auto;
  5558. width: auto;
  5559. }
  5560. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper.hidden,
  5561. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper:before {
  5562. display: none;
  5563. }
  5564. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button {
  5565. border-radius: 50%;
  5566. padding: 0 !important;
  5567. height: 43px;
  5568. width: 43px;
  5569. display: flex;
  5570. align-items: center;
  5571. justify-content: center;
  5572. min-height: 0;
  5573. }
  5574. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .sqs-add-to-cart-button-inner,
  5575. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .icons-container {
  5576. display: flex;
  5577. align-items: center;
  5578. justify-content: center;
  5579. }
  5580. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .icons-container > *:not(.add-icon) {
  5581. display: none;
  5582. }
  5583. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button.cart-adding .add-icon {
  5584. display: none;
  5585. }
  5586. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button.cart-adding .loading-icon {
  5587. display: flex;
  5588. }
  5589. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button.cart-added .add-icon {
  5590. display: none;
  5591. }
  5592. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button.cart-added .complete-icon {
  5593. display: block;
  5594. }
  5595. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .complete-icon {
  5596. margin-left: 2px;
  5597. }
  5598. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .loading-icon {
  5599. flex-direction: row;
  5600. justify-content: center;
  5601. align-items: center;
  5602. gap: 4px;
  5603. }
  5604. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .loading-icon .loading-dot {
  5605. background: var(--primaryButtonTextColor);
  5606. width: 5px;
  5607. height: 5px;
  5608. border-radius: 50%;
  5609. position: relative;
  5610. }
  5611. .primary-button-style-outline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .loading-icon .loading-dot,
  5612. .primary-button-style-solid.primary-button-shape-underline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .loading-icon .loading-dot {
  5613. background: var(--primaryButtonBackgroundColor);
  5614. }
  5615. @keyframes loading-dot-2 {
  5616. from {
  5617. opacity: 0;
  5618. }
  5619. 25% {
  5620. opacity: 1;
  5621. }
  5622. }
  5623. @keyframes loading-dot-3 {
  5624. from {
  5625. opacity: 0;
  5626. }
  5627. 50% {
  5628. opacity: 1;
  5629. }
  5630. }
  5631. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .loading-icon .loading-dot:nth-child(2) {
  5632. animation: loading-dot-2 2.1s infinite steps(1);
  5633. }
  5634. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button .loading-icon .loading-dot:nth-child(3) {
  5635. animation: loading-dot-3 2.1s infinite steps(1);
  5636. }
  5637. .primary-button-style-outline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button:hover .loading-dot {
  5638. background: var(--primaryButtonTextColor);
  5639. }
  5640. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button svg {
  5641. border-radius: 100%;
  5642. width: 15px;
  5643. height: 15px;
  5644. fill: var(--primaryButtonTextColor);
  5645. }
  5646. .primary-button-style-outline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button svg,
  5647. .primary-button-style-solid.primary-button-shape-underline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button svg {
  5648. fill: var(--primaryButtonBackgroundColor);
  5649. }
  5650. .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button svg.add-icon {
  5651. stroke: var(--primaryButtonTextColor);
  5652. stroke-width: 2px;
  5653. }
  5654. .primary-button-style-outline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button svg.add-icon,
  5655. .primary-button-style-solid.primary-button-shape-underline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button svg.add-icon {
  5656. stroke: var(--primaryButtonBackgroundColor);
  5657. }
  5658. .primary-button-style-outline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button:hover svg {
  5659. fill: var(--primaryButtonTextColor);
  5660. }
  5661. .primary-button-style-outline .product-detail .product-meta .product-add-ons .add-on-add-to-cart-wrapper .sqs-add-to-cart-button:hover svg.add-icon {
  5662. stroke: var(--primaryButtonTextColor);
  5663. }
  5664. .product-detail .product-meta .product-add-to-cart {
  5665. display: flex;
  5666. flex-direction: column;
  5667. gap: 16px;
  5668. margin: 5px 0;
  5669. }
  5670. .product-detail .product-meta .product-add-to-cart .product-quantity-input-wrapper {
  5671. color: var(--tweak-product-basic-item-variant-fields-color);
  5672. }
  5673. .product-detail .product-meta .product-add-to-cart .product-quantity-input-wrapper label {
  5674. display: block;
  5675. margin-bottom: 6px;
  5676. }
  5677. .product-detail .product-meta .product-add-to-cart .product-quantity-input-wrapper input {
  5678. -webkit-appearance: none;
  5679. -moz-appearance: none;
  5680. appearance: none;
  5681. border: 0;
  5682. border-radius: 0;
  5683. padding: 0;
  5684. background: transparent;
  5685. text-align: left;
  5686. box-sizing: border-box;
  5687. padding: 1.1rem 1.3rem;
  5688. line-height: normal;
  5689. color: inherit;
  5690. border: 1px solid grey;
  5691. }
  5692. .product-detail .product-meta .product-add-to-cart .product-quantity-input-wrapper input::-ms-expand {
  5693. display: none;
  5694. }
  5695. .product-detail .product-meta .product-add-to-cart .product-add-to-cart-layout-wrapper {
  5696. display: flex;
  5697. flex-direction: column;
  5698. gap: 16px;
  5699. }
  5700. @media screen and (max-width: 767px ) {
  5701. .product-detail .product-meta .product-add-to-cart .product-add-to-cart-layout-wrapper.add-to-cart-inline-md-down {
  5702. flex-direction: row;
  5703. align-items: end;
  5704. gap: 6px;
  5705. }
  5706. .product-detail .product-meta .product-add-to-cart .product-add-to-cart-layout-wrapper.add-to-cart-inline-md-down .sqs-add-to-cart-button-wrapper {
  5707. align-self: auto;
  5708. }
  5709. }
  5710. @media screen and (min-width: 768px ) {
  5711. .product-detail .product-meta .product-add-to-cart .product-add-to-cart-layout-wrapper.add-to-cart-inline-md-up {
  5712. flex-direction: row;
  5713. align-items: end;
  5714. gap: 6px;
  5715. }
  5716. .product-detail .product-meta .product-add-to-cart .product-add-to-cart-layout-wrapper.add-to-cart-inline-md-up .sqs-add-to-cart-button-wrapper {
  5717. align-self: auto;
  5718. }
  5719. }
  5720. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper {
  5721. width: var(--product-content-form-width, "100%");
  5722. }
  5723. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button {
  5724. width: 100%;
  5725. }
  5726. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .sqs-add-to-cart-button-inner {
  5727. display: flex;
  5728. justify-content: center;
  5729. }
  5730. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .cart-loader {
  5731. border: 3px solid transparent;
  5732. border-radius: 50%;
  5733. border-top: 3px solid currentColor;
  5734. animation: spin 1s linear infinite;
  5735. }
  5736. @keyframes spin {
  5737. 0% {
  5738. transform: rotate(0deg);
  5739. }
  5740. 100% {
  5741. transform: rotate(360deg);
  5742. }
  5743. }
  5744. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element--primary .cart-loader {
  5745. width: calc((var(--primary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  5746. height: calc((var(--primary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  5747. }
  5748. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element-secondary .cart-loader {
  5749. width: calc((var(--secondary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  5750. height: calc((var(--secondary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  5751. }
  5752. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.sqs-button-element-tertiary .cart-loader {
  5753. width: calc((var(--tertiary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  5754. height: calc((var(--tertiary-button-font-font-size-value, 1) - 1) * 1.2vw + 1.2rem);
  5755. }
  5756. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .add-to-cart-text {
  5757. display: block;
  5758. }
  5759. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .cart-loader {
  5760. display: none;
  5761. }
  5762. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button .cart-added-text {
  5763. display: none;
  5764. }
  5765. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-adding .add-to-cart-text {
  5766. display: none;
  5767. }
  5768. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-adding .cart-loader {
  5769. display: block;
  5770. }
  5771. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-adding .cart-added-text {
  5772. display: none;
  5773. }
  5774. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-added .add-to-cart-text {
  5775. display: none;
  5776. }
  5777. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-added .cart-loader {
  5778. display: none;
  5779. }
  5780. .product-detail .product-meta .product-add-to-cart .sqs-add-to-cart-button-wrapper .sqs-add-to-cart-button.cart-added .cart-added-text {
  5781. display: block;
  5782. }
  5783. .product-detail .product-meta .product-subs-otp {
  5784. display: block;
  5785. }
  5786. .product-detail .product-meta .product-subs-otp .frequency-label {
  5787. margin-bottom: 6px;
  5788. color: var(--tweak-product-basic-item-variant-fields-color);
  5789. }
  5790. .product-detail .product-meta .product-subs-otp .subs-otp-radio-wrapper {
  5791. border: 1px solid gray;
  5792. }
  5793. .product-detail .product-meta .product-subs-otp .subs-otp-radio-wrapper .subscription-option {
  5794. border-top: 1px solid gray;
  5795. }
  5796. .product-detail .product-meta .product-subs-otp .subs-and-otp-option {
  5797. display: flex;
  5798. align-items: center;
  5799. justify-content: space-between;
  5800. padding: 1.5rem;
  5801. }
  5802. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .subs-and-otp-label {
  5803. display: flex;
  5804. flex: 1;
  5805. align-items: center;
  5806. color: var(--product-detail-subscriptions-title-color);
  5807. }
  5808. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .radio-wrapper {
  5809. display: flex;
  5810. align-items: center;
  5811. text-align: left;
  5812. }
  5813. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .radio-wrapper input[name="otp-subs-radio"] {
  5814. appearance: none;
  5815. display: flex;
  5816. justify-content: center;
  5817. align-items: center;
  5818. width: 22px;
  5819. height: 22px;
  5820. border-radius: 50%;
  5821. background-clip: content-box;
  5822. background-color: #fff;
  5823. border: 1px solid #9b9b9b;
  5824. }
  5825. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .radio-wrapper input[name="otp-subs-radio"]:checked {
  5826. background-color: #d6d6d6;
  5827. border: none;
  5828. }
  5829. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .radio-wrapper input[name="otp-subs-radio"]:checked:after {
  5830. content: "";
  5831. width: 8px;
  5832. height: 8px;
  5833. border-radius: 50%;
  5834. background-color: black;
  5835. }
  5836. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .radio-wrapper label {
  5837. padding-left: 11px;
  5838. }
  5839. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .product-price,
  5840. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .subscription-product-price {
  5841. text-align: end;
  5842. }
  5843. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .one-time-purchase-product-price {
  5844. color: var(--product-detail-one-time-purchase-price-text-color);
  5845. }
  5846. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .one-time-purchase-product-price.no-percentage {
  5847. display: none;
  5848. }
  5849. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .subscription-product-price {
  5850. margin-bottom: 6px;
  5851. }
  5852. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .subscription-product-price .subscription-price {
  5853. color: var(--product-detail-subscription-price-text-color);
  5854. }
  5855. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .subscription-product-price.no-percentage {
  5856. display: none;
  5857. }
  5858. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .sale-percentage,
  5859. .product-detail .product-meta .product-subs-otp .subs-and-otp-option select {
  5860. margin-top: 6px;
  5861. }
  5862. .product-detail .product-meta .product-subs-otp .subs-and-otp-option select {
  5863. background: transparent;
  5864. }
  5865. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .sale-percentage {
  5866. color: var(--product-detail-subscriptions-description-text-color);
  5867. }
  5868. .product-detail .product-meta .product-subs-otp .subs-and-otp-option .sale-percentage.no-percentage {
  5869. display: none;
  5870. }
  5871. .product-detail .product-meta .product-subs-otp .subscription-option {
  5872. padding-top: 1rem;
  5873. padding-bottom: 1rem;
  5874. }
  5875. .product-detail .product-meta .product-subs-otp .subscription-option select {
  5876. border: none;
  5877. color: var(--product-detail-subscriptions-frequency-text-color);
  5878. }
  5879. .product-detail .product-meta .product-subs-otp .subscription-option select {
  5880. position: absolute;
  5881. top: 0;
  5882. right: 0;
  5883. width: 100%;
  5884. height: 100%;
  5885. font-size: 1rem;
  5886. color: rgba(0, 0, 0, 0);
  5887. appearance: none;
  5888. }
  5889. @media screen and (max-width: 767px ) {
  5890. .product-detail .product-meta .product-subs-otp .subscription-option select {
  5891. overflow-x: hidden;
  5892. }
  5893. }
  5894. .product-detail .product-meta .product-subs-otp .subscription-option select:focus option {
  5895. color: black;
  5896. }
  5897. @media screen and (max-width: 767px ) {
  5898. .product-detail .product-meta .product-subs-otp {
  5899. order: 3;
  5900. }
  5901. }
  5902. .product-detail .product-meta .product-subs-otp .subscription-frequency {
  5903. margin-top: 6px;
  5904. color: var(--product-detail-subscriptions-frequency-text-color);
  5905. }
  5906. .product-detail .product-meta .product-subs-otp .subscription-frequency.no-percentage {
  5907. margin-top: 0;
  5908. }
  5909. .product-detail .product-meta .product-subs-otp .subscription-frequency-select-wrapper {
  5910. display: flex;
  5911. gap: 5px;
  5912. position: relative;
  5913. opacity: 0;
  5914. transition: opacity 0.1s ease-out;
  5915. color: var(--product-detail-subscriptions-frequency-text-color);
  5916. }
  5917. .product-detail .product-meta .product-subs-otp .subscription-frequency-select-wrapper select {
  5918. margin-top: 0;
  5919. }
  5920. .product-detail .product-meta .product-subs-otp .subscription-frequency-select-wrapper[data-text] {
  5921. opacity: 1;
  5922. }
  5923. .product-detail .product-meta .product-subs-otp .subscription-frequency-select-wrapper:before {
  5924. content: attr(data-text);
  5925. display: inline-block;
  5926. text-align: right;
  5927. }
  5928. .product-detail .product-meta .product-subs-otp .subscription-frequency-select-wrapper .dropdown-icon {
  5929. display: flex;
  5930. align-items: center;
  5931. width: 20px;
  5932. }
  5933. .product-detail .product-meta .product-subs-otp .subscription-frequency-select-wrapper .dropdown-icon:after {
  5934. content: '';
  5935. position: absolute;
  5936. right: 0;
  5937. transform: rotate(45deg);
  5938. border-bottom: 1px solid;
  5939. border-right: 1px solid;
  5940. height: 10px;
  5941. width: 10px;
  5942. transform-origin: top;
  5943. pointer-events: none;
  5944. font-size: 1rem;
  5945. color: var(--product-detail-subscriptions-frequency-text-color);
  5946. margin-bottom: 4px;
  5947. }
  5948. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subscription-product-price {
  5949. margin-bottom: 6px;
  5950. }
  5951. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper,
  5952. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper {
  5953. padding: 0;
  5954. }
  5955. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper .subs-otp-button-label,
  5956. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper .subs-otp-button-label {
  5957. width: 100%;
  5958. padding: 1.5rem;
  5959. cursor: pointer;
  5960. display: flex;
  5961. justify-content: space-between;
  5962. border-style: solid;
  5963. border-color: grey;
  5964. background-color: var(--product-detail-subscriptions-button-background-color);
  5965. border-color: var(--product-detail-subscriptions-button-text-color);
  5966. }
  5967. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper .subs-otp-button-label *,
  5968. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper .subs-otp-button-label *,
  5969. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper .subs-otp-button-label .dropdown-icon::after,
  5970. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper .subs-otp-button-label .dropdown-icon::after {
  5971. color: var(--product-detail-subscriptions-button-text-color);
  5972. }
  5973. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper .subs-otp-button-label .subscription-frequency,
  5974. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper .subs-otp-button-label .subscription-frequency {
  5975. color: transparent;
  5976. }
  5977. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper .subs-otp-button-label .subscription-frequency:focus,
  5978. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper .subs-otp-button-label .subscription-frequency:focus {
  5979. outline-color: var(--product-detail-subscriptions-button-text-color);
  5980. }
  5981. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper .subs-otp-button-label .subs-and-otp-label,
  5982. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper .subs-otp-button-label .subs-and-otp-label {
  5983. padding-left: 0;
  5984. }
  5985. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper input[name="subs-otp-button"],
  5986. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper input[name="subs-otp-button"] {
  5987. display: none;
  5988. }
  5989. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label,
  5990. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label {
  5991. background-color: var(--product-detail-subscriptions-button-text-color);
  5992. border-color: var(--product-detail-subscriptions-button-background-color);
  5993. }
  5994. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label *,
  5995. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label *,
  5996. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label .dropdown-icon::after,
  5997. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label .dropdown-icon::after {
  5998. color: var(--product-detail-subscriptions-button-background-color);
  5999. }
  6000. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .otp-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label .subscription-frequency:focus,
  6001. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper input[name="subs-otp-button"]:checked + .subs-otp-button-label .subscription-frequency:focus {
  6002. outline-color: var(--product-detail-subscriptions-button-background-color);
  6003. }
  6004. .product-detail .product-meta .product-subs-otp .subs-otp-button-wrapper .subs-button-wrapper {
  6005. margin-top: 11px;
  6006. }
  6007. .product-detail .product-nav {
  6008. display: flex;
  6009. flex-direction: row;
  6010. align-items: center;
  6011. gap: 8px;
  6012. z-index: 1;
  6013. }
  6014. @media screen and (max-width: 767px ) {
  6015. .product-detail .product-nav {
  6016. display: none;
  6017. }
  6018. }
  6019. .product-detail .ProductItem-additional {
  6020. width: 100%;
  6021. padding: 3vw var(--sqs-site-gutter);
  6022. margin: 0 auto;
  6023. box-sizing: border-box;
  6024. }
  6025. .product-detail .product-related-products {
  6026. padding: 0 var(--sqs-site-gutter) 3vw;
  6027. }
  6028. .product-detail .product-related-products [data-product-list-layout="grid"] {
  6029. max-width: unset !important;
  6030. padding: 0 !important;
  6031. }
  6032. .product-detail .star {
  6033. width: 1rem;
  6034. height: 1rem;
  6035. fill: var(--paragraphMediumColor);
  6036. }
  6037. .product-detail .star path {
  6038. fill: var(--paragraphMediumColor);
  6039. }
  6040. .product-detail .product-reviews {
  6041. padding: 0 var(--sqs-site-gutter);
  6042. }
  6043. @media screen and (max-width: 767px ) {
  6044. .product-detail .product-reviews {
  6045. padding: 0 var(--sqs-mobile-site-gutter);
  6046. }
  6047. }
  6048. .product-detail .product-reviews .loader {
  6049. height: 20px;
  6050. width: 20px;
  6051. perspective: 80px;
  6052. margin: auto;
  6053. padding: 10vw;
  6054. }
  6055. .product-detail .product-reviews .loader .indicator {
  6056. background: black;
  6057. height: 20px;
  6058. width: 20px;
  6059. animation-name: product-reviews-loader-flip-square;
  6060. animation-duration: 1.6s;
  6061. animation-iteration-count: infinite;
  6062. animation-timing-function: cubic-bezier(0.66, 0, 0.34, 1);
  6063. transform-style: preserve-3d;
  6064. }
  6065. @keyframes product-reviews-loader-flip-square {
  6066. 0% {
  6067. transform: rotateY(0deg);
  6068. }
  6069. 12.5% {
  6070. transform: rotateY(0deg);
  6071. }
  6072. 50% {
  6073. transform: rotateY(180deg);
  6074. }
  6075. 62.5% {
  6076. transform: rotateY(180deg);
  6077. }
  6078. 100% {
  6079. transform: rotateZ(180deg);
  6080. }
  6081. }
  6082. .product-detail .product-reviews .reviewTabSectionContainer * {
  6083. color: inherit;
  6084. }
  6085. .product-detail .product-reviews .reviewsSection {
  6086. padding-top: 2rem;
  6087. padding-bottom: 9rem;
  6088. }
  6089. .product-detail .product-reviews .reviewsContainer {
  6090. padding-inline-start: 0px;
  6091. list-style-type: none;
  6092. list-style-position: outside;
  6093. }
  6094. .product-detail .product-reviews .productLink {
  6095. text-decoration: underline;
  6096. }
  6097. .product-detail .product-reviews .reviewInfo {
  6098. padding-right: 12px;
  6099. }
  6100. .product-detail .product-reviews .reviewStars {
  6101. display: inline-flex;
  6102. gap: 2px;
  6103. width: 50%;
  6104. margin: 0;
  6105. }
  6106. .product-detail .product-reviews .reviewDesc {
  6107. margin: 8px 0 0 0;
  6108. text-transform: none;
  6109. }
  6110. .product-detail .product-reviews .reviewName {
  6111. margin: 0;
  6112. font-weight: bold;
  6113. padding-bottom: 11px;
  6114. }
  6115. .product-detail .product-reviews .reviewStamp {
  6116. font-size: 1rem;
  6117. }
  6118. .product-detail .product-reviews .reviewSeparator {
  6119. padding: 3px;
  6120. font-weight: bold;
  6121. }
  6122. .product-detail .product-reviews .reviewDivider {
  6123. width: 100%;
  6124. opacity: 25%;
  6125. }
  6126. .product-detail .product-reviews .reviewImgContainer {
  6127. margin: 0;
  6128. padding: 0;
  6129. background: none;
  6130. border: 0;
  6131. display: flex;
  6132. }
  6133. .product-detail .product-reviews .reviewTitle {
  6134. display: flex;
  6135. align-items: center;
  6136. gap: 11px;
  6137. margin-top: 22px;
  6138. line-height: 1;
  6139. }
  6140. .product-detail .product-reviews .reviewTitle p {
  6141. margin: 0;
  6142. }
  6143. .product-detail .product-reviews .reviewImg {
  6144. height: 33px;
  6145. }
  6146. .product-detail .product-reviews .showMoreButton {
  6147. display: block;
  6148. margin: 33px auto;
  6149. text-transform: uppercase;
  6150. border: none;
  6151. text-decoration: underline;
  6152. text-underline-offset: 0.2em;
  6153. background-color: transparent;
  6154. color: inherit;
  6155. }
  6156. .product-detail .product-reviews .showMoreReviewsButton {
  6157. display: block;
  6158. margin: 33px auto;
  6159. text-transform: uppercase;
  6160. border: none;
  6161. text-underline-offset: 0.2em;
  6162. background-color: transparent;
  6163. color: inherit;
  6164. border: 1px solid;
  6165. border-color: #E7E7E7;
  6166. padding: 16px;
  6167. }
  6168. .product-detail .product-reviews .reviewSource {
  6169. display: flex;
  6170. align-items: center;
  6171. margin-top: 11px;
  6172. }
  6173. .product-detail .product-reviews .sourceText {
  6174. margin: 0;
  6175. opacity: 70%;
  6176. }
  6177. .product-detail .product-reviews .ReviewTabsTitle {
  6178. margin-bottom: 15px;
  6179. }
  6180. .product-detail .product-reviews .ReviewTabsTitle .averageStarsContainer {
  6181. display: flex;
  6182. gap: 11px;
  6183. line-height: 22px;
  6184. }
  6185. .product-detail .product-reviews .ReviewTabsTitle .averageStarsContainer .averageStars {
  6186. display: flex;
  6187. gap: 6px;
  6188. }
  6189. .product-detail .product-reviews .ReviewTabsTitle .averageStarsContainer .averageStars .star {
  6190. transform: scale(1.25);
  6191. width: 22px;
  6192. }
  6193. .product-detail .product-reviews .averageStarsNumber {
  6194. font-weight: bold;
  6195. font-size: 1.125rem;
  6196. }
  6197. .product-detail .product-reviews .reviewsTabButtonContainer {
  6198. float: left;
  6199. border: none;
  6200. outline: none;
  6201. padding: 14px 0 16px;
  6202. margin-right: 22px;
  6203. }
  6204. .product-detail .product-reviews .reviewsTabButton {
  6205. border: none;
  6206. background-color: transparent;
  6207. padding-left: 0;
  6208. padding-right: 0;
  6209. }
  6210. .product-detail .product-reviews .activeReviewsTabButton {
  6211. border-width: 0 0 2px 0;
  6212. border-color: #000;
  6213. border-style: solid;
  6214. }
  6215. .product-detail .product-reviews .activeReviewsTabButtonText {
  6216. font-weight: bold;
  6217. }
  6218. .product-detail .product-reviews .activeReviewsTab {
  6219. display: block;
  6220. }
  6221. .product-detail .product-reviews .inactiveReviewsTab {
  6222. display: none;
  6223. }
  6224. .product-detail .product-reviews .reviewsTab {
  6225. border: none;
  6226. }
  6227. .product-detail .product-reviews .a11yNotification {
  6228. height: 0;
  6229. }
  6230. .product-detail .product-reviews .reviewsSectionTitle {
  6231. margin-bottom: 22px;
  6232. }
  6233. .product-detail .product-reviews .reviewDD {
  6234. margin: 0px;
  6235. }
  6236. @media only screen and (min-width: 430px) {
  6237. .product-detail .product-reviews .leftColumn {
  6238. width: 20%;
  6239. float: left;
  6240. }
  6241. .product-detail .product-reviews .rightColumn {
  6242. float: right;
  6243. width: 80%;
  6244. }
  6245. .product-detail .product-reviews .reviewDetails {
  6246. display: inline-block;
  6247. width: 100%;
  6248. padding: 13px 0;
  6249. }
  6250. }
  6251. @media only screen and (max-width: 430px) {
  6252. .product-detail .product-reviews .reviewsSection p,
  6253. .product-detail .product-reviews .reviewsSection div,
  6254. .product-detail .product-reviews .reviewsSection button {
  6255. font-size: 0.875rem;
  6256. }
  6257. .product-detail .product-reviews .reviewsSection .reviewName {
  6258. display: inline;
  6259. }
  6260. .product-detail .product-reviews .reviewsContainer dl {
  6261. margin: 0;
  6262. }
  6263. .product-detail .product-reviews .reviewsTabButton {
  6264. font-size: 0.875rem;
  6265. }
  6266. .product-detail .product-reviews .ReviewTabsTitle {
  6267. margin-bottom: 5px;
  6268. }
  6269. .product-detail .product-reviews .ReviewTabsTitle .averageStarsContainer {
  6270. flex-direction: column;
  6271. }
  6272. .product-detail .product-reviews .ReviewTabsTitle .averageStarsContainer .averageStarsNumber {
  6273. font-size: 1.125rem;
  6274. }
  6275. .product-detail .product-reviews .rightColumn {
  6276. margin-top: 11px;
  6277. }
  6278. .product-detail .product-reviews .reviewTitle {
  6279. margin-top: 11px;
  6280. }
  6281. .product-detail .product-reviews .reviewDivider {
  6282. margin: 0;
  6283. }
  6284. .product-detail .product-reviews .reviewDetails {
  6285. display: inline-block;
  6286. width: 100%;
  6287. padding: 22px 0;
  6288. }
  6289. }
  6290. .reviewImgLightbox {
  6291. top: 50%;
  6292. position: relative;
  6293. left: 50%;
  6294. transform: translateX(-50%) translateY(-50%);
  6295. max-width: 90%;
  6296. max-height: 90%;
  6297. }
  6298. @keyframes gallery-image-enter-from-right {
  6299. from {
  6300. transform: translateX(101%);
  6301. }
  6302. to {
  6303. transform: translateX(0);
  6304. }
  6305. }
  6306. @keyframes gallery-image-exit-to-left {
  6307. from {
  6308. transform: translateX(0);
  6309. }
  6310. to {
  6311. transform: translateX(-101%);
  6312. }
  6313. }
  6314. @keyframes gallery-image-enter-from-left {
  6315. from {
  6316. transform: translateX(-101%);
  6317. }
  6318. to {
  6319. transform: translateX(0);
  6320. }
  6321. }
  6322. @keyframes gallery-image-exit-to-right {
  6323. from {
  6324. transform: translateX(0);
  6325. }
  6326. to {
  6327. transform: translateX(101%);
  6328. }
  6329. }
  6330. .product-gallery {
  6331. display: flex;
  6332. gap: 10px;
  6333. align-items: flex-start;
  6334. overflow: hidden;
  6335. user-select: none;
  6336. margin: 0;
  6337. }
  6338. @media screen and (max-width: 767px ) {
  6339. .product-gallery {
  6340. width: 100%;
  6341. }
  6342. }
  6343. @media screen and (min-width: 769px) and (max-width: 1024px) {
  6344. .product-gallery {
  6345. width: min(var(--product-gallery-width), 50%);
  6346. }
  6347. }
  6348. @media screen and (min-width: 1025px) and (max-width: 1280px) {
  6349. .product-gallery {
  6350. width: min(var(--product-gallery-width), 60%);
  6351. }
  6352. }
  6353. @media screen and (min-width: 1281px) {
  6354. .product-gallery {
  6355. width: var(--product-gallery-width);
  6356. }
  6357. }
  6358. [data-gallery-placement="right"] .product-gallery {
  6359. flex-direction: row-reverse;
  6360. }
  6361. [data-gallery-thumbnail-placement="below"] .product-gallery {
  6362. flex-flow: column-reverse;
  6363. }
  6364. [data-gallery-placement="right"][data-gallery-thumbnail-placement="below"] .product-gallery {
  6365. align-items: flex-end;
  6366. }
  6367. .product-gallery .enable-on-first-image-load {
  6368. opacity: 0;
  6369. transition: opacity 0.5s;
  6370. pointer-events: none;
  6371. }
  6372. .product-gallery .enable-on-first-image-load.enabled {
  6373. opacity: 1;
  6374. pointer-events: auto;
  6375. }
  6376. .product-gallery-current-slide-indicator {
  6377. position: absolute;
  6378. top: 18px;
  6379. right: 20px;
  6380. display: inline-block;
  6381. z-index: 3;
  6382. font-size: 12px;
  6383. color: var(--tweak-product-basic-item-gallery-controls-color);
  6384. }
  6385. @media screen and (min-width: 768px ) {
  6386. .product-gallery-current-slide-indicator {
  6387. display: none;
  6388. }
  6389. }
  6390. .product-gallery-carousel-controls {
  6391. --product-gallery-carousel-control-click-area-size: calc(var(--product-gallery-arrow-size) + 20px);
  6392. position: absolute;
  6393. width: 100%;
  6394. left: 0;
  6395. z-index: 3;
  6396. justify-content: space-between;
  6397. top: 50%;
  6398. transform: translateY(-50%);
  6399. display: none;
  6400. }
  6401. .product-gallery-carousel-controls.enable-on-first-image-load.enabled {
  6402. pointer-events: none;
  6403. }
  6404. .product-gallery-carousel-controls.hidden {
  6405. display: none !important;
  6406. }
  6407. @media screen and (max-width: 767px ) {
  6408. .product-gallery-carousel-controls {
  6409. display: flex;
  6410. }
  6411. }
  6412. @media screen and (min-width: 768px ) {
  6413. [data-gallery-design="carousel"] .product-gallery-carousel-controls,
  6414. [data-gallery-design="slideshow"] .product-gallery-carousel-controls {
  6415. display: flex;
  6416. }
  6417. }
  6418. .product-gallery-carousel-controls .product-gallery-carousel-control {
  6419. padding: 0;
  6420. border: none;
  6421. background-color: transparent;
  6422. width: var(--product-gallery-carousel-control-click-area-size);
  6423. height: var(--product-gallery-carousel-control-click-area-size);
  6424. min-width: 50px;
  6425. min-height: 50px;
  6426. cursor: pointer;
  6427. margin: 0 1.5vw;
  6428. display: flex;
  6429. align-items: center;
  6430. pointer-events: auto;
  6431. }
  6432. .product-gallery-carousel-controls .product-gallery-carousel-control:after {
  6433. display: block;
  6434. content: '';
  6435. width: var(--product-gallery-arrow-size);
  6436. height: var(--product-gallery-arrow-size);
  6437. border-style: solid;
  6438. border-color: var(--tweak-product-basic-item-gallery-controls-color);
  6439. border-width: 1px 1px 0 0;
  6440. margin: calc((var(--product-gallery-carousel-control-click-area-size) - var(--product-gallery-arrow-size)) / 2);
  6441. }
  6442. .product-gallery-carousel-controls .product-gallery-carousel-control:focus {
  6443. outline-color: var(--tweak-product-basic-item-gallery-controls-color);
  6444. }
  6445. .product-gallery-carousel-controls .product-gallery-carousel-control.product-gallery-prev {
  6446. left: 0;
  6447. justify-content: flex-start;
  6448. }
  6449. .product-gallery-carousel-controls .product-gallery-carousel-control.product-gallery-prev:after {
  6450. transform: rotate(225deg);
  6451. }
  6452. .product-gallery-carousel-controls .product-gallery-carousel-control.product-gallery-next {
  6453. right: 0;
  6454. justify-content: flex-end;
  6455. }
  6456. .product-gallery-carousel-controls .product-gallery-carousel-control.product-gallery-next:after {
  6457. transform: rotate(45deg);
  6458. }
  6459. .product-gallery-slides {
  6460. position: relative;
  6461. flex-grow: 1;
  6462. max-width: 100%;
  6463. aspect-ratio: var(--product-gallery-aspect-ratio);
  6464. }
  6465. @media screen and (min-width: 768px ) {
  6466. .product-gallery-slides {
  6467. overflow: hidden;
  6468. }
  6469. [data-gallery-design="stacked"] .product-gallery-slides {
  6470. aspect-ratio: unset;
  6471. }
  6472. }
  6473. [data-gallery-thumbnail-placement="below"] .product-gallery-slides {
  6474. width: 100%;
  6475. }
  6476. .product-gallery-slides-item {
  6477. width: 100%;
  6478. }
  6479. .product-gallery-slides-item.selected {
  6480. z-index: 2;
  6481. }
  6482. .product-gallery-slides-item:focus {
  6483. outline-width: 0;
  6484. }
  6485. .product-gallery-slides-item:focus::after {
  6486. content: '';
  6487. position: absolute;
  6488. top: 0;
  6489. left: 0;
  6490. width: 100%;
  6491. height: 100%;
  6492. outline-width: var(--sqs-focus-outline-width);
  6493. outline-style: var(--sqs-focus-outline-style);
  6494. outline-offset: var(--sqs-focus-outline-offset-flush);
  6495. outline-color: currentcolor;
  6496. }
  6497. .product-gallery-slides-item:focus:not(:focus-visible)::after {
  6498. outline-style: none;
  6499. }
  6500. @media screen and (max-width: 767px ) {
  6501. .product-gallery-slides-item {
  6502. visibility: hidden;
  6503. }
  6504. .product-gallery-slides-item.going-prev.next-slide {
  6505. display: block;
  6506. visibility: visible;
  6507. }
  6508. .product-gallery-slides-item.going-prev.next-slide.prev-loaded {
  6509. animation: gallery-image-exit-to-right 0.5s ease-in-out both;
  6510. z-index: 1;
  6511. }
  6512. .product-gallery-slides-item.going-prev.selected {
  6513. display: block;
  6514. visibility: visible;
  6515. }
  6516. .product-gallery-slides-item.going-prev.selected.loaded {
  6517. animation: gallery-image-enter-from-left 0.5s ease-in-out both;
  6518. }
  6519. .product-gallery-slides-item.going-next.prev-slide {
  6520. display: block;
  6521. visibility: visible;
  6522. }
  6523. .product-gallery-slides-item.going-next.prev-slide.next-loaded {
  6524. animation: gallery-image-exit-to-left 0.5s ease-in-out both;
  6525. z-index: 1;
  6526. }
  6527. .product-gallery-slides-item.going-next.selected {
  6528. display: block;
  6529. visibility: visible;
  6530. }
  6531. .product-gallery-slides-item.going-next.selected.loaded {
  6532. animation: gallery-image-enter-from-right 0.5s ease-in-out both;
  6533. }
  6534. }
  6535. @media screen and (min-width: 768px ) {
  6536. [data-gallery-design="slideshow"] .product-gallery-slides-item:not(.selected) {
  6537. opacity: 0;
  6538. }
  6539. [data-gallery-design="carousel"] .product-gallery-slides-item {
  6540. visibility: hidden;
  6541. }
  6542. [data-gallery-design="carousel"] .product-gallery-slides-item.going-prev.next-slide {
  6543. display: block;
  6544. visibility: visible;
  6545. }
  6546. [data-gallery-design="carousel"] .product-gallery-slides-item.going-prev.next-slide.prev-loaded {
  6547. animation: gallery-image-exit-to-right 0.5s ease-in-out both;
  6548. z-index: 1;
  6549. }
  6550. [data-gallery-design="carousel"] .product-gallery-slides-item.going-prev.selected {
  6551. display: block;
  6552. visibility: visible;
  6553. }
  6554. [data-gallery-design="carousel"] .product-gallery-slides-item.going-prev.selected.loaded {
  6555. animation: gallery-image-enter-from-left 0.5s ease-in-out both;
  6556. }
  6557. [data-gallery-design="carousel"] .product-gallery-slides-item.going-next.prev-slide {
  6558. display: block;
  6559. visibility: visible;
  6560. }
  6561. [data-gallery-design="carousel"] .product-gallery-slides-item.going-next.prev-slide.next-loaded {
  6562. animation: gallery-image-exit-to-left 0.5s ease-in-out both;
  6563. z-index: 1;
  6564. }
  6565. [data-gallery-design="carousel"] .product-gallery-slides-item.going-next.selected {
  6566. display: block;
  6567. visibility: visible;
  6568. }
  6569. [data-gallery-design="carousel"] .product-gallery-slides-item.going-next.selected.loaded {
  6570. animation: gallery-image-enter-from-right 0.5s ease-in-out both;
  6571. }
  6572. [data-gallery-design="stacked"] .product-gallery-slides-item {
  6573. margin-bottom: 25px;
  6574. position: relative;
  6575. height: 100%;
  6576. overflow: hidden;
  6577. }
  6578. [data-gallery-design="stacked"] .product-gallery-slides-item:last-child {
  6579. margin-bottom: 0;
  6580. }
  6581. }
  6582. [data-gallery-design="slideshow"] .product-gallery-slides-item,
  6583. [data-gallery-design="carousel"] .product-gallery-slides-item {
  6584. position: absolute;
  6585. top: 0;
  6586. left: 0;
  6587. width: 100%;
  6588. height: 100%;
  6589. overflow: hidden;
  6590. padding-bottom: 0;
  6591. display: none;
  6592. }
  6593. [data-gallery-design="slideshow"] .product-gallery-slides-item.selected,
  6594. [data-gallery-design="carousel"] .product-gallery-slides-item.selected,
  6595. [data-gallery-design="slideshow"] .product-gallery-slides-item.thumbnail-hovered,
  6596. [data-gallery-design="carousel"] .product-gallery-slides-item.thumbnail-hovered {
  6597. display: block;
  6598. }
  6599. [data-gallery-design="slideshow"] .product-gallery-slides-item.prev-slide,
  6600. [data-gallery-design="carousel"] .product-gallery-slides-item.prev-slide,
  6601. [data-gallery-design="slideshow"] .product-gallery-slides-item.next-slide,
  6602. [data-gallery-design="carousel"] .product-gallery-slides-item.next-slide {
  6603. display: block;
  6604. }
  6605. @media screen and (max-width: 767px ) {
  6606. .product-gallery-slides-item {
  6607. position: absolute;
  6608. top: 0;
  6609. left: 0;
  6610. width: 100%;
  6611. height: 100%;
  6612. overflow: hidden;
  6613. padding-bottom: 0;
  6614. display: none;
  6615. }
  6616. .product-gallery-slides-item.selected,
  6617. .product-gallery-slides-item.thumbnail-hovered {
  6618. display: block;
  6619. }
  6620. .product-gallery-slides-item.prev-slide,
  6621. .product-gallery-slides-item.next-slide {
  6622. display: block;
  6623. }
  6624. }
  6625. [data-gallery-click-action="lightbox"] .product-gallery-slides-item {
  6626. cursor: pointer;
  6627. }
  6628. [data-gallery-click-action="zoom"]:not([data-gallery-hover-action="zoom"]) .product-gallery-slides-item,
  6629. [data-gallery-click-action="zoom"][data-gallery-design="carousel"] .product-gallery-slides-item {
  6630. cursor: zoom-in;
  6631. }
  6632. [data-gallery-click-action="zoom"]:not([data-gallery-hover-action="zoom"]) .product-gallery-slides-item.is-zoomed,
  6633. [data-gallery-click-action="zoom"][data-gallery-design="carousel"] .product-gallery-slides-item.is-zoomed {
  6634. cursor: zoom-out;
  6635. }
  6636. .is-zoomed .product-gallery-slides-item-image {
  6637. visibility: hidden;
  6638. }
  6639. @media screen and (min-width: 768px ) {
  6640. [data-gallery-design="stacked"] .product-gallery-slides-item-image {
  6641. display: block;
  6642. width: 100%;
  6643. /*
  6644. These override imageloader's left and right, which can be computed incorrectly when the user switches
  6645. from slideshow to stacked and ImageLoader.load runs and measures the container before the layout reflows.
  6646. */
  6647. left: 0 !important;
  6648. right: 0 !important;
  6649. }
  6650. }
  6651. .product-gallery-slides-item:not(.loaded) .product-gallery-slides-item-image {
  6652. opacity: 0;
  6653. }
  6654. .product-gallery-scroll {
  6655. display: none;
  6656. position: relative;
  6657. scrollbar-width: none;
  6658. }
  6659. .product-gallery-scroll:after {
  6660. display: block;
  6661. content: '';
  6662. height: 10vh;
  6663. width: 100%;
  6664. position: sticky;
  6665. bottom: 0;
  6666. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--siteBackgroundColor) 100%);
  6667. }
  6668. @media screen and (min-width: 768px ) {
  6669. [data-gallery-design="slideshow"] .product-gallery-scroll {
  6670. display: block;
  6671. }
  6672. }
  6673. [data-gallery-thumbnail-placement="side"] .product-gallery-scroll {
  6674. width: auto;
  6675. max-height: 80vh;
  6676. overflow-y: auto;
  6677. }
  6678. @media screen and (max-width: 767px ) {
  6679. [data-gallery-thumbnail-placement="side"] .product-gallery-scroll {
  6680. margin-right: 0;
  6681. }
  6682. }
  6683. [data-gallery-thumbnail-placement="below"] .product-gallery-scroll {
  6684. width: 100%;
  6685. }
  6686. [data-gallery-thumbnail-placement="below"] .product-gallery-scroll:after {
  6687. display: none;
  6688. }
  6689. .product-gallery-thumbnails {
  6690. display: flex;
  6691. flex-direction: column;
  6692. gap: 10px;
  6693. align-items: flex-start;
  6694. line-height: 0;
  6695. }
  6696. [data-gallery-thumbnail-placement="below"] .product-gallery-thumbnails {
  6697. flex-direction: row;
  6698. }
  6699. [data-gallery-design="slideshow"] .product-gallery-thumbnails {
  6700. margin-bottom: 10vh;
  6701. }
  6702. [data-gallery-design="slideshow"][data-gallery-thumbnail-placement="below"] .product-gallery-thumbnails {
  6703. overflow-x: auto;
  6704. white-space: nowrap;
  6705. }
  6706. .product-gallery-thumbnails-item {
  6707. background: transparent;
  6708. border: 0;
  6709. width: 50px;
  6710. cursor: pointer;
  6711. padding: 0;
  6712. transition: opacity 0.3s ease-in;
  6713. }
  6714. .product-gallery-thumbnails-item:not(.loaded) {
  6715. opacity: 0;
  6716. }
  6717. .product-gallery-thumbnails-item img {
  6718. aspect-ratio: var(--product-gallery-aspect-ratio);
  6719. }
  6720. .product-gallery .product-image-zoom-duplicate {
  6721. position: absolute;
  6722. top: 0;
  6723. bottom: 0;
  6724. left: 0;
  6725. right: 0;
  6726. height: 100%;
  6727. width: 100%;
  6728. opacity: 0;
  6729. pointer-events: none;
  6730. transition: opacity 0.3s ease;
  6731. }
  6732. .product-gallery .product-image-zoom-duplicate img {
  6733. width: 100%;
  6734. }
  6735. .product-gallery .product-gallery-slides-item.loaded.is-zoomed .product-image-zoom-duplicate {
  6736. opacity: 1;
  6737. }
  6738. .product-detail .pdp-gallery .selected {
  6739. z-index: 2;
  6740. visibility: visible;
  6741. }
  6742. .product-detail .pdp-gallery .pdp-gallery-wrapper {
  6743. position: relative;
  6744. overflow: hidden;
  6745. }
  6746. .product-detail .pdp-gallery .pdp-carousel-controls {
  6747. display: flex;
  6748. align-items: center;
  6749. position: absolute;
  6750. top: 0;
  6751. bottom: 0;
  6752. left: 0;
  6753. right: 0;
  6754. z-index: 3;
  6755. }
  6756. .product-detail .pdp-gallery .pdp-carousel-controls.hidden {
  6757. display: none !important;
  6758. }
  6759. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-prev,
  6760. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-next {
  6761. border: none;
  6762. position: absolute;
  6763. padding: 1.5rem;
  6764. min-height: 44px;
  6765. min-width: 44px;
  6766. color: var(--paragraphMediumColor);
  6767. background: var(--siteBackgroundColor);
  6768. }
  6769. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-prev:disabled,
  6770. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-next:disabled {
  6771. color: var(--paragraphMediumColor);
  6772. }
  6773. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-prev:disabled span,
  6774. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-next:disabled span {
  6775. opacity: 0.25;
  6776. }
  6777. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-prev .chevron,
  6778. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-next .chevron {
  6779. display: block;
  6780. width: 1rem;
  6781. height: 1rem;
  6782. margin: 0;
  6783. }
  6784. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-prev {
  6785. left: 0;
  6786. }
  6787. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-prev .chevron--left {
  6788. transform: translateX(0.25rem) rotate(225deg);
  6789. }
  6790. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-next {
  6791. right: 0;
  6792. }
  6793. .product-detail .pdp-gallery .pdp-carousel-controls .chevron-next .chevron--right {
  6794. transform: translateX(-0.25rem) rotate(45deg);
  6795. }
  6796. .product-detail .pdp-gallery .pdp-gallery-slide-indicator {
  6797. position: absolute;
  6798. top: 1rem;
  6799. right: 1rem;
  6800. z-index: 3;
  6801. font-size: 0.75rem;
  6802. }
  6803. @media screen and (max-width: 767px ) {
  6804. .product-detail .pdp-gallery .pdp-gallery-wrapper::before {
  6805. content: '';
  6806. display: block;
  6807. padding-bottom: 100%;
  6808. }
  6809. .product-detail .pdp-gallery .pdp-gallery-images {
  6810. width: 100%;
  6811. height: 100%;
  6812. position: absolute;
  6813. top: 0;
  6814. max-height: 100%;
  6815. }
  6816. .product-detail .pdp-gallery .pdp-gallery-images::before {
  6817. content: '';
  6818. display: block;
  6819. padding-bottom: 100%;
  6820. }
  6821. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides {
  6822. height: 100%;
  6823. width: 100%;
  6824. position: absolute;
  6825. left: 0;
  6826. top: 0;
  6827. right: 0;
  6828. visibility: hidden;
  6829. }
  6830. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.next-slide {
  6831. display: block;
  6832. visibility: visible;
  6833. }
  6834. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.next-slide.prev-loaded {
  6835. animation: gallery-image-exit-to-right 0.5s ease-in-out both;
  6836. z-index: 1;
  6837. }
  6838. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.selected {
  6839. display: block;
  6840. visibility: visible;
  6841. }
  6842. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.selected.loaded {
  6843. animation: gallery-image-enter-from-left 0.5s ease-in-out both;
  6844. }
  6845. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.prev-slide {
  6846. display: block;
  6847. visibility: visible;
  6848. }
  6849. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.prev-slide.next-loaded {
  6850. animation: gallery-image-exit-to-left 0.5s ease-in-out both;
  6851. z-index: 1;
  6852. }
  6853. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.selected {
  6854. display: block;
  6855. visibility: visible;
  6856. }
  6857. .product-detail .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.selected.loaded {
  6858. animation: gallery-image-enter-from-right 0.5s ease-in-out both;
  6859. }
  6860. }
  6861. @media screen and (min-width: 768px ) {
  6862. .product-detail > [data-product-detail-layout="full"] .pdp-gallery .pdp-gallery-images {
  6863. display: flex;
  6864. flex-direction: row;
  6865. transition: all 0.45s cubic-bezier(0.25, 0.1, 0.25, 1);
  6866. max-height: 80vh;
  6867. }
  6868. .product-detail > [data-product-detail-layout="full"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides {
  6869. flex: 0 0 auto;
  6870. order: 1;
  6871. display: flex;
  6872. align-items: center;
  6873. width: 50%;
  6874. }
  6875. .product-detail > [data-product-detail-layout="full"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides[data-landscape="true"] {
  6876. width: 100%;
  6877. }
  6878. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images::before {
  6879. content: '';
  6880. display: block;
  6881. padding-bottom: 100%;
  6882. }
  6883. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides {
  6884. position: absolute;
  6885. left: 0;
  6886. top: 0;
  6887. right: 0;
  6888. display: flex;
  6889. align-items: center;
  6890. justify-content: center;
  6891. height: 100%;
  6892. visibility: hidden;
  6893. }
  6894. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.next-slide {
  6895. display: block;
  6896. visibility: visible;
  6897. }
  6898. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.next-slide.prev-loaded {
  6899. animation: gallery-image-exit-to-right 0.5s ease-in-out both;
  6900. z-index: 1;
  6901. }
  6902. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.selected {
  6903. display: block;
  6904. visibility: visible;
  6905. }
  6906. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-prev.selected.loaded {
  6907. animation: gallery-image-enter-from-left 0.5s ease-in-out both;
  6908. }
  6909. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.prev-slide {
  6910. display: block;
  6911. visibility: visible;
  6912. }
  6913. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.prev-slide.next-loaded {
  6914. animation: gallery-image-exit-to-left 0.5s ease-in-out both;
  6915. z-index: 1;
  6916. }
  6917. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.selected {
  6918. display: block;
  6919. visibility: visible;
  6920. }
  6921. .product-detail > [data-product-detail-layout="half"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.going-next.selected.loaded {
  6922. animation: gallery-image-enter-from-right 0.5s ease-in-out both;
  6923. }
  6924. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-carousel-controls {
  6925. display: none;
  6926. }
  6927. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images {
  6928. display: inline-flex;
  6929. flex-direction: row;
  6930. width: 100%;
  6931. flex-wrap: wrap;
  6932. overflow: hidden;
  6933. padding: 0 4vw;
  6934. box-sizing: border-box;
  6935. margin: -10px;
  6936. }
  6937. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images > * {
  6938. border: solid 10px rgba(0, 0, 0, 0);
  6939. box-sizing: border-box;
  6940. }
  6941. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides {
  6942. position: relative;
  6943. overflow: hidden;
  6944. width: 50%;
  6945. order: 2;
  6946. }
  6947. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides.selected {
  6948. order: 0;
  6949. }
  6950. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides:not(.loaded) .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides-image {
  6951. opacity: 0;
  6952. }
  6953. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images .pdp-gallery-slides[data-landscape="true"]:not(.selected) {
  6954. width: 100%;
  6955. }
  6956. .product-detail > [data-product-detail-layout="wrap"] .pdp-gallery .pdp-gallery-images .pdp-form-wrapper {
  6957. width: 50%;
  6958. order: 1;
  6959. }
  6960. }