style-woocommerce.css 72 KB

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