/* ------------------------------------------------------------ *\
	Functions
\* ------------------------------------------------------------ */
/*  ==========================================================================
    Vars
    ========================================================================== */
/*
    colors
    ------
*/
/*
    Fonts
    -----
*/
/*
    Z-indexes
    ---------
    Keep track of z-index by assigning your elements z-index to
    one of these defined levels.
*/
/*
    Widths
    ------
*/
/*
    Spacing units
    -------------
*/
/*
 Product spacings
 */
/**
Filters in categories
 */
/*  ==========================================================================
    Functions:Units
    ========================================================================== */
/*
    PX to EM
    --------

    Convert px to em

    $base-font-size is used as a default so when you use the em() function you don't have to provide
    a second parameter if your working with a element with the default font-size
*/
/*
    EM to PX
    --------

    Convert em to px
*/
/*  ==========================================================================
    Functions:Breakpoints
    ========================================================================== */
/*  ==========================================================================
    Breakpoints
    ========================================================================== */
/* ------------------------------------------------------------ *\
	Mixins
\* ------------------------------------------------------------ */
/*  ==========================================================================
    Mixins:Respond
    ==========================================================================

    Generate media queries.

    $respond-no-media-queries
    -------------------------
    set this global var in your stylesheet aimed at browsers which do
    not support media queries (ie8) to give them desktop styles only.

    This way they get all the styles but the cascade makes sure they display
    the desktop styles (if your using a mobile first approach to layering the media queries)
*/
/*  ==========================================================================
    Mixins:Rem
    ==========================================================================

    A small mixin for easy use of rem with px as fallback
    usage: @include x-rem(font-size, 14px)
    usage: @include x-rem(marign, 0 12px 2 1.2)
    usage: @include x-rem(padding, 1.5 24px)

    thanks to Eric Meyer for https://github.com/ericam/susy
    and Hans Christian Reinl for http://drublic.de/blog/rem-fallback-sass-less/

    set $base-font-size outside of the mixin in your variables file
*/
/*  ==========================================================================
    Mixins:Visually Hidden
    ========================================================================== */
/* ------------------------------------------------------------ *\
	Components
\* ------------------------------------------------------------ */
.blog-page-hero .less-pad-bot-and-top {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
@media (min-width: 80em) {
  .blog-page-hero .less-pad-bot-and-top {
    padding-top: 3rem !important;
    padding-bottom: 1rem !important;
  }
}
.blog-page-hero .flex-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .blog-page-hero .flex-row {
    flex-direction: row;
  }
}
.blog-page-hero .flex-row .flex-column {
  width: 100%;
}
@media (min-width: 56.25em) {
  .blog-page-hero .flex-row .flex-column {
    width: 50%;
  }
}
.blog-page-hero .flex-row .left {
  display: flex;
  align-items: flex-start;
  padding-right: 30px;
}
.blog-page-hero .flex-row .left h1, .blog-page-hero .flex-row .left h2, .blog-page-hero .flex-row .left h3 {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 40px;
  text-align: center;
}
@media (min-width: 34.375em) {
  .blog-page-hero .flex-row .left h1, .blog-page-hero .flex-row .left h2, .blog-page-hero .flex-row .left h3 {
    font-size: 60px;
    text-align: left;
  }
}
@media (min-width: 80em) {
  .blog-page-hero .flex-row .left h1, .blog-page-hero .flex-row .left h2, .blog-page-hero .flex-row .left h3 {
    font-size: 72px;
  }
}
.blog-page-hero .flex-row .left p {
  line-height: normal;
  letter-spacing: normal;
  font-size: 17px;
}
@media (min-width: 56.25em) {
  .blog-page-hero .flex-row .left p {
    font-size: 20px;
  }
}
.blog-page-hero .flex-row .left .header_link {
  font-size: 20px;
  line-height: 1.2;
  color: black;
  text-decoration: underline;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
}
.blog-page-hero .flex-row .right {
  max-height: 480px;
  overflow: hidden;
}
.blog-page-hero .flex-row .right img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

.blog-page-content .blog-filter-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 2rem;
}
@media (min-width: 34.375em) {
  .blog-page-content .blog-filter-block {
    flex-wrap: nowrap;
  }
}
@media (min-width: 80em) {
  .blog-page-content .blog-filter-block {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.blog-page-content .blog-filter-block .blog-filter-column {
  text-align: center;
  display: flex;
  padding: 10px 0px 10px 0px;
  width: 32%;
}
@media (min-width: 34.375em) {
  .blog-page-content .blog-filter-block .blog-filter-column {
    padding: 10px 10px 10px 10px;
    width: 100%;
  }
}
.blog-page-content .blog-filter-block .blog-filter-column .blog-filter-button {
  cursor: pointer;
  padding-top: 13px;
  padding-bottom: 13px;
  background: #E4E4E5;
  border-radius: 30px;
  width: 100%;
  font-size: 20px;
  color: black;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: normal;
}
.blog-page-content .blog-filter-block .blog-filter-column .blog-filter-button:hover {
  background: black;
  color: white;
}
.blog-page-content .blog-filter-block .blog-filter-column .blog-filter-button.active {
  background: black;
  color: white;
}
.blog-page-content .blogs-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
}
.blog-page-content .blogs-grid .blog-single {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 34.375em) {
  .blog-page-content .blogs-grid .blog-single {
    width: 48%;
    margin-right: 2%;
  }
}
@media (min-width: 80em) {
  .blog-page-content .blogs-grid .blog-single {
    width: 32%;
    margin-right: 1.3%;
  }
}
.blog-page-content .blogs-grid .blog-single .blog-image {
  height: 250px;
  overflow: hidden;
  text-align: center;
}
.blog-page-content .blogs-grid .blog-single .blog-image a {
  height: 100%;
  width: 100%;
}
.blog-page-content .blogs-grid .blog-single .blog-image a img {
  height: 100%;
  width: auto;
  object-fit: cover;
  width: 400px;
}
.blog-page-content .blogs-grid .blog-single .blog-text > a {
  display: block;
  margin-top: 10px;
}
.blog-page-content .blogs-grid .blog-single .blog-text h2 {
  color: black;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: normal;
  padding: 0px;
  margin: 15px 0px 15px 0px;
}
.blog-page-content .blogs-grid .blog-single .blog-text p {
  color: black;
  font-size: 16px;
  font-weight: 100;
  line-height: normal;
  letter-spacing: normal;
  padding: 0px;
  margin: 0px 0px 15px 0px;
}
.blog-page-content .blogs-grid .blog-single .blog-text .header_link {
  font-size: 16px;
  line-height: 1.2;
  color: black;
  text-decoration: underline;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
}
.blog-page-content .blog-view-more-container {
  width: 100%;
  margin-top: 2rem;
  text-align: center;
}
.blog-page-content .blog-view-more-container .blog-view-more-button {
  background: black;
  color: white;
  border: 1px solid black;
  padding: 20px 50px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 24px;
  cursor: pointer;
  font-size: 20px;
}
@media (min-width: 34.375em) {
  .blog-page-content .blog-view-more-container .blog-view-more-button {
    font-size: 24px;
  }
}
.blog-page-content .blog-view-more-container .blog-view-more-button:hover {
  background: white;
  color: black;
}
.blog-page-content .no-results {
  text-align: center;
  color: black;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: normal;
  padding: 0px;
  margin: 15px 0px 15px 0px;
}

.single-blog-content {
  position: relative;
  width: 100%;
  max-width: 1420px;
  margin: auto auto;
  margin-top: 4rem;
}
@media (min-width: 34.375em) {
  .single-blog-content {
    margin-top: 6rem;
  }
}
.single-blog-content .content-banner {
  background: black;
  height: 450px;
  padding: 2rem 0px 2rem 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-blog-content .content-banner * {
  color: white;
  text-align: center;
  display: block;
}
.single-blog-content .content-banner .post-title-box {
  width: 100%;
  display: flex;
  justify-content: center;
}
.single-blog-content .content-banner .post-title {
  max-width: 1080px;
  margin: auto auto;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  margin: 0px;
  font-size: 42px;
  padding: 0px 2rem 2rem 2rem;
}
@media (min-width: 80em) {
  .single-blog-content .content-banner .post-title {
    font-size: 62px;
    padding: 0px 0px 2rem 0px;
  }
}
.single-blog-content .content-banner .post-date {
  line-height: 1;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px 0px 2rem 0px;
  letter-spacing: normal;
  font-size: 22px;
}
@media (min-width: 34.375em) {
  .single-blog-content .content-banner .post-date {
    font-size: 30px;
  }
}
.single-blog-content .content-banner .post-excerpt {
  margin: 0px;
  padding: 0px 0px 2rem 0px;
  letter-spacing: normal;
  width: 100%;
  line-height: 1;
  font-size: 16px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
}
@media (min-width: 34.375em) {
  .single-blog-content .content-banner .post-excerpt {
    font-size: 25px;
  }
}
.single-blog-content .content-banner .post-excerpt a {
  display: inline-block;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1;
}
.single-blog-content .content-banner .post-excerpt a:hover {
  text-decoration: underline;
}
.single-blog-content .content-banner .post-image {
  width: 100%;
  position: relative;
  z-index: 100;
}
.single-blog-content .content-banner .post-image img {
  max-width: 1220px;
  margin: auto auto;
  box-shadow: 0px 0px 5px 1px rgba(123, 123, 123, 0.5);
  -webkit-box-shadow: 0px 0px 5px 1px rgba(123, 123, 123, 0.5);
  -moz-box-shadow: 0px 0px 5px 1px rgba(123, 123, 123, 0.5);
  height: auto;
  width: 100%;
}
@media (min-width: 34.375em) {
  .single-blog-content .content-banner .post-image img {
    height: 380px;
    width: auto;
  }
}
@media (min-width: 80em) {
  .single-blog-content .content-banner .post-image img {
    height: 480px;
    width: auto;
  }
}
.single-blog-content .content {
  position: relative;
  margin-top: 0;
}
.single-blog-content .content .post-image {
  padding: 0 0 2rem 0;
}
.single-blog-content .content p img {
  width: auto;
  display: block;
  margin: 0 auto;
}
.single-blog-content .content .row {
  max-width: 850px;
  margin: auto auto;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  font-size: 22px;
  color: black;
  padding: 2rem 2rem 2rem 2rem;
}
.single-blog-content .content .row span, .single-blog-content .content .row p {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-weight: 100 !important;
  letter-spacing: normal;
  color: black;
}
.single-blog-content .content .row h1, .single-blog-content .content .row h2, .single-blog-content .content .row h3, .single-blog-content .content .row h4 {
  margin-top: 1rem;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  color: black;
  font-size: 40px;
}
.single-blog-content .content .row a {
  color: black;
}

.custom-headline-products-block {
  padding: 4rem 2rem 4rem 2rem;
}
@media (min-width: 80em) {
  .custom-headline-products-block {
    padding: 6rem 0px 6rem 0px;
  }
}
.custom-headline-products-block .section-title h3 {
  text-align: center;
  color: black !important;
  text-transform: uppercase !important;
  font-size: 72px !important;
  line-height: 1;
  padding-bottom: 0px !important;
  margin-bottom: 2rem;
}
.custom-headline-products-block .section-title p {
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 100%;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  color: black !important;
  font-size: 25px !important;
  text-align: left !important;
}
.custom-headline-products-block .custom-headline-products-grid {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.custom-headline-products-block .custom-headline-products-grid.nowrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 56.25em) {
  .custom-headline-products-block .custom-headline-products-grid.nowrap {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.custom-headline-products-block .custom-headline-products-grid.nowrap a {
  margin-left: 10px;
  margin-right: 0px;
  width: 47%;
}
@media (min-width: 34.375em) {
  .custom-headline-products-block .custom-headline-products-grid.nowrap a {
    margin-left: 5px;
    margin-right: 5px;
    width: 47%;
  }
}
@media (min-width: 56.25em) {
  .custom-headline-products-block .custom-headline-products-grid.nowrap a {
    margin-left: 5px;
    margin-right: 5px;
    width: 100%;
  }
}
.custom-headline-products-block .custom-headline-products-grid .product {
  width: 100%;
}
.custom-headline-products-block .custom-headline-products-grid .product .product-over {
  margin: auto auto;
  text-align: center;
  width: 140px;
  height: 140px;
}
@media (min-width: 34.375em) {
  .custom-headline-products-block .custom-headline-products-grid .product .product-over {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 83.75em) {
  .custom-headline-products-block .custom-headline-products-grid .product .product-over {
    height: 300px;
    width: 300px;
  }
}
.custom-headline-products-block .custom-headline-products-grid .product .product-over img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: 100% !important;
  object-fit: cover;
}
.custom-headline-products-block .custom-headline-products-grid .product .product-title {
  text-align: center;
  margin-top: 1rem;
  font-size: 28px;
}
.custom-headline-products-block .custom-headline-products-grid .product .product-title,
.custom-headline-products-block .custom-headline-products-grid .product .product-subtitle {
  color: black;
}
.custom-headline-products-block .custom-headline-products-grid .product .product-over-content {
  z-index: 2;
}
.custom-headline-products-block .custom-headline-products-grid .product .new-product-tag {
  background: white;
  border-radius: 100%;
  color: black;
  z-index: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 25px;
  line-height: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  font-weight: bold;
}
.custom-headline-products-block .custom-headline-products-grid .product .new-product-tag.dark {
  background: black;
  color: white;
}
.custom-headline-products-block .custom-headline-products-grid .table-cell {
  background: white;
  width: 140px;
  height: 140px;
}
@media (min-width: 34.375em) {
  .custom-headline-products-block .custom-headline-products-grid .table-cell {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 83.75em) {
  .custom-headline-products-block .custom-headline-products-grid .table-cell {
    height: 300px;
    width: 300px;
  }
}
.custom-headline-products-block .custom-headline-products-grid .table-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  height: 100% !important;
  object-fit: cover;
}
.custom-headline-products-block .custom-headline-products-grid .table-cell.dark {
  background: rgba(0, 0, 0, 0.3) !important;
}
.custom-headline-products-block .custom-headline-products-grid .table-cell.dark .product-title,
.custom-headline-products-block .custom-headline-products-grid .table-cell.dark .product-subtitle {
  color: white !important;
}
.custom-headline-products-block .view-more-container {
  width: 100%;
  margin-top: 4rem;
  text-align: center;
}
.custom-headline-products-block .view-more-container .view-more-button {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 20px 50px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  cursor: pointer;
  font-size: 20px;
}
@media (min-width: 34.375em) {
  .custom-headline-products-block .view-more-container .view-more-button {
    font-size: 24px;
  }
}
.custom-headline-products-block .view-more-container .view-more-button:hover {
  background: white;
  color: black;
}

@media screen and (min-width: 0px) and (max-width: 479px) {
  .mobile-no-overlay {
    opacity: 0 !important;
  }
}
.padding-instagram {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .padding-instagram {
    flex-direction: row;
  }
}
.padding-instagram h4 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}
@media (min-width: 34.375em) {
  .padding-instagram h4 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}

#menu-menu-footer-mobile li {
  padding-bottom: 0px;
  margin-bottom: 1.5rem;
}
#menu-menu-footer-mobile li a {
  width: 100%;
  display: inline-block;
  background-image: url("../../images/arrow-down-black.png");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: 95% 50%;
  font-weight: 100;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 26px;
}
#menu-menu-footer-mobile li a:hover {
  text-decoration: none;
}

.featured_products_block {
  position: relative;
  padding: 4rem 100px;
  background: black;
  max-width: 1220px;
  margin: 0 auto;
}
.featured_products_block .title {
  color: white;
  text-align: left;
  padding-left: 15px;
  text-transform: uppercase;
}
.featured_products_block .controls * {
  position: absolute;
  background: transparent;
  height: 40px;
  width: 40px;
  z-index: 1000;
  background-position-x: 5px;
  background-position-y: 5px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.featured_products_block .controls .slider-prev-featured-products-carousel {
  background-image: url("../../images/left-arrow-white.svg");
  left: 0px;
  top: 50%;
}
.featured_products_block .controls .slider-next-featured-products-carousel {
  background-image: url("../../images/right-arrow-white.svg");
  right: 0px;
  top: 50%;
}
.featured_products_block ul.slick-dots {
  display: none !important;
}
.featured_products_block .sliders .single-slide {
  height: auto;
  padding: 15px;
}
.featured_products_block .sliders .single-slide .product-over {
  border: 2px solid white;
  margin: auto auto;
  width: 140px;
  height: 140px;
}
@media (min-width: 34.375em) {
  .featured_products_block .sliders .single-slide .product-over {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 83.75em) {
  .featured_products_block .sliders .single-slide .product-over {
    height: 300px;
    width: 300px;
  }
}
.featured_products_block .sliders .single-slide .product-over .table-cell {
  background: black;
  width: 140px;
  height: 140px;
}
@media (min-width: 34.375em) {
  .featured_products_block .sliders .single-slide .product-over .table-cell {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 83.75em) {
  .featured_products_block .sliders .single-slide .product-over .table-cell {
    height: 300px;
    width: 300px;
  }
}
.featured_products_block .sliders .single-slide .product-over .table-cell img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
  opacity: 0.4;
  margin: auto auto;
}
.featured_products_block .sliders .single-slide .product-over .table-cell .product-title.adjust_title_margin {
  position: relative;
  top: -125px;
}
@media (min-width: 34.375em) {
  .featured_products_block .sliders .single-slide .product-over .table-cell .product-title.adjust_title_margin {
    top: -150px;
  }
}
@media (min-width: 80em) {
  .featured_products_block .sliders .single-slide .product-over .table-cell .product-title.adjust_title_margin {
    top: -175px;
  }
}
.featured_products_block .sliders .single-slide .product-over .product-over-content {
  z-index: 2;
}
.featured_products_block .sliders .single-slide .product-over .new-product-tag {
  background: white;
  border-radius: 100%;
  color: black;
  z-index: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 25px;
  line-height: 70px;
  width: 70px;
  height: 70px;
  font-weight: bold;
  text-align: center;
}
.featured_products_block .sliders .single-slide .product-over .new-product-tag.dark {
  background: black;
  color: white;
}
.featured_products_block .sliders .single-slide .product-over img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
}
.featured_products_block .sliders .single-slide .product-title {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: white;
  text-align: center;
}
.featured_products_block .view-more-container {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.featured_products_block .view-more-container .view-more-button {
  background: black;
  color: white;
  border: 1px solid white;
  padding: 20px 50px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  cursor: pointer;
  font-size: 20px;
}
@media (min-width: 34.375em) {
  .featured_products_block .view-more-container .view-more-button {
    font-size: 24px;
  }
}
.featured_products_block .view-more-container .view-more-button:hover {
  background: white;
  color: black;
}
.featured_products_block.light {
  background: white;
}
.featured_products_block.light .title {
  color: black;
}
.featured_products_block.light .sliders .single-slide .product-title {
  color: black;
}
.featured_products_block.light .view-more-button {
  border: 1px solid black;
}

@media (max-width: 1160px) {
  .featured_products_block {
    padding: 2rem;
  }
  .featured_products_block .sliders .single-slide .product-over {
    width: 100%;
    max-height: 300px;
    max-width: 300px;
  }
}
.featured_recipes_block {
  max-width: 1220px;
  margin: auto auto;
  padding: 4rem 100px;
  background: black;
}
.featured_recipes_block .title {
  color: white;
  text-align: left;
}
.featured_recipes_block .sliders .single-slide {
  height: 420px;
  padding: 20px;
}
.featured_recipes_block .sliders .single-slide .img {
  height: 370px;
  overflow: hidden;
}
.featured_recipes_block .sliders .single-slide .img img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}
.featured_recipes_block .sliders .single-slide .recipe-title {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: white;
  text-align: center;
}

.food-service-products-grid .table-cell {
  background: white;
}
.food-service-products-grid .table-cell img {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}
.food-service-products-grid .table-cell.dark {
  background: rgba(0, 0, 0, 0.3) !important;
}
.food-service-products-grid .table-cell.dark .product-title,
.food-service-products-grid .table-cell.dark .product-subtitle {
  color: white !important;
}

/** home page inline styles - start **/
.popup-inner {
  max-width: 800px;
}

.popup-button {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 13px 40px;
  font-size: 20px;
  text-transform: uppercase;
  border: 2px solid #fff;
  line-height: 1.9;
  display: inline-block;
  width: 90%;
}

.popup-button:hover {
  background-color: #000;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#home-hero h3,
#home-hero p {
  color: #fff;
}

#home-hero h1 {
  color: #fff;
}

#home-hero h1 span {
  display: block;
  -webkit-animation: slide-in-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
  animation: slide-in-right 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
#about-us .button,
.home-products-styles .button,
.retailers-wrapper .button {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 7px 30px;
  font-size: 16px;
  text-transform: uppercase;
  border: 2px solid #000;
  line-height: 1.9;
  display: inline-block;
  margin: 20px 0;
}

#about-us,
.home-products-styles .padding {
  padding-top: 20px;
}

#about-us h2, #about-us h3 {
  font-size: 40px;
}

#about-us, column-width-1-2 {
  align-items: flex-start !important;
}

#about-us p {
  color: #fff;
}

#about-us .button {
  border-color: #fff;
}

.retailers-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 20px;
  justify-content: left;
  align-items: baseline;
}

.retailers-grid-single {
  width: 16%;
  padding-left: 25px;
  box-sizing: border-box;
  margin: 10px auto;
}

.retailers-grid-single img {
  filter: grayscale(100%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.retailers-grid-single:hover img {
  filter: grayscale(0%);
}

.home-products-styles h3 {
  font-size: 40px;
  color: #fff;
  text-align: center;
  letter-spacing: -4px;
  line-height: 1;
}

.home-products-styles p {
  color: #fff;
  font-size: 40px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 20px auto !important;
  padding: 0;
}

.home-product .table-cell {
  text-align: center;
}

.product-subtitle {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.button.view-products-btn {
  border: 1px solid #fff;
  text-transform: inherit;
  font-size: 24px;
  padding: 20px 50px;
  margin: 40px 0;
}

.retailers-wrapper .button.view-products-btn {
  background-color: #fff;
  color: #000;
  border-color: #000;
  margin-top: 70px;
}

@media only screen and (max-width: 767px) {
  #about-us h2 {
    font-size: 40px;
  }
  #awards h3 {
    font-size: 35px;
  }
  .retailers-grid-single {
    width: 33%;
  }
  .home-products-styles h3 {
    font-size: 40px;
  }
  .home-products-styles p {
    font-size: 30px;
    max-width: 100%;
  }
  .button.view-products-btn {
    font-size: 18px;
  }
}
.product-title {
  font-size: 18px;
  margin-top: 20px;
}

.wrapper h1, .wrapper h2, .wrapper h3, .wrapper p {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
}

@media (max-width: 960px) {
  p {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
.cols-footer-mid p {
  padding-bottom: 5px;
}

.home-products-styles .padding {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .padding {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (min-width: 80em) {
  .home-products-styles .padding {
    padding-left: 7% !important;
    padding-right: 7% !important;
  }
}
.home-products-styles .section-title h3 {
  color: black !important;
  text-transform: uppercase !important;
  padding-bottom: 0px !important;
  margin-top: 30px;
  letter-spacing: normal;
  font-size: 30px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .section-title h3 {
    font-size: 40px !important;
  }
}
.home-products-styles .section-title p {
  color: black !important;
  text-align: center !important;
  font-size: 22px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .section-title p {
    font-size: 25px !important;
  }
}
.home-products-styles .page-product-grid {
  margin-top: 3rem;
  margin-bottom: 1rem;
}
@media (min-width: 34.375em) {
  .home-products-styles .page-product-grid {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}
.home-products-styles .page-product-grid.nowrap a .product {
  background: transparent !important;
  width: 100% !important;
}
.home-products-styles .page-product-grid.nowrap a .product .product-over {
  margin: auto auto !important;
  width: 140px !important;
  height: 140px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .page-product-grid.nowrap a .product .product-over {
    width: 250px !important;
    height: 250px !important;
  }
}
@media (min-width: 83.75em) {
  .home-products-styles .page-product-grid.nowrap a .product .product-over {
    width: 300px !important;
    height: 300px !important;
  }
}
.home-products-styles .page-product-grid.nowrap a .product .product-over img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
}
.home-products-styles .page-product-grid.nowrap a .table-cell {
  padding-top: 5% !important;
  width: 140px !important;
  height: 140px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .page-product-grid.nowrap a .table-cell {
    width: 250px !important;
    height: 250px !important;
  }
}
@media (min-width: 83.75em) {
  .home-products-styles .page-product-grid.nowrap a .table-cell {
    width: 300px !important;
    height: 300px !important;
  }
}
.home-products-styles .page-product-grid.nowrap a .table-cell img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
}
.home-products-styles .product-title {
  color: black !important;
  font-size: 28px !important;
  margin-top: 1rem !important;
}
.home-products-styles .home-product {
  width: 100% !important;
  margin-left: 10px !important;
  margin-right: 10px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .home-product {
    width: 30% !important;
    margin-left: 1.5% !important;
    margin-right: 1.5% !important;
  }
}
.home-products-styles .product-over {
  padding: 1%;
  width: 100% !important;
  overflow: hidden !important;
  height: 240px;
}
@media (min-width: 80em) {
  .home-products-styles .product-over {
    height: 300px;
  }
}
.home-products-styles .product-over img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover;
}
.home-products-styles .table-cell {
  padding-top: 5% !important;
  height: 240px;
}
@media (min-width: 80em) {
  .home-products-styles .table-cell {
    height: 290px;
  }
}
.home-products-styles .table-cell img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
  opacity: 0.4;
}
.home-products-styles .table-cell .product-title.adjust_title_margin {
  position: relative;
  top: -125px;
}
@media (min-width: 34.375em) {
  .home-products-styles .table-cell .product-title.adjust_title_margin {
    top: -150px;
  }
}
@media (min-width: 80em) {
  .home-products-styles .table-cell .product-title.adjust_title_margin {
    top: -175px;
  }
}
.home-products-styles .view-products-btn {
  display: inline-block !important;
  background: black !important;
  color: white !important;
  border: 1px solid black !important;
  padding: 20px 50px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  margin-top: 0px !important;
  font-size: 20px !important;
}
@media (min-width: 34.375em) {
  .home-products-styles .view-products-btn {
    font-size: 24px !important;
    margin-top: 20px !important;
  }
}
.home-products-styles .view-products-btn:hover {
  background: white !important;
  color: black !important;
}

@media (max-width: 545px) {
  .home-products-styles .product-title {
    font-size: 28px !important;
  }
}
@media (max-width: 810px) {
  .home-products-styles .padding {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
/** home page inline styles - end **/
.home-about-us-section .page-row {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 56.25em) {
  .home-about-us-section .page-row {
    flex-direction: row;
  }
}
.home-about-us-section .page-row .column-width-1-2 {
  margin-bottom: 1rem;
}
.home-about-us-section .page-row h2, .home-about-us-section .page-row h3 {
  color: black !important;
  line-height: normal !important;
  font-size: 30px;
}
@media (min-width: 34.375em) {
  .home-about-us-section .page-row h2, .home-about-us-section .page-row h3 {
    font-size: 40px;
  }
}
.home-about-us-section .page-row p {
  color: black !important;
  font-size: 22px !important;
}
@media (min-width: 34.375em) {
  .home-about-us-section .page-row p {
    font-size: 25px !important;
  }
}
.home-about-us-section .page-row .button {
  background: black !important;
  color: white !important;
  border: 1px solid black !important;
  padding: 20px 50px !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  cursor: pointer !important;
  font-size: 20px !important;
}
@media (min-width: 34.375em) {
  .home-about-us-section .page-row .button {
    font-size: 24px !important;
  }
}
.home-about-us-section .page-row .button:hover {
  background: white !important;
  color: black !important;
}

.home-recipes-styles .section-title {
  text-align: center;
}
.home-recipes-styles .section-title p {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  color: white !important;
  font-size: 30px !important;
  text-align: center !important;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .section-title p {
    font-size: 40px !important;
    text-align: left !important;
  }
}
.home-recipes-styles .section-title h1, .home-recipes-styles .section-title h2, .home-recipes-styles .section-title h3, .home-recipes-styles .section-title h4 {
  color: white !important;
  font-size: 30px !important;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .section-title h1, .home-recipes-styles .section-title h2, .home-recipes-styles .section-title h3, .home-recipes-styles .section-title h4 {
    font-size: 40px !important;
  }
}
.home-recipes-styles .padding {
  padding: 2rem;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .padding {
    padding: 75px 100px 90px 100px;
  }
}
.home-recipes-styles .recipes-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.home-recipes-styles .recipes-row a {
  width: 48% !important;
  margin-left: 0px !important;
  margin-right: 0px !important;
}
@media (min-width: 56.25em) {
  .home-recipes-styles .recipes-row a {
    width: 30% !important;
    margin-left: 1.5% !important;
    margin-right: 1.5% !important;
  }
}
.home-recipes-styles .recipes-row a .home-recipes {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-recipes-styles .recipes-row a .home-recipes .recipes-over {
  padding: 1%;
  overflow: hidden !important;
  width: 100% !important;
  height: 150px !important;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .recipes-row a .home-recipes .recipes-over {
    width: 250px !important;
    height: 250px !important;
  }
}
@media (min-width: 83.75em) {
  .home-recipes-styles .recipes-row a .home-recipes .recipes-over {
    height: 300px !important;
    width: 300px !important;
  }
}
.home-recipes-styles .recipes-row a .home-recipes .recipes-over img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover;
}
.home-recipes-styles .recipes-row a .home-recipes .table-cell {
  text-align: left !important;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .recipes-row a .home-recipes .table-cell {
    text-align: center !important;
  }
}
.home-recipes-styles .recipes-row a .home-recipes .table-cell .recipes-title {
  color: white !important;
  margin-top: 0px !important;
  font-size: 22px !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .recipes-row a .home-recipes .table-cell .recipes-title {
    font-size: 28px !important;
  }
}
.home-recipes-styles .view-recipes-btn {
  display: inline-block !important;
  background: black !important;
  color: white !important;
  border: 1px solid white !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
  padding: 1rem 2rem !important;
  margin-top: 3rem !important;
}
@media (min-width: 34.375em) {
  .home-recipes-styles .view-recipes-btn {
    padding: 30px 50px !important;
    margin-top: 60px !important;
  }
}
.home-recipes-styles .view-recipes-btn:hover {
  background: white !important;
  color: black !important;
}

.home-text-graph-section {
  padding-bottom: 50px !important;
}
.home-text-graph-section .column-width-1-3 {
  width: 100% !important;
}
@media (min-width: 56.25em) {
  .home-text-graph-section .column-width-1-3 {
    width: 33% !important;
  }
}
.home-text-graph-section .column-width-1-3 h3 {
  font-size: 40px !important;
}
.home-text-graph-section .column-width-1-3 p {
  font-family: "roboto_condensedregular", Arial, Helvetica, sans-serif;
  font-size: 25px !important;
}
.home-text-graph-section .column-width-2-3 {
  width: 100% !important;
}
@media (min-width: 56.25em) {
  .home-text-graph-section .column-width-2-3 {
    width: 66% !important;
  }
}

.home-counter-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-counter-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.home-counter-section iframe {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
}
.home-counter-section .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.home-counter-section .page-row {
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.home-counter-section .page-row * {
  color: white;
  text-align: center;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
}
.home-counter-section .page-row h2, .home-counter-section .page-row h3 {
  font-size: 40px;
}
.home-counter-section .page-row .counter_value_container span {
  background: white;
  color: black;
  margin-left: 3px;
  margin-right: 3px;
  display: inline-block;
  padding: 10px 5px;
  font-size: 18px !important;
  width: 15px !important;
}
@media (min-width: 34.375em) {
  .home-counter-section .page-row .counter_value_container span {
    font-size: 40px !important;
    width: 40px !important;
  }
}
.home-counter-section .page-row .counter_btn_container {
  padding-top: 3rem;
}
.home-counter-section .page-row .counter_btn_container a {
  display: inline-block;
  min-width: 200px;
  border: 1px solid white;
  background: transparent;
  font-weight: bold;
  font-size: 20px;
  padding: 1rem 2rem !important;
}
@media (min-width: 34.375em) {
  .home-counter-section .page-row .counter_btn_container a {
    padding: 30px 50px !important;
  }
}
.home-counter-section .page-row .counter_btn_container a:hover {
  background: white;
  color: black;
}

.retailers-wrapper {
  padding: 2rem 0px 2rem 0px;
}
@media (min-width: 80em) {
  .retailers-wrapper {
    padding: 4rem 1rem 4rem 1rem;
  }
}
@media (min-width: 80em) {
  .retailers-wrapper {
    padding: 4rem 0px 4rem 0px;
  }
}
.retailers-wrapper h3 {
  text-align: center;
}
@media (min-width: 56.25em) {
  .retailers-wrapper h3 {
    text-align: left;
  }
}
.retailers-wrapper .padding {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.retailers-wrapper .max-width .retailers-grid {
  align-items: flex-start !important;
}
.retailers-wrapper .retailers-grid .retailers-grid-single {
  padding: 0px !important;
  background: #F2F2F4 !important;
  margin: 0 auto;
  width: 100px !important;
  height: 100px !important;
}
@media (min-width: 34.375em) {
  .retailers-wrapper .retailers-grid .retailers-grid-single {
    width: 180px !important;
    height: 180px !important;
  }
}
.retailers-wrapper .retailers-grid .retailers-grid-single a {
  height: 90% !important;
  padding: 10px !important;
  display: flex !important;
  align-items: center !important;
  transition: none !important;
}
.retailers-wrapper .retailers-grid .retailers-grid-single a img {
  display: block !important;
  margin: 0px !important;
  filter: unset !important;
}
.retailers-wrapper .retailers-grid .retailers-grid-single a .retailers-grid-single-overlay {
  display: none !important;
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
  background: #099E4E !important;
  color: white !important;
  justify-content: center !important;
  align-items: center !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
}
.retailers-wrapper .retailers-grid .retailers-grid-single a:hover {
  padding: 0px !important;
  height: 100% !important;
}
.retailers-wrapper .retailers-grid .retailers-grid-single a:hover img {
  display: none !important;
}
.retailers-wrapper .retailers-grid .retailers-grid-single a:hover .retailers-grid-single-overlay {
  display: flex !important;
}
.retailers-wrapper .view-more-container {
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.retailers-wrapper .view-retailers-btn {
  background: black !important;
  color: white !important;
  border: 1px solid black !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  margin: 3rem 0 1rem 0 !important;
  font-size: 20px !important;
  padding: 1rem 2rem !important;
}
@media (min-width: 34.375em) {
  .retailers-wrapper .view-retailers-btn {
    font-size: 24px !important;
    padding: 30px 50px !important;
  }
}
.retailers-wrapper .view-retailers-btn:hover {
  background: white !important;
  color: black !important;
}

.home-counter-section .padding {
  padding: 100px;
}

@media (max-width: 545px) {
  .home-counter-section .padding {
    padding: 2rem;
  }
}
.footer-socials-title {
  background: white;
}
.footer-socials-title h3 {
  text-align: center !important;
  margin: 0px !important;
  padding: 70px 0px 0px 0px !important;
}

.home-social-icons-wrapper .padding-instagram {
  padding: 1rem !important;
  display: flex !important;
  justify-content: center;
  flex-direction: row !important;
}
@media (min-width: 34.375em) {
  .home-social-icons-wrapper .padding-instagram {
    padding: 40px !important;
  }
}
.home-social-icons-wrapper .padding-instagram h4 {
  padding: 1rem !important;
}

.social-section-wrapper {
  background: white !important;
}
.social-section-wrapper .padding {
  padding-top: 0px !important;
}
.social-section-wrapper .socials-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
.social-section-wrapper .socials-grid .socials-grid-single {
  width: 33% !important;
}

#mc-embedded-subscribe {
  padding: 10px 27px 10px 27px !important;
}
#mc-embedded-subscribe:hover {
  background: black !important;
  color: white !important;
}

#home-hero {
  overflow: hidden;
  position: relative;
  max-width: 1420px;
  margin: 0 auto;
  height: 200px;
}
@media (min-width: 34.375em) {
  #home-hero {
    height: 460px;
  }
}
#home-hero .banner-top .padding {
  padding: 0px 2rem 0px 2rem !important;
}
#home-hero .banner-top .padding .controls * {
  position: absolute;
  background: transparent;
  height: 40px;
  width: 40px;
  z-index: 1000;
  background-position-x: 5px;
  background-position-y: 5px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  cursor: pointer;
}
#home-hero .banner-top .padding .controls .slider-prev-hero-carousel {
  background-image: url("../../images/left-arrow-white.svg");
  left: 0px;
  top: 50%;
}
#home-hero .banner-top .padding .controls .slider-next-hero-carousel {
  background-image: url("../../images/right-arrow-white.svg");
  right: 0px;
  top: 50%;
}
#home-hero .banner-top img {
  object-fit: contain !important;
  height: 180px !important;
}
@media (min-width: 34.375em) {
  #home-hero .banner-top img {
    height: 440px !important;
  }
}
#home-hero .banner-top video {
  object-fit: contain !important;
  height: 180px !important;
}
@media (min-width: 34.375em) {
  #home-hero .banner-top video {
    height: 440px !important;
  }
}

.wired-container-width {
  max-width: 1420px;
  margin: 0 auto;
}

.home-popup {
  z-index: 10000 !important;
  background: black;
  max-width: 100vw;
}
.home-popup .bg-signup {
  padding: 0px !important;
}
.home-popup .home-popup-content {
  padding: 2rem 2rem 0px 2rem;
  border: 1px solid white;
  min-height: 400px;
  max-width: calc(100vw - 4rem - 10px);
}
.home-popup .home-popup-content .popup-flex {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .home-popup .home-popup-content .popup-flex {
    flex-direction: row;
  }
}
.home-popup .home-popup-content .popup-flex .popup-col {
  height: 100%;
  font-weight: normal;
  overflow: hidden;
  text-align: center;
}
.home-popup .home-popup-content .popup-flex .popup-col:first-child {
  margin-right: 10px;
  width: 100% !important;
  max-height: 180px !important;
}
@media (min-width: 34.375em) {
  .home-popup .home-popup-content .popup-flex .popup-col:first-child {
    width: 40% !important;
    max-height: 100% !important;
  }
}
.home-popup .home-popup-content .popup-flex .popup-col:first-child img {
  height: 100%;
  width: unset;
  object-fit: contain;
}
@media (min-width: 34.375em) {
  .home-popup .home-popup-content .popup-flex .popup-col:first-child img {
    height: unset;
    width: 100%;
  }
}
.home-popup .home-popup-content .popup-flex .popup-col:last-child {
  align-items: center;
  display: flex;
}
.home-popup .home-popup-content .popup-flex .popup-col * {
  color: white;
}
.home-popup .home-popup-content .popup-flex .popup-col h3 {
  padding: 0px;
}
.home-popup .home-popup-content .popup-flex .popup-col p {
  font-size: 18px;
  padding: 0px;
  line-height: normal;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex {
  display: flex;
  flex-direction: column;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content {
  position: relative;
  margin-bottom: 20px !important;
  display: block;
  width: 100% !important;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .popup-email {
  display: block !important;
  width: calc(100% - 2rem) !important;
  border: 0px;
  border-bottom: 1px solid white;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .submit {
  border: 1px solid white;
  background: white;
  color: black;
  font-weight: bold;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .submit:hover {
  color: white;
  background: black;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .popup-btn {
  background: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .popup-btn:hover {
  color: black;
  background: white;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .button {
  padding: 15px !important;
  margin: 0px !important;
  width: 220px !important;
  display: inline-block !important;
  text-align: center !important;
  border: 2px solid white !important;
}
.home-popup .home-popup-content .popup-flex .popup-col .pop-form-flex .block-content .popup-footnote {
  font-size: 14px;
}

.sausage-divider {
  background-image: url("../../images/MKT263_Row of saussies-small.png");
  background-repeat: repeat-x;
  background-size: auto 50.3px;
  width: 100%;
  height: 50px;
  margin: auto auto;
  margin-top: 40px;
}

@media (max-width: 545px) {
  .padding-footer {
    padding: 2rem !important;
  }
}
@media (max-width: 900px) {
  .padding {
    padding: 2rem !important;
  }
}
.header-menu-spacer {
  width: 30px;
  display: none;
}
@media (min-width: 56.25em) {
  .header-menu-spacer {
    display: block;
  }
}

.menu-item-object-custom:last-child {
  padding-right: 0px !important;
}

.mobile-social-nav {
  position: absolute;
  left: 0px;
  top: 1rem;
}

.page-product-banner {
  padding: 1rem 2rem 0px 2rem;
}
@media (min-width: 34.375em) {
  .page-product-banner {
    padding: 1rem 2rem 1rem 2rem;
  }
}
@media (min-width: 80em) {
  .page-product-banner {
    padding: 1rem 0px 1rem 0px;
  }
}
.page-product-banner h1 {
  text-align: center;
}
@media (min-width: 34.375em) {
  .page-product-banner h1 {
    text-align: left;
  }
}

.page-product-container {
  padding: 0px 0px !important;
}
@media (min-width: 34.375em) {
  .page-product-container {
    padding: 60px 2rem !important;
  }
}
@media (min-width: 80em) {
  .page-product-container {
    padding: 60px 100px !important;
  }
}
.page-product-container .text-block-full {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 34.375em) {
  .page-product-container .text-block-full {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.page-product-container .header-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 56.25em) {
  .page-product-container .header-row {
    flex-direction: row;
  }
}
.page-product-container .header-row .left {
  width: 100%;
}
@media (min-width: 56.25em) {
  .page-product-container .header-row .left {
    width: 50%;
  }
}
.page-product-container .header-row .right {
  width: 100%;
}
@media (min-width: 56.25em) {
  .page-product-container .header-row .right {
    width: 50%;
  }
}
.page-product-container .header-row .right .max-width {
  padding-left: 0px;
  padding-right: 0px;
}
.page-product-container .header-row .right .customer-image-flex {
  flex-wrap: nowrap;
  flex-direction: row;
}
.page-product-container h1, .page-product-container h2, .page-product-container h3, .page-product-container p, .page-product-container span {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
}
.page-product-container .text-block-full p {
  max-width: 100% !important;
}
.page-product-container .awards-wrapper {
  background: #F3F3F3 !important;
  padding: 1rem;
}
@media (min-width: 34.375em) {
  .page-product-container .awards-wrapper {
    padding: 2rem;
  }
}
.page-product-container .awards-wrapper h3 {
  text-align: center;
  padding: 0px;
  margin: 0px 0px 2rem 0px;
}
.page-product-container .awards-wrapper .awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .page-product-container .awards-wrapper .awards-grid {
    flex-wrap: nowrap;
  }
}
.page-product-container .awards-wrapper .awards-grid img {
  margin: 5px;
  width: 75px;
  height: 75px;
}
@media (min-width: 34.375em) {
  .page-product-container .awards-wrapper .awards-grid img {
    width: 90px;
    height: 90px;
  }
}
@media (min-width: 56.25em) {
  .page-product-container .awards-wrapper .awards-grid img {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 80em) {
  .page-product-container .awards-wrapper .awards-grid img {
    width: 125px;
    height: 125px;
  }
}

.page-product-header {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 34.375em) {
  .page-product-header {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.page-product-grid {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: left !important;
  gap: 10px;
}
@media (min-width: 34.375em) {
  .page-product-grid {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.page-product-grid.nowrap {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
@media (min-width: 56.25em) {
  .page-product-grid.nowrap {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
  }
}
.page-product-grid.nowrap a {
  margin-left: 10px;
  margin-right: 0px;
  width: 47%;
}
@media (min-width: 34.375em) {
  .page-product-grid.nowrap a {
    margin-left: 5px;
    margin-right: 5px;
  }
}
@media (min-width: 56.25em) {
  .page-product-grid.nowrap a {
    margin-left: 5px;
    margin-right: 5px;
    width: 100%;
  }
}
.page-product-grid.nowrap a .product {
  background: transparent;
  width: 100%;
}
.page-product-grid.nowrap a .product .product-over {
  margin: auto auto;
  width: 140px;
  height: 140px;
}
@media (min-width: 34.375em) {
  .page-product-grid.nowrap a .product .product-over {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 83.75em) {
  .page-product-grid.nowrap a .product .product-over {
    height: 300px;
    width: 300px;
  }
}
.page-product-grid.nowrap a .product .product-over img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
}
.page-product-grid.nowrap a .product .product-title {
  text-align: center;
}
.page-product-grid.nowrap a .table-cell {
  padding-top: 5% !important;
  height: 140px;
  height: 140px;
}
@media (min-width: 34.375em) {
  .page-product-grid.nowrap a .table-cell {
    width: 250px;
    height: 250px;
  }
}
@media (min-width: 83.75em) {
  .page-product-grid.nowrap a .table-cell {
    height: 300px;
    width: 300px;
  }
}
.page-product-grid.nowrap a .table-cell img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
}
.page-product-grid a {
  width: 47%;
}
@media (min-width: 34.375em) {
  .page-product-grid a {
    width: 32%;
  }
}
.page-product-grid a .product {
  width: 100% !important;
}
.page-product-grid a .product .product-over {
  background: black;
  text-align: center;
  width: 100%;
  height: 250px;
}
@media (min-width: 56.25em) {
  .page-product-grid a .product .product-over {
    height: 300px;
  }
}
@media (min-width: 80em) {
  .page-product-grid a .product .product-over {
    height: 350px;
  }
}
.page-product-grid a .product .product-over img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
}
.page-product-grid a .product .product-title {
  margin-top: 1rem;
  font-size: 28px;
}
.page-product-grid a .product .product-title,
.page-product-grid a .product .product-subtitle {
  color: black;
}
.page-product-grid a .product .product-over-content {
  z-index: 2;
}
.page-product-grid a .product .new-product-tag {
  background: white;
  border-radius: 100%;
  color: black;
  z-index: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 25px;
  line-height: 70px;
  width: 70px;
  height: 70px;
  font-weight: bold;
  text-align: center;
}
.page-product-grid a .product .new-product-tag.dark {
  background: black;
  color: white;
}
.page-product-grid a .table-cell {
  background: black;
  width: 100%;
  height: 250px;
}
@media (min-width: 56.25em) {
  .page-product-grid a .table-cell {
    height: 300px;
  }
}
@media (min-width: 80em) {
  .page-product-grid a .table-cell {
    height: 350px;
  }
}
.page-product-grid a .table-cell img {
  max-width: 95% !important;
  max-height: 95% !important;
  height: 95% !important;
  object-fit: cover !important;
  opacity: 0.4;
}
.page-product-grid a .table-cell .product-title,
.page-product-grid a .table-cell .product-subtitle {
  color: white !important;
}
.page-product-grid a .table-cell .product-title.adjust_title_margin {
  position: relative;
  top: -125px;
}
@media (min-width: 34.375em) {
  .page-product-grid a .table-cell .product-title.adjust_title_margin {
    top: -150px;
  }
}
@media (min-width: 80em) {
  .page-product-grid a .table-cell .product-title.adjust_title_margin {
    top: -175px;
  }
}
.page-product-grid a .table-cell .product-title.adjust_title_margin_large {
  position: relative;
  top: -140px;
}
@media (min-width: 34.375em) {
  .page-product-grid a .table-cell .product-title.adjust_title_margin_large {
    top: -140px;
  }
}
@media (min-width: 56.25em) {
  .page-product-grid a .table-cell .product-title.adjust_title_margin_large {
    top: -165px;
  }
}
@media (min-width: 80em) {
  .page-product-grid a .table-cell .product-title.adjust_title_margin_large {
    top: -185px;
  }
}
.page-product-grid a .table-cell.dark {
  background: rgb(0, 0, 0) !important;
}

.new-product-tag {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
}

.product-top-section .left .single-product.new-product-tag {
  background: white;
  border-radius: 100%;
  color: black;
  z-index: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 25px;
  line-height: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  font-weight: bold;
}
.product-top-section .left:hover .new-product-tag.dark {
  background: black;
  color: white;
}

@media (max-width: 545px) {
  .new-product-tag {
    display: none !important;
  }
  .page-product-grid.nowrap a {
    margin-left: 0px;
    margin-right: 0px;
  }
  .page-product-grid.nowrap a .product {
    max-height: 350px;
  }
}
@media (max-width: 1420px) {
  .page-product-grid .product .product-over {
    max-height: 350px;
  }
}
.product-page-breadcrumbs {
  padding: 0px 2rem 0px 2rem !important;
}
@media (min-width: 56.25em) {
  .product-page-breadcrumbs {
    padding: 2rem 2rem 0px 2rem !important;
  }
}
.product-page-breadcrumbs a {
  text-transform: uppercase;
}

.product-top-section {
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 2rem 2rem !important;
}
@media (min-width: 56.25em) {
  .product-top-section {
    flex-direction: row;
  }
}
@media (min-width: 80em) {
  .product-top-section {
    padding: 2rem 4rem 2rem 4rem !important;
  }
}
.product-top-section .left {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}
@media (min-width: 56.25em) {
  .product-top-section .left {
    width: 45%;
  }
}
.product-top-section .left .controls * {
  position: absolute;
  background: transparent;
  height: 40px;
  width: 40px;
  z-index: 1000;
  background-position-x: 5px;
  background-position-y: 5px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.product-top-section .left .controls .slider-prev-packshot-carousel {
  background-image: url("../../images/left-arrow-white.svg");
  left: 0px;
  top: 50%;
}
@media (min-width: 34.375em) {
  .product-top-section .left .controls .slider-prev-packshot-carousel {
    top: 240px;
  }
}
.product-top-section .left .controls .slider-next-packshot-carousel {
  background-image: url("../../images/right-arrow-white.svg");
  right: 0px;
  top: 50%;
}
@media (min-width: 34.375em) {
  .product-top-section .left .controls .slider-next-packshot-carousel {
    top: 240px;
  }
}
.product-top-section .left .packshot-slider .single-slide {
  overflow: hidden;
  height: 300px;
  width: 100%;
}
@media (min-width: 34.375em) {
  .product-top-section .left .packshot-slider .single-slide {
    height: 480px;
    width: 480px;
  }
}
.product-top-section .left .packshot-slider .single-slide img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 34.375em) {
  .product-top-section .left .packshot-slider .single-slide img {
    height: 480px;
  }
}
.product-top-section .left .packshot-slider .slick-dots {
  position: relative !important;
  margin-top: -60px !important;
}
.product-top-section .right {
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 56.25em) {
  .product-top-section .right {
    width: 55%;
    padding-left: 55px;
    padding-right: 20px;
  }
}
.product-top-section .right h1, .product-top-section .right h2, .product-top-section .right h3, .product-top-section .right h4 {
  color: black;
  line-height: normal;
  padding-bottom: 10px;
}
.product-top-section .right .article_title {
  font-size: 40px;
  text-align: center;
}
@media (min-width: 34.375em) {
  .product-top-section .right .article_title {
    text-align: left;
  }
}
.product-top-section .right .article_title .trademark {
  margin-top: 2px !important;
  vertical-align: top;
  display: inline-block;
  font-size: 30px;
}
.product-top-section .right .article_subtitle {
  font-size: 32px;
  color: #099E4E;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .product-top-section .right .article_subtitle {
    justify-content: left;
  }
}
.product-top-section .right .article_subtitle .trademark {
  margin-top: -7px !important;
  vertical-align: top;
  display: inline-block;
  font-size: 22px;
}
.product-top-section .right .article_subtitle * {
  font-size: 32px;
}
.product-top-section .right .article_subtitle img {
  height: 26px;
  width: 32px;
}
.product-top-section .right .article_paragraph {
  font-size: 20px;
  padding-bottom: 20px;
}
.product-top-section .right .article_paragraph * {
  font-size: 20px;
}
.product-top-section .right .article_paragraph p {
  padding-bottom: 0px;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  letter-spacing: normal;
  text-align: center;
}
@media (min-width: 34.375em) {
  .product-top-section .right .article_paragraph p {
    text-align: left;
  }
}
.product-top-section .right .product_icons_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: left;
  padding-bottom: 20px;
}
.product-top-section .right .product_icons_container img {
  height: auto;
  width: 120px;
  margin-right: 15px;
}
.product-top-section .right .shop-now-btn-container {
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 34.375em) {
  .product-top-section .right .shop-now-btn-container {
    justify-content: left;
    flex-wrap: nowrap;
  }
}
.product-top-section .right .shop-now-btn-container .find-near-me-btn,
.product-top-section .right .shop-now-btn-container .recipes-btn,
.product-top-section .right .shop-now-btn-container .shop-now-btn {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  min-width: 130px;
  padding: 13px;
  margin-right: 10px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 1rem;
}
.product-top-section .right .shop-now-btn-container .recipes-btn {
  color: black;
  background: #E4E4E5;
}
.product-top-section .right .shop-now-btn-container .shop-now-btn {
  background: #099E4E;
  color: #fff;
  width: 100%;
}
@media (min-width: 34.375em) {
  .product-top-section .right .shop-now-btn-container .shop-now-btn {
    width: auto;
  }
}
.product-top-section .right .shop-now-btn-container .find-near-me-btn {
  background: black;
  color: #fff;
}
.product-top-section .right .shop-now-btn-container .find-near-me-btn:hover,
.product-top-section .right .shop-now-btn-container .shop-now-btn:hover {
  color: black;
  background: #E4E4E5;
}
.product-top-section .right .shop-now-btn-container .recipes-btn:hover {
  background: black;
  color: #fff;
}

@media (max-width: 900px) {
  .product-top-section {
    padding: 2rem;
  }
}
.this-accordion {
  border-bottom: 1px solid black;
}

.this-accordion-row {
  border-top: 1px solid black;
}

.this-accordion-title {
  padding: 20px 0;
}
.this-accordion-title h3 {
  padding-bottom: 0 !important;
  text-transform: uppercase;
  font-size: 25px !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
}
.this-accordion-title .this-accordion-icon {
  float: right;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-image: url("../../images/icons/back-arr-black.svg");
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: 0px 10px;
  transform: rotate(-90deg);
}
.this-accordion-title .this-accordion-icon.open {
  transform: rotate(90deg);
  background-position: 15px 0px;
}

.this-accordion-content {
  display: none;
  padding-bottom: 20px;
}
.this-accordion-content li,
.this-accordion-content li span,
.this-accordion-content p,
.this-accordion-content p strong {
  font-size: 20px !important;
  font-family: "roboto", sans-serif !important;
  padding-bottom: 10px;
}
.this-accordion-content ol, .this-accordion-content ul {
  margin-left: 20px;
}
.this-accordion-content ol li, .this-accordion-content ul li {
  color: #000 !important;
}
.this-accordion-content div {
  font-size: 20px !important;
  font-family: "roboto", sans-serif !important;
}
.this-accordion-content b, .this-accordion-content strong {
  font-weight: bold !important;
}

.slick-dots {
  position: relative !important;
}
.slick-dots li {
  content: "";
  list-style-type: none !important;
  height: 10px !important;
  width: 10px !important;
  background: black;
  border: 1px solid white;
}
.slick-dots li.slick-active {
  background: white;
  border: 1px solid black;
}
.slick-dots li button {
  display: none !important;
}

.customer-image-flex {
  display: flex;
  flex-wrap: wrap;
}
.customer-image-flex a {
  margin-right: 10px;
  margin-bottom: 25px;
  flex: 0 0 11%;
}
.customer-image-flex img {
  object-fit: cover;
}

.bg-signup {
  max-width: 1420px;
  margin: auto auto;
}

.food-service-wholesaler-sliders {
  padding-left: 2rem;
  padding-right: 2rem;
}
.food-service-wholesaler-sliders .food-service-wholesaler-sliders-list .slick-track {
  height: 90px;
}
.food-service-wholesaler-sliders .slick-next {
  right: -40px;
}

.food-service-featured-sliders .slick-prev {
  z-index: 100;
  left: 0px;
}
.food-service-featured-sliders .slick-next {
  z-index: 100;
  right: 10px;
}

.recipe-page-hero {
  background: black;
}
.recipe-page-hero .less-pad-bot-and-top {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
@media (min-width: 80em) {
  .recipe-page-hero .less-pad-bot-and-top {
    padding-top: 3rem !important;
    padding-bottom: 1rem !important;
  }
}
.recipe-page-hero .flex-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 56.25em) {
  .recipe-page-hero .flex-row {
    flex-direction: row;
  }
}
.recipe-page-hero .flex-row .flex-column {
  width: 100%;
}
@media (min-width: 56.25em) {
  .recipe-page-hero .flex-row .flex-column {
    width: 50%;
  }
}
.recipe-page-hero .flex-row .left {
  display: flex;
  align-items: flex-start;
  padding-right: 30px;
  color: white;
}
.recipe-page-hero .flex-row .left h1, .recipe-page-hero .flex-row .left h2, .recipe-page-hero .flex-row .left h3 {
  color: white;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  line-height: 1;
  font-size: 40px;
  text-align: center;
}
@media (min-width: 34.375em) {
  .recipe-page-hero .flex-row .left h1, .recipe-page-hero .flex-row .left h2, .recipe-page-hero .flex-row .left h3 {
    font-size: 60px;
    text-align: left;
  }
}
@media (min-width: 80em) {
  .recipe-page-hero .flex-row .left h1, .recipe-page-hero .flex-row .left h2, .recipe-page-hero .flex-row .left h3 {
    font-size: 72px;
  }
}
.recipe-page-hero .flex-row .left p {
  color: white;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: normal;
  font-size: 17px;
  text-align: center;
}
@media (min-width: 80em) {
  .recipe-page-hero .flex-row .left p {
    text-align: left;
  }
}
@media (min-width: 56.25em) {
  .recipe-page-hero .flex-row .left p {
    font-size: 20px;
  }
}
.recipe-page-hero .flex-row .left .header_link {
  font-size: 20px;
  line-height: 1.2;
  color: black;
  text-decoration: underline;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
}
.recipe-page-hero .flex-row .right {
  max-height: 480px;
  overflow: hidden;
}
.recipe-page-hero .flex-row .right img {
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
}

#recipes .recipes-grid {
  flex-direction: row;
}
@media (min-width: 48em) {
  #recipes .recipes-grid {
    flex-direction: row;
  }
}
#recipes .recipes-grid .recipe-single {
  text-align: center;
  width: 45%;
}
@media (min-width: 34.375em) {
  #recipes .recipes-grid .recipe-single {
    width: 48%;
  }
}
@media (min-width: 56.25em) {
  #recipes .recipes-grid .recipe-single {
    width: 31%;
  }
}
#recipes .recipes-grid .recipe-single img {
  height: 300px;
  max-width: 100%;
  object-fit: contain;
}
#recipes .recipes-grid .recipe-single .post-title {
  color: white;
  text-transform: uppercase;
  line-height: 1;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  margin: 1rem 0px 2rem 0px;
  font-size: 28px;
}

.img-hidden {
  display: none;
}

.search-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.search-row > div {
  margin-right: 20px;
  margin-bottom: 10px;
}

#recipes,
#recipes h3,
#recipes .search-row select,
#recipes .recipe-single img {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

#recipes,
#recipes.dark-recipes {
  background: #000;
  color: #fff;
}

#recipes h3,
#recipes.dark-recipes h3 {
  color: #fff;
}

#recipes .search-row select,
#recipes.dark-recipes .search-row select {
  background: #333;
  color: #acacac;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='white'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat #333;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-size: 10px;
  background-position: right 0.5em top 60%;
}

#recipes .btn-default,
#recipes.dark-recipes .btn-default {
  background: #fff;
  color: #000;
}

#recipes .recipe-single img,
#recipes.dark-recipes .recipe-single img,
#recipes #recipes-search,
#recipes.dark-recipes #recipes-search {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.store-locator-order-last {
  order: unset;
}

.store-locator-col-sm-4:first-child {
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 56.25em) {
  .store-locator-col-sm-4:first-child {
    width: 63%;
    max-width: 63%;
    flex: 0 0 63%;
  }
}
.store-locator-col-sm-4:first-child .store_locator_name {
  font-size: 18px !important;
}

.store-locator-col-sm-4:nth-child(2) {
  width: 0px;
  max-width: 0px;
  flex: 0 0 0px;
  padding: 0px;
  margin: 0px;
}

.store-locator-col-sm-4:nth-child(3) {
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
@media (min-width: 56.25em) {
  .store-locator-col-sm-4:nth-child(3) {
    width: 37%;
    max-width: 37%;
    flex: 0 0 37%;
  }
}

.stockist-page-content #store_locator_result_list_box {
  padding-left: 0px;
  padding-right: 0px;
}
.stockist-page-content #store_locator_filter_open_close {
  display: none;
}
.stockist-page-content .page-header {
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.stockist-page-content .modal-body {
  padding: 0px !important;
}
.stockist-page-content .store-locator-row {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
  margin-right: 0px;
}
.stockist-page-content #store_locator_search_box {
  padding-left: 0px;
  padding-right: 0px;
}
@media (min-width: 34.375em) {
  .stockist-page-content #store_locator_search_box {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (min-width: 80em) {
  .stockist-page-content #store_locator_search_box {
    padding-left: 15%;
    padding-right: 15%;
  }
}
.stockist-page-content #store_locator_search_box .store-locator-row {
  flex-wrap: wrap;
  padding: 0px;
}
@media (min-width: 34.375em) {
  .stockist-page-content #store_locator_search_box .store-locator-row {
    flex-wrap: nowrap;
  }
}
.stockist-page-content #store_locator_result_list {
  max-height: 460px !important;
}
.stockist-page-content #store_locator_filter_categories {
  border: 1px solid black;
  background: transparent;
  margin-bottom: 0px;
}
.stockist-page-content #store_locator_address_field {
  border: 1px solid black;
  background: white;
}
.stockist-page-content .wordpress-store-locator-block-filter {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  flex: 0 0 100%;
}
@media (min-width: 34.375em) {
  .stockist-page-content .wordpress-store-locator-block-filter {
    flex: 0 0 40%;
  }
}
@media (min-width: 80em) {
  .stockist-page-content .wordpress-store-locator-block-filter {
    flex: 0 0 40%;
  }
}
.stockist-page-content .wordpress-store-locator-block-filter .store-locator-categories {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  background-image: url("../../images/arrow-down-black.png");
  background-repeat: no-repeat;
  background-size: 20px 10px;
  background-position: 95% 50%;
}
.stockist-page-content .wordpress-store-locator-block-address_field {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 100%;
}
@media (min-width: 34.375em) {
  .stockist-page-content .wordpress-store-locator-block-address_field {
    flex: 0 0 40%;
  }
}
@media (min-width: 80em) {
  .stockist-page-content .wordpress-store-locator-block-address_field {
    flex: 0 0 40%;
  }
}
.stockist-page-content .wordpress-store-locator-block-address_field .wordpress-store-locator-address-container {
  width: 100%;
}
.stockist-page-content .wordpress-store-locator-block-search_button {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  justify-content: center;
}
@media (min-width: 34.375em) {
  .stockist-page-content .wordpress-store-locator-block-search_button {
    flex: 0 0 20%;
    justify-content: left;
  }
}
@media (min-width: 80em) {
  .stockist-page-content .wordpress-store-locator-block-search_button {
    flex: 0 0 20%;
  }
}
.stockist-page-content .wordpress-store-locator-block-search_button #store_locator_find_stores_button {
  margin-top: 0px;
}
.stockist-page-content #retailers .banner,
.stockist-page-content #meal-delivery .banner,
.stockist-page-content #restaurants .banner {
  background: white;
  padding-left: 0px;
  padding-right: 0px;
}
.stockist-page-content #retailers .banner h3, .stockist-page-content #retailers .banner h4,
.stockist-page-content #meal-delivery .banner h3,
.stockist-page-content #meal-delivery .banner h4,
.stockist-page-content #restaurants .banner h3,
.stockist-page-content #restaurants .banner h4 {
  color: black;
}
.stockist-page-content #retailers .banner .stock-us,
.stockist-page-content #meal-delivery .banner .stock-us,
.stockist-page-content #restaurants .banner .stock-us {
  color: black;
}
.stockist-page-content #retailers .banner .stock-us h4,
.stockist-page-content #meal-delivery .banner .stock-us h4,
.stockist-page-content #restaurants .banner .stock-us h4 {
  font-family: "open-sans", sans-serif;
  font-size: 16px;
}
@media (min-width: 34.375em) {
  .stockist-page-content #retailers .banner .stock-us h4,
  .stockist-page-content #meal-delivery .banner .stock-us h4,
  .stockist-page-content #restaurants .banner .stock-us h4 {
    font-size: 20px;
  }
}
.stockist-page-content #retailers .banner .stock-us .button,
.stockist-page-content #meal-delivery .banner .stock-us .button,
.stockist-page-content #restaurants .banner .stock-us .button {
  background: black;
  color: white;
}
.stockist-page-content #retailers .banner .stock-us .button:hover,
.stockist-page-content #meal-delivery .banner .stock-us .button:hover,
.stockist-page-content #restaurants .banner .stock-us .button:hover {
  background: white;
  color: black;
}
.stockist-page-content #meal-delivery,
.stockist-page-content #restaurants {
  margin-top: 3rem;
}
.stockist-page-content .retailers-wrapper .view-more-container {
  padding-top: 30px !important;
}
.stockist-page-content .retailers-wrapper,
.stockist-page-content .meal-delivery-wrapper,
.stockist-page-content .restaurant-wrapper {
  padding: 0px 0px 2rem 0px !important;
}
.stockist-page-content .retailers-wrapper .button,
.stockist-page-content .meal-delivery-wrapper .button,
.stockist-page-content .restaurant-wrapper .button {
  display: inline;
}
.stockist-page-content .retailers-wrapper .retailers-list,
.stockist-page-content .meal-delivery-wrapper .retailers-list,
.stockist-page-content .restaurant-wrapper .retailers-list {
  margin-bottom: 0px !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid,
.stockist-page-content .meal-delivery-wrapper .retailers-grid,
.stockist-page-content .restaurant-wrapper .retailers-grid {
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single {
  padding: 0px !important;
  background: #F2F2F4 !important;
  margin: 0 !important;
  height: 90px !important;
  width: 90px !important;
}
@media (min-width: 25em) {
  .stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single,
  .stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single,
  .stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single {
    height: 100px !important;
    width: 100px !important;
  }
}
@media (min-width: 34.375em) {
  .stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single,
  .stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single,
  .stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single {
    height: 130px !important;
    width: 130px !important;
  }
}
@media (min-width: 80em) {
  .stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single,
  .stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single,
  .stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single {
    height: 185px !important;
    width: 185px !important;
  }
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single a,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single a,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single a {
  height: 90% !important;
  padding: 10px !important;
  display: flex !important;
  align-items: center !important;
  transition: none !important;
  justify-content: center !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single a img,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single a img,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single a img {
  display: block !important;
  margin: 0px !important;
  height: auto !important;
  width: auto !important;
  max-height: 100% !important;
  max-width: 100% !important;
  filter: unset !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single a .retailers-grid-single-overlay,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single a .retailers-grid-single-overlay,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single a .retailers-grid-single-overlay {
  display: none !important;
  height: 100% !important;
  width: 100% !important;
  position: relative !important;
  background: black !important;
  color: white !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  font-size: 24px !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single a:hover,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single a:hover,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single a:hover {
  padding: 0px !important;
  height: 100% !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single a:hover img,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single a:hover img,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single a:hover img {
  display: none !important;
}
.stockist-page-content .retailers-wrapper .retailers-grid .retailers-grid-single a:hover .retailers-grid-single-overlay,
.stockist-page-content .meal-delivery-wrapper .retailers-grid .retailers-grid-single a:hover .retailers-grid-single-overlay,
.stockist-page-content .restaurant-wrapper .retailers-grid .retailers-grid-single a:hover .retailers-grid-single-overlay {
  display: flex !important;
}
.stockist-page-content .view-more-container {
  width: 100% !important;
  margin-top: 2rem !important;
  margin-bottom: 0px !important;
  text-align: center !important;
}
.stockist-page-content .view-more-container .view-more-button {
  background: black !important;
  color: white !important;
  border: 1px solid black !important;
  padding: 20px 50px !important;
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif !important;
  cursor: pointer !important;
  font-size: 20px !important;
}
@media (min-width: 34.375em) {
  .stockist-page-content .view-more-container .view-more-button {
    font-size: 24px !important;
  }
}
.stockist-page-content .view-more-container .view-more-button:hover {
  background: white !important;
  color: black !important;
}
.stockist-page-content #search-restaurants {
  margin: 1rem auto;
  margin-bottom: 3rem;
}

.testimonials_sliders_with_summary_block {
  background: white;
  padding: 40px 80px 40px 80px !important;
}
.testimonials_sliders_with_summary_block .title {
  color: black;
  text-align: left;
}
.testimonials_sliders_with_summary_block .columns {
  display: flex;
  flex-direction: column;
}
@media (min-width: 34.375em) {
  .testimonials_sliders_with_summary_block .columns {
    flex-direction: row;
  }
}
.testimonials_sliders_with_summary_block .columns .left {
  padding-right: 100px;
  color: black;
  width: 100%;
}
@media (min-width: 34.375em) {
  .testimonials_sliders_with_summary_block .columns .left {
    width: 35%;
  }
}
.testimonials_sliders_with_summary_block .columns .left .title {
  font-weight: bold;
  font-size: 24px !important;
}
.testimonials_sliders_with_summary_block .columns .left .paragraph {
  padding-top: 10px;
  padding-bottom: 20px;
}
.testimonials_sliders_with_summary_block .columns .left .paragraph a {
  color: black;
  text-decoration: underline;
}
.testimonials_sliders_with_summary_block .columns .left .paragraph a:hover {
  text-decoration: none;
}
.testimonials_sliders_with_summary_block .columns .left .table-row {
  padding-bottom: 5px;
  display: flex;
  flex-direction: row;
}
.testimonials_sliders_with_summary_block .columns .left .table-row .table-data.text {
  width: 40px;
}
.testimonials_sliders_with_summary_block .columns .left .table-row .table-data.graph {
  margin-right: 10px;
  width: calc(100% - 90px);
}
.testimonials_sliders_with_summary_block .columns .left .table-row .table-data.graph.progressbar-container {
  background: #FAFAFA;
}
.testimonials_sliders_with_summary_block .columns .left .table-row .table-data.graph .progressbar-inner {
  background: black;
  height: 24px;
}
.testimonials_sliders_with_summary_block .columns .right {
  width: 100%;
}
@media (min-width: 34.375em) {
  .testimonials_sliders_with_summary_block .columns .right {
    width: 65%;
  }
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide {
  color: black;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-title {
  font-weight: bold;
  font-size: 20px !important;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-content {
  padding-top: 20px;
  padding-bottom: 20px;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-author {
  font-weight: bold;
  font-size: 16px !important;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback {
  padding-top: 20px;
  padding-bottom: 20px;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback .thumbs-up-btn,
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback .thumbs-down-btn {
  cursor: pointer;
  border: 1px solid black;
  padding: 10px;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback .thumbs-up-btn:hover,
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback .thumbs-down-btn:hover {
  background: black;
  color: white;
}
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback .thumbs-up-btn.clicked,
.testimonials_sliders_with_summary_block .columns .right .sliders .single-slide .testimonial-feedback .thumbs-down-btn.clicked {
  background: black;
  color: white;
}
.testimonials_sliders_with_summary_block .columns .right .testimonial-cta {
  padding-top: 20px;
}
.testimonials_sliders_with_summary_block .columns .right .testimonial-cta .cta-button {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  border: 1px solid black;
  background: black;
  color: white;
}
.testimonials_sliders_with_summary_block .columns .right .testimonial-cta .cta-button:hover {
  background: white;
  color: black;
}

.testimonials_sliders_block {
  position: relative;
  background: white;
  padding: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials_sliders_block .controls {
  position: relative;
}
.testimonials_sliders_block .columns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 2rem 0;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
}
.testimonials_sliders_block .columns .title {
  color: black;
  text-align: center;
  font-size: 32px;
  padding-bottom: 2rem;
}
.testimonials_sliders_block .columns .controls * {
  position: absolute;
  background: black;
  height: 40px;
  width: 40px;
  z-index: 1000;
  background-position-x: 5px;
  background-position-y: 5px;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.testimonials_sliders_block .columns .controls .slider-prev-testimonials-carousel {
  background-image: url("../../images/left-arrow-white.svg");
  left: 5px;
  top: 50%;
}
@media (min-width: 56.25em) {
  .testimonials_sliders_block .columns .controls .slider-prev-testimonials-carousel {
    left: 0;
  }
}
.testimonials_sliders_block .columns .controls .slider-next-testimonials-carousel {
  background-image: url("../../images/right-arrow-white.svg");
  right: 5px;
  top: 50%;
}
@media (min-width: 56.25em) {
  .testimonials_sliders_block .columns .controls .slider-next-testimonials-carousel {
    right: 0;
  }
}
.testimonials_sliders_block .columns .sliders .single-slide {
  color: black;
  text-align: center;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-rating {
  color: gold;
  padding-bottom: 20px;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-title {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 20px !important;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-content {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 100%;
  margin: auto auto;
}
@media (min-width: 34.375em) {
  .testimonials_sliders_block .columns .sliders .single-slide .testimonial-content {
    max-width: 70%;
  }
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-author {
  font-family: "Druk Text Web", Arial, Helvetica, sans-serif;
  font-size: 16px !important;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback {
  padding-top: 20px;
  padding-bottom: 20px;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback .thumbs-up-btn,
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback .thumbs-down-btn {
  cursor: pointer;
  border: 1px solid black;
  padding: 10px;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback .thumbs-up-btn:hover,
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback .thumbs-down-btn:hover {
  background: black;
  color: white;
}
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback .thumbs-up-btn.clicked,
.testimonials_sliders_block .columns .sliders .single-slide .testimonial-feedback .thumbs-down-btn.clicked {
  background: black;
  color: white;
}
.testimonials_sliders_block .columns .testimonial-cta {
  padding-top: 20px;
}
.testimonials_sliders_block .columns .testimonial-cta .cta-button {
  cursor: pointer;
  padding: 10px;
  border: 1px solid black;
  background: black;
  color: white;
}
.testimonials_sliders_block .columns .testimonial-cta .cta-button:hover {
  background: white;
  color: black;
}

@media (max-width: 900px) {
  .testimonials_sliders_block {
    padding: 2rem !important;
  }
}