style-woocommerce.css 79 KB

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