@import url("https://fonts.googleapis.com/css2?family=Caveat&family=Work+Sans:ital,wght@0,300;0,400;1,300;1,400&display=swap");
* {
  box-sizing: border-box; }

html,
html body {
  margin: 0;
  padding: 0; }

html body {
  color: #6A6A6A;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.5;
  /* font-family:'Open Sans', sans-serif; */
  font-family: 'Work Sans', sans-serif;
  background-color: #FFFFFF;
  font-weight: 300; }

strong, b {
  font-weight: 400 !important; }

h1,
h2,
h3,
h4,
h5 {
  color: #BFAF95;
  margin: 0 0 15px 0;
  font-weight: 400; }

h1 {
  font-size: 28px;
  font-weight: 400; }

h2 {
  font-size: 24px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

p {
  margin: 0 0 20px 0; }

p:last-child {
  margin-bottom: 0; }

ol,
ul {
  margin: 0;
  padding: 0;
  list-style-position: inside; }

ol li,
ul li {
  margin: 0;
  padding: 0; }

li ol,
li ul {
  padding-left: 30px; }

a {
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease; }

a,
a:hover,
a:focus,
a:active,
a:visited {
  color: inherit;
  text-decoration: none; }

/*a:hover {
    opacity: 0.75;
}*/
.alignleft {
  float: left; }

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

.alignright {
  float: right; }

img:not([src]) {
  visibility: hidden; }

@-moz-document url-prefix() {
  img:-moz-loading {
    visibility: hidden; } }

/* form */
.gform_required_legend {
  display: none !important; }

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

.main-content a {
  color: #89c756;
  -webkit-transition: color 250ms ease-in-out;
  -moz-transition: color 250ms ease-in-out;
  -ms-transition: color 250ms ease-in-out;
  -o-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out; }

.main-content a:hover {
  color: #9F8C6D; }

/**
 * Image highlight
 */
.image-highlight {
  display: block;
  margin-bottom: 20px; }

.image-highlight img {
  width: auto;
  height: auto;
  border: 6px solid #FFFFFF;
  display: block;
  overflow: hidden;
  max-width: 100%;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15); }

.image-highlight.image-highlight-no-whitespace img {
  border: 0 none; }

/* Grid */
a.image-highlight-grid,
.image-highlight-grid a {
  border: 1px solid #89c756;
  padding: 5px;
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  transition: transform 0.2s; }

/*
a.image-highlight-grid::before,
.image-highlight-grid a::before {
    top: 50%;
    left: 50%;
    width: 86%;
    height: 110px;
    content: "";
    z-index: 10;
    display: block;
    opacity: 0;
    position: absolute;
    margin-top: -60px;
    margin-left: -43%;
    background-color: #E9E2D8;
    -webkit-transition: opacity 250ms ease;
    -moz-transition: opacity 250ms ease;
    -ms-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}
*/
a.image-highlight-grid:hover,
.image-highlight-grid a:hover {
  transform: scale(1.1); }

a.image-highlight-grid:hover::before,
.image-highlight-grid a:hover::before {
  opacity: 1; }

.image-highlight-grid img {
  z-index: 15;
  display: block;
  position: relative;
  box-sizing: content-box;
  width: 250px;
  height: auto; }

/**
 * Buttons
 */
button,
.button,
a.button,
.woocommerce a.button,
.button:focus,
.button:active,
.button:visited,
input[type="submit"],
input[type="button"] {
  color: #FFFFFF;
  width: 100%;
  height: 50px;
  cursor: pointer;
  padding: 0 15px;
  display: block;
  font-size: 20px;
  text-align: center;
  line-height: 48px;
  font-weight: 400;
  border-radius: 50px;
  border: none;
  margin-bottom: 20px;
  background-color: #89c756;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease; }

button:hover,
.button:hover,
a.button:hover,
.woocommerce a.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #6A6A6A; }

button.inline,
.button.inline,
a.button.inline,
.woocommerce a.button.inline,
input[type="submit"].inline,
input[type="button"].inline {
  width: auto;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px; }

button.alternative,
.button.alternative,
a.button.alternative,
.woocommerce a.button.alternative,
input[type="submit"].alternative,
input[type="button"].alternative {
  color: #BFAF95;
  color: #6A6A6A;
  border-top-color: #EEEEEE;
  background-color: #FFFFFF; }

button.alternative:hover,
.button.alternative:hover,
a.button.alternative:hover,
.woocommerce a.button.alternative:hover,
input[type="submit"].alternative:hover,
input[type="button"].alternative:hover {
  color: #FFFFFF;
  border-top-color: #89c756;
  background-color: #89c756; }

button.small,
.button.small,
a.button.small,
.woocommerce a.button.small,
input[type="submit"].small,
input[type="button"].small {
  height: 40px;
  font-size: 16px;
  line-height: 36px; }

button.nostyle,
input[type="submit"].nostyle {
  color: inherit;
  margin: 0;
  padding: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

/**
 * Header
 */
.site-header {
  display: block;
  overflow: hidden; }

.header-top,
.header-middle,
.header-bottom {
  clear: both;
  display: block;
  overflow: hidden; }

/* Header top */
.header-top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: wrap;
  -webkit-box-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flexbox-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

.header-top .site-logo {
  float: left;
  padding: 10px 40px; }

.header-top .site-logo h1 {
  margin: 0;
  line-height: 1; }

.header-top .header-top-area {
  float: right;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: wrap;
  -webkit-box-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flexbox-wrap: wrap;
  flex-wrap: wrap; }

.header-top .header-top-area .header-item {
  padding: 0 40px;
  border-left: 1px solid #BFAF95;
  border-left: 1px solid #E6DDCD;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: wrap;
  -webkit-box-wrap: wrap;
  -ms-flexbox-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.header-top .header-top-area .header-item:first-child {
  border-left: 0; }

.header-top .header-top-area .header-item .menu a {
  color: #BFAF95; }

/* Header top contact */
.header-top-contact {
  width: auto;
  display: block; }

.header-top-contact a {
  color: #BFAF95;
  display: block;
  overflow: hidden;
  font-weight: 400;
  line-height: 1; }

.header-top-contact a i {
  float: left;
  font-size: 50px;
  margin-right: 20px; }

.header-top-contact a div {
  float: left;
  margin-top: 2px; }

.header-top-contact a p {
  font-size: 16px;
  margin-bottom: 10px; }

.header-top-contact a p:last-child {
  color: #6A6A6A;
  font-size: 20px;
  margin-bottom: 0; }

/* Header middle */
.header-middle {
  background-color: #6A6A6A; }

.header-middle.sticky {
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15); }

.header-middle .mobile-search {
  padding: 20px; }

.header-middle .mobile-search,
.header-middle .mobile-menu-toggle {
  display: none; }

.header-middle .mobile-menu-toggle {
  float: right;
  color: #FFFFFF; }

.header-middle .mobile-menu-toggle,
.header-middle .mobile-menu-toggle span,
.header-middle .mobile-menu-toggle::before {
  text-align: center; }

.header-middle .mobile-menu-toggle::before {
  color: #FFFFFF;
  height: 50px;
  font-size: 36px;
  line-height: 34px; }

.header-middle .mobile-menu-toggle span {
  bottom: 0;
  font-size: 12px; }

.header-middle .mobile-search .searchform input[type="text"] {
  height: 50px;
  max-width: 100%;
  min-width: 150px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.header-middle .mobile-search .searchform button {
  width: 50px;
  height: 50px;
  max-width: 50px;
  min-width: 50px;
  line-height: 50px;
  background-color: #FFFFFF;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.header-middle .mobile-search .searchform button:hover {
  color: #525252; }

.header-middle .mobile-search .searchform button,
.header-middle .mobile-search .searchform button:active {
  outline: none; }

.header-middle .mobile-search .header-middle-mobile {
  color: #FFFFFF;
  height: 50px;
  display: none;
  font-size: 18px;
  line-height: 1.25; }

.header-middle .mobile-search .header-middle-mobile a {
  display: block; }

/* Header bottom */
.header-bottom {
  color: #FFFFFF;
  padding: 10px 40px;
  font-size: 16px;
  background-color: #89c756; }

.header-bottom .header-bottom-area {
  margin: 0 auto;
  display: block;
  max-width: 1200px; }

.header-bottom.sticky {
  top: 70px;
  left: 0;
  right: 0; }

/* Sticky header */
.sticky {
  z-index: 200;
  position: fixed; }

.sticky-header-spacing {
  height: 110px;
  display: none; }

.sticky-header-spacing.active {
  display: block; }

/* Logo */
.site-logo a {
  display: block;
  overflow: hidden; }

.site-logo a img {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  max-height: 100px; }

/* Navigation */
ul.menu,
ul.menu li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style-image: none; }

ul.menu {
  overflow: hidden;
  /*display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:flex;

    -moz-box-wrap:wrap;
    -webkit-box-wrap:wrap;
    -webkit-flex-wrap: wrap;
    -ms-flexbox-wrap:wrap;
    flex-wrap:wrap;

    -moz-box-direction:row;
    -webkit-box-direction:row;
    -ms-flexbox-direction:row;
    flex-direction:row;

    -webkit-box-align:stretch;
    -webkit-align-items:stretch;
    -moz-box-align:stretch;
    -ms-flex-align:stretch;
    align-items:stretch;

    -webkit-justify-content:space-between;
    justify-content:space-between;*/ }

ul.menu li {
  float: left;
  margin-left: 20px; }

ul.menu li:first-child {
  margin-left: 0; }

ul.menu li a {
  display: block;
  font-weight: 400;
  text-decoration: none; }

ul.menu li a:hover,
ul.menu li.current-menu-item a {
  text-decoration: none; }

/* Mobile menu toggle */
header #mobile-menu {
  display: none; }

.mobile-menu-toggle {
  display: none;
  position: relative;
  margin-right: 20px; }

.mobile-menu-toggle span {
  left: 0;
  width: 100%;
  bottom: 33px;
  position: absolute;
  font-size: 14px;
  text-align: center;
  line-height: 1; }

.mobile-menu-toggle::before {
  color: inherit;
  width: 50px;
  height: 120px;
  display: inline-block;
  content: "\f0c9";
  font-size: 40px;
  text-align: center;
  line-height: 100px;
  font-weight: 400;
  font-family: "Font Awesome 5 Free"; }

/* Mmenu */
.mm-menu .mm-listitem_selected > .mm-listitem__text,
.mm-menu .mm-listitem_selected > .mm-listitem__text:link,
.mm-menu .mm-listitem_selected > .mm-listitem__text:hover {
  color: #FFFFFF;
  background-color: #BFAF95; }

/* Site nav */
.site-nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.site-nav ul {
  margin: 0 auto;
  display: block; }

.site-nav ul li {
  margin-left: 47px;
  margin-left: 30px; }

.site-nav ul li a {
  color: #FFFFFF;
  padding: 26px 0;
  position: relative;
  font-size: 18px;
  line-height: 1;
  font-weight: 400; }

.site-nav ul li a::after {
  transition: all 300ms ease-out; }

.site-nav ul li a:hover {
  opacity: 1; }

.site-nav ul li a:hover::after,
.site-nav ul li.current-menu-item a::after {
  left: 10%;
  width: 80%;
  height: 3px;
  content: "";
  display: block;
  position: absolute;
  margin-top: 5px;
  background-color: #BFAF95; }

/**
 * Visual Composer
 */
#content .wpb_button,
#content .wpb_content_element,
#content ul.wpb_thumbnails-fluid > li {
  margin-bottom: 30px; }

#content .wpb_content_element #content .vc_col-has-fill > .vc_column-inner,
#content .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
#content .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
#content .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
#content .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
#content .vc_row-has-fill > .vc_column_container > .vc_column-inner,
#content .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
#content .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
#content .vc_section.vc_section-has-fill,
#content .vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section,
#content .vc_section.vc_section-has-fill + .vc_section {
  padding-top: 20px; }

.content-wrapper .main-content main > .vc_row-full-width:last-child {
  margin-bottom: -60px; }

/**
 * Banner
 */
#page-banner {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 500px;
  max-height: 500px;
  position: relative; }

#mainvid {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1000;
  overflow: hidden; }

#page-banner img {
  width: auto;
  height: auto;
  display: block;
  min-width: 100%; }

/**
 * Flex row
 */
.flex-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: nowrap;
  -webkit-box-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flexbox-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-box-direction: row;
  -webkit-box-direction: row;
  -ms-flexbox-direction: row;
  flex-direction: row; }

.row.flex-row::after,
.row.flex-row::before {
  display: none; }

.flex-column {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: nowrap;
  -webkit-box-wrap: nowrap;
  -ms-flexbox-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-box-direction: column;
  -webkit-box-direction: column;
  -ms-flexbox-direction: column;
  flex-direction: column; }

.flex-grow {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1; }

.flex-wrap {
  -moz-box-wrap: wrap;
  -webkit-box-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flexbox-wrap: wrap;
  flex-wrap: wrap; }

.flex-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/**
 * Background transition
 */
.background-transition::after {
  top: 0;
  /* right: -9px; */
  right: -17px;
  /* width: 18px; */
  width: 34px;
  height: 100%;
  content: "";
  position: absolute;
  /* background: url('../img/memorial-overloop.png') repeat-y right top transparent; */ }

/**
 * Content
 */
.site-wrapper {
  display: block;
  overflow: hidden;
  max-width: 100%; }

.cookies-accepted .site-wrapper {
  padding-bottom: 0; }

.content-wrapper {
  display: block;
  position: relative; }

.content-wrapper main {
  display: block; }

.content-wrapper .sidebar,
.content-wrapper .main-content {
  padding: 50px 0;
  position: relative; }

/* Home content */
.home .content-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: nowrap;
  -webkit-box-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flexbox-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-box-direction: row;
  -webkit-box-direction: row;
  -ms-flexbox-direction: row;
  flex-direction: row; }

.home .content-wrapper .main-content {
  max-width: 1200px;
  -webkit-box-flex: 1;
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  padding-left: 50px;
  padding-right: 50px; }

/* Product page main content */
.single-product .content-wrapper .main-content {
  padding-bottom: 0; }

/* Sidebar main content */
.has-sidebar.has-banner-bottom .content-wrapper .sidebar,
.has-sidebar.has-banner-bottom .content-wrapper .main-content,
.home.has-sidebar.has-banner-bottom .content-wrapper .sidebar,
.home.has-sidebar.has-banner-bottom .content-wrapper .main-content {
  padding-bottom: 180px; }

/* Breadcrumbs */
.breadcrumbs {
  padding: 10px 0;
  line-height: 1;
  background-color: #F8F6F2; }

.breadcrumbs .breadcrumbs-inner {
  display: block;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis; }

.breadcrumbs .breadcrumbs-inner > span > span {
  font-size: 0; }

.breadcrumbs .breadcrumbs-inner i,
.breadcrumbs .breadcrumbs-inner a,
.breadcrumbs .breadcrumbs-inner .breadcrumb_last {
  display: inline-block;
  font-size: 16px;
  line-height: 20px; }

.breadcrumbs .breadcrumbs-inner i {
  margin: 0 5px;
  font-size: 14px;
  /* margin-top: 2px; */ }

/* Sidebar */
.content-wrapper .sidebar-gap-filler {
  top: 0;
  left: 0;
  width: 300px;
  width: calc(50% - 650px);
  bottom: 0;
  position: absolute; }

.content-wrapper .sidebar,
.content-wrapper .sidebar-gap-filler {
  background-color: #fefdf9; }

.content-wrapper .sidebar {
  line-height: 1.25;
  padding-right: 30px; }

.content-wrapper .sidebar .sidebar-item {
  font-size: 18px;
  border-top: 1px solid #EEEEEE;
  padding-top: 20px;
  margin-bottom: 20px; }

.content-wrapper .sidebar .sidebar-item:first-child {
  border-top: 0;
  padding-top: 0; }

.content-wrapper .sidebar .sidebar-item:last-child {
  margin-bottom: 0; }

.content-wrapper .sidebar .sidebar-item .sidebar-item-title {
  color: #6A6A6A;
  font-weight: 400;
  margin-bottom: 6px; }

/* Homepage sidebar */
.home .content-wrapper .sidebar {
  width: 33%;
  padding: 50px;
  min-width: 33%;
  background-color: #F8F6F2; }
  .home .content-wrapper .sidebar aside {
    max-width: 400px;
    float: right; }

.home .content-wrapper .sidebar .sidebar-item {
  border: none;
  margin-bottom: 30px; }

/* Archive product sidebar */
.archive-product-wrapper {
  display: block;
  margin-bottom: 20px; }

.archive-product-wrapper .archive-product-label {
  color: #BFAF95;
  display: block;
  margin-bottom: 10px; }

.archive-product-wrapper .dropdown_product_cat,
.archive-product-wrapper .dropdown_product_cat option {
  cursor: pointer;
  padding: 0 0 0 5px;
  border-color: #E9E2D8;
  border-radius: 0;
  background-color: #FFFFFF; }

/**
 * Cookie notice
 */
#cookie-notice {
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  -moz-box-shadow: 0 0 5px 0 RGBA(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 5px 0 RGBA(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 RGBA(0, 0, 0, 0.25);
  font-family: 'Work Sans', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0;
  padding-bottom: 20px; }

#cookie-notice .cookie-notice-container {
  width: 1140px;
  margin: 0 auto;
  display: block;
  padding: 0 15px;
  max-width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; }

#cookie-notice .cookie-notice-container #cn-notice-text {
  float: left;
  margin: 10px 0;
  overflow: auto;
  font-size: 16px;
  max-height: 80px;
  padding-right: 30px;
  line-height: 1.25;
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1; }

#cookie-notice .cookie-notice-container #cn-accept-cookie.button {
  float: right;
  color: #FFFFFF;
  width: auto;
  margin: 0;
  height: auto;
  border: 0 none;
  padding: 10px 30px;
  min-width: 150px;
  font-size: 18px;
  text-align: center !important;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
  background-color: #96c565;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px; }

#cookie-notice .cookie-notice-container #cn-accept-cookie.button:hover {
  opacity: 0.75; }

/**
 * WooCommerce
 */
/* Product categories */
.product-categories,
.product-categories ul {
  padding-left: 0;
  list-style-type: none; }

.product-categories li {
  display: none; }

.product-categories li.cat-item-114 {
  margin-bottom: 30px; }

.product-categories li a {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px; }

/*.product-categories ul li a::before {
    content: "\f105";
    font-weight: 900;
}*/
.product-categories li a:hover,
.product-categories li.current-cat > a {
  /* text-decoration: underline; */ }

.product-categories li.current-cat,
.product-categories li.cat-parent,
.product-categories li.cat-parent li {
  display: block; }

.product-categories > li.cat-parent > a {
  display: none; }

/* Layered navigation */
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  margin: 0;
  padding: 0; }

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
  padding: 0;
  display: block;
  font-size: 18px;
  margin-bottom: 10px; }

.product-categories li a::before,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a::before {
  content: "\f0c8";
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px; }

.woocommerce .woocommerce-widget-layered-nav-list li .woocommerce-widget-layered-nav-list__item:last-child a {
  margin-bottom: 0; }

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  color: #6A6A6A; }

.product-categories li.current-cat > a::before,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  content: "\f14a"; }

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item .count {
  display: none; }

/* Active layered navigation filters */
.woocommerce .widget_layered_nav_filters ul li {
  float: left;
  padding: 0;
  margin-right: 10px;
  margin-bottom: 10px; }

.woocommerce .widget_layered_nav_filters ul li a {
  color: #FFFFFF;
  display: inline-block;
  padding: 2px 5px 2px 2px;
  font-size: 16px;
  line-height: 24px;
  border-radius: 4px;
  background-color: #BFAF95; }

.woocommerce .widget_layered_nav_filters ul li a::before {
  color: #6A6A6A;
  float: left;
  content: "\f00d";
  padding: 0 5px;
  font-weight: 400;
  line-height: 26px;
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  border-radius: 4px 0 0 4px;
  background-color: #E9E2D8; }

.woocommerce .widget_layered_nav_filters ul li a:hover {
  background-color: #6A6A6A; }

/* Category page */
.term-description {
  margin-bottom: 15px; }

/* Products */
.woocommerce ul.products-grid {
  list-style: none;
  margin-right: 0; }

.woocommerce ul.products-grid li.product {
  padding-right: 0;
  margin-bottom: 30px;
  transition: transform 0.2s; }

.woocommerce ul.products-grid li.product:hover {
  transform: scale(1.03); }

.woocommerce ul.products-grid li.product .product-inner {
  border: 1px solid #89c756;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background-color: #eef5e8;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15); }

.woocommerce ul.products-grid li.product a,
.woocommerce ul.products-grid li.product h2 {
  display: block; }

.product-image-wrapper,
.woocommerce ul.products-grid li.product .product-image-wrapper {
  height: 100%;
  display: block;
  position: relative;
  min-height: 250px;
  background-color: #FFFFFF; }

.woocommerce ul.products-grid li.product .product-image-wrapper img {
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  margin: 0;
  display: block;
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.product-image-wrapper .tinv-wraper.tinv-wishlist,
.woocommerce ul.products-grid li.product .product-image-wrapper .tinv-wraper.tinv-wishlist {
  top: 0;
  left: 0;
  position: absolute;
  line-height: 1; }

.product-image-wrapper .tinv-wraper.tinv-wishlist {
  top: 11px;
  left: 11px; }

.woocommerce ul.products-grid li.product .product-details-wrapper {
  padding: 20px 15px;
  min-height: 230px; }

.woocommerce ul.products-grid li.product .product-details-wrapper h2 {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  color: #6A6A6A; }

.woocommerce ul.products-grid li.product .product-details-wrapper .product-description {
  height: 60px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #6A6A6A; }

.woocommerce ul.products-grid li.product .product-details-wrapper .price {
  color: #6A6A6A;
  display: block;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px; }

.woocommerce ul.products-grid li.product .product-details-wrapper .button {
  font-size: 16px;
  margin-bottom: 0;
  color: #fff;
  background: #89c756; }

.woocommerce ul.products-grid li.product .product-details-wrapper .button:hover {
  background: #BFAF95;
  color: #fff; }

/* Product pagination */
.woocommerce nav.woocommerce-pagination {
  max-width: 100%; }

.woocommerce nav.woocommerce-pagination ul {
  margin: 0;
  overflow: auto;
  font-size: 0;
  max-width: 100%;
  border-radius: 4px; }

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
  float: none;
  display: inline-block;
  white-space: nowrap;
  border-color: #E9E2D8; }

.woocommerce nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  overflow: hidden;
  max-height: 40px; }

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 10px;
  font-size: 20px;
  min-width: 20px;
  line-height: 20px; }

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  color: #6A6A6A;
  background-color: #E9E2D8; }

.woocommerce nav.woocommerce-pagination ul li span.current {
  font-weight: 400; }

/* Product summary */
.woocommerce div.product div.summary {
  margin-bottom: 0; }

/* Product image */
.woocommerce div.product div.images {
  border: 1px solid #89c756;
  padding: 9px;
  margin-bottom: 0;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15); }

.woocommerce div.product div.images img {
  width: auto;
  height: auto;
  margin: 0 auto;
  max-width: 100%;
  max-height: 500px; }

.woocommerce div.product div.images .woocommerce-product-gallery__thumbnails {
  padding: 15px 0 0 0;
  margin-bottom: -5px; }

.woocommerce div.product div.images .woocommerce-product-gallery__thumbnails .woocommerce-product-gallery__image {
  width: 110px;
  height: 110px;
  display: inline-block;
  overflow: hidden;
  margin-right: 15px;
  margin-bottom: 15px; }

.woocommerce div.product div.images .woocommerce-product-gallery__thumbnails .woocommerce-product-gallery__image:nth-child(5n) {
  margin-right: 0; }

.woocommerce div.product div.images .woocommerce-product-gallery__thumbnails .woocommerce-product-gallery__image a {
  height: 100%;
  display: block;
  position: relative; }

.woocommerce div.product div.images .woocommerce-product-gallery__thumbnails .woocommerce-product-gallery__image a img {
  top: 50%;
  left: 50%;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

/* Product price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: #6A6A6A; }

.price .price-label {
  margin-right: 10px; }

/* Product attributes */
.product-attributes {
  margin: 0 0 25px 0;
  padding: 0;
  list-style: none; }

.product-attributes .product-attribute {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  line-height: 1.5; }

.product-attributes .product-attribute .product-attribute-label {
  float: left;
  min-width: 175px;
  font-weight: 400; }

.product-attributes .product-attribute .product-attribute-value .product-attribute-value-details {
  margin-left: 5px; }

/* Product navigation */
.product-nav {
  top: 200px;
  width: 50px;
  height: 100px;
  opacity: 0.75;
  position: absolute;
  font-size: 42px;
  text-align: center;
  line-height: 100px;
  -webkit-transition: opacity 250ms ease;
  -moz-transition: opacity 250ms ease;
  -ms-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease; }

.product-nav:hover {
  opacity: 1; }

.product-nav a {
  display: block; }

.product-nav a::before {
  content: "\E87c";
  font-family: 'entypo-fontello'; }

.product-nav a:hover {
  -webkit-transform: scale(0.8, 0.8);
  -moz-transform: scale(0.8, 0.8);
  -ms-transform: scale(0.8, 0.8);
  -o-transform: scale(0.8, 0.8);
  transform: scale(0.8, 0.8); }

.product-nav.product-nav-next {
  right: 0; }

.product-nav.product-nav-next a::before {
  content: "\E87d"; }

.product-nav.product-nav-prev {
  left: 0; }

/* Product tabs */
.woocommerce div.product .woocommerce-tabs {
  margin-top: 30px; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin: 0;
  padding: 5px 0 0 5px;
  font-size: 0;
  border-radius: 4px 4px 0 0;
  background-color: #F8F6F2; }

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  margin: 0 5px 0 0;
  border-radius: 4px 4px 0 0;
  background-color: #F8F6F2; }

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:active {
  color: #6A6A6A;
  padding: 15px;
  font-size: 18px;
  line-height: 1;
  font-weight: 400; }

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background-color: #FFFFFF; }

/* .woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    left: 0;
    right: 0;
    height: 2px;
    bottom: -2px;
    display: block;
    content: "";
    position: absolute;
    background-color: #FFFFFF;
} */
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  display: none; }

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #BFAF95; }

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 60px 30px 60px 30px;
  border-left: 5px solid #F8F6F2;
  border-right: 5px solid #F8F6F2; }

.woocommerce div.product .woocommerce-tabs .panel::after {
  left: 0;
  right: 0;
  height: 60px;
  bottom: 0;
  content: "";
  position: absolute;
  /* box-shadow: 0 5px 30px 20px RGBA(255, 255, 255, 0.8); */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, white 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, white 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0); }

.product-quotation-tab-item:nth-child(2n)::before {
  top: 0;
  left: -5px;
  width: 1px;
  bottom: 0;
  content: "";
  position: absolute;
  background-color: #F8F6F2; }

.woocommerce div.product .quotation-button {
  margin-right: 10px; }

.woocommerce div.product .add-to-wishlist-button i {
  margin-right: 5px; }

.woocommerce div.product .add-to-wishlist-notification {
  display: none;
  margin-bottom: 15px; }

.woocommerce div.product .add-to-wishlist-notification a {
  border: 1px solid #E9E2D8;
  display: block;
  padding: 10px 15px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15); }

.woocommerce div.product .add-to-wishlist-notification a span {
  color: #BFAF95;
  font-weight: 400; }

.single-product .product-description {
  /* padding: 79px 80px 70px 80px; */
  padding-top: 10px; }

/* Product notification */
.product-notification .product-notification-item {
  margin-top: 10px;
  margin-bottom: 10px; }

/**
 * Wishlist
 */
a.wishlist_products_counter.top_wishlist-heart::before,
span.wishlist_products_counter.top_wishlist-heart::before,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before,
a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart::before,
.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before,
.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button::before {
  content: "\f005";
  font-size: 16px;
  font-family: "Font Awesome 5 Free" !important; }

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before {
  margin-top: -8px;
  margin-left: -9px; }

a.wishlist_products_counter.top_wishlist-heart::before,
span.wishlist_products_counter.top_wishlist-heart::before,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before,
a.sidr-class-wishlist_products_counter.sidr-class-top_wishlist-heart::before,
.woocommerce ul.products li.product a.tinvwl-button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart::before,
.woocommerce-page ul.products li.product a.tinvwl-button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button::before {
  margin-right: 0;
  vertical-align: unset; }

.menu a .wishlist_products_counter.top_wishlist-heart::before,
a.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products::before,
span.wishlist_products_counter.top_wishlist-heart.wishlist-counter-with-products::before,
.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list::before {
  color: #DAA520;
  content: "\f005";
  font-weight: 700;
  margin-right: 0;
  vertical-align: unset; }

.menu a .wishlist_products_counter.top_wishlist-heart {
  float: left;
  margin-top: -2px;
  margin-right: 5px; }

.ftinvwl-heart-o::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free"; }

.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-key::before,
.tinv-wishlist .tinvwl-buttons-group button i.ftinvwl-heart-o::before {
  top: 0; }

.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:focus, .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:focus {
  outline: 0; }

/* Product add to wishlist button */
/* Wishlist grid */
.wishlist-grid .wishlist-grid-item,
#content .wishlist-grid .wishlist-grid-item:last-child {
  margin-bottom: 30px; }

.wishlist-grid .wishlist-grid-item .wishlist-grid-item-inner {
  padding: 0 1px 0 1px;
  min-height: 100%;
  background-color: #E9E2D8;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15); }

.wishlist-grid .wishlist-grid-item button i {
  font-size: 18px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease; }

.wishlist-grid .wishlist-grid-item button:hover i {
  color: #FF0000; }

.wishlist-grid .wishlist-grid-item .wishlist-grid-item-image {
  width: 100%;
  height: 180px;
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #FFFFFF; }

.wishlist-grid .wishlist-grid-item .wishlist-grid-item-image img {
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.wishlist-grid .wishlist-grid-item .wishlist-grid-item-name {
  padding: 5px 10px;
  text-align: center;
  font-weight: 400;
  background: #89c756 !important; }
  .wishlist-grid .wishlist-grid-item .wishlist-grid-item-name a {
    color: #fff; }

.wishlist-grid .wishlist-grid-item .wishlist-grid-item-name a {
  display: block; }

/**
 * Forms
 */
select,
textarea,
input[type="tel"],
input[type="date"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"] {
  width: 100%;
  height: 40px;
  border: 1px solid #DDDDDD;
  padding: 0 15px;
  display: block;
  font-size: 18px;
  line-height: 1;
  font-family: 'PT Sans', sans-serif;
  border-radius: 4px; }

textarea {
  height: 122px;
  line-height: 1.5;
  padding-top: 5px;
  padding-bottom: 5px; }

/**
 * Searchform
 */
.searchform {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: nowrap;
  -webkit-box-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  -ms-flexbox-wrap: nowrap;
  flex-wrap: nowrap;
  -moz-box-direction: row;
  -webkit-box-direction: row;
  -ms-flexbox-direction: row;
  flex-direction: row; }

.searchform input[type="text"] {
  border: 0 none;
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1); }

.searchform input[type="text"]:focus,
.searchform input[type="text"].active {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.25); }

.searchform button {
  width: 50px;
  color: #BFAF95;
  height: 40px;
  font-size: 24px;
  line-height: 1; }

/**
 * Contact Form 7
 */
.wpcf7 p {
  margin-bottom: 10px; }

.wpcf7 label {
  cursor: pointer;
  display: block;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 5px; }

.wpcf7 .wpcf7-form-control-wrap {
  display: block; }

.wpcf7 .wpcf7-not-valid-tip {
  display: none; }

.wpcf7 .wpcf7-response-output {
  clear: both;
  margin: 20px 0;
  padding: 15px; }

.wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-acceptance-missing {
  border-color: #6A6A6A; }

.wpcf7 .submit-button-wrapper {
  position: relative;
  /* margin-top: 42px; */
  margin-top: 20px; }

.wpcf7 .submit-button-wrapper .ajax-loader {
  top: 50%;
  right: 20px;
  position: absolute;
  border-radius: 100%;
  background-color: #FFFFFF;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/**
 * Product bottom
 */
.banner-bottom,
.banner-bottom .banner-bottom-item {
  width: 100%;
  display: block; }

.has-sidebar .banner-bottom {
  position: relative;
  top: -300px;
  background: transparent;
  text-align: center;
  color: #fff;
  font-family: 'Caveat';
  line-height: 1;
  font-size: 3em;
  height: auto; }

.banner-bottom img {
  width: 100%;
  height: auto;
  display: block;
  max-width: unset !important; }

/**
 * Footer
 */
footer {
  width: 100%;
  display: block;
  font-size: 16px;
  line-height: 1.25;
  padding-top: 70px;
  background-color: #6A6A6A; }

footer a {
  color: inherit; }

footer ul {
  margin: 0;
  padding: 0;
  list-style: none; }

footer ul li {
  margin-bottom: 20px; }

/* Footer items */
footer #footer-items .row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-box-wrap: wrap;
  -webkit-box-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flexbox-wrap: wrap;
  flex-wrap: wrap; }

footer #footer-items .row::after,
footer #footer-items .row::before {
  display: none; }

footer #footer-items .footer-item {
  color: #FFFFFF;
  margin-bottom: 50px; }

footer #footer-items .footer-item:nth-child(4n) {
  margin-right: 0; }

footer #footer-items .footer-item .footer-item-title {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px; }

/* Copyright */
footer #copyright {
  width: 100%;
  color: #FFFFFF;
  display: block;
  padding: 20px 40px;
  text-align: center;
  background-color: #525252; }
