/* copied over from bootstrap-max */
/* GENERALLY USEFUL GLOBAL RULES */
body {
  font-size: 20px;
}
@media (min-width: 576px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 13px;
  }
}
@media (min-width: 1200px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1920px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 576px) {
  h1 {
    font-size: 3.8em;
  }
  h2 {
    font-size: 3.7em;
  }
  h3 {
    font-size: 1.7em;
  }
  h4 {
    font-size: 1.3em;
  }
  h5 {
    font-size: 1.2em;
  }
  h6 {
    font-size: 1em;
  }
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 2.5rem;
  }
}
h1:first-of-type {
  margin-top: 3em;
  margin-bottom: 1em;
}
@media (max-width: 575.98px) {
  h1:first-of-type {
    margin-top: 4em;
    text-align: left;
  }
}
h1:first-of-type.underlined {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1em;
}
@media (max-width: 767.98px) {
  .main-page-wrapper > h1 {
    margin-left: 30px;
    margin-right: 30px;
  }
  .main-page-wrapper > p {
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
  }
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .container .container, .container .col-sm-8 {
    /* col covers hero */
    padding-left: 0;
    padding-right: 0;
  }
  .theme-menu-wrapper .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gold-header {
  color: var(--gold);
  text-transform: uppercase;
}
.container.w75 {
  /* @include media-breakpoint-up(md) {
   width: calc(768px * .833);
   }
   @include media-breakpoint-up(lg) {
   width: calc(992px * .833);
   } */
}
@media (max-width: 767.98px) {
  .container.w75 {
    margin-left: 30px;
    margin-right: 30px;
    padding-left: 0;
    padding-right: 0;
    width: calc(100% - 60px);
  }
}
@media (min-width: 1200px) {
  .container.w75 {
    width: calc(1200px * .833);
  }
}
@media (min-width: 1440px) {
  .container.w75 {
    width: calc(1440px * .833);
  }
}
@media (min-width: 1920px) {
  .container.w75 {
    width: calc(1920px * .667);
  }
}
@media (min-width: 768px) {
  .container .wp-block-group__inner-container {
    text-align: center;
  }
}
.home .wp-block-column:not(:first-child) {
  margin-left: 1em;
}
h1 + p, h2 + p {
  margin-top: 2.5em;
}
@media (max-width: 991.98px) {
  input[type=text], input[type=email], input[type=tel], textarea, select {
    padding: 1em;
    font-size: 1rem;
  }
  input[type=checkbox] + label {
    background-size: 1.5em auto;
  }
}
@media (max-width: 767.98px) {
  .site-main .wp-block-column {
    margin-left: 0 !important;
  }
  .site-main .wp-block-column:not(:first-child) {
    margin-top: 1em;
  }
  .site-main .wp-block-column a.d-sm-none.goldyblock-link {
    margin-top: 1em;
  }
}
/* Buttons */
.btn {
  font-family: 'FlamaSemiCond', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  color: #fff;
  display: inline-block;
  padding: 0;
  text-transform: uppercase;
  line-height: 1.3em;
  background: none;
}
@media (max-width: 767.98px) {
  .btn {
    font-size: 1em;
  }
}
.btn.padding {
  margin-right: 8px;
  margin-left: 8px;
}
.btn:hover {
  color: var(--gold);
}
.btn.secondary {
  font-family: 'FlamaCond', sans-serif;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s;
  border: 2px solid white;
  color: #fff;
  border-radius: 0px;
  padding: 10px 40px;
}
.btn.arrow:after {
  content: ">";
  font-family: "fieldroast";
  font-weight: 100;
  padding-left: 0.7em;
  vertical-align: bottom;
  font-size: 1.2em;
  text-transform: none;
}
.btn.link:after {
  content: "e";
  font-family: "fieldroast";
  font-weight: 100;
  padding-left: 0.7em;
  vertical-align: bottom;
  font-size: 1.2em;
  text-transform: none;
}
.square-bg-btn {
  width: 100%;
}
.square-bg-btn > div {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.square-bg-btn > div:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../images/Recipe_Gradient_Rectangle.svg);
  background-size: cover;
  transition: background-color 0.3s;
}
.square-bg-btn > div .inner_wrapper {
  padding: 1em;
  position: absolute;
}
.square-bg-btn > div .inner_wrapper span {
  display: block;
  line-height: 1.2em;
  margin-bottom: 0.5em;
  color: #fff;
}
.square-bg-btn > div .inner_wrapper span:hover {
  color: var(--gold);
}
@media (max-width: 767.98px) {
  .square-bg-btn > div .inner_wrapper span {
    font-size: 1rem;
  }
}
.square-bg-btn:hover > div:before {
  background-color: rgba(0, 0, 0, .5);
}
a {
  font-weight: 600;
}
/* NAV */
@media (max-width: 991.98px) {
  header.theme-main-menu-one.theme-menu-wrapper {
    background: #fff;
    border-bottom: none;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper:before {
    content: "";
    position: absolute;
    background: #000;
    top: -2em;
    z-index: 10;
    padding-bottom: 6.1em;
    border-bottom: 1px solid var(--gold);
    z-index: 10;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-toggler {
    z-index: 101;
    color: #fff;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(255, 255, 255)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url(../images/Icon_Close.svg);
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-header {
    z-index: 100;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse.show {
    max-height: calc(100vh - 4em);
    overflow-y: scroll;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav {
    padding-top: 4em;
    flex-direction: column;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav > li {
    display: block;
    border: none;
    text-align: left;
    padding: 0;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav > li a {
    color: #000;
    font-size: 2.5rem;
    font-family: FlamaCond;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav > li.secondary {
    margin-top: 0.5em;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav > li.secondary a {
    font-size: 1em;
    font-family: FlamaSemiCond;
    text-transform: none;
    padding: 0.7em 0 0;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav h4 {
    color: #000;
    margin: 2em 0 0.5em;
    text-align: left;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div {
    border: none;
    text-align: left;
    display: block;
    width: 100%;
    padding: 0;
    background: none;
    margin-bottom: 3em;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div .wpml-ls-item-legacy-dropdown {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div .wpml-ls-item-legacy-dropdown .wpml-ls-native {
    display: inline-block;
    text-transform: uppercase;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div .wpml-ls-item-legacy-dropdown > a {
    display: inline-block;
    color: #000;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div .wpml-ls-item-legacy-dropdown ul.wpml-ls-sub-menu {
    background: none;
    border: none;
    visibility: visible;
    display: inline-block;
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    width: auto;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div .wpml-ls-item-legacy-dropdown ul.wpml-ls-sub-menu li {
    display: inline-block;
  }
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper .navbar-collapse ul.nav div .wpml-ls-item-legacy-dropdown ul.wpml-ls-sub-menu li a {
    color: #000;
    background: none;
  }
}
@media (max-width: 767.98px) {
  header.theme-main-menu-one.theme-menu-wrapper .theme-main-menu-wrapper:before {
    padding-bottom: 5.1em;
  }
}
@media (min-width: 768px) {
  .theme-main-menu-wrapper .nav {
    flex-wrap: nowrap;
  }
}
@media (min-width: 992px) {
  .theme-main-menu-wrapper .nav > li, .theme-main-menu-wrapper .nav > div {
    padding: 0 2.5em;
  }
}
/* LANGUAGE DROPDOWN STYLING */
.theme-main-menu-wrapper .nav > div {
  width: auto;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown li.wpml-ls-item a:before {
  font-family: 'fieldroast';
  vertical-align: -0.35em;
  font-size: 1.5em;
  font-weight: 100;
  padding-right: 0.5em;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown li.wpml-ls-item.wpml-ls-item-en > a:before {
  content: "u";
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown li.wpml-ls-item.wpml-ls-item-en-ca > a:before {
  content: "c";
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown li.wpml-ls-item.wpml-ls-item-fr-ca > a:before {
  content: "c";
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown .wpml-ls-flag {
  width: 1.8em;
  height: 1.2em;
  max-width: unset;
  margin-top: 0.2em;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul a.wpml-ls-item-toggle {
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 992px) {
  .theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul a.wpml-ls-item-toggle {
    position: absolute;
    padding-bottom: 3em;
  }
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul a.wpml-ls-item-toggle:after {
  display: none;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul a.wpml-ls-item-toggle .wpml-ls-native {
  display: none;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul .wpml-ls-sub-menu {
  border: 2px solid var(--gold);
  background: #000;
  right: unset;
  left: -2em;
  top: 3.45em;
  width: 6em;
  text-align: center;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul .wpml-ls-sub-menu .wpml-ls-item:last-child a.wpml-ls-link {
  padding-bottom: 1em;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul .wpml-ls-sub-menu .wpml-ls-item:first-child a.wpml-ls-link {
  padding-top: 1em;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul .wpml-ls-sub-menu a.wpml-ls-link {
  border: none;
  white-space: nowrap;
  display: inline-block;
  padding: 0.5em;
}
.theme-main-menu-wrapper .wpml-ls-legacy-dropdown ul .wpml-ls-sub-menu a.wpml-ls-link .wpml-ls-native {
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .theme-inner-banner {
    height: 100vw;
  }
}
@media (min-width: 992px) {
  .theme-inner-banner {
    min-height: 500px;
  }
}
/* FOOTER */
.theme-main-footer {
  margin-top: 12em;
}
.theme-main-footer .footer-area-one li a {
  font-weight: 400;
}
.theme-main-footer .footer-area-one li a.footer_link {
  margin-bottom: 1.5em;
  font-family: FlamaSemiCond;
  font-weight: 600;
  display: block;
}
.theme-main-footer .footer-area-one h6 {
  font-family: FlamaSemiCond;
}
@media (max-width: 767.98px) {
  .theme-main-footer {
    margin-top: 6em;
  }
}
.theme-main-footer ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .theme-main-footer .footer-logo {
    text-align: center;
  }
  .theme-main-footer .footer-logo img {
    max-width: 25vw;
  }
  .theme-main-footer .footer-social {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  .theme-main-footer .col-md-4 {
    text-align: center;
  }
  .theme-main-footer .footer-legal {
    margin-top: 3em;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .theme-main-footer .footer-logo img {
    max-width: 80%;
  }
  .theme-main-footer .footer-social {
    margin-bottom: 5em;
  }
  .theme-main-footer .col-md-4 {
    text-align: left;
  }
  .theme-main-footer .subscribe-widget > div {
    margin-top: 2em;
    padding-top: 3em;
    border-top: 2px solid #fff;
    margin-bottom: 5em;
  }
  .theme-main-footer .footer-legal a:last-of-type {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .theme-main-footer .footer-legal span {
    margin-top: 1em;
    display: block;
  }
}
.footer-social {
  margin-top: 5em;
}
.footer-social h6 {
  text-transform: uppercase;
}
.footer-social ul {
  padding: 1em 0;
}
.footer-social ul li {
  display: inline-block;
  font-size: 2em;
  margin-right: 0.3em;
}
.footer-social ul li a:before {
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
}
.footer-social ul li a:hover:before {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-legal div {
  font-size: 0.8em;
  padding-bottom: 5em;
}
.footer-legal div a {
  border-right: 1px solid #fff;
  padding-right: 1em;
  margin-right: 1em;
}
/* BLOCK STYLING */
.goldyblock {
  border: 2px solid var(--gold);
}
.goldyblock > div:not(:first-child) {
  border-top: 2px solid var(--gold);
  position: relative;
}
.goldyblock > div:not(:first-child).goldyblock > div:not(:first-child).wheretobuy-list {
  border: none;
}
.goldyblock .goldyblock-cta {
  border-top: 2px solid var(--gold);
  position: relative;
  display: block;
  cursor: pointer;
  padding: 2em;
}
@media (max-width: 767.98px) {
  .goldyblock .goldyblock-cta {
    display: none;
  }
}
.goldyblock .goldyblock-cta:after {
  content: ">";
  color: #fff;
  border-left: 2px solid var(--gold);
  position: absolute;
  display: block;
  right: 0;
  width: 2.75em;
  height: 100%;
  top: 0;
  transition: background-color 0.3s;
  font-family: 'fieldroast';
  line-height: 2.75em;
  font-size: 2em;
  font-weight: 100;
  text-align: center;
}
.goldyblock .goldyblock-cta:hover:after {
  background-color: var(--gold);
}
.goldyblock > h2 {
  padding: 0.6em;
}
.goldyblock > div {
  padding: 2em;
}
@media (max-width: 767.98px) {
  .goldyblock > div {
    padding: 1em;
  }
}
.goldyblock.product-info {
  /* padding-bottom: 4.5em;  to account for absolute positioned buyonline box*/
  position: relative;
  /* @include media-breakpoint-down(sm){ padding-bottom: 2.9em; } */
}
.goldyblock .retailer_link, .goldyblock .buyonline_link, .goldyblock .destinibuy_link {
  border-top: 2px solid var(--gold);
  display: block;
  text-transform: uppercase;
  padding: 1.5em;
  position: relative;
}
@media (max-width: 767.98px) {
  .goldyblock .retailer_link, .goldyblock .buyonline_link, .goldyblock .destinibuy_link {
    font-size: 1rem;
    padding: 1em;
  }
}
.goldyblock .retailer_link:after, .goldyblock .destinibuy_link:after {
  content: ">";
  color: #fff;
  position: absolute;
  display: block;
  right: 0;
  padding: 0 1em;
  height: 100%;
  top: 0;
  transition: background-color 0.3s;
  font-family: 'fieldroast';
  line-height: 3em;
  font-size: 1.5em;
  font-weight: 100;
}
@media (max-width: 767.98px) {
  .goldyblock .retailer_link:after, .goldyblock .destinibuy_link:after {
    font-size: 1.2em;
  }
}
.goldyblock .buyonline_link {
  width: calc(100% + 4px);
  position: absolute !important;
  margin-left: -2px;
  background: #000;
  border: 2px solid var(--gold);
  z-index: 99;
}
.goldyblock .buyonline_link span {
  margin: -1.5em;
  padding: 1.5em;
  display: block;
  position: relative;
}
@media (max-width: 767.98px) {
  .goldyblock .buyonline_link span {
    margin: -1.1em;
    padding: 1.1em;
  }
}
.goldyblock .buyonline_link span:after {
  content: "+";
  color: #fff;
  position: absolute;
  display: block;
  right: 0;
  padding: 0 1em;
  height: 100%;
  top: 0;
  font-family: 'fieldroast';
  line-height: 3em;
  font-size: 1.5em;
  font-weight: 100;
}
@media (max-width: 767.98px) {
  .goldyblock .buyonline_link span:after {
    font-size: 1.2em;
  }
}
.goldyblock .buyonline_link:hover span:after {
  content: "-";
}
.goldyblock .buyonline_link ul {
  height: 0;
  transition: height 0.5s, margin 0.5s;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.goldyblock .buyonline_link ul li {
  display: block;
  padding: 0.25em 0;
}
.goldyblock .buyonline_link ul li a {
  display: block;
}
.goldyblock .buyonline_link ul li a:after {
  content: "e";
  font-family: "fieldroast";
  float: right;
  text-transform: none;
}
.goldyblock .buyonline_link:hover ul {
  margin-top: 1.5em;
  height: 7em;
  border-top: 2px solid var(--gold);
  padding-top: 1em;
}
.goldyblock.columns {
  display: flex;
  flex-direction: row;
}
@media (max-width: 575.98px) {
  .goldyblock.columns {
    flex-direction: column;
  }
}
.goldyblock.columns > div {
  flex-basis: 0;
  flex-grow: 1;
  padding: 0;
}
@media (min-width: 576px) {
  .goldyblock.columns > div {
    border-top: none;
    border-right: 2px solid var(--gold);
  }
}
.goldyblock.columns > div:last-child {
  border-right: none;
  flex-grow: 3;
}
.goldyblock.columns > div .goldyblock-cell {
  padding: 2em;
}
.goldyblock.columns > div .goldyblock-cell:not(:first-child) {
  border-top: 2px solid var(--gold);
}
.goldyblock.grid {
  display: flex;
  flex-wrap: wrap;
}
.goldyblock.grid > div {
  flex-grow: 1;
  flex-basis: 100%;
}
.goldyblock.grid > div.goldyblock-col {
  flex-basis: 37.5%;
}
.goldyblock.grid > div.goldyblock-col ~ div.goldyblock-col {
  flex-basis: 62.5%;
}
@media (min-width: 576px) {
  .goldyblock.grid > div.goldyblock-col ~ div.goldyblock-col {
    border-left: 2px solid var(--gold);
  }
}
@media (min-width: 1440px) {
  .goldyblock.fullheight {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .goldyblock.fullheight:before {
    content: "";
    flex-grow: 1;
  }
}
.goldyblock.wheat-box {
  position: relative;
  height: auto;
  background: url(../images/Icon_Wheatfork.svg) no-repeat;
  background-size: 5%;
  background-position: center 85%;
}
@media (min-width: 1440px) {
  .goldyblock.wheat-box:before {
    content: '';
    width: 100%;
    padding-bottom: 100%;
    display: block;
  }
}
@media (max-width: 1439.98px) {
  .goldyblock.wheat-box {
    padding-bottom: 8em;
  }
}
.goldyblock.wheat-box h2 {
  font-size: 1.3em;
  /* downgrade to same size as h4 */
  flex-grow: unset;
  padding: 3em 1.6em 0;
}
@media (min-width: 1440px) {
  .goldyblock.wheat-box h2 {
    position: absolute;
  }
}
@media (max-width: 767.98px) {
  .goldyblock.wheat-box h2 {
    padding: 2em 0.8em 0;
  }
}
.goldyblock.wheat-box .goldyblock-body {
  border-top: none;
}
@media (min-width: 1440px) {
  .goldyblock.wheat-box .goldyblock-body {
    position: absolute;
    padding-top: 6.5em;
  }
}
.goldyblock.subdued:before {
  display: none;
}
.goldyblock.subdued h2 {
  font-size: 1.3em;
  /* downgrade to same size as h4 */
  flex-grow: unset;
  padding: 3em 1.6em 0;
}
@media (max-width: 767.98px) {
  .goldyblock.subdued h2 {
    padding: 2em 1em 0;
  }
}
.goldyblock.subdued .goldyblock-body {
  border-top: none;
  flex-grow: 1;
}
.goldyblock-link {
  border: 2px solid var(--gold);
  display: block;
  padding: 1.5em;
  font-family: FlamaSemiCond;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}
@media (max-width: 767.98px) {
  .goldyblock-link {
    padding: 1em;
    font-size: 1rem;
  }
}
.goldyblock-link:after {
  content: ">";
  color: #fff;
  border-left: 2px solid var(--gold);
  position: absolute;
  display: block;
  right: 0;
  width: 3em;
  text-align: center;
  height: 100%;
  top: 0;
  font-family: 'fieldroast';
  line-height: 3em;
  font-size: 1.5em;
  font-weight: 100;
}
@media (max-width: 767.98px) {
  .goldyblock-link:after {
    font-size: 1em;
    line-height: 3.5em;
    width: 3.5em;
  }
}
.goldyblock-link:hover:after {
  background-color: var(--gold);
}
/* used on home page to create square goldyblocks */
@media (min-width: 1440px) {
  .squared {
    position: relative;
  }
  .squared:before {
    content: "";
    width: 100%;
    padding-bottom: 100%;
    display: block;
  }
  .squared .goldyblock {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  }
}
.wheretobuy {
  margin-top: 4em;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 575.98px) {
  .wheretobuy {
    width: calc(100% + 4em);
    margin-left: -2em;
    margin-right: -2em;
  }
}
@media (max-width: 575.98px) {
  .wtb .online-retailer {
    padding: 2em 0;
    border-bottom: 2px solid var(--gold);
  }
}
.wheretobuy-list {
  border-top: none !important;
}
@media (max-width: 575.98px) {
  .wheretobuy-list {
    padding: 0 !important;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .wheretobuy-list {
    width: 80%;
  }
}
.wheretobuy-list .online {
  display: none;
}
.wheretobuy-list .row {
  justify-content: center;
}
@media (min-width: 576px) {
  .wheretobuy-list .col-sm-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
ul.goldyblock-tab {
  text-align: center;
  padding: 0;
  width: 50%;
  white-space: nowrap;
  display: flex;
  margin: -2em auto 0;
  justify-content: space-evenly;
}
@media (max-width: 767.98px) {
  ul.goldyblock-tab {
    display: block;
    text-align: left;
    width: 100%;
    overflow: scroll;
    padding-left: 2em;
    padding-right: 2em;
  }
}
ul.goldyblock-tab li {
  flex-grow: 1;
  display: inline-block;
  margin: 0 0.5em;
  padding: 1em 2em;
  background: #000;
  border: 2px solid var(--gold);
  text-transform: uppercase;
}
ul.goldyblock-tab li:hover, ul.goldyblock-tab li.active {
  color: #fff;
  background: var(--gold);
}
ul.goldyblock-tab li:hover a, ul.goldyblock-tab li.active a {
  color: #fff;
}
@media (max-width: 767.98px) {
  ul.goldyblock-tab li {
    font-size: 1rem;
  }
}
ul.goldyblock-tab + div {
  border-left: 0 !important;
  border-right: 0 !important;
  border-top: 0 !important;
}
@media (max-width: 767.98px) {
  ul.goldyblock-tab + div {
    border: none !important;
  }
}
.featured-recipe-details ul.goldyblock-tab {
  width: 75%;
}
@media (max-width: 767.98px) {
  .featured-recipe-details ul.goldyblock-tab {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
  }
}
.wheretobuy .goldyblock-cta {
  text-align: right;
}
.wheretobuy .goldyblock-cta input {
  border: none;
  width: 50%;
  border-left: 2px solid var(--gold);
  padding: 2em;
  margin: -2em;
  min-height: auto;
}
@media (min-width: 1200px) {
  .wheretobuy .goldyblock-cta input {
    width: 30%;
  }
}
@media (max-width: 767.98px) {
  .wheretobuy .goldyblock-cta {
    display: block;
    width: calc(100% - 4em);
    margin-left: 2em;
    margin-right: 2em;
    text-align: left;
    padding: 1em;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    background: #000;
    margin-bottom: -2.5em;
    font-size: 1rem;
  }
  .wheretobuy .goldyblock-cta input {
    padding: 1em;
    margin: -1em;
    width: 100%;
  }
  .wheretobuy .goldyblock-cta:after {
    width: 3.5em;
    line-height: 3.5em;
    font-size: 1em;
  }
}
.page-template-no-bootstrap-page article > .container {
  margin: 12em auto;
}
@media (max-width: 767.98px) {
  .page-template-no-bootstrap-page article > .container {
    margin: 6em auto;
  }
}
.page-template-page-header-page h1:first-of-type {
  margin-top: 2em;
}
.page-template-page-header-page .wp-block-columns {
  margin: 12em auto;
}
@media (max-width: 767.98px) {
  .page-template-page-header-page .wp-block-columns {
    margin: 6em auto;
  }
}
.col-centered {
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .col-centered {
    padding: 0;
  }
}
.top-lined {
  border-top: 2px solid var(--gold);
  margin-top: 6em;
  padding-top: 6em;
}
.top-lined h3 {
  text-transform: uppercase;
  color: var(--gold);
}
/* HOME PAGE TWEAKS */
.theme-inner-banner h1 {
  font-size: 5.6em;
  margin: 0;
}
@media (max-width: 991.98px) {
  .theme-inner-banner.full.alignfull {
    height: 100vw;
  }
}
@media (max-width: 575.98px) {
  .theme-inner-banner.full.alignfull {
    height: 100vh;
  }
  .theme-inner-banner.full.alignfull h1 {
    font-size: 4em;
  }
}
.recipe-split-column {
  flex-basis: 37.5% !important;
}
.wp-block-columns .wp-block-embed-youtube {
  height: 100%;
}
.wp-block-columns .wp-block-embed-youtube .wp-block-embed__wrapper {
  height: 100%;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}
#sb_instagram {
  width: 133% !important;
  position: relative;
  margin: -0.5em !important;
  /* .sbi-owl-nav .sbi-owl-next { 
   right: 25%;
   background: url(../images/Icon_Nav_Arrow_Right.svg) no-repeat;
   width: 40px; height: 40px;
   svg { display: none; }
   } */
}
#sb_instagram .sbi-owl-prev, #sb_instagram .sbi-owl-next {
  display: none;
}
#sb_instagram .sbi_item {
  border: 0.5em solid #000;
}
@media (max-width: 575.98px) {
  #sb_instagram .sbi-owl-next {
    display: none;
  }
}
@media (min-width: 576px) {
  #sb_instagram:before {
    content: "";
    position: absolute;
    left: 75%;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: block;
    z-index: 999;
  }
}
.mailchimp-form input.mce_inline_error {
  border-color: #c00;
}
.mailchimp-form input[type=submit] {
  display: none;
}
.mailchimp-form .col-12 {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
@media (max-width: 767.98px) {
  .mailchimp-form .col-12 {
    margin-top: -2px;
  }
}
@media (max-width: 991.98px) {
  .mailchimp-form .col-lg-6 {
    margin-top: 1em;
  }
}
@media (max-width: 767.98px) {
  .mailchimp-form {
    /* pick up styling from goldyblock-link */
  }
  .mailchimp-form .col-lg-6 {
    margin-top: -2px;
  }
  .mailchimp-form .row-2 .col-sm-3:before {
    content: ">";
    position: absolute;
    right: 0.5em;
    top: 2em;
    font-family: 'fieldroast';
    font-size: 1.5em;
    border-left: 2px solid var(--gold);
    bottom: 0;
    line-height: 3em;
    width: 3em;
    text-align: center;
  }
  .mailchimp-form .mailing-list__submit.btn.arrow {
    border: 2px solid var(--gold);
    display: block;
    padding: 1.5em;
    font-family: FlamaSemiCond;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    background: none;
    width: 100%;
    text-align: left;
    border-radius: 0;
  }
  .mailchimp-form .mailing-list__submit.btn.arrow:after {
    display: none;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .mailchimp-form .row-2 .col-sm-3:before {
    font-size: 1rem;
    line-height: 3.3em;
    width: 3.3em;
    top: 3.8em;
  }
}
@media (max-width: 767.98px) and (max-width: 767.98px) {
  .mailchimp-form .mailing-list__submit.btn.arrow {
    padding: 1em;
    font-size: 1rem;
  }
}
/* COUNTRY MODAL */
.modal-content {
  border: 2px solid var(--gold);
  border-radius: 0;
  background: #000;
}
.modal-content .modal-header, .modal-content .modal-body, .modal-content .modal-footer {
  border: none;
  text-align: center;
}
/* COOKIE NOTICE */
.cookie-notice {
  display: none;
  position: fixed;
  border-top: 2px solid var(--gold);
  background: #000;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2em;
}
@media (max-width: 767.98px) {
  .cookie-notice {
    padding: 2em 0;
  }
}
.cookie-notice p {
  padding: 0;
  margin: 0;
}
@media (max-width: 767.98px) {
  .cookie-notice p {
    font-size: 0.8em;
    line-height: 1.3em;
    margin-bottom: 1em;
  }
}
/* PRODUCTS PAGE STYLING */
.page-template-products-page .products-nav > div:first-child {
  border-top: 2px solid var(--gold);
  padding-top: 2em;
  padding-bottom: 2em;
}
.page-template-products-page .products-nav > div:last-child {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2em;
  margin-bottom: 3em;
}
.page-template-products-page .products-nav > div > h5 {
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .page-template-products-page .products-nav a {
    padding: 0 0.5em;
    border-right: 2px solid var(--gold);
  }
  .page-template-products-page .products-nav a:last-child {
    border-right: none;
  }
}
@media (max-width: 767.98px) {
  .page-template-products-page .products-nav a {
    display: inline-block;
    width: 50%;
    padding: 0.5em 0;
    float: left;
  }
}
.page-template-products-page .product-listing h3 {
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1em;
}
.page-template-products-page .product-listing h4 {
  font-size: 1.7em;
  margin-bottom: 1em;
}
.page-template-products-page .product-listing .product-grid {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3em;
  margin-bottom: 2em;
}
.page-template-products-page .product-listing .product-grid a {
  display: inline-block;
  padding-bottom: 2em;
}
.page-template-products-page .product-listing .product-grid a:hover {
  color: white;
}
.page-template-products-page .product-listing .product-grid a img {
  display: block;
  transition: opacity 0.3s;
}
.page-template-products-page .product-listing .product-grid a img:hover {
  opacity: 0.5;
}
.page-template-products-page .product-listing .product-grid a span {
  display: block;
  text-align: center;
  margin-top: 1em;
  transition: color 0.3s;
}
.page-template-products-page .product-listing .product-grid a span:hover {
  color: var(--gold);
}
.product-details {
  margin-bottom: 12em;
}
.product-details h2 {
  font-family: 'DomaineDisplay';
  font-size: 4em;
  text-transform: uppercase;
  line-height: 1em;
  margin-top: 0.2em;
}
@media (max-width: 767.98px) {
  .product-details h2 {
    font-size: 2.4em;
  }
}
.product-details h3 {
  color: var(--gold);
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .product-details {
    margin-bottom: 6em;
  }
  .product-details .nav {
    margin-bottom: 2em;
  }
}
@media (max-width: 991.98px) {
  .product-details .col-12:first-child {
    order: 1;
  }
}
.ingredient-col {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .ingredient-col {
    flex-direction: column;
  }
}
@media (max-width: 767.98px) {
  .ingredient-col {
    flex-basis: unset !important;
  }
}
@media (max-width: 767.98px) {
  .ingredient-col .featured-ingredient-wrap {
    flex-grow: 1;
  }
}
@media (min-width: 768px) {
  .ingredient-col-2 {
    display: flex;
    flex-direction: column;
  }
  .ingredient-col-2 > .goldyblock-cell:first-child {
    flex-grow: 1;
  }
}
.product-ingredients {
  margin-bottom: 12em;
}
@media (max-width: 767.98px) {
  .product-ingredients {
    margin-bottom: 6em;
  }
}
.product-ingredients h3 {
  margin-top: 0.8em;
  text-transform: uppercase;
  line-height: 1.4em;
}
ul.dietary-restrictions li img {
  height: 6em;
  width: auto;
}
@media (max-width: 575.98px) {
  ul.dietary-restrictions li {
    margin: 1em;
  }
  ul.dietary-restrictions li img {
    height: 4em;
  }
}
@media (min-width: 1200px) {
  .modal-lg {
    max-width: 1000px;
  }
}
.modal-backdrop.show {
  opacity: 0.8;
}
.related-product h2, .related-product p {
  text-align: center;
}
.related-product h2 {
  text-transform: uppercase;
}
.related-product .related-product-slider {
  margin-top: 3em;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .related-product .related-product-slider {
    margin-left: -15px;
    margin-right: -15px;
    width: calc(100% + 30px);
  }
}
@media (max-width: 767.98px) {
  .related-product .related-product-slider {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  .related-product .related-product-slider .item {
    margin-bottom: 1em;
  }
  .related-product .related-product-slider .square-bg-btn {
    margin-bottom: 1em;
  }
  .related-product .related-product-slider .square-bg-btn > div {
    padding-bottom: 50%;
  }
  .related-product .related-product-slider .item:nth-child(3), .related-product .related-product-slider .item:nth-child(4) {
    display: none;
  }
}
.discover {
  margin-top: 12em;
}
@media (max-width: 767.98px) {
  .discover {
    margin-top: 6em;
  }
}
.discover img {
  width: auto;
}
/* HOMEPAGE PRODUCT FAMILIES SHORTCODE STYLING */
.product_family_listing {
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
  margin-top: 4em;
  padding-top: 2.5em;
  justify-content: center;
}
.product_family_listing a {
  flex-basis: 25%;
  text-align: center;
  padding: 2em 0;
}
@media (max-width: 767.98px) {
  .product_family_listing a {
    flex-basis: 50%;
    padding: 1em 0;
  }
}
.product_family_listing a:hover {
  color: #fff;
}
.product_family_listing a > div {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
  transition: opacity 0.3s;
}
.product_family_listing a > div:hover {
  opacity: 0.5;
}
.product_family_listing a > span {
  font-weight: 600;
  text-transform: uppercase;
}
.product_family_listing a > span:hover {
  color: var(--gold);
}
/* LOCATION REDIRECT MODAL */
#canada-redirect-modal .modal-header {
  background: url(../images/Logo_FieldRoast_Monogram_Secondary.svg);
  background-repeat: no-repeat;
  background-size: 6em auto;
  background-position: top center;
  padding-top: 8em;
  margin-top: 5em;
  display: block;
  padding-bottom: 0;
}
#canada-redirect-modal .modal-header .close {
  position: absolute;
  background: url(../images/Icon_Close.svg) no-repeat;
  right: 2em;
  top: 2em;
}
#canada-redirect-modal .modal-body {
  padding: 0 3em;
  margin-bottom: 2em;
}
#canada-redirect-modal .modal-body .modal-title {
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2em;
}
#canada-redirect-modal .modal-footer {
  padding-top: 0;
  padding-bottom: 3em;
  justify-content: center;
}
/*------------------------ Recipes Page ------------------------*/
.shop-sidebar {
  margin-bottom: 1em;
}
@media (min-width: 576px) {
  .shop-sidebar {
    text-align: center;
  }
}
.shop-sidebar span, .shop-sidebar select {
  display: inline;
}
.shop-sidebar select {
  width: auto;
}
.shop-page h1:first-of-type {
  margin-top: 2em;
}
.shop-page .shop-product-wrapper {
  margin-top: 3em;
}
.shop-page .shop-product-wrapper .single-product {
  margin-bottom: 6em;
  padding-bottom: 4em;
  /* to account for absolutely positioned a at bottom */
  position: relative;
}
@media (min-width: 576px) {
  .shop-page .shop-product-wrapper .single-product {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.shop-page .shop-product-wrapper .single-product .square-bg-btn > div {
  padding-bottom: 50%;
}
.shop-page .shop-product-wrapper .single-product .square-bg-btn {
  display: inline-block;
  margin-bottom: 2em;
}
.shop-page .shop-product-wrapper .single-product h6 {
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 2em 1.5em;
}
.shop-page .shop-product-wrapper .single-product .flava {
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin-top: -2.8em;
  margin-right: 1.5em;
  float: right;
}
.shop-page .shop-product-wrapper .single-product h3 {
  text-transform: uppercase;
  margin: 0 1.1em;
}
.shop-page .shop-product-wrapper .single-product p {
  margin: 1.5em 2em;
}
.shop-page .shop-product-wrapper .single-product p a {
  display: inline;
}
.shop-page .shop-product-wrapper .single-product:hover .flava {
  background-image: none;
  width: auto;
}
.shop-page .shop-product-wrapper .single-product:hover .flava:after {
  text-transform: uppercase;
}
.shop-page .shop-product-wrapper .single-product a.btn {
  position: absolute;
  bottom: 2em;
  left: 2em;
}
@media (max-width: 575.98px) {
  .shop-page .shop-product-wrapper .single-product:before {
    content: "";
    display: block;
    position: absolute;
    border: 2px solid var(--gold);
    top: 0;
    left: 15px;
    right: 15px;
    bottom: 0;
  }
  .shop-page .shop-product-wrapper .single-product a.square-bg-btn {
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
  }
  .shop-page .shop-product-wrapper .single-product a.btn {
    left: 2.3em;
  }
  .shop-page .shop-product-wrapper .single-product p {
    margin: 1.9em;
    font-size: 1rem;
    line-height: 1.2em;
  }
}
@media (min-width: 576px) {
  .shop-page .shop-product-wrapper .single-product:after {
    content: "";
    display: block;
    border-bottom: 2px solid var(--gold);
    position: absolute;
    bottom: 0;
    left: 0.5em;
    right: 0.5em;
    /* to match padding on col */
  }
}
.shop-page .rating-callout {
  position: absolute;
  background: url(../images/Handdrawn_Arrow.svg) no-repeat;
  background-position: right center;
  padding-right: 290px;
  left: 50%;
  margin-left: -585px;
  margin-top: -17px;
  transform: rotate(-5deg);
}
@media (max-width: 991.98px) {
  .shop-page .rating-callout {
    display: none;
  }
}
.shop-page .rating-callout img {
  width: 215px;
  height: 116px;
  transform: rotate(5deg);
}
@media (max-width: 1199.98px) {
  .shop-page .rating-callout {
    background: none;
    margin-left: -320px;
    margin-top: -10px;
  }
}
.featured-recipe {
  margin-bottom: 8em;
  text-align: center;
}
.featured-recipe h1 {
  text-transform: uppercase;
}
.featured-recipe .recipe-detail span {
  margin: 0 1em;
  color: var(--gold);
}
.featured-recipe .recipe-detail a {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .featured-recipe {
    text-align: left;
  }
}
.featured-recipe-details {
  margin-bottom: 12em;
}
@media (max-width: 767.98px) {
  .featured-recipe-details {
    margin-bottom: 6em;
  }
}
.featured-recipe-details h3 {
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 0.6em;
}
.featured-recipe-details .goldyblock .flavor-bg {
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .featured-recipe-details .goldyblock .flavor-bg {
    padding-top: 6em;
    background-size: 15% auto;
    background-position: 0 2em;
  }
}
@media (min-width: 768px) {
  .featured-recipe-details .goldyblock .flavor-bg {
    background-position: 2em center;
    background-size: 9% auto;
    padding-left: 10em;
  }
}
.featured-recipe-details .recipe-enjoy {
  width: auto;
  margin: 3em auto;
  display: block;
}
@media (max-width: 767.98px) {
  .featured-recipe-details .goldyblock {
    border-left: none;
    border-right: none;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .featured-recipe-details .goldyblock > div {
    padding: 1em 0;
  }
}
.goldyblock .recipe-spotify-list {
  display: flex;
}
.goldyblock .recipe-spotify-list div {
  flex-basis: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .goldyblock .recipe-spotify-list div {
    padding-right: 1em;
  }
  .goldyblock .recipe-spotify-list div h3 {
    margin-top: 0;
  }
  .goldyblock .recipe-spotify-list div a {
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  .goldyblock .recipe-spotify-list div {
    margin-bottom: 1em;
  }
  .goldyblock .recipe-spotify-list div a {
    margin-top: 1em;
  }
}
.goldyblock .recipe-spotify-list iframe {
  width: 67%;
  height: 180px;
}
@media (max-width: 767.98px) {
  .goldyblock .recipe-spotify-list iframe {
    height: 100vw;
  }
}
@media (max-width: 767.98px) {
  .goldyblock .recipe-spotify-list {
    flex-direction: column;
    text-align: center;
    padding-bottom: 4em !important;
  }
  .goldyblock .recipe-spotify-list iframe {
    width: 100%;
  }
}
.goldyblock .recipe-product {
  display: flex;
  padding: 4em 2em;
}
@media (max-width: 767.98px) {
  .goldyblock .recipe-product {
    flex-direction: column;
    text-align: center;
    padding-bottom: 4em !important;
  }
}
.goldyblock .recipe-product > a {
  flex-basis: 37.5%;
  text-align: center;
}
@media (min-width: 768px) {
  .goldyblock .recipe-product > a img {
    width: 80%;
  }
}
.goldyblock .recipe-product > div {
  flex-basis: 62.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.goldyblock .recipe-product > div h2 {
  text-transform: uppercase;
  font-family: 'DomaineDisplay';
  line-height: 1em;
  margin: 0.5em 0 0;
}
.goldyblock .recipe-product > div h2 + h3 {
  margin-bottom: 0.5em;
}
@media (max-width: 767.98px) {
  .goldyblock .recipe-product > div > a {
    margin-top: 1em;
    align-self: center;
  }
}
@media (min-width: 768px) {
  .goldyblock .recipe-product > div > a {
    margin-top: 2em;
    align-self: flex-start;
  }
}
/* RECIPE PAGE DROPDOWNS */
.shop-sidebar .dropdown {
  display: inline-block;
  margin: 0 0.5em;
  vertical-align: 0.1em;
  width: 200px;
}
@media (min-width: 576px) {
  .shop-sidebar .dropdown.wide {
    width: 350px;
  }
}
@media (max-width: 575.98px) {
  .shop-sidebar .dropdown {
    display: block;
    margin: 1em auto;
    width: 100%;
  }
}
.shop-sidebar .dropdown .btn {
  border: 2px solid var(--gold);
  border-radius: 0;
  padding: 1em;
  width: 100%;
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 2em;
}
.shop-sidebar .dropdown .dropdown-toggle::after {
  border: none;
  background-image: url(../images/Icon_Nav_Arrow_Down.svg);
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 1em;
}
.shop-sidebar .dropdown.show .dropdown-toggle::after {
  background-image: url(../images/Icon_Nav_Arrow_Up.svg);
}
.shop-sidebar .dropdown .btn-secondary.dropdown-toggle, .shop-sidebar .dropdown .btn-secondary:hover {
  background: #000;
}
.shop-sidebar .dropdown .dropdown-menu {
  background: #000;
  border: 2px solid var(--gold);
  border-top: none;
  border-radius: 0;
  padding: 0.5em 0;
  margin: 0;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  right: 0;
  min-width: 0;
  /* The emerging W3C standard
   that is currently Firefox-only */
  scrollbar-width: thin;
  scrollbar-color: #999 #111;
  /* Works on Chrome/Edge/Safari */
}
.shop-sidebar .dropdown .dropdown-menu::-webkit-scrollbar {
  width: 12px;
}
.shop-sidebar .dropdown .dropdown-menu::-webkit-scrollbar-track {
  background: #111;
}
.shop-sidebar .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 20px;
  border: 3px solid #111;
}
.shop-sidebar .dropdown .dropdown-menu .dropdown-item {
  color: #fff;
  padding: 0.5em 1em;
  white-space: normal;
  line-height: 1em;
}
.shop-sidebar .dropdown .dropdown-menu .dropdown-item:hover {
  background: #000;
  color: var(--gold);
}
/* HOME PAGE RECIPES STYLING */
.home-recipe-grid {
  display: flex;
  flex-direction: column;
}
.recipe__image {
  flex-grow: 1;
  padding: 2em;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.recipe__image:not(:first-child) {
  margin-top: 1em;
}
@media (max-width: 991.98px) {
  .recipe__image {
    padding: 1.5em;
  }
  .recipe__image:not(:first-child) {
    display: none;
  }
}
.recipe__image a {
  position: relative;
}
.recipe__image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../images/Recipe_Gradient_Rectangle.svg);
  background-size: cover;
  transition: background-color 0.3s;
}
.recipe__image:hover:before {
  background-color: rgba(0, 0, 0, .5);
}
.featured-recipe__image {
  height: 100%;
  width: 100%;
  padding: 2em;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.featured-recipe__image a {
  position: relative;
}
.featured-recipe__image:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(../images/Recipe_Gradient_Rectangle.svg);
  background-size: cover;
  transition: background-color 0.3s;
}
.featured-recipe__image:hover:before {
  background-color: rgba(0, 0, 0, .5);
}
@media (max-width: 991.98px) {
  .featured-recipe__image {
    padding: 1.5em;
  }
}
@media (max-width: 767.98px) {
  .recipe__image, .featured-recipe__image {
    padding-bottom: 6em;
    height: auto;
  }
  .recipe__image a, .featured-recipe__image a {
    font-size: 1rem;
  }
}
/* RATINGS STYLING */
.kksr-legend {
  display: none;
}
.kk-star-ratings.kksr-disabled .kksr-stars .kksr-stars-active .kksr-star .kksr-icon, .kk-star-ratings:not(.kksr-disabled) .kksr-stars:hover .kksr-star .kksr-icon {
  background-image: url(../images/Icon_StarRating_On.svg) !important;
}
.kk-star-ratings .kksr-stars .kksr-stars-active .kksr-star .kksr-icon {
  background-image: url(../images/Icon_StarRating_On.svg) !important;
}
.kk-star-ratings .kksr-stars .kksr-star .kksr-icon, .kk-star-ratings:not(.kksr-disabled) .kksr-stars .kksr-star:hover ~ .kksr-star .kksr-icon {
  background-image: url(../images/Icon_StarRating_Off.svg) !important;
}
.yasr-small-block-bold {
  display: none !important;
}
.yasr-visitor-votes-after-stars {
  display: none !important;
}
.yasr-star-rating {
  background-image: url(../images/Icon_StarRating_Off.svg) !important;
}
.yasr-star-rating .yasr-star-value {
  background-image: url(../images/Icon_StarRating_On.svg) !important;
}
.shop-product-wrapper .single-product .yasr-star-rating {
  position: absolute;
  left: 1em;
  top: 0.5em;
}
.home #recipes .yasr-star-rating {
  display: block;
  position: absolute;
  margin-top: 0.3em;
}
.square-bg-btn .yasr-visitor-votes {
  position: absolute;
  margin-left: 0.5em;
  margin-top: 1em;
}
/* SHARE STYLING */
@media (max-width: 1199.98px) {
  .addthis_tool {
    margin-top: 1em;
  }
}
@media (min-width: 1200px) {
  .addthis_tool {
    position: absolute;
    right: -12em;
    top: 9em;
  }
}
@media (min-width: 1200px) {
  .addthis_tool .at-share-btn-elements {
    display: flex;
    flex-direction: column;
    float: right;
  }
  .addthis_tool .at-share-btn-elements .at-share-btn {
    margin-bottom: 1em;
  }
}
.addthis_tool .at-share-btn-elements .at-share-btn {
  background: none !important;
  border: 2px solid #fff;
  border-radius: 50%;
  margin-right: 1em;
  font-size: 1rem;
}
.addthis_tool .at-share-btn-elements .at-share-btn .at-label {
  display: none;
}
.addthis_tool .at-share-btn-elements .at-share-btn:focus {
  transform: none;
  border-color: var(--gold);
}
.addthis_tool .at-share-btn-elements .at-share-btn:hover {
  transform: none;
  border-color: var(--gold);
}
/* INDIVIDUAL PAGE TWEAKS */
.match-square-col {
  position: relative;
  overflow: hidden;
}
.match-square-col .wp-block-image {
  width: 100%;
}
@media (min-width: 992px) {
  .match-square-col .wp-block-image {
    position: absolute;
  }
}
@media (max-width: 767.98px) {
  .mobile-drop-order {
    order: 2;
    margin-top: 1em;
  }
}
.timeline-head {
  margin: 3em 2em 0;
  color: var(--gold);
}
@media (min-width: 768px) {
  .timeline-head {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .timeline-head {
    margin: 2em 1em 0;
  }
}
.timeline {
  margin: 3em;
  padding: 0;
}
@media (max-width: 767.98px) {
  .timeline {
    margin: 1em;
  }
}
.timeline li {
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  .timeline li {
    display: flex;
  }
}
.timeline li strong {
  font-size: 3.8em;
  margin: 0;
  flex-basis: 20%;
  font-family: FlamaCond;
  line-height: 1em;
}
@media (max-width: 991.98px) {
  .timeline li strong {
    margin-bottom: 0.5em;
    display: block;
    font-size: 2.5em;
  }
}
.timeline li p {
  margin: 0;
  flex-basis: 80%;
}
.timeline li:last-child {
  margin-bottom: 3em;
}
.cookbook-box {
  position: relative;
  padding-bottom: 4.5em;
}
@media (max-width: 767.98px) {
  .cookbook-box {
    padding-bottom: 2.9em;
  }
}
.cookbook-box h3 {
  margin-top: 1.5em;
}
.cookbook-box .buyonline_link:hover ul {
  height: 9em;
}
@media (max-width: 991.98px) {
  .energy-grid .wp-block-column {
    flex-basis: calc(50% - .5em) !important;
    margin-top: 0 !important;
    margin-bottom: 1em;
  }
  .energy-grid .wp-block-column:nth-child(even) {
    margin-left: 1em !important;
  }
}
.carbonneutral-logo img {
  width: auto;
  margin: 0 auto;
  display: block;
}
.page-template-store-locator .wheretobuy {
  margin-top: -1.9em;
  padding-top: 1.9em;
}
.page-template-store-locator .wheretobuy .goldyblock-tab, .page-template-store-locator .wheretobuy .goldyblock-cta {
  display: none;
}
.page-template-store-locator .goldyblock-tab {
  margin-top: -5.7em;
  margin-bottom: 2em;
}
@media (max-width: 767.98px) {
  .page-template-store-locator h1:first-of-type.underlined {
    padding-bottom: 2em;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .page-template-store-locator .goldyblock-tab {
    margin-top: -3.6em;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
  }
}
.page-template-store-locator .fullwidth-inner {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
@media (max-width: 767.98px) {
  .press-release {
    margin: 0;
  }
  .press-release .press-img {
    padding-bottom: 50%;
    margin-bottom: 1em;
  }
  .press-release .press-txt {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .press-release-date, .press-release-title {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .popular-faq .faq-panel .panel-heading h6 a {
    padding: 30px 60px 30px 0;
    line-height: 1.2em;
  }
  .popular-faq .faq-panel .panel-heading a:after {
    right: 0;
  }
  .popular-faq .faq-panel .panel-group .panel-body {
    padding: 0 0 30px;
  }
}
.wp-news-header.container.w75 {
  margin-bottom: 0;
  text-align: center;
}
.wp-news-header.container.w75 + .wp-block-columns {
  margin-top: 2.5em;
}
.wp-block-column.home-news-grid {
  flex-basis: 50%;
}
@media (max-width: 1199.98px) {
  .wp-block-column.home-news-grid {
    flex-basis: 38%;
  }
}
.wp-block-column.home-news-grid.home-news-col {
  flex-basis: 25%;
}
.home-news-cell-full {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.home-news-cell-full > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  height: 100%;
  top: 0;
  padding: 2em;
}
.home-news-cell-full > div a.btn {
  text-align: left;
}
.home-news-cell-full:before {
  content: '';
  display: block;
  padding-top: 100%;
}
@media (max-width: 767.98px) {
  .home-news-cell-full > div {
    padding: 1.2em;
  }
  .home-news-cell-full h2 {
    font-size: 1.7em;
  }
  .home-news-cell-full p {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
  }
  .home-news-cell-full a {
    margin-top: 0.5em;
  }
}
.home-news-col {
  display: flex;
  flex-direction: column;
}
@media (max-width: 991.98px) {
  .home-news-col {
    display: none;
  }
}
.home-news-col .home-news-cell-half {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.home-news-col .home-news-cell-half img {
  flex-grow: 1;
}
.home-news-col .home-news-cell-half h3 {
  margin: 1.2em;
  margin-bottom: 0.6em;
}
.home-news-col .home-news-cell-half a {
  margin: 0 2em 2em;
  text-align: left;
}
.home-news-col .home-news-cell-half:after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--gold);
  width: 100%;
}
.home-news-col .home-news-cell-half:first-child {
  margin-bottom: 0.5em;
}
.home-news-col .home-news-cell-half:last-child {
  margin-top: 0.5em;
}
#gform_wrapper_8, #gform_wrapper_9, #gform_wrapper_10 {
  text-align: left;
  position: relative;
}
#gform_wrapper_8 h3, #gform_wrapper_9 h3, #gform_wrapper_10 h3 {
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}
#gform_wrapper_8 .gform_description, #gform_wrapper_9 .gform_description, #gform_wrapper_10 .gform_description {
  display: block;
  margin-bottom: 2em;
}
#gform_wrapper_8 .gfield_label, #gform_wrapper_9 .gfield_label, #gform_wrapper_10 .gfield_label {
  display: none;
}
#gform_wrapper_8 .gfield, #gform_wrapper_9 .gfield, #gform_wrapper_10 .gfield {
  margin-bottom: 2em;
  vertical-align: top;
}
#gform_wrapper_8 input::placeholder, #gform_wrapper_9 input::placeholder, #gform_wrapper_10 input::placeholder, #gform_wrapper_8 textarea::placeholder, #gform_wrapper_9 textarea::placeholder, #gform_wrapper_10 textarea::placeholder {
  color: #818181;
}
#gform_wrapper_8 .gsection_title, #gform_wrapper_9 .gsection_title, #gform_wrapper_10 .gsection_title {
  font-size: 1.7em;
  /* match the h3 above */
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2em;
  border-top: 2px solid var(--gold);
  margin-top: 2em;
  padding-top: 2em;
}
#gform_wrapper_8 label:not(.gfield_consent_label), #gform_wrapper_9 label:not(.gfield_consent_label), #gform_wrapper_10 label:not(.gfield_consent_label), #gform_wrapper_8 .gfield_description, #gform_wrapper_9 .gfield_description, #gform_wrapper_10 .gfield_description {
  opacity: 0;
  transition: opacity 0.3s;
}
#gform_wrapper_8 .gfield_error .validation_message, #gform_wrapper_9 .gfield_error .validation_message, #gform_wrapper_10 .gfield_error .validation_message {
  opacity: 0.51;
  color: #d22730;
}
#gform_wrapper_8 select, #gform_wrapper_9 select, #gform_wrapper_10 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Remove default arrow */
  background-image: url(../images/Icon_Nav_Arrow_Down.svg);
  background-repeat: no-repeat;
  background-size: auto 1.5em;
  background-position: calc(100% - 2em) 50%;
  background-color: #000;
  border-radius: 0;
  color: #fff;
}
@media (min-width: 992px) {
  #gform_wrapper_8 .gfield.half, #gform_wrapper_9 .gfield.half, #gform_wrapper_10 .gfield.half {
    width: calc(50% - 0.5em);
    display: inline-block;
  }
  #gform_wrapper_8 .gfield.twothird, #gform_wrapper_9 .gfield.twothird, #gform_wrapper_10 .gfield.twothird {
    width: calc(66.7% - 0.5em);
    display: inline-block;
  }
  #gform_wrapper_8 .gfield.third, #gform_wrapper_9 .gfield.third, #gform_wrapper_10 .gfield.third {
    width: calc(33.3% - 0.5em);
    display: inline-block;
  }
  #gform_wrapper_8 .gfield.spaced, #gform_wrapper_9 .gfield.spaced, #gform_wrapper_10 .gfield.spaced {
    margin-left: 1em;
  }
  #gform_wrapper_8 .ginput_complex, #gform_wrapper_9 .ginput_complex, #gform_wrapper_10 .ginput_complex {
    display: flex;
  }
  #gform_wrapper_8 .ginput_complex.ginput_container_address, #gform_wrapper_9 .ginput_complex.ginput_container_address, #gform_wrapper_10 .ginput_complex.ginput_container_address {
    flex-wrap: wrap;
  }
  #gform_wrapper_8 .ginput_complex span, #gform_wrapper_9 .ginput_complex span, #gform_wrapper_10 .ginput_complex span {
    flex-basis: 50%;
  }
  #gform_wrapper_8 .ginput_complex span:not(:first-child), #gform_wrapper_9 .ginput_complex span:not(:first-child), #gform_wrapper_10 .ginput_complex span:not(:first-child) {
    margin-left: 1em;
  }
  #gform_wrapper_8 .ginput_complex span.ginput_full, #gform_wrapper_9 .ginput_complex span.ginput_full, #gform_wrapper_10 .ginput_complex span.ginput_full {
    flex: 1 1 calc(66.7% - 0.5em);
    margin-bottom: 2em;
  }
  #gform_wrapper_8 .ginput_complex span.ginput_left.address_city, #gform_wrapper_9 .ginput_complex span.ginput_left.address_city, #gform_wrapper_10 .ginput_complex span.ginput_left.address_city {
    flex: 1 1 calc(33.3% - .5em);
    margin-bottom: 2em;
  }
  #gform_wrapper_8 .ginput_complex span.ginput_left, #gform_wrapper_9 .ginput_complex span.ginput_left, #gform_wrapper_10 .ginput_complex span.ginput_left, #gform_wrapper_8 .ginput_complex span.ginput_right, #gform_wrapper_9 .ginput_complex span.ginput_right, #gform_wrapper_10 .ginput_complex span.ginput_right {
    flex: 1 1 calc(33.3% - 1em);
  }
  #gform_wrapper_8 .ginput_complex span.address_state, #gform_wrapper_9 .ginput_complex span.address_state, #gform_wrapper_10 .ginput_complex span.address_state {
    margin-left: 0;
  }
  #gform_wrapper_8 .gform_footer, #gform_wrapper_9 .gform_footer, #gform_wrapper_10 .gform_footer {
    position: absolute;
    right: 0;
    bottom: 0.5em;
  }
}
#gform_wrapper_8 .gform_footer, #gform_wrapper_9 .gform_footer, #gform_wrapper_10 .gform_footer {
  background-image: url(../images/Icon_Nav_Arrow_Right.svg);
  background-size: auto 1em;
  background-position: right center;
  background-repeat: no-repeat;
}
#gform_wrapper_8 .gform_footer input[type=submit], #gform_wrapper_9 .gform_footer input[type=submit], #gform_wrapper_10 .gform_footer input[type=submit] {
  background: none;
  border: none;
  color: #fff;
  font-family: 'FlamaSemiCond', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  padding: 0;
  text-transform: uppercase;
  line-height: 1.3em;
  padding-right: 2em;
}
#gform_wrapper_8 .gform_footer img, #gform_wrapper_9 .gform_footer img, #gform_wrapper_10 .gform_footer img {
  display: none;
}
.page-template-page-influencer h5:first-of-type {
  margin-top: 9.5em;
  color: var(--gold);
}
@media (min-width: 768px) {
  .page-template-page-influencer h5:first-of-type {
    text-align: center;
  }
}
.page-template-page-influencer h1:first-of-type {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .page-template-page-influencer h1:first-of-type {
    text-align: center;
  }
}
.page-template-page-influencer p {
  margin: 4em 0;
}
.page-template-page-influencer h1 + p, .page-template-page-influencer h2 + p {
  margin: 2em 0;
}
@media (min-width: 768px) {
  .page-template-page-influencer h1 + p, .page-template-page-influencer h2 + p {
    text-align: center;
  }
}
.page-template-page-influencer figcaption {
  color: #818181;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .page-template-page-influencer .wp-block-embed-youtube {
    position: relative;
  }
  .page-template-page-influencer .wp-block-embed-youtube:before {
    content: "";
    display: block;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
  }
  .page-template-page-influencer .wp-block-embed-youtube .wp-block-embed__wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: calc(100% - 3.5em);
  }
}
.page-template-page-influencer .related-product {
  margin-top: 12em;
}
.divider {
  content: "|";
  color: var(--gold);
  margin: 0 1em;
}
ul.influencer-social {
  padding: 1em 0;
}
@media (min-width: 768px) {
  ul.influencer-social {
    text-align: center;
  }
}
ul.influencer-social span {
  margin-right: 1em;
}
ul.influencer-social li {
  display: inline-block;
  font-size: 2em;
  margin-right: 0.3em;
  vertical-align: -webkit-baseline-middle;
}
ul.influencer-social li a:before {
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
}
ul.influencer-social li a:hover:before {
  color: var(--gold);
  border-color: var(--gold);
}
