@charset "UTF-8";
/*$green: #3e276b;*/
/*
Theme Name: Grillo's Pickles
Author: Coordinate
Author URI: https://www.wearecoordinate.com
Version: 1.5
*/
/**
 * Table of Contents
 *
 * 1.0 - Reset
 * 2.0 - Accessibility
 * 3.0 - Typography
 * 4.0 - Structure / Layout
 * 5.0 - Header
 * 6.0 - Sidebar
 * 7.0 - Footer
 * 8.0 - Blog
 * 9.0 - Homepage
 * 10.0 - Products
 * 11.0 - Recipes
 * 12.0 - Modules
 * 13.0 - Elements
 * 14.0 - Woocommerce Styling
 * 15.0 - Predefined CSS Rules
 * 16.0 - Grid
 */

@font-face {
    font-family: rockies;
    src: url(/wp-content/themes/grillospickles/assets/fonts/rockies.otf);
}
@font-face {
    font-family: proximanova;
    src: url('/wp-content/themes/grillospickles/assets/fonts/proximanova-bold.woff2') format('woff2'), 
    url('/wp-content/themes/grillospickles/assets/fonts/proximanova-bold.woff') format('woff'),
	url(/wp-content/themes/grillospickles/assets/fonts/proximanova-bold.otf);
    font-weight: 700;
}
@font-face {
    font-family: proximanova;
    src: url('/wp-content/themes/grillospickles/assets/fonts/proximanova-extrabold.woff2') format('woff2'), 
    url('/wp-content/themes/grillospickles/assets/fonts/proximanova-extrabold.woff') format('woff'),
	url(/wp-content/themes/grillospickles/assets/fonts/proximanova-extabold.otf);
	font-weight: 900;
}
@font-face {
    font-family: proximanova;
    src: url('/wp-content/themes/grillospickles/assets/fonts/proximanova-medium.woff2') format('woff2'), 
    url('/wp-content/themes/grillospickles/assets/fonts/proximanova-medium.woff') format('woff'),
	url(/wp-content/themes/grillospickles/assets/fonts/proximanova-medium.otf);	
}


/*--------------------------------------------------------------
# 1.0 - CSS Reset
--------------------------------------------------------------*/
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 62.5%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1.7;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  outline: 0;
}

strong {
  font-weight: 600;
}

b {
  font-weight: 700;
}

i, em {
  font-style: italic;
}

/*--------------------------------------------------------------
# 2.0 - Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# 3.0 - Typography
--------------------------------------------------------------*/
html,
body {
  font-family: futura-pt, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #231f20;
  font-size: 24px;
  font-weight: 600;
  line-height: 200%;
  background: #fefefe;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body.side-header {
  padding-left: 270px;
}

a {
  color: #00843d;
  padding-bottom: 0.05em;
  -webkit-transition: all 250ms ease-out;
  -moz-transition: all 250ms ease-out;
  -o-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

a:hover {
  color: #d5c146;
}

p a {
  color: #00843d;
}

p a:hover {
  color: #000000;
}

p, blockquote, table, pre, code, dl {
  margin: 0 0 1.5em;
}

blockquote {
  border-left: 3px solid #eaeaea;
  padding: 5px 20px;
}

blockquote p {
  font-size: 135%;
  margin: 0;
}

ul, ol {
  margin: 0 20px 20px 20px;
}

ul.styled-list {
  list-style: none;
}

ul.styled-list li i {
  margin-right: 4px;
}

li {
  padding: 3px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: futura-pt, "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 30px;
}

p.lead {
  font-size: 180%;
  font-weight: 300;
  line-height: 1.5;
  color: #aeaeae;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  max-width: 100%;
}

pre, code {
  font-family: monospace;
}

pre {
  font-size: 13px;
  clear: both;
  display: block;
  margin: 2em 0;
  padding: 5px 10px;
  background: #f9f9f9;
  border: 1px solid #f1f1f1;
  margin-bottom: 18px;
}

code {
  padding: 3px 5px;
  background: #f9f9f9;
  border: 1px solid #eaeaea;
  font-size: 13px;
}

table {
  width: 100%;
  margin: 0 0 2em;
}

table caption {
  text-align: center;
  margin: 0 0 0.5em;
}

table thead {
  background: #f1f1f1;
}

table thead th,
table thead td {
  font-weight: 600;
}

table td, table th {
  border-bottom: 1px solid #eaeaea;
  padding: 0.5em 1em;
}

table tr:nth-child(even) {
  background: #f9f9f9;
}

.heading {
  text-align: center;
}
.heading:after {
  content: "";
  display: block;
  width: 200px;
  height: 2px;
  margin: 10px auto;
  background: #00843d;
}

.cheese {
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
}

.green {
  color: #00843d;
}

.yellow {
  color: #d5c146;
}

.up {
  text-transform: uppercase;
}

.heavy, .heavy a {
  font-weight: 800 !important;
}

.normal {
  font-weight: normal;
}

.align-center {
  text-align: center;
}

.padding-10 {
  padding: 10%;
}

.padding-side-10 {
  padding: 0 10%;
}

.padding-side-20 {
  padding: 0 20%;
}

.padding-side-30 {
  padding: 0 30%;
}

.margin-side-5 {
  margin: 0 5px !important;
}

@media screen and (max-width: 768px) {
  ul, ol {
    margin: 0 0 20px 40px;
  }
}
/*--------------------------------------------------------------
# 4.0 - Structure / Layout
--------------------------------------------------------------*/
#content {
  overflow: auto;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  overflow: auto;
  clear: both;
  padding: 0 30px;
}

.content {
  width: 72%;
  float: left;
  padding: 3em 0;
}

.content-fullwidth {
  width: 100%;
}

.sidebar {
  width: 28%;
  float: left;
  padding: 3em 0 3em 3em;
}
.sidebar.sidebar-left {
  padding-left: 0;
  padding-right: 3em;
}

.section {
  padding: 60px 0;
}

@media screen and (max-width: 1100px) {
  #content {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
/*--------------------------------------------------------------
# 5.0 - Header
--------------------------------------------------------------*/
#header {
  background-color: #fff;
}
#header .container {
  overflow: visible;
  padding-top: 15px;
}

.logo {
  max-width: 300px;
  margin: 0 auto;
}
.logo img {
  position: relative;
  z-index: 1000;
  margin: 0 auto 10px;
  max-width: 80%;
}

@media screen and (max-width: 600px) {
  .logo img {
    max-width: 80%;
  }
}
@media screen and (max-width: 1100px) {
  #header {
    position: fixed;
    top: 0;
    padding-bottom: 0.5rem;
    width: 100%;
    z-index: 998;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
  }
}
/**
 * Main Menu
 */
.navigation {
  background: #fff;
  position: relative;
  z-index: 999;
  -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.2);
  /* Menu & Drop Down Styling */
}
.navigation.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.navigation.sticky #main-menu-left, .navigation.sticky #main-menu-right {
  margin-top: 18px;
}
.navigation.sticky .pickle-guy {
  margin-top: -20px;
}
.navigation .container {
  height: 120px;
  display: flex;
  overflow: visible;
}
.navigation .menu-separator {
  flex: 0 10%;
}
.navigation .pickle-guy {
  width: 170px;
  height: 170px;
  margin-top: -30px;
  position: relative;
  transition: margin 500ms;
}
.navigation .pickle-guy img {
  max-width: 120px;
  position: absolute;
  bottom: 30px;
  right: calc(50% - 60px);
}
.navigation .pickle-guy img.static {
  position: absolute;
  z-index: 2;
}
.navigation .pickle-guy img.static:hover {
  opacity: 0;
}
.navigation li.green a {
  color: #00843d;
}
.navigation li.green.cheese a {
  font-size: 18px;
}
.navigation li.current-menu-item a {
  color: #00843d;
  font-size: 18px;
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
}
.navigation #main-menu-left {
  float: left;
  flex: 0 45%;
  padding-right: 80px;
  margin-top: -20px;
  transition: margin 500ms;
}
.navigation #main-menu-right {
  float: right;
  flex: 0 45%;
  padding-left: 80px;
  margin-top: -20px;
  transition: margin 500ms;
}
@media (max-width: 1220px) {
  .navigation #main-menu-left,
.navigation #main-menu-right {
    padding-left: 0;
    padding-right: 0;
  }
}
.navigation ul {
  height: 80px;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.navigation ul li {
  position: relative;
}
.navigation ul li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  color: #000;
  letter-spacing: 1px;
}
.navigation ul li a:hover {
  color: #00843d;
}
.navigation ul li:last-child {
  display: none;
}
.navigation ul li ul {
  display: block;
  display: none;
  height: auto;
  position: absolute;
  top: 100%;
  width: 240px;
  padding: 20px;
  background: #fff;
  left: -20px;
  z-index: 999;
}
.navigation ul li ul.visible {
  display: block;
}
.navigation ul li ul li {
  padding: 0;
  line-height: 1.2;
}
.navigation ul li ul li.nav-item-separator {
  display: none;
}
.navigation ul li ul li a {
  font-weight: 600;
  font-size: 90%;
  color: #00843d;
}
.navigation ul li ul li a:hover {
  color: #000;
}
.navigation ul .nav-item-separator {
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 1100px) {
  .navigation {
    display: none;
  }
}
.admin-bar .navigation.sticky {
  top: 32px;
}

#main-menu {
  list-style: none;
}

#main-menu li {
  margin-left: 20px;
  display: inline-block;
}

#main-menu li a {
  color: #fff;
}

/**
 * User Menu
 */
#top-nav {
  position: absolute;
  top: 0;
  right: 0;
  list-style: none;
}

#user-menu li {
  display: inline-block;
  margin-left: 10px;
}

/**
 * Mobile Menu
 */
.mobile-menu-toggle {
  display: none;
  float: left;
  margin-top: 20px;
}

@media (max-width: 1100px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.toggle-button {
  width: 30px;
  height: 30px;
  transition: 0.25s;
  position: relative;
  display: block;
  z-index: 999;
}

.toggle-button:hover {
  cursor: pointer;
}

.toggle-button .menu-bar {
  position: absolute;
  border-radius: 2px;
  width: 100%;
  transition: 0.5s;
}

.toggle-button .menu-bar-top {
  border-top: 3px solid #00843d;
  top: 0;
}

.toggle-button .menu-bar-middle {
  height: 3px;
  background-color: #00843d;
  margin-bottom: 12px;
  top: 12px;
}

.toggle-button .menu-bar-bottom {
  border-bottom: 3px solid #00843d;
  top: 24px;
}

.button-open .menu-bar-top {
  transform: rotate(45deg);
  transition: 0.4s;
  width: 100%;
}

.button-open .menu-bar-middle {
  transform: translate(230px);
  transition: 0.1s ease-in;
  opacity: 0;
}

.button-open .menu-bar-bottom {
  transform: rotate(-45deg);
  transition: 0.4s;
  width: 100%;
}

.toggle-button:hover .menu-bar-top,
.toggle-button:hover .menu-bar-middle,
.toggle-button:hover .menu-bar-bottom {
  border-color: #999;
  background-color: #999;
}

#mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 999;
  display: none;
}
#mobile-nav .close-menu {
  display: block;
  width: 40px;
  height: 40px;
  position: fixed;
  cursor: pointer;
  top: 26px;
  left: 16px;
  transform: translateY(20px);
}
#mobile-nav .close-menu:before, #mobile-nav .close-menu:after {
  display: block;
  content: "";
  width: 40px;
  height: 3px;
  background: #00843d;
  transform: rotate(45deg);
}
#mobile-nav .close-menu:after {
  transform: rotate(-45deg) translateY(-3px);
}
#mobile-nav .admin-bar .close-menu {
  top: calc(67px + 32px);
}
#mobile-nav img {
  max-width: 180px;
  margin: 20px auto;
}
#mobile-nav.active {
  display: flex;
  flex-direction: column;
}
#mobile-nav ul.menu {
  margin: 0;
}
#mobile-nav ul.menu li {
  display: block;
  text-align: center;
}
#mobile-nav ul.menu li a {
  text-transform: uppercase;
}

/**
 * Hero
 */
.hero {
  width: 100%;
  overflow: visible;
  background-size: cover !important;
  background-position: center center;
  border-bottom: 5px solid #00843d;
}
.hero .container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1800px;
  padding: 0;
}
.hero .hero-left, .hero .hero-right {
  flex: 0 0 50%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 650px;
}
.hero .hero-left {
  margin-left: 1px;
}
.hero .hero-left img {
  display: none;
}
.hero .hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -2px;
}
.hero .hero-text {
  max-width: 720px;
  padding: 1em;
}
.hero .hero-text h3 {
  color: #00843d;
  text-transform: uppercase;
  font-size: 42px;
  line-height: 1;
}
.hero .hero-text h3 span {
  line-height: 1;
  font-size: 30px;
}
.hero .hero-text p {
  font-size: 24px;
}
.hero .hero-text a + a {
  padding-left: 1rem;
}

.main-promo {
  max-width: 1060px;
  position: relative;
  margin-bottom: -100px;
  background: #00843d;
}
.main-promo p,
.main-promo h2 {
  color: #fff;
}
.main-promo .promo-text {
  padding: 40px 40px 40px 0;
}

@media screen and (max-width: 1280px) {
  .hero .container .hero-left, .hero .container .hero-right {
    background-size: contain;
  }
  .hero .container .hero-right {
    background-image: none !important;
  }

  .swiper-button-prev, .swiper-button-next {
    display: none !important;
  }
}
@media screen and (min-width: 801px) and (max-width: 1121px) {
  .hero .hero-text a.btn + a.btn {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 800px) {
  .hero .container {
    flex-wrap: wrap;
  }
  .hero .container .hero-left, .hero .container .hero-right {
    flex: 0 0 100%;
    background-image: none !important;
    min-height: auto;
  }
  .hero .container .hero-left img {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .hero .container {
    min-height: 250px;
  }

  .hero .hero-text {
    padding: 1em;
    background-color: transparent !important;
  }
  .hero .hero-text h3 {
    font-size: 34px;
  }
  .hero .hero-text h3 span {
    font-size: 21px;
  }
  .hero .hero-text p {
    font-size: 20px;
  }
  .hero .hero-text a.btn {
    clear: both;
    margin: 0 0 0.5rem 0;
  }
  .hero .hero-text a + a {
    text-align: right;
    margin: 0 0 0.5rem 0;
  }
}
/*--------------------------------------------------------------
# 6.0 - Sidebar
--------------------------------------------------------------*/
h3.widget-title {
  margin-bottom: 15px;
}
/*
h3.widget-title:after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background-color: #00843d;
}
*/

.widget ul {
  list-style: none;
  margin: 0 0 25px;
}

/*--------------------------------------------------------------
# 7.0 - Footer
--------------------------------------------------------------*/
#footer {
  background: #fff;
  padding: 5em 0 3em;
  color: #000;
  font-size: 18px;
}
#footer .top-footer {
  margin-bottom: 45px;
}
#footer .widget ul li {
  padding: 0;
}
#footer .widget h3 {
  font-size: 20px;
  color: #d5c146;
  text-transform: uppercase;
}

#footer i {
  font-size: 1.5rem;
}

#footer i + i {
  margin-left: 0.25rem;
}

#footer ul {
  list-style: none;
}

#footer a {
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

#footer a:hover {
	color: #00843d;
}

#footer-menu-4 {
  float: right;
}
#footer-menu-4 li {
  display: inline-block;
  margin-left: 15px;
}

.bottom-footer {
  padding: 20px 0 0;
  border-top: 1px solid #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

@media screen and (max-width: 768px) {
  #footer {
    padding-top: 0;
  }

  #footer .top-footer {
    text-align: center;
  }

  #footer .top-footer .col.two {
    margin: 0;
  }

  #footer .top-footer .col.two:first-child {
    width: 100%;
  }

  #footer .top-footer .col.two:first-child img {
    max-width: 50%;
    margin: 0 auto;
  }
}
/*--------------------------------------------------------------
# 8.0 - Blog
--------------------------------------------------------------*/
/**
 * Articles
 */
body.blog .entry-content,
body.single-post .entry-content {
  padding: 0 30px;
}

/*--------------------------------------------------------------
# 9.0 - Homepage
--------------------------------------------------------------*/
.section-tagline {
  padding: 30px 0 0 0;
  font-size: 90px;
  color: #00843d;
  text-align: center;
}
.section-tagline span {
  display: block;
  line-height: 1.2;
}

@media screen and (max-width: 910px) {
  .section-tagline {
    font-size: 60px;
  }
}
@media screen and (max-width: 610px) {
  .section-tagline {
    font-size: 32px;
  }
}
.section-statements {
  text-align: center;
  padding-bottom: 0;
}
.section-statements .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.section-statements img {
  max-width: 70%;
  margin: 0 auto;
}
.section-statements span {
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
  color: #00843d;
  font-size: 28px;
}
.section-statements p {
  color: #00843d;
  font-size: 0.8rem;
  padding: 0 10px;
}

@media screen and (max-width: 1000px) {
  .section-statements .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .section-statements span {
    font-size: 18px;
  }
}
/**
 * Featured Products
 */
.featured-products .product-details {
  opacity: 0;
  transition: all 0.2s ease-in;
  transform: translateY(-15px);
}
.featured-products .product-details.visible {
  opacity: 1;
  transform: translateY(0px);
}

@media screen and (max-width: 900px) {
  .featured-products .product-details {
    padding-top: 20px;
    opacity: 1;
  }
}
/*
 * Travis Module
 */
.travis-module {
  display: flex;
  flex-wrap: wrap;
  background-color: #00843d;
}
.travis-module .travis-photo {
  flex: 0 0 50%;
}
.travis-module .travis-photo .fade-wrapper {
  position: relative;
  transform: rotate(-2deg);
  margin: 2rem auto 1rem;
  width: 80%;
  max-width: 600px;
  padding: 20px 20px 12%;
  background: #ffffff;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.travis-module .travis-photo .fade-wrapper .fade {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 12%;
  background: #000000;
  opacity: 1;
  transition: opacity 1.6s ease-out;
}
.travis-module .travis-photo .fade-wrapper .fade.show {
  opacity: 0;
}
.travis-module .travis-copy {
  color: #fff;
  font-size: 1rem;
  flex: 0 0 50%;
  margin-bottom: 2rem;
}
.travis-module .travis-copy p {
  padding: 3rem 2rem 1rem 2rem;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  .travis-module .travis-copy p {
    padding: 1rem;
  }
}
@media screen and (max-width: 1100px) {
  .travis-module {
    position: relative;
  }
  .travis-module .travis-photo {
    min-height: 400px;
    flex: 0 0 100%;
  }
  .travis-module .travis-copy {
    flex: 0 0 100%;
  }
  .travis-module .travis-copy p {
    font-size: 0.9rem;
    padding: 1rem 1rem 0 1rem;
    font-weight: normal;
  }
}
/*
 * Brand Reviews
 */
.section-reviews {
  padding-bottom: 0;
  text-align: center;
}

.lSSlideOuter .lSPager.lSpg > li.active a, .lSSlideOuter .lSPager.lSpg > li:hover a {
  background-color: #00843d !important;
}

.reviews-module li {
  padding: 0;
}

/*--------------------------------------------------------------
# 10.0 - Products
--------------------------------------------------------------*/
.page-template-archive-food_product h2.grid-header:first-child:before {
  content: "World's Best ";
}

.product-grid {
  max-width: 1600px;
}
.product-grid .column {
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
}
.product-grid .column .product-grid-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.product-grid .column .product-grid-overlay .product-grid-overlay-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.product-grid .column .product-grid-overlay .product-grid-overlay-content span {
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
  display: block;
  padding: 4rem 0 1rem 0;
  font-size: 42px;
  color: #00843d;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.product-grid .column .product-grid-overlay .product-grid-overlay-content a.btn {
  margin-bottom: 1rem;
}
.product-grid .column:hover .product-grid-overlay {
  display: block;
}
.product-grid + h2 {
  padding-top: 300px;
}

.product-details {
  margin-top: 10px;
  font-size: 28px;
  text-align: center;
  text-transform: uppercase;
}
.product-details .size {
  font-weight: 600;
  color: #d5c146;
}
.product-details h3.product-name {
  font-size: 30px;
  font-weight: bold;
  font-family: futura-pt-bold;
  color: #00843d;
}

@media screen and (max-width: 1200px) {
  .product-grid .column .product-grid-overlay .product-grid-overlay-content span {
    font-size: 30px;
    padding: 3rem 0 0.5rem 0;
  }
  .product-grid .column .product-grid-overlay .product-grid-overlay-content a.btn {
    margin-bottom: 0.5rem;
  }
  .product-grid .column .product-grid-overlay .product-grid-overlay-content a.btn.green {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 900px) {
  .product-grid .column .product-grid-overlay {
    display: block;
    position: relative;
  }
  .product-grid .column .product-grid-overlay .product-grid-overlay-content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }
  .product-grid .column .product-grid-overlay .product-grid-overlay-content span {
    padding: 0 0 0.5rem 0;
  }
}
@media screen and (min-width: 768px) {
  #pickle-vinegar-drink {
    margin-left: 16.666%;
  }
}
/**
 * Single Product Page
 */
.single-product-hero {
  background: #00843d;
  padding: 80px 0 30px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border-bottom: 70px solid #006341;
}
.single-product-hero .container {
  overflow: visible;
}
.single-product-hero h1 {
  color: #fff;
}
.single-product-hero .col:first-child {
  position: relative;
  bottom: -100px;
}

.product-variation {
  overflow: auto;
  margin: 4em 0;
}

.product-heading {
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.product-heading h1 {
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
  font-size: 39px;
  line-height: 1;
  margin-bottom: 0;
}
.product-heading span {
  line-height: 1;
  margin-bottom: 1rem;
}

.product-buttons a.btn {
  float: left;
}
.product-buttons a.btn + a.btn {
  margin-left: 1rem;
}

@media screen and (min-width: 900px) and (max-width: 1058px) {
  .product-buttons a.btn {
    display: block;
    margin-right: 1rem;
  }
  .product-buttons a.btn + a.btn {
    margin: 1rem 0 0 0;
  }
}
@media screen and (max-width: 521px) {
  .product-buttons a.btn {
    display: block;
    margin-right: 1rem;
  }
  .product-buttons a.btn + a.btn {
    margin: 1rem 0 0 0;
  }
}
/*
.product-variation-information {
    width: 56%;
}

.product-variation-gallery {
	width: 40%;
}

.product-variation:nth-child(odd) .product-variation-information,
.product-variation:nth-child(even) .product-variation-gallery {
    float: left;
}

.product-variation:nth-child(even) .product-variation-information,
.product-variation:nth-child(odd) .product-variation-gallery {
    float: right;
}

.product-variation:first-child hr { display: none; }

.product-variation hr {
	width: 60%;
    height: 3px;
    background-color: #ededed;
    border: none;
	margin: 0 auto 4rem;
}
*/
.featherlight-content {
  padding: 25px 25px 0 !important;
}

@media only screen and (max-width: 900px) {
  .product-variation-information.col.six,
.product-variation-gallery.col.six {
    clear: both;
    width: 100%;
    float: none;
    margin: 0;
  }

  .product-variation-gallery.col.six {
    margin-bottom: 1rem;
  }

  .single-product-hero {
    padding-top: 40px;
    text-align: center;
  }

  .single-product-hero img {
    max-width: 50%;
    margin: 0 auto;
  }

  .single-product-hero .col.six:first-child {
    bottom: auto;
  }

  .single-product-hero .col.six:first-child > div {
    position: relative !important;
    top: auto !important;
  }

  .single-product-hero .col.six:first-child img {
    display: none;
  }

  .single-product-hero .col.six {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  .single-product-hero img {
    max-width: 100%;
  }

  .product-variation {
    margin: 2rem 0;
  }

  .product-variation hr {
    margin-bottom: 0;
  }

  .product-heading span {
    font-size: 1rem;
  }

  .product-heading h2 {
    font-size: 42px;
  }

  .product-variation-information {
    font-size: 20px;
  }
}
.product-ingredient-images {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product-ingredient-images .product-single-ingredient {
  text-align: center;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 14%;
  -ms-flex: 0 1 14%;
  flex: 0 1 14%;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  line-height: 1.2;
  margin-right: 10px;
  margin-bottom: 1rem;
}
.product-ingredient-images .product-single-ingredient img {
  max-width: 100%;
  margin: 0 auto;
}
.product-ingredient-images .product-single-ingredient span {
  color: #00843d;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}

@media screen and (min-width: 900px) and (max-width: 1190px) {
  .product-ingredient-images {
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
  .product-ingredient-images .product-single-ingredient {
    -webkit-flex: 0 1 25%;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
  }
  .product-ingredient-images .product-single-ingredient span {
    font-size: 15px;
  }
}
@media screen and (max-width: 581px) {
  .product-ingredient-images {
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
  }
  .product-ingredient-images .product-single-ingredient {
    -webkit-flex: 0 1 25%;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
  }
  .product-ingredient-images .product-single-ingredient span {
    font-size: 15px;
  }
}
/*--------------------------------------------------------------
# 11.0 - Recipes
--------------------------------------------------------------*/
body.single-recipe h1 {
  font-size: 30px;
  color: #00843d;
  text-transform: uppercase;
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
  margin-bottom: 0;
}
body.single-recipe #content {
  padding-top: 100px;
}
body.single-recipe #primary img.polaroid {
  background: #ffffff;
  margin: 10px auto;
  width: 90%;
  padding: 20px 20px 60px;
  text-align: center;
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -webkit-transition: -webkit-transform 0.15s linear;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
body.single-recipe #primary span.recipe-feature {
  float: left;
  max-width: 80px;
}
body.single-recipe span.recipe-group-title {
  display: block;
  margin-top: 0.5rem;
  text-transform: uppercase;
}
body.single-recipe .heateor_sss_sharing_title {
  display: inline-block;
  margin-right: 0.5rem;
}
body.single-recipe .heateor_sss_sharing_ul {
  display: inline-block;
  vertical-align: middle;
}
body.single-recipe .heateor_sss_sharing_container {
  margin-bottom: 0.5rem;
}

.recipe-grid.grid .column {
  justify-content: flex-start !important;
  flex: 0 0 33.3333333%;
}
.recipe-grid.grid .column h5 {
  font-size: 22px;
  margin-bottom: 0;
  text-align: center;
}
.recipe-grid .recipe-thumb {
  max-width: 100%;
  margin: 0 auto 15px auto;
}

.polaroids-grid a {
  background: #ffffff;
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  -webkit-transform: rotate(-2deg);
  -moz-transform: rotate(-2deg);
  -webkit-transition: -webkit-transform 0.15s linear;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
.polaroids-grid a:hover {
  position: relative;
  z-index: 5;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}
.polaroids-grid .column:nth-child(even) a {
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
}
.polaroids-grid .column:nth-child(3n) a {
  -webkit-transform: none;
  -moz-transform: none;
  position: relative;
  top: -5px;
}
.polaroids-grid .column:nth-child(5n) a {
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  position: relative;
  right: 5px;
}
.polaroids-grid .column:nth-child(8n) a {
  position: relative;
  top: 8px;
  right: 5px;
}
.polaroids-grid .column:nth-child(11n) a {
  position: relative;
  top: 3px;
  left: -5px;
}

.recipe-filter {
  display: inline-block;
}
.recipe-filter + .recipe-filter {
  margin-left: 1rem;
}

@media screen and (max-width: 900px) {
  .polaroids-grid.grid .column {
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 1100px) {
  body.single-recipe #content {
    padding-top: 120px;
  }
}
/*--------------------------------------------------------------
# 12.0 - Modules
--------------------------------------------------------------*/
.page-modules {
  overflow: auto;
  display: flex;
  align-items: stretch;
  min-height: 320px;
}
.page-modules .module {
  position: relative;
  flex: 0 0 50%;
  padding: 3em 2em;
  float: left;
  background-size: cover;
  background-position: center center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.page-modules .module .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}
.page-modules .module .module-content {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1240px) {
  .page-modules .module {
    padding: 2em 1em;
  }
}
@media only screen and (max-width: 768px) {
  .page-modules {
    flex-wrap: wrap;
  }

  .page-modules .module {
    flex: 0 0 100%;
  }
}
/**
 * Feautured Recipe Module
 */
.module a .featured-recipe {
  background: rgba(0, 132, 61, 0.8);
  color: #fff;
  padding: 1.5em 2.5em;
  border-radius: 20px;
}
.module a .featured-recipe span {
  text-transform: uppercase;
  font-weight: bold;
  color: #d5c146;
  display: block;
}

/*
 * Instagram Module
 */
.instagram-module {
  text-align: center;
	padding: 1rem 0 2rem 0;
}

/*--------------------------------------------------------------
# 13.0 - Elements
--------------------------------------------------------------*/
.btn {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 28px;
  background-color: #d5c146;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
}
.btn:hover {
  color: #00843d;
}
.btn.btn-large {
  padding: 12px 200px;
  font-size: 24px;
}
.btn.btn-green {
  background-color: #00843d;
}
.btn.btn-green:hover {
  color: #d5c146;
}
.btn.btn-white {
  background-color: #ffffff;
  color: #00843d;
  border: 1px solid #00843d;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.btn.btn-white:hover {
  color: #d5c146;
}
.btn.btn-thick {
  border-width: 3px;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-slide.product-slide {
  width: 80% !important;
  margin: 0 10% !important;
}

.gallery-top {
  height: 400px;
  width: 100%;
}

.gallery-thumbs {
  height: 150px;
  box-sizing: border-box;
  padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

@media screen and (max-width: 900px) {
  .btn.btn-large {
    padding: 12px 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .gallery-top {
    height: 220px;
  }
}
/**
 * Modules
 */
.newsletter-form {
  box-shadow: 0px;
  width: 90%;
  margin: 0 auto 30px;
}
.newsletter-form input[type=text],
.newsletter-form input[type=submit] {
  height: 50px;
  line-height: 50px;
  border: 0;
  border-radius: 6px;
  text-transform: uppercase;
  font-family: inherit;
  padding-left: 14px;
  padding-right: 14px;
  font-size: 75%;
  letter-spacing: 2px;
}
.newsletter-form input[type=text] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: calc(90% - 140px);
}
.newsletter-form input[type=submit] {
  background: #00843d;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #fff;
  width: 140px;
}

/**
 * Grids
 */
.grid-header {
  text-align: center;
  text-transform: uppercase;
  color: #00843d;
  margin-top: -200px;
  padding-top: 200px;
}

.grid {
  display: flex;
  flex-wrap: wrap;
}
.grid .column {
  flex: 0 0 33.333333%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 15px;
  padding: 15px;
}
.grid.grid-2-col .column {
  flex: 0 0 50%;
}
.grid.grid-4-col .column {
  flex: 0 0 25%;
}

@media only screen and (max-width: 900px) {
  .grid.grid-4-col .column {
    flex: 0 0 50%;
  }
}
@media only screen and (max-width: 768px) {
  .grid .column {
    flex: 0 0 50%;
  }

  body.home .grid .column {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 599px) {
  .grid .column {
    flex: 0 0 100% !important;
  }
}
/**
 * Interior Hero
 */
#interior-hero {
  overflow: visible;
  background-size: cover !important;
  background-position: center center;
  margin-bottom: 1rem;
}
#interior-hero .container {
  position: relative;
  min-height: 400px;
}
#interior-hero .hero-text {
  position: absolute;
  bottom: 10px;
}
#interior-hero .hero-text h1 {
  font-size: 80px;
  color: #ffffff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

h1.page-title {
  padding-top: 2rem;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 900px) {
  #interior-hero .container {
    min-height: 250px;
  }
}
@media screen and (max-width: 600px) {
  h1.page-title {
    font-size: 25px;
  }
}
/*
 * Gucci
 */
.gucci {
  background-repeat: repeat;
}

/*
 * Timeline
 */
.style-center .wptl-embed > iframe, .style-center .wptl-embed > embed, .style-center .wptl-embed > source, .style-center .wptl-embed > object {
  max-height: 360px;
}

/*
 * Press Grid
 */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
  margin: 40px 0;
}

.press-grid .press-article {
  position: relative;
  border: 5px solid #00843d;
  min-height: 400px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
}
.press-grid .press-article img {
  max-width: 300px;
  margin: 0 auto;
}
.press-grid .press-article span {
  padding: 0.5rem;
  text-align: center;
  font-size: 24px;
  line-height: 1.2;
  color: #00843d !important;
}
.press-grid .press-article span.press-date {
  font-size: 18px;
  margin: 0 auto;
}
.press-grid .press-article p {
  font-size: 20px;
  padding: 0.5rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: #000000;
}
.press-grid .press-article p:hover {
  color: #000000;
}

@media screen and (max-width: 1000px) {
  .press-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 640px) {
  .press-grid {
    grid-template-columns: 1fr;
  }
  .press-grid .press-article span {
    background-color: transparent;
    font-size: 20px;
    padding: 1rem;
  }
}
/*
 * Gravity Forms
 */
.gform_button {
  display: inline-block;
  margin: 0 auto;
  padding: 12px 28px;
  background-color: #00843d;
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

#gform_wrapper_3 {
  display: block !important;
}
#gform_wrapper_3 * {
  display: block !important;
}

/*
 * Where To Buy
 */
body.page-id-154 #primary h1.page-title {
  padding-top: 1rem;
  margin-bottom: 0;
}
body.page-id-154 #primary h4 {
  margin-bottom: 0;
}
body.page-id-154 #primary p {
  margin-bottom: 0.5rem;
}
body.page-id-154 #primary .wp-block-columns {
  margin-bottom: 0;
}

/*
 * Grillo's Delivered
 */
body.page-id-431 #primary h1.page-title {
  font-size: 40px;
}
body.page-id-431 #primary .entry-content > .wp-block-columns {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  body.page-id-431 #primary .entry-content > .wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
  }
  body.page-id-431 #primary h1.page-title {
    font-size: 30px;
  }
}
/*
 * FAQ
 */
article.page.post-266 {
  margin-top: 1rem;
}
article.page.post-266 .entry-content * {
  display: none;
}
article.page.post-266 .entry-content a {
  display: inline;
}
article.page.post-266 .entry-content h2 {
  display: block;
  cursor: pointer;
  font-size: 30px;
}
article.page.post-266 .entry-content h2:after {
  color: #00843d;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "";
  margin-left: 0.25rem;
}
article.page.post-266 .entry-content h2.open:after {
  content: "";
}

/*
 * Our story
 */
article.page.post-126 .entry-content img {
  display: none;
}

/*
 * Fresh Club
 */
div.fresh-club #main {
  display: flex;
  margin-bottom: 5rem;
}
div.fresh-club #main .fresh-half {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
}
div.fresh-club #main .fresh-half:nth-child(1) {
  padding: 3rem 10px;
}
div.fresh-club #main .fresh-half:nth-child(2) {
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 600px) {
	div.fresh-club #main {
		display: block;
	}
	div.fresh-club #main .fresh-half {
		width: 100%;
	}
	div.fresh-club #main .fresh-half:nth-child(2) {
		min-height: 300px;
	}
}

/*
 * Sticky Bar
 */
.sticky-container {
	max-width: 1200px;
	margin: 0 auto;
}

.sticky-container p {
	margin: 0;
}

.sticky-container br {
	display: none;
}

.col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: 100%;
	text-align: center;
}

.sticky-container input::placeholder {
	color: #666;
	opacity: 1;
}

.sticky-container input:-ms-input-placeholder {
	color: #666;
	opacity: 1;
}

@media screen and (max-width: 1100px) {
	.col-auto:nth-child(1) {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# 14.0 - WooCommerce Styling
--------------------------------------------------------------*/
body.single-product h1 {
  text-transform: uppercase;
  color: #00843d;
  font-size: 32px;
}
body.single-product #content {
  padding-top: 30px;
}

@media screen and (max-width: 1100px) {
  body.single-product #content {
    padding-top: 120px;
  }
}
img.stripe-icon {
  display: inline-block;
}

.product-image-slider {
  float: left;
  width: 50%;
  padding-right: 2em;
  margin-bottom: 50px;
}

.woocommerce #primary img, .woocommerce-page #primary img {
  height: 100%;
  margin: 0 auto;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #d5c146;
}

.woocommerce div.product form.cart .button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  clear: both;
  background: #00843d;
  color: #ffffff;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 10px;
  letter-spacing: 0.03em;
  font-family: "CCCheeseAndCrackers W05 Regula", sans-serif;
  font-weight: normal;
}
.woocommerce div.product form.cart .button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
  background-color: #00843d;
  color: #d5c146;
}

@media screen and (max-width: 1200px) {
  .woocommerce div.product form.cart .button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    font-size: 0.6rem;
  }
}
table.variations td.label,
table.variations td.value {
  display: block;
  padding: 0;
}

.woocommerce .quantity .qty,
table.variations select {
  border: 2px solid #00843d;
  line-height: 50px;
  height: 50px;
  font-family: inherit;
  margin-bottom: 30px;
  width: 60px;
  font-size: 24px;
}

table.variations select {
  margin-bottom: 0;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background-color: #00843d;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
  background-color: #00843d;
  color: #d5c146;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
  color: #ffffff;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 200px;
  padding: 10px;
  margin: 6px 20px 0 0;
  font-size: 18px;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  font-size: 18px;
  padding: 10px;
}

.woocommerce span.onsale {
  min-width: 3.9em;
  padding: 0.25em;
  background-color: #00843d;
}

.single-product .onsale {
  display: none;
}

@media screen and (max-width: 768px) {
  .product-image-slider {
    float: left;
    width: 100%;
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
body.post-type-archive-product .woocommerce-products-header {
  display: none;
}
body.post-type-archive-product .woocommerce-products-header + p.woocommerce-info {
  display: none;
}

/*--------------------------------------------------------------
# 15.0 - Predefined CSS Rules
--------------------------------------------------------------*/
.text-center {
  text-align: center;
}

@media screen and (max-width: 599px) {
  .wp-block-column {
    flex-basis: 50% !important;
  }
}
/*--------------------------------------------------------------
# 16.0 - Grid
--------------------------------------------------------------*/
.row {
  display: block;
  overflow: auto;
  clear: both;
}

.col {
  display: block;
  float: left;
  margin: 0 0 1% 4%;
}

.col:first-child {
  margin-left: 0;
}

/* all browsers except IE6 and lower */
.twelve {
  width: 100%;
}

.eight {
  width: 65.33%;
}

.seven {
  width: 56.66%;
}

.six {
  width: 48%;
}

.five {
  width: 39.33%;
}

.four {
  width: 30.66%;
}

.three {
  width: 22%;
}

.two {
  width: 13.33%;
}

.row .one-fifth {
  width: 16.8%;
}

.row .four-fifths {
  width: 79.2%;
}

@media only screen and (max-width: 768px) {
  /* Grid */
  .eight,
.seven,
.six,
.five,
.four,
.three,
.two {
    width: 48%;
  }

  /* 5 Columns */
  .one-fifth {
    width: 100%;
  }

  .four-fifths {
    width: 100%;
  }
}
@media only screen and (max-width: 560px) {
  .col {
    margin: 0 0 1% 0%;
  }

  /* Grid */
  .twelve,
.eight,
.seven,
.six,
.five,
.four,
.three,
.two {
    width: 100%;
  }

  /* 5 Columns */
  .one-fifth {
    width: 100%;
  }

  .four-fifths {
    width: 100%;
  }
}
