@charset "UTF-8";
/*

  Variables

*/
/* 
  Breakpoints (Additional)
  
  - About:
    This variable is used in:
    ~/abstractions/widths.scss 
    ~/components/grid-flex.scss
    Modify carefully as it will affect all grid layouts!

  - Considerations:
    Breakpoint order is important, originally these were reversed
    and since we're taking a mobile-first approach, the breakpoints
    were not cascading correctly. E.g. smaller sized breakpoint styles
    were overriting the larger breakpoints, etc.
*/
/* -------------------------------------- */
/* -------------------------------------- */
/* -------------------------------------- */
/* -------------------------------------- */
/* -------------------------------------- */
/*
 
  Mixins

  Global mixins

  Author: Felipe Arosemena
  Date: 12 Aug 2014

*/
/*

  Island

  Abstraction for an evenly padded block element

  Usage:

  .my-island-element {
    @extend %island;
  }
  
*/
.tiles__item--content, .island, .islet {
  display: block; }
  .tiles__item--content > :last-child, .tiles__item--content > :last-child, .island > :last-child,
  .island > :last-child, .islet > :last-child,
  .islet > :last-child {
    margin-bottom: 0; }

.tiles__item--content, .island {
  padding: 20px 20px; }

.islet {
  padding: 10px 10px; }

.island--box,
.islet--box {
  background: #F9F9F9; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline; }

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

*, *:before, *:after {
  box-sizing: border-box; }

sup {
  font-size: 0.75em;
  vertical-align: super;
  text-decoration: none; }

sub {
  font-size: 0.75em;
  vertical-align: sub;
  text-decoration: none; }

b, strong {
  font-weight: 700; }

i, em {
  font-style: italic; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

body {
  min-width: 320px;
  color: #132937;
  font-family: Poppins, Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; }

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s; }
  a:hover {
    color: #c35f14; }
  a img {
    transition: opacity 0.2s; }
  a:hover {
    text-decoration: none; }
    a:hover img {
      opacity: 0.8; }

h1, .alpha,
h2, .beta,
h3, .gamma,
h4, .delta,
h5, .epsilon,
h6, .zeta {
  display: block;
  position: relative;
  margin: 0 0 20px;
  color: inherit;
  font-family: Poppins, Verdana, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.25; }
  h1:first-child, .alpha:first-child,
  h2:first-child, .beta:first-child,
  h3:first-child, .gamma:first-child,
  h4:first-child, .delta:first-child,
  h5:first-child, .epsilon:first-child,
  h6:first-child, .zeta:first-child {
    margin-top: -0.1em; }
  h1:last-child, .alpha:last-child,
  h2:last-child, .beta:last-child,
  h3:last-child, .gamma:last-child,
  h4:last-child, .delta:last-child,
  h5:last-child, .epsilon:last-child,
  h6:last-child, .zeta:last-child {
    margin-bottom: -0.1em; }
  @media (max-width: 1024px) {
    h1, .alpha,
    h2, .beta,
    h3, .gamma,
    h4, .delta,
    h5, .epsilon,
    h6, .zeta {
      margin-bottom: 15px; } }

/**
 * $HEADINGS
 */
h1 a, h1 a:visited, .alpha a, .alpha a:visited,
h2 a,
h2 a:visited, .beta a, .beta a:visited,
h3 a,
h3 a:visited, .gamma a, .gamma a:visited,
h4 a,
h4 a:visited, .delta a, .delta a:visited,
h5 a,
h5 a:visited, .epsilon a, .epsilon a:visited,
h6 a,
h6 a:visited, .zeta a, .zeta a:visited {
  text-decoration: none; }

h1, .alpha {
  font-size: 42px; }

h2, .beta {
  font-size: 32px; }

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

h4, .delta {
  font-size: 20px; }

h5, .epsilon {
  font-size: 16px; }

h6, .zeta {
  font-size: 14px; }

@media (max-width: 1024px) {
  h1 {
    font-size: 32px; }
  h2 {
    font-size: 28px; }
  h3 {
    font-size: 22px; }
  h4 {
    font-size: 18px; } }

@media (max-width: 640px) {
  h1 {
    font-size: 28px; }
  h2 {
    font-size: 24px; } }

p, blockquote,
pre, dl {
  margin-top: 0;
  margin-bottom: 20px; }

/**
 * $PARAGRAPHS
 */
p {
  margin: 0 0 20px; }

/**
 * The `.lead` class is used to make the introductory text (usually a paragraph)
 * of a document slightly larger.
 */
.lead {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.25; }

html, body {
  height: 100%; }

body.is_locked {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none; }

#site {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -ms-flex-direction: column;
      flex-direction: column;
  min-height: 100%; }

#contents {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-positive: 1;
      flex-grow: 1; }

.main_box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%; }

.wrapper {
  display: block;
  position: relative; }
  .wrapper + .btns {
    text-align: center; }
    .wrapper + .btns .btn, .wrapper + .btns .woocommerce-product-search button, .woocommerce-product-search .wrapper + .btns button, .wrapper + .btns .woocommerce a.added_to_cart, .woocommerce .wrapper + .btns a.added_to_cart {
      margin-top: 30px; }

.container, .woocommerce-cart .post-type-page,
.woocommerce-checkout .post-type-page,
.woocommerce-account .post-type-page {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1250px;
  padding: 0 40px;
  margin: 0 auto;
  z-index: 2; }
  .container .container, .woocommerce-cart .post-type-page .container, .woocommerce-checkout .post-type-page .container, .woocommerce-account .post-type-page .container, .container .woocommerce-cart .post-type-page, .woocommerce-cart .container .post-type-page, .woocommerce-cart .post-type-page .post-type-page,
  .container .woocommerce-checkout .post-type-page, .woocommerce-checkout .container .post-type-page,
  .woocommerce-checkout .post-type-page .post-type-page,
  .container .woocommerce-account .post-type-page, .woocommerce-account .container .post-type-page,
  .woocommerce-account .post-type-page .post-type-page {
    padding: 0; }
  @media (max-width: 1024px) {
    .container, .woocommerce-cart .post-type-page,
    .woocommerce-checkout .post-type-page,
    .woocommerce-account .post-type-page {
      padding: 0 20px; } }

.container--small {
  max-width: 1000px; }

.container--xs {
  max-width: 600px; }

.container--flush {
  padding-left: 0;
  padding-right: 0; }

section {
  display: block;
  position: relative;
  padding: 80px 0; }
  section:first-child {
    padding-top: 45px; }
  @media (max-width: 1024px) {
    section {
      padding: 50px 0; }
      section:first-child {
        padding-top: 35px; } }
  @media (max-width: 640px) {
    section {
      padding: 40px 0; } }

.has_background {
  background-color: #F9F9F9; }

.has_empty_top {
  padding-top: 0; }

.has_empty_bottom {
  padding-bottom: 0; }

.has_empty_both {
  padding-top: 0;
  padding-bottom: 0; }

.has_border {
  border-bottom: 1px solid #E5E5E5; }

input, select, textarea {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  margin: 0;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  background: #FFFFFF;
  color: #132937;
  font-family: Poppins, Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  transition: 0.2s;
  z-index: 2;
  appearance: none; }
  input:focus, select:focus, textarea:focus {
    border-color: #E87722;
    outline: none; }
  @media (max-width: 1024px) {
    input, select, textarea {
      padding: 10px 16px;
      line-height: 20px; } }

textarea {
  overflow: auto;
  height: 200px;
  resize: vertical; }

select::-ms-expand {
  display: none; }

select {
  padding-right: 30px;
  background: #FFFFFF url(../img/ico_select.svg) right 12px top 50% no-repeat; }
  select::-ms-expand {
    display: none; }

input[type="checkbox"], input[type="radio"] {
  display: inline-block;
  position: relative;
  top: -1px;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0 5px 0 0;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  background: #FFFFFF 55% 50% no-repeat;
  vertical-align: middle;
  visibility: visible;
  appearance: none; }
  input[type="checkbox"]:checked, input[type="radio"]:checked {
    border-color: #132937;
    background-color: #132937;
    background-image: url(../../img/ico_check.svg); }

input[type="radio"] {
  border-radius: 50%; }
  input[type="radio"]:checked {
    background-image: none;
    box-shadow: 0 0 0 5px #FFFFFF inset; }

.gform_wrapper .gfield_label, .gform_wrapper label, .gform_wrapper legend {
  display: block;
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px; }
  .gform_wrapper .gfield_label:last-child, .gform_wrapper label:last-child, .gform_wrapper legend:last-child {
    margin-bottom: 0; }
  @media (max-width: 1024px) {
    .gform_wrapper .gfield_label, .gform_wrapper label, .gform_wrapper legend {
      font-size: 15px; } }

.form__group {
  position: relative;
  margin-bottom: 20px; }

.form__group--boxed {
  padding: 5px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 5px; }
  .form__group--boxed label {
    margin: 0; }
  .form__group--boxed select {
    margin-left: -6px; }
    .form__group--boxed select[multiple] {
      margin-left: 0; }

.form__group--inline {
  display: inline-block;
  vertical-align: baseline; }
  .form__group--inline label, .form__group--inline input {
    width: auto; }
  @media only screen and (max-width: 1024px) {
    .form__group--inline {
      display: block; } }

.form__group--boxed:focus, .form__control:focus, .woocommerce-product-search input:focus, .input-text:focus, .woocommerce-ordering select:focus,
.woocommerce-ordering .select2-container--default .select2-selection--single:focus,
.variations select:focus,
.variations .select2-container--default .select2-selection--single:focus,
.woocommerce-billing-fields select:focus,
.woocommerce-billing-fields .select2-container--default .select2-selection--single:focus, .focus.form__group--boxed, .focus.form__control, .woocommerce-product-search input.focus, .focus.input-text, .woocommerce-ordering select.focus,
.woocommerce-ordering .select2-container--default .focus.select2-selection--single,
.variations select.focus,
.variations .select2-container--default .focus.select2-selection--single,
.woocommerce-billing-fields select.focus,
.woocommerce-billing-fields .select2-container--default .focus.select2-selection--single {
  border-color: #212121;
  outline: none;
  box-shadow: none; }

.form__control, .woocommerce-product-search input, .input-text, .woocommerce-ordering select,
.woocommerce-ordering .select2-container--default .select2-selection--single,
.variations select,
.variations .select2-container--default .select2-selection--single,
.woocommerce-billing-fields select,
.woocommerce-billing-fields .select2-container--default .select2-selection--single {
  width: 100%;
  height: 2.5rem;
  padding: 5px;
  border: 1px solid #E5E5E5;
  border-radius: 5px; }

.form__control--boxed {
  padding: 0;
  border: none;
  background: transparent; }

.form__checklist, .radio, .checkbox {
  padding: 0;
  margin: 0;
  list-style: none; }
  .form__checklist label, .form__checklist input, .radio label, .radio input, .checkbox label, .checkbox input {
    display: inline-block;
    cursor: pointer; }

/* -------------------------------------- */
/*

  $FORM VALIDATION

  Form Validation Classes

*/
.validation_error {
  margin-bottom: 20px; }

.validation_message {
  margin-top: 5px; }

.form__control.val-error, .woocommerce-product-search input.val-error, .val-error.input-text, .woocommerce-invalid-required-field input, .woocommerce-ordering select.val-error,
.woocommerce-ordering .select2-container--default .val-error.select2-selection--single,
.variations select.val-error,
.variations .select2-container--default .val-error.select2-selection--single,
.woocommerce-billing-fields select.val-error,
.woocommerce-billing-fields .select2-container--default .val-error.select2-selection--single {
  border: 1px solid #b33630; }

label.val-error {
  color: #b33630; }
  label.val-error small {
    color: #132937; }

.val-error--top-right {
  position: absolute;
  top: 0;
  right: 0; }

small.val-error, span.val-error {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #b33630; }

.cards_box .items, .recipes_box .items, .products_box .items, .partners_box .items {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin: 0 -15px -30px;
  z-index: 2; }
  @media (max-width: 1024px) {
    .cards_box .items, .recipes_box .items, .products_box .items, .partners_box .items {
      margin: 0 -10px -20px; } }

.cards_box .item, .recipes_box .item, .products_box .item, .partners_box .item {
  display: inline-block;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: stretch;
      align-items: stretch;
  -ms-flex-pack: stretch;
      justify-content: stretch;
  padding: 0 15px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.5;
  white-space: normal;
  z-index: 2; }
  @media (max-width: 1024px) {
    .cards_box .item, .recipes_box .item, .products_box .item, .partners_box .item {
      padding: 0 10px;
      margin-bottom: 20px; } }

button {
  box-sizing: border-box;
  padding: 0;
  border: none;
  background: none;
  transition: 0.2s;
  cursor: pointer;
  appearance: none; }

.button, .btn, .woocommerce-product-search button, .woocommerce a.added_to_cart, .woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce button.button.alt.disabled,
.woocommerce a.button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-pack: center;
      justify-content: center;
  box-sizing: border-box;
  height: 48px;
  padding: 0 25px;
  margin: 0;
  border: 2px solid #E87722;
  border-radius: 5px;
  background: #E87722 50% 50% no-repeat;
  background-size: 19px 19px;
  color: #FFFFFF;
  font-family: Poppins, Verdana, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
  z-index: 2;
  appearance: none; }
  .button:hover, .btn:hover, .woocommerce-product-search button:hover, .woocommerce a.added_to_cart:hover, .woocommerce button.button:hover,
  .woocommerce button.button.alt.disabled:hover,
  .woocommerce a.button:hover {
    border-color: #c35f14;
    background-color: #c35f14;
    color: #FFFFFF; }
  .button:focus, .btn:focus, .woocommerce-product-search button:focus, .woocommerce a.added_to_cart:focus, .woocommerce button.button:focus,
  .woocommerce button.button.alt.disabled:focus,
  .woocommerce a.button:focus {
    border-color: #AF1685; }
  @media (max-width: 1024px) {
    .button, .btn, .woocommerce-product-search button, .woocommerce a.added_to_cart, .woocommerce button.button,
    .woocommerce button.button.alt,
    .woocommerce button.button.alt.disabled,
    .woocommerce a.button {
      height: 42px;
      padding: 0 20px;
      font-size: 14px;
      line-height: 18px; } }

.btn--outline {
  border-color: currentColor;
  background-color: transparent;
  color: currentColor; }
  .btn--outline:hover {
    border-color: #E87722;
    background-color: transparent;
    color: #E87722; }

.btn--primary {
  border-color: #E87722;
  background-color: transparent;
  color: #E87722; }
  .btn--primary:hover {
    border-color: #AF1685;
    background-color: transparent;
    color: #AF1685; }

.btn--secondary {
  border-color: #AF1685;
  background-color: transparent;
  color: #AF1685; }
  .btn--secondary:hover {
    border-color: #E87722;
    background-color: transparent;
    color: #E87722; }

.btn--disabled, .btn:disabled, .woocommerce-product-search button:disabled, .woocommerce a.added_to_cart:disabled, .btn:disabled:hover, .woocommerce-product-search button:disabled:hover {
  border-color: #2d6283;
  background-color: rgba(19, 41, 55, 0.1);
  color: #132937;
  cursor: default; }

.btn--small {
  height: 42px; }

.btn--large {
  height: 56px; }

.btn--full {
  width: 100%; }

.btn.is_hidden, .woocommerce-product-search button.is_hidden, .woocommerce a.is_hidden.added_to_cart {
  display: none; }

.btn.is_loading, .woocommerce-product-search button.is_loading, .woocommerce a.is_loading.added_to_cart, .btn.is_loading:hover, .woocommerce-product-search button.is_loading:hover, .woocommerce a.is_loading.added_to_cart:hover {
  border-color: #2d6283;
  background-color: transparent;
  background-image: url(../img/ico_loading.svg);
  color: transparent; }

.btns {
  display: block;
  margin: 0 -5px -10px;
  font-size: 0;
  line-height: 0; }
  .btns .btn, .btns .woocommerce-product-search button, .woocommerce-product-search .btns button, .btns .woocommerce a.added_to_cart, .woocommerce .btns a.added_to_cart {
    min-width: auto;
    margin: 0 5px 10px; }

/* Styles for the content editor */
.content {
  display: block;
  position: relative;
  margin: -3px 0 27px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.666; }
  .content:last-child {
    margin-bottom: -3px; }
  .content:after {
    content: "";
    display: table;
    clear: both; }
  .content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
    margin: 35px 0 10px; }
    .content h1:first-child, .content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child {
      margin-top: -0.1em; }
    .content h1:last-child, .content h2:last-child, .content h3:last-child, .content h4:last-child, .content h5:last-child, .content h6:last-child {
      margin-bottom: -0.1em; }
  .content p, .content > table, .content > ul, .content > ol, .content .table_wrapper {
    margin-bottom: 20px; }
    .content p:last-child, .content > table:last-child, .content > ul:last-child, .content > ol:last-child, .content .table_wrapper:last-child {
      margin-bottom: 0; }
  .content a:not([class]) {
    color: #E87722;
    font-weight: 400;
    text-decoration: underline; }
    .content a:not([class]):hover {
      text-decoration: none; }
  .content ul, .content ol {
    display: block; }
    .content ul ul, .content ul ol, .content ol ul, .content ol ol {
      padding-top: 15px;
      margin-left: 0; }
  .content li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    text-align: left; }
    .content li p:not(:last-child) {
      margin-bottom: 10px; }
  .content ul > li:before {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor; }
  .content ol {
    counter-reset: list; }
    .content ol > li {
      padding-left: 25px;
      counter-increment: list; }
      .content ol > li:before {
        content: counter(list) ".";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        font-weight: 700;
        text-align: center; }
  .content img {
    max-width: 100%;
    height: auto; }
  .content table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    border: 1px solid #E5E5E5; }
  .content thead {
    background-color: #E5E5E5; }
  .content tbody tr:nth-child(2n) {
    background-color: #F9F9F9; }
  .content td, .content th {
    padding: 10px;
    border-bottom: 1px solid #E5E5E5; }
    .content td:first-child, .content th:first-child {
      padding-left: 20px; }
    .content td:last-child, .content th:last-child {
      padding-right: 20px; }
  .content th {
    font-weight: 600;
    text-align: left; }
  .content .table_wrapper {
    overflow: auto; }
  .content hr {
    height: 1px;
    margin: 25px 0;
    border: none;
    background-color: #E5E5E5; }
    .content hr:first-child {
      margin-top: 0; }
    .content hr:last-child {
      margin-bottom: 0; }
  .content blockquote {
    display: block;
    overflow: hidden;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: #F9F9F9; }
  @media (max-width: 1024px) {
    .content .table_wrapper {
      display: block;
      overflow-x: auto;
      overflow-y: hidden; } }

.content .alignleft {
  float: left;
  margin: 0 20px 20px 0; }

.content .alignright {
  float: right;
  margin: 0 0 20px 20px; }

.content .alignnone {
  width: 100%;
  height: auto;
  margin: 0 0 20px; }

.content .aligncenter {
  display: block;
  max-width: 100%;
  margin: 0 auto 20px; }

@media (max-width: 768px) {
  .content .alignright, .content .alignleft {
    display: block;
    float: none;
    text-align: center; } }

/* Galleries and images with captions */
.content .wp-caption-text {
  display: block;
  margin: 0;
  text-align: center; }

.content .wp-caption {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  margin-bottom: 20px;
  background: #F9F9F9; }
  .content .wp-caption .wp-caption-text {
    padding: 10px 10px 0; }
  .content .wp-caption a, .content .wp-caption img {
    display: block;
    position: relative;
    margin: 0; }

.content .gallery {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  margin: 25px -5px 15px; }
  .content .gallery-columns-1 .gallery-item {
    width: 100%; }
  .content .gallery-columns-2 .gallery-item {
    width: 50%; }
  .content .gallery-columns-4 .gallery-item {
    width: 25%; }
  .content .gallery-columns-5 .gallery-item {
    width: 20%; }
  .content .gallery-columns-6 .gallery-item {
    width: 16.66%; }
  .content .gallery-columns-7 .gallery-item {
    width: 14.28%; }
  .content .gallery-columns-8 .gallery-item {
    width: 12.5%; }
  .content .gallery-columns-9 .gallery-item {
    width: 11.11%; }
  .content .gallery-columns-6 .gallery-caption,
  .content .gallery-columns-7 .gallery-caption,
  .content .gallery-columns-8 .gallery-caption,
  .content .gallery-columns-9 .gallery-caption {
    display: none; }

.content .gallery-item {
  display: inline-block;
  box-sizing: border-box;
  width: 33.33%;
  padding: 0 5px;
  margin: 0 0 10px;
  vertical-align: top; }

.content .gallery-icon {
  display: block;
  padding: 0;
  margin: 0; }
  .content .gallery-icon a, .content .gallery-icon img {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0; }

.content .gallery-caption {
  display: block;
  padding: 10px;
  background: #F9F9F9; }

@media (max-width: 768px) {
  .content .gallery-columns-2 .gallery-item {
    width: 100%; }
  .content .gallery-columns-4 .gallery-item, .content .gallery-columns-5 .gallery-item {
    width: 50%; }
  .content .gallery-columns-6 .gallery-item, .content .gallery-columns-7 .gallery-item {
    width: 33.33%; }
  .content .gallery-columns-8 .gallery-item, .content .gallery-columns-9 .gallery-item {
    width: 25%; } }

@media (max-width: 480px) {
  .content .gallery-columns-3 .gallery-item, .content .gallery-columns-4 .gallery-item, .content .gallery-columns-5 .gallery-item {
    width: 100%; }
  .content .gallery-columns-6 .gallery-item, .content .gallery-columns-7 .gallery-item {
    width: 50%; }
  .content .gallery-columns-8 .gallery-item, .content .gallery-columns-9 .gallery-item {
    width: 33.33%; } }

/* Embeds */
.wp-block-embed, .wp-embed-video, .wp-video {
  display: block;
  position: relative;
  width: 100%;
  margin: 25px auto; }
  .wp-block-embed:first-child, .wp-embed-video:first-child, .wp-video:first-child {
    margin-top: 0; }
  .wp-block-embed:last-child, .wp-embed-video:last-child, .wp-video:last-child {
    margin-bottom: 0; }

.wp-block-embed.wp-has-aspect-ratio:before {
  content: '';
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; }

.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.wp-block-embed.wp-has-aspect-ratio iframe {
  display: block;
  width: 100%;
  height: 100%; }

.wp-embed-video:before, .wp-video-shortcode:before {
  content: '';
  display: block;
  position: relative;
  width: 0;
  padding-bottom: 56.25%; }

.wp-embed-video iframe, .wp-video-shortcode iframe {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.quality_box .contents {
  display: block;
  position: relative;
  margin-bottom: 35px;
  z-index: 2; }
  .quality_box .contents:last-child {
    margin-bottom: 0; }
  .quality_box .contents .caption {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    opacity: 0.8; }
  @media (max-width: 1024px) {
    .quality_box .contents {
      margin-bottom: 25px; }
      .quality_box .contents .caption {
        margin-bottom: 12px; } }

.content_box .contents, .cta_box .contents, .cards_box .contents, .posts_box .contents, .recipe_box .contents, .recipes_box .contents, .products_box .contents, .partners_box .contents {
  display: block;
  position: relative;
  max-width: 640px;
  margin: 0 auto 35px;
  text-align: center;
  z-index: 2; }
  .content_box .contents:last-child, .cta_box .contents:last-child, .cards_box .contents:last-child, .posts_box .contents:last-child, .recipe_box .contents:last-child, .recipes_box .contents:last-child, .products_box .contents:last-child, .partners_box .contents:last-child {
    margin-bottom: 0; }
  .content_box .contents .caption, .cta_box .contents .caption, .cards_box .contents .caption, .posts_box .contents .caption, .recipe_box .contents .caption, .recipes_box .contents .caption, .products_box .contents .caption, .partners_box .contents .caption {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    opacity: 0.8; }
  @media (max-width: 1024px) {
    .content_box .contents, .cta_box .contents, .cards_box .contents, .posts_box .contents, .recipe_box .contents, .recipes_box .contents, .products_box .contents, .partners_box .contents {
      margin-bottom: 25px; }
      .content_box .contents .caption, .cta_box .contents .caption, .cards_box .contents .caption, .posts_box .contents .caption, .recipe_box .contents .caption, .recipes_box .contents .caption, .products_box .contents .caption, .partners_box .contents .caption {
        margin-bottom: 12px; } }

.gform_wrapper .gform_fields, .gform_wrapper .ginput_container_name, .gform_wrapper .ginput_container_address, .gform_wrapper .ginput_container_email.ginput_complex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0 -10px; }

.gform_wrapper .gfield, .gform_wrapper .ginput_container_name > span, .gform_wrapper .ginput_container_address .ginput_full, .gform_wrapper .ginput_container_address .ginput_left, .gform_wrapper .ginput_container_address .ginput_right, .gform_wrapper .ginput_container_email.ginput_complex .ginput_full, .gform_wrapper .ginput_container_email.ginput_complex .ginput_left, .gform_wrapper .ginput_container_email.ginput_complex .ginput_right {
  display: block;
  position: relative;
  padding: 0;
  margin: 0 10px 20px; }

.gform_wrapper {
  display: block !important;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  /* Complex fields */
  /* Custom classes */ }
  .gform_wrapper .gform_title {
    margin-bottom: 15px; }
  .gform_wrapper .gform_body {
    display: block;
    -ms-flex-positive: 1;
        flex-grow: 1; }
  .gform_wrapper .gform_footer {
    display: block;
    -ms-flex-positive: 0;
        flex-grow: 0;
    margin-top: 10px;
    text-align: center; }
    .gform_wrapper .gform_footer .button {
      min-width: 150px; }
  .gform_wrapper .gform_page_footer {
    text-align: right; }
  .gform_wrapper .ginput_container {
    position: relative;
    z-index: 2; }
  .gform_wrapper .gfield {
    width: calc(100% - 20px); }
    .gform_wrapper .gfield.spacer {
      display: none; }
    .gform_wrapper .gfield--width-quarter {
      width: calc(25% - 20px); }
    .gform_wrapper .gfield--width-third {
      width: calc(33.333% - 20px); }
    .gform_wrapper .gfield--width-five-twelfths {
      width: calc(41.666% - 20px); }
    .gform_wrapper .gfield--width-half {
      width: calc(50% - 20px); }
    .gform_wrapper .gfield--width-two-thirds {
      width: calc(66.666% - 20px); }
    .gform_wrapper .gfield--width-three-quarter {
      width: calc(75% - 20px); }
    .gform_wrapper .gfield_visibility_hidden {
      display: none; }
    .gform_wrapper .gfield_required {
      margin-left: 2px;
      color: #ff0000; }
    .gform_wrapper .gfield_checkbox, .gform_wrapper .gfield_radio {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-align: center;
          align-items: center;
      margin: 5px -10px -15px; }
      .gform_wrapper .gfield_checkbox .gchoice, .gform_wrapper .gfield_radio .gchoice {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        width: calc(33.33% - 20px);
        margin: 0 10px 15px; }
      .gform_wrapper .gfield_checkbox input, .gform_wrapper .gfield_checkbox label, .gform_wrapper .gfield_radio input, .gform_wrapper .gfield_radio label {
        min-width: 0;
        margin: 0 8px 0 0;
        font-weight: 400; }
        .gform_wrapper .gfield_checkbox input:last-child, .gform_wrapper .gfield_checkbox label:last-child, .gform_wrapper .gfield_radio input:last-child, .gform_wrapper .gfield_radio label:last-child {
          margin-right: 0; }
    .gform_wrapper .gfield_description {
      display: block;
      position: relative;
      margin: 8px 0 2px;
      font-size: 14px;
      line-height: 20px; }
      .gform_wrapper .gfield_description:first-child {
        margin-top: 0; }
      .gform_wrapper .gfield_description:last-child {
        margin-bottom: 0; }
  .gform_wrapper .gchoice {
    display: block;
    margin: 0 0 10px; }
  .gform_wrapper .gf_coupon_code {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .gform_wrapper .gf_progressbar {
    display: block;
    position: relative;
    padding: 2px;
    margin-bottom: 20px;
    border: 1px solid #E5E5E5;
    background-color: #FFFFFF; }
    .gform_wrapper .gf_progressbar_title {
      display: block;
      margin: 0 0 10px;
      font-size: 18px;
      font-weight: 600;
      line-height: 1.33; }
    .gform_wrapper .gf_progressbar_percentage {
      display: block;
      box-sizing: border-box;
      height: 18px;
      padding: 0 5px;
      border-radius: 4px;
      background-color: #E87722;
      color: #FFFFFF;
      font-size: 13px;
      font-weight: 600;
      line-height: 18px;
      text-align: center; }
  .gform_wrapper .gform_card_icon_container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    margin-right: -4px;
    margin-bottom: 10px; }
  .gform_wrapper .gform_card_icon {
    width: 36px;
    height: 32px;
    margin-right: 4px;
    background-image: url(../img/ico_cards.png);
    background-repeat: no-repeat;
    font-size: 0;
    line-height: 0; }
    .gform_wrapper .gform_card_icon_visa {
      background-position: 0 0; }
      .gform_wrapper .gform_card_icon_visa.gform_card_icon_selected {
        background-position: 0 -32px; }
    .gform_wrapper .gform_card_icon_mastercard {
      background-position: -36px 0; }
      .gform_wrapper .gform_card_icon_mastercard.gform_card_icon_selected {
        background-position: -36px -32px; }
    .gform_wrapper .gform_card_icon_amex {
      background-position: -72px 0; }
      .gform_wrapper .gform_card_icon_amex.gform_card_icon_selected {
        background-position: -72px -32px; }
    .gform_wrapper .gform_card_icon_discover {
      background-position: -108px 0; }
      .gform_wrapper .gform_card_icon_discover.gform_card_icon_selected {
        background-position: -108px -32px; }
    .gform_wrapper .gform_card_icon_maestro {
      background-position: -144px 0; }
      .gform_wrapper .gform_card_icon_maestro.gform_card_icon_selected {
        background-position: -144px -32px; }
    .gform_wrapper .gform_card_icon_jcb {
      background-position: -180px 0; }
      .gform_wrapper .gform_card_icon_jcb.gform_card_icon_selected {
        background-position: -180px -32px; }
  .gform_wrapper .gform_drop_area {
    display: block;
    position: relative;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.02);
    text-align: center; }
  .gform_wrapper .gform_drop_instructions {
    display: block;
    margin: -2px 0 10px;
    color: rgba(19, 41, 55, 0.8);
    font-size: 16px; }
  .gform_wrapper .gform_fileupload_rules {
    display: block;
    margin: -2px 0 0;
    font-size: 14px;
    line-height: 20px; }
  .gform_wrapper .ginput_preview {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start;
    margin-top: 10px; }
    .gform_wrapper .ginput_preview .gform_delete_file {
      -ms-flex-positive: 0;
          flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -ms-flex-order: 2;
          order: 2;
      margin-left: 10px; }
  .gform_wrapper .gform_delete {
    vertical-align: middle;
    cursor: pointer; }
  .gform_wrapper .ginput_container_consent .gfield_required {
    display: none; }
  .gform_wrapper .gfield_html a {
    color: #E87722;
    text-decoration: underline; }
    .gform_wrapper .gfield_html a:hover {
      text-decoration: none; }
  .gform_wrapper .gform_ajax_spinner {
    display: none;
    margin-left: 10px;
    vertical-align: middle; }
  .gform_wrapper .gform_anchor, .gform_wrapper .hidden_label .gfield_label, .gform_wrapper .hidden-input .gfield_label, .gform_wrapper .gform_hidden {
    display: none; }
  .gform_wrapper .validation_error {
    display: none; }
  .gform_wrapper .validation_message {
    display: block;
    margin: 12px 0 -6px;
    color: #ff0000;
    font-size: 14px;
    line-height: 20px; }
    .gform_wrapper .validation_message:empty {
      display: none; }
  .gform_wrapper .gform_validation_errors {
    display: none; }
  .gform_wrapper .ginput_container_name {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    .gform_wrapper .ginput_container_name > span {
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
      -ms-flex-positive: 1;
          flex-grow: 1;
      width: auto;
      margin-bottom: 0; }
    .gform_wrapper .ginput_container_name label:last-child {
      margin: 8px 0 0; }
  .gform_wrapper .ginput_container_address .ginput_full, .gform_wrapper .ginput_container_address .ginput_left, .gform_wrapper .ginput_container_address .ginput_right, .gform_wrapper .ginput_container_email.ginput_complex .ginput_full, .gform_wrapper .ginput_container_email.ginput_complex .ginput_left, .gform_wrapper .ginput_container_email.ginput_complex .ginput_right {
    width: calc(50% - 20px); }
  .gform_wrapper .ginput_container_address .ginput_full, .gform_wrapper .ginput_container_email.ginput_complex .ginput_full {
    width: calc(100% - 20px); }
  .gform_wrapper .ginput_container_address .address_line_1, .gform_wrapper .ginput_container_address .address_line_2, .gform_wrapper .ginput_container_email.ginput_complex .address_line_1, .gform_wrapper .ginput_container_email.ginput_complex .address_line_2 {
    width: calc(50% - 20px); }
  .gform_wrapper .ginput_container_creditcard {
    display: block;
    padding: 20px;
    border: 1px solid #E5E5E5;
    background-color: #F9F9F9; }
    .gform_wrapper .ginput_container_creditcard .ginput_full {
      display: block;
      margin-bottom: 15px; }
      .gform_wrapper .ginput_container_creditcard .ginput_full:last-child {
        margin-bottom: 0; }
    .gform_wrapper .ginput_container_creditcard .ginput_cardextras {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: start;
          align-items: flex-start;
      margin: 0 0 15px; }
  .gform_wrapper .ginput_cardinfo_left {
    display: block;
    position: relative;
    -ms-flex-preferred-size: 66.66%;
        flex-basis: 66.66%; }
  .gform_wrapper .ginput_cardinfo_right {
    display: block;
    position: relative;
    -ms-flex-preferred-size: 33.33%;
        flex-basis: 33.33%;
    margin-left: 10px; }
  .gform_wrapper .ginput_card_expiration_month {
    margin-right: 10px; }
  .gform_wrapper .ginput_card_expiration_container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: start;
        align-items: flex-start; }
    .gform_wrapper .ginput_card_expiration_container > span {
      -ms-flex-preferred-size: calc(50% - 5px);
          flex-basis: calc(50% - 5px);
      -ms-flex-positive: 1;
          flex-grow: 1;
      margin-right: 10px; }
      .gform_wrapper .ginput_card_expiration_container > span:last-child {
        margin-right: 0; }
  .gform_wrapper .ginput_card_security_code_icon {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 16px;
    width: 32px;
    height: 23px;
    background-image: url(../img/ico_cards.png);
    background-repeat: no-repeat;
    background-position: 0 -128px;
    z-index: 3; }
  .gform_wrapper .gfield_creditcard_warning_message {
    display: block;
    margin-bottom: 15px; }
  .gform_wrapper .gfield_buttons input[type="radio"], .gform_wrapper .gfield_buttons input[type="checkbox"] {
    position: absolute;
    left: -1000px;
    visibility: hidden; }
  .gform_wrapper .gfield_buttons .gfield_radio, .gform_wrapper .gfield_buttons .gfield_checkbox {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
        align-items: stretch;
    margin: 0; }
  .gform_wrapper .gfield_buttons .gchoice {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    margin: 0; }
    .gform_wrapper .gfield_buttons .gchoice:first-child label {
      border-left-width: 1px; }
  .gform_wrapper .gfield_buttons input:checked + label {
    border-color: #E87722;
    background-color: #E87722;
    color: #FFFFFF; }
  .gform_wrapper .gfield_buttons label {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    -ms-flex-pack: center;
        justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 56px;
    padding: 0 10px 1px;
    margin: 0;
    border: 1px solid #E5E5E5;
    border-left-width: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
    z-index: 2;
    appearance: none; }
  .gform_wrapper .gfield_hidden {
    display: none; }
  .gform_wrapper .gfield_double .gchoice {
    width: calc(50% - 20px); }
  @media (max-width: 1024px) {
    .gform_wrapper .ginput_card_security_code_icon {
      right: 8px;
      bottom: 11px; }
    .gform_wrapper .gfield_buttons label {
      height: 46px; } }
  @media (max-width: 640px) {
    .gform_wrapper .gfield {
      width: calc(100% - 20px); }
      .gform_wrapper .gfield_checkbox .gchoice, .gform_wrapper .gfield_radio .gchoice {
        width: calc(50% - 20px); }
    .gform_wrapper .ginput_cardextras {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
    .gform_wrapper .ginput_cardinfo_left, .gform_wrapper .ginput_cardinfo_right {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      margin: 0 0 15px; }
      .gform_wrapper .ginput_cardinfo_left:last-child, .gform_wrapper .ginput_cardinfo_right:last-child {
        margin-bottom: 0; }
    .gform_wrapper .ginput_container_address .ginput_full, .gform_wrapper .ginput_container_address .ginput_left, .gform_wrapper .ginput_container_address .ginput_right, .gform_wrapper .ginput_container_email.ginput_complex .ginput_full, .gform_wrapper .ginput_container_email.ginput_complex .ginput_left, .gform_wrapper .ginput_container_email.ginput_complex .ginput_right {
      width: calc(100% - 20px); }
    .gform_wrapper .gform_footer {
      margin-top: 0; }
      .gform_wrapper .gform_footer .button {
        min-width: 100px; } }

.gform_confirmation_message {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center; }
  @media (max-width: 1024px) {
    .gform_confirmation_message {
      font-size: 16px; } }

/* Wide submit button */
.gform_wide .gform_footer .button {
  width: 100%; }

/* Datepicker Widget */
.ui-datepicker {
  min-width: 240px;
  height: auto;
  margin: 5px auto 0;
  background: #d7d7d7;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  font-family: Poppins, Verdana, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  z-index: 1000; }
  .ui-datepicker-calendar {
    margin: 0; }
    .ui-datepicker-calendar .ui-state-default {
      background: #ededed linear-gradient(to bottom, #ededed 0%, #dedede 100%);
      box-shadow: inset 1px 1px 0 0 rgba(250, 250, 250, 0.5); }
    .ui-datepicker-calendar .ui-state-hover {
      background: #f7f7f7; }
    .ui-datepicker-calendar .ui-state-active {
      position: relative;
      margin: 0;
      border: 1px solid #c19163;
      background: #FFF2AA;
      box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
      text-shadow: 0 1px 0 #FFFFFF;
      color: #666; }
  .ui-datepicker-header {
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%;
    padding: 4px; }
    .ui-datepicker-header .ui-icon {
      display: none; }
  .ui-datepicker-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-order: 2;
        order: 2;
    text-align: center; }
  .ui-datepicker-prev, .ui-datepicker-next {
    display: inline-block;
    overflow: hidden;
    float: none;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-order: 3;
        order: 3;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    margin-left: 2px;
    border: 1px solid #E5E5E5;
    background: #FFFFFF 50% 50% url(../img/ico_arrow_thin.svg) no-repeat;
    text-align: center;
    cursor: pointer; }
  .ui-datepicker-prev {
    -ms-flex-order: 1;
        order: 1;
    margin-right: 2px;
    margin-left: 0;
    transform: scaleX(-1); }
  .ui-datepicker-trigger {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    width: 18px;
    height: auto;
    transform: translateY(-50%);
    z-index: 4; }
  .ui-datepicker-unselectable .ui-state-default {
    background: #f4f4f4;
    color: #b4b3b3; }
  .ui-datepicker-unselectable .ui-state-disabled {
    background-color: #d7d7d7; }
  .ui-datepicker table {
    width: 100%;
    border-collapse: collapse; }
  .ui-datepicker thead {
    border-bottom: 1px solid #bbb;
    background: linear-gradient(to bottom, #f7f7f7 0%, #f1f1f1 100%); }
  .ui-datepicker th {
    padding: 5px 0;
    text-shadow: 1px 0 0 #fff;
    color: #666666;
    font-size: 8px;
    line-height: 12px;
    text-align: center;
    text-transform: uppercase;
    filter: dropshadow(color=#fff, offx=1, offy=0); }
  .ui-datepicker tr {
    border-bottom: 1px solid #bbb; }
    .ui-datepicker tr:last-child {
      border-bottom: 0; }
  .ui-datepicker td {
    vertical-align: middle; }
    .ui-datepicker td span, .ui-datepicker td a {
      display: inline-block;
      width: 100%;
      height: auto;
      text-shadow: 1px 1px 0 #fff;
      color: #666666;
      font-weight: bold;
      line-height: 30px;
      text-align: center; }
  .ui-datepicker tbody td {
    width: 14.286%;
    border-top: 1px solid #bbb;
    border-right: 1px solid #bbb; }
    .ui-datepicker tbody td:last-child {
      border-right: 0; }
  .ui-datepicker select {
    padding: 5px 25px 5px 12px;
    margin: 0 2px;
    font-size: 13px;
    line-height: 20px; }

/*
    
    Tiles

*/
@media only screen and (min-width: 1251px) {
  .tiles {
    display: table;
    table-layout: fixed;
    width: 100%; } }

@media only screen and (min-width: 1025px) {
  .tiles--two-col {
    display: table;
    table-layout: fixed;
    width: 100%; } }

@media only screen and (min-width: 1251px) {
  .tiles__item {
    display: table-cell; } }

@media only screen and (min-width: 1025px) {
  .tiles--two-col .tiles__item {
    display: table-cell; } }

.tiles__item--image {
  background-size: cover;
  background-position: center; }
  @media only screen and (max-width: 1250px) {
    .tiles__item--image {
      padding-bottom: 56%; } }
  @media only screen and (max-width: 1024px) {
    .tiles--two-col .tiles__item--image {
      padding-bottom: 56%; } }

.tiles__item--content {
  background-color: #F9F9F9; }

.recipes_box .image, .products_box .image {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 5px;
  z-index: 1; }
  .recipes_box .image:after, .products_box .image:after {
    content: '';
    display: block;
    position: relative;
    padding-bottom: 133.333%;
    z-index: 1; }
  .recipes_box .image img, .products_box .image img, .recipes_box .image picture, .products_box .image picture {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover; }

.content_box .deco, .hero_box .deco, .cta_box .deco, .cards_box .deco, .posts_box .deco, .recipes_box .deco, .products_box .deco, .partners_box .deco, .quality_box .deco {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: end;
      justify-content: flex-end;
  height: auto;
  opacity: 0.25;
  z-index: 1; }
  .content_box .deco img, .hero_box .deco img, .cta_box .deco img, .cards_box .deco img, .posts_box .deco img, .recipes_box .deco img, .products_box .deco img, .partners_box .deco img, .quality_box .deco img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%; }
  @media (max-width: 1024px) {
    .content_box .deco, .hero_box .deco, .cta_box .deco, .cards_box .deco, .posts_box .deco, .recipes_box .deco, .products_box .deco, .partners_box .deco, .quality_box .deco {
      display: none; } }

.gform_wrapper .screen-reader-text, .screen-reader-text, .sr-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal; }

body.compensate-for-scrollbar {
  overflow: hidden; }

.fancybox-active {
  height: auto; }

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden; }

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992; }

.fancybox-container * {
  box-sizing: border-box; }

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0; }

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 99997; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible; }

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-toolbar {
  right: 0;
  top: 0; }

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994; }

.fancybox-is-open .fancybox-stage {
  overflow: hidden; }

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-slide--html {
  padding: 6px; }

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle; }

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995; }

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in; }

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab; }

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing; }

.fancybox-container [data-selectable='true'] {
  cursor: text; }

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -ms-user-select: none;
  user-select: none;
  width: 100%; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%; }

.fancybox-slide--video .fancybox-content {
  background: #000; }

.fancybox-slide--map .fancybox-content {
  background: #e5e3df; }

.fancybox-slide--iframe .fancybox-content {
  background: #fff; }

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%; }

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0; }

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%; }

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0; }

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px; }

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc; }

.fancybox-button:hover {
  color: #fff; }

.fancybox-button:focus {
  outline: none; }

.fancybox-button.fancybox-focus {
  outline: 1px dotted; }

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none; }

/* Fix IE11 */
.fancybox-button div {
  height: 100%; }

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%; }

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0; }

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none; }

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none; }

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998; }

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401; }

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1; }

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0; }

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden; }

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none; }

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px; }

.fancybox-navigation .fancybox-button div {
  padding: 7px; }

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px; }

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right); }

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996; }

@supports (padding: 0px) {
  .fancybox-caption {
    padding: 75px 44px 25px; } }

.fancybox-caption--separate {
  margin-top: -50px; }

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all; }

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none; }

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline; }

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999; }

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0); }

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0); }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5); }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1); }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg); }

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg); }

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg); }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0); }

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0); }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px; }
  .fancybox-slide--image {
    padding: 6px 0; }
  .fancybox-close-small {
    right: -6px; }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px; }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px; }
  @supports (padding: 0px) {
    .fancybox-caption {
      padding-left: 12px;
      padding-right: 12px; } } }

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center; }

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0; }

.fancybox-share p {
  margin: 0;
  padding: 0; }

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all .2s;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff; }

.fancybox-share__button:hover {
  text-decoration: none; }

.fancybox-share__button--fb {
  background: #3b5998; }

.fancybox-share__button--fb:hover {
  background: #344e86; }

.fancybox-share__button--pt {
  background: #bd081d; }

.fancybox-share__button--pt:hover {
  background: #aa0719; }

.fancybox-share__button--tw {
  background: #1da1f2; }

.fancybox-share__button--tw:hover {
  background: #0d95e8; }

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px; }

.fancybox-share__button svg path {
  fill: #fff; }

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%; }

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995; }

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden; }

.fancybox-show-thumbs .fancybox-thumbs {
  display: block; }

.fancybox-show-thumbs .fancybox-inner {
  right: 212px; }

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: relative;
  white-space: nowrap;
  width: 100%; }

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px; }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); }

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px; }

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px; }

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991; }

.fancybox-thumbs__list a:focus::before {
  opacity: .5; }

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px; }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px); } }

.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: height 0.2s;
  z-index: 1; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing; }

.flickity-resize .slide, .flickity-resize .item {
  min-height: 100%; }

.header_box {
  display: block;
  position: relative;
  height: 100px;
  z-index: 10; }
  .header_box.is_compact .header {
    background-color: #FFFFFF;
    box-shadow: 0 1px 3px rgba(19, 41, 55, 0.15); }
  .header_box.is_compact .container, .header_box.is_compact .woocommerce-cart .post-type-page, .woocommerce-cart .header_box.is_compact .post-type-page,
  .header_box.is_compact .woocommerce-checkout .post-type-page, .woocommerce-checkout .header_box.is_compact .post-type-page,
  .header_box.is_compact .woocommerce-account .post-type-page, .woocommerce-account .header_box.is_compact .post-type-page {
    height: 80px; }
  .header_box .header {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: transparent;
    transition: background-color 0.3s, box-shadow 0.3s; }
  .header_box .container, .header_box .woocommerce-cart .post-type-page, .woocommerce-cart .header_box .post-type-page,
  .header_box .woocommerce-checkout .post-type-page, .woocommerce-checkout .header_box .post-type-page,
  .header_box .woocommerce-account .post-type-page, .woocommerce-account .header_box .post-type-page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    height: 100px;
    transition: height 0.3s; }
  .header_box .logo {
    display: block;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 131px;
    height: 52px;
    margin-right: 20px;
    background-color: currentColor;
    transition: 0.2s;
    cursor: pointer;
    -webkit-mask: url(../img/ico_logo.svg) 50% 50%/contain no-repeat; }
    .header_box .logo:focus {
      color: #AF1685; }
  .header_box .btn, .header_box .woocommerce-product-search button, .woocommerce-product-search .header_box button, .header_box .woocommerce a.added_to_cart, .woocommerce .header_box a.added_to_cart {
    margin-left: 20px; }
  .header_box .navigation {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
        flex-grow: 1;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    -ms-flex-align: stretch;
        align-items: stretch;
    -ms-flex-pack: end;
        justify-content: flex-end;
    min-width: 0; }
  .header_box .menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
        align-items: stretch;
    margin-right: auto;
    margin-left: auto;
    font-size: 18px;
    line-height: 24px; }
    .header_box .menu_btn {
      display: none;
      position: relative;
      -ms-flex-positive: 0;
          flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 20px;
      height: 20px;
      margin-left: 20px;
      color: inherit; }
      .header_box .menu_btn:before, .header_box .menu_btn:after, .header_box .menu_btn span {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 2px;
        margin: -1px 0 0 -10px;
        border-radius: 2px;
        background-color: currentColor;
        transition: 0.2s;
        opacity: 1;
        z-index: 1; }
      .header_box .menu_btn:before {
        margin-top: -9px; }
      .header_box .menu_btn:after {
        margin-top: 7px; }
    .header_box .menu li {
      display: -ms-flexbox;
      display: flex;
      position: relative;
      -ms-flex-align: stretch;
          align-items: stretch;
      margin-left: 30px; }
      .header_box .menu li.active > a, .header_box .menu li > a:hover {
        color: #E87722; }
    .header_box .menu a {
      display: -ms-inline-flexbox;
      display: inline-flex;
      -ms-flex-align: center;
          align-items: center;
      color: currentColor; }
      .header_box .menu a:focus {
        color: #AF1685; }
  .header_box .submenu:hover > a:after {
    transform: scaleY(-1); }
  .header_box .submenu:hover > ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1; }
  .header_box .submenu > a:after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    margin-left: 8px;
    background-color: currentColor;
    transition: 0.3s;
    -webkit-mask: url(../img/ico_arrow.svg) 50% 50%/contain no-repeat; }
  .header_box .submenu ul {
    display: block;
    position: absolute;
    top: 100%;
    left: -20px;
    width: 160px;
    padding: 14px 20px 2px;
    margin: 0;
    background-color: #F9F9F9;
    box-shadow: 0 1px 3px rgba(19, 41, 55, 0.15);
    font-size: 16px;
    text-transform: none;
    transition: 0.4s;
    transform: scaleY(0);
    transform-origin: 50% 0;
    visibility: hidden;
    opacity: 0; }
  .header_box .submenu li {
    display: block;
    position: relative;
    margin: 0 0 12px; }
    .header_box .submenu li ul {
      display: none; }
    .header_box .submenu li a {
      display: block;
      text-align: left; }
      .header_box .submenu li a:before {
        display: none; }
  .header_box .btn, .header_box .woocommerce-product-search button, .woocommerce-product-search .header_box button, .header_box .woocommerce a.added_to_cart, .woocommerce .header_box a.added_to_cart {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    margin-left: 30px; }
  @media (max-width: 1024px) {
    .header_box {
      height: 70px; }
      .header_box.is_compact .container, .header_box.is_compact .woocommerce-cart .post-type-page, .woocommerce-cart .header_box.is_compact .post-type-page,
      .header_box.is_compact .woocommerce-checkout .post-type-page, .woocommerce-checkout .header_box.is_compact .post-type-page,
      .header_box.is_compact .woocommerce-account .post-type-page, .woocommerce-account .header_box.is_compact .post-type-page {
        height: 70px; }
      .header_box.is_menu .menu {
        transform: scaleY(1);
        visibility: visible; }
      .header_box.is_menu .menu_btn span {
        width: 0;
        margin-left: 0;
        transform: rotate(90deg);
        opacity: 0; }
      .header_box.is_menu .menu_btn:before, .header_box.is_menu .menu_btn:after {
        width: 24px;
        margin-top: -1px;
        margin-left: -12px;
        transform: rotate(135deg); }
      .header_box.is_menu .menu_btn:after {
        transform: rotate(45deg); }
      .header_box .container, .header_box .woocommerce-cart .post-type-page, .woocommerce-cart .header_box .post-type-page,
      .header_box .woocommerce-checkout .post-type-page, .woocommerce-checkout .header_box .post-type-page,
      .header_box .woocommerce-account .post-type-page, .woocommerce-account .header_box .post-type-page {
        height: 70px; }
      .header_box .logo {
        width: 100px;
        height: 40px;
        margin-right: auto; }
      .header_box .menu {
        display: block;
        position: absolute;
        top: 100%;
        right: 20px;
        overflow-x: hidden;
        overflow-y: auto;
        width: 240px;
        height: auto;
        max-height: calc(100vh - 70px);
        padding: 10px 0;
        margin: 0;
        border-radius: 0 0 5px 5px;
        background-color: #F9F9F9;
        box-shadow: 0 1px 3px rgba(19, 41, 55, 0.15);
        color: #132937;
        font-size: 16px;
        font-weight: 400;
        transition: 0.3s;
        transform: scaleY(0);
        transform-origin: 100% 0;
        visibility: hidden; }
        .header_box .menu_btn {
          display: block; }
        .header_box .menu li {
          display: block;
          padding: 0;
          margin: 0; }
          .header_box .menu li.active > a, .header_box .menu li:hover > a {
            color: #E87722; }
        .header_box .menu a {
          display: block;
          padding: 6px 20px;
          text-align: left; }
      .header_box .submenu.is_expanded:after {
        transform: scaleY(-1); }
      .header_box .submenu > a:after {
        display: none; }
      .header_box .submenu:after {
        content: '';
        display: block;
        position: absolute;
        top: 14px;
        right: 20px;
        width: 10px;
        height: 6px;
        background-color: currentColor;
        transition: 0.3s;
        -webkit-mask: url(../img/ico_arrow.svg) 50% 50% no-repeat;
        -webkit-mask-size: contain; }
      .header_box .submenu > a {
        display: inline-block;
        padding-right: 0;
        margin-right: 40px; }
      .header_box .submenu > ul {
        display: none;
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: auto;
        padding: 6px 0;
        margin: 6px 0;
        border-top: 1px solid #E5E5E5;
        border-bottom: 1px solid #E5E5E5;
        background-color: #FFFFFF;
        box-shadow: none;
        text-align: left;
        transition: none;
        transform: none;
        visibility: visible;
        opacity: 1; }
        .header_box .submenu > ul:before, .header_box .submenu > ul:after {
          display: none; } }
  @media (max-width: 480px) {
    .header_box.is_menu .navigation {
      transform: scaleY(1);
      visibility: visible; }
    .header_box .navigation {
      display: block;
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      overflow-x: hidden;
      overflow-y: auto;
      width: auto;
      max-height: calc(100vh - 70px);
      border-top: 1px solid #E5E5E5;
      background-color: #F9F9F9;
      box-shadow: 0 1px 3px rgba(19, 41, 55, 0.15);
      transition: 0.4s;
      transform: scaleY(0);
      transform-origin: 100% 0;
      visibility: hidden; }
    .header_box .menu {
      display: block;
      position: relative;
      top: auto;
      right: auto;
      left: auto;
      overflow: visible;
      width: auto;
      max-height: none;
      border-radius: 0;
      box-shadow: none;
      transform: none;
      visibility: visible; }
    .header_box .btn, .header_box .woocommerce-product-search button, .woocommerce-product-search .header_box button, .header_box .woocommerce a.added_to_cart, .woocommerce .header_box a.added_to_cart {
      display: -ms-flexbox;
      display: flex;
      margin: 0 20px 20px; } }

.footer_box {
  display: block;
  position: relative;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 60px 0;
  background-color: #F9F9F9;
  z-index: 1; }
  .footer_box .footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 40px; }
    .footer_box .footer:last-child {
      margin-bottom: 0; }
  .footer_box .logo {
    display: block;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 131px;
    height: 52px;
    margin-right: 20px;
    background-color: currentColor;
    transition: 0.2s;
    cursor: pointer;
    -webkit-mask: url(../img/ico_logo.svg) 50% 50%/contain no-repeat; }
    .footer_box .logo:focus {
      color: #AF1685; }
  .footer_box .socials {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-left: auto; }
    .footer_box .socials .link {
      display: block;
      -ms-flex-positive: 0;
          flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 32px;
      height: 32px;
      margin-right: 16px;
      background-color: currentColor;
      cursor: pointer;
      -webkit-mask: none 50% 50% / contain no-repeat; }
      .footer_box .socials .link_facebook {
        -webkit-mask-image: url(../img/ico_social_facebook.svg); }
      .footer_box .socials .link_twitter {
        -webkit-mask-image: url(../img/ico_social_twitter.svg); }
      .footer_box .socials .link_instagram {
        -webkit-mask-image: url(../img/ico_social_instagram.svg); }
      .footer_box .socials .link_linkedin {
        -webkit-mask-image: url(../img/ico_social_linkedin.svg); }
      .footer_box .socials .link:last-child {
        margin-right: 0; }
      .footer_box .socials .link:focus {
        color: #AF1685; }
  .footer_box .menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
        flex-grow: 1;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: start;
        align-items: flex-start;
    min-width: 0;
    margin: 0 -10px -10px; }
    .footer_box .menu li {
      display: block;
      margin: 0 10px 10px; }
  .footer_box .copyright {
    display: block;
    text-align: right; }
  .footer_box .details {
    color: #545454; }
  @media (max-width: 1024px) {
    .footer_box {
      padding: 30px 0;
      font-size: 14px; }
      .footer_box .footer {
        margin-bottom: 30px; }
      .footer_box .logo {
        width: 100px;
        height: 40px; }
      .footer_box .socials .link {
        width: 24px;
        height: 24px;
        margin-right: 16px; } }
  @media (max-width: 640px) {
    .footer_box .details {
      display: block;
      text-align: center; }
    .footer_box .menu {
      -ms-flex-pack: center;
          justify-content: center; }
    .footer_box .copyright {
      margin-top: 20px;
      text-align: center; } }

.modal_box {
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: stretch;
      justify-content: stretch;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(19, 41, 55, 0.75);
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 15; }
  .modal_box.is_visible {
    visibility: visible;
    opacity: 1; }
    .modal_box.is_visible .inner {
      transform: translateY(0); }
  .modal_box .inner {
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 100%;
    padding: 20px;
    transition: 0.5s;
    transform: translateY(-600px); }
  .modal_box .modal {
    display: block;
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background-color: #FFFFFF;
    margin: 0 auto; }
  .modal_box .close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    outline: none;
    width: 20px;
    height: 20px;
    cursor: pointer; }
    .modal_box .close:after, .modal_box .close:before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%) rotate(45deg);
      display: block;
      width: 100%;
      height: 2px;
      background-color: #132937;
      transition: 0.2s; }
    .modal_box .close:before {
      transform: translateY(-50%) rotate(-45deg); }
    .modal_box .close:hover:before, .modal_box .close:hover:after {
      background-color: #009900; }
  @media (max-width: 1024px) {
    .modal_box .modal {
      padding: 20px; } }

.consent_box {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px 0;
  background-color: #FFFFFF;
  box-shadow: 0 1px 3px rgba(19, 41, 55, 0.15);
  color: #132937;
  z-index: 10; }
  .consent_box.is_hidden {
    display: none; }
  .consent_box .container, .consent_box .woocommerce-cart .post-type-page, .woocommerce-cart .consent_box .post-type-page,
  .consent_box .woocommerce-checkout .post-type-page, .woocommerce-checkout .consent_box .post-type-page,
  .consent_box .woocommerce-account .post-type-page, .woocommerce-account .consent_box .post-type-page {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  .consent_box .text {
    display: block;
    -ms-flex-positive: 1;
        flex-grow: 1;
    min-width: 0;
    margin: 0 10px 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.666; }
    .consent_box .text p {
      margin-bottom: 10px; }
      .consent_box .text p:last-child {
        margin-bottom: 0; }
  @media (max-width: 640px) {
    .consent_box {
      text-align: center; }
      .consent_box .container, .consent_box .woocommerce-cart .post-type-page, .woocommerce-cart .consent_box .post-type-page,
      .consent_box .woocommerce-checkout .post-type-page, .woocommerce-checkout .consent_box .post-type-page,
      .consent_box .woocommerce-account .post-type-page, .woocommerce-account .consent_box .post-type-page {
        -ms-flex-direction: column;
            flex-direction: column; }
      .consent_box .text {
        margin: 0 0 12px; } }

.content_box {
  -ms-flex-positive: 1;
      flex-grow: 1; }
  .content_box .contents {
    margin-bottom: 30px; }
    .content_box .contents:last-child {
      margin-bottom: 0; }
    .content_box .contents ul, .content_box .contents ol {
      display: inline-block; }
  .content_box .image {
    display: block;
    margin: 0 0 25px;
    font-size: 0;
    line-height: 0;
    text-align: center; }
    .content_box .image img {
      display: inline;
      width: 250px;
      max-width: 100%;
      height: auto; }
  .content_box .deco {
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .content_box .form {
    display: block;
    max-width: 680px;
    padding: 40px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #F9F9F9; }
  @media (max-width: 1024px) {
    .content_box .contents {
      margin-bottom: 20px; }
    .content_box .form {
      padding: 30px; } }
  @media (max-width: 640px) {
    .content_box .form {
      padding: 20px; } }

.comments_box .comments {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.5; }
  .comments_box .comments:last-child {
    margin-bottom: 0; }

.comments_box .comment {
  display: block;
  position: relative;
  margin-bottom: 20px; }
  .comments_box .comment:last-child {
    margin-bottom: 0; }
  .comments_box .comment.depth-3 .comment {
    margin-left: 0; }
  .comments_box .comment .comment {
    margin-top: 20px;
    margin-left: 40px; }

.comments_box .inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(19, 41, 55, 0.1);
  background-color: #FFFFFF; }

.comments_box .photo {
  display: block;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 60px;
  margin-right: 20px; }
  .comments_box .photo img {
    display: block;
    width: 100%;
    height: auto; }

.comments_box .contents {
  display: block;
  position: relative;
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 0; }

.comments_box .heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 8px; }

.comments_box .author {
  display: block;
  margin-right: auto;
  font-weight: 700; }

.comments_box .date {
  margin-left: 10px;
  font-size: 14px;
  line-height: 20px; }

.comments_box .content {
  margin: 0;
  font-size: inherit; }

.comments_box .comment_on_moderation {
  color: #990000;
  font-style: italic; }

.comments_box .buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin: 15px 0 0; }

.comments_box .comment-respond {
  display: block;
  position: relative; }

.comments_box .comment-reply-title {
  line-height: 24px; }
  .comments_box .comment-reply-title a {
    color: #953c21; }
  .comments_box .comment-reply-title small {
    display: inline-block;
    float: right;
    line-height: 1; }

.comments_box .buttons a, .comments_box .comment-reply-title small a {
  display: block;
  padding: 4px 10px;
  margin-left: 10px;
  background: #132937;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-decoration: none;
  transition: 0.2s;
  cursor: pointer; }
  .comments_box .buttons a:hover, .comments_box .comment-reply-title small a:hover {
    background-color: #E87722; }

.comments_box .logout, .comments_box .login {
  font-weight: bold; }

.comments_box .logout {
  text-decoration: none; }
  .comments_box .logout:hover {
    text-decoration: underline; }

.comments_box .login {
  color: #953c21; }

.comments_box .fields {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  margin: 0 -10px; }
  .comments_box .fields .field {
    width: 100%;
    padding: 0 10px; }
    .comments_box .fields .field_author, .comments_box .fields .field_email {
      width: 50%; }

.comments_box .field {
  display: block;
  position: relative;
  box-sizing: border-box;
  margin: 0 0 20px; }

.comments_box .error {
  display: block;
  margin: 10px 16px -8px;
  color: #ff0000; }

@media (max-width: 640px) {
  .comments_box .fields .field {
    width: 100%; } }

.hero_box {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  overflow: hidden;
  -ms-flex-align: center;
      align-items: center;
  min-height: 100vh;
  z-index: 1; }
  .hero_box:first-child {
    padding-top: 145px;
    margin-top: -145px; }
  .hero_box .background {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1; }
    .hero_box .background.mobile {
      display: none; }
    .hero_box .background img {
      display: block;
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1;
      object-fit: contain;
      object-position: 100% 50%; }
  .hero_box .container, .hero_box .woocommerce-cart .post-type-page, .woocommerce-cart .hero_box .post-type-page,
  .hero_box .woocommerce-checkout .post-type-page, .woocommerce-checkout .hero_box .post-type-page,
  .hero_box .woocommerce-account .post-type-page, .woocommerce-account .hero_box .post-type-page {
    position: static; }
  .hero_box .deco {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .hero_box .contents {
    display: block;
    position: relative;
    width: 50%;
    z-index: 3; }
  .hero_box h1 {
    font-size: 56px;
    line-height: 1.15; }
  .hero_box .scroll {
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    bottom: 30px;
    -ms-flex-align: center;
        align-items: center;
    color: currentColor;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    z-index: 3; }
    .hero_box .scroll .icon {
      display: block;
      position: relative;
      -ms-flex-positive: 0;
          flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      width: 40px;
      height: 40px;
      margin-right: 12px;
      border-radius: 50%;
      background-color: #FFCD00;
      color: #FFFFFF;
      transition: 0.2s; }
      .hero_box .scroll .icon:before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 14px;
        height: 10px;
        margin: -5px 0 0 -7px;
        background-color: currentColor;
        transform: rotate(90deg);
        -webkit-mask: url(../img/ico_arrow_large.svg) 50% 50%/contain no-repeat; }
    .hero_box .scroll:hover .icon {
      background-color: #E87722; }
  @media (max-width: 1024px) {
    .hero_box {
      display: block; }
      .hero_box:first-child {
        padding-top: 105px;
        margin-top: -105px; }
      .hero_box h1 {
        font-size: 42px;
        line-height: 1.2; }
      .hero_box .deco {
        display: block;
        position: relative;
        opacity: 1;
        width: 200px;
        margin: 0 auto 25px; }
        .hero_box .deco img {
          display: block;
          width: 100%;
          height: auto; }
      .hero_box .container, .hero_box .woocommerce-cart .post-type-page, .woocommerce-cart .hero_box .post-type-page,
      .hero_box .woocommerce-checkout .post-type-page, .woocommerce-checkout .hero_box .post-type-page,
      .hero_box .woocommerce-account .post-type-page, .woocommerce-account .hero_box .post-type-page {
        text-align: center; }
      .hero_box .contents {
        width: auto;
        max-width: 640px;
        margin-right: auto;
        margin-left: auto;
        text-align: center; }
      .hero_box .background {
        display: none; }
      .hero_box .scroll {
        position: relative;
        bottom: auto;
        margin: 30px 0 0; } }
  @media (max-width: 640px) {
    .hero_box {
      min-height: unset; }
      .hero_box:first-child {
        padding-top: 110px;
        margin-top: -110px; }
      .hero_box h1 {
        font-size: 32px; }
      .hero_box .scroll {
        display: none; } }

.cta_box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  min-height: 360px; }
  .cta_box h2 + .btns {
    margin-top: 25px; }
  @media (max-width: 1024px) {
    .cta_box {
      display: block;
      min-height: unset; } }

.cards_box .items {
  -ms-flex-pack: center;
      justify-content: center; }

.cards_box .item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 33.333%; }

.cards_box .card {
  display: block;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 30px;
  border-bottom: 5px solid transparent;
  border-radius: 5px;
  background-color: #F9F9F9;
  box-shadow: 0 1px 3px rgba(19, 41, 55, 0.15);
  color: #545454;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  transition: 0.2s; }
  .cards_box .card > :last-child {
    margin-bottom: 0; }
  .cards_box .card:hover {
    border-bottom-color: #545454;
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(19, 41, 55, 0.2); }

.cards_box .image {
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px; }
  .cards_box .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; }

.cards_box .title {
  display: block;
  margin-bottom: 10px;
  color: #132937;
  font-size: 20px;
  font-weight: 600; }

@media (max-width: 1024px) {
  .cards_box .item {
    width: 50%; }
  .cards_box .card {
    padding: 25px 20px 20px;
    font-size: 15px;
    line-height: 24px; }
  .cards_box .title {
    margin-bottom: 8px;
    font-size: 18px; } }

@media (max-width: 480px) {
  .cards_box .item {
    width: 100%; } }

.posts_box .items {
  display: block; }

.posts_box .item {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: start;
      align-items: flex-start;
  margin-bottom: 60px; }

.posts_box .image {
  display: block;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 360px;
  margin-right: 40px; }
  .posts_box .image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px; }

.posts_box .details {
  display: block;
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 0;
  color: #545454; }
  .posts_box .details h2, .posts_box .details h3, .posts_box .details h4, .posts_box .details h5, .posts_box .details h6 {
    color: #132937; }

.posts_box .content {
  display: block;
  overflow: hidden; }
  .posts_box .content.is_collapsed {
    max-height: 246px; }

.posts_box .btns {
  display: none;
  margin-top: 20px; }
  .posts_box .btns.is_visible {
    display: block; }

.posts_box .btn, .posts_box .woocommerce-product-search button, .woocommerce-product-search .posts_box button, .posts_box .woocommerce a.added_to_cart, .woocommerce .posts_box a.added_to_cart {
  height: 42px;
  padding: 0 20px;
  font-size: 14px; }

@media (max-width: 1024px) {
  .posts_box .item {
    margin-bottom: 40px; }
  .posts_box .image {
    width: 270px;
    margin-right: 30px; }
  .posts_box .content {
    font-size: 15px;
    line-height: 23px; } }

@media (max-width: 640px) {
  .posts_box .item {
    display: block; }
  .posts_box .image {
    width: 100%;
    height: auto;
    margin: 0 0 20px; } }

.recipe_box .wrapper {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: #F9F9F9; }

.recipe_box .image {
  display: block;
  position: relative;
  overflow: hidden;
  height: 480px; }
  .recipe_box .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.recipe_box .recipe {
  display: block;
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 0;
  padding: 30px; }

.recipe_box .ingredients {
  display: block;
  padding-bottom: 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid #E5E5E5; }
  .recipe_box .ingredients:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom-width: 0; }
  .recipe_box .ingredients .groups {
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: stretch;
        align-items: stretch;
    margin: 0 -15px -30px; }
  .recipe_box .ingredients .group {
    display: block;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -ms-flex-positive: 1;
        flex-grow: 1;
    padding: 0 15px;
    margin: 0 0 30px; }
  .recipe_box .ingredients h3 {
    margin-bottom: 15px; }
  .recipe_box .ingredients h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600; }
  .recipe_box .ingredients ul {
    display: block; }
  .recipe_box .ingredients li {
    display: block;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    text-align: left; }
    .recipe_box .ingredients li:last-child {
      margin-bottom: 0; }
    .recipe_box .ingredients li:before {
      content: '';
      display: block;
      position: absolute;
      top: 8px;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background-color: currentColor; }

.recipe_box .steps {
  display: block;
  padding-bottom: 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid #E5E5E5; }
  .recipe_box .steps:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom-width: 0; }
  .recipe_box .steps .step {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #E5E5E5; }
    .recipe_box .steps .step:last-child {
      padding-bottom: 0;
      margin-bottom: 0;
      border-width: 0; }
  .recipe_box .steps .content {
    -ms-flex-positive: 1;
        flex-grow: 1;
    min-width: 0; }
  .recipe_box .steps .thumb {
    display: block;
    -ms-flex-positive: 0;
        flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 270px;
    height: auto;
    margin-right: 30px; }
  .recipe_box .steps img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px; }

.recipe_box .specs {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  margin: 0 0 25px;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #132937;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-align: center; }

.recipe_box .spec {
  display: block;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 0 15px;
  margin-left: -1px;
  border-left: 1px solid #E5E5E5; }
  .recipe_box .spec .value {
    margin-top: 2px;
    color: #545454;
    font-weight: 500; }

@media (max-width: 1024px) {
  .recipe_box .recipe {
    padding: 20px; }
  .recipe_box .image {
    height: auto; }
    .recipe_box .image:before {
      content: '';
      display: block;
      width: 100%;
      padding-bottom: 56.25%; }
    .recipe_box .image img {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
  .recipe_box .ingredients {
    padding-bottom: 25px;
    margin-bottom: 25px; }
    .recipe_box .ingredients .groups {
      margin: 0 -10px -20px; }
    .recipe_box .ingredients .group {
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
      padding: 0 10px;
      margin-bottom: 20px; }
  .recipe_box .steps {
    padding-bottom: 25px;
    margin-bottom: 25px; }
    .recipe_box .steps .step {
      padding-bottom: 20px;
      margin-bottom: 20px; }
    .recipe_box .steps .thumb {
      width: 200px;
      margin-right: 20px; }
    .recipe_box .steps .content {
      font-size: 15px; }
  .recipe_box .specs {
    margin-bottom: 20px;
    font-size: 14px; }
  .recipe_box .spec {
    padding: 0 5px; } }

@media (max-width: 640px) {
  .recipe_box .specs {
    width: auto;
    margin: -20px -20px 20px;
    border-radius: 0;
    font-size: 13px; }
  .recipe_box .steps .step {
    display: block; }
  .recipe_box .steps .thumb {
    width: 100%;
    max-width: 270px;
    margin: 0 0 20px; } }

.recipes_box.has_background {
  background: linear-gradient(to bottom, #F9F9F9, rgba(249, 249, 249, 0)); }

.recipes_box .item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 25%; }

.recipes_box .card {
  display: block;
  position: relative;
  overflow: hidden;
  -ms-flex-positive: 1;
      flex-grow: 1;
  width: 100%;
  border-radius: 5px;
  background-color: #AF1685;
  color: #FFFFFF; }
  .recipes_box .card:hover .info, .recipes_box .card:focus .info {
    background-color: rgba(19, 41, 55, 0.8);
    transition-delay: 0s; }
  .recipes_box .card:hover .title, .recipes_box .card:hover .caption, .recipes_box .card:hover .specs, .recipes_box .card:focus .title, .recipes_box .card:focus .caption, .recipes_box .card:focus .specs {
    transition-delay: 0.1s;
    transform: translateY(0);
    opacity: 1; }
  .recipes_box .card:hover .caption, .recipes_box .card:focus .caption {
    transition-delay: 0.2s; }
  .recipes_box .card:hover .specs, .recipes_box .card:focus .specs {
    transition-delay: 0.3s; }
  .recipes_box .card_white {
    background-color: #FFFFFF;
    color: #132937; }
  .recipes_box .card_purple {
    background-color: #AF1685; }
    .recipes_box .card_purple:hover .info, .recipes_box .card_purple:focus .info {
      background-color: rgba(175, 22, 133, 0.9); }
  .recipes_box .card_orange {
    background-color: #E87722; }
    .recipes_box .card_orange:hover .info, .recipes_box .card_orange:focus .info {
      background-color: rgba(232, 119, 34, 0.9); }
  .recipes_box .card_yellow {
    background-color: #FFCD00;
    color: #132937; }
    .recipes_box .card_yellow:hover .info, .recipes_box .card_yellow:focus .info {
      background-color: rgba(255, 205, 0, 0.9); }
  .recipes_box .card_turquoise {
    background-color: #00A499; }
    .recipes_box .card_turquoise:hover .info, .recipes_box .card_turquoise:focus .info {
      background-color: rgba(0, 164, 153, 0.9); }
  .recipes_box .card_cream {
    background-color: #F0F2D4;
    color: #132937; }
    .recipes_box .card_cream:hover .info, .recipes_box .card_cream:focus .info {
      background-color: rgba(240, 242, 212, 0.9); }
  .recipes_box .card_fuschia {
    background-color: #E7034F; }
    .recipes_box .card_fuschia:hover .info, .recipes_box .card_fuschia:focus .info {
      background-color: rgba(231, 3, 79, 0.9); }

.recipes_box .image img {
  opacity: 1; }

.recipes_box .info {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 20px;
  background-color: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  transition: 0.4s;
  transition-delay: 0.4s;
  z-index: 2; }
  .recipes_box .info > :last-child {
    margin-bottom: 0; }
  .recipes_box .info .title, .recipes_box .info .caption, .recipes_box .info .specs {
    display: block;
    transition: 0.4s;
    transition-delay: 0.3s;
    transform: translateY(40px);
    opacity: 0; }
  .recipes_box .info .title {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25; }
  .recipes_box .info .caption {
    margin-bottom: 20px;
    transition-delay: 0.2s; }
  .recipes_box .info .specs {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 10px 5px;
    border-radius: 5px;
    background-color: #FFFFFF;
    color: #132937;
    transition-delay: 0.1s; }
  .recipes_box .info .spec {
    display: block;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    padding: 0 5px;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px; }
    .recipes_box .info .spec .value {
      margin-top: 2px;
      color: #545454;
      font-weight: 500;
      text-transform: uppercase; }

@media (max-width: 1024px) {
  .recipes_box .item {
    width: 33.33%; } }

@media (max-width: 768px) {
  .recipes_box .item {
    width: 50%; }
  .recipes_box .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: stretch;
        align-items: stretch; }
  .recipes_box .info {
    position: relative;
    -ms-flex-positive: 1;
        flex-grow: 1;
    padding: 10px; }
    .recipes_box .info .title, .recipes_box .info .caption, .recipes_box .info .specs {
      transform: none;
      opacity: 1; }
    .recipes_box .info .title {
      padding: 5px 0 0;
      margin-bottom: 8px; }
    .recipes_box .info .caption {
      margin-bottom: 15px; }
  .recipes_box .specs {
    margin-top: auto; } }

@media (max-width: 480px) {
  .recipes_box .item {
    width: 100%; } }

.product_box .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start; }

.product_box .image {
  display: block;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 540px;
  margin-right: 60px;
  text-align: center; }
  .product_box .image > :last-child {
    margin-bottom: 0; }
  .product_box .image img {
    display: block;
    width: 100%;
    height: auto; }

.product_box .thumb {
  display: block;
  position: relative;
  width: 270px;
  margin: 0 auto 25px; }

.product_box .product {
  display: block;
  -ms-flex-positive: 1;
      flex-grow: 1;
  min-width: 0;
  padding: 30px;
  border-radius: 5px;
  background-color: #F9F9F9; }

.product_box .section {
  display: block;
  margin: 0 0 25px; }
  .product_box .section:empty {
    display: none; }
  .product_box .section_borderless {
    padding-bottom: 0;
    border-bottom-width: 0; }
  .product_box .section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom-width: 0; }

.product_box h1 {
  margin-bottom: 20px;
  font-size: 32px; }

.product_box .card {
  display: block;
  position: relative;
  max-width: 420px;
  padding: 20px;
  margin: 0 auto 20px;
  font-size: 16px;
  line-height: 20px; }
  .product_box .card:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background-color: #F9F9F9;
    transition: 0.2s;
    z-index: 1;
    -webkit-mask: url(../img/bg_product.png) 50% 50%/100% 100% no-repeat; }
  .product_box .card_white:before {
    background-color: #545454; }
  .product_box .card_purple:before {
    background-color: #AF1685; }
  .product_box .card_orange:before {
    background-color: #E87722; }
  .product_box .card_yellow:before {
    background-color: #e6b900; }
  .product_box .card_turquoise:before {
    background-color: #00A499; }
  .product_box .card_cream:before {
    background-color: #dce099; }
  .product_box .card_fuschia:before {
    background-color: #E7034F; }

.product_box .heading {
  display: block;
  margin: 0 0 15px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33; }

.product_box .packages {
  display: block;
  position: relative;
  margin-bottom: 12px;
  z-index: 2; }
  .product_box .packages:last-child {
    margin-bottom: 0; }

.product_box .package {
  display: block;
  margin-bottom: 5px; }
  .product_box .package:last-child {
    margin-bottom: 0; }

.product_box .ingredients {
  display: block;
  margin-bottom: 25px; }

.product_box .description {
  display: inline-block;
  position: relative;
  padding: 6px 10px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #132937;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  z-index: 2; }

.product_box .content {
  font-size: 14px; }
  .product_box .content p {
    margin-bottom: 15px; }
    .product_box .content p:last-child {
      margin-bottom: 0; }

.product_box .specs {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #132937;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center; }

.product_box .spec {
  display: block;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  padding: 0 5px;
  margin-left: -1px;
  border-left: 1px solid #E5E5E5; }
  .product_box .spec .value {
    margin-top: 2px;
    color: #545454;
    font-weight: 500; }

.product_box .nuts {
  width: 100%;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  background-color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px; }
  .product_box .nuts tbody tr:nth-child(2n + 1) {
    background-color: #F9F9F9; }
  .product_box .nuts tr {
    border-bottom: 1px solid #E5E5E5; }
  .product_box .nuts th {
    color: #545454;
    font-weight: 600; }
  .product_box .nuts th, .product_box .nuts td {
    padding: 10px;
    text-align: left; }
    .product_box .nuts th:first-child, .product_box .nuts td:first-child {
      padding-left: 20px; }
    .product_box .nuts th:last-child, .product_box .nuts td:last-child {
      padding-right: 20px; }
  .product_box .nuts .subnut {
    color: #545454;
    font-weight: 500; }
  .product_box .nuts .nut_name {
    width: 50%; }
  .product_box .nuts .nut_amount {
    width: 22%; }
  .product_box .nuts .nut_value {
    width: 28%; }

.product_box .tip {
  display: block;
  margin: 12px 0 0;
  color: #545454;
  font-size: 12px;
  line-height: 1.5; }
  .product_box .tip:first-child {
    margin-top: 0; }

@media (max-width: 1250px) {
  .product_box .image {
    width: 50%;
    margin-right: 40px; } }

@media (max-width: 1024px) {
  .product_box h1 {
    font-size: 28px; }
  .product_box .image {
    width: 40%;
    margin-right: 20px; }
  .product_box .heading {
    margin-bottom: 12px;
    font-size: 20px; }
  .product_box .product {
    padding: 20px; }
  .product_box .section {
    margin-bottom: 20px; } }

@media (max-width: 640px) {
  .product_box .wrapper {
    display: block; }
  .product_box .image {
    width: auto;
    max-width: 540px;
    margin: 0 0 30px; }
  .product_box .ingredients {
    margin-bottom: 20px; }
  .product_box .card {
    margin-bottom: 18px; }
  .product_box .product {
    padding: 0;
    background: transparent; }
  .product_box h1 {
    font-size: 24px; }
  .product_box .specs {
    background: transparent;
    font-size: 12px;
    line-height: 16px; }
  .product_box .spec {
    -ms-flex-preferred-size: auto;
        flex-basis: auto; }
  .product_box .nuts {
    font-size: 12px;
    line-height: 16px; }
    .product_box .nuts th, .product_box .nuts td {
      padding: 8px 5px; }
      .product_box .nuts th:first-child, .product_box .nuts td:first-child {
        padding-left: 10px; }
      .product_box .nuts th:last-child, .product_box .nuts td:last-child {
        margin-right: 10px; } }

.products_box .item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  width: 25%;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  transition: 0.3s;
  cursor: default; }
  .products_box .item:hover, .products_box .item:focus {
    color: #FFFFFF; }
    .products_box .item:hover:before, .products_box .item:focus:before {
      background-color: #E87722; }
  .products_box .item:before {
    content: '';
    display: block;
    position: absolute;
    top: 220px;
    right: 10px;
    bottom: -10px;
    left: 10px;
    border-radius: 10px;
    background-color: #F9F9F9;
    transition: 0.2s;
    z-index: 1;
    -webkit-mask: url(../img/bg_product.png) 50% 50%/100% 100% no-repeat; }
  .products_box .item_white:hover:before, .products_box .item_white:focus:before {
    background-color: #545454; }
  .products_box .item_purple:hover:before, .products_box .item_purple:focus:before {
    background-color: #AF1685; }
  .products_box .item_orange:hover:before, .products_box .item_orange:focus:before {
    background-color: #E87722; }
  .products_box .item_yellow:hover:before, .products_box .item_yellow:focus:before {
    background-color: #e6b900; }
  .products_box .item_turquoise:hover:before, .products_box .item_turquoise:focus:before {
    background-color: #00A499; }
  .products_box .item_cream:hover:before, .products_box .item_cream:focus:before {
    background-color: #dce099; }
  .products_box .item_fuschia:hover:before, .products_box .item_fuschia:focus:before {
    background-color: #E7034F; }
  .products_box .item > :last-child {
    margin-bottom: 0; }

.products_box .image {
  max-width: 135px;
  margin: 0 auto 15px;
  z-index: 2; }

.products_box .title {
  display: block;
  position: relative;
  margin-bottom: 15px;
  color: #132937;
  font-size: 18px;
  line-height: 24px;
  z-index: 2; }
  .products_box .title:hover {
    color: #E87722; }

.products_box .description {
  display: inline-block;
  position: relative;
  padding: 6px 10px;
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #545454;
  font-weight: 400;
  z-index: 2; }

.products_box .packages {
  display: block;
  position: relative;
  margin: auto 0 12px;
  font-weight: 500;
  z-index: 2; }

.products_box .package {
  margin-bottom: 4px; }
  .products_box .package:last-child {
    margin-bottom: 0; }

@media (max-width: 1024px) {
  .products_box .item {
    width: 33.333%; } }

@media (max-width: 640px) {
  .products_box .item {
    width: 50%; } }

@media (max-width: 420px) {
  .products_box .item {
    padding-bottom: 0; }
    .products_box .item:before {
      display: none; }
    .products_box .item:hover, .products_box .item:focus {
      color: #132937; }
  .products_box .image {
    margin-bottom: 12px; }
  .products_box .title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 20px; }
  .products_box .description {
    padding: 0;
    background: transparent; }
  .products_box .packages {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px; } }

.partners_box .item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 33.333%; }

.partners_box .image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #E5E5E5;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: 0.2s; }
  .partners_box .image:hover {
    background-color: #F9F9F9; }

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

@media (max-width: 640px) {
  .partners_box .item {
    width: 50%; } }

@media (max-width: 420px) {
  .partners_box .item {
    width: 100%; } }

.quality_box .deco {
  -ms-flex-pack: start;
      justify-content: flex-start; }

.quality_box .wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto; }

.quality_box .image {
  display: block;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 241px;
  margin-right: 60px; }
  .quality_box .image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto; }

@media (max-width: 1250px) {
  .quality_box .image {
    margin-right: 40px; }
  .quality_box .wrapper {
    max-width: none;
    margin: 0; } }

@media (max-width: 1024px) {
  .quality_box .image {
    margin-right: 30px; } }

@media (max-width: 640px) {
  .quality_box .wrapper {
    display: block; }
  .quality_box .image {
    max-width: 200px;
    margin: 0 auto 25px; }
  .quality_box .contents {
    text-align: center; } }

.woocommerce-pagination, .pagination_box {
  display: block;
  margin-top: 40px; }
  .woocommerce-pagination ul, .woocommerce-pagination .pagination, .pagination_box ul, .pagination_box .pagination {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: center;
        justify-content: center;
    margin: 0 -2px; }
  .woocommerce-pagination li, .pagination_box li {
    display: block;
    position: relative; }
  .woocommerce-pagination a, .woocommerce-pagination span, .pagination_box a, .pagination_box span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    box-sizing: border-box;
    width: 36px;
    height: 36px;
    margin: 0 2px;
    border: 1px solid #E5E5E5;
    background: transparent 50% 50% no-repeat;
    border-radius: 5px;
    color: #132937;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    vertical-align: middle;
    text-decoration: none;
    transition: 0.3s;
    cursor: default; }
  .woocommerce-pagination a, .pagination_box a {
    cursor: pointer; }
  .woocommerce-pagination a:hover, .woocommerce-pagination span, .pagination_box a:hover, .pagination_box span {
    border-color: #E87722;
    background-color: #E87722;
    color: #FFFFFF; }
  .woocommerce-pagination span.dots, .woocommerce-pagination span.extend, .pagination_box span.dots, .pagination_box span.extend {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border-width: 0;
    background: none;
    color: #132937; }
  .woocommerce-pagination .next:before, .woocommerce-pagination .prev:before, .pagination_box .next:before, .pagination_box .prev:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 6px;
    margin: -3px 0 0 -5px;
    background-color: currentColor;
    transform: rotate(-90deg);
    -webkit-mask: url(../img/ico_arrow.svg) 50% 50%/contain no-repeat; }
  .woocommerce-pagination .prev:before, .pagination_box .prev:before {
    transform: rotate(90deg); }
  @media (max-width: 1024px) {
    .woocommerce-pagination, .pagination_box {
      margin-top: 30px; }
      .woocommerce-pagination a, .woocommerce-pagination span, .pagination_box a, .pagination_box span {
        margin: 0; }
      .woocommerce-pagination span.dots, .woocommerce-pagination span.extend, .pagination_box span.dots, .pagination_box span.extend {
        display: none; } }

.breadcrumbs_box {
  display: block;
  margin: 20px 0 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px; }
  .breadcrumbs_box a, .breadcrumbs_box b, .breadcrumbs_box span {
    display: inline;
    color: #545454;
    font-weight: 400; }
  .breadcrumbs_box b {
    display: inline-block;
    position: relative;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    background-color: currentColor;
    transform: rotate(-90deg);
    -webkit-mask: url(../img/ico_arrow.svg) 50% 50%/contain no-repeat; }
  .breadcrumbs_box a:hover {
    color: #E87722; }
  .breadcrumbs_box span {
    color: #132937;
    font-weight: 600; }

/*

  Helpers

  Miscellaneous utility classes

*/
.kint {
  position: relative;
  overflow: visible;
  z-index: 9999; }

.tiles__item--content:after, .island:after, .islet:after, .related.products:after, .thumbnails:after, .clearfix:after, .cf:after {
  content: "";
  display: table;
  clear: both; }

/* -------------------------------------- */
.float--right {
  float: right !important; }

.float--left {
  float: left !important; }

.float--none {
  float: none !important; }

.text--left {
  text-align: left !important; }

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

.text--right {
  text-align: right !important; }

.align--left {
  margin-left: 0 !important; }

.align--right {
  margin-right: 0 !important; }

/* -------------------------------------- */
.trailer--single {
  margin-bottom: 20px; }

.trailer--double {
  margin-bottom: 40px; }

.trailer--half {
  margin-bottom: 10px; }

.trailer--none {
  margin-bottom: 0px; }

/* -------------------------------------- */
.hlist {
  padding-left: 0;
  margin-bottom: 0; }
  .hlist > li {
    display: inline-block; }

/* -------------------------------------- */
/* -------------------------------------- */
.element-hidden {
  display: none; }

@media only screen and (max-width: 1250px) {
  .element-hidden--mobile {
    display: none; } }

@media only screen and (max-width: 640px) {
  .element-hidden--sm {
    display: none; } }

@media only screen and (max-width: 1024px) {
  .element-hidden--md {
    display: none; } }

@media only screen and (min-width: 1251px) {
  .element-hidden--desk {
    display: none; } }

.sr-only {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px; }

/*

    Woocommerce Custom Styles

    Global Elements

*/
.woocommerce-nav {
  display: -ms-flexbox;
  display: flex; }
  .woocommerce-nav a {
    padding: 10px;
    text-decoration: none; }
    @media only screen and (max-width: 1250px) {
      .woocommerce-nav a {
        padding: 0;
        padding-right: 10px; } }

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: #E5E5E5; }

.woocommerce .widget_price_filter .ui-slider .ui-slider-range,
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  background-color: #E87722; }

.woocommerce-product-search {
  display: -ms-flexbox;
  display: flex; }
  .woocommerce-product-search input {
    height: 2rem; }
  .woocommerce-product-search button {
    margin-left: 10px; }

.woocommerce ul.product_list_widget {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .woocommerce ul.product_list_widget li {
    width: calc(50% - 10px); }
    .woocommerce ul.product_list_widget li img {
      width: 100%; }

.woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow,
.variations .select2-container--default .select2-selection--single .select2-selection__arrow,
.woocommerce-billing-fields .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 7px; }

.woocommerce .woocommerce-pagination .page-numbers {
  border: none; }
  .woocommerce .woocommerce-pagination .page-numbers li {
    border: none;
    margin-right: 0.25rem; }
    .woocommerce .woocommerce-pagination .page-numbers li .page-numbers {
      background-color: #F9F9F9;
      color: #132937;
      padding: .35em .875em;
      line-height: 24px; }
      .woocommerce .woocommerce-pagination .page-numbers li .page-numbers.current {
        background-color: #E87722;
        color: white; }
      .woocommerce .woocommerce-pagination .page-numbers li .page-numbers:not(.current):hover {
        background-color: #E5E5E5; }

.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce button.button.alt.disabled,
.woocommerce a.button {
  background: #E5E5E5;
  color: #132937;
  font-weight: bold; }
  .woocommerce button.button:hover,
  .woocommerce button.button.alt:hover,
  .woocommerce button.button.alt.disabled:hover,
  .woocommerce a.button:hover {
    background-color: #cccccc;
    color: #132937; }

.single_add_to_cart_button {
  margin-top: 20px; }

.woocommerce a.added_to_cart {
  margin-top: 10px; }

.woocommerce .wc-proceed-to-checkout a.checkout-button,
#place_order {
  color: white;
  background: #E87722; }
  .woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
  #place_order:hover {
    background-color: #c35f14; }

.woocommerce a.button.loading::after {
  top: auto; }

.woocommerce .woocommerce-breadcrumb a {
  color: #E87722; }

.woocommerce span.onsale {
  z-index: 1;
  padding: 0;
  background-color: #E87722; }

.woocommerce .price {
  color: #132937 !important; }
  .woocommerce .price del {
    opacity: 0.65; }
  .woocommerce .price ins {
    text-decoration: none;
    font-weight: 700; }

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  color: white;
  padding: 10px 20px;
  border: 0;
  border-left: 0.65rem solid rgba(0, 0, 0, 0.15); }
  .woocommerce-info a,
  .woocommerce-message a,
  .woocommerce-error a {
    color: white !important; }
  .woocommerce-info::before,
  .woocommerce-message::before,
  .woocommerce-error::before {
    content: '';
    display: table; }
  .woocommerce-info .button,
  .woocommerce-message .button,
  .woocommerce-error .button {
    float: right;
    padding: 0 0 0 13.33333px !important;
    background: 0 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.25) !important; }
    .woocommerce-info .button::after,
    .woocommerce-message .button::after,
    .woocommerce-error .button::after {
      content: '\2192';
      display: inline-block;
      margin-left: 8px; }

.woocommerce-info,
.woocommerce-message {
  background-color: #E87722; }

.woocommerce-info a:hover {
  opacity: 0.75; }

.woocommerce-error {
  background-color: #b33630; }

@media only screen and (min-width: 1251px) {
  .col2-set {
    margin: 0 -10px; }
  .col-1, .col-2 {
    width: 50%;
    float: left;
    padding: 0 10px; } }

.related.products {
  margin-bottom: 20px; }
  .related.products .product {
    width: 33%;
    float: left; }

.woocommerce-tabs {
  margin-top: 40px; }
  .woocommerce-tabs .tabs {
    padding: 0; }
    .woocommerce-tabs .tabs li {
      display: inline-block;
      padding: .5em; }

@media only screen and (min-width: 1025px) {
  .woocommerce-form-login {
    width: 50%; } }

#rememberme {
  margin-left: 20px; }

.woocommerce-account .woocommerce {
  margin-top: 40px; }

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 20%; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding-inline-start: 0; }

.woocommerce-MyAccount-navigation-link {
  margin-bottom: 10px; }

.woocommerce-account .woocommerce-MyAccount-content {
  width: 80%; }
  @media only screen and (min-width: 769px) {
    .woocommerce-account .woocommerce-MyAccount-content {
      padding-left: 60px; } }
  .woocommerce-account .woocommerce-MyAccount-content fieldset {
    margin-bottom: 40px; }

/*

    Woocommerce Custom Styles

    Product Listing

*/
.post-type-archive-product .woocommerce-breadcrumb {
  display: none; }

.products {
  padding: 0; }
  .products li {
    list-style: none; }
  .products article a {
    position: relative; }

.products-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%; }
  .products-list::after {
    content: ''; }
    @media only screen and (min-width: 421px) {
      .products-list::after {
        -ms-flex-preferred-size: calc(50% - 20px);
            flex-basis: calc(50% - 20px); } }
    @media only screen and (min-width: 1025px) {
      .products-list::after {
        -ms-flex-preferred-size: calc(33.3333% - 20px);
            flex-basis: calc(33.3333% - 20px); } }

.products-list__item {
  width: 100%;
  margin-bottom: 40px; }
  @media only screen and (min-width: 421px) {
    .products-list__item {
      width: calc(50% - 20px); } }
  @media only screen and (min-width: 1025px) {
    .products-list__item {
      width: calc(33.3333% - 20px); } }
  .products-list__item .img-wrap {
    max-width: 100% !important; }
  .products-list__item > a {
    display: block;
    text-decoration: none; }
  .products-list__item h2 {
    margin-top: 10px; }
  .products-list__item a.button {
    margin-top: 10px; }

.product-categories .children {
  margin-left: 10px; }

/*

    Woocommerce Custom Styles

    Single Product

*/
.product {
  position: relative; }

.thumbnails a {
  width: 33%;
  float: left; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: #F9F9F9; }

.woocommerce table.shop_attributes {
  border: none; }
  .woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
    padding: 0 10px; }
  .woocommerce table.shop_attributes th {
    background: #F9F9F9;
    border: none; }
  .woocommerce table.shop_attributes td {
    border: none; }

.woocommerce ul.products li.product .button {
  margin-top: 10px; }

/*

    Woocommerce Custom Styles

    * Cart
    * Checkout

*/
.woocommerce table.shop_table {
  border-radius: 0;
  border: none; }
  .woocommerce table.shop_table th {
    background: #F9F9F9;
    padding: 16px 10px; }
  .woocommerce table.shop_table td {
    border: none;
    padding: 20px 10px; }
  .woocommerce table.shop_table td.actions .input-text {
    width: 150px; }
  .woocommerce table.shop_table img {
    width: auto; }

.woocommerce-cart .cart-collaterals .cart_totals table td {
  vertical-align: middle; }

.woocommerce-checkout-payment {
  border: 1px solid #E5E5E5;
  padding: 20px; }
  .woocommerce-checkout-payment .payment_methods {
    padding: 0;
    list-style: none; }
  .woocommerce-checkout-payment .payment_box p {
    margin: 0;
    padding-bottom: 20px; }


/*# sourceMappingURL=styles.css.map*/