style-woocommerce.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058
  1. /**
  2. * Repsonsive Styles
  3. */
  4. /**
  5. * Required Variables
  6. */
  7. /**
  8. * Root Media Query Variables
  9. */
  10. :root {
  11. --responsive--spacing-horizontal: calc(2 * var(--global--spacing-horizontal));
  12. --responsive--aligndefault-width: 100%;
  13. --responsive--alignwide-width: 100%;
  14. --responsive--alignfull-width: 100%;
  15. --responsive--alignwide-width-multiplier: calc(16 * var(--global--spacing-horizontal));
  16. --responsive--alignright-margin: var(--global--spacing-horizontal);
  17. --responsive--alignleft-margin: var(--global--spacing-horizontal);
  18. }
  19. @media only screen and (min-width: 482px) {
  20. :root {
  21. --responsive--aligndefault-width: calc(482px - var(--responsive--spacing-horizontal));
  22. --responsive--alignwide-width: calc(482px - var(--responsive--spacing-horizontal));
  23. --responsive--alignright-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  24. --responsive--alignleft-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  25. }
  26. }
  27. @media only screen and (min-width: 592px) {
  28. :root {
  29. --responsive--aligndefault-width: calc(482px - var(--responsive--spacing-horizontal));
  30. --responsive--alignwide-width: calc(592px - var(--responsive--spacing-horizontal));
  31. --responsive--alignright-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  32. --responsive--alignleft-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  33. }
  34. }
  35. @media only screen and (min-width: 652px) {
  36. :root {
  37. --responsive--aligndefault-width: calc(592px - var(--responsive--spacing-horizontal));
  38. --responsive--alignwide-width: calc(652px - var(--responsive--spacing-horizontal));
  39. --responsive--alignright-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  40. --responsive--alignleft-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  41. }
  42. }
  43. @media only screen and (min-width: 822px) {
  44. :root {
  45. --responsive--aligndefault-width: calc(652px - var(--responsive--spacing-horizontal));
  46. --responsive--alignwide-width: calc(822px - var(--responsive--spacing-horizontal));
  47. --responsive--alignright-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  48. --responsive--alignleft-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  49. }
  50. }
  51. @media only screen and (min-width: 1024px) {
  52. :root {
  53. --responsive--aligndefault-width: calc(652px - var(--responsive--spacing-horizontal));
  54. --responsive--alignwide-width: calc(822px - var(--responsive--spacing-horizontal));
  55. --responsive--alignright-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  56. --responsive--alignleft-margin: calc( 0.5 * (100vw - var(--responsive--aligndefault-width)));
  57. }
  58. }
  59. /**
  60. * Extends
  61. */
  62. .default-max-width {
  63. max-width: var(--responsive--aligndefault-width);
  64. margin-left: auto;
  65. margin-right: auto;
  66. }
  67. .wide-max-width {
  68. max-width: var(--responsive--alignwide-width);
  69. margin-left: auto;
  70. margin-right: auto;
  71. }
  72. @media only screen and (min-width: 482px) {
  73. .full-max-width {
  74. max-width: var(--responsive--alignfull-width);
  75. width: auto;
  76. margin-left: auto;
  77. margin-right: auto;
  78. }
  79. }
  80. body[class*="woocommerce"] .entry-content > .woocommerce {
  81. margin-left: auto;
  82. margin-right: auto;
  83. width: calc(var(--responsive--alignfull-width) - calc(2 * var(--responsive--spacing-horizontal)));
  84. max-width: var(--responsive--alignfull-width);
  85. }
  86. /**
  87. * Output
  88. */
  89. body[class*="woocommerce"] #page .site-content #respond input#submit,
  90. body[class*="woocommerce"] #page .site-content #respond input#submit.alt,
  91. body[class*="woocommerce"] #page .site-content a.button,
  92. body[class*="woocommerce"] #page .site-content a.button.alt,
  93. body[class*="woocommerce"] #page .site-content button.button,
  94. body[class*="woocommerce"] #page .site-content button.button.alt,
  95. body[class*="woocommerce"] #page .site-content input.button,
  96. body[class*="woocommerce"] #page .site-content input.button.alt,
  97. body[class*="woocommerce"] #page .site-content .cart .button,
  98. body[class*="woocommerce"] #page .site-content .cart input.button,
  99. body[class*="woocommerce"] #page .site-content a.added_to_cart,
  100. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit,
  101. body[class*="woocommerce"] #page .site-content .woocommerce a.button,
  102. body[class*="woocommerce"] #page .site-content .woocommerce button.button,
  103. body[class*="woocommerce"] #page .site-content .woocommerce input.button,
  104. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a,
  105. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a {
  106. line-height: var(--button--line-height);
  107. color: var(--button--color-text);
  108. cursor: pointer;
  109. font-weight: var(--button--font-weight);
  110. font-family: var(--button--font-family);
  111. font-size: var(--button--font-size);
  112. background-color: var(--button--color-background);
  113. border-radius: var(--button--border-radius);
  114. border-width: 0;
  115. text-decoration: none;
  116. padding: var(--button--padding-vertical) var(--button--padding-horizontal);
  117. }
  118. body[class*="woocommerce"] #page .site-content #respond input#submit:before,
  119. body[class*="woocommerce"] #page .site-content #respond input#submit.alt:before,
  120. body[class*="woocommerce"] #page .site-content a.button:before,
  121. body[class*="woocommerce"] #page .site-content a.button.alt:before,
  122. body[class*="woocommerce"] #page .site-content button.button:before,
  123. body[class*="woocommerce"] #page .site-content button.button.alt:before,
  124. body[class*="woocommerce"] #page .site-content input.button:before,
  125. body[class*="woocommerce"] #page .site-content input.button.alt:before,
  126. body[class*="woocommerce"] #page .site-content .cart .button:before,
  127. body[class*="woocommerce"] #page .site-content a.added_to_cart:before,
  128. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:before,
  129. body[class*="woocommerce"] #page .site-content .woocommerce a.button:before,
  130. body[class*="woocommerce"] #page .site-content .woocommerce button.button:before,
  131. body[class*="woocommerce"] #page .site-content .woocommerce input.button:before,
  132. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:before,
  133. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:before, body[class*="woocommerce"] #page .site-content #respond input#submit:after,
  134. body[class*="woocommerce"] #page .site-content #respond input#submit.alt:after,
  135. body[class*="woocommerce"] #page .site-content a.button:after,
  136. body[class*="woocommerce"] #page .site-content a.button.alt:after,
  137. body[class*="woocommerce"] #page .site-content button.button:after,
  138. body[class*="woocommerce"] #page .site-content button.button.alt:after,
  139. body[class*="woocommerce"] #page .site-content input.button:after,
  140. body[class*="woocommerce"] #page .site-content input.button.alt:after,
  141. body[class*="woocommerce"] #page .site-content .cart .button:after,
  142. body[class*="woocommerce"] #page .site-content a.added_to_cart:after,
  143. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:after,
  144. body[class*="woocommerce"] #page .site-content .woocommerce a.button:after,
  145. body[class*="woocommerce"] #page .site-content .woocommerce button.button:after,
  146. body[class*="woocommerce"] #page .site-content .woocommerce input.button:after,
  147. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:after,
  148. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:after {
  149. content: '';
  150. display: block;
  151. height: 0;
  152. width: 0;
  153. }
  154. body[class*="woocommerce"] #page .site-content #respond input#submit:before,
  155. body[class*="woocommerce"] #page .site-content #respond input#submit.alt:before,
  156. body[class*="woocommerce"] #page .site-content a.button:before,
  157. body[class*="woocommerce"] #page .site-content a.button.alt:before,
  158. body[class*="woocommerce"] #page .site-content button.button:before,
  159. body[class*="woocommerce"] #page .site-content button.button.alt:before,
  160. body[class*="woocommerce"] #page .site-content input.button:before,
  161. body[class*="woocommerce"] #page .site-content input.button.alt:before,
  162. body[class*="woocommerce"] #page .site-content .cart .button:before,
  163. body[class*="woocommerce"] #page .site-content a.added_to_cart:before,
  164. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:before,
  165. body[class*="woocommerce"] #page .site-content .woocommerce a.button:before,
  166. body[class*="woocommerce"] #page .site-content .woocommerce button.button:before,
  167. body[class*="woocommerce"] #page .site-content .woocommerce input.button:before,
  168. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:before,
  169. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:before {
  170. margin-bottom: -calc(.5em * var(--button--line-height) + -.38);
  171. }
  172. body[class*="woocommerce"] #page .site-content #respond input#submit:after,
  173. body[class*="woocommerce"] #page .site-content #respond input#submit.alt:after,
  174. body[class*="woocommerce"] #page .site-content a.button:after,
  175. body[class*="woocommerce"] #page .site-content a.button.alt:after,
  176. body[class*="woocommerce"] #page .site-content button.button:after,
  177. body[class*="woocommerce"] #page .site-content button.button.alt:after,
  178. body[class*="woocommerce"] #page .site-content input.button:after,
  179. body[class*="woocommerce"] #page .site-content input.button.alt:after,
  180. body[class*="woocommerce"] #page .site-content .cart .button:after,
  181. body[class*="woocommerce"] #page .site-content a.added_to_cart:after,
  182. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:after,
  183. body[class*="woocommerce"] #page .site-content .woocommerce a.button:after,
  184. body[class*="woocommerce"] #page .site-content .woocommerce button.button:after,
  185. body[class*="woocommerce"] #page .site-content .woocommerce input.button:after,
  186. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:after,
  187. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:after {
  188. margin-top: -calc(.5em * var(--button--line-height) + -.39);
  189. }
  190. body[class*="woocommerce"] #page .site-content #respond input#submit:active,
  191. body[class*="woocommerce"] #page .site-content a.button:active,
  192. body[class*="woocommerce"] #page .site-content button.button:active,
  193. body[class*="woocommerce"] #page .site-content input.button:active,
  194. body[class*="woocommerce"] #page .site-content .cart .button:active,
  195. body[class*="woocommerce"] #page .site-content a.added_to_cart:active,
  196. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:active,
  197. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:active {
  198. color: var(--button--color-text-active);
  199. background-color: var(--button--color-background-active);
  200. }
  201. body[class*="woocommerce"] #page .site-content #respond input#submit:hover,
  202. body[class*="woocommerce"] #page .site-content a.button:hover,
  203. body[class*="woocommerce"] #page .site-content button.button:hover,
  204. body[class*="woocommerce"] #page .site-content input.button:hover,
  205. body[class*="woocommerce"] #page .site-content .cart .button:hover,
  206. body[class*="woocommerce"] #page .site-content a.added_to_cart:hover,
  207. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:hover,
  208. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:hover, body[class*="woocommerce"] #page .site-content #respond input#submit:focus,
  209. body[class*="woocommerce"] #page .site-content a.button:focus,
  210. body[class*="woocommerce"] #page .site-content button.button:focus,
  211. body[class*="woocommerce"] #page .site-content input.button:focus,
  212. body[class*="woocommerce"] #page .site-content .cart .button:focus,
  213. body[class*="woocommerce"] #page .site-content a.added_to_cart:focus,
  214. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a:focus,
  215. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a:focus, body[class*="woocommerce"] #page .site-content #respond input.has-focus#submit,
  216. body[class*="woocommerce"] #page .site-content a.has-focus.button,
  217. body[class*="woocommerce"] #page .site-content button.has-focus.button,
  218. body[class*="woocommerce"] #page .site-content input.has-focus.button,
  219. body[class*="woocommerce"] #page .site-content .cart .has-focus.button,
  220. body[class*="woocommerce"] #page .site-content a.has-focus.added_to_cart,
  221. body[class*="woocommerce"] #page .site-content .woocommerce .widget_shopping_cart .buttons a.has-focus,
  222. body[class*="woocommerce"] #page .site-content .woocommerce.widget_shopping_cart .buttons a.has-focus {
  223. color: var(--button--color-text-hover);
  224. background-color: var(--button--color-background-hover);
  225. }
  226. body[class*="woocommerce"] #page span.onsale, #content .wc-block-grid .wc-block-grid__product-onsale {
  227. border-radius: 100%;
  228. background-color: var(--global--color-alert-warning);
  229. color: var(--global--color-foreground-dark);
  230. font-size: var(--global--font-size-sm);
  231. font-weight: 700;
  232. font-family: var(--global--font-primary);
  233. min-height: 3.236rem;
  234. min-width: 3.236rem;
  235. padding: 0.202rem;
  236. position: absolute;
  237. text-align: center;
  238. text-transform: none;
  239. line-height: 3.236;
  240. top: -0.5em;
  241. right: -0.5em;
  242. left: auto;
  243. margin: 0;
  244. z-index: 9;
  245. }
  246. /**
  247. * WooCommerce styles
  248. */
  249. /**
  250. * Element Imports
  251. */
  252. /**
  253. * Small Note
  254. */
  255. body[class*="woocommerce"] #page .woocommerce-breadcrumb {
  256. margin-bottom: var(--global--spacing-vertical);
  257. font-size: var(--global--font-size-base);
  258. font-family: var(--global--font-primary);
  259. color: var(--global--color-foreground-light);
  260. }
  261. body[class*="woocommerce"] #page .woocommerce-breadcrumb a {
  262. color: currentColor;
  263. }
  264. /**
  265. * Notices
  266. */
  267. body[class*="woocommerce"] #page .woocommerce-message,
  268. body[class*="woocommerce"] #page .woocommerce-info,
  269. body[class*="woocommerce"] #page .woocommerce-success,
  270. body[class*="woocommerce"] #page .woocommerce-error,
  271. body[class*="woocommerce"] #page .woocommerce-warning {
  272. padding: var(--global--spacing-unit) var(--global--spacing-vertical) var(--global--spacing-unit) calc(2 * var(--global--spacing-vertical));
  273. margin-bottom: var(--global--spacing-vertical);
  274. background-color: var(--global--color-tertiary);
  275. color: var(--global--color-foreground-dark);
  276. border-top-color: var(--global--color-primary-default);
  277. }
  278. body[class*="woocommerce"] #page .woocommerce-notice--message,
  279. body[class*="woocommerce"] #page .woocommerce-notice--info {
  280. color: var(--global--color-foreground);
  281. }
  282. body[class*="woocommerce"] #page .woocommerce-notice--success {
  283. color: var(--global--color-alert-success);
  284. }
  285. body[class*="woocommerce"] #page .woocommerce-notice--error {
  286. color: var(--global--color-alert-error);
  287. }
  288. body[class*="woocommerce"] #page .woocommerce-notice--warning {
  289. color: var(--global--color-alert-warning);
  290. }
  291. body[class*="woocommerce"] #page .woocommerce-message,
  292. body[class*="woocommerce"] #page .woocommerce-info {
  293. border-top-color: var(--global--color-alert-info);
  294. }
  295. body[class*="woocommerce"] #page .woocommerce-message:before,
  296. body[class*="woocommerce"] #page .woocommerce-info:before {
  297. color: var(--global--color-alert-info);
  298. }
  299. body[class*="woocommerce"] #page .woocommerce-success {
  300. border-top-color: var(--global--color-alert-success);
  301. }
  302. body[class*="woocommerce"] #page .woocommerce-success:before {
  303. color: var(--global--color-alert-success);
  304. }
  305. body[class*="woocommerce"] #page .woocommerce-error {
  306. border-top-color: var(--global--color-alert-error);
  307. }
  308. body[class*="woocommerce"] #page .woocommerce-error:before {
  309. color: var(--global--color-alert-error);
  310. }
  311. body[class*="woocommerce"] #page .woocommerce-warning {
  312. border-top-color: var(--global--color-alert-warning);
  313. }
  314. body[class*="woocommerce"] #page .woocommerce-warning:before {
  315. color: var(--global--color-alert-warning);
  316. }
  317. /**
  318. * Star ratings
  319. */
  320. /**
  321. * Password strength meter
  322. */
  323. body[class*="woocommerce"] #page .woocommerce-password-strength {
  324. text-align: center;
  325. font-weight: 600;
  326. padding: calc(0.5 * var(--wc--table--padding));
  327. font-size: var(--global--font-size-sm);
  328. }
  329. body[class*="woocommerce"] #page .woocommerce-password-strength.strong {
  330. background-color: var(--global--color-alert-success);
  331. border-color: none;
  332. }
  333. body[class*="woocommerce"] #page .woocommerce-password-strength.good {
  334. background-color: var(--global--color-alert-warning);
  335. border-color: none;
  336. }
  337. body[class*="woocommerce"] #page .woocommerce-password-strength.short {
  338. background-color: var(--global--color-alert-error);
  339. border-color: none;
  340. }
  341. body[class*="woocommerce"] #page .woocommerce-password-strength.bad {
  342. background-color: var(--global--color-alert-error);
  343. border-color: none;
  344. }
  345. body[class*="woocommerce"] #page .woocommerce-password-hint {
  346. font-size: var(--global--font-size-xs);
  347. }
  348. /**
  349. * Remove Icon
  350. */
  351. body[class*="woocommerce"] #page a.remove {
  352. font-size: var(--global--font-size-lg);
  353. font-family: sans-serif !important;
  354. height: var(--global--font-size-md);
  355. width: var(--global--font-size-md);
  356. color: red !important;
  357. }
  358. body[class*="woocommerce"] #page a.remove:hover {
  359. color: var(--global--color-background) !important;
  360. background: red;
  361. }
  362. /**
  363. * Small Note
  364. */
  365. body[class*="woocommerce"] #page small.note {
  366. color: var(--global--color-foreground-light);
  367. font-size: var(--global--font-size-sm);
  368. margin-top: var(--global--spacing-unit);
  369. }
  370. /**
  371. * Star ratings
  372. */
  373. body[class*="woocommerce"] #page .star-rating::before {
  374. color: var(--wc--star-rating--color);
  375. content: "\53\53\53\53\53";
  376. opacity: 0.4;
  377. }
  378. body[class*="woocommerce"] #page .star-rating span {
  379. color: var(--wc--star-rating--color);
  380. }
  381. body[class*="woocommerce"] #page p.stars a {
  382. color: var(--wc--star-rating--color);
  383. }
  384. /**
  385. * Tables
  386. */
  387. body[class*="woocommerce"] #page table.shop_table {
  388. border-collapse: collapse;
  389. border: var(--wc--table--border-width) solid var(--wc--table--border-color);
  390. border-radius: var(--wc--table--border-radius);
  391. margin-bottom: var(--global--spacing-unit);
  392. }
  393. body[class*="woocommerce"] #page table.shop_table th {
  394. padding: var(--wc--table--padding);
  395. line-height: var(--global--line-height-body);
  396. }
  397. body[class*="woocommerce"] #page table.shop_table td {
  398. border-top: none;
  399. padding: var(--wc--table--padding);
  400. word-break: break-word;
  401. }
  402. body[class*="woocommerce"] #page table.shop_table tr {
  403. border-bottom: var(--wc--table--border-width) solid var(--wc--table--border-color);
  404. }
  405. body[class*="woocommerce"] #page table.shop_table tfoot td,
  406. body[class*="woocommerce"] #page table.shop_table tfoot th,
  407. body[class*="woocommerce"] #page table.shop_table tbody th {
  408. border-top-color: var(--wc--table--border-color);
  409. }
  410. body[class*="woocommerce"] #page table.shop_attributes {
  411. border-top-color: var(--wc--table--border-color);
  412. border-top-style: solid;
  413. margin-bottom: var(--global--spacing-vertical);
  414. border-bottom: var(--wc--table--border-width) solid var(--wc--table--border-color);
  415. }
  416. body[class*="woocommerce"] #page table.shop_attributes th {
  417. padding: calc(0.5 * var(--wc--table--padding));
  418. border-bottom-color: var(--wc--table--border-color);
  419. border-bottom-style: solid;
  420. line-height: var(--global--line-height-body);
  421. }
  422. body[class*="woocommerce"] #page table.shop_attributes td {
  423. font-style: inherit;
  424. border-bottom-color: var(--wc--table--border-color);
  425. border-bottom-style: solid;
  426. line-height: var(--global--line-height-body);
  427. padding: calc(0.5 * var(--wc--table--padding));
  428. }
  429. body[class*="woocommerce"] #page table.shop_attributes td p {
  430. margin: 0;
  431. padding-top: calc(0.5 * var(--wc--table--padding));
  432. padding-bottom: calc(0.5 * var(--wc--table--padding));
  433. }
  434. body[class*="woocommerce"] #page table.shop_attributes tr:nth-child(even) td,
  435. body[class*="woocommerce"] #page table.shop_attributes tr:nth-child(even) th {
  436. background: var(--global--color-tertiary);
  437. }
  438. body[class*="woocommerce"] #page table.my_account_orders {
  439. font-size: var(--global--font-size-sm);
  440. }
  441. body[class*="woocommerce"] #page table.my_account_orders th,
  442. body[class*="woocommerce"] #page table.my_account_orders td {
  443. padding: calc(0.5 * var(--wc--table--padding));
  444. }
  445. body[class*="woocommerce"] #page table td,
  446. body[class*="woocommerce"] #page table th {
  447. border: inherit;
  448. }
  449. /**
  450. * Block Imports
  451. */
  452. /**
  453. * Button
  454. */
  455. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit.disabled,
  456. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:disabled,
  457. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:disabled[disabled],
  458. body[class*="woocommerce"] #page .site-content .woocommerce a.button.disabled,
  459. body[class*="woocommerce"] #page .site-content .woocommerce a.button:disabled,
  460. body[class*="woocommerce"] #page .site-content .woocommerce a.button:disabled[disabled],
  461. body[class*="woocommerce"] #page .site-content .woocommerce button.button.disabled,
  462. body[class*="woocommerce"] #page .site-content .woocommerce button.button:disabled,
  463. body[class*="woocommerce"] #page .site-content .woocommerce button.button:disabled[disabled],
  464. body[class*="woocommerce"] #page .site-content .woocommerce input.button.disabled,
  465. body[class*="woocommerce"] #page .site-content .woocommerce input.button:disabled,
  466. body[class*="woocommerce"] #page .site-content .woocommerce input.button:disabled[disabled] {
  467. cursor: not-allowed;
  468. }
  469. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit.disabled:hover,
  470. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:disabled:hover,
  471. body[class*="woocommerce"] #page .site-content .woocommerce #respond input#submit:disabled[disabled]:hover,
  472. body[class*="woocommerce"] #page .site-content .woocommerce a.button.disabled:hover,
  473. body[class*="woocommerce"] #page .site-content .woocommerce a.button:disabled:hover,
  474. body[class*="woocommerce"] #page .site-content .woocommerce a.button:disabled[disabled]:hover,
  475. body[class*="woocommerce"] #page .site-content .woocommerce button.button.disabled:hover,
  476. body[class*="woocommerce"] #page .site-content .woocommerce button.button:disabled:hover,
  477. body[class*="woocommerce"] #page .site-content .woocommerce button.button:disabled[disabled]:hover,
  478. body[class*="woocommerce"] #page .site-content .woocommerce input.button.disabled:hover,
  479. body[class*="woocommerce"] #page .site-content .woocommerce input.button:disabled:hover,
  480. body[class*="woocommerce"] #page .site-content .woocommerce input.button:disabled[disabled]:hover {
  481. background-color: var(--global--color-primary-default);
  482. }
  483. /**
  484. * WooCommerce Block Grid
  485. * - Used by:
  486. * .wp-block-product-new
  487. * .wp-block-product-best-sellers
  488. * .wp-block-product-on-sale
  489. * .wp-block-product-top-rated
  490. * .wp-block-product-categroy
  491. * .wp-block-products-by-attribute
  492. */
  493. #content .wc-block-grid .wc-block-grid__product > *:not(:first-child),
  494. #content .wc-block-grid .wc-block-grid__product-link > *:not(:first-child) {
  495. margin-top: var(--global--spacing-unit);
  496. }
  497. #content .wc-block-grid .wc-block-grid__product > *:not(:last-child),
  498. #content .wc-block-grid .wc-block-grid__product-link > *:not(:last-child) {
  499. margin-bottom: var(--global--spacing-unit);
  500. }
  501. #content .wc-block-grid .wc-block-grid__product > *:not(img):empty + *,
  502. #content .wc-block-grid .wc-block-grid__product-link > *:not(img):empty + * {
  503. margin-top: 0;
  504. }
  505. #content .wc-block-grid .wc-block-grid__product > *:last-child,
  506. #content .wc-block-grid .wc-block-grid__product-link > *:last-child {
  507. margin-bottom: 0;
  508. }
  509. #content .wc-block-grid .wc-block-grid__product > *:empty,
  510. #content .wc-block-grid .wc-block-grid__product-link > *:empty {
  511. margin: 0;
  512. }
  513. #content .wc-block-grid .wc-block-grid__product-title {
  514. font-family: var(--global--font-primary);
  515. font-size: var(--global--font-size-base);
  516. }
  517. #content .wc-block-grid .wc-block-grid__product-rating .star-rating span:before {
  518. color: var(--global--color-secondary);
  519. }
  520. #content .wc-block-grid .wc-block-grid__product-price {
  521. color: var(--global--color-foreground-dark);
  522. font-size: var(--global--font-size-md);
  523. line-height: var(--global--line-height-heading);
  524. }
  525. #content .wc-block-grid .wc-block-grid__product-price ins {
  526. color: var(--global--color-alert-success);
  527. font-weight: bold;
  528. text-decoration: none;
  529. }
  530. #content .wc-block-grid .wc-block-grid__product .wc-block-grid__product-onsale {
  531. right: calc(-0.5em + var(--global--spacing-unit));
  532. margin: 0;
  533. }
  534. /**
  535. * WooCommerce Featured Product
  536. */
  537. #content .wc-block-featured-product .wc-block-featured-product__description:empty,
  538. #content .wc-block-featured-product .wc-block-featured-product__link:empty,
  539. #content .wc-block-featured-product .wc-block-featured-product__price:empty,
  540. #content .wc-block-featured-product .wc-block-featured-product__title:empty,
  541. #content .wc-block-featured-product .wc-block-featured-product__variation:empty {
  542. padding: 0;
  543. }
  544. #content .wc-block-featured-product .wc-block-featured-product__price {
  545. font-size: var(--global--font-size-xl);
  546. }
  547. #content .wc-block-featured-product .wc-block-featured-product__price ins {
  548. text-decoration: none;
  549. }
  550. /**
  551. * Components Imports
  552. */
  553. /**
  554. * Cart Collaterals
  555. */
  556. body[class*="woocommerce"] #page .cart-collaterals .cart_totals tr td,
  557. body[class*="woocommerce"] #page .cart-collaterals .cart_totals tr th,
  558. body[class*="woocommerce"] #page .cart-collaterals .cross-sells tr td,
  559. body[class*="woocommerce"] #page .cart-collaterals .cross-sells tr th,
  560. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals tr td,
  561. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals tr th,
  562. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells tr td,
  563. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells tr th {
  564. border-top-color: var(--wc--table--border-color);
  565. }
  566. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > h2,
  567. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > h2,
  568. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals > h2,
  569. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells > h2 {
  570. font-size: var(--global--font-size-lg);
  571. }
  572. body[class*="woocommerce"] #page .cart-collaterals .cart_totals p small,
  573. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals p small {
  574. color: var(--global--color-foreground-light);
  575. font-size: var(--global--font-size-sm);
  576. }
  577. body[class*="woocommerce"] #page .cart-collaterals .cart_totals table,
  578. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals table {
  579. margin: 0 0 calc(0.5 * var(--wc--table--padding));
  580. }
  581. body[class*="woocommerce"] #page .cart-collaterals .cart_totals table td,
  582. body[class*="woocommerce"] #page .cart-collaterals .cart_totals table th,
  583. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals table td,
  584. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals table th {
  585. line-height: var(--global--line-height-body);
  586. }
  587. body[class*="woocommerce"] #page .cart-collaterals .cart_totals table small,
  588. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals table small {
  589. color: var(--wc--mini-cart--color-count);
  590. }
  591. body[class*="woocommerce"] #page .cart-collaterals .cart_totals .discount td,
  592. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals .discount td {
  593. color: var(--wc--star-rating--color);
  594. }
  595. body[class*="woocommerce"] #page .cart-collaterals .shipping-calculator-button,
  596. body[class*="woocommerce"] #page .cart-collaterals .shipping-calculator-form,
  597. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .shipping-calculator-button,
  598. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .shipping-calculator-form {
  599. margin-top: var(--wc--tabs--padding);
  600. }
  601. /**
  602. * Mini-cart
  603. */
  604. body[class*="woocommerce"] #page .wc-block-grid__product-add-to-cart .added_to_cart {
  605. display: inline-block;
  606. text-decoration: none;
  607. }
  608. body[class*="woocommerce"] #page .woo-navigation > #toggle-cart {
  609. left: 0;
  610. top: 0;
  611. right: auto;
  612. }
  613. body[class*="woocommerce"] #page .woo-navigation > #toggle-cart .open .svg-icon {
  614. margin-left: 0;
  615. margin-right: calc(0.25 * var(--global--spacing-unit));
  616. vertical-align: middle;
  617. }
  618. body[class*="woocommerce"].wc-navigation-open #page .woo-navigation > .woocommerce-menu-container {
  619. visibility: visible;
  620. opacity: 1;
  621. transform: translateY(0);
  622. }
  623. body[class*="woocommerce"].wc-navigation-open #page .woo-navigation #toggle-cart {
  624. left: auto;
  625. right: 0;
  626. z-index: 500;
  627. }
  628. body[class*="woocommerce"].wc-navigation-open #page .woo-navigation #toggle-cart .open {
  629. display: none;
  630. }
  631. body[class*="woocommerce"].wc-navigation-open #page .woo-navigation #toggle-cart .close {
  632. display: flex;
  633. align-items: center;
  634. }
  635. @media only screen and (max-width: 481px) {
  636. body[class*="woocommerce"].admin-bar.lock-scrolling #page .woo-navigation #toggle-cart {
  637. top: 46px;
  638. }
  639. body[class*="woocommerce"] #page .woo-navigation .woocommerce-menu-container {
  640. background-color: var(--wc--mini-cart--color-background);
  641. color: var(--wc--mini-cart--color-text);
  642. }
  643. body[class*="woocommerce"] #page .woo-navigation .woocommerce-menu-container a,
  644. body[class*="woocommerce"] #page .woo-navigation .woocommerce-menu-container a:link,
  645. body[class*="woocommerce"] #page .woo-navigation .woocommerce-menu-container a:visited {
  646. color: currentColor;
  647. }
  648. body[class*="woocommerce"] #page .woo-navigation .woocommerce-menu-container .sub-menu {
  649. margin-left: 0;
  650. }
  651. }
  652. @media only screen and (min-width: 482px) {
  653. body[class*="woocommerce"] #page .woo-navigation {
  654. flex-direction: column;
  655. margin-top: 0;
  656. }
  657. body[class*="woocommerce"] #page .woo-navigation #toggle-cart {
  658. display: none;
  659. }
  660. }
  661. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-link {
  662. display: none;
  663. text-decoration: none;
  664. line-height: 1;
  665. }
  666. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-link > *:not(:last-child) {
  667. margin-right: calc(0.25 * var(--global--spacing-horizontal));
  668. }
  669. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-link .woocommerce-cart-subtotal {
  670. color: var(--wc--mini-cart--color-subtotal);
  671. }
  672. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-link .woocommerce-cart-count {
  673. color: var(--wc--mini-cart--color-count);
  674. font-weight: normal;
  675. white-space: nowrap;
  676. display: inline-block;
  677. vertical-align: bottom;
  678. }
  679. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-link .svg-icon {
  680. float: left;
  681. height: var(--primary-nav--font-size);
  682. width: var(--primary-nav--font-size);
  683. vertical-align: middle;
  684. }
  685. @media only screen and (min-width: 482px) {
  686. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-link {
  687. align-items: center;
  688. display: flex;
  689. flex-wrap: nowrap;
  690. }
  691. }
  692. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget {
  693. background-color: var(--wc--mini-cart--color-background);
  694. color: var(--wc--mini-cart--color-text);
  695. max-width: 100%;
  696. padding: var(--primary-nav--padding) 0;
  697. }
  698. @media only screen and (min-width: 482px) {
  699. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget {
  700. max-width: calc(20 * var(--global--spacing-horizontal));
  701. padding: var(--primary-nav--padding);
  702. }
  703. }
  704. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list {
  705. border-bottom: 1px solid var(--wc--mini-cart--color-border);
  706. }
  707. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list li {
  708. border-top: 1px solid var(--wc--mini-cart--color-border);
  709. padding-left: var(--global--spacing-horizontal);
  710. }
  711. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list a:hover:not(.remove),
  712. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list a:focus:not(.remove) {
  713. background-color: transparent;
  714. }
  715. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list a.remove:hover,
  716. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list a.remove:focus {
  717. text-decoration: none;
  718. }
  719. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__total {
  720. text-align: right;
  721. }
  722. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons {
  723. text-align: right;
  724. }
  725. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a {
  726. clear: right;
  727. color: var(--wc--mini-cart--button-text-color);
  728. background-color: var(--wc--mini-cart--button-background-color);
  729. margin: 0;
  730. float: right;
  731. }
  732. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a:first-child:nth-last-child(2),
  733. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a:first-child:nth-last-child(2) ~ a {
  734. clear: inherit;
  735. float: inherit;
  736. margin-bottom: 0;
  737. }
  738. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a:first-child:nth-last-child(2):not(:last-child),
  739. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a:first-child:nth-last-child(2) ~ a:not(:last-child) {
  740. margin-right: calc(0.5 * var(--global--spacing-horizontal));
  741. }
  742. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a:not(:last-child) {
  743. margin-bottom: calc(0.5 * var(--global--spacing-horizontal));
  744. }
  745. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a.wcppec-cart-widget-button {
  746. display: inline-block;
  747. }
  748. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget p.buttons.wcppec-cart-widget-spb {
  749. padding: 0;
  750. }
  751. body[class*="woocommerce"] #page .woo-navigation ul.cart_list li a,
  752. body[class*="woocommerce"] #page .woo-navigation ul.product_list_widget li a {
  753. padding: 0;
  754. }
  755. body[class*="woocommerce"] #page .woo-navigation ul.cart_list li a:not(.remove),
  756. body[class*="woocommerce"] #page .woo-navigation ul.product_list_widget li a:not(.remove),
  757. body[class*="woocommerce"] #page .woo-navigation .woocommerce-mini-cart__total {
  758. font-family: var(--primary-nav--font-family);
  759. font-size: var(--primary-nav--font-size);
  760. }
  761. body[class*="woocommerce"] #page .woo-navigation ul.cart_list li .quantity,
  762. body[class*="woocommerce"] #page .woo-navigation ul.product_list_widget li .quantity {
  763. font-size: var(--global--font-size-base);
  764. }
  765. @media only screen and (min-width: 482px) {
  766. body[class*="woocommerce"] #page .woo-navigation > div > ul > li.woocommerce-menu-item > .sub-menu {
  767. left: auto;
  768. right: 0;
  769. }
  770. body[class*="woocommerce"] #page .woo-navigation .woocommerce-cart-widget {
  771. max-width: var(--wc--mini-cart--width);
  772. }
  773. body[class*="woocommerce"] #page .woo-navigation > div > ul > li.woocommerce-menu-item:hover > ul:before,
  774. body[class*="woocommerce"] #page .woo-navigation > div > ul > li.woocommerce-menu-item.focus > ul:before,
  775. body[class*="woocommerce"] #page .woo-navigation > div > ul > li.woocommerce-menu-item.current-menu-item > ul:before {
  776. margin-left: auto;
  777. margin-right: var(--global--spacing-unit);
  778. }
  779. }
  780. .woocommerce-cart #page .woocommerce-menu-item .sub-menu,
  781. .woocommerce-checkout #page .woocommerce-menu-item .sub-menu {
  782. display: none;
  783. }
  784. /**
  785. * Pagination
  786. */
  787. body[class*="woocommerce"] #page .woocommerce-pagination {
  788. margin: 0 calc(-0.66 * var(--global--spacing-unit));
  789. width: 100%;
  790. }
  791. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers {
  792. border: none;
  793. display: flex;
  794. justify-content: start;
  795. }
  796. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li > * {
  797. display: block;
  798. font-family: var(--global--font-primary);
  799. font-size: var(--global--font-size-md);
  800. font-weight: 600;
  801. padding-left: calc(0.66 * var(--global--spacing-unit));
  802. padding-right: calc(0.66 * var(--global--spacing-unit));
  803. }
  804. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li {
  805. border: none;
  806. float: inherit;
  807. }
  808. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li a {
  809. text-decoration: unset;
  810. }
  811. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li span.current,
  812. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li a:hover,
  813. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li a:focus {
  814. background: transparent;
  815. color: var(--global--color-foreground-default);
  816. }
  817. body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers .svg-icon {
  818. display: inline-block;
  819. vertical-align: middle;
  820. }
  821. /**
  822. * Product loops
  823. */
  824. body[class*="woocommerce"] #page .woocommerce-products-header img {
  825. display: block;
  826. }
  827. #woocommerce-wrapper .products ul,
  828. #woocommerce-wrapper ul.products,
  829. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells .products ul,
  830. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products,
  831. body[class*="woocommerce"] #page .cart-collaterals .cross-sells .products ul,
  832. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products {
  833. margin: 0;
  834. padding: 0;
  835. }
  836. #woocommerce-wrapper ul.products li.product,
  837. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product,
  838. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product {
  839. text-align: center;
  840. }
  841. #woocommerce-wrapper ul.products li.product .star-rating,
  842. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .star-rating,
  843. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .star-rating {
  844. font-size: var(--global--font-size-sm);
  845. margin-left: auto;
  846. margin-right: auto;
  847. }
  848. #woocommerce-wrapper ul.products li.product h3,
  849. #woocommerce-wrapper ul.products li.product .woocommerce-loop-product__title,
  850. #woocommerce-wrapper ul.products li.product .woocommerce-loop-category__title,
  851. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product h3,
  852. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .woocommerce-loop-product__title,
  853. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .woocommerce-loop-category__title,
  854. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product h3,
  855. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .woocommerce-loop-product__title,
  856. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .woocommerce-loop-category__title {
  857. padding: inherit;
  858. font-size: var(--global--font-size-base);
  859. }
  860. #woocommerce-wrapper ul.products li.product a img,
  861. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product a img,
  862. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product a img {
  863. margin: inherit;
  864. }
  865. #woocommerce-wrapper ul.products li.product .woocommerce-placeholder,
  866. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .woocommerce-placeholder,
  867. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .woocommerce-placeholder {
  868. border-color: var(--global--color-border-default);
  869. }
  870. #woocommerce-wrapper ul.products li.product .button,
  871. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .button,
  872. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .button {
  873. margin-top: inherit;
  874. }
  875. #woocommerce-wrapper ul.products li.product .added_to_cart,
  876. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .added_to_cart,
  877. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .added_to_cart {
  878. margin-top: var(--global--spacing-unit);
  879. }
  880. #woocommerce-wrapper ul.products li.product .price,
  881. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price,
  882. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price {
  883. color: var(--global--color-primary);
  884. font-size: var(--global--font-size-md);
  885. line-height: var(--global--line-height-heading);
  886. }
  887. #woocommerce-wrapper ul.products li.product .price del,
  888. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price del,
  889. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price del {
  890. color: inherit;
  891. opacity: 0.5;
  892. display: inline-block;
  893. }
  894. #woocommerce-wrapper ul.products li.product .price ins,
  895. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price ins,
  896. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price ins {
  897. background: none;
  898. font-weight: 700;
  899. display: inline-block;
  900. }
  901. #woocommerce-wrapper ul.products li.product .price .from,
  902. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price .from,
  903. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price .from {
  904. font-size: var(--global--font-size-xs);
  905. color: var(--global--color-alert-warning);
  906. }
  907. #woocommerce-wrapper ul.products li.product.sale a > .price ins,
  908. body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product.sale a > .price ins,
  909. body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product.sale a > .price ins {
  910. color: var(--global--color-alert-success);
  911. }
  912. /**
  913. * Tabs
  914. */
  915. body[class*="woocommerce"] #page {
  916. /**
  917. * Tabs
  918. */
  919. }
  920. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs {
  921. padding-left: var(--global--spacing-horizontal);
  922. margin-bottom: var(--global--spacing-vertical);
  923. }
  924. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li {
  925. background-color: var(--global--color-tertiary);
  926. border-color: var(--wc--tabs--border-color);
  927. border-top-left-radius: var(--wc--tabs--border-radius);
  928. border-top-right-radius: var(--wc--tabs--border-radius);
  929. padding-left: 0;
  930. padding-right: 0;
  931. }
  932. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a {
  933. color: var(--global--color-foreground-light);
  934. padding-left: var(--wc--tabs--padding);
  935. padding-right: var(--wc--tabs--padding);
  936. padding-top: calc(0.5 * var(--wc--tabs--padding));
  937. padding-bottom: calc(0.5 * var(--wc--tabs--padding));
  938. font-weight: normal;
  939. border-bottom: none;
  940. }
  941. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a:hover {
  942. color: var(--global--color-primary-hover);
  943. }
  944. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active {
  945. background-color: var(--global--color-background);
  946. border-color: var(--wc--tabs--border-color);
  947. border-bottom-color: var(--global--color-background);
  948. }
  949. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active a {
  950. color: var(--global--color-foreground-dark);
  951. text-shadow: inherit;
  952. }
  953. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active::before {
  954. box-shadow: 2px 2px 0 var(--global--color-background);
  955. }
  956. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active::after {
  957. box-shadow: -2px 2px 0 var(--global--color-background);
  958. }
  959. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::before, body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::after {
  960. border-color: var(--wc--tabs--border-color);
  961. }
  962. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::before {
  963. box-shadow: 2px 2px 0 var(--global--color-tertiary);
  964. }
  965. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::after {
  966. box-shadow: -2px 2px 0 var(--global--color-tertiary);
  967. }
  968. body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs::before {
  969. border-bottom-color: var(--wc--tabs--border-color);
  970. }
  971. body[class*="woocommerce"] #page .woocommerce-tabs .panel {
  972. margin-bottom: var(--global--spacing-vertical);
  973. }
  974. body[class*="woocommerce"] #page .woocommerce-tabs .panel h2,
  975. body[class*="woocommerce"] #page .woocommerce-tabs .panel .comment-reply-title {
  976. font-family: var(--global--font-primary);
  977. font-size: var(--global--font-size-lg);
  978. }
  979. /**
  980. * Reviews
  981. */
  982. body[class*="woocommerce"] #page {
  983. /**
  984. * Reviews
  985. */
  986. }
  987. body[class*="woocommerce"] #page #reviews h2 small {
  988. color: var(--global--color-foreground-light);
  989. font-size: var(--global--font-size-sm);
  990. margin: inherit;
  991. }
  992. body[class*="woocommerce"] #page #reviews h2 small a {
  993. color: currentColor;
  994. }
  995. body[class*="woocommerce"] #page #reviews .comment-form .stars a {
  996. border-bottom: none;
  997. }
  998. body[class*="woocommerce"] #page #reviews #comments ol.commentlist {
  999. padding-left: 0;
  1000. }
  1001. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li {
  1002. margin-bottom: var(--global--spacing-unit);
  1003. }
  1004. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .meta {
  1005. color: var(--global--color-foreground-light);
  1006. font-size: var(--global--font-size-sm);
  1007. }
  1008. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li img.avatar {
  1009. padding: 0;
  1010. width: calc(1.5 * var(--global--spacing-vertical));
  1011. height: auto;
  1012. background: transparent;
  1013. border-color: var(--global--color-border-default);
  1014. margin: 0;
  1015. box-shadow: none;
  1016. }
  1017. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .woocommerce-review__author {
  1018. font-family: var(--global--font-primary);
  1019. }
  1020. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .comment-text {
  1021. margin-left: calc(4 * var(--global--spacing-unit));
  1022. border: 1px solid var(--global--color-border);
  1023. border-radius: 4px;
  1024. padding: 1em 1em 0;
  1025. }
  1026. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .comment-text p {
  1027. margin: 0 0 1em;
  1028. }
  1029. body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .comment-text p.meta {
  1030. font-size: 0.83em;
  1031. }
  1032. body[class*="woocommerce"] #page #reviews #comments ol.commentlist ul.children {
  1033. list-style: none outside;
  1034. margin: 20px 0 0 50px;
  1035. }
  1036. body[class*="woocommerce"] #page #reviews #comments ol.commentlist ul.children .star-rating {
  1037. display: none;
  1038. }
  1039. body[class*="woocommerce"] #page #reviews #comments ol.commentlist #respond {
  1040. border: 1px solid var(--global--color-border);
  1041. border-radius: 4px;
  1042. padding: 1em 1em 0;
  1043. margin: 20px 0 0 50px;
  1044. }
  1045. body[class*="woocommerce"] #page #reviews #comments .commentlist > li::before {
  1046. content: "";
  1047. }
  1048. /**
  1049. * Pagination
  1050. */
  1051. body[class*="woocommerce"] .woocommerce-store-notice,
  1052. body[class*="woocommerce"] p.demo_store {
  1053. background-color: var(--global--color-primary);
  1054. color: var(--global--color-background);
  1055. position: fixed;
  1056. top: auto;
  1057. bottom: 0;
  1058. }
  1059. /**
  1060. * Structure
  1061. */
  1062. /**
  1063. * Vertical Space - 32px
  1064. */
  1065. body[class*="woocommerce"] #page div.summary > *:not(:first-child),
  1066. body[class*="woocommerce"] #page div.product .woocommerce-tabs .panel > *:not(:first-child),
  1067. body[class*="woocommerce"] #page .products.related > *:not(:first-child),
  1068. body[class*="woocommerce"] #page .up-sells > *:not(:first-child),
  1069. body[class*="woocommerce"] #page .woocommerce-order > *:not(:first-child),
  1070. .woocommerce-account #page .entry-content .woocommerce > *:not(:first-child) {
  1071. margin-top: var(--global--spacing-vertical);
  1072. }
  1073. body[class*="woocommerce"] #page div.summary > *:not(:last-child),
  1074. body[class*="woocommerce"] #page div.product .woocommerce-tabs .panel > *:not(:last-child),
  1075. body[class*="woocommerce"] #page .products.related > *:not(:last-child),
  1076. body[class*="woocommerce"] #page .up-sells > *:not(:last-child),
  1077. body[class*="woocommerce"] #page .woocommerce-order > *:not(:last-child),
  1078. .woocommerce-account #page .entry-content .woocommerce > *:not(:last-child) {
  1079. margin-bottom: var(--global--spacing-vertical);
  1080. }
  1081. body[class*="woocommerce"] #page div.summary > *:empty + *,
  1082. body[class*="woocommerce"] #page div.summary > .form-row-last,
  1083. body[class*="woocommerce"] #page div.product .woocommerce-tabs .panel > *:empty + *,
  1084. body[class*="woocommerce"] #page div.product .woocommerce-tabs .panel > .form-row-last,
  1085. body[class*="woocommerce"] #page .products.related > *:empty + *,
  1086. body[class*="woocommerce"] #page .products.related > .form-row-last,
  1087. body[class*="woocommerce"] #page .up-sells > *:empty + *,
  1088. body[class*="woocommerce"] #page .up-sells > .form-row-last,
  1089. body[class*="woocommerce"] #page .woocommerce-order > *:empty + *,
  1090. body[class*="woocommerce"] #page .woocommerce-order > .form-row-last,
  1091. .woocommerce-account #page .entry-content .woocommerce > *:empty + *,
  1092. .woocommerce-account #page .entry-content .woocommerce > .form-row-last {
  1093. margin-top: 0;
  1094. }
  1095. body[class*="woocommerce"] #page div.summary > *:not(img):empty,
  1096. body[class*="woocommerce"] #page div.product .woocommerce-tabs .panel > *:not(img):empty,
  1097. body[class*="woocommerce"] #page .products.related > *:not(img):empty,
  1098. body[class*="woocommerce"] #page .up-sells > *:not(img):empty,
  1099. body[class*="woocommerce"] #page .woocommerce-order > *:not(img):empty,
  1100. .woocommerce-account #page .entry-content .woocommerce > *:not(img):empty {
  1101. margin: 0;
  1102. }
  1103. /**
  1104. * Vertical Space - 16px
  1105. */
  1106. #woocommerce-wrapper ul.products li.product a > *:not(:first-child),
  1107. #woocommerce-wrapper ul.products li.product-category a > *:not(:first-child),
  1108. body[class*="woocommerce"] #page ul.products li.product a > *:not(:first-child),
  1109. body[class*="woocommerce"] #page ul.products li.product-category a > *:not(:first-child),
  1110. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > *:not(:first-child),
  1111. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > *:not(:first-child),
  1112. body[class*="woocommerce"] #page .widget_shopping_cart > *:not(:first-child),
  1113. body[class*="woocommerce"] #page .widget_shopping_cart_content > *:not(:first-child),
  1114. body[class*="woocommerce"] #page div.product form.variations_form > *:not(:first-child),
  1115. body[class*="woocommerce"] #page div.product form.variations_form .variations > *:not(:first-child),
  1116. body[class*="woocommerce"] #page div.product form.variations_form .single_variation_wrap > *:not(:first-child),
  1117. body[class*="woocommerce"] #page .woocommerce-Reviews #comments > *:not(:first-child),
  1118. body[class*="woocommerce"] #page .woocommerce-EditAccountForm > *:not(:first-child),
  1119. body[class*="woocommerce"] #page .woocommerce-MyAccount-content > *:not(:first-child),
  1120. body[class*="woocommerce"] #page .woocommerce-MyAccount-content form > *:not(:first-child),
  1121. body[class*="woocommerce"] #page .woocommerce-Address > *:not(:first-child),
  1122. body[class*="woocommerce"] #page .woocommerce-address-fields > *:not(:first-child),
  1123. body[class*="woocommerce"] #page .woocommerce-address-fields__field-wrapper > *:not(:first-child),
  1124. body[class*="woocommerce"] #page .woocommerce-billing-fields > *:not(:first-child),
  1125. body[class*="woocommerce"] #page .woocommerce-column--billing-address > *:not(:first-child),
  1126. body[class*="woocommerce"] #page .woocommerce-shipping-fields > *:not(:first-child),
  1127. body[class*="woocommerce"] #page .woocommerce-column--shipping-address > *:not(:first-child),
  1128. body[class*="woocommerce"] #page .woocommerce-products-header > *:not(:first-child),
  1129. body[class*="woocommerce"] #page .woocommerce-checkout > *:not(:first-child),
  1130. body[class*="woocommerce"] #page .woocommerce-order-downloads > *:not(:first-child),
  1131. body[class*="woocommerce"] #page .woocommerce-order-details > *:not(:first-child),
  1132. body[class*="woocommerce"] #page .woocommerce-customer-details > *:not(:first-child) {
  1133. margin-top: var(--global--spacing-unit);
  1134. }
  1135. #woocommerce-wrapper ul.products li.product a > *:not(:last-child),
  1136. #woocommerce-wrapper ul.products li.product a > .price,
  1137. #woocommerce-wrapper ul.products li.product-category a > *:not(:last-child),
  1138. #woocommerce-wrapper ul.products li.product-category a > .price,
  1139. body[class*="woocommerce"] #page ul.products li.product a > *:not(:last-child),
  1140. body[class*="woocommerce"] #page ul.products li.product a > .price,
  1141. body[class*="woocommerce"] #page ul.products li.product-category a > *:not(:last-child),
  1142. body[class*="woocommerce"] #page ul.products li.product-category a > .price,
  1143. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > *:not(:last-child),
  1144. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > .price,
  1145. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > *:not(:last-child),
  1146. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > .price,
  1147. body[class*="woocommerce"] #page .widget_shopping_cart > *:not(:last-child),
  1148. body[class*="woocommerce"] #page .widget_shopping_cart > .price,
  1149. body[class*="woocommerce"] #page .widget_shopping_cart_content > *:not(:last-child),
  1150. body[class*="woocommerce"] #page .widget_shopping_cart_content > .price,
  1151. body[class*="woocommerce"] #page div.product form.variations_form > *:not(:last-child),
  1152. body[class*="woocommerce"] #page div.product form.variations_form > .price,
  1153. body[class*="woocommerce"] #page div.product form.variations_form .variations > *:not(:last-child),
  1154. body[class*="woocommerce"] #page div.product form.variations_form .variations > .price,
  1155. body[class*="woocommerce"] #page div.product form.variations_form .single_variation_wrap > *:not(:last-child),
  1156. body[class*="woocommerce"] #page div.product form.variations_form .single_variation_wrap > .price,
  1157. body[class*="woocommerce"] #page .woocommerce-Reviews #comments > *:not(:last-child),
  1158. body[class*="woocommerce"] #page .woocommerce-Reviews #comments > .price,
  1159. body[class*="woocommerce"] #page .woocommerce-EditAccountForm > *:not(:last-child),
  1160. body[class*="woocommerce"] #page .woocommerce-EditAccountForm > .price,
  1161. body[class*="woocommerce"] #page .woocommerce-MyAccount-content > *:not(:last-child),
  1162. body[class*="woocommerce"] #page .woocommerce-MyAccount-content > .price,
  1163. body[class*="woocommerce"] #page .woocommerce-MyAccount-content form > *:not(:last-child),
  1164. body[class*="woocommerce"] #page .woocommerce-MyAccount-content form > .price,
  1165. body[class*="woocommerce"] #page .woocommerce-Address > *:not(:last-child),
  1166. body[class*="woocommerce"] #page .woocommerce-Address > .price,
  1167. body[class*="woocommerce"] #page .woocommerce-address-fields > *:not(:last-child),
  1168. body[class*="woocommerce"] #page .woocommerce-address-fields > .price,
  1169. body[class*="woocommerce"] #page .woocommerce-address-fields__field-wrapper > *:not(:last-child),
  1170. body[class*="woocommerce"] #page .woocommerce-address-fields__field-wrapper > .price,
  1171. body[class*="woocommerce"] #page .woocommerce-billing-fields > *:not(:last-child),
  1172. body[class*="woocommerce"] #page .woocommerce-billing-fields > .price,
  1173. body[class*="woocommerce"] #page .woocommerce-column--billing-address > *:not(:last-child),
  1174. body[class*="woocommerce"] #page .woocommerce-column--billing-address > .price,
  1175. body[class*="woocommerce"] #page .woocommerce-shipping-fields > *:not(:last-child),
  1176. body[class*="woocommerce"] #page .woocommerce-shipping-fields > .price,
  1177. body[class*="woocommerce"] #page .woocommerce-column--shipping-address > *:not(:last-child),
  1178. body[class*="woocommerce"] #page .woocommerce-column--shipping-address > .price,
  1179. body[class*="woocommerce"] #page .woocommerce-products-header > *:not(:last-child),
  1180. body[class*="woocommerce"] #page .woocommerce-products-header > .price,
  1181. body[class*="woocommerce"] #page .woocommerce-checkout > *:not(:last-child),
  1182. body[class*="woocommerce"] #page .woocommerce-checkout > .price,
  1183. body[class*="woocommerce"] #page .woocommerce-order-downloads > *:not(:last-child),
  1184. body[class*="woocommerce"] #page .woocommerce-order-downloads > .price,
  1185. body[class*="woocommerce"] #page .woocommerce-order-details > *:not(:last-child),
  1186. body[class*="woocommerce"] #page .woocommerce-order-details > .price,
  1187. body[class*="woocommerce"] #page .woocommerce-customer-details > *:not(:last-child),
  1188. body[class*="woocommerce"] #page .woocommerce-customer-details > .price {
  1189. margin-bottom: var(--global--spacing-unit);
  1190. }
  1191. #woocommerce-wrapper ul.products li.product a > *:not(img):empty + *,
  1192. #woocommerce-wrapper ul.products li.product a > .form-row-last,
  1193. #woocommerce-wrapper ul.products li.product-category a > *:not(img):empty + *,
  1194. #woocommerce-wrapper ul.products li.product-category a > .form-row-last,
  1195. body[class*="woocommerce"] #page ul.products li.product a > *:not(img):empty + *,
  1196. body[class*="woocommerce"] #page ul.products li.product a > .form-row-last,
  1197. body[class*="woocommerce"] #page ul.products li.product-category a > *:not(img):empty + *,
  1198. body[class*="woocommerce"] #page ul.products li.product-category a > .form-row-last,
  1199. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > *:not(img):empty + *,
  1200. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > .form-row-last,
  1201. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > *:not(img):empty + *,
  1202. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > .form-row-last,
  1203. body[class*="woocommerce"] #page .widget_shopping_cart > *:not(img):empty + *,
  1204. body[class*="woocommerce"] #page .widget_shopping_cart > .form-row-last,
  1205. body[class*="woocommerce"] #page .widget_shopping_cart_content > *:not(img):empty + *,
  1206. body[class*="woocommerce"] #page .widget_shopping_cart_content > .form-row-last,
  1207. body[class*="woocommerce"] #page div.product form.variations_form > *:not(img):empty + *,
  1208. body[class*="woocommerce"] #page div.product form.variations_form > .form-row-last,
  1209. body[class*="woocommerce"] #page div.product form.variations_form .variations > *:not(img):empty + *,
  1210. body[class*="woocommerce"] #page div.product form.variations_form .variations > .form-row-last,
  1211. body[class*="woocommerce"] #page div.product form.variations_form .single_variation_wrap > *:not(img):empty + *,
  1212. body[class*="woocommerce"] #page div.product form.variations_form .single_variation_wrap > .form-row-last,
  1213. body[class*="woocommerce"] #page .woocommerce-Reviews #comments > *:not(img):empty + *,
  1214. body[class*="woocommerce"] #page .woocommerce-Reviews #comments > .form-row-last,
  1215. body[class*="woocommerce"] #page .woocommerce-EditAccountForm > *:not(img):empty + *,
  1216. body[class*="woocommerce"] #page .woocommerce-EditAccountForm > .form-row-last,
  1217. body[class*="woocommerce"] #page .woocommerce-MyAccount-content > *:not(img):empty + *,
  1218. body[class*="woocommerce"] #page .woocommerce-MyAccount-content > .form-row-last,
  1219. body[class*="woocommerce"] #page .woocommerce-MyAccount-content form > *:not(img):empty + *,
  1220. body[class*="woocommerce"] #page .woocommerce-MyAccount-content form > .form-row-last,
  1221. body[class*="woocommerce"] #page .woocommerce-Address > *:not(img):empty + *,
  1222. body[class*="woocommerce"] #page .woocommerce-Address > .form-row-last,
  1223. body[class*="woocommerce"] #page .woocommerce-address-fields > *:not(img):empty + *,
  1224. body[class*="woocommerce"] #page .woocommerce-address-fields > .form-row-last,
  1225. body[class*="woocommerce"] #page .woocommerce-address-fields__field-wrapper > *:not(img):empty + *,
  1226. body[class*="woocommerce"] #page .woocommerce-address-fields__field-wrapper > .form-row-last,
  1227. body[class*="woocommerce"] #page .woocommerce-billing-fields > *:not(img):empty + *,
  1228. body[class*="woocommerce"] #page .woocommerce-billing-fields > .form-row-last,
  1229. body[class*="woocommerce"] #page .woocommerce-column--billing-address > *:not(img):empty + *,
  1230. body[class*="woocommerce"] #page .woocommerce-column--billing-address > .form-row-last,
  1231. body[class*="woocommerce"] #page .woocommerce-shipping-fields > *:not(img):empty + *,
  1232. body[class*="woocommerce"] #page .woocommerce-shipping-fields > .form-row-last,
  1233. body[class*="woocommerce"] #page .woocommerce-column--shipping-address > *:not(img):empty + *,
  1234. body[class*="woocommerce"] #page .woocommerce-column--shipping-address > .form-row-last,
  1235. body[class*="woocommerce"] #page .woocommerce-products-header > *:not(img):empty + *,
  1236. body[class*="woocommerce"] #page .woocommerce-products-header > .form-row-last,
  1237. body[class*="woocommerce"] #page .woocommerce-checkout > *:not(img):empty + *,
  1238. body[class*="woocommerce"] #page .woocommerce-checkout > .form-row-last,
  1239. body[class*="woocommerce"] #page .woocommerce-order-downloads > *:not(img):empty + *,
  1240. body[class*="woocommerce"] #page .woocommerce-order-downloads > .form-row-last,
  1241. body[class*="woocommerce"] #page .woocommerce-order-details > *:not(img):empty + *,
  1242. body[class*="woocommerce"] #page .woocommerce-order-details > .form-row-last,
  1243. body[class*="woocommerce"] #page .woocommerce-customer-details > *:not(img):empty + *,
  1244. body[class*="woocommerce"] #page .woocommerce-customer-details > .form-row-last {
  1245. margin-top: 0;
  1246. }
  1247. #woocommerce-wrapper ul.products li.product a > *:empty,
  1248. #woocommerce-wrapper ul.products li.product-category a > *:empty,
  1249. body[class*="woocommerce"] #page ul.products li.product a > *:empty,
  1250. body[class*="woocommerce"] #page ul.products li.product-category a > *:empty,
  1251. body[class*="woocommerce"] #page .cart-collaterals .cross-sells > *:empty,
  1252. body[class*="woocommerce"] #page .cart-collaterals .cart_totals > *:empty,
  1253. body[class*="woocommerce"] #page .widget_shopping_cart > *:empty,
  1254. body[class*="woocommerce"] #page .widget_shopping_cart_content > *:empty,
  1255. body[class*="woocommerce"] #page div.product form.variations_form > *:empty,
  1256. body[class*="woocommerce"] #page div.product form.variations_form .variations > *:empty,
  1257. body[class*="woocommerce"] #page div.product form.variations_form .single_variation_wrap > *:empty,
  1258. body[class*="woocommerce"] #page .woocommerce-Reviews #comments > *:empty,
  1259. body[class*="woocommerce"] #page .woocommerce-EditAccountForm > *:empty,
  1260. body[class*="woocommerce"] #page .woocommerce-MyAccount-content > *:empty,
  1261. body[class*="woocommerce"] #page .woocommerce-MyAccount-content form > *:empty,
  1262. body[class*="woocommerce"] #page .woocommerce-Address > *:empty,
  1263. body[class*="woocommerce"] #page .woocommerce-address-fields > *:empty,
  1264. body[class*="woocommerce"] #page .woocommerce-address-fields__field-wrapper > *:empty,
  1265. body[class*="woocommerce"] #page .woocommerce-billing-fields > *:empty,
  1266. body[class*="woocommerce"] #page .woocommerce-column--billing-address > *:empty,
  1267. body[class*="woocommerce"] #page .woocommerce-shipping-fields > *:empty,
  1268. body[class*="woocommerce"] #page .woocommerce-column--shipping-address > *:empty,
  1269. body[class*="woocommerce"] #page .woocommerce-products-header > *:empty,
  1270. body[class*="woocommerce"] #page .woocommerce-checkout > *:empty,
  1271. body[class*="woocommerce"] #page .woocommerce-order-downloads > *:empty,
  1272. body[class*="woocommerce"] #page .woocommerce-order-details > *:empty,
  1273. body[class*="woocommerce"] #page .woocommerce-customer-details > *:empty {
  1274. margin: 0;
  1275. }
  1276. /**
  1277. * Page Imports
  1278. */
  1279. /**
  1280. * Cart page
  1281. */
  1282. body[class*="woocommerce"] #page table.shop_table td.product-remove {
  1283. border-width: 0;
  1284. }
  1285. @media only screen and (min-width: 822px) {
  1286. body[class*="woocommerce"] #page table.shop_table td.product-remove {
  1287. height: var(--global--font-size-sm);
  1288. width: var(--global--font-size-sm);
  1289. }
  1290. }
  1291. body[class*="woocommerce"] #page td.product-thumbnail {
  1292. width: calc(6 * var(--global--spacing-horizontal));
  1293. }
  1294. body[class*="woocommerce"] #page td.product-thumbnail img {
  1295. width: inherit;
  1296. }
  1297. body[class*="woocommerce"] #page td.product-name {
  1298. font-family: var(--global--font-primary);
  1299. font-weight: 700;
  1300. }
  1301. body[class*="woocommerce"] #page td.product-name a {
  1302. max-width: 50%;
  1303. }
  1304. body[class*="woocommerce"] #page td.product-name dl.variation dt,
  1305. body[class*="woocommerce"] #page td.product-name dl.variation .wc-item-meta-label,
  1306. body[class*="woocommerce"] #page td.product-name .wc-item-meta dt,
  1307. body[class*="woocommerce"] #page td.product-name .wc-item-meta .wc-item-meta-label {
  1308. margin-right: calc(0.5 * var(--global--spacing-unit));
  1309. }
  1310. body[class*="woocommerce"] #page td.product-name p.backorder_notification {
  1311. font-size: var(--global--font-size-sm);
  1312. }
  1313. body[class*="woocommerce"] #page td.product-quantity {
  1314. min-width: calc(5 * var(--global--spacing-unit));
  1315. }
  1316. body[class*="woocommerce"] #page table.cart td.actions .input-text {
  1317. width: inherit;
  1318. float: inherit;
  1319. padding: var(--global--spacing-unit);
  1320. }
  1321. /**
  1322. * Checkout page
  1323. */
  1324. body[class*="woocommerce"] #page .woocommerce-order h2 {
  1325. font-family: var(--global--font-primary);
  1326. font-size: var(--global--font-size-sm);
  1327. font-weight: bold;
  1328. }
  1329. body[class*="woocommerce"] #page .woocommerce-order-overview.order_details {
  1330. display: flex;
  1331. justify-content: space-between;
  1332. align-content: flex-start;
  1333. align-items: stretch;
  1334. border: 1px solid var(--wc--table--border-color);
  1335. }
  1336. body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li {
  1337. border: none;
  1338. font-family: var(--global--font-primary);
  1339. font-size: var(--global--font-size-sm);
  1340. margin-right: 0;
  1341. padding: var(--wc--table--padding);
  1342. text-transform: none;
  1343. }
  1344. body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li.email {
  1345. word-break: break-word;
  1346. }
  1347. body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li:not(:last-child) {
  1348. border-right: 1px solid var(--wc--table--border-color);
  1349. }
  1350. body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li strong {
  1351. font-family: var(--global--font-secondary);
  1352. font-size: var(--global--font-size-md);
  1353. line-height: var(--global--line-height-heading);
  1354. }
  1355. body[class*="woocommerce"] #page .woocommerce-order-overview.order_details:before, body[class*="woocommerce"] #page .woocommerce-order-overview.order_details:after {
  1356. content: none !important;
  1357. display: none;
  1358. }
  1359. body[class*="woocommerce"] #page .woocommerce-form-coupon-toggle + .checkout_coupon {
  1360. margin-bottom: var(--global--spacing-vertical);
  1361. }
  1362. body[class*="woocommerce"] #page form.checkout_coupon,
  1363. body[class*="woocommerce"] #page form.login,
  1364. body[class*="woocommerce"] #page form.register {
  1365. border-color: var(--wc--table--border-color);
  1366. padding: var(--wc--table--padding);
  1367. margin-top: inherit;
  1368. margin-bottom: inherit;
  1369. text-align: left;
  1370. border-radius: 0;
  1371. }
  1372. body[class*="woocommerce"] #page ul.order_details {
  1373. padding-left: 0;
  1374. }
  1375. body[class*="woocommerce"] #page .woocommerce-customer-details address {
  1376. border-radius: 0;
  1377. border-color: var(--global--color-border);
  1378. border-right-width: 1px;
  1379. border-bottom-width: 1px;
  1380. }
  1381. body[class*="woocommerce"] #page #add_payment_method table.cart .product-thumbnail {
  1382. min-width: var(--global--spacing-horizontal);
  1383. }
  1384. body[class*="woocommerce"] #page #add_payment_method table.cart img {
  1385. width: calc(2 * var(--global--spacing-vertical));
  1386. }
  1387. body[class*="woocommerce"] #page #add_payment_method table.cart td.actions .coupon .input-text {
  1388. border-color: var(--global--color-border);
  1389. padding: calc(0.5 * var(--global--spacing-unit));
  1390. margin: 0 var(--global--spacing-unit) 0 0;
  1391. }
  1392. body[class*="woocommerce"] #page .wc-proceed-to-checkout {
  1393. padding: var(--global--spacing-vertical) 0;
  1394. }
  1395. body[class*="woocommerce"] #page .wc-proceed-to-checkout a.checkout-button {
  1396. margin-bottom: var(--global--spacing-unit);
  1397. font-size: var(--global--font-size-md);
  1398. padding: var(--global--spacing-unit);
  1399. }
  1400. body[class*="woocommerce"] #page .wc-proceed-to-checkout a.wcppec-checkout-buttons__button {
  1401. padding-top: 0;
  1402. }
  1403. body[class*="woocommerce"] #page .checkout .create-account small {
  1404. font-size: var(--global--font-size-xs);
  1405. color: var(--global--color-foreground-light);
  1406. }
  1407. body[class*="woocommerce"] #page #payment {
  1408. background: transparent;
  1409. border: var(--wc--table--border-width) solid var(--wc--table--border-color);
  1410. border-radius: var(--wc--table--border-radius);
  1411. }
  1412. body[class*="woocommerce"] #page #payment ul.payment_methods {
  1413. padding: var(--wc--table--padding);
  1414. border-bottom-color: var(--wc--table--border-color);
  1415. }
  1416. body[class*="woocommerce"] #page #payment ul.payment_methods li {
  1417. line-height: var(--global--line-height-body);
  1418. }
  1419. body[class*="woocommerce"] #page #payment ul.payment_methods li input {
  1420. margin-right: var(--global--line-height-body);
  1421. }
  1422. body[class*="woocommerce"] #page #payment div.form-row {
  1423. padding: var(--wc--table--padding);
  1424. margin-bottom: 0;
  1425. }
  1426. body[class*="woocommerce"] #page #payment div.payment_box {
  1427. padding: calc(0.5 * var(--wc--table--padding));
  1428. margin-bottom: calc(0.5 * var(--wc--table--padding));
  1429. margin-top: calc(0.5 * var(--wc--table--padding));
  1430. font-size: var(--global--font-size-sm);
  1431. font-weight: bold;
  1432. border-radius: var(--wc--table--border-radius);
  1433. line-height: var(--global--line-height-body);
  1434. background-color: var(--global--color-background-dark);
  1435. color: var(--global--color-foreground-dark);
  1436. }
  1437. body[class*="woocommerce"] #page #payment div.payment_box input.input-text,
  1438. body[class*="woocommerce"] #page #payment div.payment_box textarea {
  1439. border-color: var(--wc--table--border-color);
  1440. border-top-color: var(--wc--table--border-color);
  1441. }
  1442. body[class*="woocommerce"] #page #payment div.payment_box ::-webkit-input-placeholder {
  1443. color: var(--global--color-foreground-light);
  1444. }
  1445. body[class*="woocommerce"] #page #payment div.payment_box :-moz-placeholder {
  1446. color: var(--global--color-foreground-light);
  1447. }
  1448. body[class*="woocommerce"] #page #payment div.payment_box :-ms-input-placeholder {
  1449. color: var(--global--color-foreground-light);
  1450. }
  1451. body[class*="woocommerce"] #page #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
  1452. margin-right: var(--global--spacing-unit);
  1453. }
  1454. body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form {
  1455. margin-top: var(--wc--table--padding);
  1456. }
  1457. body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-number,
  1458. body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-expiry,
  1459. body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-cvc {
  1460. font-size: var(--global--font-size-sm);
  1461. padding: calc(0.5 * var(--wc--table--padding));
  1462. }
  1463. body[class*="woocommerce"] #page #payment div.payment_box span.help {
  1464. font-size: var(--global--font-size-sm);
  1465. color: var(--global--color-foreground-light);
  1466. }
  1467. body[class*="woocommerce"] #page #payment div.payment_box .form-row {
  1468. margin: 0 0 var(--global--spacing-vertical);
  1469. }
  1470. body[class*="woocommerce"] #page #payment div.payment_box p:last-child {
  1471. margin-bottom: 0;
  1472. }
  1473. body[class*="woocommerce"] #page #payment div.payment_box::before {
  1474. border-bottom-color: var(--global--color-background-dark);
  1475. /* arrow size / color */
  1476. }
  1477. body[class*="woocommerce"] #page #payment .payment_method_paypal .about_paypal {
  1478. float: right;
  1479. line-height: 52px;
  1480. font-size: var(--global--font-size-sm);
  1481. }
  1482. body[class*="woocommerce"] #page #payment .payment_method_paypal img {
  1483. max-height: 52px;
  1484. vertical-align: middle;
  1485. }
  1486. body[class*="woocommerce"] #page .woocommerce-terms-and-conditions {
  1487. border-color: var(--wc--table--border-color);
  1488. }
  1489. body[class*="woocommerce"] #page .woocommerce-invalid #terms {
  1490. outline-color: var(--global--color-alert-error);
  1491. }
  1492. body[class*="woocommerce"] #page .checkout h3 {
  1493. font-family: var(--global--font-primary);
  1494. font-size: var(--global--font-size-sm);
  1495. font-weight: bold;
  1496. }
  1497. body[class*="woocommerce"] #page .woocommerce-terms-and-conditions {
  1498. border-color: var(--wc--table--border-color);
  1499. }
  1500. body[class*="woocommerce"] #page .woocommerce-invalid #terms {
  1501. outline-color: var(--global--color-alert-error);
  1502. }
  1503. /**
  1504. * Account page
  1505. */
  1506. body[class*="woocommerce"] #page .entry-content .woocommerce-MyAccount-navigation {
  1507. width: 100%;
  1508. }
  1509. body[class*="woocommerce"] #page .entry-content .woocommerce-MyAccount-navigation ul li a {
  1510. line-height: var(--global--line-height-heading);
  1511. display: inline-table;
  1512. }
  1513. body[class*="woocommerce"] #page .entry-content .woocommerce-MyAccount-navigation + *:not(:first-child) {
  1514. margin-top: 0;
  1515. }
  1516. @media only screen and (min-width: 592px) {
  1517. body[class*="woocommerce"] #page .entry-content .woocommerce-MyAccount-navigation {
  1518. width: 20%;
  1519. }
  1520. }
  1521. body[class*="woocommerce"] #page .woocommerce-MyAccount-content {
  1522. width: 100%;
  1523. }
  1524. body[class*="woocommerce"] #page .woocommerce-MyAccount-content .woocommerce-notices-wrapper:empty {
  1525. display: none;
  1526. }
  1527. body[class*="woocommerce"] #page .woocommerce-MyAccount-content fieldset {
  1528. border: 1px solid var(--global--color-border);
  1529. padding: var(--global--spacing-unit);
  1530. border-radius: 3px;
  1531. }
  1532. @media only screen and (min-width: 592px) {
  1533. body[class*="woocommerce"] #page .woocommerce-MyAccount-content {
  1534. width: calc(80% - var(--global--spacing-horizontal));
  1535. }
  1536. }
  1537. body[class*="woocommerce"] #page .addresses .title h3 {
  1538. font-size: var(--global--font-size-base);
  1539. }
  1540. body[class*="woocommerce"] #page .addresses .title .edit {
  1541. line-height: 1;
  1542. }
  1543. .woocommerce-account .entry-content .woocommerce > h2,
  1544. body[class*="woocommerce"] #page div[class*="woocommerce"] h2 {
  1545. font-size: var(--global--font-size-lg);
  1546. }
  1547. /**
  1548. * Products Page
  1549. */
  1550. body[class*="woocommerce"] #page {
  1551. /**
  1552. * Remove the bright yellow background on mark elements.
  1553. */
  1554. }
  1555. body[class*="woocommerce"] #page mark {
  1556. background: transparent;
  1557. }
  1558. body[class*="woocommerce"] #page .woocommerce-result-count {
  1559. margin-bottom: var(--global--spacing-unit);
  1560. }
  1561. body[class*="woocommerce"] #page .woocommerce-ordering {
  1562. margin-bottom: var(--global--spacing-unit);
  1563. }
  1564. body[class*="woocommerce"] #page .woocommerce-ordering select {
  1565. vertical-align: top;
  1566. }
  1567. /**
  1568. * Single Product Page
  1569. */
  1570. .single-product #page #woocommerce-wrapper div.product div.images {
  1571. margin-bottom: var(--global--spacing-vertical);
  1572. }
  1573. .single-product #page #woocommerce-wrapper div.product div.images div.thumbnails {
  1574. padding-top: var(--global--spacing-unit);
  1575. }
  1576. .single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
  1577. background-color: var(--global--color-background);
  1578. }
  1579. .single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__image--placeholder {
  1580. border-color: var(--global--color-border);
  1581. }
  1582. .single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger {
  1583. font-size: var(--global--font-size-md);
  1584. background: var(--global--color-background);
  1585. }
  1586. .single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger::before {
  1587. border-color: var(--global--color-border);
  1588. }
  1589. .single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger::after {
  1590. background-color: var(--global--color-border);
  1591. }
  1592. .single-product #page #woocommerce-wrapper div.product div.summary {
  1593. margin-bottom: var(--global--spacing-vertical);
  1594. }
  1595. .single-product #page #woocommerce-wrapper div.product div.summary span.price,
  1596. .single-product #page #woocommerce-wrapper div.product div.summary p.price {
  1597. color: var(--global--color-foreground-dark);
  1598. font-size: var(--global--font-size-xl);
  1599. line-height: var(--global--line-height-heading);
  1600. }
  1601. .single-product #page #woocommerce-wrapper div.product div.summary span.price del,
  1602. .single-product #page #woocommerce-wrapper div.product div.summary p.price del {
  1603. color: currentColor;
  1604. opacity: 0.5;
  1605. display: inline-block;
  1606. }
  1607. .single-product #page #woocommerce-wrapper div.product div.summary span.price ins,
  1608. .single-product #page #woocommerce-wrapper div.product div.summary p.price ins {
  1609. background: none;
  1610. font-weight: 700;
  1611. display: inline-block;
  1612. }
  1613. .single-product #page #woocommerce-wrapper div.product div.summary span.price .from,
  1614. .single-product #page #woocommerce-wrapper div.product div.summary p.price .from {
  1615. font-size: var(--global--font-size-xs);
  1616. color: var(--global--color-alert-warning);
  1617. }
  1618. .single-product #page #woocommerce-wrapper div.product div.summary p.stock {
  1619. font-size: var(--global--font-size-base);
  1620. }
  1621. .single-product #page #woocommerce-wrapper div.product div.summary .stock {
  1622. color: var(--global--color-primary);
  1623. }
  1624. .single-product #page #woocommerce-wrapper div.product div.summary .out-of-stock {
  1625. color: red;
  1626. }
  1627. .single-product #page #woocommerce-wrapper div.product div.summary .entry-title + .woocommerce-product-rating {
  1628. margin-top: calc(-1 * var(--global--spacing-vertical));
  1629. }
  1630. .single-product #page #woocommerce-wrapper div.product .product_meta > * {
  1631. display: block;
  1632. }
  1633. .single-product #page #woocommerce-wrapper div.product > .onsale {
  1634. right: auto;
  1635. left: -0.5em;
  1636. }
  1637. .single-product #page #woocommerce-wrapper div.product.sale div.summary .span.price ins,
  1638. .single-product #page #woocommerce-wrapper div.product.sale div.summary p.price ins {
  1639. color: var(--global--color-alert-success);
  1640. }
  1641. .single-product #page #woocommerce-wrapper div.product div.social {
  1642. margin-bottom: var(--global--spacing-vertical);
  1643. }
  1644. .single-product #page #woocommerce-wrapper div.product .up-sells > h2 {
  1645. font-size: var(--global--font-size-lg);
  1646. }
  1647. .single-product #page #woocommerce-wrapper div.product p.cart {
  1648. margin-bottom: var(--global--spacing-vertical);
  1649. }
  1650. .single-product #page #woocommerce-wrapper div.product form.cart .variations {
  1651. margin-bottom: var(--global--spacing-unit);
  1652. }
  1653. .single-product #page #woocommerce-wrapper div.product form.cart .variations td,
  1654. .single-product #page #woocommerce-wrapper div.product form.cart .variations th {
  1655. line-height: var(--global--line-height-body);
  1656. }
  1657. .single-product #page #woocommerce-wrapper div.product form.cart .variations select {
  1658. margin-right: var(--global--spacing-unit);
  1659. }
  1660. .single-product #page #woocommerce-wrapper div.product form.cart .variations td.label {
  1661. padding-right: var(--global--spacing-unit);
  1662. }
  1663. .single-product #page #woocommerce-wrapper div.product form.cart .woocommerce-variation-description p {
  1664. margin-bottom: var(--global--spacing-unit);
  1665. }
  1666. .single-product #page #woocommerce-wrapper div.product form.cart .reset_variations {
  1667. font-size: var(--global--font-size-sm);
  1668. }
  1669. .single-product #page #woocommerce-wrapper div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
  1670. padding-right: var(--global--spacing-unit);
  1671. padding-left: var(--global--spacing-unit);
  1672. }
  1673. .single-product #page #woocommerce-wrapper div.product form.cart .group_table td {
  1674. padding-bottom: var(--global--spacing-unit);
  1675. }
  1676. .single-product #page #woocommerce-wrapper div.product form.cart div.quantity,
  1677. .single-product #page #woocommerce-wrapper div.product form.cart button {
  1678. float: inherit;
  1679. display: inline-block;
  1680. vertical-align: middle;
  1681. }
  1682. .single-product #page #woocommerce-wrapper div.product form.cart div.quantity.hidden,
  1683. .single-product #page #woocommerce-wrapper div.product form.cart button.hidden {
  1684. display: none;
  1685. }
  1686. .single-product #page #woocommerce-wrapper div.product .woo_pp_cart_buttons_div {
  1687. text-align: left;
  1688. }
  1689. .single-product #page #woocommerce-wrapper div.product .woo_pp_cart_buttons_div .wcppec-checkout-buttons__button {
  1690. padding-top: 0;
  1691. }
  1692. /**
  1693. * Widget Imports
  1694. */
  1695. /**
  1696. * Cart Widget
  1697. */
  1698. body[class*="woocommerce"] #page {
  1699. /**
  1700. * Cart Widget product list
  1701. */
  1702. }
  1703. body[class*="woocommerce"] #page ul.cart_list li a:not(.remove),
  1704. body[class*="woocommerce"] #page ul.product_list_widget li a:not(.remove) {
  1705. font-family: var(--global--font-primary);
  1706. line-height: var(--global--line-height-heading);
  1707. }
  1708. body[class*="woocommerce"] #page ul.cart_list li img,
  1709. body[class*="woocommerce"] #page ul.product_list_widget li img {
  1710. margin-left: var(--global--spacing-unit);
  1711. width: calc(2 * var(--global--spacing-vertical));
  1712. }
  1713. body[class*="woocommerce"] #page ul.cart_list li dl,
  1714. body[class*="woocommerce"] #page ul.product_list_widget li dl {
  1715. border-left-color: var(--wc--table--border-color);
  1716. }
  1717. body[class*="woocommerce"] #page ul.cart_list li dl dt,
  1718. body[class*="woocommerce"] #page ul.cart_list li dl dd,
  1719. body[class*="woocommerce"] #page ul.product_list_widget li dl dt,
  1720. body[class*="woocommerce"] #page ul.product_list_widget li dl dd {
  1721. margin-bottom: var(--global--spacing-vertical);
  1722. }
  1723. body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .total {
  1724. border-top: none;
  1725. padding-top: 0;
  1726. }
  1727. body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list {
  1728. border-bottom: 1px solid var(--wc--table--border-color);
  1729. }
  1730. body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list li {
  1731. border-top: 1px solid var(--wc--table--border-color);
  1732. padding: var(--global--spacing-unit) 0 var(--global--spacing-unit) calc(2 * var(--global--spacing-horizontal));
  1733. }
  1734. body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list li a.remove {
  1735. top: var(--global--spacing-unit);
  1736. }
  1737. body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a#woo_pp_ec_button {
  1738. padding: 0;
  1739. }
  1740. /**
  1741. * Filter by Price Widget
  1742. */
  1743. body[class*="woocommerce"] #page .widget_price_filter .ui-slider .ui-slider-range,
  1744. body[class*="woocommerce"] #page .widget_price_filter .ui-slider .ui-slider-handle {
  1745. background-color: var(--global--color-primary);
  1746. }
  1747. body[class*="woocommerce"] #page .widget_price_filter .price_slider_wrapper .ui-widget-content {
  1748. background-color: var(--global--color-foreground-light);
  1749. }
  1750. /**
  1751. * Filter by Product List Widgets
  1752. */
  1753. @media only screen and (min-width: 482px) {
  1754. body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) {
  1755. display: flex;
  1756. flex-wrap: wrap;
  1757. justify-content: space-between;
  1758. }
  1759. body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) > li {
  1760. flex: 0 1 auto;
  1761. margin-bottom: var(--global--spacing-vertical);
  1762. padding: 0;
  1763. width: calc((100% / 3) - var(--global--spacing-unit));
  1764. }
  1765. body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) > li:nth-child(3n+2):last-child {
  1766. margin-left: calc(1.5 * var(--global--spacing-unit));
  1767. margin-right: auto;
  1768. }
  1769. }