/*** RTL websites ***/

/**
 * CSS Syntax: flex-start|flex-end|center|space-between|space-around|initial|inherit
 */

.lg-outer {
  direction: ltr;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

.slick-next,
.slick-prev {
  position: absolute;
  top: 50%;
  right: auto;
  left: auto;
  z-index: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: 4px solid #ffffff;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #eea903;
  -webkit-transition-property: background-color, color;
  transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

.slick-next:before,
.slick-prev:before {
  position: absolute;
  top: 50%;
  right: 50%;
  bottom: auto;
  left: auto;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  display: inline-block;
  color: #000000;
  font-size: 2rem;
  opacity: 1;
}

.slick-next:hover,
.slick-next:focus,
.slick-prev:hover,
.slick-prev:focus {
  background-color: #bc8502;
}

[dir=rtl] .slick-next {
  right: auto;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[dir=rtl] .slick-next:before {
  content: "\f053";
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

[dir=rtl] .slick-prev {
  right: 0;
  left: auto;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[dir=rtl] .slick-prev:before {
  content: "\f054";
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.slick-slide {
  height: auto;
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

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

*:before,
*:after {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #ffffff;
  direction: rtl;
  font-family: "Almoni_Neue", "Arial", sans-serif;
  font-weight: 400;
  overflow: visible;
  font-size: 1.8rem;
  color: #000000;
  line-height: 1.4;
  overflow-x: hidden;
}

@media screen and (min-color-index: 0) and (-webkit-min-device-pixel-ratio: 0) {
  body {
    font-variant-ligatures: none;
  }
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #eea903;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  cursor: none;
}

a:hover,
a:focus {
  cursor: pointer;
  text-decoration: underline;
}

a:not([class]):hover,
a:not([class]):focus {
  color: #eea903;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

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

.img-circle {
  border-radius: 50%;
}

hr {
  border: 0;
  border-top: 1px solid #e1e1e1;
  margin-top: 0px;
  margin-bottom: 0px;
}

hr:not([class^="m-"]) {
  margin-top: 25px;
  margin-bottom: 25px;
}

.sr-only,
.section__headline--sr-only,
.section__headline--sr-only * {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[role="button"] {
  cursor: pointer;
}

b,
strong {
  font-weight: 600;
}

picture {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: inherit;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 0;
  margin-bottom: 16.66667px;
}

h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
  font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
  font-size: 75%;
}

h1,
.h1 {
  font-size: 36px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
.h3 {
  font-size: 24px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 14px;
}

h6,
.h6 {
  font-size: 12px;
}

p {
  display: block;
  letter-spacing: normal;
  margin: 0 0 20px;
  font-style: normal;
  white-space: normal;
}

.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}

small,
.small {
  font-size: 85%;
}

mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}

ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

.list-unstyled {
  padding-right: 0px;
  padding-left: 0px;
  list-style: none;
}

.list-inline {
  padding-right: 0px;
  padding-left: 0px;
  list-style: none;
  margin-right: -5px;
}

.list-inline > li {
  display: inline-block;
  margin-right: 5px;
  margin-left: 5px;
}

dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 1.42857;
}

dt {
  font-weight: bold;
}

dd {
  margin-right: 0;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted currentColor;
}

blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: inherit;
  border-right: 5px solid;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: inherit;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

table {
  background-color: #ffffff;
}

caption {
  padding-right: 0px;
  padding-left: 0px;
  color: #000000;
  text-align: right;
}

th {
  text-align: right;
}

.table,
.food-energy__table,
.food-energy__table > thead > tr > th > table,
.food-energy__table > thead > tr > td > table,
.food-energy__table > tbody > tr > th > table,
.food-energy__table > tbody > tr > td > table,
.food-energy__table > tfoot > tr > th > table,
.food-energy__table > tfoot > tr > td > table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.table > thead > tr > th,
.food-energy__table > thead > tr > th,
.food-energy__table > thead > tr > th > table > thead > tr > th,
.food-energy__table > thead > tr > td > table > thead > tr > th,
.food-energy__table > tbody > tr > th > table > thead > tr > th,
.food-energy__table > tbody > tr > td > table > thead > tr > th,
.food-energy__table > tfoot > tr > th > table > thead > tr > th,
.food-energy__table > tfoot > tr > td > table > thead > tr > th,
.table > thead > tr > td,
.food-energy__table > thead > tr > td,
.food-energy__table > thead > tr > th > table > thead > tr > td,
.food-energy__table > thead > tr > td > table > thead > tr > td,
.food-energy__table > tbody > tr > th > table > thead > tr > td,
.food-energy__table > tbody > tr > td > table > thead > tr > td,
.food-energy__table > tfoot > tr > th > table > thead > tr > td,
.food-energy__table > tfoot > tr > td > table > thead > tr > td,
.table > tbody > tr > th,
.food-energy__table > tbody > tr > th,
.food-energy__table > thead > tr > th > table > tbody > tr > th,
.food-energy__table > thead > tr > td > table > tbody > tr > th,
.food-energy__table > tbody > tr > th > table > tbody > tr > th,
.food-energy__table > tbody > tr > td > table > tbody > tr > th,
.food-energy__table > tfoot > tr > th > table > tbody > tr > th,
.food-energy__table > tfoot > tr > td > table > tbody > tr > th,
.table > tbody > tr > td,
.food-energy__table > tbody > tr > td,
.food-energy__table > thead > tr > th > table > tbody > tr > td,
.food-energy__table > thead > tr > td > table > tbody > tr > td,
.food-energy__table > tbody > tr > th > table > tbody > tr > td,
.food-energy__table > tbody > tr > td > table > tbody > tr > td,
.food-energy__table > tfoot > tr > th > table > tbody > tr > td,
.food-energy__table > tfoot > tr > td > table > tbody > tr > td,
.table > tfoot > tr > th,
.food-energy__table > tfoot > tr > th,
.food-energy__table > thead > tr > th > table > tfoot > tr > th,
.food-energy__table > thead > tr > td > table > tfoot > tr > th,
.food-energy__table > tbody > tr > th > table > tfoot > tr > th,
.food-energy__table > tbody > tr > td > table > tfoot > tr > th,
.food-energy__table > tfoot > tr > th > table > tfoot > tr > th,
.food-energy__table > tfoot > tr > td > table > tfoot > tr > th,
.table > tfoot > tr > td,
.food-energy__table > tfoot > tr > td,
.food-energy__table > thead > tr > th > table > tfoot > tr > td,
.food-energy__table > thead > tr > td > table > tfoot > tr > td,
.food-energy__table > tbody > tr > th > table > tfoot > tr > td,
.food-energy__table > tbody > tr > td > table > tfoot > tr > td,
.food-energy__table > tfoot > tr > th > table > tfoot > tr > td,
.food-energy__table > tfoot > tr > td > table > tfoot > tr > td {
  padding: 5px 10px;
  line-height: 1.2;
  font-weight: 500;
  vertical-align: top;
  border-top: 1px solid #e1e1e1;
}

.table > thead > tr > th,
.food-energy__table > thead > tr > th,
.food-energy__table > thead > tr > th > table > thead > tr > th,
.food-energy__table > thead > tr > td > table > thead > tr > th,
.food-energy__table > tbody > tr > th > table > thead > tr > th,
.food-energy__table > tbody > tr > td > table > thead > tr > th,
.food-energy__table > tfoot > tr > th > table > thead > tr > th,
.food-energy__table > tfoot > tr > td > table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #e1e1e1;
}

.table > caption + thead > tr:first-child > th,
.food-energy__table > caption + thead > tr:first-child > th,
.food-energy__table > thead > tr > th > table > caption + thead > tr:first-child > th,
.food-energy__table > thead > tr > td > table > caption + thead > tr:first-child > th,
.food-energy__table > tbody > tr > th > table > caption + thead > tr:first-child > th,
.food-energy__table > tbody > tr > td > table > caption + thead > tr:first-child > th,
.food-energy__table > tfoot > tr > th > table > caption + thead > tr:first-child > th,
.food-energy__table > tfoot > tr > td > table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.food-energy__table > caption + thead > tr:first-child > td,
.food-energy__table > thead > tr > th > table > caption + thead > tr:first-child > td,
.food-energy__table > thead > tr > td > table > caption + thead > tr:first-child > td,
.food-energy__table > tbody > tr > th > table > caption + thead > tr:first-child > td,
.food-energy__table > tbody > tr > td > table > caption + thead > tr:first-child > td,
.food-energy__table > tfoot > tr > th > table > caption + thead > tr:first-child > td,
.food-energy__table > tfoot > tr > td > table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.food-energy__table > colgroup + thead > tr:first-child > th,
.food-energy__table > thead > tr > th > table > colgroup + thead > tr:first-child > th,
.food-energy__table > thead > tr > td > table > colgroup + thead > tr:first-child > th,
.food-energy__table > tbody > tr > th > table > colgroup + thead > tr:first-child > th,
.food-energy__table > tbody > tr > td > table > colgroup + thead > tr:first-child > th,
.food-energy__table > tfoot > tr > th > table > colgroup + thead > tr:first-child > th,
.food-energy__table > tfoot > tr > td > table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.food-energy__table > colgroup + thead > tr:first-child > td,
.food-energy__table > thead > tr > th > table > colgroup + thead > tr:first-child > td,
.food-energy__table > thead > tr > td > table > colgroup + thead > tr:first-child > td,
.food-energy__table > tbody > tr > th > table > colgroup + thead > tr:first-child > td,
.food-energy__table > tbody > tr > td > table > colgroup + thead > tr:first-child > td,
.food-energy__table > tfoot > tr > th > table > colgroup + thead > tr:first-child > td,
.food-energy__table > tfoot > tr > td > table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.food-energy__table > thead:first-child > tr:first-child > th,
.food-energy__table > thead > tr > th > table > thead:first-child > tr:first-child > th,
.food-energy__table > thead > tr > td > table > thead:first-child > tr:first-child > th,
.food-energy__table > tbody > tr > th > table > thead:first-child > tr:first-child > th,
.food-energy__table > tbody > tr > td > table > thead:first-child > tr:first-child > th,
.food-energy__table > tfoot > tr > th > table > thead:first-child > tr:first-child > th,
.food-energy__table > tfoot > tr > td > table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td,
.food-energy__table > thead:first-child > tr:first-child > td,
.food-energy__table > thead > tr > th > table > thead:first-child > tr:first-child > td,
.food-energy__table > thead > tr > td > table > thead:first-child > tr:first-child > td,
.food-energy__table > tbody > tr > th > table > thead:first-child > tr:first-child > td,
.food-energy__table > tbody > tr > td > table > thead:first-child > tr:first-child > td,
.food-energy__table > tfoot > tr > th > table > thead:first-child > tr:first-child > td,
.food-energy__table > tfoot > tr > td > table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.table > tbody + tbody,
.food-energy__table > tbody + tbody,
.food-energy__table > thead > tr > th > table > tbody + tbody,
.food-energy__table > thead > tr > td > table > tbody + tbody,
.food-energy__table > tbody > tr > th > table > tbody + tbody,
.food-energy__table > tbody > tr > td > table > tbody + tbody,
.food-energy__table > tfoot > tr > th > table > tbody + tbody,
.food-energy__table > tfoot > tr > td > table > tbody + tbody {
  border-top: 2px solid #e1e1e1;
}

.table .table,
.food-energy__table .table {
  background-color: #ffffff;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  position: relative;
  overflow: hidden;
  height: 40px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  background-color: red;
  border-radius: 0;
}

.progress__label,
.progress__value {
  position: absolute;
  top: 50%;
  right: 15px;
  left: 15px;
  display: inline-block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.progress__label {
  left: auto;
  padding-left: 5px;
  font-size: 112%;
}

.progress__value {
  right: auto;
  padding-right: 5px;
  font-weight: 600;
}

.progress-bar {
  position: relative;
  width: 0%;
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-align: center;
  background-color: #f5f5f5;
}

.progress.active .progress-bar,
.progress-bar.active {
  width: 100% !important;
}

.button,
.gform_footer .gform_button,
.post-thumbnail__thumbnail-button,
.store-showcase__button {
  -webkit-transition-property: background-color, color, border-color;
  transition-property: background-color, color, border-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.section__cover-image,
.thumbnail__thumbnail-cover-image,
.store-showcase__thumbnail-cover-image,
.timeline-article__cover-image,
.banner-ref__cover-image,
.banner-caption__cover-image,
.blog-post__thumbnail-cover-image,
.showcase__cover-image,
.stores-showcase__cover-image,
.thumbnails-slider__slide-cover-image,
.masthead__cover-image,
.section__cover,
.thumbnail__thumbnail-cover,
.store-showcase__thumbnail-cover,
.timeline-article__cover,
.banner-ref__cover,
.banner-caption__cover,
.blog-post__thumbnail-cover,
.showcase__cover,
.stores-showcase__cover,
.thumbnails-slider__slide-cover,
.masthead__cover {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.section__cover-image,
.thumbnail__thumbnail-cover-image,
.store-showcase__thumbnail-cover-image,
.timeline-article__cover-image,
.banner-ref__cover-image,
.banner-caption__cover-image,
.blog-post__thumbnail-cover-image,
.showcase__cover-image,
.stores-showcase__cover-image,
.thumbnails-slider__slide-cover-image,
.masthead__cover-image {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.gfield select,
.gfield textarea,
.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.singular-form__control,
.singular-form .singular-form__select select {
  display: block;
  width: 100%;
  height: 58px;
  padding: 6px 10px;
  border: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-family: "Almoni_Neue", "Arial", sans-serif;
  font-size: inherit;
  font-weight: 600;
  line-height: normal;
  color: #000000;
  background-color: #f6f6f6;
}

.gfield select::-webkit-input-placeholder,
.gfield textarea::-webkit-input-placeholder,
.gfield input:not([type=file]):not([type=image]):not([type=button]):not([type=submit]):not([type=checkbox]):not([type=radio])::-webkit-input-placeholder,
.singular-form__control::-webkit-input-placeholder,
.singular-form .singular-form__select select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.gfield select:-moz-placeholder,
.gfield textarea:-moz-placeholder,
.gfield input:-moz-placeholder:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.singular-form__control:-moz-placeholder,
.singular-form .singular-form__select select:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.gfield select::-moz-placeholder,
.gfield textarea::-moz-placeholder,
.gfield input:not([type=file]):not([type=image]):not([type=button]):not([type=submit]):not([type=checkbox]):not([type=radio])::-moz-placeholder,
.singular-form__control::-moz-placeholder,
.singular-form .singular-form__select select::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.gfield select:-ms-input-placeholder,
.gfield textarea:-ms-input-placeholder,
.gfield input:-ms-input-placeholder:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.singular-form__control:-ms-input-placeholder,
.singular-form .singular-form__select select:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.recipes-grid,
.blog-grid,
.gform_fields,
.gform_wrapper ul,
.helper-symbols,
.wpml-ls > ul,
.dropdown-menu,
.store-showcase__navigation,
.progress-bars__list,
.social-menu,
.soft-menu__list,
.previous-next,
.gallery__list,
.bullets__list,
.contact-info__navigation,
.contact-info__info,
.benefits__list,
.products-grid,
.stores-grid,
.media-grid,
.symbols__list,
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu,
.wpml-ls-legacy-dropdown-click > ul,
.site-navbar__menu-list,
.site-footer__contact-list,
.site-footer__menu-list,
.site-footer__logos-list {
  margin-bottom: 0;
  list-style: none;
  padding-right: 0;
  padding-left: 0;
}

img,
.post-thumbnail__thumbnail img,
.helper-symbols__symbol img,
.product-thumbnail__image img,
.store-showcase__navigation-ref img,
.bullet-card__image img,
.media-card__image img,
.benefit-article__icon img,
.banner-caption__image img,
.product-card__image-figure img,
.product-article__image img,
.author-info__image img,
.showcase__logo img,
.timeline__badge img,
.contact-info__icon img,
.contact-info__navigation-item > a img,
.symbol__image img,
.site-navbar__logo-ref img,
.site-footer__logo img,
.masthead__logo img,
.product__image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.store-showcase__info,
.store-showcase__headline,
.position__body-content,
.position__body-aside,
.timeline-article__thumbnail,
.timeline-article__content,
.bullet-card__col,
.media-card__col,
.product-article__image,
.product-article__body,
.stores-showcase__store,
.gallery__item,
.contact-info__navigation > li,
.contact-info__info > li,
.contact-info__navigation-item,
.contact-info__info-item,
.products-grid__item:not([class^="col-"]),
.stores-grid__item,
.recipes-grid__item:not([class^="col-"]),
.recipes-grid .recipes-grid__item,
.media-grid__item:not([class^="col-"]),
.blog-grid .blog-grid__item,
.site-footer__contact,
.site-footer__menu,
.site-footer__logos,
.site-footer__menu-list > li,
.site-footer__copyrights,
.site-footer__secondary,
.site-footer__craftedby,
.product__column,
.product__sidebar,
.product__content {
  position: relative;
  flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 100%;
  /* IE 10 */
  width: 100%;
  max-width: 100%;
}

.recipes-grid,
.blog-grid {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section__title,
.gform_title,
.contact-form__title,
.thumbnail__caption,
.post-thumbnail__title,
.product-thumbnail__title,
.store-showcase__label,
.store-showcase__title,
.position__title,
.timeline-article__title,
.benefit-article__title,
.product-card__title,
.product-article__content-label,
.product-article__title,
.media-card__content-title,
.blog-post__title,
.food-energy__title,
.last-blog-posts__title,
.masthead__title,
.product__title,
.section__headline,
.position__headline,
.gform_heading,
.contact-form__heading,
.thumbnail__headline,
.post-thumbnail__headline,
.store-showcase__headline,
.timeline-article__headline,
.benefit-article__headline,
.product-card__headline,
.product-article__headline,
.blog-post__headline,
.food-energy__headline,
.last-blog-posts__headline,
.product__headline {
  position: relative;
  display: block;
  line-height: 1;
}

.section__title,
.gform_title,
.contact-form__title,
.thumbnail__caption,
.post-thumbnail__title,
.product-thumbnail__title,
.store-showcase__label,
.store-showcase__title,
.position__title,
.timeline-article__title,
.benefit-article__title,
.product-card__title,
.product-article__content-label,
.product-article__title,
.media-card__content-title,
.blog-post__title,
.food-energy__title,
.last-blog-posts__title,
.masthead__title,
.product__title {
  font-size: inherit;
  margin-top: 0;
  margin-bottom: 0;
}

.section__title {
  line-height: 1.158;
  font-size: 100%;
  color: inherit;
  font-weight: 300;
}

.section__headline,
.position__headline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  font-size: 18px;
}

.section__row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.section,
.store-showcase__symbols,
.store-showcase__info,
.store-showcase,
.position,
.timeline-article,
.bullet-card,
.media-card,
.benefit-article,
.banner-ref,
.banner-caption,
.product-card,
.product-article,
.progress-bars,
.timeline__group,
.bullets,
.contact-info,
.contact-form,
.benefits,
.banners__slide,
.banners__slider,
.banners,
.thumbnails-slider__slide,
.thumbnails-slider__slider,
.thumbnails-slider,
.flexible__item,
.flexible,
.brand__section,
.brand {
  position: relative;
  display: block;
}

.banner-caption__container,
.site-footer__container,
.masthead__container,
.brand__container,
.site-container {
  position: relative;
  display: block;
  max-width: 1530px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.button,
.gform_footer .gform_button,
.post-thumbnail__thumbnail-button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: .556em 1em;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .button,
  .gform_footer .gform_button,
  .post-thumbnail__thumbnail-button {
    /* IE10+ CSS styles go here */
    padding: 0.7em 1em .4em;
  }
}

.button:hover,
.gform_footer .gform_button:hover,
.post-thumbnail__thumbnail-button:hover,
.button:focus,
.gform_footer .gform_button:focus,
.post-thumbnail__thumbnail-button:focus {
  text-decoration: none;
}

.button,
.gform_footer .gform_button {
  min-width: 16.4rem;
  color: #000000;
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.button:focus,
.gform_footer .gform_button:focus,
.button.focus,
.gform_footer .focus.gform_button {
  color: #000000;
  background-color: #d7d7d7;
  border-color: #b0b0b0;
}

.button:hover,
.gform_footer .gform_button:hover {
  color: #000000;
  background-color: #d7d7d7;
  border-color: #d1d1d1;
}

.button:active,
.gform_footer .gform_button:active,
.button.active,
.gform_footer .active.gform_button,
.open > .button.dropdown-toggle,
.gform_footer .open > .dropdown-toggle.gform_button {
  color: #000000;
  background-color: #d7d7d7;
  border-color: #d1d1d1;
}

.button:active:hover,
.gform_footer .gform_button:active:hover,
.button:active:focus,
.gform_footer .gform_button:active:focus,
.button:active.focus,
.gform_footer .gform_button:active.focus,
.button.active:hover,
.gform_footer .active.gform_button:hover,
.button.active:focus,
.gform_footer .active.gform_button:focus,
.button.active.focus,
.gform_footer .active.focus.gform_button,
.open > .button.dropdown-toggle:hover,
.gform_footer .open > .dropdown-toggle.gform_button:hover,
.open > .button.dropdown-toggle:focus,
.gform_footer .open > .dropdown-toggle.gform_button:focus,
.open > .button.dropdown-toggle.focus,
.gform_footer .open > .dropdown-toggle.focus.gform_button {
  color: #000000;
  background-color: #c5c5c5;
  border-color: #b0b0b0;
}

.button:active,
.gform_footer .gform_button:active,
.button.active,
.gform_footer .active.gform_button,
.open > .button.dropdown-toggle,
.gform_footer .open > .dropdown-toggle.gform_button {
  background-image: none;
}

.button.disabled:hover,
.gform_footer .disabled.gform_button:hover,
.button.disabled:focus,
.gform_footer .disabled.gform_button:focus,
.button.disabled.focus,
.gform_footer .disabled.focus.gform_button,
.button[disabled]:hover,
.gform_footer .gform_button[disabled]:hover,
.button[disabled]:focus,
.gform_footer .gform_button[disabled]:focus,
.button[disabled].focus,
.gform_footer .gform_button[disabled].focus,
fieldset[disabled] .button:hover,
fieldset[disabled] .gform_footer .gform_button:hover,
.gform_footer fieldset[disabled] .gform_button:hover,
fieldset[disabled] .button:focus,
fieldset[disabled] .gform_footer .gform_button:focus,
.gform_footer fieldset[disabled] .gform_button:focus,
fieldset[disabled] .button.focus,
fieldset[disabled] .gform_footer .focus.gform_button,
.gform_footer fieldset[disabled] .focus.gform_button {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

.button .badge,
.gform_footer .gform_button .badge {
  color: #f0f0f0;
  background-color: #000000;
}

.button--obverse {
  color: #000000;
  background-color: #ffffff;
  border-color: #f0f0f0;
}

.button--obverse:focus,
.button--obverse.focus {
  color: #000000;
  background-color: #e6e6e6;
  border-color: #b0b0b0;
}

.button--obverse:hover {
  color: #000000;
  background-color: #e6e6e6;
  border-color: #d1d1d1;
}

.button--obverse:active,
.button--obverse.active,
.open > .button--obverse.dropdown-toggle {
  color: #000000;
  background-color: #e6e6e6;
  border-color: #d1d1d1;
}

.button--obverse:active:hover,
.button--obverse:active:focus,
.button--obverse:active.focus,
.button--obverse.active:hover,
.button--obverse.active:focus,
.button--obverse.active.focus,
.open > .button--obverse.dropdown-toggle:hover,
.open > .button--obverse.dropdown-toggle:focus,
.open > .button--obverse.dropdown-toggle.focus {
  color: #000000;
  background-color: #d4d4d4;
  border-color: #b0b0b0;
}

.button--obverse:active,
.button--obverse.active,
.open > .button--obverse.dropdown-toggle {
  background-image: none;
}

.button--obverse.disabled:hover,
.button--obverse.disabled:focus,
.button--obverse.disabled.focus,
.button--obverse[disabled]:hover,
.button--obverse[disabled]:focus,
.button--obverse[disabled].focus,
fieldset[disabled] .button--obverse:hover,
fieldset[disabled] .button--obverse:focus,
fieldset[disabled] .button--obverse.focus {
  background-color: #ffffff;
  border-color: #f0f0f0;
}

.button--obverse .badge {
  color: #ffffff;
  background-color: #000000;
}

.button--primary,
.gform_footer .gform_button {
  color: #000000;
  background-color: #eea903;
  border-color: #eea903;
}

.button--primary:focus,
.gform_footer .gform_button:focus,
.button--primary.focus,
.gform_footer .focus.gform_button {
  color: #000000;
  background-color: #bc8502;
  border-color: #705001;
}

.button--primary:hover,
.gform_footer .gform_button:hover {
  color: #000000;
  background-color: #bc8502;
  border-color: #b27e02;
}

.button--primary:active,
.gform_footer .gform_button:active,
.button--primary.active,
.gform_footer .active.gform_button,
.open > .button--primary.dropdown-toggle,
.gform_footer .open > .dropdown-toggle.gform_button {
  color: #000000;
  background-color: #bc8502;
  border-color: #b27e02;
}

.button--primary:active:hover,
.gform_footer .gform_button:active:hover,
.button--primary:active:focus,
.gform_footer .gform_button:active:focus,
.button--primary:active.focus,
.gform_footer .gform_button:active.focus,
.button--primary.active:hover,
.gform_footer .active.gform_button:hover,
.button--primary.active:focus,
.gform_footer .active.gform_button:focus,
.button--primary.active.focus,
.gform_footer .active.focus.gform_button,
.open > .button--primary.dropdown-toggle:hover,
.gform_footer .open > .dropdown-toggle.gform_button:hover,
.open > .button--primary.dropdown-toggle:focus,
.gform_footer .open > .dropdown-toggle.gform_button:focus,
.open > .button--primary.dropdown-toggle.focus,
.gform_footer .open > .dropdown-toggle.focus.gform_button {
  color: #000000;
  background-color: #986c02;
  border-color: #705001;
}

.button--primary:active,
.gform_footer .gform_button:active,
.button--primary.active,
.gform_footer .active.gform_button,
.open > .button--primary.dropdown-toggle,
.gform_footer .open > .dropdown-toggle.gform_button {
  background-image: none;
}

.button--primary.disabled:hover,
.gform_footer .disabled.gform_button:hover,
.button--primary.disabled:focus,
.gform_footer .disabled.gform_button:focus,
.button--primary.disabled.focus,
.gform_footer .disabled.focus.gform_button,
.button--primary[disabled]:hover,
.gform_footer .gform_button[disabled]:hover,
.button--primary[disabled]:focus,
.gform_footer .gform_button[disabled]:focus,
.button--primary[disabled].focus,
.gform_footer .gform_button[disabled].focus,
fieldset[disabled] .button--primary:hover,
fieldset[disabled] .gform_footer .gform_button:hover,
.gform_footer fieldset[disabled] .gform_button:hover,
fieldset[disabled] .button--primary:focus,
fieldset[disabled] .gform_footer .gform_button:focus,
.gform_footer fieldset[disabled] .gform_button:focus,
fieldset[disabled] .button--primary.focus,
fieldset[disabled] .gform_footer .focus.gform_button,
.gform_footer fieldset[disabled] .focus.gform_button {
  background-color: #eea903;
  border-color: #eea903;
}

.button--primary .badge,
.gform_footer .gform_button .badge {
  color: #eea903;
  background-color: #000000;
}

.ripple {
  position: relative;
  overflow: hidden;
}

.-pre-ripple {
  display: block;
  position: absolute;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 0.35s;
  animation-duration: 0.35s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
}

@-webkit-keyframes ripple {
  to {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@-moz-keyframes ripple {
  to {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@-ms-keyframes ripple {
  to {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes ripple {
  to {
    -webkit-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

.section__content p:last-of-type,
.post-thumbnail__caption p:last-of-type,
.timeline-article__content p:last-of-type,
.bullet-card__content p:last-of-type,
.media-card__content p:last-of-type,
.product-article__content p:last-of-type {
  margin-bottom: 0;
}

.section__title {
  font-size: 200%;
}

.section__title:not([class]) {
  color: #000000;
}

.section__title--white {
  color: #ffffff;
}

.section__title--black {
  color: #000000;
}

.section__title--primary {
  color: #eea903;
}

.section__title--secondary {
  color: #502c1d;
}

.section--text-white {
  color: #ffffff;
}

.section--bg-white {
  background-color: #ffffff;
}

.section--text-black {
  color: #000000;
}

.section--bg-black {
  background-color: #000000;
}

.section--text-primary {
  color: #eea903;
}

.section--bg-primary {
  background-color: #eea903;
}

.section--text-secondary {
  color: #502c1d;
}

.section--bg-secondary {
  background-color: #502c1d;
}

.section--particle .section__headline {
  margin-bottom: 5px;
}

.section--particle .section__headline .section__title {
  font-size: 120%;
  line-height: 1;
  font-weight: 600;
}

.gfield select,
.gfield textarea,
.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  height: 46px;
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  font-size: 1em;
  font-weight: 700;
}

.gfield select::-webkit-input-placeholder,
.gfield textarea::-webkit-input-placeholder,
.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.gfield select:-moz-placeholder,
.gfield textarea:-moz-placeholder,
.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-moz-placeholder {
  /* Firefox 18- */
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.gfield select::-moz-placeholder,
.gfield textarea::-moz-placeholder,
.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.gfield select:-ms-input-placeholder,
.gfield textarea:-ms-input-placeholder,
.gfield input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.gfield textarea {
  resize: none;
  height: 148px;
}

.ginput_container_email input:focus,
.ginput_container_phone input:focus {
  direction: ltr;
  text-align: left;
}

select {
  /* for Firefox */
  /* for Chrome */
}

.gfield.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gfield.gfield_error textarea {
  border-color: red;
}

.gfield_checkbox {
  font-size: inherit;
}

.gfield_checkbox > li {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.gfield_checkbox > li [type="checkbox"],
.gfield_checkbox > li [type="checkbox"] {
  margin-top: 1px;
}

.gfield_checkbox > li [type="checkbox"] + label,
.gfield_checkbox > li [type="checkbox"] + label {
  margin-bottom: 0;
  margin-right: 4px;
  color: #7a7a7a;
  font-size: 85%;
  font-weight: 500;
}

.ginput_container {
  position: relative;
  display: block;
  width: 100%;
}

.gfield_label {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
}

.validation_message {
  display: block;
  margin-top: 5px;
  font-size: 80%;
}

.validation_message.gfield_description {
  color: red;
}

.gfield {
  position: relative;
  margin-bottom: 30px;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 100%;
  /* IE 10 */
  max-width: 100%;
}

.gfield.hidden_label .gfield_label {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.gfield.gfield_error input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gfield.gfield_error textarea {
  border-color: red;
}

.gform_fields {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.gform_fields > li {
  padding-right: 12px;
  padding-left: 12px;
}

.gform_description {
  display: block;
  line-height: 1.1;
  color: rgba(238, 169, 3, 0.7);
  font-weight: 400;
  font-size: 16px;
}

.gform_title,
.contact-form__title {
  font-size: 1.4em;
  font-weight: inherit;
}

.gform_heading,
.contact-form__heading {
  font-size: inherit;
  font-weight: inherit;
}

.validation_error {
  color: red;
  display: block;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
}

.gform_wrapper {
  position: relative;
  display: block;
  font-size: inherit;
  line-height: 1;
}

.gform_wrapper .ginput_container--ltr-focusin input,
.gform_wrapper .ginput_container--ltr-notempty input {
  direction: ltr;
  text-align: left;
}

.gform_wrapper .ginput_container--ltr-focusin input::-webkit-input-placeholder {
  color: transparent !important;
}

.gform_wrapper .ginput_container--ltr-focusin input:-moz-placeholder {
  /* Firefox 18- */
  color: transparent !important;
}

.gform_wrapper .ginput_container--ltr-focusin input::-moz-placeholder {
  /* Firefox 19+ */
  color: transparent !important;
}

.gform_wrapper .ginput_container--ltr-focusin input:-ms-input-placeholder {
  color: transparent !important;
}

.thumbnail__headline {
  margin-bottom: 5px;
}

.thumbnail__caption {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  padding: 1.2em 1.5em;
  line-height: 1;
  background-color: #ffffff;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.thumbnail__caption:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f054";
  margin-right: 5px;
  color: #cccccc;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  content: "\f053";
}

.thumbnail__thumbnail {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.thumbnail__thumbnail:before {
  display: block;
  padding-top: 55%;
  content: '';
}

.thumbnail__thumbnail-cover-image {
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}

.thumbnail {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  -webkit-transition-property: box-shadow, transform, color, background-color;
  transition-property: box-shadow, transform, color, background-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

.thumbnail:hover,
.thumbnail:focus {
  text-decoration: none;
  -webkit-box-shadow: 8px 9px 22px 3.5px rgba(0, 0, 0, 0.1);
  box-shadow: 8px 9px 22px 3.5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}

.post-thumbnail__title {
  font-size: 1.35em;
  font-weight: 600;
}

.post-thumbnail__title > a {
  display: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.post-thumbnail__title > a:hover,
.post-thumbnail__title > a:focus {
  text-decoration: none;
  color: #eea903;
}

.post-thumbnail__headline {
  margin-bottom: 5px;
}

.post-thumbnail__caption {
  padding: 1.5em 1.6em;
  line-height: 1.2;
}

.post-thumbnail__thumbnail {
  position: relative;
  display: block;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}

.post-thumbnail__thumbnail img {
  margin-right: auto;
  margin-left: auto;
  filter: grayscale(100%);
  opacity: .8;
  -webkit-transition-property: filter, opacity;
  transition-property: filter, opacity;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}

.post-thumbnail__thumbnail-button {
  position: absolute;
  top: 50%;
  right: 50%;
  z-index: 1;
  padding-right: 2em;
  padding-left: 2em;
  border-color: #eea903;
  color: #000000;
  background-color: #eea903;
  font-size: 1em;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.44);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.44);
  -webkit-transition-property: visibility, opacity, box-shadow;
  transition-property: visibility, opacity, box-shadow;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}

.post-thumbnail {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #000000;
  background-color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: box-shadow 0.2s ease;
  -moz-transition: box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .post-thumbnail {
    /* IE10+ CSS styles go here */
    display: block;
  }
}

.post-thumbnail-ref {
  display: block;
  height: 100%;
}

.post-thumbnail-ref > .post-thumbnail {
  height: 100%;
}

.post-thumbnail-ref:hover,
.post-thumbnail-ref:focus {
  text-decoration: none;
}

.helper-symbols__symbol-caption {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.helper-symbols__symbol {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.helper-symbols__symbol img {
  margin-right: auto;
  margin-left: auto;
}

.helper-symbols__item {
  display: block;
  flex: 1;
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  padding-right: 1px;
  padding-left: 1px;
}

.helper-symbols {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin-right: -1px;
  margin-left: -1px;
}

.hamburger-toggle__inner {
  display: block;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 2px;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 75ms;
  transition-duration: 75ms;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #502c1d;
}

.hamburger-toggle__inner:before,
.hamburger-toggle__inner:after {
  display: block;
  content: "";
  position: absolute;
  width: 36px;
  height: 2px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: #502c1d;
}

.hamburger-toggle__inner:before {
  top: -10px;
  -webkit-transition: top 75ms ease 0.12s, opacity 75ms ease;
  -moz-transition: top 75ms ease 0.12s, opacity 75ms ease;
  -o-transition: top 75ms ease 0.12s, opacity 75ms ease;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger-toggle__inner:after {
  bottom: -10px;
  -webkit-transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -moz-transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-toggle__toggle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 24px;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: opacity, filter;
  transition-property: opacity, filter;
}

.hamburger-toggle,
.hamburger-toggle--active,
.site-navbar.-pre-menu--open .hamburger-toggle {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
  outline: none;
}

.hamburger-toggle--active .hamburger-toggle__inner,
.site-navbar.-pre-menu--open .hamburger-toggle .hamburger-toggle__inner {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger-toggle--active .hamburger-toggle__inner:before,
.site-navbar.-pre-menu--open .hamburger-toggle .hamburger-toggle__inner:before {
  top: 0;
  -webkit-transition: top 75ms ease, opacity 75ms ease 0.12s;
  -moz-transition: top 75ms ease, opacity 75ms ease 0.12s;
  -o-transition: top 75ms ease, opacity 75ms ease 0.12s;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}

.hamburger-toggle--active .hamburger-toggle__inner:after,
.site-navbar.-pre-menu--open .hamburger-toggle .hamburger-toggle__inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -moz-transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -o-transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.wpml-ls {
  border: 0;
  padding: 0;
  clear: none;
  line-height: 1;
  font-size: 12px;
}

.wpml-ls > ul {
  line-height: inherit;
}

.wpml-ls > ul > li {
  line-height: inherit;
}

.wpml-ls > ul > li > a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  font-size: 100%;
  font-weight: 700;
  line-height: 1;
  padding: 6.5px 5.5px;
  color: #ffffff;
  background-color: #502c1d;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.wpml-ls > ul > li > a span {
  display: inline-block;
  vertical-align: middle;
  line-height: inherit;
}

.wpml-ls > ul > li > a:hover,
.wpml-ls > ul > li > a:focus {
  color: #ffffff;
  background-color: #eea903;
  text-decoration: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  display: none;
  font-size: 14px;
  line-height: 1;
  background-color: inherit;
  background-clip: padding-box;
}

.dropdown-menu > li > a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  clear: none;
  font-size: 100%;
  font-weight: 500;
  line-height: inherit;
  color: #000000;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #000000;
  background-color: #f8f8f8;
}

.dropdown-menu > li > a:hover:after,
.dropdown-menu > li > a:focus:after {
  opacity: 1;
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.product-thumbnail__title {
  font-size: 150%;
  font-weight: 500;
  color: inherit;
}

.product-thumbnail__caption {
  position: relative;
  display: block;
  padding: 15px 5px;
  line-height: inherit;
  text-align: center;
}

.product-thumbnail__image {
  display: block;
}

.product-thumbnail__image img {
  margin-right: auto;
  margin-left: auto;
}

.product-thumbnail__image + .product-thumbnail__caption {
  margin-top: 17px;
}

.product-thumbnail__image + .product-thumbnail__caption:before {
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  display: block;
  content: '';
  width: 65px;
  height: 3px;
  background-color: #eea903;
}

.product-thumbnail {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  background-color: #ffffff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.product-thumbnail:hover,
.product-thumbnail:focus {
  text-decoration: none;
}

.store-showcase__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  padding: .9em 1em;
  -webkit-box-shadow: 0 5px 20px rgba(105, 108, 109, 0.1);
  box-shadow: 0 5px 20px rgba(105, 108, 109, 0.1);
  color: #000000;
  background-color: #eea903;
  border-color: #eea903;
}

.store-showcase__button:focus,
.store-showcase__button.focus {
  color: #000000;
  background-color: #bc8502;
  border-color: #705001;
}

.store-showcase__button:hover {
  color: #000000;
  background-color: #bc8502;
  border-color: #b27e02;
}

.store-showcase__button:active,
.store-showcase__button.active,
.open > .store-showcase__button.dropdown-toggle {
  color: #000000;
  background-color: #bc8502;
  border-color: #b27e02;
}

.store-showcase__button:active:hover,
.store-showcase__button:active:focus,
.store-showcase__button:active.focus,
.store-showcase__button.active:hover,
.store-showcase__button.active:focus,
.store-showcase__button.active.focus,
.open > .store-showcase__button.dropdown-toggle:hover,
.open > .store-showcase__button.dropdown-toggle:focus,
.open > .store-showcase__button.dropdown-toggle.focus {
  color: #000000;
  background-color: #986c02;
  border-color: #705001;
}

.store-showcase__button:active,
.store-showcase__button.active,
.open > .store-showcase__button.dropdown-toggle {
  background-image: none;
}

.store-showcase__button.disabled:hover,
.store-showcase__button.disabled:focus,
.store-showcase__button.disabled.focus,
.store-showcase__button[disabled]:hover,
.store-showcase__button[disabled]:focus,
.store-showcase__button[disabled].focus,
fieldset[disabled] .store-showcase__button:hover,
fieldset[disabled] .store-showcase__button:focus,
fieldset[disabled] .store-showcase__button.focus {
  background-color: #eea903;
  border-color: #eea903;
}

.store-showcase__button .badge {
  color: #eea903;
  background-color: #000000;
}

.store-showcase__button--icon-phone:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f879";
  margin-right: 5px;
  font-size: 80%;
}

.store-showcase__button:hover,
.store-showcase__button:focus {
  text-decoration: none;
}

.store-showcase__navigation-ref {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60px;
  height: 60px;
  line-height: 1;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  -ms-perspective: 1000px;
  perspective: 1000px;
}

.store-showcase__navigation-ref img {
  max-height: 32px;
}

.store-showcase__navigation-ref__front,
.store-showcase__navigation-ref__back {
  position: absolute;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.store-showcase__navigation-ref__back {
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.store-showcase__navigation-ref__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: transform 0.8s;
  -moz-transition: transform 0.8s;
  -o-transition: transform 0.8s;
  transition: transform 0.8s;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.store-showcase__navigation-ref:hover .store-showcase__navigation-ref__inner {
  -webkit-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.store-showcase__navigation {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.store-showcase__navigation > li {
  display: inline-block;
  perspective: 1000px;
}

.store-showcase__navigation > li + li {
  margin-right: 1px;
}

.store-showcase__symbols {
  width: 100%;
  margin-top: 20px;
}

@media (min-width: 0) and (max-width: 767px) {
  .store-showcase__symbols .helper-symbols__symbol {
    max-width: none;
    padding: 10px;
    background-color: #502c1d;
  }
}

.store-showcase__label {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 4px;
}

.store-showcase__label.sr-only,
.store-showcase__label.section__headline--sr-only,
.section__headline--sr-only .store-showcase__label {
  margin: -1px;
}

.store-showcase__info-excerpt {
  display: block;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2;
}

.store-showcase__info-excerpt p {
  font-size: inherit;
}

.store-showcase__info {
  font-weight: 600;
}

.store-showcase__info p {
  font-size: 1.3em;
  margin-bottom: 2px;
}

.store-showcase__info p:last-of-type {
  margin-bottom: 0;
}

.store-showcase__thumbnail {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1em;
}

.store-showcase__thumbnail:before {
  display: block;
  padding-top: 55%;
  content: '';
}

.store-showcase__thumbnail-cover-image {
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}

.store-showcase__title {
  font-size: 2.2em;
  font-weight: 600;
}

.store-showcase__headline {
  margin-bottom: 1.8em;
}

.store-showcase__section {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  padding-top: 1.1em;
  padding-bottom: 1.1em;
}

.store-showcase__section + .store-showcase__section {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

.store-showcase__section > .store-showcase__section {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 0;
  margin-bottom: 1rem;
}

.store-showcase {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
}

.store-showcase > .store-showcase__section:first-of-type {
  padding-top: 0;
}

.store-showcase > .store-showcase__section:last-of-type {
  padding-bottom: 0;
}

@media (min-width: 0) and (max-width: 767px) {
  .store-showcase .store-showcase__thumbnail {
    margin-right: -15px;
    margin-left: -15px;
    width: 100vw;
  }
}

.position__body {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  padding: 1.5em 1.8em;
  color: inherit;
  font-size: 1.1em;
  line-height: 1.4;
  font-weight: inherit;
}

.position__body-content {
  font-size: inherit;
}

.position__body-content p {
  font-size: inherit;
}

.position__body-content p:last-of-type {
  margin-bottom: 0;
}

.position__body-aside {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 15px;
}

.position__number {
  display: inline-block;
  color: #626262;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2px;
}

.position__title {
  color: inherit;
  font-size: 1.5em;
  font-weight: inherit;
}

.position__headline-content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  text-align: center;
}

.position__headline {
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5em 1.8em;
  background-color: #fafafa;
  color: inherit;
  font-size: inherit;
}

.position {
  background-color: #fafafa;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  -webkit-transition-property: background-color, box-shadow;
  transition-property: background-color, box-shadow;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.position + .position {
  margin-top: 20px;
}

.position--collapse-in {
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.06);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.06);
}

.position--collapse-in .position__headline {
  background-color: #ffffff;
}

.timeline-article__thumbnail,
.timeline-article__content {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
}

.timeline-article__thumbnail-cover {
  position: relative;
  display: block;
  overflow: hidden;
}

.timeline-article__thumbnail-cover:before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

.timeline-article__title {
  color: inherit;
  font-size: 2.7em;
  font-weight: 300;
}

.timeline-article__headline {
  font-size: inherit;
}

.timeline-article__content {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.4;
  margin-top: 1.5em;
}

.timeline-article__row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-right: -15px;
  margin-left: -15px;
}

.timeline-article {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.bullet-card__image,
.media-card__image {
  display: block;
  width: 100%;
}

.bullet-card__image img,
.media-card__image img {
  margin-right: auto;
  margin-left: auto;
}

.bullet-card__content,
.media-card__content {
  font-size: 1em;
  font-weight: inherit;
  line-height: 1.5;
  text-align: center;
}

.bullet-card__col,
.media-card__col {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.1em;
  padding-bottom: 1.1em;
  padding-right: 30px;
  padding-left: 30px;
}

.bullet-card__col--image,
.media-card__col--image {
  background-color: #ffffff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bullet-card__row,
.media-card__row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.bullet-card,
.media-card {
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.07);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.07);
  background-color: #fcfcfc;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.benefit-article__icon {
  display: block;
}

.benefit-article__icon img {
  margin-right: auto;
  margin-left: auto;
}

.benefit-article__content {
  display: block;
  line-height: 1.2;
}

.benefit-article__title {
  font-size: 1.35em;
  font-weight: inherit;
}

.benefit-article__headline {
  font-size: inherit;
  font-weight: inherit;
}

.benefit-article__headline + .benefit-article__content {
  margin-top: .25em;
}

.benefit-article__caption {
  display: block;
}

.benefit-article__caption + .benefit-article__icon {
  margin-left: 1em;
}

.benefit-article {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row-reverse;
  -webkit-box-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

@media (min-width: 0) and (max-width: 768px) {
  .benefit-article__icon {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    /* Safari 6.1+ */
    -ms-flex: 0 0 auto;
    /* IE 10 */
    max-width: 100px;
  }
}

.banner-ref {
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  overflow: hidden;
  max-height: 280px;
}

.banner-ref:before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

@media (min-width: 0) and (max-width: 767px) {
  .banner-ref--mobile {
    max-height: none;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .banner-ref--mobile:before {
    display: none;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .banner-ref--mobile .banner-ref__cover {
    display: none;
  }
}

.banner-ref--mobile .banner-ref__image {
  display: block;
}

.banner-caption__group {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 0.95em;
  padding-left: 0.95em;
}

.banner-caption__content {
  display: block;
  padding-right: 0.95em;
  padding-left: 0.95em;
  margin-top: 0.95em;
  margin-bottom: 0.95em;
  line-height: 1.2;
}

.banner-caption__image {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  /* Safari 6.1+ */
  -ms-flex: 0 0 auto;
  /* IE 10 */
  max-width: 200px;
  padding-right: 0.95em;
  padding-left: 0.95em;
}

.banner-caption__image img {
  margin-right: auto;
  margin-left: auto;
}

.banner-caption__body {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 910px;
  padding: 1.9em .95em;
  -webkit-border-radius: 22px;
  -khtml-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  background-color: rgba(23, 23, 23, 0.8);
  text-align: center;
}

.banner-caption__container {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}

.banner-caption {
  overflow: hidden;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.product-card__image {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card__image-figure {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex: 0 0 130px;
  -webkit-flex: 0 0 130px;
  /* Safari 6.1+ */
  -ms-flex: 0 0 130px;
  /* IE 10 */
  max-width: 130px;
}

.product-card__image-figure img {
  margin-right: auto;
  margin-left: auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .product-card__image-figure img {
    /* IE10+ CSS styles go here */
    width: 100%;
  }
}

.product-card__excerpt {
  display: block;
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.1;
}

.product-card__title {
  font-size: 1.9em;
  font-weight: 500;
}

.product-card__title + .product-card__excerpt {
  margin-top: 2px;
}

.product-card__headline {
  padding-bottom: 1.1em;
  margin-bottom: 1em;
}

.product-card__headline:before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 64px;
  height: 5px;
  content: '';
  background-color: #eea903;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 0) and (max-width: 767px) {
  .product-card__headline .product-card__title {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

.product-card__content {
  display: block;
}

.product-card__content + .product-card__image {
  padding-bottom: 1em;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 1em;
}

.product-card__row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  height: 100%;
}

.product-card {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 2em;
  padding-bottom: 2em;
  padding: 2em 1.5em;
  -webkit-border-radius: 1em;
  -khtml-border-radius: 1em;
  -moz-border-radius: 1em;
  border-radius: 1em;
  color: #000000;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.02);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.02);
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.product-card:hover,
.product-card:focus {
  text-decoration: none;
  -webkit-box-shadow: 16px 18px 34.4px 5.6px rgba(0, 0, 0, 0.24);
  box-shadow: 16px 18px 34.4px 5.6px rgba(0, 0, 0, 0.24);
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  transform: translateY(-10px);
}

.product-article__cat {
  display: inline-block;
  padding: .35em .65em;
  border-radius: 20px;
  color: #000000;
  background-color: #ebebeb;
  font-size: .9em;
  font-weight: 700;
  line-height: 1;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.product-article__cat:hover,
.product-article__cat:focus {
  text-decoration: none;
  background-color: #eea903;
}

.product-article__image {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 3em;
  background-color: #ffffff;
}

.product-article__image img {
  margin-right: auto;
  margin-left: auto;
}

.product-article__image .product-article__cat {
  position: absolute;
  top: 15px;
  right: 10px;
}

.product-article__footer {
  display: block;
  margin-top: 1.8em;
}

.product-article__content {
  display: block;
  font-size: inherit;
  line-height: 1.5;
}

.product-article__content-label {
  margin-bottom: .3em;
  font-size: 1.06em;
  font-weight: 700;
}

.product-article__content + .product-article__content {
  margin-top: 1.6em;
}

.product-article__excerpt {
  display: block;
  margin-bottom: 0;
  font-size: 1.3em;
}

.product-article__title {
  font-size: 3.6em;
  font-weight: 300;
}

.product-article__title + .product-article__excerpt {
  margin-top: .4em;
}

.product-article__headline {
  margin-bottom: 1.5em;
  font-size: inherit;
  line-height: inherit;
}

.product-article__body {
  padding: 1.5em;
  font-size: inherit;
}

.product-article__body + .product-article__image {
  border-bottom: 1px solid #dfdfdf;
}

.product-article__row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.product-article {
  -webkit-border-radius: 20px;
  -khtml-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #000000;
  background-color: #fafafa;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  overflow: hidden;
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.06);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.06);
}

.product-article + .product-article {
  margin-top: 30px;
}

.media-card__content-title {
  font-size: 1.4em;
}

.media-card__content-date {
  display: block;
  color: #626262;
  line-height: 1;
}

.media-card__content-date + .media-card__content-title {
  margin-top: 5px;
}

.media-card__col {
  padding-right: 20px;
  padding-left: 20px;
}

.media-card__col--image {
  background-color: transparent;
}

.media-card__col--image img {
  min-width: 100px;
}

.media-card {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition-property: box-shadow, transform, background-color;
  transition-property: box-shadow, transform, background-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.media-card:hover,
.media-card:focus {
  text-decoration: none;
  background-color: #ffffff;
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.1);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}

.author-info__image {
  display: block;
  flex: 0 0 60px;
  -webkit-flex: 0 0 60px;
  /* Safari 6.1+ */
  -ms-flex: 0 0 60px;
  /* IE 10 */
  width: 100%;
  max-width: 60px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
}

.author-info__caption-label {
  display: inline-block;
  font-weight: 700;
}

.author-info__caption {
  display: block;
  flex: 1;
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
}

.author-info__caption + .author-info__image {
  margin-left: 12px;
}

.author-info {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row-reverse;
  -webkit-box-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.blog-post__title {
  font-size: 1em;
  font-weight: inherit;
}

.blog-post__title > a {
  display: inherit;
}

.blog-post__headline {
  font-size: inherit;
}

.blog-post__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 0.93em;
}

.blog-post__thumbnail {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.blog-post__thumbnail:before {
  display: block;
  padding-top: 75%;
  content: '';
}

.blog-post__thumbnail-cover-image {
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}

.blog-post__thumbnail-cover:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.6) 100%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.6) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.6) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#03000000', endColorstr='#99000000', GradientType=0);
}

.blog-post {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.blog-post .blog-post__caption .blog-post__headline {
  padding-top: .5em;
}

.blog-post .blog-post__caption .blog-post__headline:before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 70px;
  height: 3px;
  content: '';
  background-color: #eea903;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.blog-post .blog-post__caption .blog-post__headline + .author-info {
  margin-top: 20px;
}

.blog-post-ref {
  display: block;
}

.blog-post-ref:hover,
.blog-post-ref:focus {
  text-decoration: none;
}

.blog-post-ref:hover [class$="thumbnail"] [class$="cover-image"],
.blog-post-ref:focus [class$="thumbnail"] [class$="cover-image"] {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.overlay.-pre-overlay--in {
  visibility: visible;
  opacity: 1;
}

.breadcrumbs {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: inherit;
  line-height: 1.1;
  font-weight: inherit;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  padding: 0;
}

.breadcrumbs a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  color: #eea903;
}

.breadcrumbs a,
.breadcrumbs .breadcrumb_last {
  color: inherit;
  margin-right: 5px;
  margin-left: 5px;
  text-decoration: none;
}

.breadcrumbs > span {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  width: 100%;
}

.breadcrumbs > span > span {
  position: relative;
  width: 100%;
}

.breadcrumbs > span > span > a {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  /* Safari 6.1+ */
  -ms-flex: 0 0 auto;
  /* IE 10 */
  margin-right: 0px !important;
}

.progress-bar[data-active] {
  width: 100% !important;
}

.progress-bars__list > li {
  display: block;
}

.progress-bars__list > li + li {
  margin-top: 1px;
}

.pagination {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  font-size: 14px;
}

.pagination .page-numbers {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: 2px;
  margin-left: 2px;
  font-size: 100%;
  font-weight: 500;
  color: #bdbdbd;
  line-height: inherit;
  background-color: transparent;
  -webkit-transition: color 0.2 ease;
  -moz-transition: color 0.2 ease;
  -o-transition: color 0.2 ease;
  transition: color 0.2 ease;
  font-weight: 600;
}

.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
  text-decoration: none;
  color: #000000;
}

.pagination .page-numbers.current {
  color: #000000;
  background-color: #f7f7f7;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  font-size: 140%;
  background-color: transparent;
}

.pagination .page-numbers.next {
  margin-right: 8px;
}

.pagination .page-numbers.next:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f104";
}

.pagination .page-numbers.prev {
  margin-left: 8px;
}

.pagination .page-numbers.prev:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f105";
}

.social-menu__ref {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  font-size: 100%;
  color: #502c1d;
  line-height: 1;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.social-menu__ref:hover,
.social-menu__ref:focus {
  color: #eea903;
  text-decoration: none;
}

.social-menu__ref--facebook:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f082";
}

.social-menu__ref--instagram:before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f16d";
}

.social-menu {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  font-size: 26px;
  line-height: 1;
}

.social-menu > li {
  margin-right: 5px;
  margin-left: 5px;
}

.soft-menu__ref {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  border: 1px solid #e9e9e9;
  -webkit-border-radius: 2em;
  -khtml-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  padding: 0.65em 2em;
  font-size: 1em;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  background-color: #e9e9e9;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.soft-menu__ref--hover,
.soft-menu__ref:hover,
.soft-menu__ref:focus,
.soft-menu__ref--active {
  background-color: #ffffff;
  border: 1px solid #ffffff;
  text-decoration: none;
}

.soft-menu__ref--active {
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.1);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.1);
}

.soft-menu__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
  overflow-x: auto;
  max-width: 100%;
}

.soft-menu__list > li {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  /* Safari 6.1+ */
  -ms-flex: 0 0 auto;
  /* IE 10 */
  padding: 2px;
}

.soft-menu {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.singular-form {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  margin-right: auto;
  margin-left: auto;
  max-width: 550px;
  font-size: 18px;
  color: #878787;
}

.singular-form__submit,
.singular-form .singular-form__select select + label {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 2.6em;
  height: 2.6em;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #878787;
}

.singular-form__submit:before,
.singular-form .singular-form__select select + label:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f002";
  color: inherit;
}

.singular-form__control,
.singular-form .singular-form__select select {
  height: 2.6em;
  padding-left: 2.6em;
  color: #000000;
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.075);
}

.singular-form__control::-webkit-input-placeholder,
.singular-form .singular-form__select select::-webkit-input-placeholder {
  color: #878787;
  opacity: 1;
}

.singular-form__control:-moz-placeholder,
.singular-form .singular-form__select select:-moz-placeholder {
  /* Firefox 18- */
  color: #878787;
  opacity: 1;
}

.singular-form__control::-moz-placeholder,
.singular-form .singular-form__select select::-moz-placeholder {
  /* Firefox 19+ */
  color: #878787;
  opacity: 1;
}

.singular-form__control:-ms-input-placeholder,
.singular-form .singular-form__select select:-ms-input-placeholder {
  color: #878787;
  opacity: 1;
}

.singular-form .singular-form__select {
  position: relative;
  display: block;
  width: 100%;
}

.singular-form .singular-form__select select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

.singular-form .singular-form__select select::-ms-expand {
  display: none;
}

.singular-form .singular-form__select select + label {
  background-color: #eea903;
  color: #000000;
  pointer-events: none;
}

.singular-form .singular-form__select select + label:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f078";
}

.previous-next__ref-title {
  display: block;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1.2;
  color: #6e6e6e;
}

.previous-next__ref-caption {
  display: block;
  padding: .5em;
}

.previous-next__ref {
  position: relative;
  display: block;
  width: 100%;
  font-size: 1em;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  text-align: center;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.previous-next__ref:before {
  position: absolute;
  top: 50%;
  right: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.previous-next__ref--previous .previous-next__ref-caption {
  padding-right: 1.5em;
}

.previous-next__ref--previous:before {
  color: #e2e2e2;
  font-size: 250%;
  content: "\f054";
  right: 0;
}

@media (min-width: 0) and (max-width: 767px) {
  .previous-next__ref--previous:before {
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }
}

.previous-next__ref--next .previous-next__ref-caption {
  padding-left: 1.5em;
}

.previous-next__ref--next:before {
  color: #e2e2e2;
  font-size: 250%;
  content: "\f053";
  left: 0;
}

@media (min-width: 0) and (max-width: 767px) {
  .previous-next__ref--next:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.previous-next__ref:hover,
.previous-next__ref:focus {
  color: #eea903;
  text-decoration: none;
}

.previous-next {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  border-top: 1px solid #e2e2e2;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.previous-next .previous-next__item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex: 1;
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
}

.previous-next .previous-next__item + .previous-next__item {
  border-right: 1px solid #e2e2e2;
}

.showcase__logo {
  display: block;
}

.showcase__logo img {
  margin-right: auto;
  margin-left: auto;
}

.showcase {
  position: relative;
  display: block;
}

.stores-showcase__store-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  padding: 1em;
  font-size: 2.2em;
  font-weight: 600;
  line-height: inherit;
}

.stores-showcase__store {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.stores-showcase__store .stores-showcase__store-caption {
  display: none;
}

.stores-showcase__cover-image {
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition-property: visibility, opacity, background-color;
  transition-property: visibility, opacity, background-color;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.stores-showcase__cover-image.active {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.stores-showcase__cover {
  display: none;
}

.stores-showcase {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.timeline__badge {
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #e5e5e5;
  line-height: 1;
}

.timeline__group {
  padding-top: 50px;
}

.timeline__group:before {
  position: absolute;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  display: none;
  width: 2px;
  height: 100%;
  background-color: #e5e5e5;
  content: '';
}

.timeline__group > .timeline__badge {
  right: 50%;
  display: none;
}

.timeline__group > .timeline__badge:first-of-type {
  top: 0;
  -webkit-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  -o-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
}

.timeline__group > .timeline__badge:last-of-type {
  bottom: 0;
  -webkit-transform: translateX(50%) translateY(50%);
  -ms-transform: translateX(50%) translateY(50%);
  -o-transform: translateX(50%) translateY(50%);
  transform: translateX(50%) translateY(50%);
}

.timeline .timeline-article {
  border-top: 1px solid #e5e5e5;
}

.timeline .timeline-article .timeline__badge {
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%) translateY(-50%);
  -ms-transform: translateX(50%) translateY(-50%);
  -o-transform: translateX(50%) translateY(-50%);
  transform: translateX(50%) translateY(-50%);
}

.gallery__ref-icon {
  position: absolute;
  top: 50%;
  right: 50%;
  color: inherit;
  font-size: 32px;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.gallery__ref-cover {
  display: block;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
}

.gallery__ref-cover:before {
  display: block;
  content: '';
  padding-top: 56.25%;
}

.gallery__ref {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  overflow: hidden;
  color: #ffffff;
  line-height: 1;
}

.gallery__ref:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  content: '';
}

.gallery__ref:before,
.gallery__ref .gallery__ref-icon {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-property: visibility, opacity;
  transition-property: visibility, opacity;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

.gallery__ref:hover,
.gallery__ref:focus {
  text-decoration: none;
  color: #ffffff;
}

.gallery__item {
  display: block;
  margin-bottom: 2px;
  padding-right: 1px;
  padding-left: 1px;
  flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 50%;
  /* IE 10 */
  max-width: 50%;
}

.gallery__list {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -1px;
  margin-left: -1px;
}

@media (min-width: 0) and (max-width: 767px) {
  .gallery__list > .gallery__item:nth-child(3n) {
    flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    /* Safari 6.1+ */
    -ms-flex: 0 0 100%;
    /* IE 10 */
    max-width: 100%;
  }
}

.gallery {
  display: block;
}

.bullets__list-item {
  display: block;
}

.bullets__list-item + .bullets__list-item {
  margin-top: 20px;
}

.contact-info__navigation > li a,
.contact-info__info > li a,
.contact-info__navigation-item a,
.contact-info__info-item a {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.contact-info__navigation > li a:hover,
.contact-info__info > li a:hover,
.contact-info__navigation-item a:hover,
.contact-info__info-item a:hover,
.contact-info__navigation > li a:focus,
.contact-info__info > li a:focus,
.contact-info__navigation-item a:focus,
.contact-info__info-item a:focus {
  text-decoration: none;
}

.contact-info__navigation,
.contact-info__info {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: inherit;
  line-height: inherit;
}

.contact-info__icon {
  display: inline-block;
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  /* Safari 6.1+ */
  -ms-flex: 0 0 auto;
  /* IE 10 */
}

.contact-info__label {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
}

.contact-info__label > .contact-info__icon {
  margin-left: 25px;
}

.contact-info__navigation-item > a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-info__navigation-item > a img {
  margin-left: 26px;
}

.contact-info__navigation > .contact-info__navigation-item {
  padding: 1em;
}

.contact-info__info-item {
  padding: 1em;
}

.contact-info__info-item a {
  display: inline-block;
  margin-right: 5px;
}

.contact-info__info-item .contact-info__label {
  font-size: 1.1em;
}

.contact-info__info > .contact-info__info-item + .contact-info__info-item {
  border-top: 1px solid #e5e5e5;
}

.contact-info {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.contact-form__title {
  font-weight: 500;
}

.contact-form__heading {
  margin-bottom: 25px;
}

.contact-form {
  color: #000000;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

@media (min-width: 0) and (max-width: 767px) {
  .contact-form .gform_button {
    width: 100%;
  }
}

.benefits__list-item {
  position: relative;
  flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 100%;
  /* IE 10 */
  width: 100%;
  max-width: 100%;
}

.benefits__list {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: inherit;
  margin-right: -15px;
  margin-left: -15px;
}

.benefits__list-item {
  margin-bottom: 30px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 0) and (max-width: 767px) {
  .benefits__list-item:last-child {
    margin-bottom: 0;
  }
}

.benefits {
  line-height: 1;
}

.thumbnails-slider__slide:before {
  display: block;
  padding-top: 75%;
  content: '';
}

.thumbnails-slider__slider:before {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 60px;
  left: auto;
  z-index: 1;
  display: none;
  content: '';
  width: 104px;
  height: 56px;
  -webkit-border-radius: 22px;
  -khtml-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  background-color: #ffffff;
  -webkit-transform: translate(31px, 0);
  -ms-transform: translate(31px, 0);
  -o-transform: translate(31px, 0);
  transform: translate(31px, 0);
  -webkit-box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.3);
  box-shadow: 16px 18px 43.86px 7.14px rgba(0, 0, 0, 0.3);
}

@media (min-width: 0) and (max-width: 767px) {
  .introduction {
    text-align: justify;
    text-align-last: center;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .introduction .section__headline {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.products-grid__item:not([class^="col-"]) {
  flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 50%;
  /* IE 10 */
  max-width: 50%;
}

.products-grid {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.products-grid:not(.slick-slider) {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products-grid__item {
  margin-bottom: 25px;
  padding-right: 15px;
  padding-left: 15px;
}

.products-grid__item.slick-slide {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  /* Safari 6.1+ */
  -ms-flex: 0 1 auto;
  /* IE 10 */
  width: auto;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.products-grid--cards {
  margin-right: 0px;
  margin-left: 0px;
}

.products-grid--cards .products-grid__item {
  padding-right: 0px;
  padding-left: 0px;
}

.products-grid--cards .products-grid__item:not([class^="col-"]) {
  flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 100%;
  /* IE 10 */
  max-width: 100%;
}

.stores-grid__item > a:hover,
.stores-grid__item > a:focus {
  text-decoration: none;
}

.stores-grid {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin-right: -1px;
  margin-left: -1px;
}

.stores-grid.slick-slider {
  margin-right: -15px;
  margin-left: -15px;
}

.stores-grid .stores-grid__item {
  margin-bottom: 15px;
  padding-right: 1px;
  padding-left: 1px;
}

.stores-grid .stores-grid__item .post-thumbnail {
  font-size: 16px;
}

.recipes-grid {
  margin-right: -3px;
  margin-left: -3px;
}

.recipes-grid .recipes-grid__item {
  font-size: inherit;
  padding-right: 3px;
  padding-left: 3px;
  margin-bottom: 15px;
}

@media (min-width: 0) and (max-width: 767px) {
  .recipes-grid .recipes-grid__item .thumbnail__caption {
    padding: 0;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .recipes-grid .recipes-grid__item .thumbnail__caption:after {
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
}

.media-grid {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -3px;
  margin-left: -3px;
}

.media-grid .media-grid__item {
  padding-right: 3px;
  padding-left: 3px;
  margin-bottom: 6px;
}

.blog-grid {
  font-size: 20px;
  margin-right: -3px;
  margin-left: -3px;
}

.blog-grid .blog-grid__item {
  font-size: inherit;
  padding-right: 3px;
  padding-left: 3px;
  margin-bottom: 6px;
}

.blog-grid .blog-grid__item .blog-post {
  font-size: inherit;
}

.symbol__image {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.symbol__image img {
  margin-right: auto;
  margin-left: auto;
}

.symbol__icon {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: transparent;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
  overflow: hidden;
}

.symbol {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  max-width: 50px;
}

.symbol .symbol__icon {
  width: 50px;
  height: 50px;
}

@media (min-width: 0) and (max-width: 767px) {
  .symbol--add_margins .symbol__image {
    max-width: 30px;
  }
}

.symbols__item {
  position: relative;
  display: block;
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.symbols__list {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  margin-right: -10px;
  margin-left: -10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  color: #000000;
}

.symbols {
  display: block;
  padding-right: 15px;
  padding-left: 15px;
}

.food-energy__table {
  table-layout: fixed;
  background-color: transparent;
  font-size: inherit;
  font-weight: inherit;
}

.food-energy__table > tbody > tr:first-child > th,
.food-energy__table > tbody > tr:first-child > td {
  border-top: 0;
}

.food-energy__table > thead > tr > th > table,
.food-energy__table > thead > tr > td > table,
.food-energy__table > tbody > tr > th > table,
.food-energy__table > tbody > tr > td > table,
.food-energy__table > tfoot > tr > th > table,
.food-energy__table > tfoot > tr > td > table {
  table-layout: fixed;
  background-color: transparent;
  margin-bottom: 0;
}

.food-energy__table > thead > tr > th > table > tbody > tr > th:first-child,
.food-energy__table > thead > tr > th > table > tbody > tr > td:first-child,
.food-energy__table > thead > tr > td > table > tbody > tr > th:first-child,
.food-energy__table > thead > tr > td > table > tbody > tr > td:first-child,
.food-energy__table > tbody > tr > th > table > tbody > tr > th:first-child,
.food-energy__table > tbody > tr > th > table > tbody > tr > td:first-child,
.food-energy__table > tbody > tr > td > table > tbody > tr > th:first-child,
.food-energy__table > tbody > tr > td > table > tbody > tr > td:first-child,
.food-energy__table > tfoot > tr > th > table > tbody > tr > th:first-child,
.food-energy__table > tfoot > tr > th > table > tbody > tr > td:first-child,
.food-energy__table > tfoot > tr > td > table > tbody > tr > th:first-child,
.food-energy__table > tfoot > tr > td > table > tbody > tr > td:first-child {
  padding-right: 20px;
}

.food-energy__table > thead > tr > th > table > thead > tr > th,
.food-energy__table > thead > tr > td > table > thead > tr > th,
.food-energy__table > tbody > tr > th > table > thead > tr > th,
.food-energy__table > tbody > tr > td > table > thead > tr > th,
.food-energy__table > tfoot > tr > th > table > thead > tr > th,
.food-energy__table > tfoot > tr > td > table > thead > tr > th {
  border-bottom: 0px;
}

.food-energy__table > tbody > tr > th[colspan],
.food-energy__table > tbody > tr > td[colspan] {
  padding: 0;
}

.food-energy__table thead > tr.food-energy__table--tr-highlight > th,
.food-energy__table thead > tr.food-energy__table--tr-highlight > td,
.food-energy__table tbody > tr.food-energy__table--tr-highlight > th,
.food-energy__table tbody > tr.food-energy__table--tr-highlight > td,
.food-energy__table tfoot > tr.food-energy__table--tr-highlight > th,
.food-energy__table tfoot > tr.food-energy__table--tr-highlight > td {
  font-weight: 600 !important;
}

.food-energy__title {
  font-size: 150%;
  font-weight: 600;
  padding-right: 8px;
  border-right: 3px solid red;
}

.food-energy__headline + .food-energy__table {
  margin-top: 25px;
}

.food-energy {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.our-stores .stores-grid.slick-slider .slick-slide {
  margin-bottom: 0;
}

@media (min-width: 0) and (max-width: 767px) {
  .our-stores .stores-grid.slick-slider .slick-slide .post-thumbnail {
    background-color: #eea903;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .our-stores .stores-grid.slick-slider .slick-slide .post-thumbnail__thumbnail img {
    opacity: 1;
  }
}

.last-blog-posts__title {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
  font-size: 1em;
  font-weight: 700;
}

.last-blog-posts__title:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f054";
  margin-left: 10px;
  color: #eea903;
  font-size: 60%;
  content: "\f053";
}

.last-blog-posts__headline {
  margin-bottom: .65em;
  color: #000000;
  font-size: inherit;
}

.last-blog-posts {
  font-size: 20px;
}

.last-blog-posts .blog-post__thumbnail:before {
  padding-top: 56.25%;
}

.last-blog-posts .blog-post .author-info {
  display: none;
}

.last-blog-posts .blog-grid {
  margin-right: 0;
  margin-left: 0;
  font-size: inherit;
}

.last-blog-posts .blog-grid .blog-grid__item {
  flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 100%;
  /* IE 10 */
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}

.site-navbar__search-toggle {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  font-size: 25px;
  line-height: 1;
  color: #000000;
}

.site-navbar__search-toggle:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f002";
}

.site-navbar__search-toggle:hover,
.site-navbar__search-toggle:focus {
  text-decoration: none;
}

.site-navbar__search-form {
  position: fixed;
  top: 100%;
  right: 50%;
  z-index: -1;
  display: block;
  width: 100vw;
  padding: 35px 25px 25px;
  background-color: #eea903;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translate(50%, -101%);
  -ms-transform: translate(50%, -101%);
  -o-transform: translate(50%, -101%);
  transform: translate(50%, -101%);
  -webkit-transition-property: transform, box-shadow;
  transition-property: transform, box-shadow;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-navbar__search-form {
    /* IE10+ CSS styles go here */
    top: 0 !important;
    -webkit-transform: translate(50%, -75px) !important;
    -ms-transform: translate(50%, -75px) !important;
    -o-transform: translate(50%, -75px) !important;
    transform: translate(50%, -75px) !important;
  }
}

.site-navbar__search-form--open,
.site-navbar.-pre-search-open .site-navbar__search-form {
  -webkit-box-shadow: 0px 6px 34px 23px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 6px 34px 23px rgba(0, 0, 0, 0.2);
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  -o-transform: translate(50%, 0);
  transform: translate(50%, 0);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-navbar__search-form--open,
  .site-navbar.-pre-search-open .site-navbar__search-form {
    /* IE10+ CSS styles go here */
    -webkit-transform: translate(50%, 75px) !important;
    -ms-transform: translate(50%, 75px) !important;
    -o-transform: translate(50%, 75px) !important;
    transform: translate(50%, 75px) !important;
  }
}

.site-navbar__search {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex: 0 0 75px;
  -webkit-flex: 0 0 75px;
  /* Safari 6.1+ */
  -ms-flex: 0 0 75px;
  /* IE 10 */
  max-width: 75px;
  height: 100%;
}

.wpml-ls-legacy-dropdown-click {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  line-height: 1;
  width: auto;
  color: #ffffff;
}

.wpml-ls-legacy-dropdown-click a {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: inherit;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.wpml-ls-legacy-dropdown-click a span {
  display: block;
}

.wpml-ls-legacy-dropdown-click a:hover,
.wpml-ls-legacy-dropdown-click a:focus {
  color: currentColor;
  text-decoration: none;
  background-color: transparent;
}

.wpml-ls-legacy-dropdown-click a:focus {
  outline: none;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle {
  padding: 13px 11px;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:after {
  display: inline-block;
  vertical-align: baseline;
  position: static;
  top: auto;
  right: auto;
  left: auto;
  border: 5px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 3px;
  margin-right: 10px;
}

.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:hover,
.wpml-ls-legacy-dropdown-click a.wpml-ls-item-toggle:focus {
  color: currentColor;
  text-decoration: none;
  background-color: transparent;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu {
  border-top: 0;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a {
  padding: 10px 5px;
  background-color: #eea903;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a:hover,
.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu a:focus {
  background-color: #eea903;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu .wpml-ls-display {
  display: none;
}

.wpml-ls-legacy-dropdown-click .wpml-ls-sub-menu > .wpml-ls-item {
  border-top: 0px;
}

.wpml-ls-legacy-dropdown-click > ul {
  line-height: inherit;
}

.site-navbar__links {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-navbar__links .social-menu + .wpml-ls {
  margin-right: 7px;
}

.site-navbar__links + .site-navbar__search {
  margin-right: 10px;
}

.site-navbar__logo-ref {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 10px;
  background-color: inherit;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-navbar__logo-ref {
    /* IE10+ CSS styles go here */
    display: block;
  }
}

.site-navbar__logo-ref:before,
.site-navbar__logo-ref:after {
  position: absolute;
  bottom: 0;
  display: block;
  height: 15px;
  content: '';
  background-color: inherit;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}

.site-navbar__logo-ref:before {
  right: 0;
  width: calc( 100% - 20px);
}

.site-navbar__logo-ref:after {
  left: 0;
  width: 29.5px;
  z-index: -1;
  transform: rotate(46deg);
  transform-origin: 0% 15px;
  border-bottom-right-radius: 15px;
}

.site-navbar__logo-ref img {
  position: relative;
  top: 10px;
}

.site-navbar__logo-ref:hover,
.site-navbar__logo-ref:focus {
  text-decoration: none;
}

.site-navbar__logo {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 130px;
  background-color: inherit;
}

.site-navbar__menu-list {
  display: block;
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  max-height: 100vh;
  overflow-y: scroll;
}

.site-navbar__menu-list a {
  overflow: hidden;
  -webkit-transition-property: color, background-color;
  transition-property: color, background-color;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.site-navbar__menu-list a .-pre-ripple {
  background-color: rgba(238, 169, 3, 0.2);
}

.site-navbar__menu-list a:hover,
.site-navbar__menu-list a:focus {
  text-decoration: none;
  color: #eea903;
}

.site-navbar__menu-list li.current-menu-item > a,
.site-navbar__menu-list li.current_page_item > a {
  font-weight: 900;
}

.site-navbar__menu-list li.current-menu-item > a:hover,
.site-navbar__menu-list li.current-menu-item > a:focus,
.site-navbar__menu-list li.current_page_item > a:hover,
.site-navbar__menu-list li.current_page_item > a:focus {
  text-decoration: none;
}

.site-navbar__menu-list .dropdown-menu {
  font-size: 90%;
}

.site-navbar__menu-list .dropdown-menu > li {
  display: block;
  border-top: 1px solid #c2c2c2;
}

.site-navbar__menu-list .dropdown-menu > li > a {
  padding: 15px 30px;
}

.site-navbar__menu-list .dropdown-menu > li > a:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-right: 2px;
  font-size: 50%;
  color: #eea903;
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
  content: "\f053";
}

.site-navbar__menu-list > li {
  display: block;
  line-height: inherit;
  margin-right: 10px;
  margin-left: 10px;
}

.site-navbar__menu-list > li > a {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  color: #000000;
  line-height: inherit;
  font-size: 100%;
  padding: 15px 5px;
}

.site-navbar__menu-list > li + li {
  border-top: 1px solid #c2c2c2;
}

@media (min-width: 0) and (max-width: 1199px) {
  .site-navbar__menu-list > li.dropdown > a {
    -webkit-transition-property: padding;
    transition-property: padding;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }
}

.site-navbar__menu-list > li.dropdown > a:before {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  content: '';
  width: 0;
  height: 2px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #eea903;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}

.site-navbar__menu-list > li.dropdown > a:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f078";
  margin-right: 12px;
  font-size: 60%;
  color: #eea903;
}

.site-navbar__menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  -o-transform: translateX(-300px);
  transform: translateX(-300px);
}

.site-navbar__col {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex: 1;
  -webkit-flex: 1;
  /* Safari 6.1+ */
  -ms-flex: 1;
  /* IE 10 */
  background-color: inherit;
}

.site-navbar__col--end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

.site-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  width: auto;
  height: 60px;
  background-color: #ffffff;
  line-height: 1;
  color: #ffffff;
  -webkit-box-shadow: 0px 6px 34px 23px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 6px 34px 23px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-property: transform, box-shadow;
  transition-property: transform, box-shadow;
  -webkit-transition-duration: 0.5s, 0.2s;
  transition-duration: 0.5s, 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1), ease-in;
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1), ease-in;
}

.site-navbar .site-navbar__search,
.site-navbar .hamburger-toggle,
.site-navbar .hamburger-toggle--active,
.site-navbar.-pre-menu--open .hamburger-toggle {
  flex: 0 0 60px;
  -webkit-flex: 0 0 60px;
  /* Safari 6.1+ */
  -ms-flex: 0 0 60px;
  /* IE 10 */
  max-width: 60px;
}

.site-navbar .hamburger-toggle,
.site-navbar .hamburger-toggle--active,
.site-navbar.-pre-menu--open .hamburger-toggle {
  background-color: #eea903;
}

.site-navbar.-pre-menu--open {
  -webkit-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);
}

.site-footer__contact,
.site-footer__menu,
.site-footer__logos {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
  padding-right: 15px;
  padding-left: 15px;
}

.site-footer__contact-list,
.site-footer__menu-list,
.site-footer__logos-list {
  line-height: inherit;
}

.site-footer__contact-list > li,
.site-footer__menu-list > li,
.site-footer__logos-list > li {
  display: block;
}

.site-footer__contact-list > li > a,
.site-footer__menu-list > li > a,
.site-footer__logos-list > li > a {
  display: inline-block;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

.site-footer__contact-list > li > a:hover,
.site-footer__menu-list > li > a:hover,
.site-footer__logos-list > li > a:hover,
.site-footer__contact-list > li > a:focus,
.site-footer__menu-list > li > a:focus,
.site-footer__logos-list > li > a:focus {
  color: inherit;
  text-decoration: underline;
}

.site-footer__contact-label {
  display: block;
  margin-bottom: 0;
  color: inherit;
  font-size: 115%;
  line-height: inherit;
}

.site-footer__contact-label > a {
  display: inline-block;
  color: inherit;
}

.site-footer__contact-label > a:hover,
.site-footer__contact-label > a:focus {
  color: inherit;
  text-decoration: underline;
}

.site-footer__contact-list {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.site-footer__contact-list > li {
  flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 100%;
  /* IE 10 */
  width: 100%;
  max-width: 100%;
}

@media (min-width: 0) and (max-width: 767px) {
  .site-footer__contact-list > li:nth-child(2),
  .site-footer__contact-list > li:nth-child(3) {
    flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    /* Safari 6.1+ */
    -ms-flex: 0 0 50%;
    /* IE 10 */
    max-width: 50%;
  }
}

.site-footer__contact-list > li + li {
  margin-top: 20px;
}

.site-footer__contact {
  padding-top: 15px;
  padding-bottom: 15px;
}

.site-footer__menu-list {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .site-footer__menu-list {
    /* IE10+ CSS styles go here */
    width: 100%;
  }
}

.site-footer__menu-list > li {
  flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  /* Safari 6.1+ */
  -ms-flex: 0 0 50%;
  /* IE 10 */
  max-width: 50%;
  padding-right: 5px;
  padding-left: 5px;
  margin-bottom: 15px;
}

.site-footer__menu-list > li > a {
  font-size: 115%;
}

.site-footer__menu {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 254, 0.3);
}

@media (min-width: 0) and (max-width: 767px) {
  .site-footer__menu .site-footer__menu-list > li:nth-last-child(1),
  .site-footer__menu .site-footer__menu-list > li:nth-last-child(2) {
    margin-bottom: 0;
  }
}

.site-footer__logo {
  display: block;
}

.site-footer__logos-list {
  display: block;
  width: 100%;
}

.site-footer__logos-list__item {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 15px;
  padding-left: 15px;
}

.site-footer__logos {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 254, 0.3);
}

.site-footer__row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.site-footer__row--after {
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 2px solid rgba(255, 255, 254, 0.3);
}

.site-footer {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.site-footer__copyrights,
.site-footer__secondary,
.site-footer__craftedby {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-footer__copyrights {
  -webkit-order: 2;
  /* Safari 7.0+ */
  order: 2;
  margin-top: 15px;
  margin-bottom: 15px;
}

.site-footer__secondary {
  -webkit-order: 1;
  /* Safari 7.0+ */
  order: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-footer__secondary .site-footer__menu-list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.site-footer__secondary .site-footer__menu-list > li {
  flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  /* Safari 6.1+ */
  -ms-flex: 0 1 auto;
  /* IE 10 */
  width: auto;
  max-width: none;
  margin-bottom: 0;
}

.site-footer__secondary .site-footer__menu-list > li > a {
  font-size: 100%;
}

.site-footer__craftedby {
  -webkit-order: 3;
  /* Safari 7.0+ */
  order: 3;
}

.site-footer__craftedby-label {
  margin-bottom: 0;
}

.site-footer__craftedby-label > a {
  display: inline-block;
  color: inherit;
}

.site-footer__craftedby-label + .site-footer__craftedby-label {
  padding-right: 11px;
  border-right: 2px solid rgba(255, 255, 254, 0.3);
  margin-right: 10px;
}

@-webkit-keyframes mastheadCoverScale {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    transform: scale(1.12);
  }
}

@-moz-keyframes mastheadCoverScale {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    transform: scale(1.12);
  }
}

@-ms-keyframes mastheadCoverScale {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    transform: scale(1.12);
  }
}

@keyframes mastheadCoverScale {
  0%, 100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    transform: scale(1.12);
  }
}

@-webkit-keyframes mastheadScrollAnimat {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
  }
}

@-moz-keyframes mastheadScrollAnimat {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
  }
}

@-ms-keyframes mastheadScrollAnimat {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
  }
}

@keyframes mastheadScrollAnimat {
  0%, 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
  }
}

.masthead__scroll {
  position: absolute;
  right: 50%;
  bottom: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  padding-right: 0.1em;
  padding-left: 0.17em;
  border: 2px solid;
  -webkit-border-radius: 18px;
  -khtml-border-radius: 18px;
  -moz-border-radius: 18px;
  border-radius: 18px;
  color: #ffffff;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  -webkit-transition-property: color, transform, box-shadow;
  transition-property: color, transform, box-shadow;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.masthead__scroll:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f175";
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.masthead__scroll:hover,
.masthead__scroll:focus {
  text-decoration: none;
}

.masthead__scroll--animat:before {
  -webkit-animation-name: mastheadScrollAnimat;
  animation-name: mastheadScrollAnimat;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.masthead__cover-video {
  position: relative;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .masthead__cover-video {
    /* IE10+ CSS styles go here */
    height: auto;
  }
}

.masthead__cover-image--scale {
  -webkit-animation-name: mastheadCoverScale;
  animation-name: mastheadCoverScale;
  -webkit-animation-duration: 28s;
  animation-duration: 28s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.2, 0, 0.7, 1);
  animation-timing-function: cubic-bezier(0.2, 0, 0.7, 1);
}

.masthead__cover {
  overflow: hidden;
}

.masthead__cover:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#66000000', endColorstr='#E6000000', GradientType=0);
  content: '';
}

.masthead__excerpt {
  display: block;
  margin-bottom: 0;
  font-size: 100%;
  font-weight: inherit;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.masthead__logo {
  display: inline-block;
  max-width: 120px;
}

.masthead__title {
  font-size: 300%;
  font-weight: 300;
  color: inherit;
}

.masthead__title + .breadcrumbs {
  margin-top: 10px;
}

.masthead__headline {
  position: relative;
  display: block;
  font-weight: inherit;
}

.masthead__container {
  z-index: 1;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}

.masthead {
  position: relative;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column;
  -webkit-box-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: #ffffff;
  overflow: hidden;
}

.masthead--front .masthead__container {
  padding-top: 140px;
  padding-bottom: 140px;
}

.masthead--single .masthead__title {
  font-size: 250%;
}

.masthead--single .author-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1em 1em .5em;
  color: #000000;
  background-color: #ffffff;
  -webkit-box-shadow: inset 0px 12px 34px -13px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0px 12px 34px -13px rgba(0, 0, 0, 0.2);
}

@media (min-width: 0) and (max-width: 767px) {
  .masthead--single .author-info {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 0) and (max-width: 767px) {
  .masthead--single .masthead__container {
    padding-bottom: 140px;
  }
}

.product__image {
  display: block;
}

.product__image img {
  max-height: 250px;
}

.product__ingredients {
  display: block;
  font-size: 18px;
  line-height: 1.529;
  color: inherit;
}

.product__ingredients-content {
  display: block;
  font-size: 100%;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: justify;
}

.product__ingredients-content p {
  font-weight: inherit;
}

.product__ingredients-content p:last-of-type {
  margin-bottom: 0;
}

.product__ingredients-content + .product__ingredients-content {
  margin-top: 35px;
}

.product__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: row-reverse;
  -webkit-box-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background-color: #000000;
  padding: 4px 14px;
  -webkit-border-radius: 26px;
  -khtml-border-radius: 26px;
  -moz-border-radius: 26px;
  border-radius: 26px;
}

.product__button-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  margin-right: -10px;
  margin-left: 6px;
  font-size: 70%;
  line-height: 1;
  background-color: red;
}

.product__button-icon:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f054";
}

.product__button:hover,
.product__button:focus {
  text-decoration: none;
}

.product__excerpt {
  display: block;
  font-size: 120%;
  font-weight: inherit;
  line-height: 1.2;
  margin-bottom: 0;
}

.product__excerpt + .breadcrumbs {
  margin-top: 10px;
}

.product__title {
  font-size: 360%;
  font-weight: 300;
}

.product__title + .product__excerpt {
  margin-top: 5px;
}

.product__headline-caption {
  position: relative;
  display: block;
  padding-bottom: 25px;
}

.product__headline-caption:before {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 64px;
  height: 3px;
  content: '';
  background-color: red;
}

.product__headline-caption + .product__headline-buttons {
  margin-bottom: 8px;
}

.product__headline {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-bottom: 22px;
  font-size: 16px;
  color: inherit;
}

.product__headline .breadcrumbs {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.6);
}

.product__headline .breadcrumbs a,
.product__headline .breadcrumbs .breadcrumb_last {
  margin-right: 5px;
  margin-left: 5px;
}

.product__headline .product__button {
  font-size: 112%;
}

.product__column {
  padding: 25px 15px;
}

.product__column .showcase {
  margin-bottom: 50px;
}

.product__columns {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.product__sidebar {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 15px;
  -webkit-box-shadow: 0px 12px 34px -13px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 12px 34px -13px rgba(0, 0, 0, 0.2);
}

.product__content {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .product__content .product__columns + .product__symbols .symbol__icon {
    width: 50px;
    height: 50px;
  }

  .product__content .product__columns + .product__symbols .symbols__item {
    flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    /* Safari 6.1+ */
    -ms-flex: 0 0 25%;
    /* IE 10 */
    width: 100%;
    max-width: 25%;
  }

  .product__content .product__columns + .product__symbols .symbols__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.product {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-orient: row;
  -webkit-box-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-orient: column-reverse;
  -webkit-box-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  font-weight: 500;
  color: #000000;
}

.product .food-energy + .product__ingredients .product__ingredients-content {
  text-align: right;
}

.single-layout__main iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.flexible__item {
  background-color: #ffffff;
}

.flexible > .flexible__item {
  padding-top: 35px;
  padding-bottom: 35px;
}

.flexible > .flexible__item:nth-child(even) {
  background-color: #fafafa;
}

.brand__section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.brand__section + .brand__section {
  border-top: 1px solid #cecece;
}

.brand__section--benefits {
  padding-bottom: 30px;
}

.brand {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#page-inner,
#page-content {
  position: relative;
  display: block;
}

#page-inner {
  z-index: 1;
}

#page-content {
  padding-top: 60px;
}

@media (min-width: 0) and (max-width: 767px) {
  body.page_for_product_categories .soft-menu,
  body.tax-product-cat .soft-menu,
  body.page_for_recipes .soft-menu,
  body.tax-recipe-cat .soft-menu {
    display: none;
  }
}

body.page_for_product_categories .soft-menu + .singular-form,
body.tax-product-cat .soft-menu + .singular-form,
body.page_for_recipes .soft-menu + .singular-form,
body.tax-recipe-cat .soft-menu + .singular-form {
  -webkit-box-shadow: 0px 12px 12px -14px black;
  box-shadow: 0px 12px 12px -14px black;
}

body.page_for_product_categories #page-inner,
body.tax-product-cat #page-inner,
body.page_for_recipes #page-inner,
body.tax-recipe-cat #page-inner {
  margin-top: -23px;
}

body.single-product .product + .section {
  z-index: 1;
}

@media (min-width: 0) and (max-width: 767px) {
  body.single-post .last-blog-posts .blog-grid,
  body.single-recipe .last-blog-posts .blog-grid {
    display: block;
  }
}

body.search .masthead__title > span {
  font-weight: 700;
}

.dropdown-backdrop {
  display: none;
}

.livereload-listen {
  background-color: rgb(189, 219, 93, 1);
  position: fixed;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  z-index: 9999;
  box-shadow: 5px 5px 5px #888888;
}
/*# sourceMappingURL=main.rtl.css.map */
