@charset "UTF-8";
/*
	Version     1.0.0

	@COLORS     Colors
	@FONTS      Font inclusions
	@SPACING    Margins and Paddings
*/
/* @COLORS */
/* @FONTS */
/* @SITE MAX WIDTH */
/* @SPACING */
/*
	@CUSTOM CLASSES		Custom classes based on variables
	@FONT CLASSES
    @MARGIN CLASSES
    @PADDING CLASSES
    @HIDE CLASSES
*/
/* @CUSTOM CLASSES */
/* @FONT CLASSES */
.font--primary {
  font-family: "Kanit", sans-serif;
}
.font--secondary {
  font-family: "garamond-premier-pro-caption", sans-serif;
}
.font--tertiary {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
.font-size--xs {
  font-size: 0.875rem;
}
.font-size--sm {
  font-size: 0.9375rem;
}
.font-size--m {
  font-size: 1rem;
}
.font-size--l {
  font-size: 1.0625rem;
}
.font-size--xl {
  font-size: 1.25rem;
}
.font-size--xxl {
  font-size: 1.875rem;
}
.font-size--3xl {
  font-size: 2.5rem;
}
.font-size--4xl {
  font-size: 3.125rem;
}
.font-weight--thin {
  font-weight: 100;
}
.font-weight--extra-light {
  font-weight: 200;
}
.font-weight--light {
  font-weight: 300;
}
.font-weight--regular, .font-weight--normal {
  font-weight: 400;
}
.font-weight--medium {
  font-weight: 500;
}
.font-weight--semi-bold {
  font-weight: 600;
}
.font-weight--bold {
  font-weight: 700;
}
.font-weight--extra-bold {
  font-weight: 800;
}
.font-weight--black {
  font-weight: 900;
}
/* @MARGIN CLASSES */
/*
CSS class syntax used for Margin and Padding:
  [cssclass][size](direction and screensize)

Syntax legend:
  [] mandatory value
  () optional value

Example 1: margin-top--xl-from-tablet
This applies the style:
@media only screen and (min-width: $site-max-width--large) {
	margin-top: $spacing--xl !important;
}

Example 2: padding-top--none is equal "padding: 0 !important"
This applies the style:
padding: 0 !important

[cssclass] is mandatory:
Available options:
  margin
  margin-top
  margin-right
  margin-bottom
  margin-left
  padding
  padding-top
  padding-right
  padding-bottom
  padding-left

[size] is mandatory.
Set the value configured in the _variables.scss file.
Available options:
  --none
  --xs
  --sm
  --m
  --l
  --xl
  --xxl
  --3xl

(direction and screensize) is optional.
Available options:
  -from-mobile
  -to-mobile
  -from-smalltablet
  -to-smalltablet
  -from-tablet
  -to-tablet
  -from-desktop
  -to-desktop
*/
.margin--none {
  margin: 0 !important;
}
@media only screen and (min-width: 414px) {
  .margin--none-from-mobile {
    margin: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--none-from-smalltablet {
    margin: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--none-from-tablet {
    margin: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--none-from-desktop {
    margin: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--none-to-mobile {
    margin: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--none-to-smalltablet {
    margin: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--none-to-tablet {
    margin: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--none-to-desktop {
    margin: 0 !important;
  }
}
.margin--xs {
  margin: 5px !important;
}
@media only screen and (min-width: 414px) {
  .margin--xs-from-mobile {
    margin: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--xs-from-smalltablet {
    margin: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--xs-from-tablet {
    margin: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--xs-from-desktop {
    margin: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--xs-to-mobile {
    margin: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--xs-to-smalltablet {
    margin: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--xs-to-tablet {
    margin: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--xs-to-desktop {
    margin: 5px !important;
  }
}
.margin--sm {
  margin: 10px !important;
}
@media only screen and (min-width: 414px) {
  .margin--sm-from-mobile {
    margin: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--sm-from-smalltablet {
    margin: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--sm-from-tablet {
    margin: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--sm-from-desktop {
    margin: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--sm-to-mobile {
    margin: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--sm-to-smalltablet {
    margin: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--sm-to-tablet {
    margin: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--sm-to-desktop {
    margin: 10px !important;
  }
}
.margin--m {
  margin: 20px !important;
}
@media only screen and (min-width: 414px) {
  .margin--m-from-mobile {
    margin: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--m-from-smalltablet {
    margin: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--m-from-tablet {
    margin: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--m-from-desktop {
    margin: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--m-to-mobile {
    margin: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--m-to-smalltablet {
    margin: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--m-to-tablet {
    margin: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--m-to-desktop {
    margin: 20px !important;
  }
}
.margin--l {
  margin: 30px !important;
}
@media only screen and (min-width: 414px) {
  .margin--l-from-mobile {
    margin: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--l-from-smalltablet {
    margin: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--l-from-tablet {
    margin: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--l-from-desktop {
    margin: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--l-to-mobile {
    margin: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--l-to-smalltablet {
    margin: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--l-to-tablet {
    margin: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--l-to-desktop {
    margin: 30px !important;
  }
}
.margin--xl {
  margin: 40px !important;
}
@media only screen and (min-width: 414px) {
  .margin--xl-from-mobile {
    margin: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--xl-from-smalltablet {
    margin: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--xl-from-tablet {
    margin: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--xl-from-desktop {
    margin: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--xl-to-mobile {
    margin: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--xl-to-smalltablet {
    margin: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--xl-to-tablet {
    margin: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--xl-to-desktop {
    margin: 40px !important;
  }
}
.margin--xxl {
  margin: 60px !important;
}
@media only screen and (min-width: 414px) {
  .margin--xxl-from-mobile {
    margin: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--xxl-from-smalltablet {
    margin: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--xxl-from-tablet {
    margin: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--xxl-from-desktop {
    margin: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--xxl-to-mobile {
    margin: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--xxl-to-smalltablet {
    margin: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--xxl-to-tablet {
    margin: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--xxl-to-desktop {
    margin: 60px !important;
  }
}
.margin--3xl {
  margin: 100px !important;
}
@media only screen and (min-width: 414px) {
  .margin--3xl-from-mobile {
    margin: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin--3xl-from-smalltablet {
    margin: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin--3xl-from-tablet {
    margin: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin--3xl-from-desktop {
    margin: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin--3xl-to-mobile {
    margin: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin--3xl-to-smalltablet {
    margin: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin--3xl-to-tablet {
    margin: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin--3xl-to-desktop {
    margin: 100px !important;
  }
}
.margin-top--none {
  margin-top: 0 !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--none-from-mobile {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--none-from-smalltablet {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--none-from-tablet {
    margin-top: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--none-from-desktop {
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--none-to-mobile {
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--none-to-smalltablet {
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--none-to-tablet {
    margin-top: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--none-to-desktop {
    margin-top: 0 !important;
  }
}
.margin-top--xs {
  margin-top: 5px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--xs-from-mobile {
    margin-top: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--xs-from-smalltablet {
    margin-top: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--xs-from-tablet {
    margin-top: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--xs-from-desktop {
    margin-top: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--xs-to-mobile {
    margin-top: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--xs-to-smalltablet {
    margin-top: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--xs-to-tablet {
    margin-top: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--xs-to-desktop {
    margin-top: 5px !important;
  }
}
.margin-top--sm {
  margin-top: 10px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--sm-from-mobile {
    margin-top: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--sm-from-smalltablet {
    margin-top: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--sm-from-tablet {
    margin-top: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--sm-from-desktop {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--sm-to-mobile {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--sm-to-smalltablet {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--sm-to-tablet {
    margin-top: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--sm-to-desktop {
    margin-top: 10px !important;
  }
}
.margin-top--m {
  margin-top: 20px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--m-from-mobile {
    margin-top: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--m-from-smalltablet {
    margin-top: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--m-from-tablet {
    margin-top: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--m-from-desktop {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--m-to-mobile {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--m-to-smalltablet {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--m-to-tablet {
    margin-top: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--m-to-desktop {
    margin-top: 20px !important;
  }
}
.margin-top--l {
  margin-top: 30px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--l-from-mobile {
    margin-top: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--l-from-smalltablet {
    margin-top: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--l-from-tablet {
    margin-top: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--l-from-desktop {
    margin-top: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--l-to-mobile {
    margin-top: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--l-to-smalltablet {
    margin-top: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--l-to-tablet {
    margin-top: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--l-to-desktop {
    margin-top: 30px !important;
  }
}
.margin-top--xl {
  margin-top: 40px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--xl-from-mobile {
    margin-top: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--xl-from-smalltablet {
    margin-top: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--xl-from-tablet {
    margin-top: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--xl-from-desktop {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--xl-to-mobile {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--xl-to-smalltablet {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--xl-to-tablet {
    margin-top: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--xl-to-desktop {
    margin-top: 40px !important;
  }
}
.margin-top--xxl {
  margin-top: 60px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--xxl-from-mobile {
    margin-top: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--xxl-from-smalltablet {
    margin-top: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--xxl-from-tablet {
    margin-top: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--xxl-from-desktop {
    margin-top: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--xxl-to-mobile {
    margin-top: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--xxl-to-smalltablet {
    margin-top: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--xxl-to-tablet {
    margin-top: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--xxl-to-desktop {
    margin-top: 60px !important;
  }
}
.margin-top--3xl {
  margin-top: 100px !important;
}
@media only screen and (min-width: 414px) {
  .margin-top--3xl-from-mobile {
    margin-top: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top--3xl-from-smalltablet {
    margin-top: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-top--3xl-from-tablet {
    margin-top: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-top--3xl-from-desktop {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-top--3xl-to-mobile {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-top--3xl-to-smalltablet {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-top--3xl-to-tablet {
    margin-top: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-top--3xl-to-desktop {
    margin-top: 100px !important;
  }
}
.margin-right--none {
  margin-right: 0 !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--none-from-mobile {
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--none-from-smalltablet {
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--none-from-tablet {
    margin-right: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--none-from-desktop {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--none-to-mobile {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--none-to-smalltablet {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--none-to-tablet {
    margin-right: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--none-to-desktop {
    margin-right: 0 !important;
  }
}
.margin-right--xs {
  margin-right: 5px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--xs-from-mobile {
    margin-right: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--xs-from-smalltablet {
    margin-right: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--xs-from-tablet {
    margin-right: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--xs-from-desktop {
    margin-right: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--xs-to-mobile {
    margin-right: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--xs-to-smalltablet {
    margin-right: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--xs-to-tablet {
    margin-right: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--xs-to-desktop {
    margin-right: 5px !important;
  }
}
.margin-right--sm {
  margin-right: 10px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--sm-from-mobile {
    margin-right: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--sm-from-smalltablet {
    margin-right: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--sm-from-tablet {
    margin-right: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--sm-from-desktop {
    margin-right: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--sm-to-mobile {
    margin-right: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--sm-to-smalltablet {
    margin-right: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--sm-to-tablet {
    margin-right: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--sm-to-desktop {
    margin-right: 10px !important;
  }
}
.margin-right--m {
  margin-right: 20px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--m-from-mobile {
    margin-right: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--m-from-smalltablet {
    margin-right: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--m-from-tablet {
    margin-right: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--m-from-desktop {
    margin-right: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--m-to-mobile {
    margin-right: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--m-to-smalltablet {
    margin-right: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--m-to-tablet {
    margin-right: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--m-to-desktop {
    margin-right: 20px !important;
  }
}
.margin-right--l {
  margin-right: 30px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--l-from-mobile {
    margin-right: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--l-from-smalltablet {
    margin-right: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--l-from-tablet {
    margin-right: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--l-from-desktop {
    margin-right: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--l-to-mobile {
    margin-right: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--l-to-smalltablet {
    margin-right: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--l-to-tablet {
    margin-right: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--l-to-desktop {
    margin-right: 30px !important;
  }
}
.margin-right--xl {
  margin-right: 40px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--xl-from-mobile {
    margin-right: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--xl-from-smalltablet {
    margin-right: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--xl-from-tablet {
    margin-right: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--xl-from-desktop {
    margin-right: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--xl-to-mobile {
    margin-right: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--xl-to-smalltablet {
    margin-right: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--xl-to-tablet {
    margin-right: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--xl-to-desktop {
    margin-right: 40px !important;
  }
}
.margin-right--xxl {
  margin-right: 60px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--xxl-from-mobile {
    margin-right: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--xxl-from-smalltablet {
    margin-right: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--xxl-from-tablet {
    margin-right: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--xxl-from-desktop {
    margin-right: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--xxl-to-mobile {
    margin-right: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--xxl-to-smalltablet {
    margin-right: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--xxl-to-tablet {
    margin-right: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--xxl-to-desktop {
    margin-right: 60px !important;
  }
}
.margin-right--3xl {
  margin-right: 100px !important;
}
@media only screen and (min-width: 414px) {
  .margin-right--3xl-from-mobile {
    margin-right: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-right--3xl-from-smalltablet {
    margin-right: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-right--3xl-from-tablet {
    margin-right: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-right--3xl-from-desktop {
    margin-right: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-right--3xl-to-mobile {
    margin-right: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-right--3xl-to-smalltablet {
    margin-right: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-right--3xl-to-tablet {
    margin-right: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-right--3xl-to-desktop {
    margin-right: 100px !important;
  }
}
.margin-bottom--none {
  margin-bottom: 0 !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--none-from-mobile {
    margin-bottom: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--none-from-smalltablet {
    margin-bottom: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--none-from-tablet {
    margin-bottom: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--none-from-desktop {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--none-to-mobile {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--none-to-smalltablet {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--none-to-tablet {
    margin-bottom: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--none-to-desktop {
    margin-bottom: 0 !important;
  }
}
.margin-bottom--xs {
  margin-bottom: 5px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--xs-from-mobile {
    margin-bottom: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--xs-from-smalltablet {
    margin-bottom: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--xs-from-tablet {
    margin-bottom: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--xs-from-desktop {
    margin-bottom: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--xs-to-mobile {
    margin-bottom: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--xs-to-smalltablet {
    margin-bottom: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--xs-to-tablet {
    margin-bottom: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--xs-to-desktop {
    margin-bottom: 5px !important;
  }
}
.margin-bottom--sm {
  margin-bottom: 10px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--sm-from-mobile {
    margin-bottom: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--sm-from-smalltablet {
    margin-bottom: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--sm-from-tablet {
    margin-bottom: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--sm-from-desktop {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--sm-to-mobile {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--sm-to-smalltablet {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--sm-to-tablet {
    margin-bottom: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--sm-to-desktop {
    margin-bottom: 10px !important;
  }
}
.margin-bottom--m {
  margin-bottom: 20px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--m-from-mobile {
    margin-bottom: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--m-from-smalltablet {
    margin-bottom: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--m-from-tablet {
    margin-bottom: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--m-from-desktop {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--m-to-mobile {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--m-to-smalltablet {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--m-to-tablet {
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--m-to-desktop {
    margin-bottom: 20px !important;
  }
}
.margin-bottom--l {
  margin-bottom: 30px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--l-from-mobile {
    margin-bottom: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--l-from-smalltablet {
    margin-bottom: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--l-from-tablet {
    margin-bottom: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--l-from-desktop {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--l-to-mobile {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--l-to-smalltablet {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--l-to-tablet {
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--l-to-desktop {
    margin-bottom: 30px !important;
  }
}
.margin-bottom--xl {
  margin-bottom: 40px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--xl-from-mobile {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--xl-from-smalltablet {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--xl-from-tablet {
    margin-bottom: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--xl-from-desktop {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--xl-to-mobile {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--xl-to-smalltablet {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--xl-to-tablet {
    margin-bottom: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--xl-to-desktop {
    margin-bottom: 40px !important;
  }
}
.margin-bottom--xxl {
  margin-bottom: 60px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--xxl-from-mobile {
    margin-bottom: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--xxl-from-smalltablet {
    margin-bottom: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--xxl-from-tablet {
    margin-bottom: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--xxl-from-desktop {
    margin-bottom: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--xxl-to-mobile {
    margin-bottom: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--xxl-to-smalltablet {
    margin-bottom: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--xxl-to-tablet {
    margin-bottom: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--xxl-to-desktop {
    margin-bottom: 60px !important;
  }
}
.margin-bottom--3xl {
  margin-bottom: 100px !important;
}
@media only screen and (min-width: 414px) {
  .margin-bottom--3xl-from-mobile {
    margin-bottom: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-bottom--3xl-from-smalltablet {
    margin-bottom: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-bottom--3xl-from-tablet {
    margin-bottom: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-bottom--3xl-from-desktop {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-bottom--3xl-to-mobile {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-bottom--3xl-to-smalltablet {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-bottom--3xl-to-tablet {
    margin-bottom: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-bottom--3xl-to-desktop {
    margin-bottom: 100px !important;
  }
}
.margin-left--none {
  margin-left: 0 !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--none-from-mobile {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--none-from-smalltablet {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--none-from-tablet {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--none-from-desktop {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--none-to-mobile {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--none-to-smalltablet {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--none-to-tablet {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--none-to-desktop {
    margin-left: 0 !important;
  }
}
.margin-left--xs {
  margin-left: 5px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--xs-from-mobile {
    margin-left: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--xs-from-smalltablet {
    margin-left: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--xs-from-tablet {
    margin-left: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--xs-from-desktop {
    margin-left: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--xs-to-mobile {
    margin-left: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--xs-to-smalltablet {
    margin-left: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--xs-to-tablet {
    margin-left: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--xs-to-desktop {
    margin-left: 5px !important;
  }
}
.margin-left--sm {
  margin-left: 10px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--sm-from-mobile {
    margin-left: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--sm-from-smalltablet {
    margin-left: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--sm-from-tablet {
    margin-left: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--sm-from-desktop {
    margin-left: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--sm-to-mobile {
    margin-left: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--sm-to-smalltablet {
    margin-left: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--sm-to-tablet {
    margin-left: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--sm-to-desktop {
    margin-left: 10px !important;
  }
}
.margin-left--m {
  margin-left: 20px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--m-from-mobile {
    margin-left: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--m-from-smalltablet {
    margin-left: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--m-from-tablet {
    margin-left: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--m-from-desktop {
    margin-left: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--m-to-mobile {
    margin-left: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--m-to-smalltablet {
    margin-left: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--m-to-tablet {
    margin-left: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--m-to-desktop {
    margin-left: 20px !important;
  }
}
.margin-left--l {
  margin-left: 30px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--l-from-mobile {
    margin-left: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--l-from-smalltablet {
    margin-left: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--l-from-tablet {
    margin-left: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--l-from-desktop {
    margin-left: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--l-to-mobile {
    margin-left: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--l-to-smalltablet {
    margin-left: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--l-to-tablet {
    margin-left: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--l-to-desktop {
    margin-left: 30px !important;
  }
}
.margin-left--xl {
  margin-left: 40px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--xl-from-mobile {
    margin-left: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--xl-from-smalltablet {
    margin-left: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--xl-from-tablet {
    margin-left: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--xl-from-desktop {
    margin-left: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--xl-to-mobile {
    margin-left: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--xl-to-smalltablet {
    margin-left: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--xl-to-tablet {
    margin-left: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--xl-to-desktop {
    margin-left: 40px !important;
  }
}
.margin-left--xxl {
  margin-left: 60px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--xxl-from-mobile {
    margin-left: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--xxl-from-smalltablet {
    margin-left: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--xxl-from-tablet {
    margin-left: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--xxl-from-desktop {
    margin-left: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--xxl-to-mobile {
    margin-left: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--xxl-to-smalltablet {
    margin-left: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--xxl-to-tablet {
    margin-left: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--xxl-to-desktop {
    margin-left: 60px !important;
  }
}
.margin-left--3xl {
  margin-left: 100px !important;
}
@media only screen and (min-width: 414px) {
  .margin-left--3xl-from-mobile {
    margin-left: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .margin-left--3xl-from-smalltablet {
    margin-left: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .margin-left--3xl-from-tablet {
    margin-left: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .margin-left--3xl-from-desktop {
    margin-left: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .margin-left--3xl-to-mobile {
    margin-left: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .margin-left--3xl-to-smalltablet {
    margin-left: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .margin-left--3xl-to-tablet {
    margin-left: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .margin-left--3xl-to-desktop {
    margin-left: 100px !important;
  }
}
/* @PADDING CLASSES */
.padding--none {
  padding: 0 !important;
}
@media only screen and (min-width: 414px) {
  .padding--none-from-mobile {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--none-from-smalltablet {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--none-from-tablet {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--none-from-desktop {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--none-to-mobile {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--none-to-smalltablet {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--none-to-tablet {
    padding: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--none-to-desktop {
    padding: 0 !important;
  }
}
.padding--xs {
  padding: 5px !important;
}
@media only screen and (min-width: 414px) {
  .padding--xs-from-mobile {
    padding: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--xs-from-smalltablet {
    padding: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--xs-from-tablet {
    padding: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--xs-from-desktop {
    padding: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--xs-to-mobile {
    padding: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--xs-to-smalltablet {
    padding: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--xs-to-tablet {
    padding: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--xs-to-desktop {
    padding: 5px !important;
  }
}
.padding--sm {
  padding: 10px !important;
}
@media only screen and (min-width: 414px) {
  .padding--sm-from-mobile {
    padding: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--sm-from-smalltablet {
    padding: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--sm-from-tablet {
    padding: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--sm-from-desktop {
    padding: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--sm-to-mobile {
    padding: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--sm-to-smalltablet {
    padding: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--sm-to-tablet {
    padding: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--sm-to-desktop {
    padding: 10px !important;
  }
}
.padding--m {
  padding: 20px !important;
}
@media only screen and (min-width: 414px) {
  .padding--m-from-mobile {
    padding: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--m-from-smalltablet {
    padding: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--m-from-tablet {
    padding: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--m-from-desktop {
    padding: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--m-to-mobile {
    padding: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--m-to-smalltablet {
    padding: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--m-to-tablet {
    padding: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--m-to-desktop {
    padding: 20px !important;
  }
}
.padding--l {
  padding: 30px !important;
}
@media only screen and (min-width: 414px) {
  .padding--l-from-mobile {
    padding: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--l-from-smalltablet {
    padding: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--l-from-tablet {
    padding: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--l-from-desktop {
    padding: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--l-to-mobile {
    padding: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--l-to-smalltablet {
    padding: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--l-to-tablet {
    padding: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--l-to-desktop {
    padding: 30px !important;
  }
}
.padding--xl {
  padding: 40px !important;
}
@media only screen and (min-width: 414px) {
  .padding--xl-from-mobile {
    padding: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--xl-from-smalltablet {
    padding: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--xl-from-tablet {
    padding: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--xl-from-desktop {
    padding: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--xl-to-mobile {
    padding: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--xl-to-smalltablet {
    padding: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--xl-to-tablet {
    padding: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--xl-to-desktop {
    padding: 40px !important;
  }
}
.padding--xxl {
  padding: 60px !important;
}
@media only screen and (min-width: 414px) {
  .padding--xxl-from-mobile {
    padding: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--xxl-from-smalltablet {
    padding: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--xxl-from-tablet {
    padding: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--xxl-from-desktop {
    padding: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--xxl-to-mobile {
    padding: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--xxl-to-smalltablet {
    padding: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--xxl-to-tablet {
    padding: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--xxl-to-desktop {
    padding: 60px !important;
  }
}
.padding--3xl {
  padding: 100px !important;
}
@media only screen and (min-width: 414px) {
  .padding--3xl-from-mobile {
    padding: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding--3xl-from-smalltablet {
    padding: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding--3xl-from-tablet {
    padding: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding--3xl-from-desktop {
    padding: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding--3xl-to-mobile {
    padding: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding--3xl-to-smalltablet {
    padding: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding--3xl-to-tablet {
    padding: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding--3xl-to-desktop {
    padding: 100px !important;
  }
}
.padding-top--none {
  padding-top: 0 !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--none-from-mobile {
    padding-top: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--none-from-smalltablet {
    padding-top: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--none-from-tablet {
    padding-top: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--none-from-desktop {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--none-to-mobile {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--none-to-smalltablet {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--none-to-tablet {
    padding-top: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--none-to-desktop {
    padding-top: 0 !important;
  }
}
.padding-top--xs {
  padding-top: 5px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--xs-from-mobile {
    padding-top: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--xs-from-smalltablet {
    padding-top: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--xs-from-tablet {
    padding-top: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--xs-from-desktop {
    padding-top: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--xs-to-mobile {
    padding-top: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--xs-to-smalltablet {
    padding-top: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--xs-to-tablet {
    padding-top: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--xs-to-desktop {
    padding-top: 5px !important;
  }
}
.padding-top--sm {
  padding-top: 10px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--sm-from-mobile {
    padding-top: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--sm-from-smalltablet {
    padding-top: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--sm-from-tablet {
    padding-top: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--sm-from-desktop {
    padding-top: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--sm-to-mobile {
    padding-top: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--sm-to-smalltablet {
    padding-top: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--sm-to-tablet {
    padding-top: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--sm-to-desktop {
    padding-top: 10px !important;
  }
}
.padding-top--m {
  padding-top: 20px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--m-from-mobile {
    padding-top: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--m-from-smalltablet {
    padding-top: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--m-from-tablet {
    padding-top: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--m-from-desktop {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--m-to-mobile {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--m-to-smalltablet {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--m-to-tablet {
    padding-top: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--m-to-desktop {
    padding-top: 20px !important;
  }
}
.padding-top--l {
  padding-top: 30px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--l-from-mobile {
    padding-top: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--l-from-smalltablet {
    padding-top: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--l-from-tablet {
    padding-top: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--l-from-desktop {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--l-to-mobile {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--l-to-smalltablet {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--l-to-tablet {
    padding-top: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--l-to-desktop {
    padding-top: 30px !important;
  }
}
.padding-top--xl {
  padding-top: 40px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--xl-from-mobile {
    padding-top: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--xl-from-smalltablet {
    padding-top: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--xl-from-tablet {
    padding-top: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--xl-from-desktop {
    padding-top: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--xl-to-mobile {
    padding-top: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--xl-to-smalltablet {
    padding-top: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--xl-to-tablet {
    padding-top: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--xl-to-desktop {
    padding-top: 40px !important;
  }
}
.padding-top--xxl {
  padding-top: 60px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--xxl-from-mobile {
    padding-top: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--xxl-from-smalltablet {
    padding-top: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--xxl-from-tablet {
    padding-top: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--xxl-from-desktop {
    padding-top: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--xxl-to-mobile {
    padding-top: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--xxl-to-smalltablet {
    padding-top: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--xxl-to-tablet {
    padding-top: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--xxl-to-desktop {
    padding-top: 60px !important;
  }
}
.padding-top--3xl {
  padding-top: 100px !important;
}
@media only screen and (min-width: 414px) {
  .padding-top--3xl-from-mobile {
    padding-top: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-top--3xl-from-smalltablet {
    padding-top: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-top--3xl-from-tablet {
    padding-top: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-top--3xl-from-desktop {
    padding-top: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-top--3xl-to-mobile {
    padding-top: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-top--3xl-to-smalltablet {
    padding-top: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-top--3xl-to-tablet {
    padding-top: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-top--3xl-to-desktop {
    padding-top: 100px !important;
  }
}
.padding-right--none {
  padding-right: 0 !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--none-from-mobile {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--none-from-smalltablet {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--none-from-tablet {
    padding-right: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--none-from-desktop {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--none-to-mobile {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--none-to-smalltablet {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--none-to-tablet {
    padding-right: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--none-to-desktop {
    padding-right: 0 !important;
  }
}
.padding-right--xs {
  padding-right: 5px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--xs-from-mobile {
    padding-right: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--xs-from-smalltablet {
    padding-right: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--xs-from-tablet {
    padding-right: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--xs-from-desktop {
    padding-right: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--xs-to-mobile {
    padding-right: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--xs-to-smalltablet {
    padding-right: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--xs-to-tablet {
    padding-right: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--xs-to-desktop {
    padding-right: 5px !important;
  }
}
.padding-right--sm {
  padding-right: 10px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--sm-from-mobile {
    padding-right: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--sm-from-smalltablet {
    padding-right: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--sm-from-tablet {
    padding-right: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--sm-from-desktop {
    padding-right: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--sm-to-mobile {
    padding-right: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--sm-to-smalltablet {
    padding-right: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--sm-to-tablet {
    padding-right: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--sm-to-desktop {
    padding-right: 10px !important;
  }
}
.padding-right--m {
  padding-right: 20px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--m-from-mobile {
    padding-right: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--m-from-smalltablet {
    padding-right: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--m-from-tablet {
    padding-right: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--m-from-desktop {
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--m-to-mobile {
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--m-to-smalltablet {
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--m-to-tablet {
    padding-right: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--m-to-desktop {
    padding-right: 20px !important;
  }
}
.padding-right--l {
  padding-right: 30px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--l-from-mobile {
    padding-right: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--l-from-smalltablet {
    padding-right: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--l-from-tablet {
    padding-right: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--l-from-desktop {
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--l-to-mobile {
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--l-to-smalltablet {
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--l-to-tablet {
    padding-right: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--l-to-desktop {
    padding-right: 30px !important;
  }
}
.padding-right--xl {
  padding-right: 40px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--xl-from-mobile {
    padding-right: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--xl-from-smalltablet {
    padding-right: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--xl-from-tablet {
    padding-right: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--xl-from-desktop {
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--xl-to-mobile {
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--xl-to-smalltablet {
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--xl-to-tablet {
    padding-right: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--xl-to-desktop {
    padding-right: 40px !important;
  }
}
.padding-right--xxl {
  padding-right: 60px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--xxl-from-mobile {
    padding-right: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--xxl-from-smalltablet {
    padding-right: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--xxl-from-tablet {
    padding-right: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--xxl-from-desktop {
    padding-right: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--xxl-to-mobile {
    padding-right: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--xxl-to-smalltablet {
    padding-right: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--xxl-to-tablet {
    padding-right: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--xxl-to-desktop {
    padding-right: 60px !important;
  }
}
.padding-right--3xl {
  padding-right: 100px !important;
}
@media only screen and (min-width: 414px) {
  .padding-right--3xl-from-mobile {
    padding-right: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-right--3xl-from-smalltablet {
    padding-right: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-right--3xl-from-tablet {
    padding-right: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-right--3xl-from-desktop {
    padding-right: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-right--3xl-to-mobile {
    padding-right: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-right--3xl-to-smalltablet {
    padding-right: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-right--3xl-to-tablet {
    padding-right: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-right--3xl-to-desktop {
    padding-right: 100px !important;
  }
}
.padding-bottom--none {
  padding-bottom: 0 !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--none-from-mobile {
    padding-bottom: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--none-from-smalltablet {
    padding-bottom: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--none-from-tablet {
    padding-bottom: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--none-from-desktop {
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--none-to-mobile {
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--none-to-smalltablet {
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--none-to-tablet {
    padding-bottom: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--none-to-desktop {
    padding-bottom: 0 !important;
  }
}
.padding-bottom--xs {
  padding-bottom: 5px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--xs-from-mobile {
    padding-bottom: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--xs-from-smalltablet {
    padding-bottom: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--xs-from-tablet {
    padding-bottom: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--xs-from-desktop {
    padding-bottom: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--xs-to-mobile {
    padding-bottom: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--xs-to-smalltablet {
    padding-bottom: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--xs-to-tablet {
    padding-bottom: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--xs-to-desktop {
    padding-bottom: 5px !important;
  }
}
.padding-bottom--sm {
  padding-bottom: 10px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--sm-from-mobile {
    padding-bottom: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--sm-from-smalltablet {
    padding-bottom: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--sm-from-tablet {
    padding-bottom: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--sm-from-desktop {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--sm-to-mobile {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--sm-to-smalltablet {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--sm-to-tablet {
    padding-bottom: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--sm-to-desktop {
    padding-bottom: 10px !important;
  }
}
.padding-bottom--m {
  padding-bottom: 20px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--m-from-mobile {
    padding-bottom: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--m-from-smalltablet {
    padding-bottom: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--m-from-tablet {
    padding-bottom: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--m-from-desktop {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--m-to-mobile {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--m-to-smalltablet {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--m-to-tablet {
    padding-bottom: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--m-to-desktop {
    padding-bottom: 20px !important;
  }
}
.padding-bottom--l {
  padding-bottom: 30px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--l-from-mobile {
    padding-bottom: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--l-from-smalltablet {
    padding-bottom: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--l-from-tablet {
    padding-bottom: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--l-from-desktop {
    padding-bottom: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--l-to-mobile {
    padding-bottom: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--l-to-smalltablet {
    padding-bottom: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--l-to-tablet {
    padding-bottom: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--l-to-desktop {
    padding-bottom: 30px !important;
  }
}
.padding-bottom--xl {
  padding-bottom: 40px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--xl-from-mobile {
    padding-bottom: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--xl-from-smalltablet {
    padding-bottom: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--xl-from-tablet {
    padding-bottom: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--xl-from-desktop {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--xl-to-mobile {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--xl-to-smalltablet {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--xl-to-tablet {
    padding-bottom: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--xl-to-desktop {
    padding-bottom: 40px !important;
  }
}
.padding-bottom--xxl {
  padding-bottom: 60px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--xxl-from-mobile {
    padding-bottom: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--xxl-from-smalltablet {
    padding-bottom: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--xxl-from-tablet {
    padding-bottom: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--xxl-from-desktop {
    padding-bottom: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--xxl-to-mobile {
    padding-bottom: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--xxl-to-smalltablet {
    padding-bottom: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--xxl-to-tablet {
    padding-bottom: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--xxl-to-desktop {
    padding-bottom: 60px !important;
  }
}
.padding-bottom--3xl {
  padding-bottom: 100px !important;
}
@media only screen and (min-width: 414px) {
  .padding-bottom--3xl-from-mobile {
    padding-bottom: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-bottom--3xl-from-smalltablet {
    padding-bottom: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-bottom--3xl-from-tablet {
    padding-bottom: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-bottom--3xl-from-desktop {
    padding-bottom: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-bottom--3xl-to-mobile {
    padding-bottom: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-bottom--3xl-to-smalltablet {
    padding-bottom: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-bottom--3xl-to-tablet {
    padding-bottom: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-bottom--3xl-to-desktop {
    padding-bottom: 100px !important;
  }
}
.padding-left--none {
  padding-left: 0 !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--none-from-mobile {
    padding-left: 0 !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--none-from-smalltablet {
    padding-left: 0 !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--none-from-tablet {
    padding-left: 0 !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--none-from-desktop {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--none-to-mobile {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--none-to-smalltablet {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--none-to-tablet {
    padding-left: 0 !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--none-to-desktop {
    padding-left: 0 !important;
  }
}
.padding-left--xs {
  padding-left: 5px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--xs-from-mobile {
    padding-left: 5px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--xs-from-smalltablet {
    padding-left: 5px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--xs-from-tablet {
    padding-left: 5px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--xs-from-desktop {
    padding-left: 5px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--xs-to-mobile {
    padding-left: 5px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--xs-to-smalltablet {
    padding-left: 5px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--xs-to-tablet {
    padding-left: 5px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--xs-to-desktop {
    padding-left: 5px !important;
  }
}
.padding-left--sm {
  padding-left: 10px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--sm-from-mobile {
    padding-left: 10px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--sm-from-smalltablet {
    padding-left: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--sm-from-tablet {
    padding-left: 10px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--sm-from-desktop {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--sm-to-mobile {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--sm-to-smalltablet {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--sm-to-tablet {
    padding-left: 10px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--sm-to-desktop {
    padding-left: 10px !important;
  }
}
.padding-left--m {
  padding-left: 20px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--m-from-mobile {
    padding-left: 20px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--m-from-smalltablet {
    padding-left: 20px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--m-from-tablet {
    padding-left: 20px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--m-from-desktop {
    padding-left: 20px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--m-to-mobile {
    padding-left: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--m-to-smalltablet {
    padding-left: 20px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--m-to-tablet {
    padding-left: 20px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--m-to-desktop {
    padding-left: 20px !important;
  }
}
.padding-left--l {
  padding-left: 30px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--l-from-mobile {
    padding-left: 30px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--l-from-smalltablet {
    padding-left: 30px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--l-from-tablet {
    padding-left: 30px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--l-from-desktop {
    padding-left: 30px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--l-to-mobile {
    padding-left: 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--l-to-smalltablet {
    padding-left: 30px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--l-to-tablet {
    padding-left: 30px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--l-to-desktop {
    padding-left: 30px !important;
  }
}
.padding-left--xl {
  padding-left: 40px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--xl-from-mobile {
    padding-left: 40px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--xl-from-smalltablet {
    padding-left: 40px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--xl-from-tablet {
    padding-left: 40px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--xl-from-desktop {
    padding-left: 40px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--xl-to-mobile {
    padding-left: 40px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--xl-to-smalltablet {
    padding-left: 40px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--xl-to-tablet {
    padding-left: 40px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--xl-to-desktop {
    padding-left: 40px !important;
  }
}
.padding-left--xxl {
  padding-left: 60px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--xxl-from-mobile {
    padding-left: 60px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--xxl-from-smalltablet {
    padding-left: 60px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--xxl-from-tablet {
    padding-left: 60px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--xxl-from-desktop {
    padding-left: 60px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--xxl-to-mobile {
    padding-left: 60px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--xxl-to-smalltablet {
    padding-left: 60px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--xxl-to-tablet {
    padding-left: 60px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--xxl-to-desktop {
    padding-left: 60px !important;
  }
}
.padding-left--3xl {
  padding-left: 100px !important;
}
@media only screen and (min-width: 414px) {
  .padding-left--3xl-from-mobile {
    padding-left: 100px !important;
  }
}
@media only screen and (min-width: 768px) {
  .padding-left--3xl-from-smalltablet {
    padding-left: 100px !important;
  }
}
@media only screen and (min-width: 960px) {
  .padding-left--3xl-from-tablet {
    padding-left: 100px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .padding-left--3xl-from-desktop {
    padding-left: 100px !important;
  }
}
@media only screen and (max-width: 413px) {
  .padding-left--3xl-to-mobile {
    padding-left: 100px !important;
  }
}
@media only screen and (max-width: 767px) {
  .padding-left--3xl-to-smalltablet {
    padding-left: 100px !important;
  }
}
@media only screen and (max-width: 959px) {
  .padding-left--3xl-to-tablet {
    padding-left: 100px !important;
  }
}
@media only screen and (max-width: 1155px) {
  .padding-left--3xl-to-desktop {
    padding-left: 100px !important;
  }
}
/* @HIDE CLASSES */
/*
CSS class syntax to hide an element:
  [hide]-[direction]-[screensize]

Syntax legend:
  [] mandatory value
  () optional value

Example 1: hide-from-tablet
This applies the style:
@media only screen and (min-width: $site-max-width--large) {
	display: none;
}

Example 2: padding-to-desktop
This applies the style:
@media only screen and (max-width: ($site-max-width--extralarge - 1px)) {
	display: none;
}
*/
.hide {
  display: none !important;
}
@media only screen and (min-width: 414px) {
  .hide-from-mobile {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hide-from-smalltablet {
    display: none !important;
  }
}
@media only screen and (min-width: 960px) {
  .hide-from-tablet {
    display: none !important;
  }
}
@media only screen and (min-width: 1156px) {
  .hide-from-desktop {
    display: none !important;
  }
}
@media only screen and (max-width: 413px) {
  .hide-to-mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hide-to-smalltablet {
    display: none !important;
  }
}
@media only screen and (max-width: 959px) {
  .hide-to-tablet {
    display: none !important;
  }
}
@media only screen and (max-width: 1155px) {
  .hide-to-desktop {
    display: none !important;
  }
}
@media only screen and (min-width: 414px) {
  .hide-swiper-buttons-from-mobile .swiper-button-next, .hide-swiper-buttons-from-mobile .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .hide-swiper-buttons-from-smalltablet .swiper-button-next, .hide-swiper-buttons-from-smalltablet .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (min-width: 960px) {
  .hide-swiper-buttons-from-tablet .swiper-button-next, .hide-swiper-buttons-from-tablet .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (min-width: 1156px) {
  .hide-swiper-buttons-from-desktop .swiper-button-next, .hide-swiper-buttons-from-desktop .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (max-width: 413px) {
  .hide-swiper-buttons-to-mobile .swiper-button-next, .hide-swiper-buttons-to-mobile .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .hide-swiper-buttons-to-smalltablet .swiper-button-next, .hide-swiper-buttons-to-smalltablet .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (max-width: 959px) {
  .hide-swiper-buttons-to-tablet .swiper-button-next, .hide-swiper-buttons-to-tablet .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (max-width: 1155px) {
  .hide-swiper-buttons-to-desktop .swiper-button-next, .hide-swiper-buttons-to-desktop .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (min-width: 960px) {
  .allevatori-list {
    columns: 3;
    gap: 5rem;
  }
}
/*
	@GENERAL    General use classes
	@BASIC      Basic colors, fonts and backgrounds
	@ANIMATE    Animations
	@BUTTONS    Buttons
	@FORMS      Forms
	@LAYOUTFIX  Global Layout Fix
*/
/* @GENERAL */
.clear {
  clear: both;
}
.hidden, .screen-reader-text, .table-header-hidden thead {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus, .table-header-hidden thead:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* @BASIC */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: "Kanit", sans-serif;
  font-size: 1rem;
  line-height: 1.4em;
  background-color: #FFFEFC;
  color: #1D1616;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "garamond-premier-pro-caption", sans-serif;
}
h1 {
  font-weight: 500;
  font-size: 3.125rem;
}
h1.entry-title, h1.archive-title {
  margin-bottom: 40px;
  font-size: 2.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.875rem;
}
h4 {
  font-size: 1.25rem;
}
h5 {
  font-size: 1.0625rem;
}
h6 {
  font-size: 1rem;
}
.archive-description {
  margin-bottom: 30px;
}
a, a:visited {
  color: #A61932;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}
a:hover, a:focus {
  color: #A61932;
}
:focus {
  outline: none;
}
input:focus, textarea:focus {
  border: 1px solid #999;
  outline: none;
}
:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid #A61932;
  outline-offset: 4px;
  border-radius: 2px;
}
/* @ANIMATE */
.wow {
  visibility: hidden;
}
/* Remove animations on mobile */
@media only screen and (max-width: 960px) {
  .wow {
    visibility: visible !important;
    -webkit-animation: none !important;
    -moz-animation: none !important;
    -o-animation: none !important;
    -ms-animation: none !important;
    animation: none !important;
  }
}
/* @BUTTONS */
.btn, button, .btn > a, button > a {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px !important;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1616;
  background-color: #D5A70F;
  padding: 10px 15px;
}
@media only screen and (min-width: 960px) {
  .btn, button, .btn > a, button > a {
    padding: 15px 30px;
  }
}
.btn:focus, .btn:visited, button:focus, button:visited, .btn > a:focus, .btn > a:visited, button > a:focus, button > a:visited {
  color: #1D1616;
}
.btn:hover, button:hover, .btn > a:hover, button > a:hover {
  background-color: #EFBA0C;
  color: #1D1616;
}
.btn-secondary, .woocommerce.archive .products li.product.outofstock a.button, .home .bs-block-featured-products-swiper li.product.outofstock a.button, .btn-secondary > a, .woocommerce.archive .products li.product.outofstock a.button > a, .home .bs-block-featured-products-swiper li.product.outofstock a.button > a, button-secondary, button-secondary > a, .btn > a-secondary, .btn > a-secondary > a, button > a-secondary, button > a-secondary > a {
  color: #1D1616 !important;
  background-color: #C7AB7E !important;
  border-radius: 3px !important;
}
.btn-secondary:visited, .woocommerce.archive .products li.product.outofstock a.button:visited, .home .bs-block-featured-products-swiper li.product.outofstock a.button:visited, .btn-secondary > a:visited, .woocommerce.archive .products li.product.outofstock a.button > a:visited, .home .bs-block-featured-products-swiper li.product.outofstock a.button > a:visited, button-secondary:visited, button-secondary > a:visited, .btn > a-secondary:visited, .btn > a-secondary > a:visited, button > a-secondary:visited, button > a-secondary > a:visited {
  color: #1D1616 !important;
}
.btn-secondary:hover, .woocommerce.archive .products li.product.outofstock a.button:hover, .home .bs-block-featured-products-swiper li.product.outofstock a.button:hover, .btn-secondary > a:hover, .woocommerce.archive .products li.product.outofstock a.button > a:hover, .home .bs-block-featured-products-swiper li.product.outofstock a.button > a:hover, button-secondary:hover, button-secondary > a:hover, .btn > a-secondary:hover, .btn > a-secondary > a:hover, button > a-secondary:hover, button > a-secondary > a:hover {
  color: #FFFEFC !important;
  background-color: #B3251D !important;
}
::placeholder {
  color: #707070;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #707070;
}
::-ms-input-placeholder {
  color: #707070;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  opacity: 1 !important;
}
/* @FORMS */
.wpcf7-form-control-wrap {
  margin-bottom: 1rem;
}
/* @LAYOUTFIX */
.site-container {
  min-width: 280px;
}
.site-container .site-inner {
  max-width: 1156px;
  padding-top: 128px;
  /*.admin-bar & {
			margin-top: 32px;
		}*/
}
.admin-bar .site-container .site-inner {
  padding-top: 80px !important;
}
@media only screen and (min-width: 960px) {
  .site-container .site-inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 199px !important;
  }
  .admin-bar .site-container .site-inner {
    padding-top: calc(199px - 32px) !important;
  }
}
body:not(.genesis-title-hidden):not(.woocommerce-page) .site-container .site-inner {
  padding-top: 0;
}
body.full-width-content .site-container .site-inner .content, body.page .site-container .site-inner .content {
  width: 100% !important;
}
@media only screen and (max-width: 959px) {
  body.page:not(.genesis-title-hidden):not(.home):not(.blog) .site-inner {
    padding-top: 128px !important;
  }
}
.breadcrumb, .genesis-title-hidden .breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  border-bottom: none;
  font-size: 0.875rem;
}
@media only screen and (min-width: 960px) {
  .breadcrumb, .genesis-title-hidden .breadcrumb {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.breadcrumb ol, .genesis-title-hidden .breadcrumb ol {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li, .genesis-title-hidden .breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li:not(:last-child)::after, .genesis-title-hidden .breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  border-left: 1px solid currentColor;
  height: 0.8em;
  margin-left: 0.5rem;
}
.breadcrumb a, .genesis-title-hidden .breadcrumb a {
  color: #1D1616;
  text-decoration: underline;
}
.breadcrumb a[aria-current="page"], .genesis-title-hidden .breadcrumb a[aria-current="page"] {
  text-decoration: none;
}
.bs-print-custom-page-title .breadcrumb, .bs-print-custom-page-title .genesis-title-hidden .breadcrumb {
  background-color: #EBE6DF;
  box-shadow: -1200px 0 0 0 #EBE6DF, -40vw 0 0 0 #EBE6DF, 40vw 0 0 0 #EBE6DF, 1200px 0 0 0 #EBE6DF;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1156px) {
  .bs-print-custom-page-title .breadcrumb, .bs-print-custom-page-title .genesis-title-hidden .breadcrumb {
    padding-left: 0;
    padding-right: 0;
  }
}
.search-box-mobile-active .site-inner {
  z-index: -1;
  position: relative;
}
.fixed-header.admin-bar .site-header {
  top: 0 !important;
  z-index: 100000;
}
@media screen and (max-width: 782px) {
  .fixed-header.admin-bar .rmp-container, .fixed-header.admin-bar .rmp_menu_trigger {
    margin-top: 0 !important;
  }
}
/* @BLOCKED_CONTENT */
.blocked-content {
  text-align: center;
  padding: 40px;
  width: 100%;
  background-color: #EBE6DF;
}
/* moving down content position */
.bs-print-custom-page-title:not(.home).admin-bar .bs-custom-page-title {
  padding-top: calc(199px - 32px) !important;
}
.bs-print-custom-page-title:not(.home).admin-bar .site-inner {
  padding-top: 0 !important;
}
.bs-print-custom-page-title:not(.home) .bs-custom-page-title {
  padding-top: 199px !important;
}
.bs-print-custom-page-title:not(.home) .site-inner {
  padding-top: 0 !important;
}
/*
	@HEADER     Site Header
	@NAV        Main navigation
*/
/* @HEADER */
.site-header {
  background-color: #FFFEFC;
  box-shadow: none;
  position: fixed;
  width: 100%;
  z-index: 11;
}
@media (max-height: 559px) {
  .site-header {
    position: relative;
  }
}
@media only screen and (max-width: 959px) {
  .site-header {
    border-bottom: 3px solid #C7AB7E;
  }
}
.admin-bar .site-header {
  top: 0;
}
.site-header > .wrap {
  margin: 0 auto;
  padding: 20px 0 0 0;
  max-width: 1156px;
  transform: scale(1);
  transition: 0.2s all ease;
}
@media only screen and (max-width: 959px) {
  .site-header > .wrap {
    padding: 20px 0;
    position: relative;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .site-header > .wrap::before, .site-header > .wrap::after {
    display: none;
  }
}
.site-header .logo-parmiggianoreggiano {
  margin-bottom: 20px;
  width: 86px;
  height: auto;
}
.site-header-custom {
  position: relative;
  display: grid;
  grid-template-columns: 25% 50% 25%;
}
@media only screen and (max-width: 959px) {
  .site-header-custom {
    float: left;
    display: flex;
    align-items: center;
    grid-area: site-header-custom;
  }
}
.site-header-custom-center {
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  .site-header-custom-center {
    order: 1;
    margin: 0;
    text-align: left;
  }
}
.site-header-custom-right {
  align-self: center;
  text-align: right;
}
@media only screen and (max-width: 959px) {
  .site-header-custom-right {
    order: 3;
    align-self: initial;
  }
  .site-header-custom-right .widget {
    margin-bottom: 0;
  }
  .site-header-custom-right .menu-item {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 959px) {
  .site-header-custom-left {
    order: 2;
  }
}
.site-header-custom .widget {
  margin-bottom: 0;
}
@media only screen and (max-width: 959px) {
  .site-header-custom .widget {
    margin-left: 3px;
  }
}
.wp-custom-logo .site-header .title-area {
  max-width: none;
}
.wp-custom-logo .site-header .title-area img {
  height: 75px;
}
@media only screen and (min-width: 960px) {
  .wp-custom-logo .site-header .title-area img {
    height: initial;
  }
}
.site-header [class^="menu-user-menu"] ul {
  display: inline-flex;
}
.site-header [class^="menu-user-menu"] ul .menu-item {
  margin-right: 10px;
}
@media only screen and (min-width: 960px) {
  .site-header [class^="menu-user-menu"] ul .menu-item {
    margin-right: 30px;
  }
}
.site-header [class^="menu-user-menu"] ul .menu-item a {
  color: #1D1616;
}
.site-header [class^="menu-user-menu"] ul .menu-item.menu-item-icon-account:not(.wpmenucart) a {
  display: block;
  font-size: 0;
  text-indent: -9999px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("bs-images/icon-account.svg");
}
.woocommerce-account .site-header [class^="menu-user-menu"] ul .menu-item.menu-item-icon-account:not(.wpmenucart) a {
  filter: invert(16%) sepia(32%) saturate(6362%) hue-rotate(334deg) brightness(70%) contrast(80%);
}
.site-header [class^="menu-user-menu"] ul .menu-item:last-child {
  margin-right: 0;
}
.site-header .wpml-ls-legacy-dropdown {
  width: fit-content;
}
@media only screen and (min-width: 960px) {
  .site-header .wpml-ls-legacy-dropdown {
    margin-top: 20px;
  }
}
.site-header .wpml-ls-legacy-dropdown a {
  padding-left: 8px;
  padding-right: 8px;
  background-color: transparent;
  border: none;
  text-transform: uppercase;
}
@media only screen and (min-width: 960px) {
  .site-header .wpml-ls-legacy-dropdown a {
    padding-left: 0;
  }
}
.site-header .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle {
  padding-right: calc(3px + 1.4em);
}
.site-header .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle::after {
  color: #1D1616;
}
.site-header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item {
  background-color: #FFFEFC;
}
.site-header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu .wpml-ls-item a:hover {
  color: #C4000B;
}
.fixed-header .site-header {
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  z-index: 9999;
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 500ms;
}
.fixed-header .site-header > .wrap {
  margin-top: 0;
  margin-bottom: 0;
}
.fixed-header .site-header .title-area img {
  height: 75px;
}
@media only screen and (min-width: 960px) {
  .fixed-header .site-header .title-area img {
    height: initial;
  }
}
@media only screen and ((max-width: 959px)) {
  .fixed-header .site-header {
    border-width: 1px;
  }
}
.fixed-header .site-header > .wrap {
  padding-top: 10px;
}
@media only screen and ((max-width: 959px)) {
  .fixed-header .site-header > .wrap {
    padding-bottom: 0;
    border-width: 1px;
  }
}
.fixed-header .site-header .title-area img {
  max-height: 65px;
}
.fixed-header .site-header .custom-logo-link {
  aspect-ratio: auto;
}
@media only screen and (min-width: 960px) {
  .fixed-header .site-header .site-header {
    left: -30px;
  }
}
.admin-bar .fixed-header .site-header .site-header {
  top: 46px !important;
}
.fixed-header .site-header .site-header-custom {
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (min-width: 960px) {
  .fixed-header .site-header .site-header-custom {
    display: grid;
    grid-template-columns: auto auto;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 960px) {
  .fixed-header .site-header .site-header-custom-left {
    display: none;
  }
}
.fixed-header .site-header .site-header-custom-center, .fixed-header .site-header .site-header-custom-right {
  margin: 0;
  text-align: left;
}
.fixed-header .site-header .site-header-custom-center .widget_nav_menu, .fixed-header .site-header .site-header-custom-right .widget_nav_menu {
  text-align: right;
}
.fixed-header .site-header .nav-primary {
  padding-top: 0;
}
.fixed-header .site-header .nav-primary::after {
  border-bottom-width: 1px;
}
.fixed-header .site-header .nav-primary .menu-item-icon-search {
  display: none;
}
@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* @NAV */
.nav-primary {
  padding-top: 0;
  padding-bottom: 0;
  width: 100%;
  grid-area: nav-primary;
}
@media only screen and (min-width: 960px) {
  .nav-primary:after {
    content: "";
    display: block;
    background-color: #FFFEFC;
    box-shadow: none;
    border-bottom: 10px solid #C7AB7E;
    box-shadow: -1200px 0 0 0 #C7AB7E, -30vw 0 0 0 #C7AB7E, 30vw 0 0 0 #C7AB7E, 1200px 0 0 0 #C7AB7E;
  }
}
@media only screen and (min-width: 960px) {
  .nav-primary .menu {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
  }
}
.nav-primary .menu > .menu-item {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  margin-left: 16px;
}
.nav-primary .menu > .menu-item > .sub-menu {
  align-self: flex-start;
}
.nav-primary .menu > .menu-item .sub-menu-toggle {
  display: block;
  visibility: visible;
  color: #1D1616;
}
@media only screen and (min-width: 960px) {
  .nav-primary .menu > .menu-item .sub-menu-toggle {
    padding: 3px 10px;
    right: -20px;
  }
}
.nav-primary .menu > .menu-item .sub-menu-toggle:before {
  font-size: 1rem;
}
@media only screen and (min-width: 960px) {
  .nav-primary .menu > .menu-item .sub-menu-toggle:before {
    margin-top: 3px;
  }
}
.nav-primary .menu > .menu-item > a, .nav-primary .menu > .menu-item > button {
  margin-bottom: 0;
}
@media only screen and (min-width: 960px) {
  .nav-primary .menu > .menu-item > a {
    padding: 3px 0;
    letter-spacing: 1px;
  }
}
.nav-primary .menu > .menu-item:first-child {
  margin-left: 0;
}
.nav-primary .menu > .menu-item:first-child a {
  padding-left: 0;
}
.nav-primary .menu > .menu-item.menu-item-icon-cart-inline .sub-menu-toggle {
  display: none;
}
@media only screen and (min-width: 960px) {
  .nav-primary .menu > .menu-item.menu-item-icon-cart-inline > a {
    display: inline-flex;
    padding-inline: 20px;
    align-items: center;
    background-color: #1D1616;
    border-radius: 10px;
    color: #ffffff;
  }
  .nav-primary .menu > .menu-item.menu-item-icon-cart-inline > a span {
    display: flex;
    align-items: center;
  }
  .nav-primary .menu > .menu-item.menu-item-icon-cart-inline > a span:before {
    content: "";
    display: inline-block;
    margin-right: 5px;
    width: 17px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("bs-images/icon-cart-white.svg");
  }
}
@media only screen and (min-width: 960px) {
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu {
    position: absolute;
    right: 0 !important;
    left: 0 !important;
    top: 100%;
    padding: 20px 0;
    width: 100%;
    border-top: 10px solid #C7AB7E;
    border-left: 1px solid #C7AB7E;
    border-right: 1px solid #C7AB7E;
    border-bottom: 1px solid #C7AB7E;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu.sub-mega-menu-fullwidth {
    width: calc(1156px);
    min-height: 360px;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item {
    position: static;
    display: flex;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a {
    padding: 0;
    width: 390px;
    /* &:after {
                  display: block;
                  float: right;
                  content: "";
                  width: $spacing--xs;
                  height: auto;
                  background: linear-gradient(
                    90deg,
                    rgba($color__grey--light, $opacity__dark),
                    transparent
                  );
                  position: absolute;
                  top: -$spacing--m;
                  bottom: -$spacing--m;
                  right: -$spacing--xs;
                  left: auto;
                } */
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a > span {
    width: 100%;
    display: inline-block;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    padding: 0 30px;
    min-height: 50px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a > span .menu-image {
    display: block;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a > span .menu-image-title {
    padding-right: 15px;
    padding-left: 15px;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a::before {
    display: none;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a img {
    padding-right: 0;
    width: 48px;
    height: auto;
    max-height: 48px;
    background-color: #FFFEFC;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a:hover span {
    background-color: #C7AB7E;
    color: #FFFEFC;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a.bs-menu-toggle[role="button"] {
    width: 100%;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a.bs-menu-toggle[role="button"] > span {
    padding: 0;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a.bs-menu-toggle[role="button"] .bs-menu-label {
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 390px;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > a.bs-menu-toggle[role="button"] .bs-menu-arrow-wrap {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-content: center;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu-toggle {
    display: none;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu {
    position: absolute;
    top: unset;
    bottom: 0;
    margin-right: 0;
    margin-left: 0;
    border: none;
    border-top: 10px solid #C7AB7E;
    height: calc(100% + 10px);
    left: 100% !important;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item {
    display: flex;
    align-items: center;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item::before {
    content: "•" / "";
    flex-shrink: 0;
    margin-right: 5px;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item > a {
    box-shadow: none;
    max-width: 260px;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item > a span {
    padding-top: 5px;
    padding-bottom: 5px;
    padding: 0;
    width: auto;
    background-color: transparent;
    border: none;
    min-height: initial;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item > a:hover span {
    color: #C4000B;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item > a:after {
    display: none;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item > a .sub-menu-toggle {
    display: none;
  }
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu .menu-item > .sub-menu .menu-item > a img {
    width: 0;
    height: 0;
  }
}
@media only screen and (min-width: 960px) and (min-width: 1156px) {
  .nav-primary .menu > .menu-item.mega-menu > .sub-menu {
    padding: 20px 0;
    width: fit-content;
    width: -moz-fit-content;
  }
}
.nav-primary .menu a, .nav-primary .menu > .menu-item > .bs-menu-toggle {
  font-weight: 500;
  font-size: 0.9375rem;
  color: #1D1616;
  text-decoration: none;
}
.nav-primary .menu a:hover, .nav-primary .menu > .menu-item > .bs-menu-toggle:hover {
  color: #C4000B;
}
.nav-primary .menu .current-menu-item > a, .nav-primary .menu .current-page-ancestor > a {
  color: #C4000B;
}
.nav-primary .menu .menu-image {
  display: none;
}
.nav-primary .menu .menu-item-has-children > a {
  padding-right: 0;
}
.nav-primary .menu button .bs-menu-arrow {
  margin-left: 16px;
}
.nav-primary .menu a + .bs-menu-toggle .bs-menu-arrow {
  margin-left: 0;
}
.nav-primary .menu .bs-menu-toggle > span > .bs-menu-arrow {
  transform: translateY(-1px);
}
.nav-primary .menu .menu-item > .bs-menu-toggle:first-child {
  padding-inline: 16px;
}
.nav-primary .genesis-nav-menu, .nav-primary .bs-accessible-menu {
  line-height: inherit;
}
.nav-primary .genesis-nav-menu .sub-menu, .nav-primary .bs-accessible-menu .sub-menu {
  border: none;
}
@media only screen and (min-width: 960px) {
  .nav-primary .genesis-nav-menu .sub-menu, .nav-primary .bs-accessible-menu .sub-menu {
    border-top: 10px solid #C7AB7E;
    width: 350px;
  }
}
.nav-primary .genesis-nav-menu .sub-menu, .nav-primary .bs-accessible-menu .sub-menu {
  background-color: #FFFEFC;
}
@media only screen and (min-width: 960px) {
  .nav-primary .genesis-nav-menu .sub-menu, .nav-primary .bs-accessible-menu .sub-menu {
    padding: 30px 20px;
    left: -20px !important;
    border-left: 1px solid #C7AB7E;
    border-right: 1px solid #C7AB7E;
    border-bottom: 1px solid #C7AB7E;
  }
}
.nav-primary .genesis-nav-menu .sub-menu .menu-item, .nav-primary .bs-accessible-menu .sub-menu .menu-item {
  display: block;
}
@media only screen and (min-width: 960px) {
  .nav-primary .genesis-nav-menu .sub-menu .menu-item a, .nav-primary .bs-accessible-menu .sub-menu .menu-item a {
    padding-top: 5px;
    padding-bottom: 5px;
    width: auto;
    background-color: transparent;
    border: none;
    letter-spacing: initial;
  }
  .nav-primary .genesis-nav-menu .sub-menu .menu-item a:before, .nav-primary .bs-accessible-menu .sub-menu .menu-item a:before {
    content: "•";
    position: relative;
    color: #1D1616;
    font-weight: 700;
    display: block;
    width: 4px;
    margin-left: -12px;
    height: 4px;
    line-height: 1.4em;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 960px) {
  .nav-primary .bs-accessible-menu .sub-menu {
    position: absolute !important;
    left: unset !important;
  }
  .nav-primary .bs-accessible-menu li.bs-menu-open > .sub-menu {
    display: block;
    opacity: 1;
  }
}
@media only screen and (min-width: 960px) {
  .mega-menu-placeholder {
    position: absolute;
    z-index: 99999;
    top: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: none;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
    width: 180px;
    height: 180px;
    right: 30px;
  }
}
@media only screen and (min-width: 1156px) {
  .mega-menu-placeholder {
    width: 300px;
    height: 300px;
    position: absolute;
    right: 70px;
  }
}
.menu-item-icon-search > a {
  display: block;
  padding-bottom: 0;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("bs-images/icon-search.svg");
  font-size: 0;
  text-indent: -9999px;
}
.site-header .menu-toggle {
  display: none;
}
.wpmenucart {
  position: relative;
}
.wpmenucart .wpmenucart-icon-shopping-cart-0 {
  float: left;
}
.wpmenucart .wpmenucart-icon-shopping-cart-0:before {
  content: "";
  display: block;
  margin-right: 5px;
  text-indent: -9999px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("bs-images/icon-cart.svg");
}
.wpmenucart > a > span {
  padding-top: 3px;
  font-weight: 500;
  font-size: 0.9375rem;
}
@media only screen and (max-width: 959px) {
  .wpmenucart.wpmenucartli.wpmenucart-display-standard a.wpmenucart-contents span.cartcontents {
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    position: absolute;
    top: -10px;
    background: #D5A70F;
    border-radius: 3px;
    width: auto;
    min-width: 18px;
    height: 18px;
    text-align: center;
    padding: 2px 3px;
    white-space: nowrap;
    left: 20px;
    font-size: 13px;
    font-weight: normal;
    line-height: 13px;
    color: #FFFEFC;
  }
}
@media only screen and (max-width: 959px) {
  .wpmenucart.wpmenucartli.wpmenucart-display-standard a.wpmenucart-contents span.amount {
    display: none !important;
  }
}
.wpmenucart.wpmenucartli.wpmenucart-display-standard.wpmenucart-icon-shopping-cart-full a.wpmenucart-contents span {
  opacity: 1;
  -moz-opacity: 1;
  -webkit-opacity: 1;
  filter: alpha(opacity=100);
}
.wpmenucart.wpmenucartli.wpmenucart-display-standard.wpmenucart-icon-shopping-cart-full.wpmenucart-icon-shopping-cart-0:before {
  background-image: url("bs-images/icon-cart-full.svg");
}
.wpmenucart .cartcontents + .amount::before {
  content: "/";
}
.search-box, .search-box-mobile {
  display: block;
  padding: 10px 30px;
  background-color: #1D1616;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .search-box, .search-box-mobile {
    display: inline-block;
    position: absolute;
    top: 53px;
    right: 0;
    padding: 10px;
    background-color: #C7AB7E;
  }
}
.search-box .search-form, .search-box-mobile .search-form {
  display: inline-flex;
}
.search-box input[type="search"], .search-box-mobile input[type="search"] {
  font-size: 0.9375rem;
  padding: 5px;
  border: none;
  border-radius: 3px;
}
.search-box input[type="submit"], .search-box-mobile input[type="submit"] {
  margin-top: 0;
  margin-left: 10px;
  display: inline-block;
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 3px !important;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #FFFEFC;
  background-color: #D5A70F;
}
.search-box input[type="submit"]:visited, .search-box-mobile input[type="submit"]:visited {
  color: #FFFEFC;
}
.search-box input[type="submit"]:hover, .search-box-mobile input[type="submit"]:hover {
  background-color: #EFBA0C;
  color: #FFFEFC;
}
.search-box-mobile {
  display: block;
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  width: 100vw;
  padding: 40px 30px 10px 30px;
  background-color: #1D1616;
  z-index: 9999;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.search-box-mobile .search-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.search-box-mobile .search-form-input {
  width: 75%;
  margin: auto;
}
.search-box-mobile .search-form input[type="submit"] {
  margin: 30px auto;
  width: fit-content;
}
.search-box-mobile-title {
  margin-top: 5px;
  margin-bottom: 30px;
  text-align: left;
  color: #FFFEFC;
  font-size: 1.25rem;
}
.search-box-mobile-close {
  position: absolute;
  top: 45px;
  right: 30px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("bs-images/icon-close-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
@media only screen and (min-width: 960px) {
  .search-box-mobile {
    display: none;
  }
}
div.asl_r {
  margin-top: 10px !important;
  box-shadow: none;
}
div.asl_r.vertical {
  box-shadow: none;
}
@media only screen and (min-width: 960px) {
  div.asl_r.vertical {
    border-bottom: 1px solid #C7AB7E;
    border-left: 1px solid #C7AB7E;
    border-right: 1px solid #C7AB7E;
  }
}
div.asl_r .results .item .asl_content h3, div.asl_r .results .item .asl_content h3 a {
  color: #1D1616;
}
div.asl_r .results .item .asl_content h3:hover, div.asl_r .results .item .asl_content h3 a:hover {
  color: #C4000B;
}
div.asl_w .probox, div.asl_m .probox .proinput input, .probox, div.asl_m .probox {
  height: 40px !important;
}
div.asl_w .probox .proloading, div.asl_w .probox .proclose, div.asl_w .probox .promagnifier, div.asl_w .probox .prosettings {
  margin-top: 8px;
}
.probox .proinput input, div.asl_w .probox .proinput input {
  font-size: 1rem !important;
}
div.asl_w .probox .promagnifier {
  margin: 0;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: auto;
  background-color: #D5A70F;
  color: #1D1616;
}
div.asl_w .probox .promagnifier:hover {
  background-color: #EFBA0C;
  color: #1D1616;
}
div.asl_w .probox .promagnifier .innericon {
  display: block;
  width: 20px;
  height: 20px;
}
div.asl_w .probox .promagnifier .innericon svg {
  width: 20px;
  height: 20px;
}
div.asl_w .probox .promagnifier > span:not(.innericon) {
  display: inline;
  font-size: 0.9375rem;
}
@media only screen and (min-width: 960px) {
  div.asl_m .probox .promagnifier .innericon, div.asl_m .probox .prosettings .innericon, div.asl_m .probox .proclose .innericon {
    display: none;
  }
}
.rmp-menu-item-current-ancestor > .rmp-menu-item-link, .rmp-menu-item-current-parent > .rmp-menu-item-link {
  color: #C7AB7E !important;
}
.rmp-menu-item-link {
  text-transform: uppercase;
}
.rmp-submenu {
  padding-left: 30px !important;
}
.rmp-submenu img {
  display: none !important;
}
.rmp-submenu .menu-image-title-after.menu-image-title {
  padding-left: 0;
}
.rmp-submenu .rmp-menu-item-link {
  padding: 5px 0 !important;
  line-height: 24px !important;
  display: inline-flex !important;
}
.rmp-submenu .rmp-font-icon {
  height: 24px !important;
  line-height: 24px !important;
}
.rmp-menu-subarrow {
  position: relative !important;
  display: inline-block !important;
}
.rmp-menu-sub-level-item > .rmp-menu-item-link {
  height: inherit !important;
}
.rmp_menu_trigger .responsive-menu-pro-inner, .rmp_menu_trigger .responsive-menu-pro-inner::before, .rmp_menu_trigger .responsive-menu-pro-inner::after {
  background-color: #1D1616 !important;
}
.rmp-menu > .rmp-menu-item > .rmp-menu-item-link {
  padding-right: 0 !important;
  display: flex !important;
}
.rmp-menu > .rmp-menu-item > .rmp-menu-item-link > .rmp-menu-subarrow {
  height: 100% !important;
  width: 40px !important;
}
.rmp-menu > .rmp-menu-item > .rmp-menu-item-link > .rmp-menu-subarrow > .rmp-font-icon {
  width: 40px !important;
}
button.rmp_menu_trigger {
  position: fixed !important;
}
.fixed-header button.rmp_menu_trigger {
  position: fixed !important;
  top: 32px !important;
}
.admin-bar #rmp_menu_trigger-153902 {
  margin-top: 0 !important;
  top: 50px;
}
.admin-bar #rmp-container-153902 {
  top: -32px;
}
@keyframes bs-slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes bs-backdrop-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
dialog.bs-mobile-dialog {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background-color: #FFFEFC;
  color: #1D1616;
  padding: 0 30px 30px;
}
@media (prefers-reduced-motion: no-preference) {
  dialog.bs-mobile-dialog[open] {
    animation: bs-slide-in-right 0.3s ease forwards;
  }
  dialog.bs-mobile-dialog[open]::backdrop {
    animation: bs-backdrop-fade-in 0.3s ease forwards;
  }
}
dialog.bs-mobile-dialog .current-menu-ancestor > a, dialog.bs-mobile-dialog .current-menu-parent > a {
  color: #C7AB7E;
}
dialog.bs-mobile-dialog .menu-item > a {
  text-transform: uppercase;
  font-size: 1.125rem;
  line-height: 40px;
  font-weight: normal;
  text-decoration: none;
  color: #1D1616;
}
dialog.bs-mobile-dialog .menu-item > a:hover {
  color: #A61932;
}
dialog.bs-mobile-dialog .bs-menu-toggle {
  color: #1D1616;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 5%;
  border-bottom: 1px solid #C7AB7E;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item > a {
  flex: 1;
  padding-right: 0;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item > a.bs-menu-toggle {
  flex: 1;
  justify-content: flex-start;
  font-size: 1.125rem;
  line-height: 40px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: normal;
  text-transform: uppercase;
  text-decoration: none;
  color: #1D1616;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item > a.bs-menu-toggle:hover {
  color: #A61932;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item > a.bs-menu-toggle > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item > a.bs-menu-toggle .bs-menu-arrow-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .menu-item > .sub-menu {
  flex-basis: 100%;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu > ul > .current-menu-item > a:hover {
  color: #C7AB7E;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu {
  position: relative;
  box-shadow: none;
  background: none;
  min-width: 0;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu img {
  display: none;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 5% 0 0;
  border-bottom: 1px solid #C7AB7E;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item:last-child {
  border-bottom: none;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item > a {
  flex: 1;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 40px;
  font-weight: normal;
  text-decoration: none;
  color: #1D1616;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item > a:hover {
  color: #A61932;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item > a.bs-menu-toggle {
  flex: 1;
  justify-content: flex-start;
  padding-top: 12px;
  padding-bottom: 12px;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item > a.bs-menu-toggle > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .menu-item > a.bs-menu-toggle .bs-menu-arrow-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .current-menu-item > a {
  color: #C7AB7E;
}
dialog.bs-mobile-dialog nav.bs-mobile-menu .sub-menu .current-menu-item > a:hover {
  color: #A61932;
}
dialog.bs-mobile-dialog .genesis-nav-menu .menu-item:hover > .sub-menu {
  display: none;
}
dialog.bs-mobile-dialog .genesis-nav-menu .menu-item.bs-menu-open > .sub-menu {
  display: block;
}
.bs-hamburger {
  color: inherit;
}
/*
    @POST       Site inner
*/
/* @POST */
.page {
  margin-bottom: 0;
}
.post .entry-content > figure {
  text-align: center;
}
.post .entry-content > figure img {
  margin-bottom: 20px;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
.blog .content, .post-type-archive-evento .content {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1156px) {
  .blog .content, .post-type-archive-evento .content {
    padding-left: 0;
    padding-right: 0;
  }
}
.blog .content article, .post-type-archive-evento .content article {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .blog .content article, .post-type-archive-evento .content article {
    width: 48%;
    float: left;
    margin-left: 30px;
  }
  .blog .content article:first-child, .blog .content article:nth-child(2n+1), .post-type-archive-evento .content article:first-child, .post-type-archive-evento .content article:nth-child(2n+1) {
    clear: left;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1156px) {
  .blog .content article, .post-type-archive-evento .content article {
    width: 31.55%;
    float: left;
    margin-left: 30px;
  }
  .blog .content article:nth-child(2n+1), .post-type-archive-evento .content article:nth-child(2n+1) {
    clear: inherit;
    margin-left: 30px;
  }
  .blog .content article:first-child, .blog .content article:nth-child(3n+3), .post-type-archive-evento .content article:first-child, .post-type-archive-evento .content article:nth-child(3n+3) {
    clear: left;
    margin-left: 0;
  }
}
.blog .content article .entry-header p.entry-meta, .post-type-archive-evento .content article .entry-header p.entry-meta {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
}
.blog .content article .entry-header h2.entry-title, .post-type-archive-evento .content article .entry-header h2.entry-title {
  line-height: inherit !important;
}
.blog .content article .entry-header h2.entry-title a, .post-type-archive-evento .content article .entry-header h2.entry-title a {
  font-family: "Kanit", sans-serif;
  font-weight: 500 !important;
  font-size: 1.25rem;
  color: #1D1616;
}
.blog .content article .entry-content, .post-type-archive-evento .content article .entry-content {
  display: block;
  margin-bottom: 20px;
  width: 265px;
  height: 265px;
}
@media only screen and (min-width: 960px) {
  .blog .content article .entry-content, .post-type-archive-evento .content article .entry-content {
    margin-bottom: 30px;
    width: 365px;
    height: 365px;
  }
}
.blog .content article img, .post-type-archive-evento .content article img {
  transition: 0.4s all ease;
  object-fit: cover;
  margin-bottom: 30px;
  background-color: #EBE6DF;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  width: 265px;
  height: 265px;
}
@media only screen and (min-width: 960px) {
  .blog .content article img, .post-type-archive-evento .content article img {
    margin-bottom: 30px;
    width: 365px;
    height: 365px;
  }
}
.blog .content article:hover img, .post-type-archive-evento .content article:hover img {
  box-shadow: none;
  filter: brightness(110%);
}
.blog .content article:hover h2.entry-title a, .blog .content article:hover h2.entry-title a:visited, .post-type-archive-evento .content article:hover h2.entry-title a, .post-type-archive-evento .content article:hover h2.entry-title a:visited {
  color: #A61932;
}
.post-type-archive-ricetta {
  /*&-wrapper {
		@media only screen and (min-width: $site-max-width--large) {
			padding: $spacing--sm 0;
		}
	}*/
  /*
	&__stagionalita-list,
	&__chef-list,
	&__tipologia-list {
		margin-bottom: $spacing--l;
		padding-left: 0 !important;
	}
	&__stagionalita-item,
	&__chef-item,
	&__tipologia-item {
		list-style-type: none !important;
		display: inline;
		margin-right: $spacing--m;
		@media only screen and (max-width: $site-max-width--small) {
			margin-right: 0;
		}
		@media only screen and (min-width: $site-max-width--large) {
			margin-right: $spacing--l;
		}
		.btn {
			margin-bottom: $spacing--sm;
			@media only screen and (max-width: $site-max-width--small) {
				width: 100%;
				text-align: center;
			}
			&.active {
				background-color: $color__yellow;
			}
		}
	}
	*/
}
.post-type-archive-ricetta .content > article {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .post-type-archive-ricetta .content > article {
    width: 47.8%;
    float: left;
    margin-left: 30px;
  }
  .post-type-archive-ricetta .content > article:first-of-type, .post-type-archive-ricetta .content > article:nth-child(2n+2) {
    clear: left;
    margin-left: 0;
  }
}
@media only screen and (min-width: 960px) {
  .post-type-archive-ricetta .content > article {
    width: 22.9%;
    float: left;
    margin-left: 20px;
  }
  .post-type-archive-ricetta .content > article:nth-child(2n+2) {
    clear: inherit;
    margin-left: 30px;
  }
  .post-type-archive-ricetta .content > article:first-of-type, .post-type-archive-ricetta .content > article:nth-child(4n+4) {
    clear: left;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1156px) {
  .post-type-archive-ricetta .content > article {
    width: 23.05%;
    float: left;
    margin-left: 30px;
  }
  .post-type-archive-ricetta .content > article:nth-child(2n+2) {
    clear: inherit;
    margin-left: 30px;
  }
  .post-type-archive-ricetta .content > article:first-of-type, .post-type-archive-ricetta .content > article:nth-child(4n+4) {
    clear: left;
    margin-left: 0;
  }
}
.post-type-archive-ricetta .content img {
  object-fit: cover;
  margin-bottom: 10px;
  width: 100%;
  height: 265px;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
@media only screen and (min-width: 960px) {
  .post-type-archive-ricetta .content img {
    margin-bottom: 30px;
    height: 220px;
  }
}
@media only screen and (min-width: 1156px) {
  .post-type-archive-ricetta .content img {
    margin-bottom: 30px;
    height: 275px;
  }
}
.post-type-archive-ricetta .content .terms-stagionalita {
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
}
.post-type-archive-ricetta .content .entry-title {
  line-height: inherit !important;
}
.post-type-archive-ricetta .content .entry-title a, .post-type-archive-ricetta .content .entry-title a:visited {
  font-family: "Kanit", sans-serif;
  font-weight: 500 !important;
  font-size: 1.25rem;
  color: #1D1616;
}
.archive-pagination {
  text-align: center;
}
.archive-pagination li a {
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #FFFEFC;
  background-color: #C7AB7E;
}
.archive-pagination li a:visited {
  color: #FFFEFC;
}
.archive-pagination li a:hover {
  color: #FFFEFC;
  background-color: #B3251D;
}
.archive-pagination li.active a {
  color: #FFFEFC;
  background-color: #D5A70F;
}
.archive-pagination li.active a:visited {
  color: #FFFEFC;
}
.archive-pagination li.active a:hover {
  background-color: #EFBA0C;
  color: #FFFEFC;
}
/* BS Custom Page Title */
.bs-custom-page-title {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #1D1616;
  border-bottom: 10px solid #C7AB7E;
}
.bs-custom-page-title__inner {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1156px;
}
@media only screen and (min-width: 960px) {
  .bs-custom-page-title__inner {
    flex-direction: row;
  }
}
.bs-custom-page-title__column {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .bs-custom-page-title__column {
    width: 50%;
  }
}
.bs-custom-page-title__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFEFC;
  text-align: center;
  padding: 30px;
}
.bs-custom-page-title__image img {
  object-fit: cover;
  height: 100%;
  width: auto;
}
/* ACF BS Block Carousel Card */
.bs-block-carousel-card {
  overflow: visible !important;
}
.bs-block-carousel-card a {
  color: #1D1616;
}
.bs-block-carousel-card__inner {
  display: flex;
  flex-direction: column;
}
.bs-block-carousel-card img {
  margin-bottom: 20px;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
@media only screen and (min-width: 960px) {
  .bs-block-carousel-card__title {
    margin-bottom: 0;
    font-weight: 600;
  }
}
.bs-block-carousel-card .swiper-button-prev, .bs-block-carousel-card .swiper-button-next {
  display: none;
  top: 32%;
  right: -25px;
  width: 18px;
  height: 65px;
}
@media only screen and (min-width: 960px) {
  .bs-block-carousel-card .swiper-button-prev, .bs-block-carousel-card .swiper-button-next {
    display: block;
  }
}
.bs-block-carousel-card .swiper-button-prev:after, .bs-block-carousel-card .swiper-button-next:after {
  font-size: 0;
  content: "";
  display: inline-block;
  width: 18px;
  height: 65px;
  background-image: url("bs-images/icon-arrow-swiper-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bs-block-carousel-card .swiper-button-prev {
  left: -25px;
}
.bs-block-carousel-card .swiper-button-prev:after {
  transform: rotate(180deg);
}
/* ACF BS Block Title */
.bs-block-title {
  padding-bottom: 30px;
  text-align: center;
}
.bs-block-title__icon {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 5px;
  width: 40px;
  height: 40px;
  background-color: #C4000B;
}
.bs-block-title__title {
  margin-top: 10px;
  margin-bottom: 0;
}
.bs-block-title__subtitle {
  margin-bottom: 0;
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
}
.bs-block-title__subtitle > a {
  text-decoration: none;
}
.bs-block-title__subtitle > a:hover, .bs-block-title__subtitle > a:focus {
  text-decoration: underline;
}
/* ACF BS Block Featured card */
.bs-block-featured-card {
  margin-top: 40px;
  margin-bottom: 40px;
  background-color: #EBE6DF;
  border-top: 8px solid #C7AB7E;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-card {
    padding-right: 0;
    padding-left: 0;
    border-bottom: 8px solid #C7AB7E;
  }
}
.bs-block-featured-card-wrapper {
  margin: 0 auto;
  max-width: 1156px;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-card__inner {
    display: grid;
    grid-template-columns: 50% 50%;
  }
}
.bs-block-featured-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 30px;
}
.bs-block-featured-card__content-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: 30px;
  padding-left: 30px;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-card__content-wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}
.bs-block-featured-card__description {
  font-weight: 400;
  font-size: 1rem;
}
.bs-block-featured-card__cta {
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-card__cta {
    text-align: inherit;
  }
}
.bs-block-featured-card__image-wrapper {
  border-top: 8px solid #C7AB7E;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-card__image-wrapper {
    border-top: none;
    position: relative;
    padding-left: 90px;
    height: 100%;
  }
}
.bs-block-featured-card__image img {
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-card__image img {
    position: absolute;
    top: -10%;
    height: 120%;
    width: 100%;
    max-width: 85%;
    object-fit: cover;
  }
}
/* ACF BS Block Last posts */
.bs-block-last-posts {
  position: relative;
}
.bs-block-last-posts-wrapper {
  padding: 10px 30px;
}
@media only screen and (min-width: 960px) {
  .bs-block-last-posts-wrapper {
    padding: 10px 0;
  }
}
.bs-block-last-posts__inner {
  position: relative;
}
.bs-block-last-posts__inner:hover img {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.bs-block-last-posts__inner:hover a {
  color: #A61932 !important;
}
.bs-block-last-posts img {
  object-fit: cover;
  margin-bottom: 30px;
  width: 100%;
  height: 265px;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  transition: 0.4s all ease;
}
@media only screen and (min-width: 960px) {
  .bs-block-last-posts img {
    height: 365px;
  }
}
.bs-block-last-posts__date {
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
}
.bs-block-last-posts__title {
  line-height: inherit !important;
}
.bs-block-last-posts__title a {
  font-family: "Kanit", sans-serif;
  font-weight: 500 !important;
  font-size: 1.25rem;
  color: #1D1616;
  text-decoration: none;
}
.bs-block-last-posts__title a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.bs-block-last-posts .swiper-button-prev, .bs-block-last-posts .swiper-button-next {
  top: 32%;
  right: -60px;
  width: 28px;
  height: 97px;
}
.bs-block-last-posts .swiper-button-prev:after, .bs-block-last-posts .swiper-button-next:after {
  font-size: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-arrow-swiper-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bs-block-last-posts .swiper-button-prev {
  left: -60px;
}
.bs-block-last-posts .swiper-button-prev:after {
  transform: rotate(180deg);
}
/* ACF BS Block Carousel Last Recipes */
.bs-block-carousel-last-recipes {
  position: relative;
}
.bs-block-carousel-last-recipes-wrapper {
  padding: 10px 30px;
}
@media only screen and (min-width: 960px) {
  .bs-block-carousel-last-recipes-wrapper {
    padding: 10px 0;
  }
}
.bs-block-carousel-last-recipes__inner a, .bs-block-carousel-last-recipes__inner a:visited {
  text-decoration: none;
}
.bs-block-carousel-last-recipes__inner a:hover, .bs-block-carousel-last-recipes__inner a:focus, .bs-block-carousel-last-recipes__inner a:visited:hover, .bs-block-carousel-last-recipes__inner a:visited:focus {
  text-decoration: underline;
}
.bs-block-carousel-last-recipes__inner:hover img {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
.bs-block-carousel-last-recipes__inner:hover a {
  color: #A61932 !important;
}
.bs-block-carousel-last-recipes img {
  object-fit: cover;
  margin-bottom: 30px;
  width: 100%;
  height: 265px;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  transition: 0.4s all ease;
}
@media only screen and (min-width: 960px) {
  .bs-block-carousel-last-recipes img {
    height: 275px;
  }
}
.bs-block-carousel-last-recipes__tipologia, .bs-block-carousel-last-recipes__chef, .bs-block-carousel-last-recipes__stagionalita {
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
}
.bs-block-carousel-last-recipes__title {
  line-height: inherit !important;
}
.bs-block-carousel-last-recipes__title a, .bs-block-carousel-last-recipes__title a:visited {
  font-family: "Kanit", sans-serif;
  font-weight: 500 !important;
  font-size: 1.25rem;
  color: #1D1616;
}
.bs-block-carousel-last-recipes .swiper-button-prev, .bs-block-carousel-last-recipes .swiper-button-next {
  top: 32%;
  right: -60px;
  width: 28px;
  height: 97px;
}
.bs-block-carousel-last-recipes .swiper-button-prev:after, .bs-block-carousel-last-recipes .swiper-button-next:after {
  font-size: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-arrow-swiper-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bs-block-carousel-last-recipes .swiper-button-prev {
  left: -60px;
}
.bs-block-carousel-last-recipes .swiper-button-prev:after {
  transform: rotate(180deg);
}
/* ACF BS Block Last recipes */
@media only screen and (min-width: 960px) {
  .bs-block-last-recipes-wrapper {
    padding: 10px 0;
  }
}
.bs-block-last-recipes__item {
  margin-bottom: 40px;
  width: 100%;
  transition: 0.4s all ease;
}
@media only screen and (min-width: 768px) {
  .bs-block-last-recipes__item {
    width: 48%;
    float: left;
    margin-left: 30px;
  }
  .bs-block-last-recipes__item:first-child, .bs-block-last-recipes__item:nth-child(2n+1) {
    clear: left;
    margin-left: 0;
  }
}
@media only screen and (min-width: 960px) {
  .bs-block-last-recipes__item {
    width: 23.05%;
    float: left;
    margin-left: 20px;
  }
  .bs-block-last-recipes__item:nth-child(2n+1) {
    clear: inherit;
    margin-left: 30px;
  }
  .bs-block-last-recipes__item:first-child, .bs-block-last-recipes__item:nth-child(4n+1) {
    clear: left;
    margin-left: 0;
  }
}
@media only screen and (min-width: 1156px) {
  .bs-block-last-recipes__item {
    width: 23.05%;
    float: left;
    margin-left: 30px;
  }
  .bs-block-last-recipes__item:nth-child(2n+1) {
    clear: inherit;
    margin-left: 30px;
  }
  .bs-block-last-recipes__item:first-child, .bs-block-last-recipes__item:nth-child(4n+1) {
    clear: left;
    margin-left: 0;
  }
}
.bs-block-last-recipes__item:hover .bs-block-last-recipes__image {
  overflow: hidden;
}
.bs-block-last-recipes__item:hover .bs-block-last-recipes__image img {
  box-shadow: none;
  filter: brightness(110%);
}
.bs-block-last-recipes__item:hover .bs-block-last-recipes__title a, .bs-block-last-recipes__item:hover .bs-block-last-recipes__title a:visited {
  color: #A61932;
}
.bs-block-last-recipes__image {
  overflow: visible;
  border-radius: 3px;
  width: 315px;
  height: 315px;
}
@media only screen and (min-width: 960px) {
  .bs-block-last-recipes__image {
    margin-bottom: 30px;
    width: 220px;
    height: 220px;
  }
}
@media only screen and (min-width: 1156px) {
  .bs-block-last-recipes__image {
    margin-bottom: 30px;
    width: 266px;
    height: 266px;
  }
}
.bs-block-last-recipes img {
  transition: 0.4s all ease;
  border-radius: 3px;
  object-fit: cover;
  margin-bottom: 10px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
@media only screen and (min-width: 960px) {
  .bs-block-last-recipes img {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1156px) {
  .bs-block-last-recipes img {
    margin-bottom: 30px;
  }
}
.bs-block-last-recipes__stagionalita, .bs-block-last-recipes__tipologia {
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.4s all ease;
}
.bs-block-last-recipes__stagionalita a, .bs-block-last-recipes__stagionalita a:visited, .bs-block-last-recipes__tipologia a, .bs-block-last-recipes__tipologia a:visited {
  text-decoration: none;
}
.bs-block-last-recipes__stagionalita a:hover, .bs-block-last-recipes__stagionalita a:focus, .bs-block-last-recipes__stagionalita a:visited:hover, .bs-block-last-recipes__stagionalita a:visited:focus, .bs-block-last-recipes__tipologia a:hover, .bs-block-last-recipes__tipologia a:focus, .bs-block-last-recipes__tipologia a:visited:hover, .bs-block-last-recipes__tipologia a:visited:focus {
  text-decoration: underline;
}
.bs-block-last-recipes__title {
  font-size: inherit;
  line-height: inherit !important;
  transition: 0.4s all ease;
}
.bs-block-last-recipes__title a, .bs-block-last-recipes__title a:visited {
  font-family: "Kanit", sans-serif;
  font-weight: 500 !important;
  font-size: 1.25rem;
  color: #1D1616;
  text-decoration: none;
}
.bs-block-last-recipes__title a:hover, .bs-block-last-recipes__title a:focus, .bs-block-last-recipes__title a:visited:hover, .bs-block-last-recipes__title a:visited:focus {
  text-decoration: underline;
}
.bs-block-last-recipes__stagionalita-list, .bs-block-last-recipes__chef-list, .bs-block-last-recipes__tipologia-list {
  margin-bottom: 30px;
  padding-left: 0 !important;
}
.bs-block-last-recipes__stagionalita-item, .bs-block-last-recipes__chef-item, .bs-block-last-recipes__tipologia-item {
  list-style-type: none !important;
  display: inline;
  margin-right: 20px;
}
@media only screen and (max-width: 414px) {
  .bs-block-last-recipes__stagionalita-item, .bs-block-last-recipes__chef-item, .bs-block-last-recipes__tipologia-item {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  .bs-block-last-recipes__stagionalita-item, .bs-block-last-recipes__chef-item, .bs-block-last-recipes__tipologia-item {
    margin-right: 30px;
  }
}
.bs-block-last-recipes__stagionalita-item .btn, .bs-block-last-recipes__chef-item .btn, .bs-block-last-recipes__tipologia-item .btn {
  margin-bottom: 10px;
}
@media only screen and (max-width: 414px) {
  .bs-block-last-recipes__stagionalita-item .btn, .bs-block-last-recipes__chef-item .btn, .bs-block-last-recipes__tipologia-item .btn {
    width: 100%;
    text-align: center;
  }
}
.bs-block-last-recipes__stagionalita-item .btn.active, .bs-block-last-recipes__chef-item .btn.active, .bs-block-last-recipes__tipologia-item .btn.active {
  background-color: #EFBA0C;
}
/* ACF BS Block Next events */
.bs-block-next-events {
  position: relative;
}
.bs-block-next-events-wrapper {
  padding: 10px 0;
}
@media only screen and (min-width: 960px) {
  .bs-block-next-events-wrapper {
    padding: 10px 0;
  }
}
.bs-block-next-events__inner {
  padding: 20px;
  background-color: #FFFEFC;
  border: 1px solid #1D1616;
  border-radius: 3px;
  min-height: 120px;
}
.bs-block-next-events__inner:hover {
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  transition: 0.4s all ease;
}
.bs-block-next-events__dates {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
  font-size: 1rem;
}
.bs-block-next-events__title {
  margin-bottom: 0;
  line-height: inherit !important;
}
.bs-block-next-events__title a {
  font-family: "Kanit", sans-serif;
  font-weight: 500 !important;
  font-size: 1.25rem;
  color: #1D1616;
}
.bs-block-next-events__no-items {
  text-align: center;
}
.bs-block-next-events .swiper-button-prev, .bs-block-next-events .swiper-button-next {
  top: 32%;
  right: -60px;
  width: 28px;
  height: 97px;
}
.bs-block-next-events .swiper-button-prev:after, .bs-block-next-events .swiper-button-next:after {
  font-size: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-arrow-swiper-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bs-block-next-events .swiper-button-prev {
  left: -60px;
}
.bs-block-next-events .swiper-button-prev:after {
  transform: rotate(180deg);
}
/* ACF BS Block Testimonials */
.bs-block-testimonials {
  margin-bottom: 20px;
  max-width: 960px;
}
.bs-block-testimonials__inner {
  margin: 0 60px;
  padding: 30px;
  background-color: #C4000B;
  border-radius: 3px;
  max-width: 700px;
  height: 100%;
  min-height: 120px;
}
@media only screen and (min-width: 960px) {
  .bs-block-testimonials__inner {
    margin: auto;
    padding: 60px;
  }
}
.bs-block-testimonials__user {
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #FFFEFC;
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
}
.bs-block-testimonials__review {
  margin-bottom: 0;
  text-align: center;
  color: #FFFEFC;
  line-height: 1.2em;
  font-family: "garamond-premier-pro-caption", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
@media only screen and (min-width: 960px) {
  .bs-block-testimonials__review {
    padding: 0 40px;
    font-size: 1.875rem;
  }
}
.bs-block-testimonials .swiper-button-prev, .bs-block-testimonials .swiper-button-next {
  top: 33%;
  width: 28px;
  height: 98px;
  right: 0;
}
@media only screen and (min-width: 960px) {
  .bs-block-testimonials .swiper-button-prev, .bs-block-testimonials .swiper-button-next {
    top: 35%;
    right: 20px;
  }
}
.bs-block-testimonials .swiper-button-prev:after, .bs-block-testimonials .swiper-button-next:after {
  font-size: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-arrow-swiper-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bs-block-testimonials .swiper-button-prev {
  left: 0;
}
@media only screen and (min-width: 960px) {
  .bs-block-testimonials .swiper-button-prev {
    left: 20px;
  }
}
.bs-block-testimonials .swiper-button-prev:after {
  transform: rotate(180deg);
}
/* ACF BS Block Columns Card */
.bs-block-columns-card-wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 960px) {
  .bs-block-columns-card-wrapper {
    display: flex;
    flex-direction: row;
  }
}
.bs-block-columns-card__card {
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .bs-block-columns-card__card {
    margin-bottom: 0;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 960px) {
  .bs-block-columns-card__card:first-child {
    margin-left: 0;
  }
}
.bs-block-columns-card__image {
  position: relative;
  margin: 0 auto;
  max-width: 240px;
  height: 240px;
}
@media only screen and (min-width: 960px) {
  .bs-block-columns-card__image {
    max-width: 360px;
    height: 360px;
  }
}
.bs-block-columns-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
.bs-block-columns-card__title {
  margin-top: 30px;
  text-align: center;
  color: #A61932;
}
.bs-block-columns-card__subtitle {
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.0625rem;
}
/* ACF BS Block Sibling Pages */
.bs-block-sibling-pages-wrapper {
  padding: 10px 0;
}
@media only screen and (min-width: 960px) {
  .bs-block-sibling-pages-wrapper {
    padding: 100px 0;
  }
}
.bs-block-sibling-pages__title {
  text-align: center;
}
.bs-block-sibling-pages__list {
  display: block;
  padding-left: 0 !important;
  text-align: center;
}
.bs-block-sibling-pages__item {
  padding-bottom: 30px;
  display: block;
  list-style-type: none !important;
}
@media only screen and (min-width: 960px) {
  .bs-block-sibling-pages__item {
    display: inline;
    margin-left: 40px;
  }
}
.bs-block-sibling-pages__item:first-child {
  margin-left: 0;
}
.bs-block-sibling-pages__link {
  border-radius: 3px;
}
/* ACF BS Block Featured Products */
.bs-block-featured-products {
  position: relative;
  margin-left: -30px;
  padding-left: 0;
  width: 100vw;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-products {
    margin-left: inherit;
    width: inherit;
  }
}
.bs-block-featured-products-wrapper {
  margin: 0 auto;
  margin-right: 1px;
  padding-left: 30px !important;
  align-items: stretch;
  box-sizing: border-box;
  width: 100vw;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-products-wrapper {
    padding-left: 0 !important;
  }
}
.bs-block-featured-products li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  height: auto !important;
}
.bs-block-featured-products li:before {
  display: none;
}
.bs-block-featured-products li.product::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.bs-block-featured-products li.product:hover::after {
  opacity: 1;
}
.bs-block-featured-products li.product:hover .woocommerce-LoopProduct-link {
  border-top: 1px solid #C7AB7E;
  border-left: 1px solid #C7AB7E;
  border-right: 1px solid #C7AB7E;
  border-bottom: 1px solid #C7AB7E;
}
.bs-block-featured-products li.product:hover .cart table.variations th.label {
  border-left: 1px solid #C7AB7E;
}
.bs-block-featured-products li.product:hover .cart table.variations td.value {
  border-right: 1px solid #C7AB7E;
}
.bs-block-featured-products li.product:hover .cart .woocommerce-variation-add-to-cart {
  border-left: 1px solid #C7AB7E;
  border-bottom: 1px solid #C7AB7E;
}
.bs-block-featured-products li.product:hover .cart .woocommerce-variation {
  border-right: 1px solid #C7AB7E;
  border-bottom: 1px solid #C7AB7E;
}
.bs-block-featured-products li.product .woocommerce-LoopProduct-link {
  position: relative;
  flex-grow: 1;
  display: block;
  padding: 15px;
  background-color: #FFFFFF;
  border-top: 1px solid #EBE6DF;
  border-left: 1px solid #EBE6DF;
  border-right: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
  transition: 0.4s all ease;
}
.bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 {
  margin-bottom: 0;
  color: #1D1616;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 {
    font-size: 1rem;
  }
}
.bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 a, .bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 a:visited, .bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 a:hover {
  color: inherit;
  text-decoration: none;
}
.bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 a::after, .bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 a:visited::after, .bs-block-featured-products li.product .woocommerce-LoopProduct-link h2 a:hover::after {
  content: "";
  position: absolute;
  inset: 0;
}
.bs-block-featured-products li.product .woocommerce-LoopProduct-link img {
  margin-bottom: 20px;
}
.bs-block-featured-products li.product .cart {
  margin-top: -2px;
  margin-bottom: 5px;
}
.bs-block-featured-products li.product .cart a.added_to_cart {
  display: none;
}
.bs-block-featured-products li.product table.variations {
  margin-bottom: 0;
  background-color: #FFFFFF;
  border: none;
}
.bs-block-featured-products li.product table.variations th.label {
  padding-top: 8px;
  padding-left: 15px;
  padding-bottom: 5px;
  border-left: 1px solid #EBE6DF;
  font-weight: 400;
  font-size: 0.9375rem;
  transition: 0.4s all ease;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .bs-block-featured-products li.product table.variations th.label {
    padding-top: 0;
  }
}
.bs-block-featured-products li.product table.variations th.label label {
  white-space: nowrap;
}
.bs-block-featured-products li.product table.variations td.value {
  padding-bottom: 5px;
  padding-right: 15px;
  border-right: 1px solid #EBE6DF;
  transition: 0.4s all ease;
}
.bs-block-featured-products li.product table.variations td.value .reset_variations {
  display: none;
}
.bs-block-featured-products li.product .quantity {
  white-space: nowrap;
}
.bs-block-featured-products li.product .quantity label {
  font-weight: 400;
  font-size: 0.9375rem;
}
.bs-block-featured-products li.product .quantity .qty {
  padding: 0;
  max-width: 80px !important;
}
.bs-block-featured-products li.product .price, .bs-block-featured-products li.product .woocommerce-variation-price {
  float: right;
  margin-bottom: 0;
  padding: 2px 0;
  font-weight: 500;
  font-size: 1.0625rem;
}
.bs-block-featured-products li.product .woocommerce-variation {
  padding-right: 15px;
  border-right: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
  white-space: nowrap;
  text-align: right;
  transition: 0.4s all ease;
}
.bs-block-featured-products li.product .woocommerce-variation-add-to-cart {
  border-left: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
  padding-left: 15px;
  padding-right: 0;
  padding-bottom: 20px;
  transition: 0.4s all ease;
}
@media only screen and (min-width: 768px) {
  .bs-block-featured-products li.product .woocommerce-variation-add-to-cart {
    padding-right: 15px;
  }
}
.bs-block-featured-products li.product .variations_button {
  padding-top: 20px;
}
.bs-block-featured-products li.product .variations_button a.added_to_cart {
  display: none;
}
.bs-block-featured-products li.product button.product_type_simple {
  margin-top: 20px;
  border-top: 1px solid #EBE6DF;
}
.bs-block-featured-products li.product .single_variation_wrap {
  display: grid;
  grid-template-areas: "wcaddtocart wcprice" "wcbutton wcbutton";
  gap: 0;
}
.bs-block-featured-products li.product .woocommerce-variation-price {
  grid-area: wcprice;
}
.bs-block-featured-products li.product .woocommerce-variation-add-to-cart {
  grid-area: wcaddtocart;
}
.bs-block-featured-products li.product .variations_button {
  grid-area: wcbutton;
}
.bs-block-featured-products li.product select, .bs-block-featured-products li.product input {
  background-color: transparent !important;
}
.bs-block-featured-products li.product tbody, .bs-block-featured-products li.product tr, .bs-block-featured-products li.product th, .bs-block-featured-products li.product td {
  padding: 0;
  border: none;
  line-height: 1;
}
.bs-block-featured-products li.product input, .bs-block-featured-products li.product textarea {
  width: inherit !important;
  padding: 0;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-products li.product input, .bs-block-featured-products li.product textarea {
    border: none;
  }
}
.bs-block-featured-products li.product select {
  padding: 0;
}
@media only screen and (min-width: 960px) {
  .bs-block-featured-products li.product select {
    border: none;
    width: auto !important;
    max-width: 100px;
  }
}
.bs-block-featured-products li.product .bs-shipping-notice {
  margin: 0;
  font-size: 0.875rem;
  color: #5A5252;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
}
.bs-block-featured-products li.product .product-inner-last-element {
  display: none;
}
.bs-block-featured-products li .button, .bs-block-featured-products li .button.alt {
  width: 100%;
  width: -moz-available;
  width: -webkit-fill-available;
  width: stretch;
  display: inline-block;
  padding: 15px;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #FFFEFC;
  background-color: #D5A70F;
}
.bs-block-featured-products li .button:hover, .bs-block-featured-products li .button.alt:hover {
  background-color: #EFBA0C;
  color: #FFFEFC;
}
.bs-block-featured-products li.product-type-variable a > .price {
  display: none;
}
.bs-block-featured-products li.product-type-simple .cart {
  margin-top: -2px;
  background: #FFFEFC;
}
.bs-block-featured-products li.product-type-simple .cart .quantity {
  padding: 33px 15px 20px 15px;
  border-right: 1px solid #EBE6DF;
  border-left: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
}
.bs-block-featured-products li.product-type-simple:hover .cart .quantity {
  border-color: #C7AB7E;
}
.bs-block-featured-products .swiper-button-prev, .bs-block-featured-products .swiper-button-next {
  top: 32%;
  right: -60px;
  width: 28px;
  height: 97px;
}
.bs-block-featured-products .swiper-button-prev:after, .bs-block-featured-products .swiper-button-next:after {
  font-size: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-arrow-swiper-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.bs-block-featured-products .swiper-button-prev {
  left: -60px;
}
.bs-block-featured-products .swiper-button-prev:after {
  transform: rotate(180deg);
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .recipe-left, .recipe .entry-content .recipe-right {
    float: left;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .recipe-left {
    padding-right: 15px;
  }
  .recipe .entry-content .recipe-right {
    padding-left: 15px;
  }
}
.recipe .entry-content .recipe-featured-image {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .recipe-featured-image {
    width: 339px;
    height: 339px;
  }
}
@media only screen and (min-width: 960px) {
  .recipe .entry-content .recipe-featured-image {
    width: 465px;
    height: 465px;
  }
}
@media only screen and (min-width: 1156px) {
  .recipe .entry-content .recipe-featured-image {
    width: 563px;
    height: 563px;
  }
}
.recipe .entry-content .recipe-featured-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.recipe .entry-content .recipe-term {
  margin-bottom: 10px;
}
.recipe .entry-content .recipe-term span {
  margin-right: 10px;
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
}
.recipe .entry-content .recipe-term a {
  color: #1D1616;
}
.recipe .entry-content .recipe-content {
  margin-bottom: 30px;
  padding: 30px;
  background-color: #EBE6DF;
}
.recipe .entry-content .recipe-content p:last-child {
  margin-bottom: 0;
}
.recipe .entry-content img {
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
.recipe .entry-content img.wp-post-image {
  margin-bottom: 30px;
  border-radius: 3px;
}
.recipe .entry-content .gallery {
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .gallery {
    margin-top: 30px;
  }
}
.recipe .entry-content .gallery > ul {
  margin-bottom: 20px;
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .gallery > ul {
    width: fit-content;
  }
}
.recipe .entry-content .gallery > ul li {
  margin-bottom: 20px;
  padding: 0;
  display: inline-block;
  width: 50%;
  padding-left: 10px;
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .gallery > ul li {
    display: inline-block;
    width: 50%;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .gallery > ul li:nth-child(2n+1) {
    padding-left: 0;
  }
}
.recipe .entry-content .gallery > ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 158px;
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .gallery > ul li a {
    width: 160px;
    height: 160px;
  }
}
@media only screen and (min-width: 960px) {
  .recipe .entry-content .gallery > ul li a {
    width: 220px;
    height: 220px;
  }
}
@media only screen and (min-width: 1156px) {
  .recipe .entry-content .gallery > ul li a {
    width: 271px;
    height: 271px;
  }
}
.recipe .entry-content .gallery > ul li img {
  margin-bottom: 20px;
  padding: 0;
  border: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 3px;
}
.recipe .entry-content .gallery > ul li:first-child {
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .recipe .entry-content .gallery > ul li:first-child {
    padding-right: 10px;
  }
}
.bs-evento-date {
  text-transform: uppercase;
  color: #A61932;
  font-weight: 500;
}
.bs-evento-single-content .bs-evento-content-wrapper {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 768px) {
  .bs-evento-single-content .bs-evento-content-wrapper {
    flex-direction: row;
  }
}
.bs-evento-single-content .bs-evento-date {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .bs-evento-single-content .bs-evento-featured-image {
    flex: 1 50%;
    margin-right: 15px;
  }
}
.bs-evento-single-content .bs-evento-featured-image img {
  width: 100%;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
.bs-evento-single-content .bs-evento-content-inner {
  background-color: #EBE6DF;
  padding: 30px;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and (min-width: 768px) {
  .bs-evento-single-content .bs-evento-content-inner {
    flex: 1 50%;
    margin-left: 15px;
  }
}
/* wpsl plugin */
@media only screen and ((max-width: 959px)) {
  .entry-content #wpsl-stores {
    height: inherit !important;
    max-height: 350px !important;
  }
}
/* easy table plugin */
@media only screen and (max-width: 767px) {
  .easy-table th, .easy-table td:not(:first-child) {
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .easy-table td {
    word-break: initial;
  }
}
/*
    @SIDEBAR       Sidebar
*/
/* @SIDEBAR */
/*
	@FOOTER     Footer
*/
/* @FOOTER */
#siteauthor a {
  text-indent: -9999px;
  display: inline-block;
  width: 96px;
  margin-left: 2px;
  -webkit-mask-image: url("bs-images/logo-blackstudio-nero.svg");
  mask-image: url("bs-images/logo-blackstudio-nero.svg");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #000000;
}
.site-footer {
  border-top: none;
  text-align: initial;
  font-size: 0.8125rem;
  padding: 0;
}
.site-footer > .wrap {
  padding-block: 30px;
}
@media only screen and (min-width: 960px) {
  .site-footer > .wrap {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    max-width: 1156px;
  }
}
.site-footer .gwfoot-footer-one-one-third {
  width: 100%;
}
.site-footer .gwfoot-footer-two-two-thirds {
  text-align: left;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .site-footer .gwfoot-footer-two-two-thirds {
    width: auto;
    text-align: right;
  }
}
.footer-widgets {
  background-color: #1D1616;
  color: #FFFEFC;
}
.footer-widgets > .wrap {
  max-width: 1156px;
  /*@media only screen and (min-width: $site-max-width--large) {
			padding-left: 0;
			padding-right: 0;
		}*/
}
.footer-widgets a {
  color: #FFFEFC;
  text-decoration: none;
}
.footer-widgets a:hover {
  color: #B3251D;
}
.footer-widgets .widget {
  margin-bottom: 20px;
}
.footer-widgets .widgettitle {
  margin-bottom: 10px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.footer-widgets .footer-logo img {
  width: 80px;
  height: 80px;
}
.footer-widgets .footer-logo-payoff {
  font-family: "garamond-premier-pro-caption", sans-serif;
  font-weight: 500;
  font-size: 1.75rem;
}
.footer-widgets .footer-address {
  font-size: 0.9375rem;
  line-height: 1.2em;
}
.footer-widgets .footer-newsletter .textwidget {
  font-weight: 500;
  text-transform: uppercase;
  color: #D5A70F;
}
.footer-widgets .footer-newsletter-sendy .swp-row {
  line-height: 0.8em;
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=text], .footer-widgets .footer-newsletter-sendy .swp-row input[type=email] {
  padding: 5px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #707070;
  font-size: 0.875rem;
  color: #707070;
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=text]::placeholder, .footer-widgets .footer-newsletter-sendy .swp-row input[type=email]::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #707070;
  opacity: 1;
  /* Firefox */
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=text]:-ms-input-placeholder, .footer-widgets .footer-newsletter-sendy .swp-row input[type=email]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #707070;
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=text]::-ms-input-placeholder, .footer-widgets .footer-newsletter-sendy .swp-row input[type=email]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #707070;
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=text]:focus, .footer-widgets .footer-newsletter-sendy .swp-row input[type=email]:focus {
  color: #FFFEFC;
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=submit] {
  padding: 15px 30px;
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1616;
  background-color: #C7AB7E;
  border-radius: 3px;
}
.footer-widgets .footer-newsletter-sendy .swp-row input[type=submit]:hover {
  color: #FFFEFC;
  background-color: #B3251D;
}
.footer-widgets .footer-newsletter-sendy .swp-row .swp-terms {
  margin-right: 10px;
}
.footer-widgets .footer-newsletter-sendy .swp-row a {
  font-size: 0.8125rem;
  /*span {
						text-decoration: none;
						transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
						&:hover {
							color: $color__red--darker;
						}
					}*/
}
.footer-widgets .footer-newsletter-sendy .swp-row a:hover {
  color: #1D1616;
}
.footer-widgets .footer-newsletter-sendy .swp-row a:hover span {
  color: #B3251D;
}
.footer-widgets nav {
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer-widgets .footer-contact-btn .textwidget p a {
  display: inline-block;
  padding: 15px 30px;
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1616;
  background-color: #C7AB7E;
  border-radius: 3px;
}
.footer-widgets .footer-contact-btn .textwidget p a:hover {
  color: #FFFEFC;
  background-color: #B3251D;
}
.footer-widgets .footer-credit-cards {
  margin-top: 20px;
}
.footer-widgets .footer-credit-cards img {
  max-height: 25px;
  width: auto;
}
.footer-widgets .gallery {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
}
@media only screen and (min-width: 960px) {
  .footer-widgets .gallery {
    margin-top: 60px;
  }
}
.footer-widgets .gallery img {
  border: none;
}
.footer-widgets .gallery figure {
  margin-bottom: 0;
}
.footer-widgets .gallery figure:last-child img {
  width: 76px;
  height: auto;
}
.footer-widgets .simple-social-icons ul li {
  float: right;
}
@media only screen and (min-width: 960px) {
  .footer-widgets .simple-social-icons ul li {
    float: initial;
  }
}
.footer-widgets .simple-social-icons ul li a {
  padding: 5px !important;
}
@media only screen and (min-width: 960px) {
  .footer-widgets .simple-social-icons ul li a {
    padding: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .footer-widgets\-1 {
    padding-left: 0;
  }
}
.footer-widgets\-3 {
  display: grid;
  grid-template-columns: 80% 20%;
  grid-template-areas: "footer-menu-info-shop simple-social-icons" "footer-contact-btn simple-social-icons" "footer-credit-cards simple-social-icons" "footer-gallery-logos simple-social-icons";
}
.footer-widgets\-3 .footer-menu-info-shop {
  grid-area: footer-menu-info-shop;
}
.footer-widgets\-3 .footer-contact-btn {
  grid-area: footer-contact-btn;
}
.footer-widgets\-3 .footer-credit-cards {
  grid-area: footer-credit-cards;
}
.footer-widgets\-3 .footer-gallery-logos {
  grid-area: footer-gallery-logos;
  margin-bottom: 0;
}
.footer-widgets\-3 .simple-social-icons {
  grid-area: simple-social-icons;
}
@media only screen and (min-width: 960px) {
  .footer-widgets\-3 {
    padding-right: 0;
  }
}
.before-footer-widgets {
  padding-top: 40px;
  background-color: #EBE6DF;
}
.before-footer-widgets > .wrap {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1156px;
}
@media only screen and (min-width: 960px) {
  .before-footer-widgets > .wrap {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (min-width: 960px) {
  .before-footer-widgets .widget {
    width: 50%;
  }
  .before-footer-widgets .widget:first-child {
    margin-right: 15px;
  }
  .before-footer-widgets .widget:last-child {
    margin-left: 15px;
    margin-right: 0;
  }
}
.before-footer-widgets p {
  margin-bottom: 20px;
  font-size: 0.875rem;
  line-height: 1.2em;
}
.before-footer-widgets p img {
  margin-bottom: 0;
}
.to-top {
  display: inline-block;
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99999;
  background-color: #C7AB7E;
  background-size: 10px;
  border-radius: 3px;
  text-indent: -9999px;
  background-image: url("bs-images/icon-arrow-right-white.svg");
  background-position: center center;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
}
@media only screen and (min-width: 1156px) {
  .to-top {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .to-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 960px) {
  .to-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}
.to-top.top-is-visible {
  visibility: visible;
  opacity: 1;
}
/*
	@HOME     	Homepage
*/
/* @HOME */
.home .flexslider {
  margin-bottom: 0 !important;
}
.home .flexslider .caption-wrap {
  opacity: 1 !important;
}
.home .flexslider .caption-wrap br {
  display: none;
}
.wp-block-eedee-block-gutenslider .swiper {
  opacity: 0;
  transition: all 0.3s linear;
}
.wp-block-eedee-block-gutenslider .swiper ~ .eedee-gutenslider-nav {
  opacity: 0;
}
.wp-block-eedee-block-gutenslider .swiper.swiper-initialized {
  opacity: 1;
}
.wp-block-eedee-block-gutenslider .swiper.swiper-initialized ~ .eedee-gutenslider-nav {
  opacity: 1;
}
@media only screen and (min-width: 960px) {
  .wp-block-eedee-block-gutenslider {
    border-bottom: 10px solid #C7AB7E;
  }
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide {
  flex-direction: column-reverse !important;
  background-color: #1D1616;
}
@media only screen and ((max-width: 959px)) {
  .wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide {
    display: flex !important;
  }
}
@media only screen and (min-width: 960px) {
  .wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide {
    display: grid;
    margin: 0 auto;
  }
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide.hide {
  display: none !important;
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .eedee-background-div.bg-image {
  position: relative;
  min-height: 20vh !important;
  height: 140px !important;
}
@media only screen and (min-width: 960px) {
  .wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .eedee-background-div.bg-image {
    position: absolute;
    min-height: 50vh !important;
    height: inherit !important;
    width: 50%;
    left: auto !important;
  }
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: 100%;
  overflow-x: inherit !important;
}
@media only screen and (min-width: 960px) {
  .wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content {
    overflow-x: hidden !important;
    width: 50% !important;
    padding: 0 !important;
  }
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content > * {
  width: 100%;
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content h2 {
  font-size: 1.875rem;
}
@media only screen and (min-width: 960px) {
  .wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content h2 {
    font-size: 3.125rem;
  }
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content .wp-block-button__link {
  color: #FFFEFC !important;
  background-color: #C7AB7E !important;
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content .wp-block-button__link:hover {
  color: #FFFEFC !important;
  background-color: #B3251D !important;
}
.wp-block-eedee-block-gutenslider .wp-block-eedee-block-gutenslide .slide-content > .wp-block-group {
  height: 100%;
  display: flex;
  align-items: center;
}
.wp-block-eedee-block-gutenslider .eedee-gutenslider-nav {
  height: 96px;
}
.wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-prev, .wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-next {
  width: 28px;
  height: 96px;
  background: red;
}
.wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-prev svg, .wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-next svg {
  display: none;
}
.wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-prev:before, .wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-next:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-arrow-slider-right.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-next {
  right: 30px !important;
}
.wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-prev {
  left: 30px !important;
}
.wp-block-eedee-block-gutenslider.arrow-position-sides .eedee-gutenslider-prev:before {
  transform: rotate(180deg);
}
@media only screen and (max-width: 959px) {
  .wp-block-eedee-block-gutenslider .eedee-gutenslider-nav {
    display: none !important;
  }
}
.wp-block-eedee-block-gutenslider .eedee-gutenslider-pagination {
  justify-self: start !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  background-color: transparent;
}
@media only screen and (min-width: 960px), screen and (max-height: 550px) {
  .wp-block-eedee-block-gutenslider .eedee-gutenslider-pagination {
    bottom: 10px !important;
  }
}
@media only screen and (min-width: 960px) {
  .wp-block-eedee-block-gutenslider .eedee-gutenslider-pagination {
    bottom: 60px !important;
    width: 50% !important;
    background-color: transparent;
  }
}
@media only screen and (min-width: 960px) and (max-height: 767px) {
  .wp-block-eedee-block-gutenslider .eedee-gutenslider-pagination {
    display: none !important;
  }
}
.wp-block-eedee-block-gutenslider .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 0 !important;
  background: #FFFEFC !important;
  opacity: 1 !important;
}
@media only screen and (max-width: 959px) {
  .wp-block-eedee-block-gutenslider .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}
.wp-block-eedee-block-gutenslider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #C4000B !important;
}
.home .video-cover {
  position: relative;
}
.home .video-cover > video {
  object-fit: cover;
  width: 100%;
  min-height: 34vh;
}
@media only screen and (min-width: 600px) {
  .home .video-cover > video {
    min-height: 80vh;
  }
}
.home .video-cover .volume-control {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  transform-origin: center;
}
.home .video-cover .volume-control span.dashicons {
  font-size: 1.5rem;
}
.home .video-cover .volume-control span.dashicons.dashicons-controls-volumeoff {
  animation: scaleUp 1.5s ease 0s infinite alternate forwards;
}
@keyframes scaleUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}
/*
	@WOOCOMMERCE     	WooCommerce
*/
/* @WOOCOMMERCE */
.woocommerce.full-width-content .content {
  max-width: 1156px;
}
.woocommerce-store-notice.demo_store {
  position: fixed;
  margin: auto;
  padding: 10px 20px;
  background-color: #D9D0BB;
  box-shadow: none;
  color: #1D1616;
  font-size: 0.9375rem;
  max-width: 1156px;
  box-shadow: -1200px 0 0 0 #D9D0BB, -40vw 0 0 0 #D9D0BB, 40vw 0 0 0 #D9D0BB, 1200px 0 0 0 #D9D0BB;
}
@media only screen and ((max-width: 959px)) {
  .woocommerce-store-notice.demo_store {
    margin: inherit;
    padding: 10px 20px;
    max-width: inherit;
    box-shadow: none;
  }
}
.woocommerce-store-notice__dismiss-link {
  position: relative;
  display: inline-block;
  font-size: 0;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
}
@media only screen and ((max-width: 959px)) {
  .woocommerce-store-notice__dismiss-link {
    width: 15px;
    height: 15px;
  }
}
.woocommerce-store-notice__dismiss-link:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url("bs-images/icon-close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
  background-color: #ffffff;
  border-left: 1px solid #C7AB7E;
  border-right: 1px solid #C7AB7E;
  border-bottom: 1px solid #C7AB7E;
  border-top-color: #B3251D;
}
.woocommerce-error:before, .woocommerce-info:before, .woocommerce-message:before {
  color: #B3251D;
}
.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
  padding-left: 5px !important;
}
@media only screen and (min-width: 960px) {
  .woocommerce input, .woocommerce select, .woocommerce textarea {
    border: 0;
  }
}
.woocommerce .quantity .qty {
  padding: 5px;
  background-color: #EBE6DF;
  border-radius: 5px;
}
.woocommerce a.remove {
  width: 20px;
  height: 20px;
  font-size: 0;
}
.woocommerce a.remove:hover {
  color: transparent !important;
  background: transparent;
}
.woocommerce a.remove:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("bs-images/icon-close.svg");
}
.woocommerce form .form-row {
  margin-bottom: 20px !important;
  padding: 0;
}
.woocommerce form .form-row .required {
  color: #1D1616;
}
.woocommerce input, .woocommerce select, .woocommerce textarea, .woocommerce .select2-selection__rendered {
  padding: 8px 20px;
  background-color: #EBE6DF;
  border-radius: 3px;
}
.woocommerce input::placeholder, .woocommerce select::placeholder, .woocommerce textarea::placeholder, .woocommerce .select2-selection__rendered::placeholder {
  color: #707070;
  opacity: 1;
}
.woocommerce input:-ms-input-placeholder, .woocommerce select:-ms-input-placeholder, .woocommerce textarea:-ms-input-placeholder, .woocommerce .select2-selection__rendered:-ms-input-placeholder {
  color: #707070;
}
.woocommerce input::-ms-input-placeholder, .woocommerce select::-ms-input-placeholder, .woocommerce textarea::-ms-input-placeholder, .woocommerce .select2-selection__rendered::-ms-input-placeholder {
  color: #707070;
}
.woocommerce .select2-container--default .select2-selection--single {
  border-radius: 0;
  border: none;
}
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
  height: 26px !important;
}
.woocommerce input[type="date"] {
  content: "";
  display: block;
  background-image: url("bs-images/icon-calendar.svg");
  background-repeat: no-repeat;
  background-position: 98% 50%;
  height: 80%;
  width: auto;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border-color: #C7AB7E;
  border-radius: 3px;
}
.woocommerce .woocommerce-customer-details address {
  border-width: 1px;
  border-color: #C7AB7E;
}
.woocommerce .button.checkout-button:after, .woocommerce .button#wpmc-next:after, .woocommerce .button#place_order:after {
  content: "";
  opacity: 0;
  position: absolute;
  right: 13px;
  top: 13px;
  background-image: url("bs-images/icon-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.5px;
  height: 20px;
}
.woocommerce .button.checkout-button:hover, .woocommerce .button#wpmc-next:hover, .woocommerce .button#place_order:hover {
  padding-right: 40px !important;
}
.woocommerce .button.checkout-button:hover:after, .woocommerce .button#wpmc-next:hover:after, .woocommerce .button#place_order:hover:after {
  opacity: 1;
}
.woocommerce .button#wpmc-prev:before, .woocommerce .button#wpmc-back-to-cart:before, .woocommerce .button.wc-backward:before {
  content: "";
  opacity: 0;
  position: absolute;
  left: 13px;
  top: 13px;
  background-image: url("bs-images/icon-arrow-right-white.svg");
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.5px;
  height: 20px;
}
.woocommerce .button#wpmc-prev:hover, .woocommerce .button#wpmc-back-to-cart:hover, .woocommerce .button.wc-backward:hover {
  padding-left: 40px !important;
}
.woocommerce .button#wpmc-prev:hover:before, .woocommerce .button#wpmc-back-to-cart:hover:before, .woocommerce .button.wc-backward:hover:before {
  opacity: 1;
}
.woocommerce .woocommerce-info .button:after {
  content: "";
  opacity: 0;
  position: absolute;
  right: 13px;
  top: 13px;
  background-image: url("bs-images/icon-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 6.5px;
  height: 20px;
}
.woocommerce .woocommerce-info .button:hover {
  padding-right: 40px !important;
}
.woocommerce .woocommerce-info .button:hover:after {
  opacity: 1;
}
.woocommerce-account #customer_login h2, .woocommerce .wp-multi-step-checkout-step #customer_login h2 {
  font-weight: 600;
  font-size: 1.875rem;
}
.woocommerce-account form.woocommerce-form-login p[class^="form-row"], .woocommerce .wp-multi-step-checkout-step form.woocommerce-form-login p[class^="form-row"] {
  display: flex;
  align-items: center;
}
.woocommerce-account form.woocommerce-form-login p[class^="form-row"] label, .woocommerce-account form.woocommerce-form-login p[class^="form-row"] span, .woocommerce .wp-multi-step-checkout-step form.woocommerce-form-login p[class^="form-row"] label, .woocommerce .wp-multi-step-checkout-step form.woocommerce-form-login p[class^="form-row"] span {
  line-height: 1;
}
.woocommerce-account form.woocommerce-form-login p[class^="form-row"] .woocommerce-form-login__rememberme, .woocommerce .wp-multi-step-checkout-step form.woocommerce-form-login p[class^="form-row"] .woocommerce-form-login__rememberme {
  padding-left: 25px;
}
.woocommerce-account form.woocommerce-form-login p[class^="form-row"] .woocommerce-form-login__submit, .woocommerce .wp-multi-step-checkout-step form.woocommerce-form-login p[class^="form-row"] .woocommerce-form-login__submit {
  margin-top: 0;
  margin-left: auto;
  margin-right: 0;
}
.woocommerce .cvr-skip-to-filters {
  position: absolute;
  left: -100vw;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 999;
}
.woocommerce .cvr-skip-to-filters:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
}
@media screen and (max-width: 860px) {
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr {
    border-left: 1px solid #C7AB7E;
    border-right: 1px solid #C7AB7E;
  }
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr:last-of-type {
    border-bottom: 1px solid #C7AB7E;
  }
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr td {
    text-align: left !important;
  }
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr td:before {
    display: none;
  }
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr td:first-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr td:nth-of-type(2) {
    border-top: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .woocommerce .woocommerce-MyAccount-content .bsmca-account table.my_account_addresses tbody tr td:last-of-type {
    border-top: none;
    padding-top: 0 !important;
  }
}
.woocommerce table.cart {
  border-radius: 3px;
}
@media only screen and (min-width: 960px) {
  .woocommerce table.cart {
    border: none;
  }
}
.woocommerce table.cart thead {
  background-color: #ffffff;
}
.woocommerce table.cart thead tr {
  border-top: none;
}
.woocommerce table.cart thead th {
  font-weight: 500;
  font-size: 1.25rem;
  border-top: 1px solid #C7AB7E !important;
  border-bottom: 1px solid #C7AB7E !important;
}
.woocommerce table.cart thead th:first-child {
  border-left: 1px solid #C7AB7E !important;
  border-top-left-radius: 3px;
}
.woocommerce table.cart thead th:last-child {
  border-right: 1px solid #C7AB7E !important;
  border-top-right-radius: 3px;
}
.woocommerce table.cart tbody tr.cart_item {
  background-color: #ffffff;
}
.woocommerce table.cart tbody tr.cart_item td {
  border-top: none !important;
  border-bottom: 1px solid #C7AB7E !important;
}
@media only screen and (max-width: 859px) {
  .woocommerce table.cart tbody tr.cart_item td {
    border-color: #C7AB7E;
    border-style: solid;
    border-width: 1px;
  }
}
@media only screen and (min-width: 860px) {
  .woocommerce table.cart tbody tr.cart_item td:first-child {
    border-left: 1px solid #C7AB7E !important;
  }
}
.woocommerce table.cart tbody tr.cart_item td:last-child {
  border-right: 1px solid #C7AB7E !important;
}
.woocommerce table.cart tbody tr.cart_item td img {
  width: 55px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
.woocommerce table.cart tbody tr.cart_item td strong, .woocommerce table.cart tbody tr.cart_item td bdi {
  font-weight: 500;
  font-size: 1.25rem;
}
.woocommerce table.cart tbody tr.cart_item td.product-name {
  font-size: 1rem;
}
.woocommerce table.cart tbody tr.cart_item:first-child td {
  border-top: 1px solid #C7AB7E !important;
}
@media only screen and (min-width: 860px) {
  .woocommerce table.cart tbody tr.cart_item:first-child td {
    border-top: none !important;
  }
}
.woocommerce table.cart tbody tr.cart_item:last-child td:first-child {
  border-bottom-left-radius: 3px !important;
}
.woocommerce table.cart tbody tr.cart_item:last-child td:last-child {
  border-bottom-left-radius: 3px !important;
}
.woocommerce table.cart tbody tr:last-child td {
  border-top: none;
  padding-left: 0;
  padding-right: 0;
}
.woocommerce .cart-collaterals h2 {
  font-size: 1.875rem;
}
.woocommerce .cart-collaterals table.shop_table {
  border: 1px solid #C7AB7E !important;
  border-radius: 3px;
  background-color: #ffffff;
}
.woocommerce .cart-collaterals table.shop_table tr th, .woocommerce .cart-collaterals table.shop_table tr td {
  border-top: 1px solid #C7AB7E !important;
  background-color: #ffffff;
}
.woocommerce .cart-collaterals table.shop_table tr th {
  font-weight: 400;
  width: inherit;
}
.woocommerce .cart-collaterals table.shop_table tr:first-child th, .woocommerce .cart-collaterals table.shop_table tr:first-child td {
  border-top: none !important;
}
.woocommerce .wc-proceed-to-checkout {
  text-align: center;
}
.woocommerce .bsmca-shipping-selector {
  margin-bottom: 30px;
}
.woocommerce .bsmca-shipping-selector label.bsmca-label {
  display: inline-block;
  margin-bottom: 5px;
}
.woocommerce .bsmca-shipping-selector #bsmca_shipping_address_id {
  margin-bottom: 10px;
}
.woocommerce table.woocommerce-checkout-review-order-table {
  border: 1px solid #C7AB7E !important;
  border-radius: 3px;
  background-color: #ffffff;
}
.woocommerce table.woocommerce-checkout-review-order-table thead tr th, .woocommerce table.woocommerce-checkout-review-order-table thead tr td {
  border-top: none !important;
}
.woocommerce table.woocommerce-checkout-review-order-table tr th, .woocommerce table.woocommerce-checkout-review-order-table tr td {
  border-top: 1px solid #C7AB7E !important;
  background-color: #ffffff;
}
@media only screen and ((max-width: 959px)) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th, .woocommerce table.woocommerce-checkout-review-order-table tr td {
    padding: 5px;
  }
}
.woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name {
  display: flex;
  align-items: center;
}
.woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name img.attachment-woocommerce_thumbnail, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name img.attachment-woocommerce_thumbnail {
  width: 60px;
  height: auto;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
@media only screen and (min-width: 960px) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name img.attachment-woocommerce_thumbnail, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name img.attachment-woocommerce_thumbnail {
    margin-right: 30px;
    width: 100px;
  }
}
@media only screen and ((max-width: 959px)) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name_thumbnail, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name_thumbnail {
    padding-right: 10px;
  }
}
.woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name_title, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name_title {
  line-height: 1.4em;
  text-transform: uppercase;
  color: #A61932;
}
@media only screen and ((max-width: 767px)) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name_title, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name_title {
    display: block;
    font-size: 0.875rem;
  }
}
.woocommerce table.woocommerce-checkout-review-order-table tr th .woocommerce_cart_item_name_title .product-quantity, .woocommerce table.woocommerce-checkout-review-order-table tr td .woocommerce_cart_item_name_title .product-quantity {
  color: black;
}
.woocommerce table.woocommerce-checkout-review-order-table tr th bdi, .woocommerce table.woocommerce-checkout-review-order-table tr th label, .woocommerce table.woocommerce-checkout-review-order-table tr td bdi, .woocommerce table.woocommerce-checkout-review-order-table tr td label {
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and ((max-width: 767px)) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th bdi, .woocommerce table.woocommerce-checkout-review-order-table tr th label, .woocommerce table.woocommerce-checkout-review-order-table tr td bdi, .woocommerce table.woocommerce-checkout-review-order-table tr td label {
    font-size: 1rem;
  }
}
.woocommerce table.woocommerce-checkout-review-order-table tr th small, .woocommerce table.woocommerce-checkout-review-order-table tr td small {
  font-size: 1rem;
}
@media only screen and ((max-width: 767px)) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th small, .woocommerce table.woocommerce-checkout-review-order-table tr td small {
    display: block;
    font-size: 0.8125rem;
  }
}
.woocommerce table.woocommerce-checkout-review-order-table tr th {
  width: inherit;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and ((max-width: 767px)) {
  .woocommerce table.woocommerce-checkout-review-order-table tr th {
    font-size: 1rem;
  }
}
.woocommerce table.woocommerce-checkout-review-order-table tr.order-total th, .woocommerce table.woocommerce-checkout-review-order-table tr.order-total td {
  background-color: #EBE6DF;
}
.woocommerce table.shop_table {
  border-radius: 3px;
  border-color: #C7AB7E;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th {
  border-color: #C7AB7E;
}
.woocommerce table.shop_table tfoot td, .woocommerce table.shop_table tfoot th {
  border-color: #C7AB7E;
}
.woocommerce table.shop_table .wc-item-meta {
  display: none;
}
.woocommerce-checkout #payment {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 0;
}
.woocommerce-checkout #payment .payment_box {
  background-color: #EBE6DF !important;
}
.woocommerce-checkout #payment .payment_methods {
  border: none;
}
.woocommerce-checkout #payment .wc_payment_method br {
  display: inline;
}
.woocommerce-checkout #payment .wc_payment_method img {
  margin-right: 5px;
}
.woocommerce-checkout #payment .place-order .woocommerce-info {
  display: none;
}
.woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
  background-color: #ffffff;
  border: 1px solid #C7AB7E;
  border-radius: 3px;
}
.woocommerce-MyAccount-content {
  margin-bottom: 30px;
  padding: 20px;
}
.woocommerce ul.order_details {
  margin-bottom: 20px;
  padding-left: 0;
}
@media only screen and (max-width: 959px) {
  .woocommerce ul.order_details li {
    float: none;
    margin: 0 0 20px 0;
    border: none;
  }
}
@media only screen and (max-width: 413px) {
  .woocommerce ul.products[class*="columns-"] li.product {
    width: 100%;
  }
}
.woocommerce ul.products li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: auto !important;
}
.woocommerce ul.products li.outofstock .price {
  display: none;
}
.woocommerce ul.products li.first {
  clear: inherit;
}
.woocommerce ul.products li.product::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 10px);
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.woocommerce ul.products li.product:hover::after {
  opacity: 1;
}
.woocommerce ul.products li.product:hover .woocommerce-LoopProduct-link {
  border-top: 1px solid #C7AB7E;
  border-left: 1px solid #C7AB7E;
  border-right: 1px solid #C7AB7E;
  border-bottom: 1px solid #C7AB7E;
}
.woocommerce ul.products li.product:hover .cart table.variations th.label {
  border-left: 1px solid #C7AB7E;
}
.woocommerce ul.products li.product:hover .cart table.variations td.value {
  border-right: 1px solid #C7AB7E;
}
.woocommerce ul.products li.product:hover .cart .woocommerce-variation-add-to-cart {
  padding-right: 0;
  border-left: 1px solid #C7AB7E;
  border-right: 1px solid #C7AB7E;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product:hover .cart .woocommerce-variation-add-to-cart {
    border-right: none;
    border-left: 1px solid #C7AB7E;
    border-bottom: 1px solid #C7AB7E;
  }
}
.woocommerce ul.products li.product:hover .cart .woocommerce-variation {
  border-right: 1px solid #C7AB7E;
  border-left: 1px solid #C7AB7E;
  border-bottom: 1px solid #C7AB7E;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product:hover .cart .woocommerce-variation {
    border: none;
    border-right: 1px solid #C7AB7E;
    border-bottom: 1px solid #C7AB7E;
  }
}
.woocommerce ul.products li.product .out-of-stock, .woocommerce ul.products li.product .woocommerce-variation-availability {
  margin-bottom: 0;
}
.woocommerce ul.products li.product .out-of-stock {
  font-size: 1rem;
  color: #A61932;
  white-space: initial;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  position: relative;
  flex-grow: 1;
  display: block;
  padding: 15px;
  background-color: #ffffff;
  border-top: 1px solid #EBE6DF;
  border-left: 1px solid #EBE6DF;
  border-right: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
  transition: 0.4s all ease;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 {
  margin-bottom: 0;
  color: #1D1616;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and (min-width: 960px) {
  .woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 {
    font-size: 1rem;
  }
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 a, .woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 a:visited, .woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 a:hover {
  color: inherit;
  text-decoration: none;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 a::after, .woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 a:visited::after, .woocommerce ul.products li.product .woocommerce-LoopProduct-link h2 a:hover::after {
  content: "";
  position: absolute;
  inset: 0;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link img {
  margin-bottom: 20px;
}
.woocommerce ul.products li.product .cart {
  margin-top: -2px;
  margin-bottom: 5px;
  width: 100%;
}
.woocommerce ul.products li.product .cart a.added_to_cart {
  display: none;
}
.woocommerce ul.products li.product table.variations {
  margin-bottom: 0;
  padding-bottom: 10px;
  background-color: #ffffff;
  border: none;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product table.variations {
    padding-bottom: 0;
  }
}
.woocommerce ul.products li.product table.variations th.label {
  padding-top: 8px;
  padding-left: 15px;
  padding-bottom: 5px;
  border-left: 1px solid #EBE6DF;
  font-weight: 400;
  font-size: 0.9375rem;
  transition: 0.4s all ease;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product table.variations th.label {
    padding-top: 0;
  }
}
.woocommerce ul.products li.product table.variations td.value {
  padding-bottom: 5px;
  padding-right: 15px;
  border-right: 1px solid #EBE6DF;
  transition: 0.4s all ease;
}
.woocommerce ul.products li.product table.variations td.value .reset_variations {
  display: none;
}
.woocommerce ul.products li.product .quantity {
  white-space: nowrap;
}
.woocommerce ul.products li.product .quantity label {
  font-weight: 400;
  font-size: 0.9375rem;
}
.woocommerce ul.products li.product .quantity .qty {
  padding: 0;
  max-width: 80px !important;
}
.woocommerce ul.products li.product .price {
  margin-bottom: 0;
  padding: 5px 5px 5px 15px;
  color: #1D1616;
  font-weight: 500;
  font-size: 1.0625rem;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product .price {
    float: right;
    padding: 5px 0;
  }
}
.woocommerce ul.products li.product .woocommerce-variation-price {
  padding: 0;
}
.woocommerce ul.products li.product .woocommerce-variation {
  padding-right: 15px;
  white-space: nowrap;
  text-align: left;
  transition: 0.4s all ease;
  border-left: 1px solid #EBE6DF;
  border-right: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product .woocommerce-variation {
    text-align: right;
    border-top: none;
    border-left: none;
    border-right: 1px solid #EBE6DF;
    border-bottom: 1px solid #EBE6DF;
  }
}
.woocommerce ul.products li.product .woocommerce-variation-add-to-cart {
  border-left: 1px solid #EBE6DF;
  border-right: 1px solid #EBE6DF;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 20px;
  transition: 0.4s all ease;
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product .woocommerce-variation-add-to-cart {
    border-right: none;
    border-top: none;
    border-left: 1px solid #EBE6DF;
    border-bottom: 1px solid #EBE6DF;
  }
}
.woocommerce ul.products li.product .variations_button a.added_to_cart {
  display: none;
}
.woocommerce ul.products li.product button.product_type_simple {
  margin-top: 15px;
  border-top: 1px solid #EBE6DF;
}
.woocommerce ul.products li.product .single_variation_wrap {
  display: grid;
  gap: 0;
  grid-template-areas: "wcaddtocart" "wcprice" "wcbutton";
}
@media only screen and (min-width: 768px) {
  .woocommerce ul.products li.product .single_variation_wrap {
    grid-template-areas: "wcaddtocart wcprice" "wcbutton wcbutton";
  }
}
.woocommerce ul.products li.product .woocommerce-variation-price {
  grid-area: wcprice;
}
.woocommerce ul.products li.product .woocommerce-variation-add-to-cart {
  grid-area: wcaddtocart;
}
.woocommerce ul.products li.product .variations_button {
  grid-area: wcbutton;
}
.woocommerce ul.products li.product select, .woocommerce ul.products li.product input {
  background-color: transparent !important;
}
.woocommerce ul.products li.product tbody, .woocommerce ul.products li.product tr, .woocommerce ul.products li.product th, .woocommerce ul.products li.product td {
  padding: 0;
  border: none;
  line-height: 1;
}
.woocommerce ul.products li.product input, .woocommerce ul.products li.product textarea {
  width: inherit !important;
  padding: 0;
}
@media only screen and (min-width: 960px) {
  .woocommerce ul.products li.product input, .woocommerce ul.products li.product textarea {
    border: none;
  }
}
.woocommerce ul.products li.product select {
  padding: 0;
}
@media only screen and (min-width: 960px) {
  .woocommerce ul.products li.product select {
    border: none;
    max-width: 100px;
  }
}
.woocommerce ul.products li.product .bs-shipping-notice {
  margin: 0;
  font-size: 0.875rem;
  color: #5A5252;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
}
.woocommerce ul.products li.product .product-inner-last-element {
  display: none;
}
.woocommerce ul.products li .button, .woocommerce ul.products li .button.alt {
  width: 100% !important;
  display: inline-block;
  padding: 15px;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1616;
  background-color: #D5A70F;
}
.woocommerce ul.products li .button:hover, .woocommerce ul.products li .button.alt:hover {
  background-color: #EFBA0C;
  color: #1D1616 !important;
}
.woocommerce ul.products li.product-type-variable a > .price {
  display: none;
}
.woocommerce ul.products li.product-type-simple .cart {
  margin-top: -2px;
}
.woocommerce ul.products li.product-type-simple .cart .quantity {
  padding: 33px 15px 20px 15px;
  border-right: 1px solid #EBE6DF;
  border-left: 1px solid #EBE6DF;
  border-bottom: 1px solid #EBE6DF;
  background: #FFFEFC;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.woocommerce ul.products li.product-type-simple .cart .quantity label {
  margin-right: 3px;
}
.woocommerce ul.products li.product-type-simple .cart .quantity .price {
  margin-left: auto;
}
.woocommerce ul.products li.product-type-simple:hover .cart .quantity {
  border-color: #C7AB7E;
}
.woocommerce .page-title {
  font-size: 2.5rem;
}
.woocommerce .sidebar, .woocommerce .content {
  margin-top: 30px;
}
@media only screen and (min-width: 960px) {
  .woocommerce .sidebar {
    width: 23%;
  }
}
.woocommerce .sidebar a {
  text-decoration: none;
}
.woocommerce .sidebar .widget-title {
  text-transform: uppercase;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 0.9375rem;
}
.woocommerce .sidebar .menu-shop-categories .menu > .menu-item {
  margin-bottom: 30px;
}
.woocommerce .sidebar .menu-shop-categories .menu > .menu-item a {
  display: flex;
  align-items: center;
  color: #1D1616;
  background-color: #EBE6DF;
  font-weight: 500;
  font-size: 0.9375rem;
}
.woocommerce .sidebar .menu-shop-categories .menu > .menu-item a .menu-image {
  height: 48px;
  width: auto;
}
.woocommerce .sidebar .menu-shop-categories .menu > .menu-item a span {
  text-transform: uppercase;
}
.woocommerce .sidebar .menu-shop-categories .menu > .menu-item:hover > a, .woocommerce .sidebar .menu-shop-categories .menu > .menu-item.current-menu-item > a, .woocommerce .sidebar .menu-shop-categories .menu > .menu-item.current-menu-parent > a {
  background-color: #C7AB7E;
  color: #1D1616;
}
.woocommerce .sidebar .menu-shop-categories .menu .sub-menu {
  margin-top: 20px;
  padding-left: 12px;
}
.woocommerce .sidebar .menu-shop-categories .menu .sub-menu .menu-item {
  list-style-type: disc !important;
  margin-left: 15px;
  margin-bottom: 5px;
}
.woocommerce .sidebar .menu-shop-categories .menu .sub-menu .menu-item::marker {
  color: #1D1616;
  font-size: 1.25rem;
}
.woocommerce .sidebar .menu-shop-categories .menu .sub-menu .menu-item > a {
  color: #1D1616;
  background-color: transparent;
}
.woocommerce .sidebar .menu-shop-categories .menu .sub-menu .menu-item > a:hover {
  color: #C4000B;
  text-decoration: underline;
}
.woocommerce .sidebar .menu-shop-categories .menu .sub-menu .menu-item.current-menu-item > a {
  color: #C4000B;
}
@media only screen and (min-width: 960px) {
  .woocommerce .content {
    width: 75%;
  }
}
.woocommerce div.product {
  overflow: visible;
}
.woocommerce div.product.product-type-simple p.price {
  display: none;
}
.woocommerce div.product .summary {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 30px;
  border: 1px solid #EBE6DF;
}
.woocommerce div.product .summary p a.btn {
  padding: 10px 15px;
}
.woocommerce div.product .summary .bs-shipping-notice {
  clear: left;
  padding-top: 10px;
  font-weight: 500;
}
.woocommerce div.product .summary p.price {
  color: #A61932;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
}
.woocommerce div.product .summary .item-description-title {
  margin-bottom: 10px;
  color: #A61932;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
}
.woocommerce div.product .summary form.cart input, .woocommerce div.product .summary form.cart select, .woocommerce div.product .summary form.cart textarea, .woocommerce div.product .summary form.cart .select2-selection__rendered {
  padding: 5px 15px;
}
.woocommerce div.product .summary form.cart .variations {
  table-layout: inherit;
}
.woocommerce div.product .summary form.cart .variations tbody, .woocommerce div.product .summary form.cart .variations tr {
  border: none;
}
.woocommerce div.product .summary form.cart .variations th, .woocommerce div.product .summary form.cart .variations td {
  padding: 0;
}
.woocommerce div.product .summary form.cart .variations label {
  font-weight: 400;
}
.woocommerce div.product .summary form.cart .woocommerce-variation-price {
  margin-top: 5px;
  display: none;
}
.woocommerce div.product .summary form.cart .single_variation_wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.woocommerce div.product .summary form.cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.woocommerce div.product .summary form.cart span.price {
  color: #1D1616;
  font-weight: 500;
  font-size: 1.25rem;
}
.woocommerce div.product .summary form.cart .bs-price-per-qty {
  margin-left: 0;
}
.woocommerce div.product .summary form.cart .single_add_to_cart_button {
  order: 5;
  margin-top: 0;
  padding: 10px 15px;
  width: fit-content;
}
.woocommerce div.product .summary form.cart .added_to_cart {
  clear: both;
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 960px) {
  .woocommerce div.product .summary form.cart .added_to_cart {
    margin: 45px 0 0 5px;
  }
}
@media only screen and (min-width: 1156px) {
  .woocommerce div.product .summary form.cart .added_to_cart {
    clear: none;
    margin: 45px 0 0 40px;
  }
}
.woocommerce div.product .summary form.cart .product-inner-last-element {
  display: none;
}
.woocommerce div.product .summary .download-pdf {
  color: #1D1616;
  text-transform: uppercase;
}
.woocommerce div.product .summary .download-pdf:hover {
  color: #C4000B;
}
.woocommerce div.product div.images {
  overflow: visible;
}
.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 30px;
  overflow: visible;
}
.woocommerce div.product div.images .flex-control-thumbs li {
  margin-left: 2%;
  width: 49% !important;
}
.woocommerce div.product div.images .flex-control-thumbs li:first-child {
  margin-left: 0;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
  opacity: 1 !important;
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35) !important;
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35) !important;
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35) !important;
}
.woocommerce div.product div.images .wp-post-image {
  border-radius: 3px;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35) !important;
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35) !important;
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35) !important;
}
@media only screen and (max-width: 767px) {
  .woocommerce .input-picker .ws-po-box {
    min-width: 80vw !important;
    transform: translate(-50%);
  }
}
.woocommerce button.button:focus {
  color: #1D1616 !important;
}
.woocommerce a.button, .woocommerce a.button.alt, .woocommerce button.button, .woocommerce button.button.alt, .woocommerce input.button, .woocommerce input.button.alt, .woocommerce input.button[type="submit"], .woocommerce #respond input#submit, .woocommerce #respond input#submit.alt, .woocommerce button.button:focus {
  display: inline-block;
  margin-top: 10px;
  padding: 15px 10px;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1616;
  background-color: #D5A70F !important;
}
@media only screen and (min-width: 960px) {
  .woocommerce a.button, .woocommerce a.button.alt, .woocommerce button.button, .woocommerce button.button.alt, .woocommerce input.button, .woocommerce input.button.alt, .woocommerce input.button[type="submit"], .woocommerce #respond input#submit, .woocommerce #respond input#submit.alt, .woocommerce button.button:focus {
    margin-top: 0;
    padding: 15px 30px;
  }
}
.woocommerce a.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button:hover, .woocommerce button.button.alt:hover, .woocommerce input.button:hover, .woocommerce input.button.alt:hover, .woocommerce input.button[type="submit"]:hover, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce button.button:focus:hover {
  background-color: #EFBA0C !important;
  color: #1D1616;
}
.wpmc-nav-wrapper {
  width: 100%;
}
.wpmc-nav-wrapper button#wpmc-prev {
  background-color: #EBE6DF !important;
}
.wpmc-nav-wrapper button#wpmc-prev:hover {
  background-color: #EFBA0C !important;
  color: #1D1616;
}
.wooac-text a, .wooac-text a:visited {
  color: #1D1616 !important;
  font-size: 1.0625rem !important;
}
.wooac-cart-content-total {
  font-weight: 400 !important;
}
.wooac-cart-content-count {
  color: #1D1616 !important;
  opacity: 1 !important;
}
.wooac-popup {
  padding: 20px;
}
.wooac-popup .wooac-action > a {
  display: inline-block;
  padding: 15px 30px;
  text-transform: uppercase;
  border-radius: 3px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1D1616;
  text-decoration: none;
  background-color: #D5A70F;
  line-height: inherit;
  height: inherit;
}
.wooac-popup .wooac-action > a:visited {
  color: #1D1616;
}
.wooac-popup .wooac-action > a:hover {
  background-color: #EFBA0C;
  color: #1D1616;
}
.wooac-popup .wooac-action > a:not(:first-child) {
  margin-top: 20px;
}
.wooac-popup .wooac-action > a:focus-visible {
  outline: 3px solid #A61932;
  outline-offset: 4px;
  border-radius: 2px;
}
.wooac-popup .mfp-close {
  opacity: 1;
  width: 20px;
  height: 20px;
}
.wooac-popup .mfp-close:before {
  color: #1D1616;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
}
.wooac-popup .mfp-close:focus-visible {
  outline: 3px solid #A61932;
  outline-offset: 4px;
  border-radius: 2px;
}
.wpmc-tabs-wrapper {
  padding-top: 20px;
  overflow: auto;
}
.wpmc-steps-wrapper {
  margin-top: 20px;
}
.wpmc-tab-item {
  color: #1D1616 !important;
}
.wpmc-tab-item .wpmc-tab-number {
  font-weight: 500 !important;
  font-size: 1.25rem !important;
}
.wpmc-tab-item.current::before, .wpmc-tab-item.visited::before {
  border-color: #C7AB7E !important;
}
.wpmc-tab-item.current .wpmc-tab-number, .wpmc-tab-item.visited .wpmc-tab-number {
  color: #1D1616 !important;
  background-color: #C7AB7E !important;
  border-color: #C7AB7E !important;
}
.wpmc-nav-wrapper {
  margin-bottom: 30px;
  display: block;
}
@media only screen and (min-width: 960px) {
  .wpmc-nav-wrapper {
    display: flex;
  }
}
@media only screen and ((max-width: 767px)) {
  .wpmc-nav-wrapper button#wpmc-back-to-cart, .wpmc-nav-wrapper button#wpmc-prev, .wpmc-nav-wrapper button#wpmc-next, .wpmc-nav-wrapper button#wpmc-skip-login {
    display: block !important;
    width: 100%;
  }
}
.woocommerce-billing-fields__field-wrapper, .woocommerce-shipping-fields__field-wrapper, .woocommerce-additional-fields__field-wrapper {
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #C7AB7E !important;
  border-radius: 3px;
  /*input, select, textarea,
		.select2-selection__rendered {
			padding: ($spacing--xxs+$spacing--xs) $spacing--m;
			background-color: $color__grey--light;
			border-radius: $spacing--xxs;
			&::placeholder { // Chrome, Firefox, Opera, Safari 10.1+
				color: $color__grey;
				opacity: 1; // Firefox
			}
			&:-ms-input-placeholder { // Internet Explorer 10-11
				color: $color__grey;
			}
			&::-ms-input-placeholder { // Microsoft Edge
				color: $color__grey;
			}
		}
		.select2-container--default .select2-selection--single {
			border-radius: 0;
			border: none;
			padding-bottom: ($spacing--xs+$spacing--xl);
			.select2-selection__arrow {
				top: $spacing--sm;
			}
		}
		input[type="date"] {
			content: '';
			display: block;
			background-image: url("bs-images/icon-calendar.svg");
			background-repeat: no-repeat;
			background-position: 98% 50%;
			height: 80%;
			width: auto;
		}*/
}
.woocommerce-billing-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper, .woocommerce-billing-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper, .woocommerce-shipping-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper, .woocommerce-shipping-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper, .woocommerce-additional-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper, .woocommerce-additional-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}
.woocommerce-billing-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper input, .woocommerce-billing-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper input, .woocommerce-shipping-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper input, .woocommerce-shipping-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper input, .woocommerce-additional-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper input, .woocommerce-additional-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper input {
  margin-right: 5px;
}
.woocommerce-billing-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper label, .woocommerce-billing-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper label, .woocommerce-shipping-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper label, .woocommerce-shipping-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper label, .woocommerce-additional-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper label, .woocommerce-additional-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper label {
  margin-right: 20px;
}
@media screen and (max-width: 414px) {
  .woocommerce-billing-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper label, .woocommerce-billing-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper label, .woocommerce-shipping-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper label, .woocommerce-shipping-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper label, .woocommerce-additional-fields__field-wrapper #billing_business_type_field .woocommerce-input-wrapper label, .woocommerce-additional-fields__field-wrapper #billing_gender_field .woocommerce-input-wrapper label {
    margin-right: 40%;
  }
}
@media only screen and (min-width: 1156px) {
  .woocommerce-billing-fields__field-wrapper p, .woocommerce-shipping-fields__field-wrapper p, .woocommerce-additional-fields__field-wrapper p {
    min-height: 82px;
  }
  .woocommerce-billing-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce-shipping-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow, .woocommerce-additional-fields__field-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
  }
  .woocommerce-billing-fields__field-wrapper #billing_postcode_field, .woocommerce-billing-fields__field-wrapper #billing_city_field, .woocommerce-billing-fields__field-wrapper #billing_state_field, .woocommerce-billing-fields__field-wrapper #billing_birthday_field, .woocommerce-billing-fields__field-wrapper #billing_birthplace_code_field, .woocommerce-billing-fields__field-wrapper #shipping_postcode_field, .woocommerce-billing-fields__field-wrapper #shipping_city_field, .woocommerce-billing-fields__field-wrapper #shipping_state_field, .woocommerce-shipping-fields__field-wrapper #billing_postcode_field, .woocommerce-shipping-fields__field-wrapper #billing_city_field, .woocommerce-shipping-fields__field-wrapper #billing_state_field, .woocommerce-shipping-fields__field-wrapper #billing_birthday_field, .woocommerce-shipping-fields__field-wrapper #billing_birthplace_code_field, .woocommerce-shipping-fields__field-wrapper #shipping_postcode_field, .woocommerce-shipping-fields__field-wrapper #shipping_city_field, .woocommerce-shipping-fields__field-wrapper #shipping_state_field, .woocommerce-additional-fields__field-wrapper #billing_postcode_field, .woocommerce-additional-fields__field-wrapper #billing_city_field, .woocommerce-additional-fields__field-wrapper #billing_state_field, .woocommerce-additional-fields__field-wrapper #billing_birthday_field, .woocommerce-additional-fields__field-wrapper #billing_birthplace_code_field, .woocommerce-additional-fields__field-wrapper #shipping_postcode_field, .woocommerce-additional-fields__field-wrapper #shipping_city_field, .woocommerce-additional-fields__field-wrapper #shipping_state_field {
    display: inline-block;
    min-height: 82px;
    vertical-align: top;
  }
  .woocommerce-billing-fields__field-wrapper #billing_postcode_field, .woocommerce-billing-fields__field-wrapper #shipping_postcode_field, .woocommerce-shipping-fields__field-wrapper #billing_postcode_field, .woocommerce-shipping-fields__field-wrapper #shipping_postcode_field, .woocommerce-additional-fields__field-wrapper #billing_postcode_field, .woocommerce-additional-fields__field-wrapper #shipping_postcode_field {
    padding-right: 20px;
    width: 20%;
  }
  .woocommerce-billing-fields__field-wrapper #billing_city_field, .woocommerce-billing-fields__field-wrapper #shipping_city_field, .woocommerce-shipping-fields__field-wrapper #billing_city_field, .woocommerce-shipping-fields__field-wrapper #shipping_city_field, .woocommerce-additional-fields__field-wrapper #billing_city_field, .woocommerce-additional-fields__field-wrapper #shipping_city_field {
    padding-right: 20px;
    width: 50%;
  }
  .woocommerce-billing-fields__field-wrapper #billing_state_field, .woocommerce-billing-fields__field-wrapper #shipping_state_field, .woocommerce-shipping-fields__field-wrapper #billing_state_field, .woocommerce-shipping-fields__field-wrapper #shipping_state_field, .woocommerce-additional-fields__field-wrapper #billing_state_field, .woocommerce-additional-fields__field-wrapper #shipping_state_field {
    width: 30%;
  }
  .woocommerce-billing-fields__field-wrapper #billing_birthday_field, .woocommerce-shipping-fields__field-wrapper #billing_birthday_field, .woocommerce-additional-fields__field-wrapper #billing_birthday_field {
    padding-right: 20px;
    width: 50%;
  }
  .woocommerce-billing-fields__field-wrapper #billing_birthplace_code_field, .woocommerce-shipping-fields__field-wrapper #billing_birthplace_code_field, .woocommerce-additional-fields__field-wrapper #billing_birthplace_code_field {
    width: 50%;
  }
  .woocommerce-billing-fields__field-wrapper #order_comments, .woocommerce-shipping-fields__field-wrapper #order_comments, .woocommerce-additional-fields__field-wrapper #order_comments {
    height: 100px;
  }
}
.woocommerce-form__label-for-checkbox, .woosendy {
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: inherit !important;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.woocommerce-form__label-for-checkbox > input, .woosendy > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.woocommerce-form__label-for-checkbox span:before, .woosendy span:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EBE6DF;
  border-radius: 3px;
  border: 1px solid #C7AB7E;
  margin-right: 0;
  height: 20px;
  width: 20px;
}
#ship-to-different-address .woocommerce-form__label-for-checkbox span:before, #ship-to-different-address .woosendy span:before {
  margin-right: 20px;
  height: 30px;
  width: 30px;
}
.woocommerce-form__label-for-checkbox input:checked ~ span:before, .woosendy input:checked ~ span:before {
  background-color: #EBE6DF;
}
.woocommerce-form__label-for-checkbox span:after, .woosendy span:after {
  content: "";
  position: absolute;
  display: none;
}
.woocommerce-form__label-for-checkbox input:checked ~ span:after, .woosendy input:checked ~ span:after {
  display: block;
}
.woocommerce-form__label-for-checkbox span:after, .woosendy span:after {
  left: 6px;
  top: 3px;
  width: 8px;
  height: 13px;
  border: solid #C7AB7E;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#ship-to-different-address .woocommerce-form__label-for-checkbox span:after, #ship-to-different-address .woosendy span:after {
  left: 10px;
  top: 5px;
  width: 10px;
  height: 18px;
}
.woosendy {
  padding: 3px;
  cursor: inherit;
  /* Hide the browser's default checkbox */
}
.woosendy > input {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  z-index: 1;
}
.woocommerce-shipping-fields__field-wrapper {
  margin-bottom: 30px;
}
.woosendy {
  position: relative;
  padding: 0 0 0 40px !important;
}
.bs-price-per-qty {
  display: none;
  padding-top: 5px;
}
.woocommerce table.shop_table_responsive tbody tr.cart_item:first-child td {
  border-top: none !important;
}
@media only screen and (max-width: 859px) {
  .woocommerce table.shop_table_responsive {
    border: none;
    border-top: 1px solid #C7AB7E !important;
  }
}
.woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
  border: none;
}
.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background-color: transparent;
}
.woocommerce table.shop_table_responsive tr td .quantity label, .woocommerce-page table.shop_table_responsive tr td .quantity label {
  display: none;
}
@media only screen and (max-width: 859px) {
  .woocommerce table.shop_table_responsive tr[class="shipping"] td::before, .woocommerce-page table.shop_table_responsive tr[class="shipping"] td::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }
}
@media only screen and ((max-width: 959px)) {
  .woocommerce .woocommerce-customer-details :last-child, .woocommerce .woocommerce-order-details :last-child, .woocommerce .woocommerce-order-downloads :last-child {
    margin-bottom: 40px;
  }
}
@media only screen and ((max-width: 959px)) {
  .shop_table.woocommerce-checkout-review-order-table .woocommerce-shipping-totals.shipping td {
    word-break: break-word;
  }
}
@media only screen and (min-width: 960px) {
  .single-product .product-type-variable form.cart {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .single-product .product-type-variable form.cart table.variations th.label {
    line-height: 1.4em;
    display: table-row;
  }
  .single-product .product-type-variable form.cart table.variations td.value {
    display: table-row;
  }
  .single-product .product-type-variable form.cart .quantity label {
    display: block;
  }
  .single-product .product-type-simple form.cart {
    display: flex;
    flex-direction: column;
  }
  .single-product .product-type-simple form.cart button[type="submit"] {
    order: 1;
  }
  .single-product .product-type-simple form.cart .bs-price-per-qty {
    margin-top: 1rem;
    margin-left: 0 !important;
  }
}
@media only screen and ((max-width: 959px)) {
  .single-product .product-type-variable form.cart table.variations th.label, .single-product .product-type-variable form.cart table.variations td.value {
    display: table-row;
  }
  .single-product .product-type-variable form.cart .quantity label {
    display: block;
    margin-bottom: 0.5em;
  }
  .single-product .product-type-simple form.cart {
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
  .single-product .product-type-simple form.cart .quantity label {
    display: block;
    margin-bottom: 0.5em;
  }
  .single-product .product-type-simple form.cart .bs-price-per-qty {
    margin-left: 0 !important;
  }
  .single-product .product-type-simple form.cart button.single_add_to_cart_button {
    margin-top: 0 !important;
    order: 5;
  }
}
.single-product a.reset_variations {
  display: none !important;
}
.single-product p.shipping-warning span {
  color: #a61932;
  font-weight: 500;
}
.woocommerce.archive .woocommerce-notices-wrapper.bs-shipping-notice-italy-only .bs-shipping-notice-italy-only {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #c7ab7e;
}
.woocommerce.archive .products li.product a.button, .woocommerce.archive .products li.product button.button {
  margin-top: 0;
  border: none;
}
.home .bs-block-featured-products-swiper li.product a.button, .home .bs-block-featured-products-swiper li.product button.button {
  margin-top: 0;
  border: none;
}
.home .bs-block-featured-products-swiper li.product .single_variation_wrap .variations_button {
  padding-top: 0;
}
.woocommerce-cart input[name="update_cart"], .woocommerce-cart button[name="update_cart"] {
  display: none !important;
}
.woocommerce-checkout h1.entry-title {
  margin-bottom: 0;
  visibility: hidden;
}
.woocommerce-checkout .wpmc-step-payment {
  border: 1px solid #C7AB7E;
  border-radius: 3px;
  padding: 30px;
  margin-bottom: 60px;
}
@media (max-width: 960px) {
  .woocommerce-checkout .wpmc-step-payment #place_order {
    margin-bottom: 1.5rem !important;
  }
}
.woocommerce-checkout .wpmc-step-payment .ppc-button-wrapper {
  margin-top: -1rem;
}
.woocommerce-checkout.checkout-last-step .wpmc-nav-wrapper {
  display: none;
}
.woocommerce-checkout .wpmc-step-shipping textarea[name="order_comments"] {
  height: 100%;
}
.woocommerce-checkout #checkout_coupon, .woocommerce-checkout #woocommerce_before_checkout_form {
  display: none !important;
}
.woocommerce-checkout.woocommerce-order-received table.order_details thead th.product-total {
  color: transparent;
  font-size: 0;
  line-height: 0;
}
.woocommerce-checkout.woocommerce-order-received table.order_details thead th.product-total:before {
  color: black;
  text-indent: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
html[lang="it-IT"] .woocommerce-checkout.woocommerce-order-received table.order_details thead th.product-total:before {
  content: "Prezzo";
}
html[lang="en-US"] .woocommerce-checkout.woocommerce-order-received table.order_details thead th.product-total:before {
  content: "Price";
}
html[lang="fr-FR"] .woocommerce-checkout.woocommerce-order-received table.order_details thead th.product-total:before {
  content: "Prix";
}
html[lang="de-DE"] .woocommerce-checkout.woocommerce-order-received table.order_details thead th.product-total:before {
  content: "Preis";
}
.woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr.free-shipping td {
  font-size: 0;
  line-height: 0;
  color: transparent;
}
.woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr.free-shipping td::before {
  font-size: 1rem;
  line-height: 1.5rem;
  color: black;
}
html[lang="it-IT"] .woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr.free-shipping td::before {
  content: "Gratuita";
}
html[lang="en-US"] .woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr.free-shipping td::before {
  content: "Free";
}
html[lang="fr-FR"] .woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr.free-shipping td::before {
  content: "Gratuite";
}
html[lang="de-DE"] .woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr.free-shipping td::before {
  content: "Kostenlos";
}
.woocommerce-checkout.woocommerce-order-received table.order_details tfoot tr:nth-child(3) {
  display: none;
}
.woocommerce-checkout.woocommerce-order-received h1.entry-title {
  visibility: hidden;
}
.woocommerce-checkout.woocommerce-order-received h1.entry-title::before {
  visibility: visible;
}
html[lang="it-IT"] .woocommerce-checkout.woocommerce-order-received h1.entry-title::before {
  content: "Ordine Confermato";
}
html[lang="en-US"] .woocommerce-checkout.woocommerce-order-received h1.entry-title::before {
  content: "Order Confirmed";
}
html[lang="fr-FR"] .woocommerce-checkout.woocommerce-order-received h1.entry-title::before {
  content: "Confirmation de la commande";
}
html[lang="de-DE"] .woocommerce-checkout.woocommerce-order-received h1.entry-title::before {
  content: "Bestätigte Bestellung";
}
@media (max-width: 960px) {
  .woocommerce-account nav.woocommerce-MyAccount-navigation ul {
    padding-left: 0;
  }
  .woocommerce-account nav.woocommerce-MyAccount-navigation ul li {
    margin: 5px 10px;
    padding: 0 5px;
  }
  .woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active {
    background: #D9D0BB44;
  }
  .woocommerce-account nav.woocommerce-MyAccount-navigation ul li > * {
    line-height: 1.75;
  }
}
.woocommerce-account.woocommerce-edit-address .col-1 span.no-addresses {
  visibility: hidden;
}
.woocommerce-account.woocommerce-edit-address .col-1 span.no-addresses::before {
  visibility: visible;
}
html[lang="it-IT"] .woocommerce-account.woocommerce-edit-address .col-1 span.no-addresses::before {
  content: "Non hai ancora inserito i tuoi dati di fatturazione";
}
html[lang="en-US"] .woocommerce-account.woocommerce-edit-address .col-1 span.no-addresses::before {
  content: "You have not yet entered your billing data";
}
html[lang="fr-FR"] .woocommerce-account.woocommerce-edit-address .col-1 span.no-addresses::before {
  content: "Vous n'avez pas encore introduit vos données de facturation";
}
html[lang="de-DE"] .woocommerce-account.woocommerce-edit-address .col-1 span.no-addresses::before {
  content: "Sie haben Ihre Rechnungsdaten noch nicht eingegeben";
}
.woocommerce-page form .form-row .woocommerce-input-wrapper label.radio {
  display: inline-block;
  margin-inline: 10px 30px;
}
.bsmca-modal {
  z-index: 100000000;
  width: 100vw;
}
.bsmca-modal .bsmca-modal__content {
  width: 100vw;
}
/*
	@CVR-CHECKOUT    BS Accessible Multistep Checkout — CVR theme overrides
*/
.bs-checkout {
  --bs-amsc-primary:             #C7AB7E;
  --bs-amsc-primary-hover:       #D5A70F;
  --bs-amsc-step-active-bg:      #C7AB7E;
  --bs-amsc-step-active-color:   #FFFEFC;
  --bs-amsc-step-complete-bg:    #6F6A69;
  --bs-amsc-step-complete-color: #FFFEFC;
  --bs-amsc-step-inactive-bg:    #EBE6DF;
  --bs-amsc-step-inactive-color: #1D1616;
  --bs-amsc-spacing:             30px;
  --bs-amsc-nav-gap:             20px;
  --bs-amsc-border-radius:       3px;
  --bs-amsc-focus-ring:          #A61932;
}
.bs-checkout .bs-checkout__step-heading {
  font-family: "Kanit", sans-serif;
  font-size: 1.875rem;
  margin-bottom: 20px;
}
.bs-checkout .bs-checkout__steps-list {
  margin-left: 0;
  padding-inline: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(#1D1616, #1D1616);
  background-size: 100% 1px;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .bs-checkout .bs-checkout__steps-list {
    flex-direction: column;
    align-items: stretch;
    background-image: none;
    gap: 20px;
  }
}
.bs-checkout .bs-checkout__step-tab-btn {
  color: #1D1616;
}
.bs-checkout .bs-checkout__step-tab {
  font-family: "Kanit", sans-serif;
}
.bs-checkout .bs-checkout__step-tab.is-active {
  background-color: #EFBA0C;
}
.bs-checkout .bs-checkout__step-tab.is-active .bs-checkout__step-num {
  background-color: rgba(29, 22, 22, 0.2);
}
.bs-checkout .bs-checkout__step-tab.is-complete {
  background-color: #D5A70F;
}
.bs-checkout .bs-checkout__step-tab:focus-visible {
  outline: 3px solid #A61932;
  outline-offset: 4px;
}
.bs-checkout .bs-checkout__btn-prev {
  background-color: #EBE6DF;
  color: #1D1616;
}
.bs-checkout .bs-checkout__btn-prev:hover {
  background-color: #EFBA0C;
  color: #1D1616;
}
.bs-checkout .bs-checkout__btn-prev:focus-visible {
  outline: 3px solid #A61932;
  outline-offset: 4px;
}
/*
	@GUTENBERG       Gutenberg blocks
	@COLORS       Gutenberg colors
*/
/* @GUTENBERG */
/* @COLORS */
/* White color */
.has-white-color {
  color: #FFFEFC !important;
}
.has-white-background-color {
  background-color: #FFFEFC !important;
}
.has-white-background-color-fullwidth {
  background-color: #FFFEFC !important;
  box-shadow: -1200px 0 0 0 #FFFEFC, -40vw 0 0 0 #FFFEFC, 40vw 0 0 0 #FFFEFC, 1200px 0 0 0 #FFFEFC;
}
/* Black color */
.has-black-color {
  color: #1D1616 !important;
}
.has-black-background-color {
  background-color: #1D1616 !important;
}
.has-black-background-color-fullwidth {
  background-color: #1D1616 !important;
  box-shadow: -1200px 0 0 0 #1D1616, -40vw 0 0 0 #1D1616, 40vw 0 0 0 #1D1616, 1200px 0 0 0 #1D1616;
}
/* Yellow color */
.has-yellow-color {
  color: #EFBA0C !important;
}
.has-yellow-dark-color {
  color: #D5A70F !important;
}
.has-yellow-background-color {
  background-color: #EFBA0C !important;
}
.has-yellow-background-color-fullwidth {
  background-color: #EFBA0C !important;
  box-shadow: -1200px 0 0 0 #EFBA0C, -40vw 0 0 0 #EFBA0C, 40vw 0 0 0 #EFBA0C, 1200px 0 0 0 #EFBA0C;
}
.has-yellow-dark-background-color {
  background-color: #D5A70F !important;
}
.has-yellow-dark-background-color-fullwidth {
  background-color: #D5A70F !important;
  box-shadow: -1200px 0 0 0 #D5A70F, -40vw 0 0 0 #D5A70F, 40vw 0 0 0 #D5A70F, 1200px 0 0 0 #D5A70F;
}
/* Brown color */
.has-brown-color {
  color: #C7AB7E !important;
}
.has-brown-light-color {
  color: #D9D0BB !important;
}
.has-brown-background-color {
  background-color: #C7AB7E !important;
}
.has-brown-background-color-fullwidth {
  background-color: #C7AB7E !important;
  box-shadow: -1200px 0 0 0 #C7AB7E, -40vw 0 0 0 #C7AB7E, 40vw 0 0 0 #C7AB7E, 1200px 0 0 0 #C7AB7E;
}
.has-brown-light-background-color {
  background-color: #D9D0BB !important;
}
.has-brown-light-background-color-fullwidth {
  background-color: #D9D0BB !important;
  box-shadow: -1200px 0 0 0 #D9D0BB, -40vw 0 0 0 #D9D0BB, 40vw 0 0 0 #D9D0BB, 1200px 0 0 0 #D9D0BB;
}
/* Grey color */
.has-grey-color {
  color: #707070 !important;
}
.has-grey-light-color {
  color: #EBE6DF !important;
}
.has-grey-dark-color {
  color: #6F6A69 !important;
}
.has-grey-darker-color {
  color: #5A5252 !important;
}
.has-grey-background-color {
  background-color: #707070 !important;
}
.has-grey-background-color-fullwidth {
  background-color: #707070 !important;
  box-shadow: -1200px 0 0 0 #707070, -40vw 0 0 0 #707070, 40vw 0 0 0 #707070, 1200px 0 0 0 #707070;
}
.has-grey-light-background-color {
  background-color: #EBE6DF !important;
}
.has-grey-light-background-color-fullwidth {
  background-color: #EBE6DF !important;
  box-shadow: -1200px 0 0 0 #EBE6DF, -40vw 0 0 0 #EBE6DF, 40vw 0 0 0 #EBE6DF, 1200px 0 0 0 #EBE6DF;
}
.has-grey-dark-background-color {
  background-color: #6F6A69 !important;
}
.has-grey-dark-background-color-fullwidth {
  background-color: #6F6A69 !important;
  box-shadow: -1200px 0 0 0 #6F6A69, -40vw 0 0 0 #6F6A69, 40vw 0 0 0 #6F6A69, 1200px 0 0 0 #6F6A69;
}
.has-grey-darker-background-color {
  background-color: #5A5252 !important;
}
.has-grey-darker-background-color-fullwidth {
  background-color: #5A5252 !important;
  box-shadow: -1200px 0 0 0 #5A5252, -40vw 0 0 0 #5A5252, 40vw 0 0 0 #5A5252, 1200px 0 0 0 #5A5252;
}
/* Red color */
.has-red-color {
  color: #C4000B !important;
}
.has-red-dark-color {
  color: #A61932 !important;
}
.has-red-darker-color {
  color: #B3251D !important;
}
.has-red-background-color {
  background-color: #C4000B !important;
}
.has-red-background-color-fullwidth {
  background-color: #C4000B !important;
  box-shadow: -1200px 0 0 0 #C4000B, -40vw 0 0 0 #C4000B, 40vw 0 0 0 #C4000B, 1200px 0 0 0 #C4000B;
}
.has-red-dark-background-color {
  background-color: #A61932 !important;
}
.has-red-dark-background-color-fullwidth {
  background-color: #A61932 !important;
  box-shadow: -1200px 0 0 0 #A61932, -40vw 0 0 0 #A61932, 40vw 0 0 0 #A61932, 1200px 0 0 0 #A61932;
}
.has-red-darker-background-color {
  background-color: #B3251D !important;
}
.has-red-darker-background-color-fullwidth {
  background-color: #B3251D !important;
  box-shadow: -1200px 0 0 0 #B3251D, -40vw 0 0 0 #B3251D, 40vw 0 0 0 #B3251D, 1200px 0 0 0 #B3251D;
}
/* Block Group */
.wp-block-group {
  padding: 40px 30px;
}
.wp-block-group__inner-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
.wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-group.alignwide .wp-block-group__inner-container {
  max-width: 1156px;
}
@media only screen and (min-width: 960px) {
  .wp-block-group.alignfull .wp-block-group__inner-container, .wp-block-group.alignwide .wp-block-group__inner-container {
    padding-left: 0;
    padding-right: 0;
  }
}
/* Block Cover */
.wp-block-cover {
  border-top: 3px solid #C7AB7E;
  border-bottom: 3px solid #C7AB7E;
}
@media only screen and (min-width: 960px) {
  .wp-block-cover {
    border-top: 8px solid #C7AB7E;
    border-bottom: 8px solid #C7AB7E;
  }
}
.wp-block-cover.alignfull .wp-block-cover__inner-container, .wp-block-cover.alignwide .wp-block-cover__inner-container {
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  width: 100% !important;
  max-width: 1156px;
}
@media only screen and (min-width: 960px) {
  .wp-block-cover.alignfull .wp-block-cover__inner-container, .wp-block-cover.alignwide .wp-block-cover__inner-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.wp-block-cover__background {
  opacity: 1 !important;
  background-color: transparent !important;
}
.wp-block-cover__background:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #1d1616 0%, rgba(29, 22, 22, 0) 50%);
  width: 100%;
  height: 100%;
}
/* Block Columns */
.wp-block-columns img {
  border-radius: 3px !important;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
/* BS Accessible Gallery Lightbox plugin */
.bsagl-gallery {
  --bsagl-col-min-width: 100%;
  --bsagl-item-height: 100%;
}
.bsagl-gallery a {
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
/* Block Gallery */
.wp-block-gallery {
  justify-content: center;
  gap: 0 !important;
}
@media only screen and (min-width: 960px) {
  .wp-block-gallery {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
@media only screen and (min-width: 1156px) {
  .wp-block-gallery {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
}
.wp-block-gallery img {
  flex: auto !important;
  border-radius: 3px !important;
  box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -webkit-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
  -moz-box-shadow: 0px 0px 0.8125rem 0px rgba(29, 22, 22, 0.35);
}
.wp-block-gallery .wp-block-image {
  align-items: center;
  margin: 20px 0 !important;
}
.wp-block-gallery.columns-2 .wp-block-image {
  width: 100% !important;
  max-width: 500px !important;
  height: 330px !important;
}
@media only screen and (min-width: 768px) {
  .wp-block-gallery.columns-2 .wp-block-image {
    margin: 1.25% !important;
    width: 45% !important;
    max-width: 210px !important;
    height: 210px !important;
  }
}
@media only screen and (min-width: 960px) {
  .wp-block-gallery.columns-2 .wp-block-image {
    margin: 1.25% !important;
    width: 45% !important;
    max-width: 300px !important;
    height: 300px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .wp-block-gallery.columns-2 .wp-block-image {
    margin: 2.25% !important;
    width: 45% !important;
    max-width: 547px !important;
    height: 547px !important;
  }
}
.wp-block-gallery.columns-3 .wp-block-image {
  width: 100% !important;
  max-width: 500px !important;
  height: 330px !important;
}
@media only screen and (min-width: 768px) {
  .wp-block-gallery.columns-3 .wp-block-image {
    margin: 1.25% !important;
    width: 30% !important;
    max-width: 210px !important;
    height: 210px !important;
  }
}
@media only screen and (min-width: 960px) {
  .wp-block-gallery.columns-3 .wp-block-image {
    margin: 1.25% !important;
    width: 30% !important;
    max-width: 300px !important;
    height: 300px !important;
  }
}
@media only screen and (min-width: 1156px) {
  .wp-block-gallery.columns-3 .wp-block-image {
    margin: 1.25% !important;
    width: 30% !important;
    max-width: 366px !important;
    height: 366px !important;
  }
}
.entry-content > .wp-block-image img {
  max-width: none;
  width: 100%;
}
/*
	@TEMP       Work in progress
*/
/* @TEMP */
